fixed preg projs

This commit is contained in:
c0ffee 2022-06-01 18:44:27 -07:00
parent 406d336a25
commit 711be3c6bb
7 changed files with 201 additions and 1 deletions

View file

@ -0,0 +1,31 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
using RimWorld;
using rjw;
using UnityEngine;
namespace CRIAPregnancy
{
class ThoughtWorker_Pregnancy : ThoughtWorker_Precept
{
public static bool CanBePregnant(Pawn p)
{
if(p.RaceHasPregnancy()
&& Genital_Helper.has_vagina(p)
&& p.health.capacities.GetLevel(xxx.reproduction) > 0)
{
return true;
}
return false;
}
protected override ThoughtState ShouldHaveThought(Pawn p)
{
if (p)
}
}
}