mirror of
https://gitgud.io/LonelyRain/rjw-quirks.git
synced 2024-08-15 00:03:31 +00:00
9 lines
298 B
C#
9 lines
298 B
C#
using rjw;
|
|
|
|
namespace rjwquirks.Modules.Quirks.SexSelectors
|
|
{
|
|
public class CanBeImpregnated : SexSelector
|
|
{
|
|
public override bool SexSatisfies(SexProps sexProps) => sexProps.hasPartner() && PregnancyHelper.CanImpregnate(sexProps.partner, sexProps.pawn, sexProps.sexType);
|
|
}
|
|
}
|