Benoite can only get pregnant for one week every 28 days.
Mechanics:
Heres the code snippet, where this is being checked:
- startDay is the day, after you've chosen to feminize Benoit. Actually the 'next day event' when Benoit becomes Benoite.
- currDay is the actual ingame day, displayed in the lower left side of the window.
- Now do the math: If (currDay - startDay % 28) is >= 21, he can get pregged.
Code:public function benoitInClutch():Boolean { if (flags[kFLAGS.BENOIT_STATUS] == 0) return false; // Benoit enters "clutch" every 21 days, for 7 days var startDay:int = flags[kFLAGS.FEMOIT_NEXTDAY_EVENT]; var currDay:int = this.getGame().model.time.days; var diffDays:int = (currDay - startDay) % 28; if (diffDays >= 21) return true; return false; }
So she can only become pregnant 28 days after she became female?