update and integration of lewdbiotech

This commit is contained in:
Jaaldabaoth 2024-05-28 21:40:07 +02:00
parent 2b39105fe0
commit 25614f42ae
29 changed files with 892 additions and 32 deletions

View file

@ -0,0 +1,24 @@

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("OvaryAgitator"));
}
}
}