Shift breeder from implant chance to ovulation chane. It would overflow back down anyways.

This commit is contained in:
lutepickle 2023-03-11 09:13:01 -08:00
parent 2798d923b1
commit 65b69eaf76
1 changed files with 7 additions and 5 deletions

View File

@ -306,7 +306,8 @@ namespace RJW_Menstruation
if (factor <= 0.0f) return 0.0f; // Too young or too old
}
else part.TransformValue(StatRequest.For(Pawn), ref ovulationChance);
}
}
if (Pawn.Has(Quirk.Breeder)) ovulationChance *= 10.0f;
try
{
calculatingOvulationChance = true;
@ -322,18 +323,19 @@ namespace RJW_Menstruation
get
{
float factor = 1.0f;
if (Pawn.Has(Quirk.Breeder)) factor = 10.0f;
if (ModsConfig.BiotechActive && xxx.is_human(Pawn))
{
// Implant factor will be based solely on pawn age, plus any rollover from ovulation chance
StatPart_FertilityByGenderAge fertilityStatPart = StatDefOf.Fertility.GetStatPart<StatPart_FertilityByGenderAge>();
fertilityStatPart?.TransformValue(StatRequest.For(Pawn), ref factor);
float ovulationOverflow = OvulationChance;
if (ovulationOverflow > 1.0f) factor *= ovulationOverflow;
if (ovulationOverflow > 1.0f) factor *= ovulationOverflow;
return Props.baseImplantationChanceFactor * FertilityModifier * factor;
}
else return Pawn.health.capacities.GetLevel(xxx.reproduction) * Props.baseImplantationChanceFactor * FertilityModifier * factor;
else
{
return Pawn.health.capacities.GetLevel(xxx.reproduction) * Props.baseImplantationChanceFactor * FertilityModifier * factor;
}
}
}