Hucow role and balancing

This commit is contained in:
c0ffee12 2021-07-28 18:45:25 -07:00
parent 47291f333c
commit e2d5daf97b
11 changed files with 143 additions and 12 deletions

View file

@ -0,0 +1,30 @@
using Milk;
using RimWorld;
using rjw;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
namespace CRIALactation
{
public class RoleRequirement_Lactating : RoleRequirement
{
public override string GetLabel(Precept_Role role)
{
return "must be lactating";
}
public override bool Met(Pawn p, Precept_Role role)
{
if(LactationUtility.IsLactating(p))
{
return true;
}
return false;
}
}
}