From cffccf41a9fd281634cd64c4ec1f23116984abcc Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Fri, 11 Jan 2019 18:35:19 -0500 Subject: [PATCH] fertility genetic flaw work --- devNotes/twine JS.txt | 2 +- src/js/economyJS.tw | 2 +- src/pregmod/geneLab.tw | 2 +- src/uncategorized/costsReport.tw | 9 +++++++++ src/utility/descriptionWidgets.tw | 28 ++++++++++++++++++++++++++++ 5 files changed, 40 insertions(+), 3 deletions(-) diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 69f557ecd86..4a14c7c15a6 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -2555,7 +2555,7 @@ window.getSlaveCost = function(s) { cost -= foodCost; break; } - if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2) { + if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2 && s.preg == 0 && (s.ovaries == 1 || s.mpreg == 1)) { cost += foodCost * .5; } if(s.weight > 130) { diff --git a/src/js/economyJS.tw b/src/js/economyJS.tw index f3b56f444f5..05a00db7caf 100644 --- a/src/js/economyJS.tw +++ b/src/js/economyJS.tw @@ -452,7 +452,7 @@ window.getSlaveCost = function(s) { cost -= foodCost; break; } - if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2) { + if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2 && s.preg == 0 && (s.ovaries == 1 || s.mpreg == 1)) { cost += foodCost * .5; } if(s.weight > 130) { diff --git a/src/pregmod/geneLab.tw b/src/pregmod/geneLab.tw index 603565ef09e..b925fa3794b 100644 --- a/src/pregmod/geneLab.tw +++ b/src/pregmod/geneLab.tw @@ -14,7 +14,7 @@ Genetic Modification <hr> <<if $dispensaryUpgrade == 0>> - //The fabricator must upgraded before it can produce treatments to alter genes// + //The fabricator must be upgraded before it can produce treatments to alter genes// <br> <<else>> The fabricator is capable of producing treatments to alter a slave's genetic code. diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw index 07f7d4f835b..1665818c2b2 100644 --- a/src/uncategorized/costsReport.tw +++ b/src/uncategorized/costsReport.tw @@ -524,6 +524,15 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 || <<set _individualCosts -= $foodCost>> <</if>> <</if>> + <<if ($slaves[$i].geneticQuirks.fertility == 2 && $slaves[$i].geneticQuirks.hyperFertility == 2 && $slaves[$i].preg == 0 && ($slaves[$i].ovaries == 1 || $slaves[$i].mpreg == 1))>> + <br> + <<if $geneticMappingUpgrade == 1>> + <i>Additional dietary supplements due to genetic hyper-fertility:</i> @@.yellowgreen;<<print cashFormat($foodCost/2)>>@@ + <<else>> + <i>Adjustment for unusual deitary deficiencies:</i> @@.yellowgreen;<<print cashFormat($foodCost/2)>>@@ + <</if>> + <<set _individualCosts += $foodCost/2>> + <</if>> <<if $slaves[$i].drugs == "appetite suppressors">> <br> <i>Food saved via suppressed appetite:</i> //reduced by// @@.yellowgreen;<<print cashFormat($foodCost)>>@@ <<set _individualCosts -= $foodCost>> diff --git a/src/utility/descriptionWidgets.tw b/src/utility/descriptionWidgets.tw index 11a3715090e..11dd3d0419c 100644 --- a/src/utility/descriptionWidgets.tw +++ b/src/utility/descriptionWidgets.tw @@ -255,6 +255,34 @@ <</widget>> +<<widget "geneticQuirkAssessment">> + +<<if $geneticMappingUpgrade == 1>> + <<if $activeSlave.geneticQuirks.fertility == 2 && $activeSlave.geneticQuirks.hyperFertility == 2>> + $He has a unique genetic condition resulting in inhumanly high + <<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>> + fertility; risky intercourse will result in multiple pregnancy. + <<else>> + fertility. + <</if>> + <<elseif $activeSlave.geneticQuirks.hyperFertility == 2>> + $He prone to extreme + <<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>> + fertility and will likely undergo multiple pregnancy. + <<else>> + fertility. + <</if>> + <<elseif $activeSlave.geneticQuirks.fertility == 2>> + $He is naturally + <<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>> + fertile and prone to having twins. + <<else>> + fertile. + <</if>> + <</if>> +<</if>> + +<</widget>> <<widget "brandDescription">> -- GitLab