using Milk; using rjw; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Verse; namespace CRIALactation { public static class LactationUtility { public static bool IsLactating(Pawn p) { return p.health.hediffSet.HasHediff(HediffDefOf_Milk.Lactating_Natural, false) || p.health.hediffSet.HasHediff(HediffDefOf_Milk.Lactating_Drug, false) || p.health.hediffSet.HasHediff(HediffDefOf_Milk.Lactating_Permanent, false) || p.health.hediffSet.HasHediff(HediffDefOf_Milk.Heavy_Lactating_Permanent, false); } public static bool HasMilkableBreasts(Pawn p) { if (Genital_Helper.has_breasts(p) && !Genital_Helper.has_male_breasts(p)) { return true; } return false; } public static void StartLactating(Pawn p, bool natural) { Hediff lactating = HediffMaker.MakeHediff(natural ? HediffDefOf_Milk.Lactating_Natural : HediffDefOf_Milk.Lactating_Drug, p, null); lactating.Severity = Rand.Value; p.health.AddHediff(lactating, Genital_Helper.get_breastsBPR(p)); } public static bool isMassageable(Pawn p) { CompInduceLactation c = p.TryGetComp(); if (c != null && c.isActive && c.CanMassage) { return true; } return false; } } }