mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2026-06-18 19:35:58 +00:00
28 lines
656 B
C#
28 lines
656 B
C#
using rjw;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Verse;
|
|
|
|
namespace Rimworld_Animations
|
|
{
|
|
public class PawnTest_RJWCanBeFucked : BasePawnTest
|
|
{
|
|
public override bool PawnTest(Pawn pawn)
|
|
{
|
|
|
|
if (!RJWAnimationSettings.maleAnalCanBeFucked)
|
|
{
|
|
if (pawn.gender == Gender.Male && (!Genital_Helper.has_vagina(pawn) || Genital_Helper.vagina_blocked(pawn)))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
return xxx.can_be_fucked(pawn);
|
|
}
|
|
}
|
|
}
|