From 9a40e4ec2a406f02003745c0a86ae0ba0615b06e Mon Sep 17 00:00:00 2001 From: pregmodfan <pregmodfan@cock.li> Date: Fri, 16 Feb 2018 12:39:34 +0200 Subject: [PATCH] broodmother implant off and on control --- src/uncategorized/slaveInteract.tw | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 5f02558b541..18650f34a31 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -1039,7 +1039,7 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 <<SetBellySize $activeSlave>> <</if>> <<elseif $activeSlave.broodmotherCountDown > 0>> - //Her pregnancy implant is shutting down; she will be completely emptied of her remaining brood in $activeSlave.broodmotherCountDown week<<if $activeSlave.broodmotherCountDown > 1>>s<</if>>// + //Her pregnancy implant is turned off; she expected to be completely emptied of her remaining brood in $activeSlave.broodmotherCountDown week<<if $activeSlave.broodmotherCountDown > 1>>s<</if>>// <<elseif $activeSlave.preg >= -1>> Contraception: <span id="fertility"><strong><<if $activeSlave.preg == -1>><<print "using contraceptives">><<elseif $activeSlave.pregWeek < 0>><<print "postpartum">><<elseif $activeSlave.preg == 0>><<print "fertile">><<elseif $activeSlave.preg < 4>><<print "may be pregnant">><<else>><<print $activeSlave.preg>><<print " weeks pregnant">><</if>></strong></span>. <<if ($activeSlave.preg == 0)>> @@ -1057,7 +1057,9 @@ Contraception: <span id="fertility"><strong><<if $activeSlave.preg == -1>><<prin <<elseif ($activeSlave.preg > 38) && ($activeSlave.broodmother == 0) && ($activeSlave.labor == 0)>> [[Induce labor|Slave Interact][$activeSlave.labor = 1,$activeSlave.induce = 1,$birthee = 1]] <<elseif ($activeSlave.broodmother > 0) && ($activeSlave.preg > 37)>> - [[Induce mass childbirth|BirthStorm]] | [[Begin implant shutdown|Slave Interact][$activeSlave.broodmotherCountDown = 37]] + [[Induce mass childbirth|BirthStorm]] | [[Turn implant off|Slave Interact][$activeSlave.broodmotherCountDown = 37]] //contdown now dinamicaly updating, but any value above 0 will work as initial turn off marker. +<<elseif ($activeSlave.broodmother > 0) && ($activeSlave.broodmotherCountDown > 0)>> + [[Turn implant on|Slave Interact][$activeSlave.broodmotherCountDown = 0]] <<elseif ($activeSlave.preg > 0) && ($activeSlave.broodmother == 0) && $activeSlave.breedingMark == 1 && $activeSlave.pregSource == -1>> //You are forbidden from aborting an elite child// <<elseif ($activeSlave.preg > 0) && ($activeSlave.broodmother == 0)>> -- GitLab