mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2026-06-18 19:25:57 +00:00
* - Seperation of Animal Gene code from base RJW_Genes * - Clean-up of leftover XML Files - Minor update to README.md * Fixed missing translation text Fixed Missing B&S Undead Patch Fixed Anal Fertility Errors, might be broken again. DLL Included for Merge.
24 lines
643 B
C#
24 lines
643 B
C#
|
|
using Verse;
|
|
|
|
|
|
namespace RJW_Genes
|
|
{
|
|
class LaborState
|
|
{
|
|
public Pawn pawn;
|
|
public int birthTotal = 0;
|
|
public int birthCount = 1;
|
|
public bool hasOvaryAgitator = false;
|
|
public bool hasBioscaffold = false;
|
|
|
|
public LaborState(Pawn pawn, int birthTotal)
|
|
{
|
|
this.pawn = pawn;
|
|
this.birthTotal = birthTotal;
|
|
this.birthCount = 0;
|
|
this.hasOvaryAgitator = pawn.health.hediffSet.HasHediff(HediffDef.Named("OvaryAgitator"));
|
|
this.hasBioscaffold = pawn.health.hediffSet.HasHediff(HediffDef.Named("Bioscaffold"));
|
|
}
|
|
}
|
|
}
|