mirror of
https://gitgud.io/amevarashi/rjw-sexperience-ideology.git
synced 2026-06-18 19:25:59 +00:00
21 lines
No EOL
471 B
C#
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;
|
|
}
|
|
}
|
|
} |