rjw-sexperience-ideology/Source/IdeologyAddon/SexTame/BestialityUtility.cs
2025-01-27 21:36:30 +05:00

21 lines
No EOL
471 B
C#

using Verse;
using rjw;
namespace RJWSexperience.Ideology
{
public static class BestialityUtility
{
public static bool CanDoLewdAnimalWork(Pawn human, Pawn animal)
{
if (human.Ideo == null)
{
return false;
}
if (human.Ideo.HasPrecept(RsiDefOf.Precept.AnimalConnection_Lovin) || human.Ideo.HasPrecept(RsiDefOf.Precept.AnimalConnection_LovinBond))
{
return SexAppraiser.would_fuck_animal(human, animal) > 0;
}
else return false;
}
}
}