mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2026-06-18 19:25:57 +00:00
- Removed DDS Files - Added Initial Support for Rimworld 1.6 - Added Additional mod requirement to PatchBSShared.xml to prevent premature loading. - Refactored Cumpilation integration to make it optional rather then a Required Mod. - Disabled succubus tail interactions pending rewrite for RJW's new interactions system. - Disabled Quirks pending rewrite RJW separating them into their own mod.
24 lines
645 B
C#
24 lines
645 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("OvaryAgitator"));
|
|
}
|
|
}
|
|
}
|