diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index b66186cadbc8c38f31e7a3ec5e665577ad1e6dfe..111d231472e30ccf211ee7f53e295f86bb205ed7 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -11289,6 +11289,7 @@ window.generateChild = function(mother, ova, destination) { child.bellyPreg = 0; child.bellyFluid = 0; child.bellyImplant = -1; + child.cervixImplant = 0; child.clitPiercing = 0; child.dickPiercing = 0; child.makeup = 0; @@ -21238,6 +21239,7 @@ window.rulesAutosurgery = (function() { slave.health -= 10; slave.preg = 0; slave.bellyImplant = -1; + slave.cervixImplant = 0; V.cash -= V.surgeryCost; } else if (slave.balls > 0 && slave.vasectomy === 0 && thisSurgery.surgery_vasectomy === true) { surgeries.push("vasectomy"); @@ -36859,7 +36861,7 @@ window.slaveBellyDatatypeCleanup = function slaveBellyDatatypeCleanup(slave) { if (slave.bellyImplant !== 0) { slave.bellyImplant = Math.max(+slave.bellyImplant, -1) || -1; } - slave.cervixImplant = Math.clamp(+slave.cervixImplant, 0, 1) || 0; + slave.cervixImplant = Math.clamp(+slave.cervixImplant, 0, 3) || 0; slave.bellySag = Math.max(+slave.bellySag, 0) || 0; slave.bellySagPreg = Math.max(+slave.bellySagPreg, 0) || slave.bellySag; slave.bellyPain = Math.clamp(+slave.bellyPain, 0, 2) || 0; diff --git a/src/pregmod/implantManufactory.tw b/src/pregmod/implantManufactory.tw index 28f28907c25c9a6dc1a4031211be1b58cd5b9f15..d3bbf66b93a75e4af05ecbbfc31fcb7989ff55fe 100644 --- a/src/pregmod/implantManufactory.tw +++ b/src/pregmod/implantManufactory.tw @@ -19,6 +19,7 @@ The manufactory is capable of producing customized fillable implants. <<if ($meshImplants != 1) && ($rep <= 10000*_PCSkillCheck)>> //You lack the reputation to access plans for supportive breast implants// + <br> <<elseif ($meshImplants != 1) && ($rep > 10000*_PCSkillCheck)>> [[Purchase plans for supportive mesh breast implants|Implant Manufactory][$cash -= 40000*_PCSkillCheck, $meshImplants = 1]] //Costs <<print cashFormat(40000*_PCSkillCheck)>>// @@ -56,14 +57,14 @@ The manufactory is capable of producing customized fillable implants. <<elseif ($cervixImplants == 1) && ($rep <= 8000*_PCSkillCheck)>> The manufactory is capable of crafting cervix filter micropumps for fillable abdominal implants. <br> - //You lack the reputation to conversion kits for rectal filter micropumps for abdominal implants// + //You lack the reputation to obtain conversion kits for rectal filter micropumps// <br> <<elseif ($cervixImplants == 1) && ($rep > 8000*_PCSkillCheck)>> The manufactory is capable of crafting cervix filter micropumps for fillable abdominal implants. <br> [[Purchase conversion kits for rectal filter micropumps|Implant Manufactory][$cash -= 60000*_PCSkillCheck, $cervixImplants = 2]] //Costs <<print cashFormat(60000*_PCSkillCheck)>>// - <br> //Will allow the construction of the anal equialent of the cervix micropumps using the autosurgery.// + <br> //Will allow the construction of the anal equivalent of the cervix micropumps using the autosurgery.// <br> <<elseif ($cervixImplants > 1)>> The manufactory is capable of crafting cervix and rectal filter micropumps for fillable abdominal implants.