rjw-quirks/RJW-Quirks/Modules/Quirks/SexSelectors/CanBeImpregnated.cs

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