From 410a3b54f1fd13b668002fbc526ee7ed6358d717 Mon Sep 17 00:00:00 2001 From: DCoded <dcoded@live.com> Date: Fri, 5 Oct 2018 20:43:55 -0400 Subject: [PATCH] Replaced "cribs" with "rooms" --- src/facilities/nursery/nursery.tw | 12 ++++++------ src/uncategorized/slaveInteract.tw | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/facilities/nursery/nursery.tw b/src/facilities/nursery/nursery.tw index f8c789d6f1c..4cc51c02814 100644 --- a/src/facilities/nursery/nursery.tw +++ b/src/facilities/nursery/nursery.tw @@ -136,21 +136,21 @@ $nurseryNameCaps <<resetAssignmentFilter>> </span><br> -<br>It can support $nursery child<<if $nursery > 1>>ren<</if>>. Currently $nurseryBabies cribs are in use. +<br>It can support $nursery child<<if $nursery > 1>>ren<</if>>. Currently $nurseryBabies rooms are in use. <<if $nursery < 50>> - [[Add another crib|Nursery][$cash -= Math.trunc(500*$upgradeMultiplierArcology), $nursery += 1]] //Costs <<print cashFormat(Math.trunc(500*$upgradeMultiplierArcology))>> and will increase upkeep costs// + [[Add another room|Nursery][$cash -= Math.trunc(500*$upgradeMultiplierArcology), $nursery += 5]] //Costs <<print cashFormat(Math.trunc(500*$upgradeMultiplierArcology))>> and will increase upkeep costs// <<if $freeCribs == 0>> - All of the cribs are currently occupied by growing children. + All of the rooms are currently occupied by growing children. <</if>> <<else>> //$nurseryNameCaps can support a maximum of 50 children// <</if>> <<if $nursery > 1 && $reservedChildrenNursery < $freeCribs>> - [[Remove a crib|Nursery][$cash -= Math.trunc(100*$upgradeMultiplierArcology), $nursery -= 1]] //Costs <<print cashFormat(Math.trunc(100*$upgradeMultiplierArcology))>> and will reduce upkeep costs// + [[Remove a room|Nursery][$cash -= Math.trunc(100*$upgradeMultiplierArcology), $nursery -= 5]] //Costs <<print cashFormat(Math.trunc(100*$upgradeMultiplierArcology))>> and will reduce upkeep costs// <</if>> <br><br> -Reserve an eligible mother-to-be's child to be placed in a crib upon birth. Of $nursery cribs, <<print $freeCribs>> <<if $freeCribs == 1>>is<<else>>are<</if>> unoccupied. Of those, $reservedChildrenNursery <<if $reservedChildrenNursery == 1>>crib is<<else>>cribs are<</if>> reserved. +Reserve an eligible mother-to-be's child to be placed in a room upon birth. Of $nursery rooms, <<print $freeCribs>> <<if $freeCribs == 1>>is<<else>>are<</if>> unoccupied. Of those, $reservedChildrenNursery room<<if $reservedChildrenNursery == 1>> is<<else>>s are<</if>> reserved. <<if (0 < _SL)>> <<set $sortNurseryList = $sortNurseryList || 'Unsorted'>> @@ -349,6 +349,6 @@ Reserve an eligible mother-to-be's child to be placed in a crib upon birth. Of $ <br><br> Target age for release: <<textbox "$targetAge" $targetAge "Nursery">> [[Minimum Legal Age|Nursery][$targetAge = $minimumSlaveAge]] | [[Average Age of Fertility|Nursery][$targetAge = $fertilityAge]] | [[Average Age of Potency|Nursery][$targetAge = $potencyAge]] | [[Legal Adulthood|Nursery][$targetAge = 18]] -//Setting will not be applied to cribs in use.// +//Setting will not be applied to rooms in use.// <br><br>Rename $nurseryName: <<textbox "$nurseryName" $nurseryName "Nursery">> //Use a noun or similar short phrase// diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index e3c1769f045..1591f2fa87a 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -1273,13 +1273,13 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 <</if>> <</if>> <<elseif $reservedChildrenNursery < $freeCribs>> - $He is pregnant and you have <<if $freeCribs == 1>>an<</if>> @@.lime;available crib<<if $freeCribs > 1>>s<</if>>.@@ + $He is pregnant and you have <<if $freeCribs == 1>>an<</if>> @@.lime;available room<<if $freeCribs > 1>>s<</if>>.@@ <<print "[[Keep "+ (($activeSlave.pregType > 1) ? "a" : "the") +" child|Slave Interact][$activeSlave.reservedChildrenNursery += 1, $reservedChildrenNursery += 1]]">> <<if ($activeSlave.pregType > 1) && ($reservedChildrenNursery + $activeSlave.pregType) <= $freeCribs>> | <<link "Keep all of $his children" "Slave Interact">><<set $reservedChildrenNursery += $activeSlave.pregType, $activeSlave.reservedChildrenNursery += $activeSlave.pregType, $reservedChildren = 0>><</link>> <</if>> <<elseif $reservedChildrenNursery == $freeCribs>> - You have no available cribs for $his children. /*Will need to be rewritten, as not all of the children in the Nursery will be in cribs*/ + You have no available rooms for $his children. <</if>> <</if>> <</if>> -- GitLab