rjw-quirks/RJW-Quirks/Modules/Quirks/SexSelectors/CanBeImpregnated.cs
2022-11-01 12:15:06 -04:00

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);
}
}