diff --git a/devNotes/Useful JS Function Documentation.txt b/devNotes/Useful JS Function Documentation.txt
index 052d6e8686eab3f9062e362c17dee8597cef5ef5..2953c34658c964b684d3a83d80108c3d585ea4d8 100644
--- a/devNotes/Useful JS Function Documentation.txt	
+++ b/devNotes/Useful JS Function Documentation.txt	
@@ -287,6 +287,19 @@ UtilJS [script]
 
  getSlaveTrustClass(slave) - returns the trust of the target as text. e.g. if (slave.trust < -95) return 'extremely-terrified';
 
+Health Functions:
+
+setHealth(slave, condition, shortDamage, longDamage, illness, tired) - Sets the health (primarily) of new slaves, it helps ensure the desired values do not immediately kill the slave and corrects them if needed
+
+improveCondition(slave, value) - Basic way to improve the health of a slave, this updates the slave's 'condition' value and their overall 'health' value.
+
+healthDamage(slave, value) - Basic way to reduce the health of a slave, this updates the slave's 'shortDamage' value and their overall 'health' value.
+
+healthPenalty(slave) - Checks illness and tired state in order to provide the slave with a productivity penalty.
+
+illness(slave) - A start of the 'end week loop' function to see if a slave has gotten ill this week, or perhaps recovered, got worse, etc.
+
+endWeekHealthDamage - An end of the 'end week loop' function to move shortDamage to the appropriate longer term variables and such.
 
 Sex Functions:
 
diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt
index 0177fdaafc9e567fe133d7d0a18abba6f64de918..48393978976701c1065c1d107eca556ab1ca9855 100644
--- a/slave variables documentation - Pregmod.txt	
+++ b/slave variables documentation - Pregmod.txt	
@@ -974,9 +974,38 @@ has had facial surgery to reduce age
 0 - no
 1 - yes
 
-health:
+health.condition:
 
-slave's health
+slave's general fitness. Ranges from -100 to 100+
+
+health.shortDamage:
+
+slave's accumulated temporary health damage. Healed simply by time, curatives and job with no/light duties. Reduces condition and if large enough also increases longDamage.
+
+health.longDamage:
+
+slave's accumulated permanent health damage
+
+health.illness:
+
+slave's illness state
+0 - Not ill
+1 - A little under the weather, not really ill but still a minor penalty which most likely clears up the following week
+2 - Slightly ill, small penalty and can be treated at the clinic
+3 - ill, medium penalty and can be treated at the clinic
+4 - very ill, large penalty and can be treated at the clinic
+5 - terribly ill, crippling penalty and can be treated at the clinic
+
+health.tired:
+
+slave's level of exhaustion
+0 - 50 - No effect
+51 - 80 - Tired, small penalty to productivity and increase in devotion/fear
+81 - 100 - Exhausted, medium penalty to productivity and increase in devotion/fear
+
+health.health:
+
+slave's overall health taking into account condition minus damages
 -90-	   - On the edge of death
 -90 - -51  - Extremely unhealthy
 -50 - -21  - Unhealthy
diff --git a/src/Mods/DinnerParty/dinnerPartyExecution.tw b/src/Mods/DinnerParty/dinnerPartyExecution.tw
index 156a352d5479b99e86eb1e3f16c49a697f939566..92cec1cbe427a6e9e89b3430fa3d0adbcde71e14 100644
--- a/src/Mods/DinnerParty/dinnerPartyExecution.tw
+++ b/src/Mods/DinnerParty/dinnerPartyExecution.tw
@@ -412,7 +412,7 @@
 		All of your slaves @@.mediumorchid;respect you less@@ and @@.gold;fear@@ you more as you place your reputation above their wellbeing.
 		<<for _dpe = 0; _dpe < $slaves.length; _dpe++>>
 			<<if random(0,1) > 0>>
-				<<set $slaves[_dpe].health -= 10>>
+				<<run healthDamage($slaves[_dpe], 10)>>
 			<</if>>
 			<<set $slaves[_dpe].devotion -= 5>>
 			<<set $slaves[_dpe].trust -= 5>>
@@ -456,7 +456,7 @@
 			<br><br>
 			The abuse your Head Girl suffers had @@.red;decreased _his2 health@@ and _he2 is @@.mediumorchid;less devoted@@ to you, as you allowed _him2 to be abused.
 			<br>
-			<<set $HeadGirl.health -= 20>>
+			<<run healthDamage($HeadGirl, 20)>>
 			<<set $HeadGirl.devotion -= 20>>
 			<<set _generateEnemies = 1>>
 		<</if>>
@@ -588,7 +588,7 @@
 		<<set $activeSlave.career = 0>>
 		<<set $activeSlave.prestige = 3>>
 		<<set $activeSlave.prestigeDesc = "You stormed $his arcology, killed $his guards, and enslaved $him in revenge for insulting you at a dinner party.">>
-		<<set $activeSlave.health = 20>>
+		<<run setHealth($activeSlave, 20, random(5, 15), 0, 0, 0)>>
 		<<set $activeSlave.dick = 5>>
 		<<set $activeSlave.balls = 5>>
 		<<set $activeSlave.intelligenceImplant = 1>>
diff --git a/src/Mods/SpecialForce/TrickShotNight.tw b/src/Mods/SpecialForce/TrickShotNight.tw
index c86f57400ead4a555bde619e1b5fb6047bc64bde..f2bcf83bd9ef7e510f2e71cb4611de22f06fed45 100644
--- a/src/Mods/SpecialForce/TrickShotNight.tw
+++ b/src/Mods/SpecialForce/TrickShotNight.tw
@@ -88,7 +88,7 @@ Despite your direct elevator, interaction with the majority of your security for
 						<<set $activeSlave.indenture = 52>>
 						<<set $activeSlave.devotion = random(45,60)>>
 						<<set $activeSlave.trust = random(55,65)>>
-						<<set $activeSlave.health = random(60,80)>>
+						<<run setHealth($activeSlave, jsRandom(60, 80), 0, undefined, 0, jsRandom(10, 30))>>
 						<<set $activeSlave.muscles = 60>>
 						<<if $activeSlave.weight > 130>>
 							<<set $activeSlave.weight -= 100>>
diff --git a/src/SecExp/attackHandler.tw b/src/SecExp/attackHandler.tw
index 46186e3aafadc243820240dff61c2c6fa5b48389..a990001b56d36c17112ca58d6c3d1916f5459da0 100644
--- a/src/SecExp/attackHandler.tw
+++ b/src/SecExp/attackHandler.tw
@@ -191,7 +191,7 @@
 			<<set _mercMod -= 0.2>>
 			<<set _SFMod -= 0.2>>
 			<<set _enemyMod += 0.2>>
-			<<set $PC.majorInjury = 3>>
+			<<run healthDamage($PC, 60)>>
 		<</if>>
 	<<elseif $leadingTroops == "assistant">>
 		<<if $rep < 10000 && $SecExp.core.authority < 10000>>
@@ -274,7 +274,7 @@
 			<<set _woundChance -= 2>>
 		<</if>>
 		<<set _woundChance -= 0.25 * (getLimbCount($Bodyguard, 105))>>
-		<<if $Bodyguard.health >= 50>>
+		<<if $Bodyguard.health.condition >= 50>>
 			<<set _woundChance -= 1>>
 		<</if>>
 		<<if $Bodyguard.weight > 130>>
@@ -318,18 +318,17 @@
 			<<set _i = $slaveIndices[$Bodyguard.ID]>>
 			<<if $woundType == 1>>
 				<<set $slaves[_i].voice = 0>>
-				<<set $slaves[_i].health -= 60>>
+				<<run healthDamage($slaves[$i], 60>>
 			<<elseif $woundType == 2>>
-				<<run eyeSurgery($slaves[_i], "both", "blind")>>
-				<<set $slaves[_i].health -= 30>>
+				<<run eyeSurgery($slaves[_i], "both", "blind"), healthDamage($slaves[$i], 30)>>
 			<<elseif $woundType == 3>>
 				<<run removeLimbs($slaves[_i], "all")>>
-				<<set $slaves[_i].health = -80>>
+				<<run healthDamage($slaves[$i], 80>>
 			<<elseif $woundType >= 4>>
-				<<if $slaves[_i].health >= -60>>
-					<<set $slaves[_i].health -= 30>>
+				<<if $slaves[_i].health.health >= -60>>
+					<<run healthDamage($slaves[$i], 30>>
 				<<else>>
-					<<set $slaves[_i].health = -90>>
+					<<run healthDamage($slaves[$i], -90 - $slaves[$i].health.health>>
 				<</if>>
 			<</if>>
 		<</if>>
@@ -400,7 +399,7 @@
 			<<set _woundChance -= 3>>
 		<</if>>
 		<<set _woundChance -= 0.25 * (getLimbCount($HeadGirl, 105))>>
-		<<if $HeadGirl.health >= 50>>
+		<<if $HeadGirl.health.condition >= 50>>
 			<<set _woundChance -= 2>>
 		<</if>>
 		<<if $HeadGirl.weight > 130>>
@@ -444,18 +443,17 @@
 			<<set _i = $slaveIndices[$HeadGirl.ID]>>
 			<<if $woundType == 1>>
 				<<set $slaves[_i].voice = 0>>
-				<<set $slaves[_i].health -= 60>>
+				<<run healthDamage($slaves[$i], 60>>
 			<<elseif $woundType == 2>>
-				<<set eyeSurgery($slaves[_i], "both", "blind")>>
-				<<set $slaves[_i].health -= 30>>
+				<<set eyeSurgery($slaves[_i], "both", "blind"), healthDamage($slaves[$i], 30)>>
 			<<elseif $woundType == 3>>
 				<<run removeLimbs($slaves[_i], "all")>>
-				<<set $slaves[_i].health = -80>>
+				<<run healthDamage($slaves[$i], 80>>
 			<<elseif $woundType >= 4>>
-				<<if $slaves[_i].health >= -60>>
-					<<set $slaves[_i].health -= 30>>
+				<<if $slaves[_i].health.health >= -60>>
+					<<run healthDamage($slaves[$i], 30>>
 				<<else>>
-					<<set $slaves[_i].health = -90>>
+					<<run healthDamage($slaves[$i], -90 - $slaves[$i].health.health>>
 				<</if>>
 			<</if>>
 		<</if>>
diff --git a/src/SecExp/attackReport.tw b/src/SecExp/attackReport.tw
index b4027ad62e29b7c06e50bfbd64adbc62691bafdc..f4daf424d3c64e5c3d7076359255799ef7e33b7d 100644
--- a/src/SecExp/attackReport.tw
+++ b/src/SecExp/attackReport.tw
@@ -854,7 +854,7 @@
 		<<if $gainedWarfare == 1>>
 			Battlefield experience increased your understanding of warfare, making you a better commander.
 		<</if>>
-		<<if $PC.majorInjury > 0>>
+		<<if $PC.health.shortDamage >= 60>>
 			During the fighting @@.red;you were wounded.@@ Your medics assure you it's nothing life threatening, but you'll be weakened for a few weeks.
 		<</if>>
 	<<elseif $leadingTroops == "assistant">>
diff --git a/src/SecExp/rebellionReport.tw b/src/SecExp/rebellionReport.tw
index c74fc093fa6dbdcde152271bca5b0bd14c2ae982..1a9986522eeeec43c783acb1c57cd0baa015950a 100644
--- a/src/SecExp/rebellionReport.tw
+++ b/src/SecExp/rebellionReport.tw
@@ -556,7 +556,7 @@
 		<</if>>
 		<<if random(1,100) <= _woundChance>>
 			A lucky shot managed to find its way to you, leaving a painful, but thankfully not lethal, wound.
-			<<set $PC.majorInjury = 3>>
+			<<run healthDamage($PC, 60)>>
 		<<else>>
 			Fortunately you managed to avoid injury.
 		<</if>>
@@ -567,7 +567,7 @@
 				<<set _woundChance -= 2>>
 			<</if>>
 			<<set _woundChance -= 0.25 * (getLimbCount($Concubine, 105))>>
-			<<if $Concubine.health >= 50>>
+			<<if $Concubine.health.condition >= 50>>
 				<<set _woundChance -= 1>>
 			<</if>>
 			<<if $Concubine.weight > 130>>
@@ -615,10 +615,10 @@
 					<<run removeLimbs($Concubine, "all")>>
 				<<elseif $woundType >= 4>>
 					a stray shot severely wounded $him.
-					<<if $Concubine.health >= -60>>
-						<<set $Concubine.health -= 30>>
+					<<if $Concubine.health.health >= -60>>
+						<<run healthDamage($Concubine, 30>>
 					<<else>>
-						<<set $Concubine.health = -90>>
+						<<run healthDamage($Concubine, 90)>>
 					<</if>>
 				<</if>>
 			<</if>>
@@ -628,7 +628,7 @@
 			<<set _woundChance -= 2>>
 		<</if>>
 		<<set _woundChance -= 0.25 * (getLimbCount($Bodyguard, 105))>>
-		<<if $Bodyguard.health >= 50>>
+		<<if $Bodyguard.health.condition >= 50>>
 			<<set _woundChance -= 1>>
 		<</if>>
 		<<if $Bodyguard.weight > 130>>
@@ -676,10 +676,10 @@
 				<<run removeLimbs($Bodyguard, "all")>>
 			<<elseif $woundType >= 4>>
 				A stray shot severely wounded _him2.
-				<<if $Bodyguard.health >= -60>>
-					<<set $Bodyguard.health -= 30>>
+				<<if $Bodyguard.health.health >= -60>>
+					<<run healthDamage($Bodyguard, 30)>>
 				<<else>>
-					<<set $Bodyguard.health = -90>>
+					<<run healthDamage($Bodyguard, $Bodyguard.health.health + 90)>>
 				<</if>>
 			<</if>>
 		<</if>>
@@ -725,7 +725,7 @@
 		<<set _woundChance *= random(1,2)>>
 		<<if random(1,100) <= _woundChance>>
 			A lucky shot managed to find its way to you, leaving a painful, but thankfully nonlethal, wound.
-			<<set $PC.majorInjury = 3>>
+			<<run healthDamage($PC, 60)>>
 		<<else>>
 			Fortunately you managed to avoid injury.
 		<</if>>
@@ -736,7 +736,7 @@
 				<<set _woundChance -= 2>>
 			<</if>>
 			<<set _woundChance -= 0.25 * (getLimbCount($Concubine, 105))>>
-			<<if $Concubine.health >= 50>>
+			<<if $Concubine.health.condition >= 50>>
 				<<set _woundChance -= 1>>
 			<</if>>
 			<<if $Concubine.weight > 130>>
@@ -784,10 +784,10 @@
 					<<run removeLimbs($Concubine, "all")>>
 				<<elseif $woundType >= 4>>
 					a stray shot severely wounded $him.
-					<<if $Concubine.health >= -60>>
-						<<set $Concubine.health -= 30>>
+					<<if $Concubine.health.health >= -60>>
+						<<run healthDamage($Concubine, 30)>>
 					<<else>>
-						<<set $Concubine.health = -90>>
+						<<run healthDamage($Concubine, $Concubine.health.health + 90)>>
 					<</if>>
 				<</if>>
 			<</if>>
@@ -834,7 +834,7 @@
 		<<set _woundChance *= random(1,2)>>
 		<<if random(1,100) <= _woundChance>>
 			A lucky shot managed to find its way to you, leaving a painful, but thankfully nonlethal, wound.
-			<<set $PC.majorInjury = 3>>
+			<<run healthDamage($PC, 60)>>
 		<<else>>
 			Fortunately you managed to avoid injury.
 		<</if>>
@@ -845,7 +845,7 @@
 				<<set _woundChance -= 2>>
 			<</if>>
 			<<set _woundChance -= 0.25 * (getLimbCount($Concubine, 105))>>
-			<<if $Concubine.health >= 50>>
+			<<if $Concubine.health.condition >= 50>>
 				<<set _woundChance -= 1>>
 			<</if>>
 			<<if $Concubine.weight > 130>>
@@ -893,10 +893,10 @@
 					<<run removeLimbs($Concubine, "all")>>
 				<<elseif $woundType >= 4>>
 					a stray shot severely wounded $him.
-					<<if $Concubine.health >= -60>>
-						<<set $Concubine.health -= 30>>
+					<<if $Concubine.health.health >= -60>>
+						<<run healthDamage($Concubine, 30)>>
 					<<else>>
-						<<set $Concubine.health = -90>>
+						<<run healthDamage($Concubine, -90 - $Concubine.health.health)>>
 					<</if>>
 				<</if>>
 			<</if>>
diff --git a/src/SecExp/secExpSmilingMan.tw b/src/SecExp/secExpSmilingMan.tw
index cf05e487dcf30c07a4a944be19e6da3d89ce2d56..9a5b52ba19213a760bf970970fbd9f12c6a65234 100644
--- a/src/SecExp/secExpSmilingMan.tw
+++ b/src/SecExp/secExpSmilingMan.tw
@@ -277,7 +277,7 @@
 	<<set $activeSlave.devotion = 5 * $relationshipLM>>
 	<<set $activeSlave.trust = 5 * $relationshipLM>>
 	<<set $activeSlave.face = random(10,50)>>
-	<<set $activeSlave.health = 70>>
+	<<run setHealth($activeSlave, 70, 0, 0, 0, 0)>>
 	<<set $activeSlave.teeth = "normal">>
 	<<set $activeSlave.areolae = 0>>
 	<<set $activeSlave.anus = 0>>
diff --git a/src/cheats/mod_EditChildCheatNew.tw b/src/cheats/mod_EditChildCheatNew.tw
index 2f1c32b90880d134bf2a97e3d12af4ae404a1df7..30c60ab946df1380bd8c71fbe88d548c9790e0d3 100644
--- a/src/cheats/mod_EditChildCheatNew.tw
+++ b/src/cheats/mod_EditChildCheatNew.tw
@@ -776,8 +776,20 @@
 	''Birth week:''
 	<<textbox "$tempSlave.birthWeek" $tempSlave.birthWeek>>
 	<br><br>
-	''Health (-99 to 100, -100 is death):''
-	<<textbox "$tempSlave.health" $tempSlave.health>>
+	''Condition (-99 to 100, -100 is death. Condition minus short and long term damage of -100 is also death):''
+	<<textbox "$tempSlave.health.condition" $tempSlave.health.condition>>
+	<br>
+	''Damage - Short Term:''
+	<<textbox "$tempSlave.health.shortDamage" $tempSlave.health.shortDamage>>
+	<br>
+	''Damage - Long Term:''
+	<<textbox "$tempSlave.health.longDamage" $tempSlave.health.longDamage>>
+	<br>
+	''Illness (0 to 5):''
+	<<textbox "$tempSlave.health.illness" $tempSlave.health.illness>>
+	<br>
+	''Tired (0 to 100):''
+	<<testbox "$tempSlave.health.tired" $tempSlave.health.tired>>
 	<br>
 	''DNA Errors (0 to 990):''
 	<<textbox "$tempSlave.chem" $tempSlave.chem>>
@@ -3463,7 +3475,7 @@
 <br><<print "@@.yellow;Refresh through selecting a new or the same passage again for Changes to be seen@@" >><br>
 <span id="spot"></span><br>
 /* ------------------------------------------------------------------------- Used Variables: ------------------------------------------------------------------------------------------------*/
-/*.visualAge .ageImplant .birthWeek .health .chem .addict .devotion .oldDevotion .trust .oldTrust .face .faceShape .faceImplant .markings .bald .hLength .hStyle .hColor .origHColor*/
+/*.visualAge .ageImplant .birthWeek .health.condition .health.shortDamage .health.longDamage .health.illness .health.tired .chem .addict .devotion .oldDevotion .trust .oldTrust .face .faceShape .faceImplant .markings .bald .hLength .hStyle .hColor .origHColor*/
 /*.eyebrowHColor .pubicHColor .pubicHStyle .underArmHColor .underArmHStyle .eyeColor .origEye .eyes .hears .lips .lipsImplant .teeth .voiceImplant .voice .accent .genes .amp .fuckdoll .muscles .weight*/
 /*.waist .height .heightImplant .shoulders .shouldersImplant .hips .hipsImplant .bellyImplant .bellySag .burst .boobs .boobsImplant .boobsImplantType .lactation .boobShape .nipples .areolae*/
 /*.butt .buttImplant .anus .mpreg .vagina .vaginaLube .clit .labia .pubertyXX .pubertyAgeXX .crevixImplant .breedingMark .ovaries .preg .pregType .pregSource .dick .foreskin .balls*/
diff --git a/src/cheats/mod_EditInfantCheatNew.tw b/src/cheats/mod_EditInfantCheatNew.tw
index fe2cf6c010f5bb5dcd1a33411dc429c87936dec9..316a0289ed9ae53981ffcada6e569558bf156f28 100644
--- a/src/cheats/mod_EditInfantCheatNew.tw
+++ b/src/cheats/mod_EditInfantCheatNew.tw
@@ -778,8 +778,20 @@
 	''Birth week:''
 	<<textbox "$tempSlave.birthWeek" $tempSlave.birthWeek>>
 	<br><br>
-	''Health (-99 to 100, -100 is death):''
-	<<textbox "$tempSlave.health" $tempSlave.health>>
+	''Condition (-99 to 100, -100 is death. Condition minus short and long term damage of -100 is also death):''
+	<<textbox "$tempSlave.health.condition" $tempSlave.health.condition>>
+	<br>
+	''Damage - Short Term:''
+	<<textbox "$tempSlave.health.shortDamage" $tempSlave.health.shortDamage>>
+	<br>
+	''Damage - Long Term:''
+	<<textbox "$tempSlave.health.longDamage" $tempSlave.health.longDamage>>
+	<br>
+	''Illness (0 to 5):''
+	<<textbox "$tempSlave.health.illness" $tempSlave.health.illness>>
+	<br>
+	''Tired (0 to 100):''
+	<<testbox "$tempSlave.health.tired" $tempSlave.health.tired>>
 	<br>
 	''DNA Errors (0 to 990):''
 	<<textbox "$tempSlave.chem" $tempSlave.chem>>
@@ -3465,7 +3477,7 @@
 <br><<print "@@.yellow;Refresh through selecting a new or the same passage again for Changes to be seen@@" >><br>
 <span id="spot"></span><br>
 /* ------------------------------------------------------------------------- Used Variables: ------------------------------------------------------------------------------------------------*/
-/*.visualAge .ageImplant .birthWeek .health .chem .addict .devotion .oldDevotion .trust .oldTrust .face .faceShape .faceImplant .markings .bald .hLength .hStyle .hColor .origHColor*/
+/*.visualAge .ageImplant .birthWeek .health.condition .health.shortDamage .health.longDamage .health.illness .health.tired .chem .addict .devotion .oldDevotion .trust .oldTrust .face .faceShape .faceImplant .markings .bald .hLength .hStyle .hColor .origHColor*/
 /*.eyebrowHColor .pubicHColor .pubicHStyle .underArmHColor .underArmHStyle .eyeColor .origEye .eyes .hears .lips .lipsImplant .teeth .voiceImplant .voice .accent .genes .amp .fuckdoll .muscles .weight*/
 /*.waist .height .heightImplant .shoulders .shouldersImplant .hips .hipsImplant .bellyImplant .bellySag .burst .boobs .boobsImplant .boobsImplantType .lactation .boobShape .nipples .areolae*/
 /*.butt .buttImplant .anus .mpreg .vagina .vaginaLube .clit .labia .pubertyXX .pubertyAgeXX .crevixImplant .breedingMark .ovaries .preg .pregType .pregSource .dick .foreskin .balls*/
diff --git a/src/cheats/mod_EditSlaveCheat.tw b/src/cheats/mod_EditSlaveCheat.tw
index 23bcd8588c8e6e5a1bb2a0296b9a962ea8c921db..50ba2a405467e7adcfb867cebbc0cdf1b6e788ec 100644
--- a/src/cheats/mod_EditSlaveCheat.tw
+++ b/src/cheats/mod_EditSlaveCheat.tw
@@ -227,8 +227,20 @@
 ''Age Implant (0 or 1):''
 <<textbox "$tempSlave.ageImplant" $tempSlave.ageImplant>>
 <br>
-''Health (-99 to 100, -100 is death):''
-<<textbox "$tempSlave.health" $tempSlave.health>>
+''Condition (-99 to 100, -100 is death. Condition minus short and long term damage of -100 is also death):''
+<<textbox "$tempSlave.health.condition" $tempSlave.health.condition>>
+<br>
+''Damage - Short Term:''
+<<textbox "$tempSlave.health.shortDamage" $tempSlave.health.shortDamage>>
+<br>
+''Damage - Long Term:''
+<<textbox "$tempSlave.health.longDamage" $tempSlave.health.longDamage>>
+<br>
+''Illness (0 to 5):''
+<<textbox "$tempSlave.health.illness" $tempSlave.health.illness>>
+<br>
+''Tired (0 to 100):''
+<<testbox "$tempSlave.health.tired" $tempSlave.health.tired>>
 <br>
 ''Addiction:''
 <<textbox "$tempSlave.addict" $tempSlave.addict>>
diff --git a/src/cheats/mod_editSlaveCheatNew.tw b/src/cheats/mod_editSlaveCheatNew.tw
index 6ddf809ca6fbd6267cc2a8de91b9066b1f494fd2..9a667b1e190328d607994ef848b80fd507b89aa3 100644
--- a/src/cheats/mod_editSlaveCheatNew.tw
+++ b/src/cheats/mod_editSlaveCheatNew.tw
@@ -1524,8 +1524,20 @@
 	''Birth week:''
 	<<textbox "$tempSlave.birthWeek" $tempSlave.birthWeek>>
 	<br><br>
-	''Health (-99 to 100, -100 is death):''
-	<<textbox "$tempSlave.health" $tempSlave.health>>
+	''Condition (-99 to 100, -100 is death. Condition minus short and long term damage of -100 is also death):''
+	<<textbox "$tempSlave.health.condition" $tempSlave.health.condition>>
+	<br>
+	''Damage - Short Term:''
+	<<textbox "$tempSlave.health.shortDamage" $tempSlave.health.shortDamage>>
+	<br>
+	''Damage - Long Term:''
+	<<textbox "$tempSlave.health.longDamage" $tempSlave.health.longDamage>>
+	<br>
+	''Illness (0 to 5):''
+	<<textbox "$tempSlave.health.illness" $tempSlave.health.illness>>
+	<br>
+	''Tired (0 to 100):''
+	<<testbox "$tempSlave.health.tired" $tempSlave.health.tired>>
 	<br>
 	''DNA Errors (0 to 990):''
 	<<textbox "$tempSlave.chem" $tempSlave.chem>>
@@ -4779,7 +4791,7 @@
 <br><<print "@@.yellow;Refresh through selecting a new or the same passage again for Changes to be seen@@" >><br>
 <span id="spot"></span><br>
 /* ------------------------------------------------------------------------- Used Variables: ------------------------------------------------------------------------------------------------*/
-/*.visualAge .ageImplant .birthWeek .health .chem .addict .devotion .oldDevotion .trust .oldTrust .face .faceShape .faceImplant .markings .bald .hLength .hStyle .hColor .origHColor*/
+/*.visualAge .ageImplant .birthWeek .health.condition .health.shortDamage .health.longDamage .health.illness .health.tired .chem .addict .devotion .oldDevotion .trust .oldTrust .face .faceShape .faceImplant .markings .bald .hLength .hStyle .hColor .origHColor*/
 /*.eyebrowHColor .pubicHColor .pubicHStyle .underArmHColor .underArmHStyle .eyeColor .origEye .eyes .hears .lips .lipsImplant .teeth .voiceImplant .voice .accent .genes .amp .fuckdoll .muscles .weight*/
 /*.waist .height .heightImplant .shoulders .shouldersImplant .hips .hipsImplant .bellyImplant .bellySag .burst .boobs .boobsImplant .boobsImplantType .lactation .boobShape .nipples .areolae*/
 /*.butt .buttImplant .anus .mpreg .vagina .vaginaLube .clit .labia .pubertyXX .pubertyAgeXX .crevixImplant .breedingMark .ovaries .preg .pregType .pregSource .dick .foreskin .balls*/
diff --git a/src/endWeek/healthFunctions.js b/src/endWeek/healthFunctions.js
new file mode 100644
index 0000000000000000000000000000000000000000..713acc253532fe6fac5e03dc4028655d7e723eb3
--- /dev/null
+++ b/src/endWeek/healthFunctions.js
@@ -0,0 +1,301 @@
+/* Condition
+    The current physical condition of the slave.
+    Any health improvements get added here.
+    Short term damage reduces it as it degrades.
+
+Short term damage
+    Anything that hurts a slave gets transferred into this.
+    At the end of the week 25% of it will be removed and turned into condition damage instead.
+    Usage of preventatives or curatives reduces the actual condition damage by 50%.
+
+Long term damage
+    Once ageing beyond 30 years old there is a chance of long term damage that increases with time. Calculated on birthday.
+        Math.floor((slave.age - 25 + jsRandom(1, 15)) / 20)
+    25% of the actual condition damage taken during a week also gets added to the pool (therefore gets reduced by preventatives and curatives if active).
+    Nothing can reduce this value.
+    Perhaps the effect can still be reduced through surgical implant with high upkeep.
+
+Carcinogens
+    Aside from a source of regular short term damage high levels will also increase the chances for severe illnesses
+        3d6 rolls for illness
+            illness > 8 -- 1 62.5%
+            illness > 6 -- 2 21.3%
+            illness > 5 -- 3 11.6%
+            illness > 4 -- 4 2.8%
+            illness = 3 or 4 -- 5 1.8%
+        Carcinogens substract Math.trunc(chem / 150) from the dice rolls for a max of -6 at >= 90
+    There should be a natural decay of carcinogens every week of 10% of the level. But at the price of 0.2 short term damage per point of chem.
+    Add carcinogen damage to serious medical procedures due to use of potent pharmaceuticals during them.
+
+Illness
+    There is always a chance a slave gets sick. Often they will just get better on their own, but sometimes it can be more serious and require a stay in the clinic.
+    Sick slaves work at reduced effectiveness and will see their health lowered.
+
+Tiredness
+    Depending on various factors (living conditions, assignment, rewards, muscles, health) a slave may become more or less tired.
+    Once tiredness reached 50 there will be negative effects for productivity and at 80 they become even more extreme.
+    Being tired or exhausted also reduces a slave's ability to resist the player, increasing devotion and fear.
+
+Health
+    The aggregate of condition, short term damage and long term damage to provide an indication of the current overal state of the slave. The slave will die once this reached -100.
+*/
+
+/**
+ * @param {App.Entity.SlaveState} slave
+ * @returns {string}
+ */
+
+/* Getting ill depends on the following factors;
+    - current condition
+    - long term damage (accumulated through getting old(er) and residual from short term damage)
+    - short term damage (accumulated through serious illness, chemical carcinogens, damaging surgeries and other health damage sources) 125%
+    - chemical carcinogens (more serious illness chance with high carcinogen levels)
+    - age (long term damge takes care of older slaves, the young ones need a specific vulnerability)
+    - use of curatives
+    - assignment (rest, clinic, spa and master suite)
+    - random chance
+*/
+
+window.illness = function illness(slave) {
+    const random = jsRandom(1, 100); // high rolls are good
+    const H = slave.health;
+    let assignBonus = 0; // bonus for healthy assignments
+    // On the macro side of things disease could also happen to the acrology's population as the arcology becomes crowded, killing citizens and putting slaves at greater risk of getting ill. Again with upgrades/policies to mitigate the issue made availble TODO?
+    if (slave.assignment !== "live with your agent" || slave.assignment !== "be your agent") { // Let's make sure agents don't get sick and accidentally die, they should take care of themselves
+        if (slave.assignment === "rest" || slave.assignment === "rest in the spa" || slave.assignment === "get treatment in the clinic" || slave.assignment === "serve in the master suite" || slave.assignment === "please you") {
+            assignBonus += 10;
+        }
+        if (random < 6) { // There is always a 5% chance of a slave feeling worse
+            if (H.illness > 0) {
+                H.illness += 1 + Math.trunc((slave.chem / 10 + jsRandom(1, 50) + 15) / 100); // Illness progresses with 1, unless chem > 350, then there's a chance for 2
+                if (H.illness > 5) {
+                    healthDamage(slave, 20 * (H.illness - 5)); // Condition penalty for going over maximum illness, very dangerous
+                    H.illness = 5;
+                }
+            } else {
+                getIll(slave);
+            }
+        } else if (random > 95) { // There is always a 5% chance of a slave getting better
+            H.illness -= 1;
+            if (H.illness < 0) {
+                H.illness = 0;
+                improveCondition(slave, 5);
+            }
+        } else if ((Math.min(H.condition - H.longDamage - H.shortDamage * 1.25, 50) + (Math.min(Math.trunc((slave.age - 18) / 3)), 0)) / 3 + random + assignBonus + nurseEffectiveness(slave) < 30 / Math.min(slave.curatives + 1, 2)) { // Chance of getting ill 30% at complete default, 20% with a favourable assignment, 15% with curatives or preventatives, 10% with both measures active and a small benefit from effective Nurse screening
+            if (H.illness > 0) {
+                H.illness += 1 + Math.trunc((slave.chem / 10 + jsRandom(1, 50) + 15) / 100);
+                if (H.illness > 5) {
+                    healthDamage(slave, 20 * (H.illness - 5));
+                    H.illness = 5;
+                }
+            } else {
+                getIll(slave);
+            }
+        } else if (H.illness > 0) { // When ill, a slave has a 60% chance of getting better the next week at complete default, 70% with a favourable assignment, 80% with curatives, 90% with both measures active and additional benefits depending on the nurse on duty
+            if ((H.condition - H.longDamage - H.shortDamage * 1.25 + (Math.min(Math.trunc((slave.age - 18) / 3)), 0)) / 3 + random + assignBonus + nurseEffectiveness(slave) > 40 / Math.clamp(slave.curatives, 1, 2)) {
+                if (nurseEffectiveness(slave) > 30 && jsRandom(1, 2) === 2 && H.illness > 1) { // A particularly effective nurse can improve illness faster
+                    H.illness -= 2;
+                } else {
+                    H.illness -= 1;
+                }
+            }
+        }
+        // Slave .need reduction if ill or tired
+        if (slave.energy < 50) {
+            slave.need = Math.trunc(slave.need * healthPenalty(slave));
+        } else if (slave.illness > 0) {
+            slave.need = Math.trunc(slave.need * (1 - (100 - Math.min(Math.pow(H.illness, 2) * 5 + 5, 95)) / 100));
+        }
+    }
+};
+
+window.getIll = function getIll(slave) { // Once a new illness is rolled this determines how bad it is initially, chem levels seriously increase the chances of a higher initial value
+    const H = slave.health;
+    const illness = jsRandom(1, 6) + jsRandom(1, 6) + jsRandom(1, 6) - Math.trunc(H.chem / 150);
+    if (illness < 4) {
+        H.illness = 5; // 1.8% chance
+    } else if (illness < 5) {
+        H.illness = 4; // 2.8% chance
+    } else if (illness < 6) {
+        H.illness = 3; // 11.6% chance
+    } else if (illness < 8) {
+        H.illness = 2; // 21.3% chance
+    } else {
+        H.illness = 1; // 62.5% chance
+    }
+};
+
+window.nurseEffectiveness = function nurseEffectiveness(slave) { // A better nurse and/or less slaves/patients to look out for makes for a better chance of curing illness
+    const V = State.variables;
+    const H = slave.health;
+    const clinicUpgrade = 1; // Creating a purchasable upgrade to increase the amount of slaves the nurse can handle -- TODO
+    const clinicScreening = 1; // Assumes the clinic is set to screening all slaves to improve their chances of staying healthy. Turning it off would allow the nurse to focus on just her patients in the clinic -- TODO
+    if (V.Nurse !== 0) {
+        let nurseEffectiveness = Math.trunc((V.Nurse.skill.nurse * clinicUpgrade / Math.max((V.CliniciIDs.length * 10 + (V.slaves.length * 2) * clinicScreening), 1)) * 20);
+        if (H.illness > 1 && slave.assignment === "get treatment in the clinic") {
+            if (nurseEffectiveness < 20) {
+                return nurseEffectiveness;
+            } else if (V.Nurse.skill.nurse > 80) {
+                return Math.min(nurseEffectiveness, 40);
+            } else if (V.Nurse.skill.nurse > 40) {
+                return Math.min(nurseEffectiveness, 30);
+            } else {
+                return 20;
+            }
+        } else if (H.illness < 2) { // reasonably ill slaves get no benefit from the nurse unless they are in the clinic, otherwise she can provide benefits to prevent illness in the first place and clearing up illnesses of level 1
+            nurseEffectiveness = Math.trunc(nurseEffectiveness / 4);
+            if (nurseEffectiveness < 5) {
+                return nurseEffectiveness;
+            } else {
+                return 5;
+            }
+        }
+    } else {
+        return 0;
+    }
+};
+
+window.endWeekHealthDamage = function endWeekHealthDamage(slave) { // Run at the end of the week to take care of health changes
+    const H = slave.health;
+    let chemToShort = 0;
+    let shortToCondition = 0;
+    let shortToLong = 0;
+    let tiredToCondition = 0;
+
+    // Checking if we are dealing with the player
+    // Player does not make use of most things slaves deal with, only short to long term damage
+    if (slave.ID !== -1) {
+        // dealing with carcinogens
+        // They decay naturally at a rate of 10%, but at as they decay cause short term damage
+        if (slave.chem > 0) {
+            if (slave.chem > 10) {
+                chemToShort += Math.max(Math.trunc(slave.chem * 0.1), 1);
+            } else if (slave.chem > jsRandom(0, 9)) {
+                chemToShort += 1;
+            }
+            slave.chem -= chemToShort;
+            H.shortDamage += Math.max(Math.trunc(chemToShort * 0.2), 2);
+        }
+
+        // dealing with illness
+        if (H.illness > 0) {
+            H.shortDamage += Math.trunc(Math.pow(H.illness, 1.52) * 3 + 2); // 5, 10, 17, 26, 36 points of damage per respective level of illness
+        }
+
+        // Reducing condition for tired slaves
+        if (H.tired > 100) {
+            tiredToCondition += Math.trunc((H.tired - 100) * 0.5) + normalRandInt(5, 0.5);
+            H.tired = 100;
+        } else if (H.tired > 80) {
+            tiredToCondition += normalRandInt(5, 0.5);
+        } else if (H.tired > 50) {
+            tiredToCondition += normalRandInt(2, 0.5);
+        } else {
+            H.tired = Math.max(H.tired, 0);
+        }
+        if (tiredToCondition > 0) {
+            H.condition -= tiredToCondition;
+        }
+
+        // Long term damage due to age calculated on birthdays only
+        if (slave.birthWeek === 0 && slave.age > 29) {
+            H.longDamage += Math.trunc((slave.age - 25 + jsRandom(1, 15)) / 20);
+        }
+    } else if (slave.condition < 100) { // The player gets an automatic 5 condition recovery each weak up to 100
+        slave.condition = Math.min(slave.condition + 5, 100);
+    }
+
+    // recovering and transfering short term damage to condition and long term
+    if (H.shortDamage > 0) {
+        shortToCondition += Math.max(Math.trunc(H.shortDamage * 0.25), 1); // 25% of short term damage gets transfered
+        H.shortDamage -= shortToCondition;
+        if (slave.curatives > 0 || slave.ID === -1) { // transferred damage is half if on preventatives/curatives or target is the player
+            shortToCondition = Math.trunc(shortToCondition * 0.5);
+        }
+        H.condition -= shortToCondition;
+        shortToLong += Math.trunc(shortToCondition * 0.25); // 25% of transfered damage gets added to long term damage, minimum of 16 short term damage before any long term damage is accumulated
+        H.longDamage += shortToLong;
+    }
+
+    // Making sure condition doesn't get too high
+    if (H.condition > 150) {
+        H.condition -= Math.trunc(Math.pow(H.condition - 150, 0.5));
+    }
+
+    H.health = H.condition - H.longDamage - H.shortDamage;
+};
+
+window.tired = function tired(slave) { // Run at the end of the week to take care of tiredness changes
+    const V = State.variables;
+    const H = slave.health;
+    let livingRules = 0;
+    let assignment = 0;
+    let reward = 0;
+    let muscles;
+    let health;
+    let tiredChange;
+
+    // Living Conditions
+    if (slave.livingRules === "spare") {
+        livingRules += normalRandInt(10); // Increases tired by an average of 10 points while sleeping under sparse conditions
+    } else if (slave.livingRules === "luxurious") {
+        livingRules -= normalRandInt(5); // Reduces tired by an average of 5 points while sleeping under luxurious conditions
+    }
+
+    // Assignment
+    if (slave.assignment === "rest" || slave.assignment === "get treatment in the clinic") {
+        assignment -= normalRandInt(15, 2); // Reduces tired by an average of 15 points while on a relaxing assignment
+    } else if (slave.assignment === "serve in the master suite" || slave.assignment === "please you" || slave.assignment === "guard you" || slave.assignment === "be the Attendant" || slave.assignment === "be the Matron" || slave.assignment === "be the Stewardess" || slave.assignment === "be the Milkmaid" || slave.assignment === "be the Farmer" || slave.assignment === "be the DJ" || slave.assignment === "be your Concubine" || slave.assignment === "be the Madam" || slave.assignment === "be the Schoolteacher" || slave.assignment === "be the Wardeness" || slave.assignment === "be the Nurse" || slave.assignment === "be your Head Girl" || slave.assignment === "recruit girls" || slave.assignment === "learn in the schoolroom" || slave.assignment === "take classes" || slave.assignment === "live with your Head Girl") {
+        assignment -= normalRandInt(5); // Reduces tired by an average of 5 points while on a relatively easy assignment/in a leadership position
+    } else if (slave.assignment === "rest in the spa") {
+        assignment -= normalRandInt(20, 1.5) * (V.spaUpgrade + 1); // Reduces tired by an average of 20 points while in the spa, 40 points with the upgraded spa
+        if (V.Attendant !== 0) {
+            assignment -= Math.trunc(V.Attendant.skill.attendant / 10); // Maximum of 10 extra points of negative tiredness due to attendant skill
+        }
+    } else if (slave.assignment === "whore" || slave.assignment === "be a servant" || slave.assignment === "serve the public" || slave.assignment === "work a glory hole" || slave.assignment === "work in the brothel" || slave.assignment === "serve in the club" || slave.assignment === "be confined in the arcade" || slave.assignment === "work as a servant" || slave.assignment === "work as a farmhand") {
+        assignment += normalRandInt(20, 2); // Increases tired by an average of 20 points while on a demanding assignment
+    } else if (slave.assignment === "be your agent" || slave.assignment === "live with your agent") {
+        assignment -= normalRandInt(15, 2); // Making sure agents don't get exhausted, surely they can afford to do some relaxing
+    } else if (slave.assignment === "work in the dairy") {
+        if (V.dairyRestraintsSetting > 1) {
+            assignment += normalRandInt(20, 2); // Full industrial Dairy is exhausting
+        } else if (V.dairyRestraintsSetting > 0) {
+            assignment += normalRandInt(5); // Restraining while milking is a little stressful
+        } else {
+            assignment -= normalRandInt(5); // Being a free range cow is relatively relaxing
+        }
+    } else if (slave.assignment === "get milked") {
+        assignment += normalRandInt(5);
+    }
+
+    // Rewards
+    if (V.spaSpots > 0 && slave.assignment !== "rest in the spa" && (slave.rules.reward === "relaxation" || slave.rules.reward === "situational")) {
+        if (slave.rules.reward === "relaxation") { // Considering the strength of the reward
+            reward = -2;
+        } else {
+            reward = -1;
+        }
+        if (slave.devotion > 50) { // Considering how often the slave gets rewarded
+            reward *= 3;
+        } else if (slave.devotion > 20) {
+            reward *= 2;
+        } else if (slave.devotion < -20 || slave.trust >= -20) {
+            reward = 0;
+        }
+        V.spaSpots -= reward; // Reducing the available space in the spa depending on how often the slave can be found there
+        reward = Math.min(normalRandInt(reward), 0) * (V.spaUpgrade + 1);
+    }
+
+    // Muscles
+    if (slave.muscles < 50) {
+        muscles = -Math.trunc((slave.muscles / 10) * (1 + normalRandInt(0, 5) / 100)); // Being weak increases tiredness, building muscles eventually reduces tiredness
+    } else {
+        muscles = -Math.trunc(5 * (1 + normalRandInt(0, 5) / 100)); // Muscle benefits max out at 50
+    }
+
+    // Health
+    health = Math.trunc((H.shortDamage / 2 - H.condition / 20) * (1 + normalRandInt(0, 5) / 100)); // Current condition reduces tiredness, health damage increases tiredness
+
+    tiredChange = livingRules + assignment + reward + muscles + health;
+    H.tired += tiredChange;
+};
diff --git a/src/endWeek/saGetMilked.js b/src/endWeek/saGetMilked.js
index cd5915b5d49b5aaf85a04643a14be9d407d7e563..d36fc82c7ea67eba361ada2f94f7aa2808da7b75 100644
--- a/src/endWeek/saGetMilked.js
+++ b/src/endWeek/saGetMilked.js
@@ -118,8 +118,8 @@ window.saGetMilked = (function saGetMilked() {
 					if (slave.trust < V.milkmaidTrustThreshold) {
 						slave.trust += V.milkmaidTrustBonus;
 					}
-					if (slave.health < 100) {
-						slave.health += V.milkmaidHealthBonus;
+					if (slave.health.condition < 100) {
+						slave.health.condition += V.milkmaidHealthBonus;
 					}
 				}
 			}
@@ -157,7 +157,7 @@ window.saGetMilked = (function saGetMilked() {
 			}
 			if (slave.curatives === 0 && slave.inflationType !== "curative") {
 				r += ` The stress of extreme milk production <span class="red">damages ${his} health.</span>`;
-				slave.health -= 3;
+				healthDamage(slave, 3);
 			}
 		}
 
@@ -231,9 +231,9 @@ window.saGetMilked = (function saGetMilked() {
 			r += `.`;
 		}
 
-		if (slave.health > 50) {
+		if (slave.health.condition > 50) {
 			r += ` ${His} shining health helps ${him} really produce.`;
-		} else if (slave.health < -50) {
+		} else if (slave.health.condition < -50) {
 			r += ` ${His} poor health impedes milk production.`;
 		}
 
@@ -553,12 +553,36 @@ window.saGetMilked = (function saGetMilked() {
 			r += ` ${He}'s so unhappy that ${his} mental state has a negative impact on ${his} semen production.`;
 		}
 
-		if (slave.health > 50) {
+		if (slave.health.condition > 50) {
 			r += ` ${His} shining health helps ${him} really produce.`;
-		} else if (slave.health < -50) {
+		} else if (slave.health.condition < -50) {
 			r += ` ${His} poor health impedes semen production.`;
 		}
 
+		if (slave.health.illness > 0 || slave.health.tired > 50) {
+			r += ` ${He} performed worse this week due to`;
+			if (slave.health.illness === 1) {
+				r += ` feeling under the weather`;
+			} else if (slave.health.illness === 2) {
+				r += ` a minor illness`;
+			} else if (slave.health.illness === 3) {
+				r += ` being sick`;
+			} else if (slave.health.illness === 4) {
+				r += ` being very sick`;
+			} else if (slave.health.illness === 5) {
+				r += ` a terrible illness`;
+			}
+			if (slave.health.illness > 0 && slave.health.tired > 50) {
+				r += ` and`;
+			}
+			if (slave.health.tired < 80) {
+				r += ` being tired`;
+			} else {
+				r += ` exhaustion`;
+			}
+			r += `.`;
+		}
+
 		if (slave.vasectomy === 1) {
 			r += ` ${His} cum lacks the primary ingredient, sperm, thanks to ${his} vasectomy, <span class="red">considerably lowering the value</span> of ${his} ejaculate.`;
 		} else if (slave.ballType === "sterile") {
@@ -723,12 +747,12 @@ window.saGetMilked = (function saGetMilked() {
 			}
 		}
 		if (slave.energy > 10) {
-			if (slave.health > 50) {
+			if (slave.health.condition > 50) {
 				if (slave.energy > 90) {
 					r += ` As a nympho, ${he} has no trouble orgasming almost constantly.`;
 				}
 				r += ` ${His} shining health keeps ${his} juices flowing.`;
-			} else if (slave.health < -50) {
+			} else if (slave.health.condition < -50) {
 				r += ` ${He} is so unwell, ${he} produces less than normal.`;
 			}
 		} else {
@@ -772,10 +796,10 @@ window.saGetMilked = (function saGetMilked() {
 			}
 		}
 		if (slave.energy > 10) {
-			if (slave.health > 50) {
-				fluid *= (slave.health / 50);
-			} else if (slave.health < -50) {
-				fluid *= (1 + (slave.health / 50));
+			if (slave.health.condition > 50) {
+				fluid *= (slave.health.condition / 50);
+			} else if (slave.health.condition < -50) {
+				fluid *= (1 + (slave.health.condition / 50));
 			}
 		}
 		fluid = Math.trunc(fluid);
@@ -892,7 +916,7 @@ window.saGetMilked = (function saGetMilked() {
 			} else {
 				r += `an incident without lasting effect.`;
 			}
-			slave.health += (2 * vignette.effect);
+			improveCondition(slave, 2 * vignette.effect);
 		} else {
 			if (vignette.effect > 0) {
 				r += `<span class="green">gaining you a bit of reputation.</span>`;
diff --git a/src/endWeek/saNanny.js b/src/endWeek/saNanny.js
index 3ffe96b82e2dc97014afe77dd4882b08ca62e8d9..bba5fdf8186ac371fea77d244955c0d1f12a98a6 100644
--- a/src/endWeek/saNanny.js
+++ b/src/endWeek/saNanny.js
@@ -135,7 +135,7 @@ window.saNanny = function saNanny(slave) {
 			} else {
 				t += `an incident without lasting effect.`;
 			}
-			slave.health += (2 * vignette.effect);
+			improveCondition(slave, 2 * vignette.effect);
 		} else {
 			let modifier = FResult(slave);
 			if (vignette.effect > 0) {
@@ -167,8 +167,8 @@ window.saNanny = function saNanny(slave) {
 			if (slave.devotion < V.FarmerTrustThreshold) {
 				slave.trust += V.FarmerTrustBonus;
 			}
-			if (slave.health < 100) {
-				slave.health += V.FarmerHealthBonus;
+			if (slave.condition < 100) {
+				improveCondition(slave, V.FarmerHealthBonus);
 			}*/
 	}
 
diff --git a/src/endWeek/saRest.js b/src/endWeek/saRest.js
index 0b449f83928cdd4500ef5464e03fa6a4020ebc18..7ca82781dc1d7b6ec799f888082a86dc00b34aab 100644
--- a/src/endWeek/saRest.js
+++ b/src/endWeek/saRest.js
@@ -22,17 +22,17 @@ window.saRest = function saRest(slave) {
 		t += `in place.`;
 	}
 
-	if (slave.health > 90) {
+	if (slave.health.condition > 90) {
 		t += ` ${His} health is so outstanding that rest does not improve it.`;
-	} else if (slave.health > -100) {
+	} else if (slave.health.condition > -100) {
 		t += ` ${His} <span class="green">health recovers</span> with rest.`;
-		slave.health += 10;
+		improveCondition(slave, 10);
 		if (!(canHear(slave))) {
 			t += ` Since ${he} is deaf, the hustle and bustle of daily life in the penthouse <span class="green">didn't bother ${him} at all.</span>`;
-			slave.health += 3;
+			improveCondition(slave, 3);
 		} else if ((slave.hears === -1 && slave.earwear !== "hearing aids") || (slave.hears === 0 && slave.earwear === "muffling ear plugs")) {
 			t += ` Since ${he} is hard of hearing, the hustle and bustle of daily life in the penthouse <span class="green">didn't disturb ${his} rest as much.</span>`;
-			slave.health += 1;
+			improveCondition(slave, 1);
 		}
 	}
 
@@ -56,6 +56,30 @@ window.saRest = function saRest(slave) {
 		}
 	}
 
+	if (slave.health.illness > 0 || slave.health.tired > 50) {
+		t += ` Since ${he} is`;
+		if (slave.health.illness === 1) {
+			t += ` feeling under the weather`;
+		} else if (slave.health.illness === 2) {
+			t += ` somewhat ill`;
+		} else if (slave.health.illness === 3) {
+			t += ` sick`;
+		} else if (slave.health.illness === 4) {
+			t += ` very sick`;
+		} else if (slave.health.illness === 5) {
+			t += ` terribly ill`;
+		}
+		if (slave.health.illness > 0 && slave.health.tired > 50) {
+			t += ` and`;
+		}
+		if (slave.health.tired < 80) {
+			t += ` tired`;
+		} else {
+			t += ` exhausted`;
+		}
+		t += ` ${he} greatly appreciates being allowed to rest.`;
+	}
+
 	if (V.showVignettes === 1 && slave.assignment === Job.REST) {
 		const _vignette = GetVignette(slave);
 		t += ` __This week__ ${_vignette.text} `;
@@ -117,12 +141,13 @@ window.saRest = function saRest(slave) {
 		} else if (_vignette.type === "health") {
 			if (_vignette.effect > 0) {
 				t += `<span class="green">improving ${his} health.</span>`;
+				improveCondition(slave, 2 * _vignette.effect);
 			} else if (_vignette.effect < 0) {
 				t += `<span class="red">affecting ${his} health.</span>`;
+				healthDamage(slave, 2 * _vignette.effect);
 			} else {
 				t += `an incident without lasting effect.`;
 			}
-			slave.health += (2 * _vignette.effect);
 		} else {
 			if (_vignette.effect > 0) {
 				t += `<span class="green">gaining you a bit of reputation.</span>`;
diff --git a/src/endWeek/saRules_old.js b/src/endWeek/saRules_old.js
index 0520d7e5fc160035b941aa4d8f30cd625b5efc0d..ca6e16c82953dd1698151adc5388c9ca7f988aab 100644
--- a/src/endWeek/saRules_old.js
+++ b/src/endWeek/saRules_old.js
@@ -357,22 +357,39 @@
 							switch (slave.rules.reward) {
 								case "relaxation":
 									r += `${He}'s given free time, which ${he}`;
-									if (V.spa) {
+									if (V.spa && V.spaSpots > 0) {
 										r += `usually spends in ${V.spaName}${V.Attendant ? ` enjoying ${Attendant.slaveName}'s care` : ``}. `;
+										improveCondition(slave, rewards * 2);
+										slave.health.tired -= Math.ceil(Math.max(normalRandInt(rewards * 3), 1) * (1 + V.spaUpgrade / 2));
+										V.spaSpots -= rewards * 2;
+									} else if (V.spa) {
+										r += 'mostly spends relaxing in the penthouse slave quarters because the spa was too busy. ';
+										improveCondition(slave, rewards);
+										slave.health.tired -= Math.max(normalRandInt(rewards * 2), 1);
 									} else {
 										r += `usually spends relaxing in the penthouse slave quarters. `;
+										improveCondition(slave, rewards);
+										slave.health.tired -= Math.max(normalRandInt(rewards * 2), 1);
 									}
 
 									if (slave.relationship) {
 										r += `${He} often asks to save these breaks so ${he} can spend them with ${his} ${slave.relationship === 1 ? `friend` : slave.relationship === 2 ? `best friend` : slave.relationship === 3 ? `friend with benefits` : slave.relationship === 4 ? `sweetheart` : `wife`}. `;
 									}
 									r += `These breaks are <span class="green">good for ${him}. </span>`;
-									slave.health += rewards;
 									break;
 								case "drugs":
 									r += `${He}'s <span class="hotpink">rewarded</span> with hits of mild recreational drugs, which <span class="red">isn't healthy,</span> but helps bind ${him} to you strongly. `;
-									slave.health -= rewards;
+									healthDamage(slave, rewards * 2);
 									slave.devotion += rewards * 2;
+									if (V.spa) {
+										if (V.spaSpots > 0) {
+											r += `${He} is also allowed to make use of the spa and <span class="green">relax a little. </span>`;
+											slave.health.tired -= Math.max(normalRandInt(rewards), 1);
+											V.spaSpots -= rewards;
+										} else {
+											r += `${He} can't relax in the spa, because it is full. `;
+										}
+									}
 									break;
 								case "orgasm":
 									r += `${He}'s <span class="hotpink">rewarded</span> with`;
@@ -389,6 +406,15 @@
 									}
 									slave.need -= rewards * 10;
 									slave.devotion += rewards;
+									if (V.spa) {
+										if (V.spaSpots > 0) {
+											r += `${He} is also allowed to make use of the spa and <span class="green">relax a little. </span>`;
+											slave.health.tired -= Math.max(normalRandInt(rewards), 1);
+											V.spaSpots -= rewards;
+										} else {
+											r += `${He} can't relax in the spa, because it is full. `;
+										}
+									}
 									break;
 								default:
 									r += `${He}'s <span class="hotpink">rewarded</span> `;
@@ -397,6 +423,15 @@
 									}
 									r += `situationally, letting ${him} develop normally. `;
 									slave.devotion += rewards;
+									if (V.spa) {
+										if (V.spaSpots > 0) {
+											r += `${He} is also allowed to make use of the spa and <span class="green">relax a little. </span>`;
+											slave.health.tired -= Math.max(normalRandInt(rewards), 1);
+											V.spaSpots -= rewards;
+										} else {
+											r += `${He} can't relax in the spa, because it is full. `;
+										}
+									}
 									break;
 							}
 						}
@@ -414,7 +449,7 @@
 									break;
 								case "whipping":
 									r += `When ${he} disobeys, ${he}'s <span class="gold">whipped,</span> not hard enough to mark ${him}, but hard enough to <span class="red">hurt,</span> breaking ${him} quickly. `;
-									slave.health -= punishments;
+									healthDamage(slave, punishments);
 									slave.trust -= 2 * punishments;
 									break;
 								case "chastity":
diff --git a/src/endWeek/saServant.js b/src/endWeek/saServant.js
index f8db6797f13cf4faeae757639c6cc6d9e7a3f17b..94fb23fb83d5872473218c3b4284e9ce77824c64 100644
--- a/src/endWeek/saServant.js
+++ b/src/endWeek/saServant.js
@@ -33,12 +33,12 @@ window.saServant = function saServant(slave) {
 				}
 				if (!(canHear(slave))) {
 					t += ` However, ${his} inability to hear often leaves ${him} oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`;
-					cashX(V.stewardessBonus / 4, "houseServant", slave);
+					cashX(V.stewardessBonus / 4 * healthPenalty(slave), "houseServant", slave);
 				} else if ((slave.hears === -1 && slave.earwear !== "hearing aids") || (slave.hears === 0 && slave.earwear === "muffling ear plugs")) {
 					t += ` However, ${he} often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`;
-					cashX(V.stewardessBonus / 2, "houseServant", slave);
+					cashX(V.stewardessBonus / 2 * healthPenalty(slave), "houseServant", slave);
 				} else {
-					cashX(V.stewardessBonus, "houseServant", slave);
+					cashX(V.stewardessBonus * healthPenalty(slave), "houseServant", slave);
 				}
 			}
 		}
@@ -63,6 +63,30 @@ window.saServant = function saServant(slave) {
 		t += `so happy to serve your other slaves that ${he} often sees to their needs before they know they have them, and greatly <span class="yellowgreen">reduces the upkeep</span> of your slaves.`;
 	}
 
+	if (slave.health.illness > 0 || slave.health.tired > 50) {
+		r += ` ${He} performed worse this week due to`;
+		if (slave.health.illness === 1) {
+			r += ` feeling under the weather`;
+		} else if (slave.health.illness === 2) {
+			r += ` a minor illness`;
+		} else if (slave.health.illness === 3) {
+			r += ` being sick`;
+		} else if (slave.health.illness === 4) {
+			r += ` being very sick`;
+		} else if (slave.health.illness === 5) {
+			r += ` a terrible illness`;
+		}
+		if (slave.health.illness > 0 && slave.health.tired > 50) {
+			r += ` and`;
+		}
+		if (slave.health.tired < 80) {
+			r += ` being tired`;
+		} else {
+			r += ` exhaustion`;
+		}
+		r += `.`;
+	}
+
 	if (slave.rules.release !== "chastity") {
 		const _oral = jsRandom(5, 10);
 		slave.counter.oral += _oral;
@@ -183,7 +207,7 @@ window.saServant = function saServant(slave) {
 			} else {
 				t += `an incident without lasting effect.`;
 			}
-			slave.health += (2 * vignette.effect);
+			improveCondition(slave, 2 * vignette.effect);
 		} else {
 			let modifier = FResult(slave);
 			if (vignette.effect > 0) {
diff --git a/src/endWeek/saServeThePublic.js b/src/endWeek/saServeThePublic.js
index 78822bd5615654d044f46b948d8cd6410a96bf79..403be6e627eec52fda8b2ce3c787548b74266065 100644
--- a/src/endWeek/saServeThePublic.js
+++ b/src/endWeek/saServeThePublic.js
@@ -320,10 +320,10 @@ window.saServeThePublic = (function saServeThePublic() {
 					r += `${he}'s on`;
 				}
 				r += ` protect ${him} from the wear of being a slut.`;
-			} else if (slave.health < -50) {
-				r += ` The stress of being a slut while ill is <span class="red">very hard on ${him}.</span>`;
-			} else if (slave.health < -20 && jsRandom(1, 100) > 50) {
-				r += ` The stress of being a slut while ill is <span class="red">hard on ${him}.</span>`;
+			} else if (slave.health.condition < -50) {
+				r += ` The stress of being a slut while in terrible condition is <span class="red">very hard on ${him}.</span>`;
+			} else if (slave.health.condition < -20 && jsRandom(1, 100) > 50) {
+				r += ` The stress of being a slut while in poor condition is <span class="red">hard on ${him}.</span>`;
 			} else if (slave.vagina < 0) {
 				if (slave.minorInjury === 0) {
 					r += ` ${He}'s such an expert public servant that ${he} copes with the stress of being a ${SlaveTitle(slave)} slut.`;
@@ -364,6 +364,30 @@ window.saServeThePublic = (function saServeThePublic() {
 			}
 		}
 
+		if (slave.health.illness > 0 || slave.health.tired > 50) {
+			r += ` ${He} performed worse this week due to`;
+			if (slave.health.illness === 1) {
+				r += ` feeling under the weather`;
+			} else if (slave.health.illness === 2) {
+				r += ` a minor illness`;
+			} else if (slave.health.illness === 3) {
+				r += ` being sick`;
+			} else if (slave.health.illness === 4) {
+				r += ` being very sick`;
+			} else if (slave.health.illness === 5) {
+				r += ` a terrible illness`;
+			}
+			if (slave.health.illness > 0 && slave.health.tired > 50) {
+				r += ` and`;
+			}
+			if (slave.health.tired < 80) {
+				r += ` being tired`;
+			} else {
+				r += ` exhaustion`;
+			}
+			r += `.`;
+		}
+
 		if (canDoVaginal(slave)) {
 			if (slave.vagina === 0) {
 				if (slave.aphrodisiacs > 1 || slave.inflationType === "aphrodisiac") {
@@ -1572,12 +1596,13 @@ window.saServeThePublic = (function saServeThePublic() {
 			} else if (vignette.type === "health") {
 				if (vignette.effect > 0) {
 					r += `<span class="green">improving ${his} health.</span>`;
+					improveCondition(slave, 2 * vignette.effect);
 				} else if (vignette.effect < 0) {
 					r += `<span class="red">affecting ${his} health.</span>`;
+					healthDamage(slave, 2 * vignette.effect);
 				} else {
 					r += `an incident without lasting effect.`;
 				}
-				slave.health += (2 * vignette.effect);
 			} else {
 				if (vignette.effect > 0) {
 					r += `<span class="green">gaining you a bit of reputation.</span>`;
diff --git a/src/endWeek/saStayConfined.js b/src/endWeek/saStayConfined.js
index 878fd6222c3a584aa91ba9726ead16d6c0b8634b..94b1d3830ea47227948fc90966b236a71ee86295 100644
--- a/src/endWeek/saStayConfined.js
+++ b/src/endWeek/saStayConfined.js
@@ -46,7 +46,31 @@ window.saStayConfined = function saStayConfined(slave) {
 		}
 
 		t += ` The stress of confinement <span class="red">damages ${his} health.</span>`;
-		slave.health -= 10;
+		healthDamage(slave, 10);
+
+		if (slave.health.illness > 0 || slave.health.tired > 50) {
+			r += ` ${He} is`;
+			if (slave.health.illness === 1) {
+				r += ` feeling under the weather`;
+			} else if (slave.health.illness === 2) {
+				r += ` somewhat ill`;
+			} else if (slave.health.illness === 3) {
+				r += ` sick`;
+			} else if (slave.health.illness === 4) {
+				r += ` very sick`;
+			} else if (slave.health.illness === 5) {
+				r += ` terribly ill`;
+			}
+			if (slave.health.illness > 0 && slave.health.tired > 50) {
+				r += ` and`;
+			}
+			if (slave.health.tired < 80) {
+				r += ` tired`;
+			} else {
+				r += ` exhausted`;
+			}
+			r += ` ${his} misery only grows.`;
+		}
 	} else {
 		t += `is oblivious to ${his} confinement.`;
 	}
diff --git a/src/endWeek/saTakeClasses.js b/src/endWeek/saTakeClasses.js
index 89e786b7648b148f489bce234b587961a9285f92..b88d0560dcdcfe36ead97f1e59b05710b0f9cecd 100644
--- a/src/endWeek/saTakeClasses.js
+++ b/src/endWeek/saTakeClasses.js
@@ -95,6 +95,30 @@ window.saTakeClasses = (function saServeThePublic() {
 					slave.trust -= 4;
 				}
 			}
+
+			if (slave.health.illness > 0 || slave.health.tired > 50) {
+				r += ` ${He} performed worse this week due to`;
+				if (slave.health.illness === 1) {
+					r += ` feeling under the weather`;
+				} else if (slave.health.illness === 2) {
+					r += ` a minor illness`;
+				} else if (slave.health.illness === 3) {
+					r += ` being sick`;
+				} else if (slave.health.illness === 4) {
+					r += ` being very sick`;
+				} else if (slave.health.illness === 5) {
+					r += ` a terrible illness`;
+				}
+				if (slave.health.illness > 0 && slave.health.tired > 50) {
+					r += ` and`;
+				}
+				if (slave.health.tired < 80) {
+					r += ` being tired`;
+				} else {
+					r += ` exhaustion`;
+				}
+				r += `.`;
+			}
 		}
 	}
 
@@ -199,6 +223,9 @@ window.saTakeClasses = (function saServeThePublic() {
 		} else {
 			r += ` and neither likes you nor is afraid of you,`;
 		}
+
+		learning = Math.trunc(learning * healthPenalty(slave));
+
 		r += ` and ${he} `;
 		if (V.schoolroomRemodelBimbo !== 1 || slave.assignment !== "learn in the schoolroom") {
 			if (learning <= 1) {
diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js
index 3bfcbe1064f1bde9e50fe6e323403157375035b5..cddbe51476ba97ea1222c469acbd20367dfa3c22 100644
--- a/src/endWeek/saWhore.js
+++ b/src/endWeek/saWhore.js
@@ -351,13 +351,13 @@ window.saWhore = (function saWhore() {
 					r += `${he}'s on`;
 				}
 				r += ` protect ${him} from the wear of whoring.`;
-			} else if (slave.health < -50) {
-				r += ` The stress of whoring while ill is <span class="red">very hard on ${him}.</span>`;
-				slave.health -= 13;
+			} else if (slave.health.condition < -50) {
+				r += ` The stress of whoring while in terrible condition is <span class="red">very hard on ${him}.</span>`;
+				healthDamage(slave, 13);
 				injury = 1;
-			} else if (slave.health < -20 && jsRandom(1, 100) > 50) {
-				r += ` The stress of whoring while ill is <span class="red">hard on ${him}.</span>`;
-				slave.health -= 10;
+			} else if (slave.health.condition < -20 && jsRandom(1, 100) > 50) {
+				r += ` The stress of whoring while in poor condition is <span class="red">hard on ${him}.</span>`;
+				healthDamage(slave, 10);
 				injury = 1;
 			} else {
 				let canA = canDoAnal(slave);
@@ -366,7 +366,7 @@ window.saWhore = (function saWhore() {
 				// Complicated, I know - but it should automatically account for what acts are possible to scale the injury risk smoothly between 90% when totally unskilled
 				// and 0% when perfectly skilled in the relevant method or methods.
 				if (jsRandom(1, 100) > skilltarget) {
-					slave.health -= 10 - 7*canA*canV;		// Any limitations means an injury inflicts the harsher 10 instead of 3
+					healthDamage(slave, 10 - 7 * canA * canV);		// Any limitations means an injury inflicts the harsher 10 instead of 3
 					injury = 1;
 				}
 
@@ -426,6 +426,30 @@ window.saWhore = (function saWhore() {
 			}
 		}
 
+		if (slave.health.illness > 0 || slave.health.tired > 50) {
+			r += ` ${He} performed worse this week due to`;
+			if (slave.health.illness === 1) {
+				r += ` feeling under the weather`;
+			} else if (slave.health.illness === 2) {
+				r += ` a minor illness`;
+			} else if (slave.health.illness === 3) {
+				r += ` being sick`;
+			} else if (slave.health.illness === 4) {
+				r += ` being very sick`;
+			} else if (slave.health.illness === 5) {
+				r += ` a terrible illness`;
+			}
+			if (slave.health.illness > 0 && slave.health.tired > 50) {
+				r += ` and`;
+			}
+			if (slave.health.tired < 80) {
+				r += ` being tired`;
+			} else {
+				r += ` exhaustion`;
+			}
+			r += `.`;
+		}
+
 		if (canDoVaginal(slave)) {
 			if (slave.vagina === 0) {
 				if (slave.aphrodisiacs > 1 || slave.inflationType === "aphrodisiac") {
@@ -1657,12 +1681,13 @@ window.saWhore = (function saWhore() {
 		} else if (vignette.type === "health") {
 			if (vignette.effect > 0) {
 				r += `<span class="green">improving ${his} health.</span>`;
+				improveCondition(slave, 2 * vignette.effect);
 			} else if (vignette.effect < 0) {
 				r += `<span class="red">affecting ${his} health.</span>`;
+				healthDamage(slave, 2 * vignette.effect);
 			} else {
 				r += `an incident without lasting effect.`;
 			}
-			slave.health += (2 * vignette.effect);
 		} else {
 			if (vignette.effect > 0) {
 				r += `<span class="green">gaining you a bit of reputation.</span>`;
diff --git a/src/endWeek/saWorkAGloryHole.js b/src/endWeek/saWorkAGloryHole.js
index 2a2f510f60c6f1763b2aca2bb6642cc4657880f0..c875fa0bacd9c8f7566fbf46c736269af9cf9e1f 100644
--- a/src/endWeek/saWorkAGloryHole.js
+++ b/src/endWeek/saWorkAGloryHole.js
@@ -105,27 +105,51 @@ window.saWorkAGloryHole = (function saWorkAGloryHole() {
 				r += `on`;
 			}
 			r += ` protect ${his} health from the stress of being used as a sexual appliance.`;
-		} else if (slave.health < -50) {
-			r += ` The stress of being used while very ill <span class="red">damaged ${his} health.</span>`;
-			slave.health -= Math.max(Math.trunc((slave.sexAmount - 100) / 25) + jsRandom(-2, 2), 1);
-		} else if (slave.health < -10) {
+		} else if (slave.health.condition < -50) {
+			r += ` The stress of being used while very in terrible condition <span class="red">damaged ${his} health.</span>`;
+			damageHealth(slave, Math.max(Math.trunc((slave.sexAmount - 400) / 25) + jsRandom(-2, 2), 1));
+		} else if (slave.health.condition < -10) {
 			if (jsRandom(1, 100) < 10) {
 				r += ` The stress of being used while weak has <span class="red">damaged ${his} health.</span>`;
-				slave.health -= Math.max(Math.trunc((slave.sexAmount - 100) / 25) + jsRandom(-2, 2), 1);
+				damageHealth(slave, Math.max(Math.trunc((slave.sexAmount - 400) / 25) + jsRandom(-2, 2), 1));
 			}
 		} else if (!canDoVaginal(slave) && !canDoAnal(slave)) {
 			if (jsRandom(1, 100) < 75) {
 				r += ` The stress of being used repeatedly in only one hole has <span class="red">damaged ${his} health.</span>`;
-				slave.health -= Math.max(Math.trunc((slave.sexAmount - 100) / 25) + jsRandom(-2, 2), 1);
+				damageHealth(slave, Math.max(Math.trunc((slave.sexAmount - 400) / 25) + jsRandom(-2, 2), 1));
 			}
 		} else if (!canDoVaginal(slave)) {
 			if (jsRandom(1, 100) < 50) {
 				r += ` The stress of being used in only two holes has <span class="red">damaged ${his} health.</span>`;
-				slave.health -= Math.max(Math.trunc((slave.sexAmount - 100) / 25) + jsRandom(-2, 2), 1);
+				damageHealth(slave, Math.max(Math.trunc((slave.sexAmount - 400) / 25) + jsRandom(-2, 2), 1));
 			}
 		} else if (jsRandom(1, 100) < 25) {
 			r += ` The stress of being used has <span class="red">damaged ${his} health.</span>`;
-			slave.health -= Math.max(Math.trunc((slave.sexAmount - 100) / 25) + jsRandom(-2, 2), 1);
+			damageHealth(slave, Math.max(Math.trunc((slave.sexAmount - 400) / 25) + jsRandom(-2, 2), 1));
+		}
+
+		if (slave.health.illness > 0 || slave.health.tired > 50) {
+			r += ` ${He} is`;
+			if (slave.health.illness === 1) {
+				r += ` feeling under the weather`;
+			} else if (slave.health.illness === 2) {
+				r += ` somewhat ill`;
+			} else if (slave.health.illness === 3) {
+				r += ` sick`;
+			} else if (slave.health.illness === 4) {
+				r += ` very sick`;
+			} else if (slave.health.illness === 5) {
+				r += ` terribly ill`;
+			}
+			if (slave.health.illness > 0 && slave.health.tired > 50) {
+				r += ` and`;
+			}
+			if (slave.health.tired < 80) {
+				r += ` tired`;
+			} else {
+				r += ` exhausted`;
+			}
+			r += ` but no one cared.`;
 		}
 
 		if (slave.vagina === 0 && canDoVaginal(slave)) {
diff --git a/src/endWeek/saWorkTheFarm.js b/src/endWeek/saWorkTheFarm.js
index 3c4705b0544898314b5a4bf08b0f31af7103a3f2..1ddacaa8be4ee1a4a8e280aa3aa97fce859f9cfb 100644
--- a/src/endWeek/saWorkTheFarm.js
+++ b/src/endWeek/saWorkTheFarm.js
@@ -31,8 +31,8 @@ window.saWorkTheFarm = function saWorkTheFarm(slave) {
 		if (slave.devotion < V.FarmerTrustThreshold) {
 			slave.trust += V.FarmerTrustBonus;
 		}
-		if (slave.health < 100) {
-			slave.health += V.FarmerHealthBonus;
+		if (slave.health.condition < 100) {
+			improveCondition(slave, V.FarmerHealthBonus);
 		}
 	}
 
@@ -54,9 +54,9 @@ window.saWorkTheFarm = function saWorkTheFarm(slave) {
 	} else if (slave.devotion < -50) {
 		t += `${He}'s so resistant that ${he} doesn't work as hard, and thus produces less food.`;
 	}
-	if (slave.health > 50) {
+	if (slave.health.condition > 50) {
 		t += `${His} shining health helps ${him} really work hard. `;
-	} else if (slave.health < -50) {
+	} else if (slave.health.condition < -50) {
 		t += `${His} poor health impedes ${his} ability to work efficiently. `;
 	}
 	if (slave.muscles > 50) {
@@ -296,9 +296,9 @@ window.saWorkTheFarm = function saWorkTheFarm(slave) {
 		} else if (slave.porn.prestige === 3) {
 			t += `${He} earns a lot more because ${he} is so famous from porn. `;
 		}
-		if (slave.health > 20) {
+		if (slave.health.condition > 20) {
 			t += `${He} is in such excellent health that ${he} is able to put on longer and more energetic shows, earning you more. `;
-		} else if (slave.health < -20) {
+		} else if (slave.health.condition < -20) {
 			t += `${His} poor health negatively affects ${his} ability to put on good shows, cutting into your profits. `;
 		}
 		if (slave.face > 40) {
@@ -492,12 +492,13 @@ window.saWorkTheFarm = function saWorkTheFarm(slave) {
 		} else if (vignette.type === "health") {
 			if (vignette.effect > 0) {
 				t += ` <span class="green">improving ${his} health.</span> `;
+				improveCondition(slave, 2 * vignette.effect);
 			} else if (vignette.effect < 0) {
 				t += ` <span class="red">affecting ${his} health.</span> `;
+				damageHealth(slave, 2 * vignette.effect);
 			} else {
 				t += ` an incident without lasting effect. `;
 			}
-			slave.health += 2 * vignette.effect;
 		} else {
 			FResult(slave);
 			if (vignette.effect > 0) {
diff --git a/src/facilities/clinic/clinicFramework.js b/src/facilities/clinic/clinicFramework.js
index 3bfc107d785dc3dea4c36fa11099d401bc12fbdf..e3e21d31e149c90f73c2777224399766bee4f78b 100644
--- a/src/facilities/clinic/clinicFramework.js
+++ b/src/facilities/clinic/clinicFramework.js
@@ -36,7 +36,7 @@ App.Entity.Facilities.ClinicPatientJob = class extends App.Entity.Facilities.Fac
 	checkRequirements(slave) {
 		let r = super.checkRequirements(slave);
 
-		if ((slave.health >= 20) &&
+		if ((slave.health.condition >= 20) &&
 			(V.Nurse === 0 || ((slave.chem <= 15 || this.facility.upgrade("Filters") !== 1) &&
 				(V.bellyImplants !== 1 || slave.bellyImplant <= -1) &&
 				(slave.pregKnown !== 1 || (this.facility.option("SpeedGestation") <= 0 && slave.pregControl !== "speed up")) && (slave.pregAdaptation * 1000 >= slave.bellyPreg && slave.preg <= slave.pregData.normalBirth / 1.33)))) {
diff --git a/src/facilities/farmyard/farmyardReport.tw b/src/facilities/farmyard/farmyardReport.tw
index ef1e53319dcd0e270f8e1fa253a41ea662612a40..15f2900395ce9669e5666d77efbfb8b842fc9f3b 100644
--- a/src/facilities/farmyard/farmyardReport.tw
+++ b/src/facilities/farmyard/farmyardReport.tw
@@ -14,14 +14,14 @@
 <<if ($Farmer != 0)>>
 	<<set _FLs = $slaveIndices[$Farmer.ID]>>
 
-	<<if ($slaves[_FLs].health < -80)>>
-		<<set $slaves[_FLs].health += 20>>
-	<<elseif $slaves[_FLs].health < -40>>
-		<<set $slaves[_FLs].health += 15>>
-	<<elseif $slaves[_FLs].health < 0>>
-		<<set $slaves[_FLs].health += 10>>
-	<<elseif $slaves[_FLs].health < 90>>
-		<<set $slaves[_FLs].health += 7>>
+	<<if ($slaves[_FLs].health.condition < -80)>>
+		<<run improveCondition($slaves[_FLs], 20)>>
+	<<elseif $slaves[_FLs].health.condition < -40>>
+		<<run improveCondition($slaves[_FLs], 15)>>
+	<<elseif $slaves[_FLs].health.condition < 0>>
+		<<run improveCondition($slaves[_FLs], 10)>>
+	<<elseif $slaves[_FLs].health.condition < 90>>
+		<<run improveCondition($slaves[_FLs], 7)>>
 	<</if>>
 	<<if $slaves[_FLs].devotion <= 45>>
 		<<set $slaves[_FLs].devotion += 5>>
@@ -213,14 +213,14 @@
 			<<set $slaves[$i].rules.living = "normal">>
 		<</switch>>
 		/* TODO: should FS with "spare" living rules cause some minor health damage and devotion / trust loss? */
-		<<if ($slaves[$i].health < -80)>>
-			<<set $slaves[$i].health += 20>>
-		<<elseif $slaves[$i].health < -40>>
-			<<set $slaves[$i].health += 15>>
-		<<elseif $slaves[$i].health < 0>>
-			<<set $slaves[$i].health += 10>>
-		<<elseif $slaves[$i].health < 90>>
-			<<set $slaves[$i].health += 7>>
+		<<if ($slaves[$i].health.condition < -80)>>
+			<<run improveCondition($slaves[_FLs], 20)>>
+		<<elseif $slaves[$i].health.condition < -40>>
+			<<run improveCondition($slaves[_FLs], 15)>>
+		<<elseif $slaves[$i].health.condition < 0>>
+			<<run improveCondition($slaves[_FLs], 10)>>
+		<<elseif $slaves[$i].health.condition < 90>>
+			<<run improveCondition($slaves[_FLs], 7)>>
 		<</if>>
 		<<if ($slaves[$i].devotion <= 20) && ($slaves[$i].trust >= -20)>>
 			<<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>>
diff --git a/src/facilities/nursery/childInteract.tw b/src/facilities/nursery/childInteract.tw
index 7ed629e523428f8322440cf88e0790d4a69ef85f..2f0b3b13de85fcb40ceb422bdc84319b2969452d 100644
--- a/src/facilities/nursery/childInteract.tw
+++ b/src/facilities/nursery/childInteract.tw
@@ -1406,7 +1406,7 @@ Hormones: <b><span id="hormones">$activeChild.hormones</span>.</b>
 	<<set $activeChild.diet = "healthy">>
 	<<replace "#diet">>$activeChild.diet<</replace>>
 <</link>>
-<<if ($activeChild.health < 90) && ($activeChild.chem >= 10) && ($dietCleanse)>>
+<<if ($activeChild.health.condition < 90) && ($activeChild.chem >= 10) && ($dietCleanse)>>
 |	<<link "Cleanse">>
 		<<set $activeChild.diet = "cleansing">>
 		<<replace "#diet">>$activeChild.diet<</replace>>
diff --git a/src/facilities/nursery/nurseryDatatypeCleanup.js b/src/facilities/nursery/nurseryDatatypeCleanup.js
index 0af37840adfe6c6ccdbf251d1bbbbcd08f6830d7..90443dad10146b26ff319f9c868786bacac2d1d1 100644
--- a/src/facilities/nursery/nurseryDatatypeCleanup.js
+++ b/src/facilities/nursery/nurseryDatatypeCleanup.js
@@ -58,7 +58,16 @@ App.Facilities.Nursery.ChildDatatypeCleanup = function(child) {
 		if (typeof child.minorInjury !== "string") {
 			child.minorInjury = 0;
 		}
-		child.health = Math.clamp(+child.health, -100, 100) || 0;
+		if (typeof child.health === "number") {
+			const condition = child.health;
+			child.health = {};
+			child.health.condition = condition;
+		}
+		child.health.condition = Math.clamp(+child.health.condition, -100, 100) || 0;
+		child.health.shortDamage = Math.max(+child.health.shortDamage, 0) || 0;
+		child.health.longDamage = Math.max(+child.health.longDamage, 0) || 0;
+		child.health.illness = Math.max(+child.health.illness, 0) || 0;
+		child.health.tired = Math.clamp(+child.health.tired, 0, 100) || 0;
 		child.muscles = Math.clamp(+child.muscles, -100, 100) || 0;
 		child.weight = Math.clamp(+child.weight, -100, 200) || 0;
 		child.waist = Math.clamp(+child.waist, -100, 100) || 0;
@@ -543,7 +552,16 @@ App.Facilities.Nursery.InfantDatatypeCleanup = function(child) {
 		if (typeof child.skin !== "string") {
 			child.skin = "light";
 		}
-		child.health = Math.clamp(+child.health, -100, 100) || 0;
+		if (typeof child.health === "number") {
+			const condition = child.health;
+			child.health = {};
+			child.health.condition = condition;
+		}
+		child.health.condition = Math.clamp(+child.health.condition, -100, 100) || 0;
+		child.health.shortDamage = Math.max(+child.health.shortDamage, 0) || 0;
+		child.health.longDamage = Math.max(+child.health.longDamage, 0) || 0;
+		child.health.illness = Math.max(+child.health.illness, 0) || 0;
+		child.health.tired = Math.clamp(+child.health.tired, 0, 100) || 0;
 		child.weight = Math.clamp(+child.weight, -100, 200) || 0;
 	}
 
diff --git a/src/facilities/nursery/nurseryWidgets.js b/src/facilities/nursery/nurseryWidgets.js
index b5c507d3f83540340bfbb1683c99fed9aeb3e1d9..bf917c342120ed6daed379ec381f925ba6dbe743 100644
--- a/src/facilities/nursery/nurseryWidgets.js
+++ b/src/facilities/nursery/nurseryWidgets.js
@@ -117,12 +117,12 @@ App.Facilities.Nursery.InfantSummary = function(child) {
 	//  * @param {App.Entity.SlaveState} child
 	//  */
 	// function shortHealth(child) {
-	// 	if (child.health < -20) {
-	// 		r += `<strong><span class="red">H ${V.summaryStats ? `[${child.health}]` : ''}</span></strong> `;
-	// 	} else if (child.health <= 20) {
-	// 		r += `<strong><span class="yellow">H ${V.summaryStats ? `[${child.health}]` : ''}</span></strong> `;
-	// 	} else if (child.health > 20) {
-	// 		r += `<strong><span class="green">H ${V.summaryStats ? `[${child.health}]` : ''}</span></strong> `;
+	// 	if (child.health.condition < -20) {
+	// 		r += `<strong><span class="red">H ${V.summaryStats ? `[${child.health.condition}]` : ''}</span></strong> `;
+	// 	} else if (child.health.condition <= 20) {
+	// 		r += `<strong><span class="yellow">H ${V.summaryStats ? `[${child.health.condition}]` : ''}</span></strong> `;
+	// 	} else if (child.health.condition > 20) {
+	// 		r += `<strong><span class="green">H ${V.summaryStats ? `[${child.health.condition}]` : ''}</span></strong> `;
 	// 	}
 	// 	r += " ";
 	// }
@@ -131,20 +131,20 @@ App.Facilities.Nursery.InfantSummary = function(child) {
 	//  * @param {App.Entity.SlaveState} child
 	//  */
 	// function longHealth(child) {
-	// 	if (child.health < -90) {
-	// 		r += `<span class="red">On the edge of death ${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
-	// 	} else if (child.health < -50) {
-	// 		r += `<span class="red">Extremely unhealthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
-	// 	} else if (child.health < -20) {
-	// 		r += `<span class="red">Unhealthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
-	// 	} else if (child.health <= 20) {
-	// 		r += `<span class="yellow">Healthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
-	// 	} else if (child.health <= 50) {
-	// 		r += `<span class="green">Very healthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
-	// 	} else if (child.health <= 90) {
-	// 		r += `<span class="green">Extremely healthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
+	// 	if (child.health.condition < -90) {
+	// 		r += `<span class="red">On the edge of death ${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
+	// 	} else if (child.health.condition < -50) {
+	// 		r += `<span class="red">Extremely unhealthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
+	// 	} else if (child.health.condition < -20) {
+	// 		r += `<span class="red">Unhealthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
+	// 	} else if (child.health.condition <= 20) {
+	// 		r += `<span class="yellow">Healthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
+	// 	} else if (child.health.condition <= 50) {
+	// 		r += `<span class="green">Very healthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
+	// 	} else if (child.health.condition <= 90) {
+	// 		r += `<span class="green">Extremely healthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
 	// 	} else {
-	// 		r += `<span class="green">Unnaturally healthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
+	// 		r += `<span class="green">Unnaturally healthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
 	// 	}
 	// 	r += " ";
 	// }
@@ -3067,12 +3067,12 @@ App.Facilities.Nursery.ChildSummary = function(child) {
 	 * @param {App.Entity.SlaveState} child
 	 */
 	function shortHealth(child) {
-		if (child.health < -20) {
-			r += `<strong><span class="red">H ${V.summaryStats ? `[${child.health}]` : ''}</span></strong> `;
-		} else if (child.health <= 20) {
-			r += `<strong><span class="yellow">H ${V.summaryStats ? `[${child.health}]` : ''}</span></strong> `;
-		} else if (child.health > 20) {
-			r += `<strong><span class="green">H ${V.summaryStats ? `[${child.health}]` : ''}</span></strong> `;
+		if (child.health.condition < -20) {
+			r += `<strong><span class="red">H ${V.summaryStats ? `[${child.health.condition}]` : ''}</span></strong> `;
+		} else if (child.health.condition <= 20) {
+			r += `<strong><span class="yellow">H ${V.summaryStats ? `[${child.health.condition}]` : ''}</span></strong> `;
+		} else if (child.health.condition > 20) {
+			r += `<strong><span class="green">H ${V.summaryStats ? `[${child.health.condition}]` : ''}</span></strong> `;
 		}
 	}
 
@@ -3080,20 +3080,20 @@ App.Facilities.Nursery.ChildSummary = function(child) {
 	 * @param {App.Entity.SlaveState} child
 	 */
 	function longHealth(child) {
-		if (child.health < -90) {
-			r += `<span class="red">On the edge of death ${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
-		} else if (child.health < -50) {
-			r += `<span class="red">Extremely unhealthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
-		} else if (child.health < -20) {
-			r += `<span class="red">Unhealthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
-		} else if (child.health <= 20) {
-			r += `<span class="yellow">Healthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
-		} else if (child.health <= 50) {
-			r += `<span class="green">Very healthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
-		} else if (child.health <= 90) {
-			r += `<span class="green">Extremely healthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
+		if (child.health.condition < -90) {
+			r += `<span class="red">On the edge of death ${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
+		} else if (child.health.condition < -50) {
+			r += `<span class="red">Extremely unhealthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
+		} else if (child.health.condition < -20) {
+			r += `<span class="red">Unhealthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
+		} else if (child.health.condition <= 20) {
+			r += `<span class="yellow">Healthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
+		} else if (child.health.condition <= 50) {
+			r += `<span class="green">Very healthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
+		} else if (child.health.condition <= 90) {
+			r += `<span class="green">Extremely healthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
 		} else {
-			r += `<span class="green">Unnaturally healthy${V.summaryStats ? `[${child.health}]` : ''}.</span> `;
+			r += `<span class="green">Unnaturally healthy${V.summaryStats ? `[${child.health.condition}]` : ''}.</span> `;
 		}
 	}
 
@@ -15615,7 +15615,7 @@ App.Facilities.Nursery.infantToChild = function infantToChild(child) {
 	child.hStyle = "long",
 	child.haircuts = 0,
 	child.headAccessory = "none",
-	child.health = jsRandom(80, 100),
+	setHealth(child, jsRandom(80, 100), 0, 0, 0, 0);
 	child.hears = 0,
 	child.heels = 0,
 	child.height = jsRandom(85, 105),
@@ -16697,17 +16697,42 @@ App.Facilities.Nursery.ChildState = class ChildState {
 		this.ovaryAge = 18;
 		/** Has had facial surgery to reduce age. 0: no, 1: yes */
 		this.ageImplant = 0;
-		/**
-		* Child's health
-		* * -90 - : On the edge of death
-		* * -90 - -51: Extremely unhealthy
-		* * -50 - -21: Unhealthy
-		* * -20 -  20: Healthy
-		* * 21  -  50: Very healthy
-		* * 50  -  90: Extremely healthy
-		* * 90  -  : Unnaturally healthy
-		*/
-		this.health = 0;
+		this.health = {
+			/**
+			* Child's health
+			* * -90 - : On the edge of death
+			* * -90 - -51: Extremely unhealthy
+			* * -50 - -21: Unhealthy
+			* * -20 -  20: Healthy
+			* * 21  -  50: Very healthy
+			* * 50  -  90: Extremely healthy
+			* * 90  -  : Unnaturally healthy
+			*/
+			condition: 0,
+			/** Child's short term health damage */
+			shortDamage: 0,
+			/** Child's long term health damage */
+			longDamage: 0,
+			/**
+			* Child's current illness status
+			* * 0 : Not ill
+			* * 1 : A little under the weather
+			* * 2 : Minor illness
+			* * 3 : Ill
+			* * 4 : serious illness
+			* * 5 : dangerous illness
+			*/
+			illness: 0,
+			/**
+			* Child's current level of exhaustion
+			* * 0  - 50 : Perfectly fine
+			* * 50 - 80 : tired
+			* * 80 - 100 : exhausted
+			*/
+			tired: 0,
+			/** Child's combined health (condition - short - long) */
+			health: 0
+		}
 		/**
 		* slave has a minor injury ("black eye", "bruise", "split lip")
 		* @type {number | string}
@@ -18986,8 +19011,8 @@ App.Facilities.Nursery.nurseryReport = function nurseryReport() {
 				he, him, his, himself, He, His
 			} = getPronouns(Matron);
 
-		if (Matron.health < 100) {
-			Matron.health += 20;
+		if (Matron.health.condition < 100) {
+			improveCondition(Matron, 20);
 		}
 		if (Matron.devotion <= 60) {
 			Matron.devotion++;
@@ -19133,7 +19158,8 @@ App.Facilities.Nursery.nurseryReport = function nurseryReport() {
 
 		V.i = App.Utils.slaveIndexForId(slave.ID);
 
-		slave.devotion += devBonus, slave.trust += trustBonus, slave.health += healthBonus;
+		slave.devotion += devBonus, slave.trust += trustBonus;
+		improveCondition(slave, healthBonus);
 
 		// TODO: rework these
 		if (slave.devotion < 60 && slave.trust < 60) {
@@ -19145,8 +19171,8 @@ App.Facilities.Nursery.nurseryReport = function nurseryReport() {
 		}
 
 		// TODO: rework this
-		if (V.nurseryUpgrade === 1 && slave.health < 20) {
-			slave.health += 3;
+		if (V.nurseryUpgrade === 1 && slave.health.condition < 20) {
+			improveCondition(slave, 3);
 		}
 
 		// TODO:
diff --git a/src/facilities/spa/spaFramework.js b/src/facilities/spa/spaFramework.js
index bc17f8ae2c2982ba1dcc592fd8ada34f22a83866..967ec8c42b5bb6e72b9b3af681ebe5a3bd71a122 100644
--- a/src/facilities/spa/spaFramework.js
+++ b/src/facilities/spa/spaFramework.js
@@ -36,7 +36,7 @@ App.Entity.Facilities.SpaAssigneeJob = class extends App.Entity.Facilities.Facil
 	checkRequirements(slave) {
 		let r = super.checkRequirements(slave);
 
-		if (((slave.devotion < -20 && slave.fetish !== "mindbroken") || (slave.health >= 20 && slave.trust > 60 && slave.devotion > 60 && slave.fetish !== "mindbroken" && slave.sexualFlaw === "none" && slave.behavioralFlaw === "none"))) {
+		if (((slave.devotion < -20 && slave.fetish !== "mindbroken") || (slave.health.condition >= 20 && slave.trust > 60 && slave.devotion > 60 && slave.fetish !== "mindbroken" && slave.sexualFlaw === "none" && slave.behavioralFlaw === "none"))) {
 			r.push(`${slave.slaveName} will not benefit from time at ${this.facility.name}.`);
 		}
 
diff --git a/src/gui/css/mainStyleSheet.css b/src/gui/css/mainStyleSheet.css
index dabe0b08b77d1ae90668886dcf62a56488ff24e1..4d9d096c8c95c70901d4f084b6d7f01a269f70ca 100644
--- a/src/gui/css/mainStyleSheet.css
+++ b/src/gui/css/mainStyleSheet.css
@@ -358,3 +358,7 @@ div.indent {
 div.double-indent {
 	text-indent: 4em;
 }
+div.grid-2columns-auto {
+	display: grid;
+	grid-template-columns: max-content auto;
+}
\ No newline at end of file
diff --git a/src/init/dummy.tw b/src/init/dummy.tw
index 6f15512d8881663845a541c446511da843df65d6..f153afe43697edfe36b253418b46d70117edc366 100644
--- a/src/init/dummy.tw
+++ b/src/init/dummy.tw
@@ -27,7 +27,7 @@ $activeSlave.sexAmount, $activeSlave.sexQuality
 $activeSlave.fertKnown
 $activeSlave.cum
 $drugs, $harshCollars, $shoes, $bellyAccessories, $vaginalAccessories, $dickAccessories, $buttplugs
-$PC.origRace, $PC.origSkin, $PC.majorInjury, $PC.criticalDamage
+$PC.origRace, $PC.origSkin, $PC.criticalDamage
 $PC.eye.left.vision
 $PC.relationships.marriage, $PC.relationships.lovers, $PC.relationships.FWBs, $PC.relationships.BFFs, $PC.relationships.friends, $PC.relationships.likes, $PC.relationships.dislikes, $PC.relationships.hates, $PC.relationships.loathes, $PC.relationships.obsession
 $servantsQuartersSpots
diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index 430cf9b2059a7813760ae9ca8f65ea2867c7e35b..cbd257c7470ec282cb6f753b6df2d1ba527c6b45 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -553,6 +553,7 @@ You should have received a copy of the GNU General Public License along with thi
 <<set $schoolroomNameCaps = "The Schoolroom">>
 <<set $spaDecoration = "standard">>
 <<set $spa = 0>>
+<<set $spaSpots = 0>>
 <<set $spaUpgrade = 0>>
 <<set $spaFix = 0>>
 <<set $spaName = "the Spa">>
@@ -1364,7 +1365,7 @@ You should have received a copy of the GNU General Public License along with thi
 <<set $weatherToday = $niceWeather.random()>>
 
 <<set $customSlaveOrdered = 0>>
-<<set $customSlave = {age: 19, health: 0, muscles: 0, lips: 15, heightMod: "normal", weight: 0, face: 0, race: "white", skin: "left natural", boobs: 500, butt: 3, sex: 1, virgin: 0, dick: 2, balls: 2, clit: 0, labia: 0, vaginaLube: 1, analVirgin: 0, skills: 15, skill: {whore: 15, combat: 0}, intelligence: 0, intelligenceImplant: 0, nationality: "Stateless", leg: {left: new App.Entity.LimbState(), right: new App.Entity.LimbState()}, arm: {left: new App.Entity.LimbState(), right: new App.Entity.LimbState()}, eye: new App.Entity.EyeState(), hears: 0}>>
+<<set $customSlave = {age: 19, health: {}, muscles: 0, lips: 15, heightMod: "normal", weight: 0, face: 0, race: "white", skin: "left natural", boobs: 500, butt: 3, sex: 1, virgin: 0, dick: 2, balls: 2, clit: 0, labia: 0, vaginaLube: 1, analVirgin: 0, skills: 15, skill: {whore: 15, combat: 0}, intelligence: 0, intelligenceImplant: 0, nationality: "Stateless", leg: {left: new App.Entity.LimbState(), right: new App.Entity.LimbState()}, arm: {left: new App.Entity.LimbState(), right: new App.Entity.LimbState()}, eye: new App.Entity.EyeState(), hears: 0}>>
 
 <<set $huskSlaveOrdered = 0>>
 <<set $huskSlave = {age: 18, nationality: "Stateless", race: "white", sex: 1, virgin: 0}>>
diff --git a/src/interaction/main/mainLinks.js b/src/interaction/main/mainLinks.js
index c375f7ab6605d3831d8c0decea516e59361e127e..2512ab8cc9a8d4c8905af409a8de844ee85a72d1 100644
--- a/src/interaction/main/mainLinks.js
+++ b/src/interaction/main/mainLinks.js
@@ -4,7 +4,7 @@ App.UI.View.MainLinks = function() {
 	const PA = Array.isArray(V.personalAttention) ? V.personalAttention.map(x => getSlave(x.ID)) : [];
 	let r = '';
 
-	if (V.PC.majorInjury === 1) {
+	if (V.PC.health.shortDamage >= 30) {
 		r += `The injuries received in the recent battle prevent you from undertaking tiring efforts.`;
 	} else {
 		switch (V.personalAttention) {
@@ -75,7 +75,7 @@ App.UI.View.MainLinks = function() {
 		}
 	}
 
-	if (V.PC.majorInjury !== 1) {
+	if (V.PC.health.shortDamage < 30) {
 		r += ` <span id="managePA"><strong><<link "Change plans">><<goto "Personal Attention Select">><</link>></strong></span> <span class="cyan">[A]</span>`;
 	}
 
diff --git a/src/js/DefaultRules.js b/src/js/DefaultRules.js
index 0839c9dc068a67a91e0848f93cab19b509fb1b8c..22f9974b641a0f08c2a0093db2c17079afb784f7 100644
--- a/src/js/DefaultRules.js
+++ b/src/js/DefaultRules.js
@@ -945,9 +945,9 @@ window.DefaultRules = (function() {
 		// silent calls to surgery degradation have been replaced with a js function, which is less hacky
 		if ((rule.bellyImplantVol !== undefined) && slave.bellyImplant >= 0 && rule.bellyImplantVol >= 0) {
 			r += "<br>";
-			if (slave.health > -10) {
+			if (slave.health.condition > -10) {
 				let diff = rule.bellyImplantVol - slave.bellyImplant;
-				if (diff >= 5000 && slave.bellyPain === 0 && slave.health > 50) {
+				if (diff >= 5000 && slave.bellyPain === 0 && slave.health.condition > 50) {
 					r += `${slave.slaveName}'s belly is way too small, so ${he} has been directed to have intensive belly implant filling procedures throughout this week.`;
 					slave.bellyImplant += 1000;
 					slave.bellyPain += 2;
@@ -1194,7 +1194,7 @@ window.DefaultRules = (function() {
 			if (slave.balls > 0) {
 				growDrugs.balls = "hyper testicle enhancement";
 			}
-		} else if (rule.growth.intensity && slave.indentureRestrictions < 2 && slave.health > 0) {
+		} else if (rule.growth.intensity && slave.indentureRestrictions < 2 && slave.health.condition > 0) {
 			growDrugs.boobs = "intensive breast injections";
 			growDrugs.butt = "intensive butt injections";
 			if (slave.dick > 0) {
@@ -1478,7 +1478,7 @@ window.DefaultRules = (function() {
 	function ProcessEnema(slave, rule) {
 		if ((rule.inflationType !== undefined) && (rule.inflationType !== null)) {
 			if (slave.inflationType !== rule.inflationType) {
-				if ((slave.inflationType === "curative" && slave.health > 90) || (slave.inflationType === "tightener" && slave.anus <= 1 && slave.vagina <= 1)) {
+				if ((slave.inflationType === "curative" && slave.health.condition > 90) || (slave.inflationType === "tightener" && slave.anus <= 1 && slave.vagina <= 1)) {
 					r += `<br>${slave.slaveName} cannot benefit from ${his} assigned enema and has been defaulted to none.`;
 					slave.inflation = 0;
 					slave.inflationType = "none";
@@ -1486,7 +1486,7 @@ window.DefaultRules = (function() {
 					slave.milkSource = 0;
 					slave.cumSource = 0;
 					SetBellySize(slave);
-				} else if ((rule.inflationType === "curative" && slave.health > 90) || (rule.inflationType === "tightener" && slave.anus <= 1 && slave.vagina <= 1)) {
+				} else if ((rule.inflationType === "curative" && slave.health.condition > 90) || (rule.inflationType === "tightener" && slave.anus <= 1 && slave.vagina <= 1)) {
 					// empty block
 				} else {
 					r += `<br>${slave.slaveName}'s current enema regimen has been set to ${rule.inflationType}.`;
@@ -1498,7 +1498,7 @@ window.DefaultRules = (function() {
 					SetBellySize(slave);
 				}
 			}
-			if (slave.inflationType !== "none" && slave.inflation > 1 && slave.health < -50) {
+			if (slave.inflationType !== "none" && slave.inflation > 1 && slave.health.condition < -50) {
 				r += `<br>${slave.slaveName}'s current enema regimen risks death, so it has been reduced to a less threatening level.`;
 				slave.inflation = 1;
 				SetBellySize(slave);
@@ -1656,7 +1656,7 @@ window.DefaultRules = (function() {
 						}
 					}
 				} else if ((rule.diet === "cleansing")) {
-					if ((slave.diet !== "cleansing") && (slave.health < 90 || slave.chem >= 10)) {
+					if ((slave.diet !== "cleansing") && (slave.health.condition < 90 || slave.chem >= 10)) {
 						slave.diet = "cleansing";
 						r += `<br>${slave.slaveName} has been put on a diet of cleansers.`;
 					}
@@ -1727,7 +1727,7 @@ window.DefaultRules = (function() {
 		if ((rule.curatives !== undefined) && (rule.curatives !== null)) {
 			if (slave.curatives !== rule.curatives) {
 				if (rule.curatives === 2) {
-					if (slave.health > 100) {
+					if (slave.health.condition > 100) {
 						if ((slave.curatives !== 1)) {
 							r += `<br>${slave.slaveName} has been put on preventatives, since curatives cannot improve ${his} health further.`;
 							slave.curatives = 1;
@@ -1827,21 +1827,21 @@ window.DefaultRules = (function() {
 			if (rule.pregSpeed === "slow" && slave.preg < slave.pregData.minLiveBirth) {
 				slave.pregControl = "slow gestation";
 				r += `<br>${slave.slaveName} is pregnant, so ${he} has been put on the gestation slowing agents.`;
-			} else if (rule.pregSpeed === "fast" && slave.preg < slave.pregData.minLiveBirth && slave.health > -50) {
+			} else if (rule.pregSpeed === "fast" && slave.preg < slave.pregData.minLiveBirth && slave.health.condition > -50) {
 				slave.pregControl = "speed up";
 				r += `<br>${slave.slaveName} is pregnant, so ${he} has been put on rapid gestation agents. CAUTION! Can be dangerous. Clinic supervision is recommended.`;
-			} else if (rule.pregSpeed === "suppress" && slave.preg >= slave.pregData.minLiveBirth && slave.health > -50) {
+			} else if (rule.pregSpeed === "suppress" && slave.preg >= slave.pregData.minLiveBirth && slave.health.condition > -50) {
 				slave.pregControl = "labor suppressors";
 				r += `<br>${slave.slaveName} is ready to birth, so ${he} has been put on labor suppressing agents.`;
-			} else if (rule.pregSpeed === "stimulate" && slave.preg > slave.pregData.minLiveBirth && slave.health > -50) {
+			} else if (rule.pregSpeed === "stimulate" && slave.preg > slave.pregData.minLiveBirth && slave.health.condition > -50) {
 				slave.labor = 1;
 				slave.induce = 1;
 				V.birthee = 1;
 				r += `<br>${slave.slaveName} is ready to birth, so ${his} labor has been stimulated.`;
-			} else if (rule.pregSpeed === "fast" && slave.pregControl === "speed up" && slave.health <= -50) {
+			} else if (rule.pregSpeed === "fast" && slave.pregControl === "speed up" && slave.health.condition <= -50) {
 				slave.pregControl = "none";
 				r += `<br>${slave.slaveName} is on rapid gestation agents and dangerously unhealthy, so ${his} agent regimen has been stopped.`;
-			} else if (rule.pregSpeed === "suppress" && slave.pregControl === "labor suppressors" && slave.health <= -50) {
+			} else if (rule.pregSpeed === "suppress" && slave.pregControl === "labor suppressors" && slave.health.condition <= -50) {
 				slave.pregControl = "none";
 				r += `<br>${slave.slaveName} is on labor suppression agents and unhealthy, so ${his} agent regimen has been stopped.`;
 			}
@@ -2734,7 +2734,7 @@ window.DefaultRules = (function() {
 			}
 		}
 		if ((rule.autoBrand === 1)) {
-			if ((slave.health > -20)) {
+			if ((slave.health.condition > -20)) {
 				let brandPlace = "";
 				let left;
 				let right;
@@ -2854,7 +2854,7 @@ window.DefaultRules = (function() {
 						slave.devotion -= 5;
 					}
 					slave.trust -= 5;
-					slave.health -= 10;
+					healthDamage(slave, 10);
 					r += `<br>${slave.slaveName} has been branded on the `;
 					if (brandPlace === "left") {
 						slave.brand[left] = rule.brandDesign;
@@ -2874,7 +2874,7 @@ window.DefaultRules = (function() {
 						slave.devotion -= 10;
 					}
 					slave.trust -= 10;
-					slave.health -= 20;
+					healthDamage(slave, 20);
 					r += `<br>${slave.slaveName} has been branded on both ${rule.brandTarget}, with <span class="gold">fear</span>${slave.devotion < 18 ? `, <span class="mediumorchid">regard,</span>` : ``} and <span class="red">health</span> consequences.`;
 				}
 			}
diff --git a/src/js/SlaveState.js b/src/js/SlaveState.js
index d179d511632fbe444ac37173621f6d8ee5b687e4..e494abdeffcbf8933c81016bcac9205e2fd8762b 100644
--- a/src/js/SlaveState.js
+++ b/src/js/SlaveState.js
@@ -607,17 +607,42 @@ App.Entity.SlaveState = class SlaveState {
 		this.ovaryAge = 18;
 		/** has had facial surgery to reduce age. 0: no, 1: yes */
 		this.ageImplant = 0;
-		/**
-		 * slave's health
-		 * * -90 - : On the edge of death
-		 * * -90 - -51: Extremely unhealthy
-		 * * -50 - -21: Unhealthy
-		 * * -20 -  20: Healthy
-		 * * 21  -  50: Very healthy
-		 * * 50  -  90: Extremely healthy
-		 * * 90  -  : Unnaturally healthy
-		 */
-		this.health = 0;
+		this.health = {
+			/**
+			 * slave 's health
+			 * * -90 - : On the edge of death
+			 * * -90 - -51: Extremely unhealthy
+			 * * -50 - -21: Unhealthy
+			 * * -20 -  20: Healthy
+			 * * 21  -  50: Very healthy
+			 * * 50  -  90: Extremely healthy
+			 * * 90  -  : Unnaturally healthy
+			 */
+			condition: 0,
+			/** slave 's short term health damage */
+			shortDamage: 0,
+			/** slave 's long term health damage */
+			longDamage: 0,
+			/**
+			* slave 's current illness status
+			* * 0 : Not ill
+			* * 1 : A little under the weather
+			* * 2 : Minor illness
+			* * 3 : Ill
+			* * 4 : serious illness
+			* * 5 : dangerous illness
+			*/
+			illness: 0,
+			/**
+			* slave 's current level of exhaustion
+			* * 0  - 50 : Perfectly fine
+			* * 50 - 80 : tired
+			* * 80 - 100 : exhausted
+			*/
+			tired: 0,
+			/** slave 's combined health (condition - short - long) */
+			health: 0
+		}
 		/**
 		 * slave has a minor injury ("black eye", "bruise", "split lip")
 		 * @type {number | string}
@@ -2503,6 +2528,7 @@ App.Entity.SlaveState = class SlaveState {
 			leg: {left: {}, right: {}},
 			eye: {left: {}, right: {}},
 			readyProsthetics: [], // yes, not an object, but needed for hero slaves
+			health: {},
 			counter: {},
 			brand: {},
 			scar: {},
diff --git a/src/js/assayJS.js b/src/js/assayJS.js
index 42c39cc88716ecbff018a48426e0fda05d12619d..63f1540e703d6520dd395c910fe8e6c1d9dc459e 100644
--- a/src/js/assayJS.js
+++ b/src/js/assayJS.js
@@ -1625,8 +1625,24 @@ window.Deadliness = function Deadliness(slave) {
 		deadliness += 1;
 	}
 
-	if (slave.health > 50) {
+	if (slave.health.condition > 50) {
 		deadliness += 1;
+	} else if (slave.health.condition < -50) {
+		deadliness -= 1;
+	}
+
+	if (slave.health.tired > 80) {
+		deadliness -= 2;
+	} else if (slave.health.tired > 50) {
+		deadliness -= 1;
+	}
+
+	if (slave.health.illness > 3) {
+		deadliness -= 3;
+	} else if (slave.health.illness > 1) {
+		deadliness -= 2;
+	} else if (slave.health.illness > 0) {
+		deadliness -= 1;
 	}
 
 	if (slave.boobs > 4000) {
@@ -1653,10 +1669,6 @@ window.Deadliness = function Deadliness(slave) {
 		deadliness -= 1;
 	}
 
-	if (slave.health < -50) {
-		deadliness -= 1;
-	}
-
 	if (slave.bellyFluid >= 10000) {
 		deadliness -= 3;
 	} else if (slave.bellyFluid >= 5000) {
diff --git a/src/js/datatypeCleanupJS.js b/src/js/datatypeCleanupJS.js
index 3144aaceef991ecc20e4fdab676a71ff16c2a543..205735cf06fffa858fa2086baae1cfb7b3f26653 100644
--- a/src/js/datatypeCleanupJS.js
+++ b/src/js/datatypeCleanupJS.js
@@ -475,6 +475,17 @@ window.SlaveDatatypeCleanup = (function SlaveDatatypeCleanup() {
 		slave.pubertyAgeXY = Math.max(+slave.pubertyAgeXY, 0) || V.potencyAge;
 		slave.ageAdjust = Math.clamp(+slave.ageAdjust, -40, 40) || 0;
 		slave.NCSyouthening = Math.max(+slave.NCSyouthening, 0) || 0;
+		if (typeof slave.health === "number") {
+			const condition = slave.health;
+			slave.health = {};
+			slave.health.condition = condition;
+		}
+		slave.health.condition = Math.clamp(slave.health.condition, -100, 100) || 0;
+		slave.health.shortDamage = Math.max(+slave.health.shortDamage, 0) || 0;
+		slave.health.longDamage = Math.max(+slave.health.longDamage, 0) || 0;
+		slave.health.illness = Math.max(+slave.health.illness, 0) || 0;
+		slave.health.tired = Math.clamp(+slave.health.tired, 0, 100) || 0;
+		slave.health.health = Math.clamp(slave.health.condition - slave.health.shortDamage - slave.health.longDamage, -100, 100) || 0;
 	}
 
 	/**
@@ -499,7 +510,17 @@ window.SlaveDatatypeCleanup = (function SlaveDatatypeCleanup() {
 		if (typeof slave.minorInjury !== "string") {
 			slave.minorInjury = 0;
 		}
-		slave.health = Math.clamp(+slave.health, -100, 100) || 0;
+		if (typeof slave.health === "number") {
+			const condition = slave.health;
+			slave.health = {};
+			slave.health.condition = condition;
+		}
+		slave.health.condition = Math.clamp(slave.health.condition, -100, 100) || 0;
+		slave.health.shortDamage = Math.max(+slave.health.shortDamage, 0) || 0;
+		slave.health.longDamage = Math.max(+slave.health.longDamage, 0) || 0;
+		slave.health.illness = Math.max(+slave.health.illness, 0) || 0;
+		slave.health.tired = Math.clamp(+slave.health.tired, 0, 100) || 0;
+		slave.health.health = Math.clamp(slave.health.condition - slave.health.shortDamage - slave.health.longDamage, -100, 100) || 0;
 		slave.muscles = Math.clamp(+slave.muscles, -100, 100) || 0;
 		slave.weight = Math.clamp(+slave.weight, -100, 200) || 0;
 		slave.waist = Math.clamp(+slave.waist, -100, 100) || 0;
@@ -1164,7 +1185,17 @@ window.childPhysicalDatatypeCleanup = function childPhysicalDatatypeCleanup(chil
 	if (typeof child.minorInjury !== "string") {
 		child.minorInjury = 0;
 	}
-	child.health = Math.clamp(+child.health, -100, 100) || 0;
+	if (typeof child.health === "number") {
+		const condition = child.health;
+		child.health = {};
+		child.health.condition = condition;
+	}
+	child.health.condition = Math.clamp(child.health.condition, -100, 100) || 0;
+	child.health.shortDamage = Math.max(+child.health.shortDamage, 0) || 0;
+	child.health.longDamage = Math.max(+child.health.longDamage, 0) || 0;
+	child.health.illness = Math.max(+child.health.illness, 0) || 0;
+	child.health.tired = Math.clamp(+child.health.tired, 0, 100) || 0;
+	child.health.health = Math.clamp(child.health.condition - child.health.shortDamage - child.health.longDamage, -100, 100) || 0;
 	child.muscles = Math.clamp(+child.muscles, -100, 100) || 0;
 	child.weight = Math.clamp(+child.weight, -100, 200) || 0;
 	child.waist = Math.clamp(+child.waist, -100, 100) || 0;
@@ -1701,7 +1732,26 @@ window.PCDatatypeCleanup = function PCDatatypeCleanup() {
 	PC.muscles = Math.clamp(+PC.muscles, -100, 100) || 50;
 	PC.hLength = Math.clamp(+PC.hLength, 0, 150) || 2;
 	PC.voice = Math.clamp(+PC.voice, 1, 3) || 1;
-	PC.majorInjury = Math.max(+PC.majorInjury, 0) || 0;
+	if (typeof PC.health === "number") {
+		const condition = PC.health;
+		PC.health = {};
+		PC.health.condition = condition;
+	}
+	PC.health.condition = Math.clamp(PC.health.condition, -100, 100) || 0;
+	if (PC.majorInjury !== undefined) {
+		if (PC.majorInjury > 0) {
+			PC.health.shortDamage = Math.max(PC.majorInjury * 20, 30);
+		} else {
+			PC.health.shortDamage = 0;
+		}
+		delete PC.majorInjury;
+	} else {
+		PC.health.shortDamage = Math.max(+PC.health.shortDamage, 0) || 0;
+	}
+	PC.health.longDamage = Math.max(+PC.health.longDamage, 0) || 0;
+	PC.health.illness = Math.max(+PC.health.illness, 0) || 0;
+	PC.health.tired = Math.clamp(+PC.health.tired, 0, 100) || 0;
+	PC.health.health = Math.clamp(PC.health.condition - PC.health.shortDamage - PC.health.longDamage, -100, 100) || 0;
 	if (typeof PC.rules.living !== "string") {
 		PC.rules.living = "normal";
 	}
diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js
index ac166ff90b5b650a4e0cd3d572c886b859a2fcf9..938cbed7316a6efd0f84b5061bf8e60e6afd1d05 100644
--- a/src/js/descriptionWidgets.js
+++ b/src/js/descriptionWidgets.js
@@ -328,19 +328,42 @@ App.Desc.ageAndHealth = function(slave) {
 	woman = (boy === "girl" ? "woman" : "man");
 
 	if (!slave.fuckdoll) {
-		if (slave.health < -90) {
+		if (slave.health.condition < -90) {
 			r += `${He} is nearly unresponsive. ${He}'s obviously <span class="red">dangerously sick,</span>`;
-		} else if (slave.health < -50) {
+		} else if (slave.health.condition < -50) {
 			r += `${He} seems <span class="red">very sick,</span>`;
-		} else if (slave.health < -20) {
+		} else if (slave.health.condition < -20) {
 			r += `${He} seems <span class="red">ill,</span>`;
-		} else if (slave.health <= 20) {
+		} else if (slave.health.condition <= 20) {
 			r += `${He} seems reasonably <span class="yellow">healthy,</span>`;
-		} else if (slave.health <= 50) {
+		} else if (slave.health.condition <= 50) {
 			r += `${He} shines with <span class="green">good health,</span>`;
 		} else {
 			r += `${He} almost gleams; ${he}'s in the absolute <span class="green">best of health,</span>`;
 		}
+		if (slave.health.illness > 0 || slave.health.tired > 50) {
+			r += ` ${He} is currently `;
+			if (slave.health.illness === 1) {
+				r += ` feeling under the weather`;
+			} else if (slave.health.illness === 2) {
+				r += ` somewhat ill`;
+			} else if (slave.health.illness === 3) {
+				r += ` sick`;
+			} else if (slave.health.illness === 4) {
+				r += ` very sick`;
+			} else if (slave.health.illness === 5) {
+				r += ` terribly ill`;
+			}
+			if (slave.health.illness > 0 && slave.health.tired > 50) {
+				r += ` and`;
+			}
+			if (slave.health.tired < 80) {
+				r += ` tired`;
+			} else {
+				r += ` exhausted`;
+			}
+			r += `.`;
+		}
 		age = slave.actualAge + 1;
 		r += ` and ${he}'s `;
 		if (slave.birthWeek >= 52 && V.seeAge) {
@@ -598,15 +621,15 @@ App.Desc.ageAndHealth = function(slave) {
 		}
 	} else {
 		r += ` The Fuckdoll gives no external indication of ${his} health or age, but upon query ${his} systems reports that ${he} is`;
-		if (slave.health < -90) {
+		if (slave.health.condition < -90) {
 			r += `<span class="red">dangerously sick</span>`;
-		} else if (slave.health < -50) {
+		} else if (slave.health.condition < -50) {
 			r += `<span class="red">very sick</span>`;
-		} else if (slave.health < -20) {
+		} else if (slave.health.condition < -20) {
 			r += `<span class="red">ill</span>`;
-		} else if (slave.health <= 20) {
+		} else if (slave.health.condition <= 20) {
 			r += `<span class="yellow">healthy</span>`;
-		} else if (slave.health <= 50) {
+		} else if (slave.health.condition <= 50) {
 			r += `<span class="green">very healthy</span>`;
 		} else {
 			r += `<span class="green">extremely healthy</span>`;
diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index fc05b8c8d172ab87a3e019e82500b8f7aab4d9d7..1d87f72018f4b2392fa33f9c08080ccbdd2eeb27 100644
--- a/src/js/economyJS.js
+++ b/src/js/economyJS.js
@@ -137,23 +137,69 @@ window.calculateCosts = (function() {
 
 	// slave expenses
 	function predictTotalSlaveCosts() {
+		const V = State.variables;
 		let loopCosts = 0;
-		for (const slave of State.variables.slaves) {
+		let number = 0;
+		for (const slave of V.slaves) {
 			loopCosts += getSlaveCost(slave);
-			loopCosts += getSlaveMinorCosts(slave);
+		}
+		const reducibleUpkeep = Math.trunc(loopCosts * 0.2);
+		V.ServQiIDs.forEach(ID => {
+			number += getSlaveMinorCosts(V.slaves[V.slaveIndices[ID]]);
+		});
+		V.JobIDArray["be a servant"].forEach(ID => {
+			number += getSlaveMinorCosts(V.slaves[V.slaveIndices[ID]]);
+		});
+		if (V.slaves.length > number) {
+			loopCosts -= Math.trunc(reducibleUpkeep / V.slaves.length * number);
+		} else {
+			loopCosts -= reducibleUpkeep;
 		}
 		return loopCosts;
 	}
 
 	function getTotalSlaveCosts() {
+		const V = State.variables;
 		let slaveCost = 0;
 		let slaveCostMinor = 0;
-		for (const slave of State.variables.slaves) {
+		let numberServed = 0;
+		let loopCosts = 0;
+
+		// Figure out how many slaves are effectively getting their upkeep reduced by 20%
+		V.ServQiIDs.forEach(ID => {
+			numberServed += getSlaveMinorCosts(V.slaves[V.slaveIndices[ID]]);
+		});
+		V.JobIDArray["be a servant"].forEach(ID => {
+			numberServed += getSlaveMinorCosts(V.slaves[V.slaveIndices[ID]]);
+		});
+
+		// Find the total slave upkeep and pay for it
+		for (const slave of V.slaves) {
 			slaveCost = getSlaveCost(slave);
+			loopCosts += slaveCost;
 			cashX(forceNeg(slaveCost), "slaveUpkeep", slave);
-			slaveCostMinor = getSlaveMinorCosts(slave);
-			cashX(Math.abs(slaveCostMinor), "houseServant", slave);
 		}
+
+		// Calculate the servant reduction and credit them for it
+		const reducibleUpkeep = Math.trunc(loopCosts * 0.2);
+		V.ServQiIDs.forEach(ID => {
+			if (V.slaves.length > numberServed) {
+				slaveCostMinor = Math.trunc(reducibleUpkeep / V.slaves.length * getSlaveMinorCosts(V.slaves[V.slaveIndices[ID]]));
+				cashX(Math.abs(slaveCostMinor), "houseServant", V.slaves[V.slaveIndices[ID]]);
+			} else {
+				slaveCostMinor = Math.trunc(reducibleUpkeep / numberServed * getSlaveMinorCosts(V.slaves[V.slaveIndices[ID]]));
+				cashX(Math.abs(slaveCostMinor), "houseServant", V.slaves[V.slaveIndices[ID]]);
+			}
+		});
+		V.JobIDArray["be a servant"].forEach(ID => {
+			if (V.slaves.length > numberServed) {
+				slaveCostMinor = Math.trunc(reducibleUpkeep / V.slaves.length * getSlaveMinorCosts(V.slaves[V.slaveIndices[ID]]));
+				cashX(Math.abs(slaveCostMinor), "houseServant", V.slaves[V.slaveIndices[ID]]);
+			} else {
+				slaveCostMinor = Math.trunc(reducibleUpkeep / numberServed * getSlaveMinorCosts(V.slaves[V.slaveIndices[ID]]));
+				cashX(Math.abs(slaveCostMinor), "houseServant", V.slaves[V.slaveIndices[ID]]);
+			}
+		});
 	// nothing to return, cashX already billed.
 	}
 
@@ -488,46 +534,44 @@ window.calculateCosts = (function() {
 		return costs;
 	}
 
-	// the cost of keeping a slave under restrictive rules
+	// The amount of slaves served by a servant
 	function getSlaveMinorCosts(slave) {
-		let costs = 0;
-		const rulesCost = State.variables.rulesCost;
-		if (slave.assignment === Job.SERVANT || slave.assignment === Job.SERVER) {
-			if (slave.trust < -20) {
-				costs -= rulesCost * 4;
-			} else if (slave.devotion < -20) {
-				costs -= (slave.trust >= 20) ? rulesCost / 2 : rulesCost * 2;
-			} else if (slave.devotion <= 20) {
-				costs -= rulesCost * 3;
-			} else if (slave.devotion <= 50) {
-				costs -= rulesCost * 4;
-			} else {
-				costs -= rulesCost * 5;
-			}
-			if (slave.fetish === 'submissive') {
-				costs -= rulesCost;
-			} else if (slave.fetish === 'dom') {
-				costs += rulesCost;
-			}
-			if (slave.relationship < -1) {
-				costs -= rulesCost;
-			}
-			if (slave.energy < 20) {
-				costs -= rulesCost;
-			} else if (slave.energy < 40) {
-				costs -= rulesCost / 2;
-			}
-			if (slave.lactation > 0) {
-				costs -= 25;
-			}
-			if (slave.assignment === Job.SERVANT) {
-				costs -= rulesCost;
-			}
-			if (setup.servantCareers.includes(slave.career) || slave.skill.servant >= State.variables.masteredXP) {
-				costs -= rulesCost;
-			}
+		let effectiveness;
+		if (slave.trust < -20) {
+			effectiveness = 80;
+		} else if (slave.devotion < -20) {
+			effectiveness += (slave.trust >= 20) ? 25 : 50;
+		} else if (slave.devotion <= 20) {
+			effectiveness = 65;
+		} else if (slave.devotion <= 50) {
+			effectiveness = 80;
+		} else {
+			effectiveness = 100;
 		}
-		return costs;
+		if (slave.fetish === 'submissive') {
+			effectiveness *= 1.1;
+		} else if (slave.fetish === 'dom') {
+			effectiveness *= 0.9;
+		}
+		if (slave.relationship < -1) {
+			effectiveness *= 1.1;
+		}
+		if (slave.energy < 20) {
+			effectiveness *= 1.1;
+		} else if (slave.energy < 40) {
+			effectiveness *= 1.05;
+		}
+		if (slave.lactation > 0) {
+			effectiveness *= 1.025;
+		}
+		if (slave.assignment === Job.SERVANT) {
+			effectiveness *= 1.1;
+		}
+		if (setup.servantCareers.includes(slave.career) || slave.skill.servant >= State.variables.masteredXP) {
+			effectiveness *= 1.1;
+		}
+		effectiveness = Math.trunc(effectiveness * healthPenalty(slave) / 10);
+		return effectiveness;
 	}
 })();
 
@@ -1178,14 +1222,14 @@ window.slaveJobValues = function(lowerClassSexDemandRef, middleClassSexDemandRef
 	// Glory hole slaves adding to 'arcade'
 	V.JobIDArray["work a glory hole"].forEach(ID => {
 		const s = V.slaves[V.slaveIndices[ID]];
-		s.sexAmount = Math.trunc((normalRandInt(600, 20) + (4 - s.anus) * 10 + (4 - s.vagina) * 10 + Math.trunc(s.health / 2)) * 0.75);
+		s.sexAmount = Math.trunc((normalRandInt(600, 20) + (4 - s.anus) * 10 + (4 - s.vagina) * 10 + Math.trunc(s.health.condition / 2)) * 0.75);
 		slaveJobValues.arcade += s.sexAmount;
 	});
 
 	// Arcade slaves adding to 'arcade'
 	V.ArcadeiIDs.forEach(ID => {
 		const s = V.slaves[V.slaveIndices[ID]];
-		s.sexAmount = (normalRandInt(600, 20) + (4 - (s.anus - 2 * V.arcadeUpgradeInjectors)) * 10 + (4 - (s.vagina - 2 * V.arcadeUpgradeInjectors)) * 10 + Math.trunc(s.health / 2));
+		s.sexAmount = (normalRandInt(600, 20) + (4 - (s.anus - 2 * V.arcadeUpgradeInjectors)) * 10 + (4 - (s.vagina - 2 * V.arcadeUpgradeInjectors)) * 10 + Math.trunc(s.health.condition / 2));
 		slaveJobValues.arcade += s.sexAmount;
 	});
 
@@ -1324,11 +1368,11 @@ window.slaveJobValues = function(lowerClassSexDemandRef, middleClassSexDemandRef
 		// Injuries
 		if (s.assignment === "serve the public" && !toTheClub) {
 			if (s.curatives < 1 && s.inflationType !== "curative") {
-				if (s.health < -50) {
-					s.health -= 13;
+				if (s.health.condition < -50) {
+					healthDamage(s, 13);
 					s.minorInjury = 1;
-				} else if (s.health < -20 && jsRandom(1, 100) > 50) {
-					s.health -= 10;
+				} else if (s.health.condition < -20 && jsRandom(1, 100) > 50) {
+					healthDamage(s, 10);
 					s.minorInjury = 1;
 				} else {
 					let canA = canDoAnal(s);
@@ -1338,7 +1382,7 @@ window.slaveJobValues = function(lowerClassSexDemandRef, middleClassSexDemandRef
 					// and 0% when perfectly skilled in the relevant method or methods.
 
 					if (jsRandom(1, 100) > skilltarget) {
-						s.health -= 10 - 7*canA*canV;		// Any limitations means an injury inflicts the harsher 10 instead of 3
+						healthDamage(s, 10 - 7 * canA * canV); // Any limitations means an injury inflicts the harsher 10 instead of 3
 						s.minorInjury = 1;
 					}
 				}
@@ -1402,7 +1446,7 @@ window.slaveJobValues = function(lowerClassSexDemandRef, middleClassSexDemandRef
 			clubSpots -= 1;
 		}
 		if (s.assignment !== "recruit girls") {
-			slaveJobValues.club += s.sexAmount * s.sexQuality;
+			slaveJobValues.club += s.sexAmount * s.sexQuality * healthPenalty(s);
 		}
 	}
 
@@ -1509,11 +1553,11 @@ window.slaveJobValues = function(lowerClassSexDemandRef, middleClassSexDemandRef
 		// Injuries
 		if (s.assignment === "whore" && !toTheBrothel) {
 			if (s.curatives < 1 && s.inflationType !== "curative") {
-				if (s.health < -50) {
-					s.health -= 13;
+				if (s.health.condition < -50) {
+					healthDamage(s, 13);
 					s.minorInjury = 1;
-				} else if (s.health < -20 && jsRandom(1, 100) > 50) {
-					s.health -= 10;
+				} else if (s.health.condition < -20 && jsRandom(1, 100) > 50) {
+					healthDamage(s, 10);
 					s.minorInjury = 1;
 				} else {
 					let canA = canDoAnal(s);
@@ -1523,7 +1567,7 @@ window.slaveJobValues = function(lowerClassSexDemandRef, middleClassSexDemandRef
 					// and 0% when perfectly skilled in the relevant method or methods.
 
 					if (jsRandom(1, 100) > skilltarget) {
-						s.health -= 10 - 7*canA*canV; // Any limitations means an injury inflicts the harsher 10 instead of 3
+						healthDamage(s, 10 - 7 * canA * canV); // Any limitations means an injury inflicts the harsher 10 instead of 3
 						s.minorInjury = 1;
 					}
 				}
@@ -1589,6 +1633,7 @@ window.slaveJobValues = function(lowerClassSexDemandRef, middleClassSexDemandRef
 			let income = s.sexAmount * s.sexQuality;
 			s.effectiveWhoreClass = effectiveWhoreClass(s);
 			s.maxWhoreClass = s.effectiveWhoreClass;
+			income *= healthPenalty(s);
 
 			// Automatically changing effectiveWhoreClass
 			// what is the initial effective whore class? Are we providing more sex than overal demand? Is the ratio of supply/demand for this tier higher than the one below it?
@@ -1626,7 +1671,7 @@ window.slaveJobValues = function(lowerClassSexDemandRef, middleClassSexDemandRef
 				slaveJobValues.brothel.middleClass += Math.trunc(Math.min(s.sexAmount * s.sexQuality, s.sexAmount * V.whoreBudget.middleClass * 1.25));
 			} else {
 				s.sexAmount = Math.clamp(s.sexAmount * 2, normalRandInt(60, 3), normalRandInt(150, 3)); // Beauty improves use amount between values of approx. 30 and 75.
-				s.sexQuality = Math.clamp((income * 0.75) / s.sexAmount, 2, V.whoreBudget.lowerClass * 3); // The lower class will pay a maximum of 300% of their weekly budget per service and a minimum of 2
+				s.sexQuality = Math.clamp(Math.trunc((income * 0.75) / s.sexAmount), 2, V.whoreBudget.lowerClass * 3); // The lower class will pay a maximum of 300% of their weekly budget per service and a minimum of 2
 				slaveJobValues.brothel.lowerClass += Math.trunc(Math.min(s.sexAmount * s.sexQuality, s.sexAmount * V.whoreBudget.lowerClass * 3));
 			}
 		}
diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js
index f8bd29fb34de29c3efa94e7b4213060af7365942..f71b4b138627c8349d82c13790ba90ac7465efcd 100644
--- a/src/js/eventSelectionJS.js
+++ b/src/js/eventSelectionJS.js
@@ -64,7 +64,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 
 				if (eventSlave.skill.entertainment >= 60 || ["a ballerina", "a camgirl", "a camwhore", "a cheerleader", "a classical dancer", "a dancer", "a house DJ", "a party girl", "an aspiring pop star", "an exotic dancer", "an idol"].includes(eventSlave.career)) {
 					if (canHear(eventSlave)) {
-						if (eventSlave.health > 40) {
+						if (eventSlave.health.condition > 40) {
 							if (eventSlave.devotion > 50) {
 								if (eventSlave.trust > 50) {
 									State.variables.RESSevent.push("happy dance");
@@ -656,7 +656,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 							if (State.variables.week - eventSlave.weekAcquired < 10) {
 								if (eventSlave.devotion < -20) {
 									if (eventSlave.trust >= -20) {
-										if (eventSlave.health > -20) {
+										if (eventSlave.health.condition > -20) {
 											if (eventSlave.race === eventSlave.origRace) {
 												if (eventSlave.indentureRestrictions < 1) {
 													State.variables.RESSevent.push("subjugation blues");
@@ -676,7 +676,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 							if (eventSlave.trust >= -50) {
 								if (eventSlave.fetish !== "cumslut") {
 									if (eventSlave.weight < -30) {
-										if (eventSlave.health > -80) {
+										if (eventSlave.health.condition > -80) {
 											if (eventSlave.behavioralFlaw !== "anorexic") {
 												if (eventSlave.sexualFlaw !== "self hating") {
 													if (eventSlave.fetishStrength <= 60 || eventSlave.fetishKnown !== 1) {
@@ -730,7 +730,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 					}
 				}
 
-				if (eventSlave.health > 90) {
+				if (eventSlave.health.condition > 90) {
 					if (eventSlave.muscles > 5) {
 						if (eventSlave.weight <= 30) {
 							if (eventSlave.weight >= -30) {
@@ -802,7 +802,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 					if (eventSlave.devotion <= 20) {
 						if ((eventSlave.trust >= -20 && eventSlave.behavioralFlaw === "arrogant") || (eventSlave.trust > 20)) {
 							if (eventSlave.muscles > 30) {
-								if (eventSlave.health > 20) {
+								if (eventSlave.health.condition > 20) {
 									if (eventSlave.energy > 50) {
 										if (canPenetrate(eventSlave)) {
 											if (State.variables.Bodyguard === 0) {
@@ -1409,7 +1409,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 			if (State.variables.expansionRequestsAllowed > 0) {
 				if (eventSlave.drugs === "no drugs") {
 					if (eventSlave.rules.speech === "permissive") {
-						if (eventSlave.health > 20) {
+						if (eventSlave.health.condition > 20) {
 							if (eventSlave.devotion >= -20) {
 								if (eventSlave.trust > 20) {
 									if (State.variables.arcologies[0].FSSlimnessEnthusiast === "unset") {
@@ -2175,7 +2175,7 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 							if (State.variables.week - eventSlave.weekAcquired < 10) {
 								if (eventSlave.devotion < -20) {
 									if (eventSlave.trust >= -20) {
-										if (eventSlave.health > -20) {
+										if (eventSlave.health.condition > -20) {
 											if (eventSlave.race === eventSlave.origRace) {
 												if (eventSlave.indentureRestrictions < 1) {
 													State.variables.RESSevent.push("subjugation blues");
@@ -2195,7 +2195,7 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 							if (eventSlave.trust >= -50) {
 								if (eventSlave.fetish !== "cumslut") {
 									if (eventSlave.weight < -30) {
-										if (eventSlave.health > -80) {
+										if (eventSlave.health.condition > -80) {
 											if (eventSlave.behavioralFlaw !== "anorexic") {
 												if (eventSlave.sexualFlaw !== "self hating") {
 													if (eventSlave.fetishStrength <= 60 || eventSlave.fetishKnown !== 1) {
@@ -2211,7 +2211,7 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 					}
 				}
 
-				if (eventSlave.health > 90) {
+				if (eventSlave.health.condition > 90) {
 					if (eventSlave.muscles > 5) {
 						if (eventSlave.weight <= 30) {
 							if (eventSlave.weight >= -30) {
@@ -2243,7 +2243,7 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 					if (eventSlave.devotion <= 20) {
 						if ((eventSlave.trust >= -20 && eventSlave.behavioralFlaw === "arrogant") || (eventSlave.trust > 20)) {
 							if (eventSlave.muscles > 30) {
-								if (eventSlave.health > 20) {
+								if (eventSlave.health.condition > 20) {
 									if (eventSlave.energy > 50) {
 										if (canPenetrate(eventSlave)) {
 											if (State.variables.Bodyguard === 0) {
@@ -2659,7 +2659,7 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 			if (State.variables.expansionRequestsAllowed > 0) {
 				if (eventSlave.drugs === "no drugs") {
 					if (eventSlave.rules.speech === "permissive") {
-						if (eventSlave.health > 20) {
+						if (eventSlave.health.condition > 20) {
 							if (eventSlave.devotion >= -20) {
 								if (eventSlave.trust > 20) {
 									if (State.variables.arcologies[0].FSSlimnessEnthusiast === "unset") {
diff --git a/src/js/food.js b/src/js/food.js
index 8595f62a365c983aa2cec7d7a0c370949b5dfec5..5f0207f20050043e2a6d0bfd2fd32940979a7dc6 100644
--- a/src/js/food.js
+++ b/src/js/food.js
@@ -18,9 +18,9 @@ window.foodAmount = function(slave) {
 		} else if (slave.devotion < -50) {
 			food *= 0.8;
 		}
-		if (slave.health > 50) {									// slave is extremely healthy or more
+		if (slave.health.condition > 50) {							// slave is extremely healthy or more
 			food *= 1.1;
-		} else if (slave.health < -50) {							// slave is unhealthy or less
+		} else if (slave.health.condition < -50) {					// slave is unhealthy or less
 			food *= 0.8;
 		}
 		if (slave.muscles > 30) {									// slave is muscular or more
@@ -253,9 +253,9 @@ window.farmShowsIncome = function(slave) {
 		} else if (slave.porn.prestige === 3) { 						// slave is extremely prestigious from porn
 			cash *= 1.3;
 		} 															// TODO: add relationship checks
-		if (slave.health > 20) { 									// slave is very healthy or more
+		if (slave.health.condition > 20) { 							// slave is very healthy or more
 			cash *= 1.1;
-		} else if (slave.health < -20) { 							// slave is less than unhealthy
+		} else if (slave.health.condition < -20) { 					// slave is less than unhealthy
 			cash *= 0.8;
 		}
 		if (slave.face > 40) {										// slave is beautiful or more
diff --git a/src/js/generateMarketSlave.js b/src/js/generateMarketSlave.js
index 47a561f854bc2b56b5eabe7a46684b627df3ca60..30c06c85887331127e8c5485f5f37ef305d84aab 100644
--- a/src/js/generateMarketSlave.js
+++ b/src/js/generateMarketSlave.js
@@ -38,8 +38,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave.origin = "$He was enslaved and trained by your corporation.";
 			V.activeSlave.devotion = jsRandom(-30, 0);
 			V.activeSlave.trust = jsRandom(-45, -25);
-			V.activeSlave.health = jsRandom(25, 50);
-
+			setHealth(V.activeSlave, jsRandom(25, 50), Math.max(normalRandInt(0, 4), 0), Math.max(normalRandInt(0, 4), 0), Math.max(normalRandInt(0, 0.5), 0), jsRandom(10, 40));
 			if (V.corpSpecDevotion > 0) {
 				V.activeSlave.devotion = jsRandom(-120, -90) + V.corpSpecDevotion * 30;
 				if (V.corpSpecDevotion === 1) {
@@ -472,7 +471,10 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave.origin += ".";
 			V.activeSlave.devotion = -20 + Math.trunc(V.arcologies[market].prosperity/10) + jsRandom(0, 10);
 			V.activeSlave.trust = -20 + Math.trunc(V.arcologies[market].prosperity/10) + jsRandom(0, 10);
-			V.activeSlave.health = -50 + Math.trunc(V.arcologies[market].prosperity/25) + jsRandom(0, 5);
+			setHealth(V.activeSlave, -50 + Math.trunc(V.arcologies[market].prosperity/25) + jsRandom(0, 5), Math.max(15 - V.arcologies[market].prosperity/20 + normalRandInt(0, 2), 0), Math.max(15 - V.arcologies[market].prosperity/20 + normalRandInt(0, 2), 0), undefined, Math.max(jsRandom(10, 40) - V.arcologies[market].prosperity/15, 0));
+			if (jsRandom(1, 100) < V.arcologies[market].prosperity / 10 + 50) {
+				V.activeSlave.health.illness = 0;
+			}
 			if (V.activeSlave.vagina > 0) {
 				V.activeSlave.skill.vaginal += Math.clamp(V.arcologies[market].prosperity/2, 15, 100);
 			}
@@ -899,8 +901,8 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			if (V.arcologies[market].FSPhysicalIdealist > 20) {
 				r += `They're usually quite muscular, some to a truly imposing degree, and they're almost never unhealthy. `;
 				V.activeSlave.muscles = jsRandom(10, 100);
-				if (V.activeSlave.health < 20) {
-					V.activeSlave.health += jsRandom(0, 8);
+				if (V.activeSlave.health.condition < 20) {
+					improveCondition(V.activeSlave, jsRandom(0, 8));
 				}
 			} else if (V.arcologies[market].FSHedonisticDecadence > 20) {
 				if (V.arcologies[market].FSSlimnessEnthusiast > 20) {
@@ -1084,7 +1086,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave.career = "a slave";
 			V.activeSlave.intelligence = Intelligence.random({limitIntelligence: [-100, 0]});
 			V.activeSlave.intelligenceImplant = 0;
-			V.activeSlave.health = jsRandom(-99, 0);
+			setHealth(V.activeSlave, jsRandom(-50, 0), Math.max(normalRandInt(10, 4), 0), Math.max(normalRandInt(10, 4), 0), Math.max(normalRandInt(0), 0), jsRandom(40, 90));
 			V.activeSlave.weight = jsRandom(-100, 0);
 			if (jsRandom(1, 8) === 1) {
 				eyeSurgery(V.activeSlave, "both", "blind");
@@ -1143,7 +1145,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave.career = jsEither(["a business owner", "a college scout", "a counselor", "a dairy worker", "a doctor", "a house DJ", "a politician", "a prison guard", "a secretary", "a soldier", "a teacher", "a lawyer"]);
 			V.activeSlave.intelligence = Intelligence.random({limitIntelligence: [50, 100]});
 			V.activeSlave.intelligenceImplant = 30;
-			V.activeSlave.health = jsRandom(-99, -50);
+			setHealth(V.activeSlave, jsRandom(-50, -10), Math.max(normalRandInt(10, 4), 0), Math.max(normalRandInt(10, 4), 0), Math.max(normalRandInt(0), 0), jsRandom(40, 90));
 			V.activeSlave.weight = jsRandom(-100, -50);
 			V.activeSlave.muscles = jsRandom(-100, -50);
 			eyeSurgery(V.activeSlave, "both", "blind");
@@ -1226,7 +1228,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave.devotion -= 5;
 			V.activeSlave.trust = jsRandom(-45, -25);
 			V.activeSlave.intelligence = Intelligence.random({limitIntelligence: [-90, 45]});
-			V.activeSlave.health = jsRandom(-80, 20);
+			setHealth(V.activeSlave, jsRandom(-80, 20), Math.max(normalRandInt(5, 4), 0), Math.max(normalRandInt(5, 4), 0), Math.max(normalRandInt(0, 0.7), 0), jsRandom(30, 70));
 			if (V.activeSlave.vagina > 1 && isFertile(V.activeSlave)) {
 				V.activeSlave.preg = jsEither([-2, -1, -1, -1, -1, -1, -1, -1, 1, 20, 40]);
 				if (V.activeSlave.preg > 0) {
@@ -1269,7 +1271,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			if (V.activeSlave.physicalAge >= 12) {
 				V.activeSlave.teeth = "normal";
 			}
-			V.activeSlave.health = jsRandom(-10, 70);
+			setHealth(V.activeSlave, jsRandom(-10, 70), Math.max(normalRandInt(0, 4), 0), Math.max(normalRandInt(0, 4), 0), undefined, jsRandom(30, 70));
 			if (V.activeSlave.vagina > -1) {
 				V.activeSlave.preg = jsEither([-2, -1, -1, -1, -1, -1, -1, -1, 1, 1]);
 				if (V.activeSlave.physicalAge < V.activeSlave.pubertyAgeXX) {
@@ -1329,7 +1331,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave = GenerateNewSlave();
 			V.activeSlave.origin = "You bought $him from the underage raiders' slave market.";
 			V.activeSlave.trust -= 25;
-			V.activeSlave.health += 20;
+			setHealth(V.activeSlave, jsRandom(-30, 70), Math.max(normalRandInt(10, 4), 0), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 0.7), 0), jsRandom(20, 60));
 			V.activeSlave.career = setup.veryYoungCareers.random();
 			V.activeSlave.birthWeek = 0;
 			if (V.activeSlave.vagina !== -1) {
@@ -1352,7 +1354,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave = GenerateNewSlave();
 			V.activeSlave.origin = "You bought $him from the $girl raiders' slave market the week $he reached $his majority.";
 			V.activeSlave.trust -= 25;
-			V.activeSlave.health += 20;
+			setHealth(V.activeSlave, jsRandom(-30, 70), Math.max(normalRandInt(10, 4), 0), Math.max(normalRandInt(0, 3), 0), Math.max(normalRandInt(0, 0.7), 0), jsRandom(30, 70));
 			V.activeSlave.career = jsEither(["a cheerleader", "a farm laborer", "a party girl", "a student", "a student", "a student", "a student", "a student"]);
 			V.activeSlave.birthWeek = 0;
 			if (V.activeSlave.vagina !== -1) {
@@ -1380,7 +1382,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave.origin = "You bought $him from the trainers' slave market after they put $him through basic training.";
 			V.activeSlave.devotion += 40;
 			V.activeSlave.trust += 40;
-			V.activeSlave.health += 30;
+			setHealth(V.activeSlave, jsRandom(-20, 80), Math.max(normalRandInt(0, 2), 0), undefined, Math.max(normalRandInt(0, 0.4), 0));
 			if (V.activeSlave.vagina !== -1) {
 				V.activeSlave.skill.vaginal += 15;
 			} else {
@@ -1437,7 +1439,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave.intelligence = Intelligence.random({limitIntelligence: [-20, 70]});
 			V.activeSlave.devotion = jsRandom(25, 45);
 			V.activeSlave.trust = jsRandom(25, 45);
-			V.activeSlave.health = jsRandom(50, 60);
+			setHealth(V.activeSlave, jsRandom(50, 60), 0, Math.max(normalRandInt(0), 0), 0, jsRandom(0, 20));
 			V.activeSlave.preg = 0;
 			SetBellySize(V.activeSlave);
 			V.activeSlave.weight = 0;
@@ -1477,9 +1479,9 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave.trust = jsRandom(-25, -45);
 			V.activeSlave.chem = 100;
 			if (V.GRI.schoolUpgrade === 1) {
-				V.activeSlave.health = 200;
+				setHealth(V.activeSlave, 200, 0, Math.max(normalRandInt(0), 0), 0, 0);
 			} else {
-				V.activeSlave.health = jsRandom(-80, 100);
+				setHealth(V.activeSlave, jsRandom(-50, 100), Math.max(normalRandInt(0, 4), 0), Math.max(normalRandInt(10, 4), 0), Math.max(normalRandInt(0, 0.5), 0), jsRandom(0, 20));
 			}
 			V.activeSlave.height = jsRandom(160, 210);
 			V.activeSlave.butt = jsRandom(4, 10);
@@ -1534,7 +1536,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 				V.activeSlave.devotion = jsRandom(25, 45);
 				V.activeSlave.trust = jsRandom(25, 45);
 			}
-			V.activeSlave.health = 100;
+			setHealth(V.activeSlave, 100, Math.max(normalRandInt(10, 4), 0), Math.max(normalRandInt(5, 4), 0), 0, jsRandom(0, 20));
 			V.activeSlave.heightImplant = 1;
 			V.activeSlave.height += 10;
 			V.activeSlave.buttImplant = (4-V.activeSlave.butt);
@@ -1602,7 +1604,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 				V.activeSlave.devotion = jsRandom(60, 75);
 				V.activeSlave.trust = jsRandom(55, 60);
 			}
-			V.activeSlave.health = jsRandom(60, 80);
+			setHealth(V.activeSlave, jsRandom(60, 80), 0, Math.max(normalRandInt(0, 2), 0), 0, jsRandom(0, 20));
 			V.activeSlave.muscles = 0;
 			V.activeSlave.butt = jsEither([4, 5]);
 			V.activeSlave.face = jsRandom(15, 55);
@@ -1673,7 +1675,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 				V.activeSlave.devotion = jsRandom(25, 45);
 				V.activeSlave.trust = jsRandom(25, 45);
 			}
-			V.activeSlave.health = 100;
+			setHealth(V.activeSlave, 100, 0, undefined, Math.max(normalRandInt(0, 0.4), 0), jsRandom(0, 30));
 			V.activeSlave.muscles = jsEither([20, 50, 50]);
 			V.activeSlave.butt = jsEither([2, 2, 3]);
 			V.activeSlave.boobs = jsEither([100, 200]);
@@ -1727,7 +1729,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 				V.activeSlave.intelligenceImplant = 0;
 				V.activeSlave.devotion = -20;
 				V.activeSlave.trust = -20;
-				V.activeSlave.health = jsRandom(20, 30);
+				setHealth(V.activeSlave, jsRandom(20, 30), 0, Math.max(normalRandInt(0, 4), 0), 0);
 				V.activeSlave.preg = 0;
 				SetBellySize(V.activeSlave);
 				V.activeSlave.hips = jsEither([0, 0, 1, 1, 1, 2]);
@@ -1763,7 +1765,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 				V.activeSlave.intelligenceImplant = 0;
 				V.activeSlave.devotion = 100;
 				V.activeSlave.trust = 100;
-				V.activeSlave.health = jsRandom(20, 30);
+				setHealth(V.activeSlave, jsRandom(20, 30), 0, Math.max(normalRandInt(0, 4), 0), 0);
 				V.activeSlave.hips = jsEither([1, 1, 1, 2, 2]);
 				V.activeSlave.dick = 6;
 				V.activeSlave.foreskin = 0;
@@ -1814,7 +1816,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 				V.activeSlave.intelligenceImplant = 0;
 				V.activeSlave.devotion = 100;
 				V.activeSlave.trust = 100;
-				V.activeSlave.health = jsRandom(20, 30);
+				setHealth(V.activeSlave, jsRandom(20, 30), 0, Math.max(normalRandInt(0, 4), 0), 0);
 				V.activeSlave.preg = jsRandom(10, 40);
 				V.activeSlave.pregType = jsRandom(1, 5);
 				V.activeSlave.pregKnown = 1;
@@ -2059,7 +2061,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			}
 			V.activeSlave.devotion = jsRandom(30, 40);
 			V.activeSlave.trust = jsRandom(60, 75);
-			V.activeSlave.health = jsRandom(60, 80);
+			setHealth(V.activeSlave, jsRandom(60, 80), 0, Math.max(normalRandInt(0, 4), 0), 0, jsRandom(0, 20));
 			V.activeSlave.muscles = 20;
 			if (V.activeSlave.genes === "XY") {
 				V.activeSlave.shoulders = 1;
@@ -2113,7 +2115,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave.teeth = "normal";
 			V.activeSlave.devotion = jsRandom(60, 75);
 			V.activeSlave.trust = jsRandom(60, 75);
-			V.activeSlave.health = jsRandom(60, 80);
+			setHealth(V.activeSlave, jsRandom(60, 80), 0, Math.max(normalRandInt(0, 2), 0), 0, jsRandom(0, 20));
 			minHeight = jsRandom(170, 180);
 			if (V.HA.schoolUpgrade === 2) {
 				V.activeSlave.height = Math.trunc(Math.clamp(Height.random(V.activeSlave, {limitMult: [2, 15], spread: 0.1}), minHeight, 274));
@@ -2167,7 +2169,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 			V.activeSlave = GenerateNewSlave();
 			V.activeSlave.origin = "You bought $him from Nueva Universidad de Libertad right after $his graduation.";
 			V.activeSlave.career = "a slave";
-			V.activeSlave.health = jsRandom(60, 80);
+			setHealth(V.activeSlave, jsRandom(60, 80), 0, Math.max(normalRandInt(0, 4), 0), 0, jsRandom(0, 20));
 			V.activeSlave.devotion = jsRandom(60, 75);
 			V.activeSlave.trust = jsRandom(60, 75);
 			V.activeSlave.intelligenceImplant = 30;
@@ -2240,7 +2242,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsEither([-100, -100, -60, -60, -60, -30, -30]);
-					V.activeSlave.health = jsRandom(-80, 20);
+					setHealth(V.activeSlave, jsRandom(-50, 20), undefined, undefined, undefined, jsRandom(30, 80));
 					V.activeSlave.anus = 4;
 					V.activeSlave.chem = 10 * jsRandom(1, 3);
 					V.activeSlave.addict = 100; break;
@@ -2253,7 +2255,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(0, 60);
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), undefined, undefined, undefined, jsRandom(30, 80));
 					V.activeSlave.weight = jsRandom(-30, 10);
 					V.activeSlave.waist = jsRandom(-10, 50);
 					V.activeSlave.muscles = jsRandom(10, 40); break;
@@ -2266,7 +2268,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-60, 60);
-					V.activeSlave.health = jsRandom(-20, 20); break;
+					setHealth(V.activeSlave, jsRandom(-20, 20), undefined, undefined, undefined, jsRandom(30, 80)); break;
 				case "smuggler":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for smuggling goods into the Free City.";
 					V.prisonCrime = "is incarcerated for smuggling goods.";
@@ -2276,8 +2278,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(0, 60);
-					V.activeSlave.health = jsRandom(-20, 40);
-					V.activeSlave.muscles = jsRandom(10, 40); break;
+					setHealth(V.activeSlave, jsRandom(-20, 40), undefined, undefined, undefined, jsRandom(30, 80)); break;
 				case "fence":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for dealing in stolen goods.";
 					V.prisonCrime = "is incarcerated for buying and selling stolen goods.";
@@ -2287,7 +2288,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-60, 30);
-					V.activeSlave.health = jsRandom(-20, 60); break;
+					setHealth(V.activeSlave, jsRandom(-20, 60), undefined, undefined, undefined, jsRandom(30, 80)); break;
 				case "gang murderer":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for gang related murder.";
 					V.prisonCrime = "is incarcerated for gang related murders.";
@@ -2298,7 +2299,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsEither([-30, -20, 0, 0, 20, 40, 60]);
 					V.activeSlave.behavioralFlaw = "arrogant";
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), Math.max(normalRandInt(5, 3), 0), Math.max(normalRandInt(5, 3), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.muscles = jsRandom(20, 80);
 					V.activeSlave.chem = 10 * jsRandom(1, 3);
 					V.activeSlave.custom.tattoo = "The prominent emblem of a local gang spans the length of his shoulders.";
@@ -2313,7 +2314,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-100, 0);
 					V.activeSlave.behavioralFlaw = "arrogant";
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), Math.max(normalRandInt(5, 3), 0), Math.max(normalRandInt(5, 3), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.muscles = jsRandom(40, 80);
 					V.activeSlave.weight = jsRandom(-30, 10);
 					V.activeSlave.waist = jsRandom(10, 50);
@@ -2330,7 +2331,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-100, 0);
 					V.activeSlave.behavioralFlaw = "arrogant";
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), Math.max(normalRandInt(8, 3), 0), Math.max(normalRandInt(8, 3), 0), undefined, jsRandom(20, 60));
 					V.activeSlave.muscles = jsRandom(60, 80);
 					V.activeSlave.weight = jsRandom(-30, 10);
 					V.activeSlave.waist = jsRandom(10, 70);
@@ -2347,7 +2348,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-40, 60);
 					V.activeSlave.behavioralFlaw = "arrogant";
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), Math.max(normalRandInt(3, 3), 0), Math.max(normalRandInt(3, 3), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.muscles = jsRandom(20, 80);
 					V.activeSlave.weight = jsRandom(-30, 30);
 					V.activeSlave.waist = jsRandom(10, 70);
@@ -2363,7 +2364,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-40, 60);
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), Math.max(normalRandInt(3, 3), 0), Math.max(normalRandInt(3, 3), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.muscles = jsRandom(20, 40);
 					V.activeSlave.chem = 10 * jsRandom(3, 5);
 					V.activeSlave.custom.tattoo = "The prominent emblem of a local gang spans the length of $his shoulders.";
@@ -2377,7 +2378,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(0, 100);
-					V.activeSlave.health = jsRandom(-20, 60);
+					setHealth(V.activeSlave, jsRandom(-20, 60), undefined, undefined, undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-30, 10);
 					V.activeSlave.waist = jsRandom(-10, 50);
 					V.activeSlave.muscles = jsRandom(20, 40);
@@ -2391,7 +2392,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = 100;
-					V.activeSlave.health = jsRandom(-20, 60);
+					setHealth(V.activeSlave, jsRandom(-20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-30, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(20, 40);
@@ -2405,7 +2406,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-40, 60);
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), undefined, undefined, undefined, jsRandom(30, 80));
 					V.activeSlave.muscles = jsRandom(20, 80);
 					V.activeSlave.skill.combat = 1; break;
 				case "manslaughter":
@@ -2417,7 +2418,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-40, 60);
-					V.activeSlave.health = jsRandom(-40, 0); break;
+					setHealth(V.activeSlave, jsRandom(-40, 0), undefined, undefined, undefined, jsRandom(30, 80)); break;
 				case "attempted murder":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for attempted murder of a prominent individual.";
 					V.prisonCrime = "is incarcerated for an attempted murder.";
@@ -2427,7 +2428,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-100, 0);
-					V.activeSlave.health = jsRandom(-40, 0);
+					setHealth(V.activeSlave, jsRandom(-40, 0), undefined, undefined, undefined, jsRandom(30, 80));
 			}
 			break;
 		case "military prison":
@@ -2468,7 +2469,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(20, 100);
 					V.activeSlave.intelligenceImplant = 30;
-					V.activeSlave.health = jsRandom(-40, 20);
+					setHealth(V.activeSlave, jsRandom(-40, 20), Math.max(normalRandInt(5, 4), 0), Math.max(normalRandInt(5, 4), 0), undefined, jsRandom(10, 40));
 					V.activeSlave.weight = jsRandom(-30, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(20, 40);
@@ -2482,7 +2483,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-100, 0);
-					V.activeSlave.health = jsRandom(-60, 20);
+					setHealth(V.activeSlave, jsRandom(-50, 20), Math.max(normalRandInt(10, 4), 0), Math.max(normalRandInt(10, 4), 0), undefined, jsRandom(40, 90));
 					V.activeSlave.weight = jsRandom(-100, 10);
 					V.activeSlave.waist = jsRandom(-10, 10); break;
 				case "war criminal":
@@ -2495,7 +2496,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-20, 100);
 					V.activeSlave.intelligenceImplant = 30;
-					V.activeSlave.health = jsRandom(-40, 60);
+					setHealth(V.activeSlave, jsRandom(-40, 60), Math.max(normalRandInt(5, 4), 0), Math.max(normalRandInt(5, 4), 0), undefined, jsRandom(30, 80));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(20, 60);
@@ -2510,7 +2511,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-60, 40);
-					V.activeSlave.health = jsRandom(-40, 60);
+					setHealth(V.activeSlave, jsRandom(-40, 60), Math.max(normalRandInt(5, 4), 0), Math.max(normalRandInt(5, 4), 0), undefined, jsRandom(30, 80));
 					V.activeSlave.weight = jsRandom(-50, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.skill.combat = 1; break;
@@ -2524,7 +2525,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(0, 100);
 					V.activeSlave.intelligenceImplant = 15;
-					V.activeSlave.health = jsRandom(0, 60);
+					setHealth(V.activeSlave, jsRandom(0, 60), undefined, Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(20, 40);
@@ -2539,7 +2540,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsEither([60, 80, 100]);
 					V.activeSlave.intelligenceImplant = 30;
-					V.activeSlave.health = jsRandom(0, 60);
+					setHealth(V.activeSlave, jsRandom(0, 60), undefined, Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(30, 60);
@@ -2554,7 +2555,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsEither([60, 80, 100]);
 					V.activeSlave.intelligenceImplant = 20;
-					V.activeSlave.health = jsRandom(0, 20);
+					setHealth(V.activeSlave, jsRandom(0, 20), Math.max(normalRandInt(5, 4), 0), Math.max(normalRandInt(0, 4), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(30, 60);
@@ -2573,7 +2574,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(0, 90);
 					V.activeSlave.intelligenceImplant = 15;
-					V.activeSlave.health = jsRandom(0, 20);
+					setHealth(V.activeSlave, jsRandom(0, 20), Math.max(normalRandInt(5, 4), 0), Math.max(normalRandInt(5, 4), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(50, 60);
@@ -2588,7 +2589,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(0, 60);
 					V.activeSlave.intelligenceImplant = 15;
-					V.activeSlave.health = jsRandom(0, 40);
+					setHealth(V.activeSlave, jsRandom(0, 40), Math.max(normalRandInt(5, 4), 0), Math.max(normalRandInt(5, 4), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(30, 60);
@@ -2603,7 +2604,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-90, 70);
 					V.activeSlave.intelligenceImplant = 15;
-					V.activeSlave.health = jsRandom(0, 20);
+					setHealth(V.activeSlave, jsRandom(0, 20), Math.max(normalRandInt(5, 4), 0), Math.max(normalRandInt(0, 4), 0), undefined, jsRandom(30, 80));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(10, 40);
@@ -2637,7 +2638,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.trust = jsRandom(-20, 20);
 					V.activeSlave.intelligence = jsRandom(0, 99);
 					V.activeSlave.intelligenceImplant = 15;
-					V.activeSlave.health = jsRandom(20, 60); break;
+					setHealth(V.activeSlave, jsRandom(20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(30, 60)); break;
 				case "bribery":
 					V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]);
 					V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} arrested and sentenced for bribing government officials.`;
@@ -2646,7 +2647,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.trust = jsRandom(20, 50);
 					V.activeSlave.intelligence = jsRandom(0, 99);
 					V.activeSlave.intelligenceImplant = 15;
-					V.activeSlave.health = jsRandom(20, 60);
+					setHealth(V.activeSlave, jsRandom(20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(30, 60));
 					V.activeSlave.behavioralFlaw = "arrogant"; break;
 				case "blackmail":
 					V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]);
@@ -2656,7 +2657,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.trust = jsRandom(20, 50);
 					V.activeSlave.intelligence = jsRandom(0, 99);
 					V.activeSlave.intelligenceImplant = 15;
-					V.activeSlave.health = jsRandom(20, 60);
+					setHealth(V.activeSlave, jsRandom(20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(30, 60));
 					V.activeSlave.behavioralFlaw = "arrogant";
 					V.activeSlave.fetish = "sadist";
 					V.activeSlave.fetishStrength = 100; break;
@@ -2668,7 +2669,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.trust = jsRandom(-10, 10);
 					V.activeSlave.intelligence = jsRandom(0, 99);
 					V.activeSlave.intelligenceImplant = 15;
-					V.activeSlave.health = jsRandom(20, 60); break;
+					setHealth(V.activeSlave, jsRandom(20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(30, 60)); break;
 				case "fraud":
 					V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]);
 					V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} convicted of fraud.`;
@@ -2677,7 +2678,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.trust = jsRandom(20, 50);
 					V.activeSlave.intelligence = jsRandom(0, 99);
 					V.activeSlave.intelligenceImplant = 15;
-					V.activeSlave.health = jsRandom(20, 60); break;
+					setHealth(V.activeSlave, jsRandom(20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(30, 60)); break;
 				case "tax evasion":
 					V.activeSlave.career = jsEither(["a businessman", "a lawyer", "a stockbroker"]);
 					V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} convicted of tax evasion.`;
@@ -2686,7 +2687,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.trust = jsRandom(20, 50);
 					V.activeSlave.intelligence = jsRandom(0, 99);
 					V.activeSlave.intelligenceImplant = 15;
-					V.activeSlave.health = jsRandom(20, 60); break;
+					setHealth(V.activeSlave, jsRandom(20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(30, 60)); break;
 				case "malpractice":
 					V.activeSlave.career = jsEither(["a doctor", "a nurse", "a physician"]);
 					V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} that took advantage of $his position to molest and modify $his patients.`;
@@ -2695,7 +2696,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.trust = jsRandom(-100, -50);
 					V.activeSlave.intelligence = jsRandom(55, 99);
 					V.activeSlave.intelligenceImplant = 30;
-					V.activeSlave.health = jsRandom(-40, 20); break;
+					setHealth(V.activeSlave, jsRandom(-40, 20), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(40, 70)); break;
 				case "abuse of power":
 					V.activeSlave.career = jsEither(["a judge", "a lawyer", "a police officer"]);
 					V.activeSlave.origin = `You purchased $his life at a prison sale. $He was ${V.activeSlave.career} that took advantage of $his position for $his own benefit.`;
@@ -2704,7 +2705,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) {
 					V.activeSlave.trust = jsRandom(-50, 50);
 					V.activeSlave.intelligence = jsRandom(60, 99);
 					V.activeSlave.intelligenceImplant = 30;
-					V.activeSlave.health = jsRandom(20, 60);
+					setHealth(V.activeSlave, jsRandom(20, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(30, 60));
 					V.activeSlave.behavioralFlaw = "arrogant";
 			}
 			break;
@@ -2744,7 +2745,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsEither([-100, -100, -80, -60, -40, -30, -20, -5, 0, 5, 20]);
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), undefined, undefined, undefined, jsRandom(20, 70));
 					break;
 				case "armed robbery":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for armed robbery.";
@@ -2754,7 +2755,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-80, 60);
-					V.activeSlave.health = jsRandom(-10, 20);
+					setHealth(V.activeSlave, jsRandom(-10, 20), undefined, Math.max(normalRandInt(0, 4), 0), undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(10, 40);
@@ -2765,13 +2766,13 @@ if (V.activeSlave.vagina > -1) {
 						V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for murder. $His actions weigh heavily on $his conscience.";
 						V.activeSlave.devotion = 0;
 						V.activeSlave.trust = 0;
-						V.activeSlave.health = jsRandom(-60, -20);
+						setHealth(V.activeSlave, jsRandom(-50, 20), Math.max(normalRandInt(0, 4), 0), Math.max(normalRandInt(0, 4), 0), undefined, jsRandom(40, 90));
 						V.activeSlave.fetish = "mindbroken";
 					} else {
 						V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for murder.";
 						V.activeSlave.devotion = jsRandom(-50, -20);
 						V.activeSlave.trust = jsRandom(-20, 60);
-						V.activeSlave.health = jsRandom(-10, 20);
+						setHealth(V.activeSlave, jsRandom(-10, 20), undefined, undefined, undefined, jsRandom(20, 70));
 					}
 					V.prisonCrime = "is incarcerated for murder.";
 					V.activeSlave.hStyle = "buzzcut";
@@ -2783,13 +2784,13 @@ if (V.activeSlave.vagina > -1) {
 						V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for arson. $His actions, and those $he inadvertently killed, weigh heavily on $his conscience.";
 						V.activeSlave.devotion = 0;
 						V.activeSlave.trust = 0;
-						V.activeSlave.health = jsRandom(-80, -20);
+						setHealth(V.activeSlave, jsRandom(-50, 20), Math.max(normalRandInt(0, 4), 0), Math.max(normalRandInt(0, 4), 0), undefined, jsRandom(40, 90));
 						V.activeSlave.fetish = "mindbroken";
 					} else {
 						V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for arson.";
 						V.activeSlave.devotion = jsRandom(-70, -50);
 						V.activeSlave.trust = jsRandom(0, 60);
-						V.activeSlave.health = jsRandom(-10, 20);
+						setHealth(V.activeSlave, jsRandom(-10, 20), undefined, undefined, undefined, jsRandom(20, 70));
 					}
 					V.prisonCrime = "is incarcerated for arson.";
 					V.activeSlave.hStyle = "buzzcut";
@@ -2804,7 +2805,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-100, 20);
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), undefined, undefined, undefined, jsRandom(20, 70));
 					break;
 				case "cat burglar":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for repeat burglary.";
@@ -2815,7 +2816,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsEither([60, 80, 100]);
-					V.activeSlave.health = jsRandom(0, 60);
+					setHealth(V.activeSlave, jsRandom(0, 60), undefined, undefined, undefined, jsRandom(10, 50));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(10, 40);
@@ -2829,7 +2830,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsEither([-100, -100, -80, -60, -40, -30, -20, -5, 0, 5, 20]);
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), undefined, undefined, undefined, jsRandom(20, 70));
 					break;
 				case "theft":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for theft.";
@@ -2840,7 +2841,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-80, 70);
-					V.activeSlave.health = jsRandom(-20, 20);
+					setHealth(V.activeSlave, jsRandom(-20, 20), undefined, undefined, undefined, jsRandom(20, 70));
 					break;
 				case "pickpocketing":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for repeat pick-pocketing.";
@@ -2851,20 +2852,20 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsRandom(-80, 70);
-					V.activeSlave.health = jsRandom(-60, 0);
+					setHealth(V.activeSlave, jsRandom(-60, 0), undefined, Math.max(normalRandInt(5, 4), 0), undefined, jsRandom(20, 70));
 					break;
 				case "manslaughter":
 					if (jsRandom(1, 100) > 60) {
 						V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for manslaughter. $His actions weigh heavily on $his conscience.";
 						V.activeSlave.devotion = 0;
 						V.activeSlave.trust = 0;
-						V.activeSlave.health = jsRandom(-80, -20);
+						setHealth(V.activeSlave, jsRandom(-50, -20), Math.max(normalRandInt(0, 4), 0), Math.max(normalRandInt(0, 4), 0), undefined, jsRandom(40, 90));
 						V.activeSlave.fetish = "mindbroken";
 					} else {
 						V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for manslaughter.";
 						V.activeSlave.devotion = jsRandom(-70, -50);
 						V.activeSlave.trust = jsRandom(0, 60);
-						V.activeSlave.health = jsRandom(-10, 20);
+						setHealth(V.activeSlave, jsRandom(-10, 20), undefined, undefined, undefined, jsRandom(20, 70));
 					}
 					V.prisonCrime = "is incarcerated for manslaughter.";
 					V.activeSlave.hStyle = "buzzcut";
@@ -2879,7 +2880,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = jsEither([60, 80, 100]);
-					V.activeSlave.health = jsRandom(0, 60);
+					setHealth(V.activeSlave, jsRandom(0, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(20, 50));
 					break;
 				case "assault":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for assault.";
@@ -2888,7 +2889,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.trust = jsRandom(-20, 60);
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
-					V.activeSlave.health = jsRandom(-10, 40);
+					setHealth(V.activeSlave, jsRandom(-10, 40), undefined, undefined, undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(30, 60);
@@ -2901,7 +2902,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.trust = jsRandom(20, 60);
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
-					V.activeSlave.health = jsRandom(-10, 40);
+					setHealth(V.activeSlave, jsRandom(-10, 40), undefined, undefined, undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(40, 60);
@@ -2915,7 +2916,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
 					V.activeSlave.intelligence = Intelligence.random({limitIntelligence: [0, 100]});
-					V.activeSlave.health = jsRandom(0, 60);
+					setHealth(V.activeSlave, jsRandom(0, 60), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), undefined, jsRandom(20, 70));
 					break;
 				case "rape":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for rape.";
@@ -2924,7 +2925,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.trust = jsRandom(-20, 80);
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
-					V.activeSlave.health = jsRandom(-10, 40);
+					setHealth(V.activeSlave, jsRandom(-10, 40), undefined, undefined, undefined, jsRandom(20, 70));
 					V.activeSlave.weight = jsRandom(-10, 10);
 					V.activeSlave.waist = jsRandom(-10, 10);
 					V.activeSlave.muscles = jsRandom(30, 60);
@@ -2943,7 +2944,7 @@ if (V.activeSlave.vagina > -1) {
 					}
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
-					V.activeSlave.health = jsRandom(-10, 40);
+					setHealth(V.activeSlave, jsRandom(-10, 40), Math.max(normalRandInt(5, 4), 0), undefined, undefined, jsRandom(40, 90));
 					V.activeSlave.muscles = jsRandom(10, 40);
 					V.activeSlave.fetish = "sadist";
 					V.activeSlave.fetishStrength = 80;
@@ -2960,7 +2961,7 @@ if (V.activeSlave.vagina > -1) {
 					}
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
-					V.activeSlave.health = jsRandom(-10, 40);
+					setHealth(V.activeSlave, jsRandom(-10, 40), undefined, undefined, undefined, jsRandom(20, 70));
 					V.activeSlave.muscles = jsRandom(10, 40);
 					V.activeSlave.fetish = "sadist";
 					V.activeSlave.fetishStrength = 100;
@@ -2973,7 +2974,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.trust = jsRandom(-100, 50);
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
-					V.activeSlave.health = jsRandom(-10, 40);
+					setHealth(V.activeSlave, jsRandom(-10, 40), undefined, undefined, undefined, jsRandom(20, 70));
 					V.activeSlave.muscles = jsRandom(10, 40);
 					V.activeSlave.fetish = "sadist";
 					V.activeSlave.fetishStrength = 50;
@@ -2986,7 +2987,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.trust = jsRandom(-100, -50);
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
-					V.activeSlave.health = jsRandom(-90, -40);
+					setHealth(V.activeSlave, jsRandom(-50, -40), Math.max(normalRandInt(10, 4), 0), Math.max(normalRandInt(10, 4), 0), undefined, jsRandom(40, 90));
 					break;
 				case "mule":
 					V.activeSlave.origin = "You purchased $his life at a prison sale. $He was locked away for smuggling illegal contraband inside $his body.";
@@ -2996,7 +2997,7 @@ if (V.activeSlave.vagina > -1) {
 					V.activeSlave.trust = jsRandom(0, 25);
 					V.activeSlave.hStyle = "buzzcut";
 					V.activeSlave.hLength = 0;
-					V.activeSlave.health = jsRandom(-80, 20);
+					setHealth(V.activeSlave, jsRandom(-50, 20), undefined, undefined, undefined, jsRandom(20, 70));
 					if (V.activeSlave.ovaries === 1 && V.activeSlave.vagina > 0) {
 						V.activeSlave.vagina = 4;
 						V.activeSlave.bellySag += 5;
diff --git a/src/js/generateNewSlaveJS.js b/src/js/generateNewSlaveJS.js
index 3a40af97f3011aafac055669ad72e6b757847307..90cf84a38cb98b3122341fc7819339140356df07 100644
--- a/src/js/generateNewSlaveJS.js
+++ b/src/js/generateNewSlaveJS.js
@@ -46,7 +46,7 @@ window.GenerateNewSlave = (function() {
 		slave.devotion = jsRandom(-90, -60);
 		slave.trust = jsRandom(-45, -25);
 		slave.weight = jsRandom(-100, 180);
-		slave.health = jsRandom(-50, 50);
+		setHealth(slave);
 
 		WombInit(slave);
 		generateAge();
diff --git a/src/js/health.js b/src/js/health.js
new file mode 100644
index 0000000000000000000000000000000000000000..e096b5641b35f497bd8bc474e927521746166c6a
--- /dev/null
+++ b/src/js/health.js
@@ -0,0 +1,104 @@
+window.healthPenalty = function healthPenalty(slave) {
+    // checks for illness and reduces the effectiveness of the slave accordingly -- 10, 25, 50, 85, 95% reduced
+    // also checks for tiredness and reduces effectiveness from that as well -- 10% reduction at 80+ and 5% at 50-80
+    const H = slave.health;
+    let penalty = 100;
+    if (H.illness > 0) {
+        penalty *= 1 - (100 - Math.min(Math.pow(H.illness, 2) * 5 + 5, 95)) / 100;
+    }
+    if (H.tired > 80) {
+        penalty *= 0.9;
+    } else if (H.tired > 50) {
+        penalty *= 0.95;
+    }
+    penalty = Math.trunc(penalty) / 100;
+    return penalty;
+};
+
+window.healthDamage = function healthDamage(slave, damage) { // All things hurting a slave go through this to update short term damage and slave health
+    const H = slave.health;
+    H.shortDamage += Math.max(Math.trunc(damage), 0);
+    H.health = H.condition - H.longDamage - H.shortDamage;
+};
+
+window.improveCondition = function improveCondition(slave, condition) { // All things improving a slave's condition go through this to update condition and slave health
+    const H = slave.health;
+    H.condition += Math.max(Math.trunc(condition), 0);
+    H.health = H.condition - H.longDamage - H.shortDamage;
+};
+
+// A function for setting valid health values for new slaves, comes with a set of defaults. Not meant for use with existing slaves (consider healthDamage() and improveCondition() first), but sometimes useful still
+window.setHealth = function setHealth(slave, condition=-101, shortDamage=-1, longDamage=-1, illness=-1, tired=-1) {
+    const H = slave.health;
+
+    // Making sure all values get set to either a default or their desired value
+    if (condition < -100) {
+        H.condition = jsRandom(-50, 50); // Default value
+    } else {
+        H.condition = condition;
+    }
+    if (shortDamage < 0) {
+        H.shortDamage = Math.max(normalRandInt(0, 3), 0);
+    } else {
+        H.shortDamage = shortDamage;
+    }
+    if (longDamage < 0) {
+        H.longDamage - Math.max(normalRandInt(0, 3), 0);
+    } else {
+        H.longDamage = longDamage;
+    }
+    if (illness < 0 || illness > 5) {
+        H.illness = Math.max(normalRandInt(0, 0.5), 0);
+    } else {
+        H.illness = illness;
+    }
+    if (tired < 0 || tired > 100) {
+        H.tired = jsRandom(20, 50);
+    } else {
+        H.tired = tired;
+    }
+
+    // Adjusting long term damage for age
+    if (slave.age > 29) {
+        for(let i = 1; i < (slave.age - 29); i++) {
+            H.longDamage += Math.trunc((i + 4 + jsRandom(1, 15)) / 20);
+        }
+    }
+
+    // Making sure their overall health doesn't go too low (and would lead to a very likely death)
+    if (H.condition - H.shortDamage - H.longDamage < -100) {
+        let excess = -100 + H.condition + H.shortDamage + H.longDamage;
+        if (H.shortDamage + H.longDamage < 50) { // As long as the damage doesn't get too crazy we'll compensate condition for it
+            H.condition += excess;
+        } else if (H.longDamage < 50) { // As long as long damage doesn't get too high we'll compensate by improving shortDamage and condition
+            if (H.shortDamage - Math.ceil(excess / 2) > 0) {
+                H.shortDamage -= Math.ceil(excess / 2);
+                H.condition += Math.ceil(excess / 2);
+            } else {
+                excess -= H.shortDamage;
+                H.shortDamage = 0;
+                H.condition += excess;
+            }
+        } else { // If such high longDamage was intentional, they really should have done better basic math to ensure these slaves wouldn't just die immediately
+            if (H.shortDamage - Math.ceil(excess / 3) > 0 && H.longDamage - Math.ceil(excess / 3) > 0) {
+                H.longDamage -= Math.ceil(excess / 3);
+                H.shortDamage -= Math.ceil(excess / 3);
+                H.condition += Math.ceil(excess / 3);
+            } else {
+                excess -= H.shortDamage;
+                H.shortDamage = 0;
+                if (H.longDamage - Math.ceil(excess / 2) > 0) {
+                    H.longDamage -= Math.ceil(excess / 2);
+                    H.condition += Math.ceil(excess / 2);
+                } else {
+                    excess -= H.longDamage;
+                    H.longDamage = 0;
+                    H.condition += excess;
+                }
+            }
+        }
+    }
+
+    // Finally giving slaves their overal health value
+    H.health = H.condition - H.shortDamage - H.longDamage;
+};
diff --git a/src/js/modification.js b/src/js/modification.js
index b7285132a43e4c1f30f08b463c2fb3cc3a51b858..19ce04c6f6f65b70ff866c92f238d29f360b1e63 100644
--- a/src/js/modification.js
+++ b/src/js/modification.js
@@ -11,9 +11,9 @@ App.Medicine.Modification.addScar = function(slave, scar, design, weight) {
 	/*
 	V.scarApplied = 1;
 	V.degradation += 10;
-	slave.health -= 10; //dangerous to uncomment this as sometimes many scars are applied at once.
+	healthDamage(slave, 10); //dangerous to uncomment this as sometimes many scars are applied at once.
 	cashX(forceNeg(surgery.costs), "slaveSurgery", slave);
-	slave.health -= (V.PC.skill.medicine >= 100) ? Math.round(surgery.healthCosts / 2) : surgery.healthCosts;*/
+	healthDamage(slave, (V.PC.skill.medicine >= 100) ? Math.round(surgery.healthCosts / 2) : surgery.healthCosts);*/
 	if (!weight) {
 		weight = 1;
 	}
@@ -36,9 +36,9 @@ App.Medicine.Modification.removeScar = function(slave, scar, design) {
 	/*
 	V.scarApplied = 1;
 	V.degradation += 10;
-	slave.health -= 10; //dangerous to uncomment this as sometimes many scars are applied at once.
+	healthDamage(slave, 10); //dangerous to uncomment this as sometimes many scars are applied at once.
 	cashX(forceNeg(surgery.costs), "slaveSurgery", slave);
-	slave.health -= (V.PC.skill.medicine >= 100) ? Math.round(surgery.healthCosts / 2) : surgery.healthCosts;*/
+	healthDamage(slave, (V.PC.skill.medicine >= 100) ? Math.round(surgery.healthCosts / 2) : surgery.healthCosts);*/
 	if (slave.scar.hasOwnProperty(scar)) { // if scar object exists for this body part
 		if (slave.scar[scar].hasOwnProperty(design)) { // if object has this kind of scar (might be custom)
 			if (["generic", "whip", "chain", "burn", "menacing", "exotic", "surgical", "c-section", "cutting"].includes(design)) {
diff --git a/src/js/rulesAutosurgery.js b/src/js/rulesAutosurgery.js
index 916df5c9f959b1d80740cb74c1562b8fe4cae6d0..e9d0f15d05adc32de94f472f25589ab8355ee638 100644
--- a/src/js/rulesAutosurgery.js
+++ b/src/js/rulesAutosurgery.js
@@ -13,7 +13,7 @@ window.rulesAutosurgery = (function() {
 		r = "";
 		const surgeries = [];
 		const thisSurgery = ProcessHGTastes(slave);
-		if (slave.health > 20) {
+		if (slave.health.health > 20) {
 			CommitSurgery(slave, thisSurgery, surgeries);
 		}
 		if (surgeries.length > 0) {
@@ -152,7 +152,7 @@ window.rulesAutosurgery = (function() {
 			surgeries.push(desc);
 			proc(slave);
 			cashX(forceNeg(V.surgeryCost), "slaveSurgery", slave);
-			slave.health -= (V.PC.skill.medicine >= 100) ? Math.round(healthCost / 2) : healthCost;
+			healthDamage(slave, (V.PC.skill.medicine >= 100) ? Math.round(healthCost / 2) : healthCost);
 		}
 
 		/**
@@ -199,7 +199,7 @@ window.rulesAutosurgery = (function() {
 		// NOTE: App.RA.shallShrink() and App.RA.shallGrow() return 'false' when target is 'null'
 		// Hence they have to be first conditions in the '&&' chains to avoid type errors
 		// (reading properties of the 'null' object)
-		if (slave.health > 20 && surgeries.length < 3) {
+		if (slave.health.health > 20 && surgeries.length < 3) {
 			if (thisSurgery.eyes === 1 && anyVisionEquals(slave, 1)) {
 				// possibly two surgeries at once, in turn health cost is halved
 				if (getLeftEyeVision(slave) === 1) {
@@ -230,7 +230,7 @@ window.rulesAutosurgery = (function() {
 				commitProcedure(`surgery to muffle ${his} sense of taste`, s => { s.tastes = -1; });
 			}
 		}
-		if (slave.health > 20 && surgeries.length < 3) {
+		if (slave.health.health > 20 && surgeries.length < 3) {
 			if (slave.lactation === 2 && thisSurgery.lactation === 0) {
 				commitProcedure(`surgery to remove ${his} lactation implants`, s => { s.lactation = 0; });
 			} else if (slave.lactation !== 2 && (thisSurgery.lactation === 1)) {
@@ -249,10 +249,10 @@ window.rulesAutosurgery = (function() {
 				bodyPartSizing("boobs", thisSurgery.boobs);
 			}
 		}
-		if (thisSurgery.butt !== null && slave.health > 20 && surgeries.length < 3) {
+		if (thisSurgery.butt !== null && slave.health.health > 20 && surgeries.length < 3) {
 			bodyPartSizing("butt", thisSurgery.butt);
 		}
-		if (slave.health > 20 && surgeries.length < 3) {
+		if (slave.health.health > 20 && surgeries.length < 3) {
 			if (slave.anus > 3 && thisSurgery.cosmetic > 0) {
 				commitProcedure("a restored anus", slave => {
 					slave.anus = 3;
@@ -297,7 +297,7 @@ window.rulesAutosurgery = (function() {
 				});
 			}
 		}
-		if (slave.health > 20 && surgeries.length < 3) {
+		if (slave.health.health > 20 && surgeries.length < 3) {
 			if (slave.prostate === 2 && thisSurgery.prostate === 0) {
 				commitProcedure(`surgery to remove ${his} prostate implant`, s => { s.prostate = 0; });
 			} else if (slave.prostate === 1 && thisSurgery.prostate === 1) {
@@ -310,7 +310,7 @@ window.rulesAutosurgery = (function() {
 				V.surgeryType = "vasectomy undo";
 			}
 		}
-		if (slave.health > 20 && surgeries.length < 3) {
+		if (slave.health.health > 20 && surgeries.length < 3) {
 			if (slave.faceImplant <= 15 && slave.face <= 95 && thisSurgery.cosmetic > 0) {
 				commitProcedure("a nicer face", slave => {
 					if (slave.faceShape === "masculine") { slave.faceShape = "androgynous"; }
@@ -401,7 +401,7 @@ window.rulesAutosurgery = (function() {
 				});
 			}
 		}
-		if (slave.health > 20 && surgeries.length < 3) {
+		if (slave.health.health > 20 && surgeries.length < 3) {
 			if (slave.waist >= -10 && thisSurgery.cosmetic > 0) {
 				commitProcedure("a narrower waist", s => { s.waist -= 20; });
 			} else if (thisSurgery.hips !== null && slave.hips < 1 && V.surgeryUpgrade === 1 && (slave.hips < thisSurgery.hips)) {
@@ -423,7 +423,7 @@ window.rulesAutosurgery = (function() {
 				});
 			}
 		}
-		if (slave.health > 20 && surgeries.length < 3) {
+		if (slave.health.health > 20 && surgeries.length < 3) {
 			if (slave.bellyImplant < 0 && V.bellyImplants > 0 && thisSurgery.bellyImplant === "install" && slave.womb.length === 0 && slave.broodmother === 0) {
 				const proc = slave => {
 					slave.bellyImplant = 100;
@@ -446,7 +446,7 @@ window.rulesAutosurgery = (function() {
 				V.surgeryType = "bellyOut";
 			}
 		}
-		if (slave.health > 20 && surgeries.length < 3) {
+		if (slave.health.health > 20 && surgeries.length < 3) {
 			if (slave.horn !== "none" && thisSurgery.horn === 1) {
 				commitProcedure(`surgery to remove ${his} implanted horns`, s => { s.horn = "none"; });
 			} else if (slave.horn !== "curved succubus horns" && thisSurgery.horn === 2) {
@@ -463,7 +463,7 @@ window.rulesAutosurgery = (function() {
 				commitProcedure(`surgery to implant ${his} with small horns`, s => { s.horn = "small horns"; s.hornColor = "white"; });
 			}
 		}
-		if (slave.health > 20 && surgeries.length < 3) {
+		if (slave.health.health > 20 && surgeries.length < 3) {
 			if (slave.earShape !== "normal" && thisSurgery.earShape === 1) {
 				commitProcedure(`surgery to restore ${his} modified ears`, s => { s.earShape = "normal"; });
 			} else if (slave.earShape !== "pointy" && thisSurgery.earShape === 2) {
diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js
index eb76d2dc85388c163892c7adb9cae2d63d68f561..5f33bd61fe7747a315c351f0b6035e2fbf7c0546 100644
--- a/src/js/slaveCostJS.js
+++ b/src/js/slaveCostJS.js
@@ -387,7 +387,14 @@ window.Beauty = (function() {
 	 * @param {App.Entity.SlaveState} slave
 	 */
 	function calcMiscNotFuckdollBeauty(slave) {
-		beauty += Math.min(slave.health, 100) / 5;
+		beauty += Math.min(slave.health.health, 100) / 5;
+		beauty -= Math.trunc(slave.health.tired / 20);
+		if (slave.health.tired > 80) {
+			beauty -= 2;
+		} else if (slave.health.tired > 50) {
+			beauty -= 1;
+		}
+		beauty -= Math.pow(slave.health.illness, 2);
 		beauty += slave.voice;
 		beauty += slave.skill.entertainment / 10;
 		beauty += slave.skill.whoring / 10;
@@ -780,8 +787,8 @@ window.Beauty = (function() {
 	function calcMusclesBeauty(slave) {
 		if (arcology.FSPhysicalIdealist !== "unset") {
 			if (arcology.FSPhysicalIdealistLaw === 1) {
-				if (Math.abs(slave.weight) <= 30 && slave.health >= 20 && slave.muscles >= 20 && slave.muscles <= 50) {
-					beauty += (slave.muscles + (Math.min(slave.health, 300) / 5)) * (arcology.FSPhysicalIdealist / 100);
+				if (Math.abs(slave.weight) <= 30 && slave.health.condition >= 20 && slave.muscles >= 20 && slave.muscles <= 50) {
+					beauty += (slave.muscles + (Math.min(slave.health.condition, 300) / 5)) * (arcology.FSPhysicalIdealist / 100);
 				} else {
 					beauty -= 30;
 				}
diff --git a/src/js/slaveGenerationJS.js b/src/js/slaveGenerationJS.js
index b18fbc749f32dfb36b189468c054966c5b8aeda9..fe05acf90be7a3903becc7c5785175c33de0298c 100644
--- a/src/js/slaveGenerationJS.js
+++ b/src/js/slaveGenerationJS.js
@@ -1362,9 +1362,9 @@ window.checkForGingering = function checkForGingering() {
 		} else if (V.activeSlave.devotion < -20 && jsRandom(1, 3) === 1) {
 			V.gingering = "depressant";
 			V.activeSlave.devotion += jsRandom(10, 40);
-		} else if (V.activeSlave.health < 60 && jsRandom(1, 3) === 1) {
+		} else if (V.activeSlave.health.condition < 60 && jsRandom(1, 3) === 1) {
 			V.gingering = "stimulant";
-			V.activeSlave.health += jsRandom(20, 40);
+			improveCondition(V.activeSlave, jsRandom(20, 40));
 		} else if (V.activeSlave.balls > 0 && V.activeSlave.dick > 2 && jsRandom(1, 3) === 1) {
 			V.gingering = "vasoconstrictor";
 			V.activeSlave.dick -= jsRandom(1, 2);
diff --git a/src/js/slaveListing.js b/src/js/slaveListing.js
index 1990b0390b65bee1fce8f687118fc07123cf9e94..46f033a829922bbbf37cafccce054db036cb7997 100644
--- a/src/js/slaveListing.js
+++ b/src/js/slaveListing.js
@@ -175,10 +175,15 @@ App.UI.SlaveList.render = function() {
 		SlaveStatClamp(slave);
 		slave.trust = Math.trunc(slave.trust);
 		slave.devotion = Math.trunc(slave.devotion);
-		slave.health = Math.trunc(slave.health);
+		slave.health.condition = Math.trunc(slave.health.condition);
+		slave.health.shortDamage = Math.trunc(slave.health.shortDamage);
+		slave.health.longDamage = Math.trunc(slave.health.longDamage);
+		slave.health.illness = Math.trunc(slave.health.illness);
+		slave.health.tired = Math.trunc(slave.health.tired);
+		slave.health.health = Math.trunc(slave.health.health);
 		res.appendChild(document.createTextNode(' will '));
 		const assignment = document.createElement("span");
-		if ((slave.assignment === "rest") && (slave.health >= -20)) {
+		if ((slave.assignment === "rest") && (slave.health.condition >= -20)) {
 			assignment.className = "freeAssignment";
 			assignment.innerText = slave.assignment;
 		} else if ((slave.assignment === "stay confined") && ((slave.devotion > 20) || ((slave.trust < -20) && (slave.devotion >= -20)) || ((slave.trust < -50) && (slave.devotion >= -50)))) {
@@ -197,7 +202,7 @@ App.UI.SlaveList.render = function() {
 		if (slave.assignment === "get treatment in the clinic") {
 			let list = [];
 			let i;
-			if (slave.health <= 40) {
+			if (slave.health.condition <= 40) {
 				list.push(`poor health`);
 			}
 			if (V.Nurse !== 0) {
@@ -240,7 +245,7 @@ App.UI.SlaveList.render = function() {
 				if ((slave.trust < 60) || (slave.devotion < 60)) {
 					list.push(`learning to accept life as a slave`);
 				}
-				if (slave.health < 20) {
+				if (slave.health.condition < 20) {
 					list.push(`improving in health`);
 				}
 				if (list.length > 0) {
diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js
index c849d543a08668c329c44c9ed715ba1628c5bb9d..9bd7ce3e2d1ffbe965920de363cdfc61bdcf367c 100644
--- a/src/js/slaveSummaryWidgets.js
+++ b/src/js/slaveSummaryWidgets.js
@@ -67,8 +67,12 @@ window.SlaveSummaryUncached = (function() {
 		}
 		if (V.abbreviateHealth === 1) {
 			short_health(slave, para);
+			short_illness(slave, para);
+			short_tired(slave, para);
 		} else if (V.abbreviateHealth === 2) {
 			long_health(slave, para);
+			long_illness(slave, para);
+			long_tired(slave, para);
 		}
 		if (V.abbreviateDrugs === 1) {
 			short_drugs(slave, para);
@@ -697,12 +701,12 @@ window.SlaveSummaryUncached = (function() {
 	 * @returns {void}
 	 */
 	function short_health(slave, c) {
-		if (slave.health < -20) {
-			makeSpan(c, "H", ["red", "strong"], true, slave.health);
-		} else if (slave.health <= 20) {
-			makeSpan(c, "H", ["yellow", "strong"], true, slave.health);
-		} else if (slave.health > 20) {
-			makeSpan(c, "H", ["green", "strong"], true, slave.health);
+		if (slave.health.health < -20) {
+			makeSpan(c, "H", ["red", "strong"], true, slave.health.health);
+		} else if (slave.health.health <= 20) {
+			makeSpan(c, "H", ["yellow", "strong"], true, slave.health.health);
+		} else if (slave.health.health > 20) {
+			makeSpan(c, "H", ["green", "strong"], true, slave.health.health);
 		}
 		if (passage() === "Clinic" && V.clinicUpgradeScanner) {
 			if (slave.chem > 15) {
@@ -719,20 +723,20 @@ window.SlaveSummaryUncached = (function() {
 	 * @returns {void}
 	 */
 	function long_health(slave, c) {
-		if (slave.health < -90) {
-			makeSpan(c, "On the edge of death", ["red", "strong"], true, slave.health);
-		} else if (slave.health < -50) {
-			makeSpan(c, "Extremely unhealthy", ["red", "strong"], true, slave.health);
-		} else if (slave.health < -20) {
-			makeSpan(c, "Unhealthy", ["red", "strong"], true, slave.health);
-		} else if (slave.health <= 20) {
-			makeSpan(c, "Healthy", "yellow", true, slave.health);
-		} else if (slave.health <= 50) {
-			makeSpan(c, "Very healthy", "green", true, slave.health);
-		} else if (slave.health <= 90) {
-			makeSpan(c, "Extremely healthy", "green", true, slave.health);
+		if (slave.health.health < -90) {
+			makeSpan(c, "On the edge of death", ["red", "strong"], true, slave.health.health);
+		} else if (slave.health.health < -50) {
+			makeSpan(c, "Extremely unhealthy", ["red", "strong"], true, slave.health.health);
+		} else if (slave.health.health < -20) {
+			makeSpan(c, "Unhealthy", ["red", "strong"], true, slave.health.health);
+		} else if (slave.health.health <= 20) {
+			makeSpan(c, "healthy", "yellow", true, slave.health.health);
+		} else if (slave.health.health <= 50) {
+			makeSpan(c, "Very healthy", "green", true, slave.health.health);
+		} else if (slave.health.health <= 90) {
+			makeSpan(c, "Extremely healthy", "green", true, slave.health.health);
 		} else {
-			makeSpan(c, "Unnaturally healthy", "green", true, slave.health);
+			makeSpan(c, "Unnaturally healthy", "green", true, slave.health.health);
 		}
 		if (passage() === "Clinic" && V.clinicUpgradeScanner) {
 			if (slave.chem > 15) {
@@ -743,6 +747,46 @@ window.SlaveSummaryUncached = (function() {
 		}
 	}
 
+	function short_illness(slave, c) {
+		if (slave.health.illness > 4) {
+			makeSpan(c, `Ill${slave.health.illness}`, ["red", "strong"], true, slave.health.illness);
+		} else if (slave.health.illness > 3) {
+			makeSpan(c, `Ill${slave.health.illness}`, ["red", "strong"], true, slave.health.illness);
+		} else if (slave.health.illness > 2) {
+			makeSpan(c, `Ill${slave.health.illness}`, ["red", "strong"], true, slave.health.illness);
+		} else if (slave.health.illness > 1) {
+			makeSpan(c, `Ill${slave.health.illness}`, ["yellow", "strong"], true, slave.health.illness);
+		}	
+	}
+
+	function long_illness(slave, c) {
+		if (slave.health.illness > 4) {
+			makeSpan(c, "Terribly ill", ["red", "strong"], true, slave.health.illness);
+		} else if (slave.health.illness > 3) {
+			makeSpan(c, "Very ill", ["red", "strong"], true, slave.health.illness);
+		} else if (slave.health.illness > 2) {
+			makeSpan(c, "Ill", ["red", "strong"], true, slave.health.illness);
+		} else if (slave.health.illness > 1) {
+			makeSpan(c, "Somewhat ill", "yellow", true, slave.health.illness);
+		}
+	}
+
+	function short_tired(slave, c) {
+		if (slave.health.tired > 80) {
+			makeSpan(c, "Ti", ["red", "strong"], true, slave.health.tired);
+		} else if (slave.health.tired > 50) {
+			makeSpan(c, "Ti", "yellow", true, slave.health.tired);
+		}
+	}
+
+	function long_tired(slave, c) {
+		if (slave.health.tired > 80) {
+			makeSpan(c, "Exhausted", ["red", "strong"], true, slave.health.tired);
+		} else if (slave.health.tired > 50) {
+			makeSpan(c, "Tired", "yellow", true, slave.health.tired);
+		}
+	}
+
 	/**
 	 * @param {App.Entity.SlaveState} slave
 	 * @param {Node} c
diff --git a/src/js/storyJS.js b/src/js/storyJS.js
index 6eabe3a4e57b0a2bcafd2051d03eb08781a8fce5..649768f0daf14153fb884ebab63d218e50c278bb 100644
--- a/src/js/storyJS.js
+++ b/src/js/storyJS.js
@@ -167,10 +167,11 @@ window.milkAmount = function(slave) {
 	}
 	milk *= (1 + (calcs * 0.1));
 	milk *= (1 + (slave.preg / 100));
-	milk *= (1 + (slave.health / 50));
+	milk *= (1 + (slave.health.condition / 50));
 	milk *= (1 + (slave.weight / 500));
 	milk *= (1 + (slave.lactationAdaptation / 500));
 	milk += (slave.boobsMilk / 100);
+	milk *= healthPenalty(slave);
 	milk = Math.trunc(milk);
 	milk = Math.clamp(milk, 1, 1000000000000000000);
 	return milk;
@@ -216,10 +217,10 @@ window.cumAmount = function(slave) {
 	} else if (slave.devotion < -50) {
 		cum += (cum * (slave.devotion / 100));
 	}
-	if (slave.health > 50) {
-		cum += (cum * (slave.health / 50));
-	} else if (slave.health < -50) {
-		cum += (cum * (slave.health / 50));
+	if (slave.health.condition > 50) {
+		cum += (cum * (slave.health.condition / 50));
+	} else if (slave.health.condition < -50) {
+		cum += (cum * (slave.health.condition / 50));
 	}
 	cum = Math.trunc(cum);
 	cum = Math.clamp(cum, 1, 1000000000000000000);
@@ -429,7 +430,7 @@ window.overpowerCheck = function(slave, PC) {
 	strength += (185-slave.height);
 	strength -= (PC.belly/1000);
 	strength += (PC.skill.warfare/3);
-	strength -= (State.variables.PC.majorInjury * 15);
+	strength -= (State.variables.PC.health.shortDamage);
 
 	return strength;
 };
diff --git a/src/js/surgery.js b/src/js/surgery.js
index 94274b462a84b4119a5275d6d75b2218fec5a964..222426f0701b1e9649d856bc02b8aaeaafba89b3 100644
--- a/src/js/surgery.js
+++ b/src/js/surgery.js
@@ -78,7 +78,7 @@ App.Medicine.Surgery.commit = function(surgery, slave) {
 	V.surgeryType = surgery.surgeryType;
 	surgery.action(slave);
 	cashX(forceNeg(surgery.costs), "slaveSurgery", slave);
-	slave.health -= (V.PC.skill.medicine >= 100) ? Math.round(surgery.healthCosts / 2) : surgery.healthCosts;
+	healthDamage(slave, (V.PC.skill.medicine >= 100) ? Math.round(surgery.healthCosts / 2) : surgery.healthCosts);
 };
 
 /**
@@ -462,14 +462,14 @@ window.surgeryAmp = function(slave, part) {
 			slave.earShape = "none";
 			slave.earT = "none";
 			slave.earPiercing = 0;
-			slave.health -= 10;
+			healthDamage(slave, 10);
 			break;
 		case "right ear":
 			delete slave.brand["right ear"];
 			slave.earShape = "none";
 			slave.earT = "none";
 			slave.earPiercing = 0;
-			slave.health -= 10;
+			healthDamage(slave, 10);
 			break;
 		case "dick":
 			slave.dick = 0;
@@ -479,7 +479,7 @@ window.surgeryAmp = function(slave, part) {
 			slave.dickTat = 0;
 			slave.dickAccessory = "none";
 			slave.chastityPenis = 0;
-			slave.health -= 20;
+			healthDamage(slave, 20);
 			break;
 		case "vagina":
 			slave.vagina = -1;
@@ -491,17 +491,17 @@ window.surgeryAmp = function(slave, part) {
 			slave.vaginalAccessory = "none";
 			slave.vaginalAttachment = "none";
 			slave.chastityVagina = 0;
-			slave.health -= 20;
+			healthDamage(slave, 20);
 			break;
 		case "horn":
 			slave.horn = "none";
 			slave.hornColor = "none";
-			slave.health -= 10;
+			healthDamage(slave, 10);
 			break;
 		case "voicebox":
 			slave.voice = 0;
 			slave.voiceImplant = 0;
-			slave.health -= 10;
+			healthDamage(slave, 10);
 			break;
 		case "lips":
 			slave.lips -= slave.lipsImplant;
diff --git a/src/js/vignettes.js b/src/js/vignettes.js
index 96cd42211e4feccd45b11c95b51f306e3c0bd104..f3719926ec9e985fc36670c3309fd86ee8fc7d48 100644
--- a/src/js/vignettes.js
+++ b/src/js/vignettes.js
@@ -784,7 +784,7 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
-		if (slave.health > 80) {
+		if (slave.health.condition > 80) {
 			vignettes.push({
 				text: `a potential customer in the medical field was fascinated by ${his} health, and spent almost as much time examining ${him} as they did having sex with ${him},`,
 				type: "cash",
@@ -1344,7 +1344,7 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
-		if (slave.health < 20) {
+		if (slave.health.condition < 20) {
 			vignettes.push({
 				text: `${he} attracted the attention of a slaveowner alarmed by ${his} poor health, and thought they seemed kind,`,
 				type: "devotion",
@@ -2753,7 +2753,7 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
-		if (slave.health > 80) {
+		if (slave.health.condition > 80) {
 			vignettes.push({
 				text: `a potential citizen in the medical field was fascinated by ${his} health, and spent almost as much time examining ${him} as they did having sex with ${him},`,
 				type: "rep",
@@ -3313,7 +3313,7 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
-		if (slave.health < 20) {
+		if (slave.health.condition < 20) {
 			vignettes.push({
 				text: `${he} attracted the attention of a slaveowner alarmed by ${his} poor health, and thought he seemed kind,`,
 				type: "devotion",
@@ -4496,7 +4496,7 @@ window.GetVignette = function GetVignette(slave) {
 				}
 			}
 		}
-		if (slave.health < -20) {
+		if (slave.health.condition < -20) {
 			vignettes.push({
 				text: `${he} had a bad cough and spent a lot of time napping,`,
 				type: "health",
diff --git a/src/npc/acquisition.tw b/src/npc/acquisition.tw
index 729de669a662fc81d02e2cf5c459f1290322b959..e028ecd37f40cb6451e53cd5638f85a5429a46c6 100644
--- a/src/npc/acquisition.tw
+++ b/src/npc/acquisition.tw
@@ -229,7 +229,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "Supremacist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $fixedRace = $arcologies[0].FSSupremacistRace>><<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45), $activeSlave.health = random(0,15)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45)>>
+			<<run setHealth($activeSlave, jsRandom(0, 20))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.skill.oral = random(15,35), $activeSlave.skill.anal = random(15,35)>>
 			<<if $activeSlave.vagina > -1>>
@@ -242,7 +243,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "Subjugationist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $fixedRace = $arcologies[0].FSSubjugationistRace>><<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45), $activeSlave.health = random(0,15)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45)>>
+			<<run setHealth($activeSlave, jsRandom(0, 20))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.skill.oral = random(15,35), $activeSlave.skill.anal = random(15,35)>>
 			<<if $activeSlave.vagina > -1>>
@@ -256,7 +258,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $activeSlaveOneTimeMaxAge = 25>>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave("XY")>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(15,-15), $activeSlave.health = 100>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(15,-15)>>
+			<<run setHealth($activeSlave, 100, 0, 0, 0, jsRandom(0, 20))>>
 			<<set $activeSlave.face = random(0,55)>>
 			<<set $activeSlave.boobs += 100*random(2,4)>>
 			<<set $activeSlave.butt += random(1,2)>>
@@ -270,7 +273,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $activeSlaveOneTimeMaxAge = 25>>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave("XX")>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45), $activeSlave.health = random(55,65)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45)>>
+			<<run setHealth($activeSlave, jsRandom(55, 65), 0, 0, 0)>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.preg = random(1,40), $activeSlave.lactation = 1, $activeSlave.lactationDuration = 2>>
 			<<run SetBellySize($activeSlave)>>
@@ -283,7 +287,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "Paternalist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(55,65), $activeSlave.health = random(55,65)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(55,65)>>
+			<<run setHealth($activeSlave, jsRandom(55, 65), 0, 0, 0)>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.intelligence = random(0,100), $activeSlave.intelligenceImplant = 30>>
 			<<set $activeSlave.skill.entertainment = random(15,35)>>
@@ -291,7 +296,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $activeSlave.assignment = "be a servant">>
 		<<case "Degradationist">>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = 25, $activeSlave.trust = -25, $activeSlave.health = random(0,15)>>
+			<<set $activeSlave.devotion = 25, $activeSlave.trust = -25>>
+			<<run setHealth($activeSlave, jsRandom(0, 15))>>
 			<<set $activeSlave.fuckdoll = 100>>
 			<<set $activeSlave.career = "a Fuckdoll">>
 			<<set $activeSlave.fetish = "mindbroken">>
@@ -306,7 +312,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "AssetExpansionist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-15,15), $activeSlave.health = random(25,45)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-15,15)>>
+			<<run setHealth($activeSlave, jsRandom(25, 45))>>
 			<<set $activeSlave.chem = 50>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.boobs += 100*random(10,20)>>
@@ -326,7 +333,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "SlimnessEnthusiast">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(55,65), $activeSlave.health = random(55,65)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(55,65)>>
+			<<run setHealth($activeSlave, jsRandom(55, 65), 0, 0, 0)>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.boobs = 100*random(1,4)>>
 			<<set $activeSlave.butt = random(1,2)>>
@@ -342,7 +350,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "TransformationFetishist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-15,15), $activeSlave.health = random(-15,0)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-15,15)>>
+			<<run setHealth($activeSlave, jsRandom(-15, 0), Math.max(normalRandInt(5, 3), 0), Math.max(normalRandInt(5, 3), 0))>>
 			<<set $activeSlave.faceImplant = random(40,70)>>
 			<<set $activeSlave.face = Math.trunc($activeSlave.face+$activeSlave.faceImplant/2,-100,100)>>
 			<<set $activeSlave.boobsImplant = 200*random(4,8)>>
@@ -362,7 +371,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "BodyPurist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(25,45), $activeSlave.health = 100>>
+			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(25,45)>>
+			<<run setHealth($activeSlave, 100, 0, 0, 0, jsRandom(10, 30)))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.weight = random(-5,5)>>
 			<<set $activeSlave.muscles = random(10,25)>>
@@ -379,7 +389,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $one_time_age_overrides_pedo_mode = 1>>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(-15,15), $activeSlave.health = random(25,45)>>
+			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(-15,15)>>
+			<<run setHealth($activeSlave, jsRandom(25, 45))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.boobs += 100*random(1,4)>>
 			<<set $activeSlave.butt += random(1,2)>>
@@ -396,7 +407,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $activeSlaveOneTimeMaxAge = 19>>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(55,65), $activeSlave.health = random(25,45)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(55,65)>>
+			<<run setHealth($activeSlave, jsRandom(25, 45))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.boobs = 100*random(1,4)>>
 			<<set $activeSlave.butt = random(1,3)>>
@@ -409,7 +421,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "Pastoralist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45), $activeSlave.health = random(25,45)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45)>>
+			<<run setHealth($activeSlave, jsRandom(25, 45))>>
 			<<set $activeSlave.boobs += 100*random(10,20)>>
 			<<if $activeSlave.balls > 0>><<set $activeSlave.balls++>><</if>>
 			<<set $activeSlave.lactation = 2, $activeSlave.lactationDuration = 2>>
@@ -418,7 +431,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "PhysicalIdealist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(25,45), $activeSlave.health = 100>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(25,45)>>
+			<<run setHealth($activeSlave, 100, 0, 0, 0, jsRandom(0, 20))>>
 			<<set $activeSlave.muscles = random(50,100)>>
 			<<set $activeSlave.skill.oral = random(15,35), $activeSlave.skill.anal = random(15,35)>>
 			<<if $activeSlave.vagina > -1>>
@@ -431,7 +445,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "ChattelReligionist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(55,65), $activeSlave.health = random(0,15)>>
+			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(55,65)>>
+			<<run setHealth($activeSlave, jsRandom(0, 15))>>
 			<<if $activeSlave.vagina == 0>><<set $activeSlave.vagina++>><</if>>
 			<<set $activeSlave.skill.whoring = random(10,20)>>
 			<<set $activeSlave.behavioralFlaw = "none", $activeSlave.behavioralQuirk = "sinful">>
@@ -441,7 +456,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $activeSlaveOneTimeMaxAge = 19>>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = 100, $activeSlave.trust = random(55,65), $activeSlave.health = 100>>
+			<<set $activeSlave.devotion = 100, $activeSlave.trust = random(55,65)>>
+			<<run setHealth($activeSlave, 100, 0, 0, 0, jsRandom(10, 30))>>
 			<<set $activeSlave.face = random(0,55)>>
 			<<set $activeSlave.muscles = random(25,50)>>
 			<<set $activeSlave.skill.combat = 1>>
@@ -455,7 +471,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $fixedNationality = "Mexican">>
 			<<set $activeSlave = GenerateNewSlave()>>
 			<<set $activeSlave.accent = 0>>
-			<<set $activeSlave.devotion = 75, $activeSlave.trust = 75, $activeSlave.health = random(-20,20)>>
+			<<set $activeSlave.devotion = 75, $activeSlave.trust = 75>>
+			<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 			<<set $activeSlave.muscles = random(50,75)>>
 			<<set $activeSlave.skill.combat = 1>>
 			<<set $activeSlave.behavioralFlaw = "malicious", $activeSlave.behavioralQuirk = "none">>
@@ -464,7 +481,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "EgyptianRevivalist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(25,45), $activeSlave.health = random(25,45)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(25,45)>>
+			<<run setHealth($activeSlave, jsRandom(25, 45))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.skill.oral = random(15,35), $activeSlave.skill.anal = random(15,35)>>
 			<<if $activeSlave.vagina > -1>>
@@ -481,7 +499,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $fixedNationality = "Japanese">>
 			<<set $activeSlave = GenerateNewSlave()>>
 			<<set $activeSlave.accent = 0>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(25,45), $activeSlave.health = random(25,45)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(25,45)>>
+			<<run setHealth($activeSlave, jsRandom(25, 45))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.intelligence = random(0,100), $activeSlave.intelligenceImplant = 30>>
 			<<set $activeSlave.skill.entertainment = 100>>
@@ -490,7 +509,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "ArabianRevivalist">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-15,15), $activeSlave.health = random(25,45)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-15,15)>>
+			<<run setHealth($activeSlave, jsRandom(25, 45))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.intelligence = random(-15,80), $activeSlave.intelligenceImplant = 0>>
 			<<set $activeSlave.clothes = "harem gauze", $activeSlave.collar = "uncomfortable leather", $activeSlave.shoes = "flats">>
@@ -503,7 +523,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $fixedRace = "asian">>
 			<<set $fixedNationality = "Chinese">>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(25,45), $activeSlave.health = random(25,45)>>
+			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(25,45)>>
+			<<run setHealth($activeSlave, jsRandom(25, 45))>>
 			<<set $activeSlave.face = random(0,55)>>
 			<<set $activeSlave.accent = 0>>
 			<<set $activeSlave.intelligence = 100, $activeSlave.intelligenceImplant = 30>>
@@ -520,7 +541,8 @@ The previous owner seems to have left in something of a hurry.
 		<<case "Eugenics">>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = -100, $activeSlave.trust = -100, $activeSlave.health = random(80,90)>>
+			<<set $activeSlave.devotion = -100, $activeSlave.trust = -100>>
+			<<run setHealth($activeSlave, jsRandom(80, 90), 0, 0, 0, jsRandom(20, 40))>>
 			<<set $activeSlave.intelligence = 100>>
 			<<set $activeSlave.intelligenceImplant = 30>>
 			<<set $activeSlave.face = 100>>
@@ -541,7 +563,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $one_time_age_overrides_pedo_mode = 1>>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave("XX")>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45), $activeSlave.health = random(55,65)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45)>>
+			<<run setHealth($activeSlave, jsRandom(55, 65))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.preg = random(10,40), $activeSlave.pregType = random(3,8), $activeSlave.lactation = 1, $activeSlave.lactationDuration = 2>>
 			<<run SetBellySize($activeSlave)>>
@@ -557,7 +580,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $activeSlaveOneTimeMaxAge = 25>>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave("XX")>>
-			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45), $activeSlave.health = random(-20,20)>>
+			<<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45)>>
+			<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 			<<set $activeSlave.face = random(15,40)>>
 			<<set $activeSlave.boobs += 100*random(3,6)>>
 			<<set $activeSlave.butt += random(2,5)>>
@@ -590,7 +614,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $activeSlaveOneTimeMaxAge = 25>>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = 100, $activeSlave.trust = 20, $activeSlave.health = 80>>
+			<<set $activeSlave.devotion = 100, $activeSlave.trust = 20>>
+			<<run setHealth($activeSlave, 80, 0, 0, 0, jsRandom(10, 30)))>>
 			<<set $activeSlave.face = random(30,100)>>
 			<<set $activeSlave.energy = 10>>
 			<<set $activeSlave.weight = random(-15,5)>>
@@ -607,7 +632,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $activeSlaveOneTimeMaxAge = 18>>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(-15,15), $activeSlave.health = random(25,45)>>
+			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(-15,15)>>
+			<<run setHealth($activeSlave, jsRandom(25, 45))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<if $activeSlave.height >= 150>>
 				<<set $activeSlave.height = Math.trunc(Height.random($activeSlave, {limitMult: [-3, -1]}))>>
@@ -632,7 +658,8 @@ The previous owner seems to have left in something of a hurry.
 			<<set $one_time_age_overrides_pedo_mode = 1>>
 			<<set $oneTimeDisableDisability = 1>>
 			<<set $activeSlave = GenerateNewSlave()>>
-			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(-15,15), $activeSlave.health = random(25,45)>>
+			<<set $activeSlave.devotion = random(55,65), $activeSlave.trust = random(-15,15)>>
+			<<run setHealth($activeSlave, jsRandom(25, 45))>>
 			<<set $activeSlave.face = random(15,100)>>
 			<<set $activeSlave.weight = random(-5,5)>>
 			<<set $activeSlave.muscles = random(20,40)>>
diff --git a/src/npc/databases/cheatmodeDatabase.tw b/src/npc/databases/cheatmodeDatabase.tw
index f9e358068f4c49ad81d3229bec0cacd9d0b40c2b..031d225a1551119760d955b54b00ddf285a54c36 100644
--- a/src/npc/databases/cheatmodeDatabase.tw
+++ b/src/npc/databases/cheatmodeDatabase.tw
@@ -2,7 +2,7 @@
 
 <<set $activeSlave = BaseSlave()>>
 <<set _HS = clone($activeSlave)>>
-<<set _HS.slaveName = "Miss Anne", _HS.birthName = "Lindy Anne", _HS.ID = 990000, _HS.relation = "mother", _HS.relationTarget = 990004, _HS.relationship = 4, _HS.relationshipTarget = 990001, _HS.rivalry = 1, _HS.rivalryTarget = 990002, _HS.assignment = "be your Head Girl", _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.ageImplant = 1, _HS.health = 50, _HS.devotion = 100, _HS.height = 175, _HS.eye.origColor = "green", _HS.origHColor = "honey blonde", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.areolae = 1, _HS.butt = 4, _HS.buttImplant = 2, _HS.face = 55, _HS.lips = 35, _HS.anus = 1, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.clothes = "a slave gown", _HS.intelligence = 100, _HS.energy = 65, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "'Miss Anne' is tattooed in lovely flowing script over $his collarbone.", _HS.custom.desc = "$He speaks with the rich accent of the Old South.">>
+<<set _HS.slaveName = "Miss Anne", _HS.birthName = "Lindy Anne", _HS.ID = 990000, _HS.relation = "mother", _HS.relationTarget = 990004, _HS.relationship = 4, _HS.relationshipTarget = 990001, _HS.rivalry = 1, _HS.rivalryTarget = 990002, _HS.assignment = "be your Head Girl", _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.ageImplant = 1, setHealth(_HS, 50), _HS.devotion = 100, _HS.height = 175, _HS.eye.origColor = "green", _HS.origHColor = "honey blonde", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.areolae = 1, _HS.butt = 4, _HS.buttImplant = 2, _HS.face = 55, _HS.lips = 35, _HS.anus = 1, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.clothes = "a slave gown", _HS.intelligence = 100, _HS.energy = 65, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "'Miss Anne' is tattooed in lovely flowing script over $his collarbone.", _HS.custom.desc = "$He speaks with the rich accent of the Old South.">>
 <<if $seeDicks != 100>>
 	<<set _HS.genes = "XX", _HS.vagina = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.pubertyXX = 1>>
 <<else>>
@@ -13,7 +13,7 @@
 //There are quite a few left; their names are _HS.slaveName,//
 
 <<set _HS = clone($activeSlave)>>
-<<set _HS.slaveName = "Cornelia", _HS.birthName = "Cora", _HS.ID = 990001, _HS.relation = "mother", _HS.relationTarget = 990002, _HS.relationship = 4, _HS.relationshipTarget = 990000, _HS.assignment = "whore", _HS.birthWeek = random(0,51), _HS.actualAge = 36, _HS.physicalAge = 36, _HS.visualAge = 36, _HS.ovaryAge = 36, _HS.ageImplant = 1, _HS.health = 10, _HS.devotion = 100, _HS.muscles = 20, _HS.height = 190, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "dark", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.boobs = 1200, _HS.boobsImplant = 1000, _HS.areolae = 2, _HS.butt = 5, _HS.buttImplant = 3, _HS.preg = -2, _HS.face = 15, _HS.faceImplant = 65, _HS.lips = 35, _HS.lipsImplant = 10, _HS.anus = 2, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.clothes = "a slave gown", _HS.energy = 65, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["left hand"] = "A large letter 'S'", _HS.custom.desc = "$He speaks with the demeaning accent of slaves from the Old South.">>
+<<set _HS.slaveName = "Cornelia", _HS.birthName = "Cora", _HS.ID = 990001, _HS.relation = "mother", _HS.relationTarget = 990002, _HS.relationship = 4, _HS.relationshipTarget = 990000, _HS.assignment = "whore", _HS.birthWeek = random(0,51), _HS.actualAge = 36, _HS.physicalAge = 36, _HS.visualAge = 36, _HS.ovaryAge = 36, _HS.ageImplant = 1, setHealth(_HS, 10), _HS.devotion = 100, _HS.muscles = 20, _HS.height = 190, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "dark", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.boobs = 1200, _HS.boobsImplant = 1000, _HS.areolae = 2, _HS.butt = 5, _HS.buttImplant = 3, _HS.preg = -2, _HS.face = 15, _HS.faceImplant = 65, _HS.lips = 35, _HS.lipsImplant = 10, _HS.anus = 2, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.clothes = "a slave gown", _HS.energy = 65, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["left hand"] = "A large letter 'S'", _HS.custom.desc = "$He speaks with the demeaning accent of slaves from the Old South.">>
 <<if $seeDicks != 0>>
 	<<set _HS.genes = "XY", _HS.vagina = -1, _HS.dick = 3, _HS.balls = 3, _HS.scrotum = 3, _HS.foreskin = 3, _HS.prostate = 1, _HS.pubertyXY = 1>>
 <<else>>
@@ -23,7 +23,7 @@
 //_HS.slaveName,//
 
 <<set _HS = clone($activeSlave)>>
-<<set _HS.slaveName = "Sheba", _HS.birthName = "Shaneequa", _HS.ID = 990002, _HS.relation = "daughter", _HS.relationTarget = 990001, _HS.rivalry = 1, _HS.rivalryTarget = 990000, _HS.assignment = "whore", _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 10, _HS.devotion = 12, _HS.height = 175, _HS.race = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.boobs = 1600, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.areolae = 1, _HS.butt = 6, _HS.buttImplant = 2, _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 55, _HS.lipsImplant = 10, _HS.anus = 1, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.clothes = "a slave gown", _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["left hand"] = "A large letter 'S'", _HS.custom.desc = "$He speaks with the demeaning accent of slaves from the Old South.", _HS.mother = 990001>>
+<<set _HS.slaveName = "Sheba", _HS.birthName = "Shaneequa", _HS.ID = 990002, _HS.relation = "daughter", _HS.relationTarget = 990001, _HS.rivalry = 1, _HS.rivalryTarget = 990000, _HS.assignment = "whore", _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 10), _HS.devotion = 12, _HS.height = 175, _HS.race = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.boobs = 1600, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.areolae = 1, _HS.butt = 6, _HS.buttImplant = 2, _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 55, _HS.lipsImplant = 10, _HS.anus = 1, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.clothes = "a slave gown", _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["left hand"] = "A large letter 'S'", _HS.custom.desc = "$He speaks with the demeaning accent of slaves from the Old South.", _HS.mother = 990001>>
 <<if $seeDicks != 100>>
 	<<set _HS.genes = "XX", _HS.vagina = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.pubertyXX = 1>>
 <<else>>
@@ -33,7 +33,7 @@
 //_HS.slaveName,//
 
 <<set _HS = clone($activeSlave)>>
-<<set _HS.slaveName = "Cornflower", _HS.birthName = "Alysa", _HS.ID = 990003, _HS.relation = "daughter", _HS.relationTarget = 990005, _HS.relationship = 3, _HS.relationshipTarget = 990005, _HS.assignment = "get milked", _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 12, _HS.muscles = 50, _HS.height = 190, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "waxed", _HS.waist = -100, _HS.heels = 1, _HS.voice = 0, _HS.boobs = 6000, _HS.nipples = "huge", _HS.areolae = 2, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 3, _HS.buttTat = "bovine patterns", _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "bovine patterns", _HS.anus = 3, _HS.anusTat = "bovine patterns", _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.nosePiercing = 2, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.energy = 65, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.tattoo = "A pretty blue cornflower is tattooed on each of $his cheeks.", _HS.custom.desc = "$He once spoke with the demeaning accent of slaves from the Old South.", _HS.mother = 990005>>
+<<set _HS.slaveName = "Cornflower", _HS.birthName = "Alysa", _HS.ID = 990003, _HS.relation = "daughter", _HS.relationTarget = 990005, _HS.relationship = 3, _HS.relationshipTarget = 990005, _HS.assignment = "get milked", _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 12, _HS.muscles = 50, _HS.height = 190, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "waxed", _HS.waist = -100, _HS.heels = 1, _HS.voice = 0, _HS.boobs = 6000, _HS.nipples = "huge", _HS.areolae = 2, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 3, _HS.buttTat = "bovine patterns", _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "bovine patterns", _HS.anus = 3, _HS.anusTat = "bovine patterns", _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.nosePiercing = 2, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.energy = 65, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.tattoo = "A pretty blue cornflower is tattooed on each of $his cheeks.", _HS.custom.desc = "$He once spoke with the demeaning accent of slaves from the Old South.", _HS.mother = 990005>>
 <<if $seeDicks != 100>>
 	<<set _HS.genes = "XX", _HS.vagina = 1, _HS.vaginaTat = "bovine patterns", _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.pubertyXX = 1>>
 <<else>>
@@ -43,7 +43,7 @@
 //_HS.slaveName,//
 
 <<set _HS = clone($activeSlave)>>
-<<set _HS.slaveName = "Miss Lily", _HS.birthName = "Lillian", _HS.ID = 990004, _HS.relation = "daughter", _HS.relationTarget = 990000, _HS.assignment = "guard you", _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 30, _HS.muscles = 50, _HS.height = 175, _HS.eye.origColor = "green", _HS.origHColor = "straw blonde", _HS.origSkin = "pale", _HS.hLength = 40, _HS.hStyle = "in a short ponytail", _HS.waist = -55, _HS.boobs = 600, _HS.butt = 3, _HS.face = 15, _HS.lips = 35, _HS.preg = -2, _HS.anus = 2, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.energy = 65, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.tattoo = "'Miss Lily' is tattooed in lovely flowing script over $his collarbone.", _HS.custom.desc = "$He once spoke with the rich accent of the Old South.", _HS.mother = 990000>>
+<<set _HS.slaveName = "Miss Lily", _HS.birthName = "Lillian", _HS.ID = 990004, _HS.relation = "daughter", _HS.relationTarget = 990000, _HS.assignment = "guard you", _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 30, _HS.muscles = 50, _HS.height = 175, _HS.eye.origColor = "green", _HS.origHColor = "straw blonde", _HS.origSkin = "pale", _HS.hLength = 40, _HS.hStyle = "in a short ponytail", _HS.waist = -55, _HS.boobs = 600, _HS.butt = 3, _HS.face = 15, _HS.lips = 35, _HS.preg = -2, _HS.anus = 2, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.energy = 65, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.tattoo = "'Miss Lily' is tattooed in lovely flowing script over $his collarbone.", _HS.custom.desc = "$He once spoke with the rich accent of the Old South.", _HS.mother = 990000>>
 <<if $seeDicks != 100>>
 	<<set _HS.genes = "XX", _HS.ovaries = 1, _HS.pubertyXX = 1>>
 <<else>>
@@ -54,7 +54,7 @@
 //_HS.slaveName,//
 
 <<set _HS = clone($activeSlave)>>
-<<set _HS.slaveName = "Lilac", _HS.birthName = "Lillian", _HS.ID = 990005, _HS.relation = "mother", _HS.relationTarget = 990003, _HS.relationship = 3, _HS.relationshipTarget = 990003, _HS.assignment = "get milked", _HS.birthWeek = random(0,51), _HS.actualAge = 36, _HS.physicalAge = 36, _HS.visualAge = 36, _HS.ovaryAge = 36, _HS.health = 20, _HS.devotion = 12, _HS.muscles = 50, _HS.height = 190, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 8000, _HS.nipples = "huge", _HS.areolae = 2, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 4, _HS.buttTat = "bovine patterns", _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "bovine patterns", _HS.anus = 3, _HS.anusTat = "bovine patterns", _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.nosePiercing = 2, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.energy = 65, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.tattoo = "A pretty purple lilac is tattooed on each of $his cheeks.", _HS.custom.desc = "$He once spoke with the demeaning accent of slaves from the Old South.">>
+<<set _HS.slaveName = "Lilac", _HS.birthName = "Lillian", _HS.ID = 990005, _HS.relation = "mother", _HS.relationTarget = 990003, _HS.relationship = 3, _HS.relationshipTarget = 990003, _HS.assignment = "get milked", _HS.birthWeek = random(0,51), _HS.actualAge = 36, _HS.physicalAge = 36, _HS.visualAge = 36, _HS.ovaryAge = 36, setHealth(_HS, 20), _HS.devotion = 12, _HS.muscles = 50, _HS.height = 190, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 8000, _HS.nipples = "huge", _HS.areolae = 2, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 4, _HS.buttTat = "bovine patterns", _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "bovine patterns", _HS.anus = 3, _HS.anusTat = "bovine patterns", _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.nosePiercing = 2, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.energy = 65, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.tattoo = "A pretty purple lilac is tattooed on each of $his cheeks.", _HS.custom.desc = "$He once spoke with the demeaning accent of slaves from the Old South.">>
 <<if $seeDicks != 100>>
 	<<set _HS.genes = "XX", _HS.vagina = 1, _HS.vaginaTat = "bovine patterns", _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.pubertyXX = 1>>
 <<else>>
diff --git a/src/npc/databases/dSlavesDatabase.tw b/src/npc/databases/dSlavesDatabase.tw
index 476815c0ca39447df9822e5416bb7c3e0f895b64..4ba697c08010344609504bdfb6076b0ce09dee9d 100644
--- a/src/npc/databases/dSlavesDatabase.tw
+++ b/src/npc/databases/dSlavesDatabase.tw
@@ -2,529 +2,529 @@
 
 <<set _i = 900000>>
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Rose", _HS.birthName = "Rose", _HS.origin = "$He is a former maid with an unsettling obsessive streak.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health = 40, _HS.devotion = 100, _HS.weight = 25, _HS.origHColor = "chestnut", _HS.pubicHColor = "chestnut", _HS.hLength = 30, _HS.hStyle = "shoulder-length and in a bun", _HS.boobs = 700, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.entertainment = 1, _HS.clothes = "a nice maid outfit", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.career = "a maid", _HS.eyewear = "corrective glasses">>
+<<set _HS.slaveName = "Rose", _HS.birthName = "Rose", _HS.origin = "$He is a former maid with an unsettling obsessive streak.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, setHealth(_HS, 20), _HS.devotion = 100, _HS.weight = 25, _HS.origHColor = "chestnut", _HS.pubicHColor = "chestnut", _HS.hLength = 30, _HS.hStyle = "shoulder-length and in a bun", _HS.boobs = 700, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.entertainment = 1, _HS.clothes = "a nice maid outfit", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.career = "a maid", _HS.eyewear = "corrective glasses">>
 <<run eyeSurgery(_HS, "both", "blur")>>
 <<set $heroSlaves.push(_HS)>>
 /*maid dress, Excellent house slave, Will return if sold*/
 /*Added origin, tweaked stats, made $him Submissive -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Red", _HS.birthName = "Red", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, _HS.health = 20, _HS.devotion = 100, _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "light", _HS.hStyle = "long and tied back", _HS.boobs = 400, _HS.butt = 2, _HS.vaginaLube = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Red", _HS.birthName = "Red", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, setHealth(_HS, 20), _HS.devotion = 100, _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "light", _HS.hStyle = "long and tied back", _HS.boobs = 400, _HS.butt = 2, _HS.vaginaLube = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*changed eyes to blue, skin to light, double checked other stats*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Jewels", _HS.origin = "$He grew up sheltered and submissive, making $him an easy target for enslavement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -25, _HS.origHColor = "light brown", _HS.pubicHColor = "light brown", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.height = 165>>
+<<set _HS.slaveName = "Jewels", _HS.origin = "$He grew up sheltered and submissive, making $him an easy target for enslavement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = -25, _HS.origHColor = "light brown", _HS.pubicHColor = "light brown", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.height = 165>>
 <<set $heroSlaves.push(_HS)>>
 /*changed fetish from humiliation to submission, per original slave description, double checked other stats*/
 /*Added origin -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Reine", _HS.origin = "$He is a former mercenary that ended up on a losing side in the byzantine Free City power games.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 60, _HS.devotion = -75, _HS.height = 190, _HS.muscles = 20, _HS.race = "white", _HS.origHColor = "red", _HS.hStyle = "long and wild", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishStrength = 100, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has beautiful Celtic warrior's tattoos in woad blue.", _HS.career = "a mercenary">>
+<<set _HS.slaveName = "Reine", _HS.origin = "$He is a former mercenary that ended up on a losing side in the byzantine Free City power games.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 60), _HS.devotion = -75, _HS.height = 190, _HS.muscles = 20, _HS.race = "white", _HS.origHColor = "red", _HS.hStyle = "long and wild", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishStrength = 100, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has beautiful Celtic warrior's tattoos in woad blue.", _HS.career = "a mercenary">>
 <<set $heroSlaves.push(_HS)>>
 /*Added origin, made some assumptions about $his background, changed fetish to submissive, added arrogant flaw -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Luna", _HS.birthName = "Luna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.height = 157, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 20, _HS.hStyle = "chin-length with bangs over one eye", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "uncomfortable straps", _HS.attrXY = 40>>
+<<set _HS.slaveName = "Luna", _HS.birthName = "Luna", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.height = 157, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 20, _HS.hStyle = "chin-length with bangs over one eye", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "uncomfortable straps", _HS.attrXY = 40>>
 <<set $heroSlaves.push(_HS)>>
 /*Tat should be lower back, "Wears a leather collar, a Scarab clitoris g-string, Tortoise shell leather harness, and a pair of black thigh high boots"*/
 /*Corrected piercings -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Skye", _HS.birthName = "Skye", _HS.origin = "$He was fresh from the slave markets when you acquired $him.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 20, _HS.weight = -20, _HS.height = 155, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 40, _HS.hStyle = "chest-length", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.nosePiercing = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Skye", _HS.birthName = "Skye", _HS.origin = "$He was fresh from the slave markets when you acquired $him.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = 20, _HS.weight = -20, _HS.height = 155, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 40, _HS.hStyle = "chest-length", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.nosePiercing = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*Corrected piercings, added origin -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Piggy", _HS.birthName = "Chloë", _HS.origin = "$He was once a celebrity that protested the existence of slavery, but has now become a slave $himself.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -75, _HS.weight = -20, _HS.eye.origColor = "green", _HS.origHColor = "dirty blonde", _HS.pubicHColor = "dirty blonde", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 100, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishStrength = 100, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">>
+<<set _HS.slaveName = "Piggy", _HS.birthName = "Chloë", _HS.origin = "$He was once a celebrity that protested the existence of slavery, but has now become a slave $himself.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = -75, _HS.weight = -20, _HS.eye.origColor = "green", _HS.origHColor = "dirty blonde", _HS.pubicHColor = "dirty blonde", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 100, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishStrength = 100, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">>
 <<set $heroSlaves.push(_HS)>>
 /*Added origin, added bitchy, corrected eye color -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Sarah", _HS.birthName = "Sarah", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health = 20, _HS.devotion = 20, _HS.height = 175, _HS.eye.origColor = "grey", _HS.origHColor = "dirty blonde", _HS.pubicHColor = "dirty blonde", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.face = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.attrXX = 80, _HS.attrXY = 40, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has an abstract tattoo of flowers and vines extending from $his left knee to $his pelvis to cover up a surgery scar. $His full name, blood type, and medical allergies are printed in matrix barcodes on each wrist.">>
+<<set _HS.slaveName = "Sarah", _HS.birthName = "Sarah", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, setHealth(_HS, 20), _HS.devotion = 20, _HS.height = 175, _HS.eye.origColor = "grey", _HS.origHColor = "dirty blonde", _HS.pubicHColor = "dirty blonde", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.face = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.attrXX = 80, _HS.attrXY = 40, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has an abstract tattoo of flowers and vines extending from $his left knee to $his pelvis to cover up a surgery scar. $His full name, blood type, and medical allergies are printed in matrix barcodes on each wrist.">>
 <<set $heroSlaves.push(_HS)>>
 /*Pretty face, barcodes on wrists, fighter*/
 /*Corrected eyes, added combat skill, bisexual and odd, tweaked face -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Cuntbitch", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "$He was a slave trader until $he was betrayed by ambitious underlings and sold into enslavement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, _HS.health = 40, _HS.devotion = -100, _HS.muscles = 20, _HS.height = 183, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "black", _HS.hStyle = "long and curly", _HS.boobs = 1400, _HS.boobsImplant = 800, _HS.nipplesPiercing = 2, _HS.boobsTat = "degradation", _HS.butt = 6, _HS.buttImplant = 3, _HS.buttTat = "degradation", _HS.lips = 35, _HS.lipsPiercing = 2, _HS.lipsTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "degradation", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.clothes = "restrictive latex", _HS.shoes = "heels", _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has several 'tribal' style tattoos on $his arms from before $his enslavement.", _HS.career = "a slaver">>
+<<set _HS.slaveName = "Cuntbitch", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "$He was a slave trader until $he was betrayed by ambitious underlings and sold into enslavement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, setHealth(_HS, 40), _HS.devotion = -100, _HS.muscles = 20, _HS.height = 183, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "black", _HS.hStyle = "long and curly", _HS.boobs = 1400, _HS.boobsImplant = 800, _HS.nipplesPiercing = 2, _HS.boobsTat = "degradation", _HS.butt = 6, _HS.buttImplant = 3, _HS.buttTat = "degradation", _HS.lips = 35, _HS.lipsPiercing = 2, _HS.lipsTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "degradation", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.clothes = "restrictive latex", _HS.shoes = "heels", _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has several 'tribal' style tattoos on $his arms from before $his enslavement.", _HS.career = "a slaver">>
 <<set $heroSlaves.push(_HS)>>
 /*Set birth name to 'unknown', tweaked obedience downwards, corrected tattoo's, added combat skill, clothes and shoes, arrogant -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Catherine", _HS.birthName = "Catherine", _HS.origin = "$He came from a wealthy background, but $he sold $himself into slavery to slake $his desire to submit to men and dominate women.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health = 40, _HS.devotion = 20, _HS.nationality = "American", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.race = "white", _HS.hLength = 25, _HS.hStyle = "short and in a ponytail", _HS.boobs = 800, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.makeup = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 100, _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXX = 55, _HS.attrXY = 60, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.eyewear = "corrective glasses">>
+<<set _HS.slaveName = "Catherine", _HS.birthName = "Catherine", _HS.origin = "$He came from a wealthy background, but $he sold $himself into slavery to slake $his desire to submit to men and dominate women.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, setHealth(_HS, 40), _HS.devotion = 20, _HS.nationality = "American", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.race = "white", _HS.hLength = 25, _HS.hStyle = "short and in a ponytail", _HS.boobs = 800, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.makeup = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 100, _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXX = 55, _HS.attrXY = 60, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.eyewear = "corrective glasses">>
 <<run eyeSurgery(_HS, "both", "blur")>>
 <<set $heroSlaves.push(_HS)>>
 /*corrected eye color, makeup, tweaked entertainskill, added 'arrogant' -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Lilly", _HS.birthName = "Lilly", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 30, _HS.height = 155, _HS.eye.origColor = "green", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "extremely pale", _HS.hStyle = "long", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "degradation", _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.hips = 2>>
+<<set _HS.slaveName = "Lilly", _HS.birthName = "Lilly", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 30, _HS.height = 155, _HS.eye.origColor = "green", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "extremely pale", _HS.hStyle = "long", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "degradation", _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.hips = 2>>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Erica", _HS.birthName = "Erica", _HS.origin = "$He was sold into slavery after $his father was killed by political rivals.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = -10, _HS.devotion = 15, _HS.weight = -20, _HS.height = 152, _HS.markings = "freckled", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "fair", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 4, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Erica", _HS.birthName = "Erica", _HS.origin = "$He was sold into slavery after $his father was killed by political rivals.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, -10), _HS.devotion = 15, _HS.weight = -20, _HS.height = 152, _HS.markings = "freckled", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "fair", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 4, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*corrected eyes, changed skin to 'freckled', tweaked height downward, added pseudophallus clit, added origin -BoneyM*/
 /% corrected skin to fair?, changed markings to 'freckled' Bane70 %/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Sylvia", _HS.birthName = "Sylvia", _HS.origin = "$He was born a slave and knows no other life.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.nationality = "Stateless", _HS.health = -10, _HS.devotion = 10, _HS.origHColor = "black", _HS.hLength = 10, _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.career = "a slave">>
+<<set _HS.slaveName = "Sylvia", _HS.birthName = "Sylvia", _HS.origin = "$He was born a slave and knows no other life.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.nationality = "Stateless", setHealth(_HS, -10), _HS.devotion = 10, _HS.origHColor = "black", _HS.hLength = 10, _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.career = "a slave">>
 <<set $heroSlaves.push(_HS)>>
 /*Added origin, tweaked skills, added smart piercing set to submissive, removed buttslut -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Eryma", _HS.birthName = "Eryma", _HS.origin = "$He is a former gladiator that wagered $his freedom and lost.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health = 100, _HS.devotion = -30, _HS.height = 175, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.combat = 1, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.behavioralFlaw = "arrogant">>
+<<set _HS.slaveName = "Eryma", _HS.birthName = "Eryma", _HS.origin = "$He is a former gladiator that wagered $his freedom and lost.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = -30, _HS.height = 175, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.combat = 1, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.behavioralFlaw = "arrogant">>
 <<set $heroSlaves.push(_HS)>>
 /*fighter*/
 /*Added combat skill, changed eye color and rules, added origin, added arrogant -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Amber", _HS.birthName = "Amber", _HS.origin = "$He is a former shut-in who built up enough debt to be sold into slavery after the death of $his parents.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -100, _HS.weight = 40, _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 800, _HS.face = 15, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.behavioralFlaw = "hates men", _HS.career = "a shut-in">>
+<<set _HS.slaveName = "Amber", _HS.birthName = "Amber", _HS.origin = "$He is a former shut-in who built up enough debt to be sold into slavery after the death of $his parents.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = -100, _HS.weight = 40, _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 800, _HS.face = 15, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.behavioralFlaw = "hates men", _HS.career = "a shut-in">>
 <<set $heroSlaves.push(_HS)>>
 /*SJW*/
 /*Tweaked obedience downwards, increased weight and face, added origin, changed eye color, changed fetish to bisexual and added 'hates men' flaw -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Fio", _HS.birthName = "Fio", _HS.slaveSurname = "Rodan", _HS.birthSurname = "Rodan", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -100, _HS.weight = -20, _HS.height = 175, _HS.hLength = 15, _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a tribal tattoo from $his right elbow up the shoulder and across $his back.">>
+<<set _HS.slaveName = "Fio", _HS.birthName = "Fio", _HS.slaveSurname = "Rodan", _HS.birthSurname = "Rodan", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = -100, _HS.weight = -20, _HS.height = 175, _HS.hLength = 15, _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a tribal tattoo from $his right elbow up the shoulder and across $his back.">>
 <<set $heroSlaves.push(_HS)>>
 /*Corrected tattoo syntax, added nympho and arrogant -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Kiki", _HS.birthName = "Kiki", _HS.origin = "$He is a shinobi, and fanatically loyal to $his master.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 100, _HS.weight = -20, _HS.height = 175, _HS.nationality = "Japanese", _HS.race = "asian", _HS.origHColor = "black", _HS.override_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "light purple", _HS.pubicHColor = "light purple", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 500, _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has Yakuza-style tattoos across $his back.", _HS.career = "an assassin">>
+<<set _HS.slaveName = "Kiki", _HS.birthName = "Kiki", _HS.origin = "$He is a shinobi, and fanatically loyal to $his master.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 100, _HS.weight = -20, _HS.height = 175, _HS.nationality = "Japanese", _HS.race = "asian", _HS.origHColor = "black", _HS.override_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "light purple", _HS.pubicHColor = "light purple", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 500, _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has Yakuza-style tattoos across $his back.", _HS.career = "an assassin">>
 <<set $heroSlaves.push(_HS)>>
 /*shinobi*/
 /*Tweaked devotion upwards, added origin, corrected tattoo syntax, added odd quirk, added whoring and entertaining skill -BoneyM*/
 /% added combat skill 'Shinobi' means ninja so $he would have combat skill by default %/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Lily", _HS.birthName = "Lily", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 10, _HS.weight = -20, _HS.height = 163, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 400, _HS.butt = 2, _HS.face = 55, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40>>
+<<set _HS.slaveName = "Lily", _HS.birthName = "Lily", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 10, _HS.weight = -20, _HS.height = 163, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 400, _HS.butt = 2, _HS.face = 55, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40>>
 <<set $heroSlaves.push(_HS)>>
 /*Added green eyes, increased face, changed waist -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Terra", _HS.birthName = "Terra", _HS.ID = _i++, _HS.assignment = "be a servant", _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -50, _HS.weight = -20, _HS.eye.origColor = "amber", _HS.origHColor = "brown", _HS.override_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "purple", _HS.pubicHColor = "purple", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.clothes = "a nice maid outfit", _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "hates men">>
+<<set _HS.slaveName = "Terra", _HS.birthName = "Terra", _HS.ID = _i++, _HS.assignment = "be a servant", _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = -50, _HS.weight = -20, _HS.eye.origColor = "amber", _HS.origHColor = "brown", _HS.override_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "purple", _HS.pubicHColor = "purple", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.clothes = "a nice maid outfit", _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "hates men">>
 <<set $heroSlaves.push(_HS)>>
 /*Maid*/
 /*Added 'hates men', changed eyes to amber, made $him a servant -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Feri", _HS.birthName = "Feri", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.health = 20, _HS.devotion = -75, _HS.height = 175, _HS.hStyle = "long", _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "pale", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">>
+<<set _HS.slaveName = "Feri", _HS.birthName = "Feri", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, setHealth(_HS, 20), _HS.devotion = -75, _HS.height = 175, _HS.hStyle = "long", _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "pale", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">>
 <<set $heroSlaves.push(_HS)>>
 /*Snarky*/
 /*Added 'submissive' and 'bitchy' -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Valentina", _HS.birthName = "Valentina", _HS.origin = "$He was once the bodyguard to a Russian drug lord, and was sold into slavery after his death by cocaine overdose.", _HS.ID = _i++, _HS.nationality = "Russian", _HS.birthWeek = random(0,51), _HS.actualAge = 29, _HS.physicalAge = 29, _HS.visualAge = 29, _HS.ovaryAge = 29, _HS.health = 100, _HS.devotion = 100, _HS.muscles = 100, _HS.height = 175, _HS.eye.origColor = "green", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.butt = 2, _HS.lips = 25, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a red star tattoo on $his back, and a hammer and sickle on $his right buttock.", _HS.custom.desc = "$He has a Slavic face with high cheekbones and a strong, pointed jaw. $He is a skilled martial artist.", _HS.faceShape = "masculine", _HS.career = "a bodyguard">>
+<<set _HS.slaveName = "Valentina", _HS.birthName = "Valentina", _HS.origin = "$He was once the bodyguard to a Russian drug lord, and was sold into slavery after his death by cocaine overdose.", _HS.ID = _i++, _HS.nationality = "Russian", _HS.birthWeek = random(0,51), _HS.actualAge = 29, _HS.physicalAge = 29, _HS.visualAge = 29, _HS.ovaryAge = 29, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 100, _HS.height = 175, _HS.eye.origColor = "green", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.butt = 2, _HS.lips = 25, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a red star tattoo on $his back, and a hammer and sickle on $his right buttock.", _HS.custom.desc = "$He has a Slavic face with high cheekbones and a strong, pointed jaw. $He is a skilled martial artist.", _HS.faceShape = "masculine", _HS.career = "a bodyguard">>
 <<set $heroSlaves.push(_HS)>>
 /*Tweaked devotion up, changed eyes to green, corrected tattoo syntax, added combat skill -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Maria", _HS.birthName = "Maria", _HS.origin = "$He was sold into slavery on a legal technicality.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 40, _HS.devotion = 15, _HS.height = 155, _HS.race = "latina", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 25, _HS.hStyle = "in a bob", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.face = -15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.anus = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.clothes = "attractive lingerie", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.sexualFlaw = "hates penetration">>
+<<set _HS.slaveName = "Maria", _HS.birthName = "Maria", _HS.origin = "$He was sold into slavery on a legal technicality.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 40), _HS.devotion = 15, _HS.height = 155, _HS.race = "latina", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 25, _HS.hStyle = "in a bob", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.face = -15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.anus = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.clothes = "attractive lingerie", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.sexualFlaw = "hates penetration">>
 <<set $heroSlaves.push(_HS)>>
 /*fighter*/
 /*Tweaked face down, added 'hates penetration' and combat skill -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Cecilia", _HS.birthName = "Cecilia", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.health = 20, _HS.devotion = 100, _HS.height = 178, _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 650, _HS.nipplesPiercing = 2, _HS.boobsTat = "tribal patterns", _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.lipsPiercing = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "tribal patterns", _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 10, _HS.attrXY = 40>>
+<<set _HS.slaveName = "Cecilia", _HS.birthName = "Cecilia", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, setHealth(_HS, 20), _HS.devotion = 100, _HS.height = 178, _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 650, _HS.nipplesPiercing = 2, _HS.boobsTat = "tribal patterns", _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.lipsPiercing = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "tribal patterns", _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 10, _HS.attrXY = 40>>
 <<set $heroSlaves.push(_HS)>>
 /*Tweaked devotion up, added arrogant -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Elise", _HS.birthName = "Elise", _HS.origin = "$He is a spoiled former rich $girl who has been discarded by several former owners for $his attitude.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -40, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration">>
+<<set _HS.slaveName = "Elise", _HS.birthName = "Elise", _HS.origin = "$He is a spoiled former rich $girl who has been discarded by several former owners for $his attitude.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = -40, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration">>
 <<set $heroSlaves.push(_HS)>>
 /*hates sex*/
 /*Changed eye color, hard to pick between 'hates penetration' and 'arrogant', chose the latter because it seems more central to the character. -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Santa", _HS.birthName = "Santa", _HS.origin = "$He claims that $he actually is Santa Claus.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 10, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "strawberry blonde", _HS.pubicHColor = "strawberry blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.intelligence = -50, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.sexualFlaw = "hates penetration", _HS.custom.desc = "$He has a verbal tic that causes $him to say 'ho, ho, ho' frequently.", _HS.weight = 35, _HS.clothes = "a Santa dress">>
+<<set _HS.slaveName = "Santa", _HS.birthName = "Santa", _HS.origin = "$He claims that $he actually is Santa Claus.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = 10, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "strawberry blonde", _HS.pubicHColor = "strawberry blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.intelligence = -50, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.sexualFlaw = "hates penetration", _HS.custom.desc = "$He has a verbal tic that causes $him to say 'ho, ho, ho' frequently.", _HS.weight = 35, _HS.clothes = "a Santa dress">>
 <<set $heroSlaves.push(_HS)>>
 /*Changed eye color, added odd, tweaked vaginalSkill, added origin -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Joan", _HS.birthName = "Joan", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health = 20, _HS.devotion = 15, _HS.height = 175, _HS.eye.origColor = "blue", _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.hStyle = "long", _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.butt = 4, _HS.face = 15, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 30, _HS.attrXX = 80, _HS.attrXY = 80, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Joan", _HS.birthName = "Joan", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, setHealth(_HS, 20), _HS.devotion = 15, _HS.height = 175, _HS.eye.origColor = "blue", _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.hStyle = "long", _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.butt = 4, _HS.face = 15, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 30, _HS.attrXX = 80, _HS.attrXY = 80, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*heterochromia*/
 /*Tweaked face upwards, changed eye color, changed health from 20 to 6 -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Belle", _HS.birthName = "Belle", _HS.origin = "Formerly used solely for titfucking, $he quickly became a nymphomaniac after experiencing 'proper' sex.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = -75, _HS.height = 155, _HS.boobs = 1200, _HS.boobsImplant = 1000, _HS.butt = 4, _HS.buttImplant = 3, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = -30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$His breasts are tattooed with $his implant history, showing repeated additions.", _HS.sexualFlaw = "crude">>
+<<set _HS.slaveName = "Belle", _HS.birthName = "Belle", _HS.origin = "Formerly used solely for titfucking, $he quickly became a nymphomaniac after experiencing 'proper' sex.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = -75, _HS.height = 155, _HS.boobs = 1200, _HS.boobsImplant = 1000, _HS.butt = 4, _HS.buttImplant = 3, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = -30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$His breasts are tattooed with $his implant history, showing repeated additions.", _HS.sexualFlaw = "crude">>
 <<set $heroSlaves.push(_HS)>>
 /*rapey implant addict*/
 /*Is 'rapey' a quirk? Guess so. Added odd. Changed eye color, added nympho, added origin. -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Sophia", _HS.birthName = "Sophia", _HS.origin = "A former Head Girl of a rich man's harem, $he is used to being in charge of others.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = 20, _HS.devotion = 25, _HS.height = 175, _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "white", _HS.hLength = 35, _HS.hStyle = "shoulder length", _HS.boobs = 1000, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 0, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.behavioralFlaw = "arrogant">>
+<<set _HS.slaveName = "Sophia", _HS.birthName = "Sophia", _HS.origin = "A former Head Girl of a rich man's harem, $he is used to being in charge of others.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, setHealth(_HS, 20), _HS.devotion = 25, _HS.height = 175, _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "white", _HS.hLength = 35, _HS.hStyle = "shoulder length", _HS.boobs = 1000, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 0, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.behavioralFlaw = "arrogant">>
 <<set $heroSlaves.push(_HS)>>
 /*dislikes women*/
 /*Added 'arrogant' and origin -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Fifi", _HS.birthName = "Fifi", _HS.slaveSurname = "la Mer", _HS.birthSurname = "la Mer", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, _HS.health = 20, _HS.devotion = 25, _HS.height = 155, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "ebony", _HS.race = "black", _HS.hLength = 10, _HS.hStyle = "short afro", _HS.boobs = 1000, _HS.nipplesPiercing = 2, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clit = 3, _HS.clitPiercing = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.clothes = "attractive lingerie", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.navelPiercing = 1>>
+<<set _HS.slaveName = "Fifi", _HS.birthName = "Fifi", _HS.slaveSurname = "la Mer", _HS.birthSurname = "la Mer", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, setHealth(_HS, 20), _HS.devotion = 25, _HS.height = 155, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "ebony", _HS.race = "black", _HS.hLength = 10, _HS.hStyle = "short afro", _HS.boobs = 1000, _HS.nipplesPiercing = 2, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clit = 3, _HS.clitPiercing = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.clothes = "attractive lingerie", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.navelPiercing = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*big clit*/
 /*Added big clit, increased nipple piercing, added clit piercing -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Jones", _HS.birthName = "Jones", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health = 40, _HS.devotion = 25, _HS.height = 175, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 40, _HS.hStyle = "long curls back in a ponytail", _HS.boobs = 400, _HS.butt = 1, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a large yakuza tattoo over $his shoulder, depicting roses and koi fishes swimming upstream.">>
+<<set _HS.slaveName = "Jones", _HS.birthName = "Jones", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, setHealth(_HS, 40), _HS.devotion = 25, _HS.height = 175, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 40, _HS.hStyle = "long curls back in a ponytail", _HS.boobs = 400, _HS.butt = 1, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a large yakuza tattoo over $his shoulder, depicting roses and koi fishes swimming upstream.">>
 <<set $heroSlaves.push(_HS)>>
 /*violent nymphomania, buttslut*/
 /*Tweaked health upwards, corrected tattoo syntax, added combat skill -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Slave", _HS.birthName = "Vanessa", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = -75, _HS.height = 157, _HS.eye.origColor = "blue", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1200, _HS.butt = 3, _HS.lipsTat = "permanent makeup", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a barcode tattooed on $his abdomen, and 'cut here' lines on $his arms and legs.", _HS.sexualFlaw = "self hating">>
+<<set _HS.slaveName = "Slave", _HS.birthName = "Vanessa", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 20), _HS.devotion = -75, _HS.height = 157, _HS.eye.origColor = "blue", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1200, _HS.butt = 3, _HS.lipsTat = "permanent makeup", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a barcode tattooed on $his abdomen, and 'cut here' lines on $his arms and legs.", _HS.sexualFlaw = "self hating">>
 <<set $heroSlaves.push(_HS)>>
 /*permashackles*/
 /*Changed eyes to blue, added tattoos -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Carol", _HS.birthName = "Carol", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 60, _HS.weight = -20, _HS.height = 155, _HS.eye.origColor = "blue", _HS.origSkin = "pale", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 400, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a cherry blossom tattooed on $his forearm.", _HS.custom.desc = "$He is unnaturally flexible.">>
+<<set _HS.slaveName = "Carol", _HS.birthName = "Carol", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 60, _HS.weight = -20, _HS.height = 155, _HS.eye.origColor = "blue", _HS.origSkin = "pale", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 400, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a cherry blossom tattooed on $his forearm.", _HS.custom.desc = "$He is unnaturally flexible.">>
 <<set $heroSlaves.push(_HS)>>
 /*red contacts*/
 /*Reduced weight, changed eyes to blue, corrected tattoo syntax, added flexibility in customdesc, changed skin to pale -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Jennifer", _HS.birthName = "Jennifer", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.race = "white", _HS.origHColor = "brunette", _HS.pubicHColor = "brunette", _HS.origSkin = "fair", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.entertainment = 35, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.height = 173>>
+<<set _HS.slaveName = "Jennifer", _HS.birthName = "Jennifer", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 60, _HS.race = "white", _HS.origHColor = "brunette", _HS.pubicHColor = "brunette", _HS.origSkin = "fair", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.entertainment = 35, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.height = 173>>
 <<set $heroSlaves.push(_HS)>>
 /*Added entertain skill -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Charity", _HS.birthName = "Charity", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 29, _HS.physicalAge = 29, _HS.visualAge = 29, _HS.ovaryAge = 29, _HS.health = 20, _HS.devotion = 90, _HS.race = "middle eastern", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "light olive", _HS.hLength = 80, _HS.hStyle = "very long", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 35, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has 'Charity' tattooed in cursive across the back of $his neck.">>
+<<set _HS.slaveName = "Charity", _HS.birthName = "Charity", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 29, _HS.physicalAge = 29, _HS.visualAge = 29, _HS.ovaryAge = 29, setHealth(_HS, 20), _HS.devotion = 90, _HS.race = "middle eastern", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "light olive", _HS.hLength = 80, _HS.hStyle = "very long", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 35, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has 'Charity' tattooed in cursive across the back of $his neck.">>
 <<set $heroSlaves.push(_HS)>>
 /*Changed $him to Arabic, corrected tattoo syntax, added entertain skill -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Riya", _HS.birthName = "Riya", _HS.origin = "$He grew up in a well-to-do family and discovered $his fetish for servitude in college, and $he decided to become the world's best slave and slave trainer in one.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 40, _HS.weight = -20, _HS.height = 155, _HS.race = "indo-aryan", _HS.eye.origColor = "grey", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a barcode of $his identifying information tattooed on $his left shoulder.", _HS.career = "a slaver">>
+<<set _HS.slaveName = "Riya", _HS.birthName = "Riya", _HS.origin = "$He grew up in a well-to-do family and discovered $his fetish for servitude in college, and $he decided to become the world's best slave and slave trainer in one.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 40, _HS.weight = -20, _HS.height = 155, _HS.race = "indo-aryan", _HS.eye.origColor = "grey", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a barcode of $his identifying information tattooed on $his left shoulder.", _HS.career = "a slaver">>
 <<set $heroSlaves.push(_HS)>>
 /*Changed eyes to grey, reduced height and weight, added origin, smart piercing, entertain and whore skill (representing theoretical knowledge from being a trainer), added ear piercings -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Alice", _HS.birthName = "Alice", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 60, _HS.height = 155, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a scar on $his abdomen from kidney surgery in $his youth.", _HS.sexualFlaw = "crude">>
+<<set _HS.slaveName = "Alice", _HS.birthName = "Alice", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 60, _HS.height = 155, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a scar on $his abdomen from kidney surgery in $his youth.", _HS.sexualFlaw = "crude">>
 <<set $heroSlaves.push(_HS)>>
 /*sexual one-upper*/
 /*Changed eyes, added scar -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Raven", _HS.birthName = "Raven", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 20, _HS.weight = -20, _HS.race = "white", _HS.eye.origColor = "green", _HS.override_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "black with blue highlights", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.nails = 2, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Raven", _HS.birthName = "Raven", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = 20, _HS.weight = -20, _HS.race = "white", _HS.eye.origColor = "green", _HS.override_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "black with blue highlights", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.nails = 2, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*likes toys*/
 /*Reduced weight, changed eyes, added nail polish -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Kino", _HS.birthName = "Kino", _HS.origin = "$He was formerly owned by someone who fancied themselves a geneticist, where $he acquired permanently discolored hair and odd fetishes.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 40, _HS.devotion = -75, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue-green", _HS.override_H_Color = 1, _HS.origHColor = "blue", _HS.pubicHColor = "blue", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 30, _HS.hStyle = "short, spiky, with a long shoulder-length lock leading from $his temples down, one on each side", _HS.boobs = 650, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a vertical scar through $his right eye, is a dabbling artist, and is an oviposition fetishist.">>
+<<set _HS.slaveName = "Kino", _HS.birthName = "Kino", _HS.origin = "$He was formerly owned by someone who fancied themselves a geneticist, where $he acquired permanently discolored hair and odd fetishes.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 40), _HS.devotion = -75, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue-green", _HS.override_H_Color = 1, _HS.origHColor = "blue", _HS.pubicHColor = "blue", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 30, _HS.hStyle = "short, spiky, with a long shoulder-length lock leading from $his temples down, one on each side", _HS.boobs = 650, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a vertical scar through $his right eye, is a dabbling artist, and is an oviposition fetishist.">>
 <<run eyeSurgery(_HS, "both", "blind")>>
 <<set $heroSlaves.push(_HS)>>
 /*Added combat skill, increased health, added origin -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Vivienne", _HS.birthName = "Vivienne", _HS.origin = "$He is a former soldier who was sold into slavery after losing $his leg to an IED.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 39, _HS.physicalAge = 39, _HS.visualAge = 39, _HS.ovaryAge = 39, _HS.health = 20, _HS.devotion = 90, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXY = 1, _HS.fetishKnown = 1, _HS.backTat = "$He has a military tattoo on $his back.", _HS.custom.desc = "$His left leg is artificial, and $he has a number of scars on $his thigh and shoulder and a burn near $his temple.", _HS.career = "a soldier">>
+<<set _HS.slaveName = "Vivienne", _HS.birthName = "Vivienne", _HS.origin = "$He is a former soldier who was sold into slavery after losing $his leg to an IED.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 39, _HS.physicalAge = 39, _HS.visualAge = 39, _HS.ovaryAge = 39, setHealth(_HS, 20), _HS.devotion = 90, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXY = 1, _HS.fetishKnown = 1, _HS.backTat = "$He has a military tattoo on $his back.", _HS.custom.desc = "$His left leg is artificial, and $he has a number of scars on $his thigh and shoulder and a burn near $his temple.", _HS.career = "a soldier">>
 <<run configureLimbs(_HS, "left leg", 2)>>
 <<set $heroSlaves.push(_HS)>>
 /*missing left leg, burn scar, low sex drive, fighter*/
 /*Added customdesc, fixed tattoo syntax, added combat skill, eye color and origin -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Lexi", _HS.birthName = "Lexi", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 25, _HS.weight = -20, _HS.height = 157, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "bleached blonde", _HS.pubicHColor = "bleached blonde", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 35, _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Lexi", _HS.birthName = "Lexi", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 25, _HS.weight = -20, _HS.height = 157, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "bleached blonde", _HS.pubicHColor = "bleached blonde", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 35, _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*Changed eyes to blue -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Blue", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, _HS.health = 60, _HS.devotion = 35, _HS.height = 165, _HS.muscles = 20, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.hStyle = "short", _HS.pubicHStyle = "bushy", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 50, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.backTat = "$He has angel wings across $his back.", _HS.underArmHStyle = "bushy", _HS.clothes = "a comfortable bodysuit", _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug">>
+<<set _HS.slaveName = "Blue", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, setHealth(_HS, 60), _HS.devotion = 35, _HS.height = 165, _HS.muscles = 20, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.hStyle = "short", _HS.pubicHStyle = "bushy", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 50, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.backTat = "$He has angel wings across $his back.", _HS.underArmHStyle = "bushy", _HS.clothes = "a comfortable bodysuit", _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug">>
 <<set $heroSlaves.push(_HS)>>
 /*Fixed tattoo syntax -BoneyM "$He has hairy, unshaven armpits, bush and asscrack."*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Maya", _HS.birthName = "Maya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 40, _HS.devotion = 100, _HS.height = 190, _HS.markings = "freckled", _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "light", _HS.hLength = 10, _HS.boobs = 800, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.legsTat = "$His right thigh reads 'Fuck Me' in flowery script.", _HS.stampTat = "$He has a fairly generic tramp stamp.">>
+<<set _HS.slaveName = "Maya", _HS.birthName = "Maya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 40), _HS.devotion = 100, _HS.height = 190, _HS.markings = "freckled", _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "light", _HS.hLength = 10, _HS.boobs = 800, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.legsTat = "$His right thigh reads 'Fuck Me' in flowery script.", _HS.stampTat = "$He has a fairly generic tramp stamp.">>
 <<set $heroSlaves.push(_HS)>>
 /*Corrected tattoo syntax, changed skin to freckled, eyes to green, increased height -BoneyM*/
 /% Corrected skin to light?, and changed markings to freckled Bane70 %/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Alexis", _HS.birthName = "Alexis", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health = 20, _HS.devotion = 60, _HS.muscles = 20, _HS.height = 150, _HS.race = "mixed race", _HS.eye.origColor = "hazel", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "ebony", _HS.hStyle = "long", _HS.boobs = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clit = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -20, _HS.energy = 100, _HS.attrXY = 75, _HS.attrXX = 75, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a feminine personality despite $his high testosterone.", _HS.areolae = 2, _HS.nipples = "huge", _HS.voice = 1, _HS.navelPiercing = 1, _HS.tonguePiercing = 1>>
+<<set _HS.slaveName = "Alexis", _HS.birthName = "Alexis", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, setHealth(_HS, 20), _HS.devotion = 60, _HS.muscles = 20, _HS.height = 150, _HS.race = "mixed race", _HS.eye.origColor = "hazel", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "ebony", _HS.hStyle = "long", _HS.boobs = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clit = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -20, _HS.energy = 100, _HS.attrXY = 75, _HS.attrXX = 75, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a feminine personality despite $his high testosterone.", _HS.areolae = 2, _HS.nipples = "huge", _HS.voice = 1, _HS.navelPiercing = 1, _HS.tonguePiercing = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*big clit*/
 /*Changed eyes to hazel, increased clit, added a lot of piercings, changed fetish to nympho, fixed customdesc syntax -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Anneliese", _HS.birthName = "Anneliese", _HS.origin = "$He is a former Head Girl that fetishizes $his own degradation.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, _HS.health = 20, _HS.devotion = 100, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "golden", _HS.pubicHColor = "golden", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.anus = 2, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.clothes = "slutty jewelry", _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.custom.desc = "$He has the air of a princess.">>
+<<set _HS.slaveName = "Anneliese", _HS.birthName = "Anneliese", _HS.origin = "$He is a former Head Girl that fetishizes $his own degradation.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, setHealth(_HS, 20), _HS.devotion = 100, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "golden", _HS.pubicHColor = "golden", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.anus = 2, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.clothes = "slutty jewelry", _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.custom.desc = "$He has the air of a princess.">>
 <<set $heroSlaves.push(_HS)>>
 /*Changed eyes to blue, added origin, pierced ears, fixed customdesc syntax -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Riley", _HS.birthName = "Riley", _HS.origin = "$He sold $himself into slavery in an attempt to sate $his incredible sex drive.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 75, _HS.weight = -20, _HS.height = 180, _HS.origHColor = "black", _HS.pubicHStyle = "black", _HS.origSkin = "pale", _HS.hLength = 10, _HS.pubicHStyle = "bald", _HS.underArmHStyle = "bald", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lipsPiercing = 2, _HS.tonguePiercing = 2, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clitPiercing = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 100, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a scar on the back of $his head, concealed by $his hair.">>
+<<set _HS.slaveName = "Riley", _HS.birthName = "Riley", _HS.origin = "$He sold $himself into slavery in an attempt to sate $his incredible sex drive.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 75, _HS.weight = -20, _HS.height = 180, _HS.origHColor = "black", _HS.pubicHStyle = "black", _HS.origSkin = "pale", _HS.hLength = 10, _HS.pubicHStyle = "bald", _HS.underArmHStyle = "bald", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lipsPiercing = 2, _HS.tonguePiercing = 2, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clitPiercing = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 100, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a scar on the back of $his head, concealed by $his hair.">>
 <<set $heroSlaves.push(_HS)>>
 /*compulsive masturbation*/
 /*Moved customdesc to origin, added scar to customdesc, reduced weight, added nympho, added nipple and clit piercings -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Victoria", _HS.birthName = "Victoria", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = -7, _HS.devotion = 25, _HS.race = "white", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.boobsTat = "degradation", _HS.buttTat = "degradation", _HS.lipsTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "degradation", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "degradation", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.addict = 999, _HS.intelligence = -90, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He is a permanent, irrecoverable aphrodisiac addict.">>
+<<set _HS.slaveName = "Victoria", _HS.birthName = "Victoria", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, -7), _HS.devotion = 25, _HS.race = "white", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.boobsTat = "degradation", _HS.buttTat = "degradation", _HS.lipsTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "degradation", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "degradation", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.addict = 999, _HS.intelligence = -90, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He is a permanent, irrecoverable aphrodisiac addict.">>
 <<set $heroSlaves.push(_HS)>>
 /*Corrected customdesc syntax -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Aveline", _HS.birthName = "Aveline", _HS.origin = "$He was sold into slavery from a remote, primitive village.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, _HS.health = 20, _HS.devotion = -75, _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 25, _HS.hStyle = "in a bob", _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.stampTat = "$He has a barcode tattooed above $his butt.">>
+<<set _HS.slaveName = "Aveline", _HS.birthName = "Aveline", _HS.origin = "$He was sold into slavery from a remote, primitive village.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, setHealth(_HS, 20), _HS.devotion = -75, _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 25, _HS.hStyle = "in a bob", _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.stampTat = "$He has a barcode tattooed above $his butt.">>
 <<set $heroSlaves.push(_HS)>>
 /*Added barcode tattoo and origin -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Emm", _HS.birthName = "Emm", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health = 20, _HS.devotion = 40, _HS.weight = 20, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "strawberry blonde", _HS.pubicHColor = "strawberry blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 5, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is friendly, clever, and quick.">>
+<<set _HS.slaveName = "Emm", _HS.birthName = "Emm", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, setHealth(_HS, 20), _HS.devotion = 40, _HS.weight = 20, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "strawberry blonde", _HS.pubicHColor = "strawberry blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 5, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is friendly, clever, and quick.">>
 <<set $heroSlaves.push(_HS)>>
 /*fluctuating weight*/
 /*Increased weight, added entertain and whore skill, added ear piercing, changed eyes -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Twenty", _HS.birthName = "Twenty", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 40, _HS.weight = 20, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "light", _HS.hStyle = "long", _HS.boobs = 800, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = -50, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a paw print tattoo on $his left buttock.", _HS.custom.desc = "$He constantly uses 'pussy' and 'kitty' puns when permitted.", _HS.clothes = "kitty lingerie">>
+<<set _HS.slaveName = "Twenty", _HS.birthName = "Twenty", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = 40, _HS.weight = 20, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "light", _HS.hStyle = "long", _HS.boobs = 800, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = -50, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a paw print tattoo on $his left buttock.", _HS.custom.desc = "$He constantly uses 'pussy' and 'kitty' puns when permitted.", _HS.clothes = "kitty lingerie">>
 <<set $heroSlaves.push(_HS)>>
 /*Fixed tattoo and customdesc syntax -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Thorn", _HS.birthName = "Thorn", _HS.origin = "$He lived a hard life before becoming a slave.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 32, _HS.physicalAge = 32, _HS.visualAge = 32, _HS.ovaryAge = 32, _HS.health = 40, _HS.devotion = -50, _HS.muscles = 20, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "dark", _HS.hLength = 10, _HS.boobs = 650, _HS.butt = 3, _HS.ovaries = 1, _HS.intelligence = -30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.custom.desc = "$He has many scars, including one over $his blind left eye.">>
+<<set _HS.slaveName = "Thorn", _HS.birthName = "Thorn", _HS.origin = "$He lived a hard life before becoming a slave.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 32, _HS.physicalAge = 32, _HS.visualAge = 32, _HS.ovaryAge = 32, setHealth(_HS, 40), _HS.devotion = -50, _HS.muscles = 20, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "dark", _HS.hLength = 10, _HS.boobs = 650, _HS.butt = 3, _HS.ovaries = 1, _HS.intelligence = -30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.custom.desc = "$He has many scars, including one over $his blind left eye.">>
 <<set $heroSlaves.push(_HS)>>
 /*Increased health, added origin, fixed customdesc syntax -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Kinsey", _HS.birthName = "Kinsey", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = 20, _HS.devotion = 10, _HS.height = 145, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.hLength = 15, _HS.hStyle = "short, with the left side shaved", _HS.boobs = 500, _HS.butt = 4, _HS.buttImplant = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 2, _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 100, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Kinsey", _HS.birthName = "Kinsey", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, setHealth(_HS, 20), _HS.devotion = 10, _HS.height = 145, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.hLength = 15, _HS.hStyle = "short, with the left side shaved", _HS.boobs = 500, _HS.butt = 4, _HS.buttImplant = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 2, _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 100, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*Added nose piercing, reduced height, changed fetish to bisexual -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Sammy", _HS.birthName = "Sammy", _HS.origin = "$He chose to be a slave because the romanticized view of it $he had turns $him on.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 25, _HS.weight = 20, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 80, _HS.hStyle = "ass-length", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He has fetishes for wedgies, spanking and herms.">>
+<<set _HS.slaveName = "Sammy", _HS.birthName = "Sammy", _HS.origin = "$He chose to be a slave because the romanticized view of it $he had turns $him on.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = 25, _HS.weight = 20, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 80, _HS.hStyle = "ass-length", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He has fetishes for wedgies, spanking and herms.">>
 <<set $heroSlaves.push(_HS)>>
 /*laid back*/
 /*Added origin, increased weight, pierced ears, added customdesc -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Klara", _HS.birthName = "Klara", _HS.origin = "$He was forced into slavery and rather brutally broken in.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -75, _HS.height = 175, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origSkin = "fair", _HS.hStyle = "long and braided", _HS.boobs = 800, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["right buttock"] = "Cum slut", _HS.custom.tattoo = "'bitch whore' is tattooed on $his inner left thigh.">>
+<<set _HS.slaveName = "Klara", _HS.birthName = "Klara", _HS.origin = "$He was forced into slavery and rather brutally broken in.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = -75, _HS.height = 175, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origSkin = "fair", _HS.hStyle = "long and braided", _HS.boobs = 800, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["right buttock"] = "Cum slut", _HS.custom.tattoo = "'bitch whore' is tattooed on $his inner left thigh.">>
 <<set $heroSlaves.push(_HS)>>
 /*Fixed typo in customdesc, increased whore and entertainskill, changed eye color -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Lucy", _HS.birthName = "Lucy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 40, _HS.race = "white", _HS.origSkin = "white", _HS.eye.origColor = "blue", _HS.override_H_Color = 1, _HS.origHColor = "brown", _HS.hColor = "pale blonde", _HS.hLength = 95, _HS.hStyle = "ass length", _HS.boobs = 300, _HS.butt = 3, _HS.buttTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "degradation", _HS.ovaries = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.height = 165>>
+<<set _HS.slaveName = "Lucy", _HS.birthName = "Lucy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 40, _HS.race = "white", _HS.origSkin = "white", _HS.eye.origColor = "blue", _HS.override_H_Color = 1, _HS.origHColor = "brown", _HS.hColor = "pale blonde", _HS.hLength = 95, _HS.hStyle = "ass length", _HS.boobs = 300, _HS.butt = 3, _HS.buttTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "degradation", _HS.ovaries = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.height = 165>>
 <<set $heroSlaves.push(_HS)>>
 /*innuendo*/
 /*Added odd, changed eye color -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Mandy", _HS.birthName = "Mandy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.hStyle = "long", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "attractive lingerie", _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Mandy", _HS.birthName = "Mandy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 60, _HS.hStyle = "long", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "attractive lingerie", _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*Couldn't find this slave in the thread or the submission page on the blog -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Dharma", _HS.birthName = "Dharma", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.health = 20, _HS.devotion = -100, _HS.height = 175, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "dark brown", _HS.pubicHColor = "dark brown", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a henna tattoo on $his left forearm, and a butterfly tattoo on $his right calf.", _HS.custom.desc = "$He has high cheekbones on a heart shaped face.", _HS.faceShape = "cute", _HS.sexualQuirk = "size queen">>
+<<set _HS.slaveName = "Dharma", _HS.birthName = "Dharma", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, setHealth(_HS, 20), _HS.devotion = -100, _HS.height = 175, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "dark brown", _HS.pubicHColor = "dark brown", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a henna tattoo on $his left forearm, and a butterfly tattoo on $his right calf.", _HS.custom.desc = "$He has high cheekbones on a heart shaped face.", _HS.faceShape = "cute", _HS.sexualQuirk = "size queen">>
 <<set $heroSlaves.push(_HS)>>
 /*Fetish was set to 'arrogant' instead of quirk, corrected tattoo syntax -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Aya", _HS.birthName = "Aya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -25, _HS.race = "white", _HS.override_H_Color = 1, _HS.origHColor = "red", _HS.hColor = "bright red", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.clothes = "attractive lingerie", _HS.intelligence = random(96,99), _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.desc = "$He has piercings along $his collarbones and corset piercings with red ribbons down $his lower back and thighs.", _HS.height = 168>>
+<<set _HS.slaveName = "Aya", _HS.birthName = "Aya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = -25, _HS.race = "white", _HS.override_H_Color = 1, _HS.origHColor = "red", _HS.hColor = "bright red", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.clothes = "attractive lingerie", _HS.intelligence = random(96,99), _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.desc = "$He has piercings along $his collarbones and corset piercings with red ribbons down $his lower back and thighs.", _HS.height = 168>>
 <<set $heroSlaves.push(_HS)>>
 /*masochist*/
 /*Added piercings, corrected customdesc syntax, added bitchy to fit with $his smart-ass masochist personality. -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Mikayla", _HS.birthName = "Mikayla", _HS.origin = "$He was previously owned by a creative sadist, who has left a variety of mental scars on $him.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -25, _HS.weight = 20, _HS.height = 157, _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -35, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.desc = "$He is extremely claustrophobic.">>
+<<set _HS.slaveName = "Mikayla", _HS.birthName = "Mikayla", _HS.origin = "$He was previously owned by a creative sadist, who has left a variety of mental scars on $him.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = -25, _HS.weight = 20, _HS.height = 157, _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -35, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.desc = "$He is extremely claustrophobic.">>
 <<set $heroSlaves.push(_HS)>>
 /*claustrophobia, pride*/
 /*Fixed customdesc syntax, added pierced ears, corrected hair color, added origin and arrogant -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Xendra", _HS.birthName = "Xendra", _HS.origin = "$He was a hermit until $he became a slave, and went along with it out of boredom.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 40, _HS.devotion = 75, _HS.height = 175, _HS.race = "black", _HS.eye.origColor = "brown", _HS.override_Eye_Color = 1, _HS.override_H_Color = 1, _HS.origHColor = "white", _HS.origSkin = "dark", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.tattoo = "$He has a pair of full sleeve tattoos.", _HS.custom.desc = "$He has many scars, and is skilled with plants.", _HS.career = "a shut-in">>
+<<set _HS.slaveName = "Xendra", _HS.birthName = "Xendra", _HS.origin = "$He was a hermit until $he became a slave, and went along with it out of boredom.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 40), _HS.devotion = 75, _HS.height = 175, _HS.race = "black", _HS.eye.origColor = "brown", _HS.override_Eye_Color = 1, _HS.override_H_Color = 1, _HS.origHColor = "white", _HS.origSkin = "dark", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.tattoo = "$He has a pair of full sleeve tattoos.", _HS.custom.desc = "$He has many scars, and is skilled with plants.", _HS.career = "a shut-in">>
 <<run setEyeColor(_HS, "purple")>>
 <<set $heroSlaves.push(_HS)>>
 /*toned, snuff, fighter*/
 /*Increased health, added combatskill, bitchy and pierced ears, fixed tattoo and customdesc syntax, corrected skin color from 'white' to 'dark' -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Gwen", _HS.birthName = "Gwen", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 1, _HS.devotion = 60, _HS.race = "asian", _HS.origHColor = "dark", _HS.pubicHColor = "dark", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.face = 60, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "off", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.chastityVagina = 1, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has 'Use Backdoor' tattooed above $his vagina and, in tribal tattoos, 'Anal Slut' on $his back.", _HS.custom.desc = "$He wears a dog collar with lights that indicate $his arousal and was bought wearing a vaginal chastity belt.", _HS.height = 183>>
+<<set _HS.slaveName = "Gwen", _HS.birthName = "Gwen", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 1), _HS.devotion = 60, _HS.race = "asian", _HS.origHColor = "dark", _HS.pubicHColor = "dark", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.face = 60, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "off", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.chastityVagina = 1, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has 'Use Backdoor' tattooed above $his vagina and, in tribal tattoos, 'Anal Slut' on $his back.", _HS.custom.desc = "$He wears a dog collar with lights that indicate $his arousal and was bought wearing a vaginal chastity belt.", _HS.height = 183>>
 <<set $heroSlaves.push(_HS)>>
 /* set nipples to pierced, changed fetish from bisexual to submissive, increased anal skill, dunno how to handle all the techno-implants $his tits etc. have as they don't seem to be size-increasing-focused, lowered health */
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Asha", _HS.birthName = "Asha", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 60, _HS.weight = -20, _HS.nationality = "Russian", _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 170, _HS.hStyle = "floor length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1200, _HS.boobsImplant = 800, _HS.nipplesPiercing = 2, _HS.lactation = 1, _HS.lactationDuration = 2, _HS.butt = 6, _HS.buttImplant = 3, _HS.face = 15, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsImplant = 10, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has many girly tattoos.", _HS.custom.desc = "$He loves hair play.", _HS.navelPiercing = 1>>
+<<set _HS.slaveName = "Asha", _HS.birthName = "Asha", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 20), _HS.devotion = 60, _HS.weight = -20, _HS.nationality = "Russian", _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 170, _HS.hStyle = "floor length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1200, _HS.boobsImplant = 800, _HS.nipplesPiercing = 2, _HS.lactation = 1, _HS.lactationDuration = 2, _HS.butt = 6, _HS.buttImplant = 3, _HS.face = 15, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsImplant = 10, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has many girly tattoos.", _HS.custom.desc = "$He loves hair play.", _HS.navelPiercing = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*Reduced weight, increased face and faceimplant, added piercings, corrected tattoo and customdesc syntax -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Emily", _HS.birthName = "Emily", _HS.origin = "Before $he was made a slave, $he was a wealthy, popular honor student.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = -25, _HS.height = 155, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,100), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.desc = "$He has a short nose and is very intelligent.">>
+<<set _HS.slaveName = "Emily", _HS.birthName = "Emily", _HS.origin = "Before $he was made a slave, $he was a wealthy, popular honor student.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = -25, _HS.height = 155, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,100), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.desc = "$He has a short nose and is very intelligent.">>
 <<set $heroSlaves.push(_HS)>>
 /*Added origin, reduced age, fetish was 'arrogant', changed it to quirk, fixed customdesc syntax. -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Bitch", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = -20, _HS.devotion = -75, _HS.height = 155, _HS.eye.origColor = "dark", _HS.origHColor = "dark", _HS.origSkin = "pale", _HS.waist = -55, _HS.boobs = 300, _HS.butt = 5, _HS.lips = 35, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.oral = 35, _HS.intelligence = -60, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a heart shaped face and many scars.", _HS.faceShape = "cute", _HS.hips = 3, _HS.markings = "beauty">>
+<<set _HS.slaveName = "Bitch", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, -20), _HS.devotion = -75, _HS.height = 155, _HS.eye.origColor = "dark", _HS.origHColor = "dark", _HS.origSkin = "pale", _HS.waist = -55, _HS.boobs = 300, _HS.butt = 5, _HS.lips = 35, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.oral = 35, _HS.intelligence = -60, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a heart shaped face and many scars.", _HS.faceShape = "cute", _HS.hips = 3, _HS.markings = "beauty">>
 <<run setEyeColorFull(_HS, "", "almond-shaped", "", "both")>>
 <<set $heroSlaves.push(_HS)>>
 /*Fixed customdesc syntax, changed eye color, added piercings, increased waist -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Nala", _HS.birthName = "Nala", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 10, _HS.muscles = 20, _HS.height = 180, _HS.origHColor = "black", _HS.hStyle = "long and in a ponytail", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Nala", _HS.birthName = "Nala", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 10, _HS.muscles = 20, _HS.height = 180, _HS.origHColor = "black", _HS.hStyle = "long and in a ponytail", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*First slave that didn't need fixing -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Ervona", _HS.birthName = "Ervona", _HS.origin = "$He was groomed just for you and believes $himself to be madly in love with you.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 40, _HS.devotion = 100, _HS.height = 178, _HS.override_H_Color = 1, _HS.origHColor = "white", _HS.pubicHColor = "white", _HS.origSkin = "bronze", _HS.hLength = 25, _HS.hStyle = "chin length", _HS.boobs = 500, _HS.nipples = "inverted", _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.clitPiercing = 1, _HS.ovaries = 1, _HS.clothes = "attractive lingerie", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40>>
+<<set _HS.slaveName = "Ervona", _HS.birthName = "Ervona", _HS.origin = "$He was groomed just for you and believes $himself to be madly in love with you.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 40), _HS.devotion = 100, _HS.height = 178, _HS.override_H_Color = 1, _HS.origHColor = "white", _HS.pubicHColor = "white", _HS.origSkin = "bronze", _HS.hLength = 25, _HS.hStyle = "chin length", _HS.boobs = 500, _HS.nipples = "inverted", _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.clitPiercing = 1, _HS.ovaries = 1, _HS.clothes = "attractive lingerie", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40>>
 <<set $heroSlaves.push(_HS)>>
 /*love*/
 /*Added origin, removed it from customdesc. Increased health.*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Koko", _HS.birthName = "Koko", _HS.origin = "$He may originally be from an island nation.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 60, _HS.devotion = -25, _HS.height = 175, _HS.override_H_Color = 1, _HS.race = "asian", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "brown", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He is trim and fit.">>
+<<set _HS.slaveName = "Koko", _HS.birthName = "Koko", _HS.origin = "$He may originally be from an island nation.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 60), _HS.devotion = -25, _HS.height = 175, _HS.override_H_Color = 1, _HS.race = "asian", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "brown", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He is trim and fit.">>
 <<set $heroSlaves.push(_HS)>>
 /*genki*/
 /*Pierced ears, added origin, corrected customdesc syntax. -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Jasmine", _HS.birthName = "Jasmine", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 25, _HS.height = 175, _HS.origRace = "white", _HS.race = "black", _HS.eye.origColor = "blue-green", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.override_Skin = 1, _HS.origHColor = "fair blonde", _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.origSkin = "brown", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetish = "humiliation">>
+<<set _HS.slaveName = "Jasmine", _HS.birthName = "Jasmine", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 25, _HS.height = 175, _HS.origRace = "white", _HS.race = "black", _HS.eye.origColor = "blue-green", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.override_Skin = 1, _HS.origHColor = "fair blonde", _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.origSkin = "brown", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetish = "humiliation">>
 <<set $heroSlaves.push(_HS)>>
 /*Changed eyes -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Orena", _HS.birthName = "Orena", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = -90, _HS.override_H_Color = 1, _HS.race = "white", _HS.origHColor = "pink", _HS.pubicHColor = "pink", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 1400, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.nosePiercing = 1, _HS.attrXY = 40, _HS.fetish = "arrogant", _HS.fetishKnown = 1, _HS.sexualFlaw = "hates penetration">>
+<<set _HS.slaveName = "Orena", _HS.birthName = "Orena", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 20), _HS.devotion = -90, _HS.override_H_Color = 1, _HS.race = "white", _HS.origHColor = "pink", _HS.pubicHColor = "pink", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 1400, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.nosePiercing = 1, _HS.attrXY = 40, _HS.fetish = "arrogant", _HS.fetishKnown = 1, _HS.sexualFlaw = "hates penetration">>
 <<set $heroSlaves.push(_HS)>>
 /*hates sex*/
 /*Corrected hair color, added piercings, added 'hates penetration' -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Fatiah", _HS.birthName = "Fatiah", _HS.origin = "$He was taken as a slave by a Sultan, who presented $him as a gift to a surveyor.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 80, _HS.devotion = 45, _HS.weight = 20, _HS.height = 257, _HS.race = "middle eastern", _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "black and oily", _HS.eyebrowHColor = "black", _HS.pubicHColor = "black", _HS.underArmHColor = "black", _HS.origSkin = "brown", _HS.hStyle = "long, but shaved on the left side", _HS.boobs = 1200, _HS.butt = 4, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = -30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.attrKnown = 0, _HS.eyewear = "corrective glasses", _HS.clothes = "a niqab and abaya", _HS.hips = 2>>
+<<set _HS.slaveName = "Fatiah", _HS.birthName = "Fatiah", _HS.origin = "$He was taken as a slave by a Sultan, who presented $him as a gift to a surveyor.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 45, _HS.weight = 20, _HS.height = 257, _HS.race = "middle eastern", _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "black and oily", _HS.eyebrowHColor = "black", _HS.pubicHColor = "black", _HS.underArmHColor = "black", _HS.origSkin = "brown", _HS.hStyle = "long, but shaved on the left side", _HS.boobs = 1200, _HS.butt = 4, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = -30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.attrKnown = 0, _HS.eyewear = "corrective glasses", _HS.clothes = "a niqab and abaya", _HS.hips = 2>>
 <<run eyeSurgery(_HS, "both", "blur")>>
 <<set $heroSlaves.push(_HS)>>
 /*Increased height, reduced weight, reduced butt, fixed customdesc syntax -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "No Name", _HS.birthName = "No Name", _HS.origin = "A previous owner cultivated $his desire to escape slavery for his own amusement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 50, _HS.devotion = -100, _HS.height = 165, _HS.weight = -20, _HS.muscles = 20, _HS.race = "mixed race", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.pubicHStyle = "neat", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "oral", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is fit and athletic.", _HS.behavioralFlaw = "arrogant", _HS.hips = 1>>
+<<set _HS.slaveName = "No Name", _HS.birthName = "No Name", _HS.origin = "A previous owner cultivated $his desire to escape slavery for his own amusement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 50), _HS.devotion = -100, _HS.height = 165, _HS.weight = -20, _HS.muscles = 20, _HS.race = "mixed race", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.pubicHStyle = "neat", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "oral", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is fit and athletic.", _HS.behavioralFlaw = "arrogant", _HS.hips = 1>>
 <<set $heroSlaves.push(_HS)>>
 *//*hypno-anal/cum*/
 /*Reduced weight, changed eyes, corrected customdesc syntax, added origin, increased rebelliousness, changed clitsetting to oral. -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Sara", _HS.birthName = "Sara", _HS.origin = "$He sold $himself into slavery after a pregnancy scare, desiring to give up control of $his life to someone better suited to running it.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 40, _HS.devotion = 60, _HS.height = 155, _HS.nationality = "Mexican", _HS.race = "latina", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "dark red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "masochist", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has $his medical allergies tattooed around $his wrist.", _HS.custom.desc = "$He has either a masochistic streak, a self-harm habit, or both.">>
+<<set _HS.slaveName = "Sara", _HS.birthName = "Sara", _HS.origin = "$He sold $himself into slavery after a pregnancy scare, desiring to give up control of $his life to someone better suited to running it.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 40), _HS.devotion = 60, _HS.height = 155, _HS.nationality = "Mexican", _HS.race = "latina", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "dark red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "masochist", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has $his medical allergies tattooed around $his wrist.", _HS.custom.desc = "$He has either a masochistic streak, a self-harm habit, or both.">>
 <<set $heroSlaves.push(_HS)>>
 /*likes pain*/
 /*Corrected tattoo syntax, added origin and customdesc, increased health -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Falcon", _HS.birthName = "Jamie", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 25, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has an implanted GPS tracker to find $him in case $his habit of stalking pretty girls gets the better of $him.">>
+<<set _HS.slaveName = "Falcon", _HS.birthName = "Jamie", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 20), _HS.devotion = 25, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has an implanted GPS tracker to find $him in case $his habit of stalking pretty girls gets the better of $him.">>
 <<set $heroSlaves.push(_HS)>>
 /*proactive stalker hypnosis masseuse*/
 /*Corrected birthname (was 'Jasmine'), changed eye color, added customdesc -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Beatrice (No. 525)", _HS.birthName = "Beatrice", _HS.origin = "$He comes from old money and sold $himself into slavery to satisfy $his obsession with the practice, believing $his family would buy $him back out of slavery later.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 30, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue-green", _HS.override_H_Color = 1, _HS.origHColor = "red", _HS.hColor = "bright red", _HS.origSkin = "pure white", _HS.hLength = 80, _HS.hStyle = "long and wavy, and down past $his ass", _HS.waist = -55, _HS.boobs = 800, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a fine, intricate vine-like tattoo around $his right ankle.">>
+<<set _HS.slaveName = "Beatrice (No. 525)", _HS.birthName = "Beatrice", _HS.origin = "$He comes from old money and sold $himself into slavery to satisfy $his obsession with the practice, believing $his family would buy $him back out of slavery later.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 20), _HS.devotion = 30, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue-green", _HS.override_H_Color = 1, _HS.origHColor = "red", _HS.hColor = "bright red", _HS.origSkin = "pure white", _HS.hLength = 80, _HS.hStyle = "long and wavy, and down past $his ass", _HS.waist = -55, _HS.boobs = 800, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a fine, intricate vine-like tattoo around $his right ankle.">>
 <<set $heroSlaves.push(_HS)>>
 /*contraception but breeder naturally, well trained*/
 /*Fetish was 'arrogant', changed it to flaw. Added origin, whore and entertainskill. Changed eye color, corrected tattoo syntax, pierced ears, reduced weight -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Yuuki", _HS.birthName = "Yuuki", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 45, _HS.height = 145, _HS.race = "asian", _HS.override_Eye_Color = 1, _HS.override_H_Color = 1, _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "fair", _HS.hStyle = "long and curly", _HS.waist = -55, _HS.boobs = 1000, _HS.butt = 5, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 100, _HS.skill.entertainment = 35, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.sexualFlaw = "crude ">>
+<<set _HS.slaveName = "Yuuki", _HS.birthName = "Yuuki", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 45, _HS.height = 145, _HS.race = "asian", _HS.override_Eye_Color = 1, _HS.override_H_Color = 1, _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "fair", _HS.hStyle = "long and curly", _HS.waist = -55, _HS.boobs = 1000, _HS.butt = 5, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 100, _HS.skill.entertainment = 35, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.sexualFlaw = "crude ">>
 <<set $heroSlaves.push(_HS)>>
 /*mischievous tease*/
 /*Reduced height, added entertainskill, added bitchy, changed eyes -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Elisa", _HS.birthName = "Elisa", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -55, _HS.muscles = 20, _HS.height = 145, _HS.race = "white", _HS.eye.origColor = "bright blue", _HS.origHColor = "white-blonde", _HS.pubicHColor = "white-blonde", _HS.origSkin = "extremely pale", _HS.hStyle = "in a long braid", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 4, _HS.face = 55, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration", _HS.custom.desc = "An iron-willed, recently captured figure of a prominent anti-Free City guerrilla party, $he still clings strongly to traditional beliefs on Man's natural good, economic restriction, and monogamy. Excitable, girly, and sweet in comparison to $his natural brother, Martin, $he has a lovely singing voice. $He prays quite often, if allowed to.", _HS.mother = -9997, _HS.father = -9996>>
+<<set _HS.slaveName = "Elisa", _HS.birthName = "Elisa", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = -55, _HS.muscles = 20, _HS.height = 145, _HS.race = "white", _HS.eye.origColor = "bright blue", _HS.origHColor = "white-blonde", _HS.pubicHColor = "white-blonde", _HS.origSkin = "extremely pale", _HS.hStyle = "in a long braid", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 4, _HS.face = 55, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration", _HS.custom.desc = "An iron-willed, recently captured figure of a prominent anti-Free City guerrilla party, $he still clings strongly to traditional beliefs on Man's natural good, economic restriction, and monogamy. Excitable, girly, and sweet in comparison to $his natural brother, Martin, $he has a lovely singing voice. $He prays quite often, if allowed to.", _HS.mother = -9997, _HS.father = -9996>>
 <<set $heroSlaves.push(_HS)>>
 /*also hates pen*/
 /*martin's sibling*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Yvonne", _HS.birthName = "Yvonne", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health = 20, _HS.devotion = 100, _HS.height = 190, _HS.eye.origColor = "hazel", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "light", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 700, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.face = 55, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.attrXY = 40, _HS.fetish = "pregnancy">>
+<<set _HS.slaveName = "Yvonne", _HS.birthName = "Yvonne", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, setHealth(_HS, 20), _HS.devotion = 100, _HS.height = 190, _HS.eye.origColor = "hazel", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "light", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 700, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.face = 55, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.attrXY = 40, _HS.fetish = "pregnancy">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Terminatrix' Heaven", _HS.birthName = "Gabrielle", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 80, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "brown", _HS.origSkin = "black", _HS.hLength = 5, _HS.hStyle = "very short and a poor emulation of a military cut", _HS.boobs = 250, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.buttTat = "tribal patterns", _HS.lipsPiercing = 1, _HS.lipsTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "tribal patterns", _HS.clit = 2, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.navelPiercing = 1, _HS.shouldersTat = "tribal patterns", _HS.armsTat = "tribal patterns", _HS.legsTat = "tribal patterns", _HS.stampTat = "tribal patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 35, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a comfortable bodysuit", _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "Amongst the scars that decorate $his body, one in the shape of a heart can be made out on the top of $his right hand.">>
+<<set _HS.slaveName = "'Terminatrix' Heaven", _HS.birthName = "Gabrielle", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "brown", _HS.origSkin = "black", _HS.hLength = 5, _HS.hStyle = "very short and a poor emulation of a military cut", _HS.boobs = 250, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.buttTat = "tribal patterns", _HS.lipsPiercing = 1, _HS.lipsTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "tribal patterns", _HS.clit = 2, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.navelPiercing = 1, _HS.shouldersTat = "tribal patterns", _HS.armsTat = "tribal patterns", _HS.legsTat = "tribal patterns", _HS.stampTat = "tribal patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 35, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a comfortable bodysuit", _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "Amongst the scars that decorate $his body, one in the shape of a heart can be made out on the top of $his right hand.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Lilliana", _HS.birthName = "Zuzanna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health = 13, _HS.devotion = 100, _HS.muscles = 100, _HS.height = 190, _HS.eye.origColor = "white", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "white with red stripes", _HS.eyebrowHColor = "white", _HS.pubicHColor = "white", _HS.underArmHColor = "white", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 100, _HS.hStyle = "back in a large ass length braid", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.face = 15, _HS.faceImplant = 65, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 1, _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "nice business attire", _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Lilliana", _HS.birthName = "Zuzanna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, setHealth(_HS, 13), _HS.devotion = 100, _HS.muscles = 100, _HS.height = 190, _HS.eye.origColor = "white", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "white with red stripes", _HS.eyebrowHColor = "white", _HS.pubicHColor = "white", _HS.underArmHColor = "white", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 100, _HS.hStyle = "back in a large ass length braid", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.face = 15, _HS.faceImplant = 65, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 1, _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "nice business attire", _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1>>
 <<run eyeSurgery(_HS, "both", "blind")>>
 <<set $heroSlaves.push(_HS)>>
 /*Blind*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Jenna", _HS.birthName = "Jenna", _HS.ID = _i++, _HS.assignment = "please you", _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 30, _HS.devotion = 60, _HS.height = 145, _HS.origSkin = "pale", _HS.eye.origColor = "violet", _HS.origHColor = "red-blonde", _HS.pubicHColor = "red-blonde", _HS.hStyle = "waist-length", _HS.waist = -55, _HS.boobs = 650, _HS.butt = 6, _HS.face = 55, _HS.lips = 35, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.ovaries = 1, _HS.skill.oral = 100, _HS.clothes = "a string bikini", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$His name is tattooed in flowing cursive script across $his upper back. ">>
+<<set _HS.slaveName = "Jenna", _HS.birthName = "Jenna", _HS.ID = _i++, _HS.assignment = "please you", _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 30), _HS.devotion = 60, _HS.height = 145, _HS.origSkin = "pale", _HS.eye.origColor = "violet", _HS.origHColor = "red-blonde", _HS.pubicHColor = "red-blonde", _HS.hStyle = "waist-length", _HS.waist = -55, _HS.boobs = 650, _HS.butt = 6, _HS.face = 55, _HS.lips = 35, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.ovaries = 1, _HS.skill.oral = 100, _HS.clothes = "a string bikini", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$His name is tattooed in flowing cursive script across $his upper back. ">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Asspussy' Miss Julie O", _HS.birthName = "Leah", _HS.origin = "$He was sentenced to enslavement as a punishment for fraud and theft.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health = 70, _HS.devotion = 100, _HS.height = 155, _HS.markings = "none", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 40, _HS.hStyle = "fashionable for a Free Cities 3rd Grade Teacher, up in a tight bun", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "anal", _HS.boobs = 650, _HS.boobsImplant = 200, _HS.nipples = "huge", _HS.butt = 3, _HS.face = 15, _HS.faceImplant = 65, _HS.anus = 1, _HS.ovaries = 1, _HS.anusPiercing = 2, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 2, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.clothes = "nice business attire", _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = -40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$His pale skin is lightly freckled, and $his nipples are dark tan. $He used to be sexually repressed, and used to hate anal sex.">>
+<<set _HS.slaveName = "'Asspussy' Miss Julie O", _HS.birthName = "Leah", _HS.origin = "$He was sentenced to enslavement as a punishment for fraud and theft.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, setHealth(_HS, 70), _HS.devotion = 100, _HS.height = 155, _HS.markings = "none", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 40, _HS.hStyle = "fashionable for a Free Cities 3rd Grade Teacher, up in a tight bun", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "anal", _HS.boobs = 650, _HS.boobsImplant = 200, _HS.nipples = "huge", _HS.butt = 3, _HS.face = 15, _HS.faceImplant = 65, _HS.anus = 1, _HS.ovaries = 1, _HS.anusPiercing = 2, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 2, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.clothes = "nice business attire", _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = -40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$His pale skin is lightly freckled, and $his nipples are dark tan. $He used to be sexually repressed, and used to hate anal sex.">>
 <<set $heroSlaves.push(_HS)>>
 /*huge nips*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Golden Cobra", _HS.birthName = "Auyala", _HS.origin = "$He was captured from West Central Africa.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 30, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.nationality = "Central African", _HS.race = "black", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.eye.origColor = "green", _HS.origHColor = "golden blonde with copper streaks", _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.origSkin = "brown", _HS.hLength = 35, _HS.hStyle = "shoulder-length, plaited in cornrow braids; a single thin braid adorned with several colorful feathers and fearsome fang of unknown origin is hanging aside $his left eye", _HS.pubicHStyle = "in a strip", _HS.waist = -55, _HS.boobs = 1450, _HS.nipplesPiercing = 2, _HS.butt = 5, _HS.lips = 55, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clit = 2, _HS.clitPiercing = 2, _HS.clitSetting = "lesbian", _HS.anus = 2, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.clothes = "slutty jewelry", _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has tattoo of cobra wrapping around $his neck, which head with wide open maw and inflated hood tattooed right at $his throat.", _HS.custom.desc = "$He has a streak of ritual scars resembling some very complex snake skin pattern running down $his spine from nape to tail-bone.">>
+<<set _HS.slaveName = "Golden Cobra", _HS.birthName = "Auyala", _HS.origin = "$He was captured from West Central Africa.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 30), _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.nationality = "Central African", _HS.race = "black", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.eye.origColor = "green", _HS.origHColor = "golden blonde with copper streaks", _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.origSkin = "brown", _HS.hLength = 35, _HS.hStyle = "shoulder-length, plaited in cornrow braids; a single thin braid adorned with several colorful feathers and fearsome fang of unknown origin is hanging aside $his left eye", _HS.pubicHStyle = "in a strip", _HS.waist = -55, _HS.boobs = 1450, _HS.nipplesPiercing = 2, _HS.butt = 5, _HS.lips = 55, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clit = 2, _HS.clitPiercing = 2, _HS.clitSetting = "lesbian", _HS.anus = 2, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.clothes = "slutty jewelry", _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has tattoo of cobra wrapping around $his neck, which head with wide open maw and inflated hood tattooed right at $his throat.", _HS.custom.desc = "$He has a streak of ritual scars resembling some very complex snake skin pattern running down $his spine from nape to tail-bone.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Top' Lillium", _HS.birthName = "Sarah", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health = 90, _HS.devotion = 100, _HS.muscles = 20, _HS.height = 190, _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.override_H_Color = 1, _HS.hColor = "deep red", _HS.origSkin = "fair", _HS.hLength = 20, _HS.hStyle = "short and pleasantly frames $his face", _HS.waist = -55, _HS.boobs = 900, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.clothes = "nice business attire", _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a small, grinning harlequin tattoo on $his inner thigh.", _HS.custom.desc = "In place of $his left hand's pinkie finger is a large pink scar that crosses the entire back of $his hand.">>
+<<set _HS.slaveName = "'Top' Lillium", _HS.birthName = "Sarah", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, setHealth(_HS, 90, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 20, _HS.height = 190, _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.override_H_Color = 1, _HS.hColor = "deep red", _HS.origSkin = "fair", _HS.hLength = 20, _HS.hStyle = "short and pleasantly frames $his face", _HS.waist = -55, _HS.boobs = 900, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.clothes = "nice business attire", _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a small, grinning harlequin tattoo on $his inner thigh.", _HS.custom.desc = "In place of $his left hand's pinkie finger is a large pink scar that crosses the entire back of $his hand.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Cammy", _HS.birthName = "Viktoriya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = 80, _HS.devotion = 70, _HS.muscles = 75, _HS.height = 145, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hStyle = "tied back into two long braids", _HS.boobs = 800, _HS.butt = 2.5, _HS.face = 15, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.custom.desc = "$He has a long horizontal scar on $his left cheek.">>
+<<set _HS.slaveName = "Cammy", _HS.birthName = "Viktoriya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 70, _HS.muscles = 75, _HS.height = 145, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hStyle = "tied back into two long braids", _HS.boobs = 800, _HS.butt = 2.5, _HS.face = 15, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.custom.desc = "$He has a long horizontal scar on $his left cheek.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Sheena", _HS.birthName = "Penelope", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 80, _HS.devotion = 90, _HS.height = 155, _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "black with deep red highlights", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "long and disheveled", _HS.waist = -55, _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lipsPiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.clitSetting = "anal", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 2, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.navelPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a slutty outfit", _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has been heavily tattooed, with $his chest, thighs, and both arms covered in various punk-style pieces. The biggest and most impressive piece is the large logo of a legendary late 20th century punk band.">>
+<<set _HS.slaveName = "Sheena", _HS.birthName = "Penelope", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 90, _HS.height = 155, _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "black with deep red highlights", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "long and disheveled", _HS.waist = -55, _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lipsPiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.clitSetting = "anal", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 2, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.navelPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a slutty outfit", _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has been heavily tattooed, with $his chest, thighs, and both arms covered in various punk-style pieces. The biggest and most impressive piece is the large logo of a legendary late 20th century punk band.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Funbags' Young", _HS.birthName = "Young", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = -10, _HS.devotion = 90, _HS.height = 175, _HS.nationality = "Korean", _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 10, _HS.waist = -55, _HS.boobs = 3550, _HS.boobsImplant = 3000, _HS.nipplesPiercing = 1, _HS.areolae = 3, _HS.boobsTat = "degradation", _HS.butt = 2, _HS.face = 15, _HS.lipsPiercing = 2, _HS.lipsTat = "degradation", _HS.tonguePiercing = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.brand["chest"] = "SLUT", _HS.skill.oral = 100, _HS.aphrodisiacs = 1, _HS.addict = 22, _HS.collar = "shock punishment", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "'Funbags' Young", _HS.birthName = "Young", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, -10), _HS.devotion = 90, _HS.height = 175, _HS.nationality = "Korean", _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 10, _HS.waist = -55, _HS.boobs = 3550, _HS.boobsImplant = 3000, _HS.nipplesPiercing = 1, _HS.areolae = 3, _HS.boobsTat = "degradation", _HS.butt = 2, _HS.face = 15, _HS.lipsPiercing = 2, _HS.lipsTat = "degradation", _HS.tonguePiercing = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.brand["chest"] = "SLUT", _HS.skill.oral = 100, _HS.aphrodisiacs = 1, _HS.addict = 22, _HS.collar = "shock punishment", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Sakura", _HS.birthName = "Sakura", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 100, _HS.devotion = 100, _HS.muscles = 20, _HS.race = "asian", _HS.origSkin = "dark", _HS.hLength = 25, _HS.hStyle = "short and held back by a white bandana", _HS.boobs = 600, _HS.butt = 4, _HS.faceImplant = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "humiliation", _HS.anus = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.clothes = "a slutty outfit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.custom.desc = "$He is an enthusiastic high school graduate, eager to make $his teacher proud by becoming the greatest slave known to any owner.", _HS.career = "a student">>
+<<set _HS.slaveName = "Sakura", _HS.birthName = "Sakura", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 20, _HS.race = "asian", _HS.origSkin = "dark", _HS.hLength = 25, _HS.hStyle = "short and held back by a white bandana", _HS.boobs = 600, _HS.butt = 4, _HS.faceImplant = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "humiliation", _HS.anus = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.clothes = "a slutty outfit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.custom.desc = "$He is an enthusiastic high school graduate, eager to make $his teacher proud by becoming the greatest slave known to any owner.", _HS.career = "a student">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Miss Maree", _HS.birthName = "Tina", _HS.origin = "A former headmistress, $he was sentenced to slavery after $he was caught training $his students to be lesbian trophy slaves.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health = 100, _HS.devotion = -50, _HS.weight = 20, _HS.height = 155, _HS.nationality = "American", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "in a large bun", _HS.pubicHStyle = "in a strip", _HS.waist = -55, _HS.boobs = 1500, _HS.areolae = 3, _HS.boobsTat = "advertisements", _HS.butt = 6, _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.vaginaLube = 1, _HS.bellyAccessory = "a corset", _HS.ovaries = 1, _HS.anusTat = "flowers", _HS.earPiercing = 1, _HS.stampTat = "scenes", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 0, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He absolutely detests men.", _HS.career = "a principal">>
+<<set _HS.slaveName = "Miss Maree", _HS.birthName = "Tina", _HS.origin = "A former headmistress, $he was sentenced to slavery after $he was caught training $his students to be lesbian trophy slaves.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = -50, _HS.weight = 20, _HS.height = 155, _HS.nationality = "American", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "in a large bun", _HS.pubicHStyle = "in a strip", _HS.waist = -55, _HS.boobs = 1500, _HS.areolae = 3, _HS.boobsTat = "advertisements", _HS.butt = 6, _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.vaginaLube = 1, _HS.bellyAccessory = "a corset", _HS.ovaries = 1, _HS.anusTat = "flowers", _HS.earPiercing = 1, _HS.stampTat = "scenes", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 0, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He absolutely detests men.", _HS.career = "a principal">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Caroline", _HS.birthName = "Carl", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He was once a rising Free Cities politician who argued for compulsory female enslavement, but $he became an addict, fell into debt, and was subsequently enslaved.", _HS.birthWeek = random(0,51), _HS.genes = "XY", _HS.actualAge = 44, _HS.physicalAge = 44, _HS.visualAge = 44, _HS.ovaryAge = 44, _HS.health = 60, _HS.devotion = 90, _HS.height = 145, _HS.heightImplant = -1, _HS.race = "white", _HS.nationality = "French", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 70, _HS.hStyle = "ass-length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1100, _HS.boobsImplant = 400, _HS.nipplesPiercing = 1, _HS.areolae = 1, _HS.butt = 4, _HS.buttImplant = 2, _HS.face = 55, _HS.faceImplant = 65, _HS.lips = 55, _HS.lipsImplant = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.preg = -2, _HS.anus = 2, _HS.anusTat = "bleached", _HS.makeup = 3, _HS.nails = 1, _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.legsTat = "degradation", _HS.stampTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.skill.entertainment = 35, _HS.drugs = "breast injections", _HS.addict = 1, _HS.clothes = "slutty jewelry", _HS.collar = "tight steel", _HS.intelligence = -90, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a tattoo down $his left arm, which reads 'Once a tall, muscular, handsome man with a big dick and big balls.'", _HS.custom.desc = "Since becoming a slave $he has been turned into a little bimbo.">>
+<<set _HS.slaveName = "Caroline", _HS.birthName = "Carl", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He was once a rising Free Cities politician who argued for compulsory female enslavement, but $he became an addict, fell into debt, and was subsequently enslaved.", _HS.birthWeek = random(0,51), _HS.genes = "XY", _HS.actualAge = 44, _HS.physicalAge = 44, _HS.visualAge = 44, _HS.ovaryAge = 44, setHealth(_HS, 60), _HS.devotion = 90, _HS.height = 145, _HS.heightImplant = -1, _HS.race = "white", _HS.nationality = "French", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 70, _HS.hStyle = "ass-length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1100, _HS.boobsImplant = 400, _HS.nipplesPiercing = 1, _HS.areolae = 1, _HS.butt = 4, _HS.buttImplant = 2, _HS.face = 55, _HS.faceImplant = 65, _HS.lips = 55, _HS.lipsImplant = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.preg = -2, _HS.anus = 2, _HS.anusTat = "bleached", _HS.makeup = 3, _HS.nails = 1, _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.legsTat = "degradation", _HS.stampTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.skill.entertainment = 35, _HS.drugs = "breast injections", _HS.addict = 1, _HS.clothes = "slutty jewelry", _HS.collar = "tight steel", _HS.intelligence = -90, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a tattoo down $his left arm, which reads 'Once a tall, muscular, handsome man with a big dick and big balls.'", _HS.custom.desc = "Since becoming a slave $he has been turned into a little bimbo.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<if $seePreg != 0>>
 	<<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-	<<set _HS.slaveName = "'Milkmaid' Megan", _HS.birthName = "Megan", _HS.origin = "$He was sold to you from the public slave market, and was probably kidnapped or otherwise forced into slavery.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, _HS.health = 100, _HS.devotion = 100, _HS.nationality = "American", _HS.origSkin = "light", _HS.hStyle = "long", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 1350, _HS.lactation = 1, _HS.lactationDuration = 4, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.preg = 27, _HS.pregType = 1, _HS.pregWeek = 27, _HS.pregKnown = 1, _HS.belly = 5000, _HS.bellyPreg = 5000, _HS.counter.births = 1, _HS.counter.birthsTotal = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.brand["right buttock"] = "SLAVE", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 35, _HS.skill.combat = 0, _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.face = 0, _HS.intelligence = 0>>
+	<<set _HS.slaveName = "'Milkmaid' Megan", _HS.birthName = "Megan", _HS.origin = "$He was sold to you from the public slave market, and was probably kidnapped or otherwise forced into slavery.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.nationality = "American", _HS.origSkin = "light", _HS.hStyle = "long", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 1350, _HS.lactation = 1, _HS.lactationDuration = 4, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.preg = 27, _HS.pregType = 1, _HS.pregWeek = 27, _HS.pregKnown = 1, _HS.belly = 5000, _HS.bellyPreg = 5000, _HS.counter.births = 1, _HS.counter.birthsTotal = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.brand["right buttock"] = "SLAVE", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 35, _HS.skill.combat = 0, _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.face = 0, _HS.intelligence = 0>>
 	<<set $heroSlaves.push(_HS)>>
 <</if>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Horsepussy", _HS.birthName = "Amber", _HS.origin = "$He was sold to you from the public slave market, and was probably kidnapped or otherwise forced into slavery.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 35, _HS.physicalAge = 35, _HS.visualAge = 35, _HS.ovaryAge = 35, _HS.health = 80, _HS.devotion = 55.7, _HS.height = 170, _HS.race = "white", _HS.nationality = "American", _HS.eye.origColor = "blue", _HS.origSkin = "pale", _HS.hLength = 10, _HS.boobs = 500, _HS.butt = 5, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.clitPiercing = 3, _HS.clitSetting = "vanilla", _HS.anus = 3, _HS.ovaries = 1, _HS.anusPiercing = 1, _HS.makeup = 1, _HS.brand["right buttock"] = "SLAVE", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 35, _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = 96, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$His nickname, 'Horsepussy,' is tattooed on $his forehead.", _HS.custom.desc = "$His pussy has been extensively surgically altered. $His labia are large and puffy, sticking out nearly an inch from $his crotch. $His cunt is exquisitely pink at the center, but $his large labia are dark at the edges, almost black.", _HS.labia = 3>>
+<<set _HS.slaveName = "Horsepussy", _HS.birthName = "Amber", _HS.origin = "$He was sold to you from the public slave market, and was probably kidnapped or otherwise forced into slavery.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 35, _HS.physicalAge = 35, _HS.visualAge = 35, _HS.ovaryAge = 35, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 55.7, _HS.height = 170, _HS.race = "white", _HS.nationality = "American", _HS.eye.origColor = "blue", _HS.origSkin = "pale", _HS.hLength = 10, _HS.boobs = 500, _HS.butt = 5, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.clitPiercing = 3, _HS.clitSetting = "vanilla", _HS.anus = 3, _HS.ovaries = 1, _HS.anusPiercing = 1, _HS.makeup = 1, _HS.brand["right buttock"] = "SLAVE", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 35, _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = 96, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$His nickname, 'Horsepussy,' is tattooed on $his forehead.", _HS.custom.desc = "$His pussy has been extensively surgically altered. $His labia are large and puffy, sticking out nearly an inch from $his crotch. $His cunt is exquisitely pink at the center, but $his large labia are dark at the edges, almost black.", _HS.labia = 3>>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Sakura", _HS.birthName = "Mei", _HS.origin = "$He is the winner of a martial arts slave tournament. You won $him in a bet.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 80, _HS.devotion = 40, _HS.muscles = 20, _HS.nationality = "Japanese", _HS.race = "asian", _HS.origHColor = "black", _HS.hStyle = "long, tied into a neat ponytail", _HS.boobs = 300, _HS.butt = 1, _HS.face = 15, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.combat = 1, _HS.clothes = "choosing her own clothes", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a tattoo of falling cherry petals on $his back, starting at $his shoulder blades, down to $his butt.", _HS.custom.desc = "$He has a small scar on the back of $his right hand. $He was injured while participating in the finals of a national kendo tournament, and decided to keep the scar to remind $him of $his achievements.", _HS.career = "a kunoichi">>
+<<set _HS.slaveName = "Sakura", _HS.birthName = "Mei", _HS.origin = "$He is the winner of a martial arts slave tournament. You won $him in a bet.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 40, _HS.muscles = 20, _HS.nationality = "Japanese", _HS.race = "asian", _HS.origHColor = "black", _HS.hStyle = "long, tied into a neat ponytail", _HS.boobs = 300, _HS.butt = 1, _HS.face = 15, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.combat = 1, _HS.clothes = "choosing her own clothes", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a tattoo of falling cherry petals on $his back, starting at $his shoulder blades, down to $his butt.", _HS.custom.desc = "$He has a small scar on the back of $his right hand. $He was injured while participating in the finals of a national kendo tournament, and decided to keep the scar to remind $him of $his achievements.", _HS.career = "a kunoichi">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Zhao Li", _HS.birthName = "Zhao Li", _HS.origin = "$He was caught and enslaved while working undercover.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 35, _HS.physicalAge = 35, _HS.visualAge = 35, _HS.ovaryAge = 35, _HS.health = 100, _HS.devotion = 100, _HS.muscles = 100, _HS.height = 175, _HS.race = "asian", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hStyle = "long, but tied into Chinese buns.", _HS.pubicHStyle = "in a strip", _HS.boobs = 755, _HS.butt = 4, _HS.face = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.anus = 2, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishStrength = 100, _HS.fetishKnown = 1, _HS.custom.desc = "$He was once a skilled police investigator. Even at $his age, $his long, enticing legs are proof that $he still retains $his natural strength and beauty.", _HS.career = "a police detective">>
+<<set _HS.slaveName = "Zhao Li", _HS.birthName = "Zhao Li", _HS.origin = "$He was caught and enslaved while working undercover.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 35, _HS.physicalAge = 35, _HS.visualAge = 35, _HS.ovaryAge = 35, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 100, _HS.height = 175, _HS.race = "asian", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hStyle = "long, but tied into Chinese buns.", _HS.pubicHStyle = "in a strip", _HS.boobs = 755, _HS.butt = 4, _HS.face = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.anus = 2, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishStrength = 100, _HS.fetishKnown = 1, _HS.custom.desc = "$He was once a skilled police investigator. Even at $his age, $his long, enticing legs are proof that $he still retains $his natural strength and beauty.", _HS.career = "a police detective">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Virago' Kissa", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "In spite of the great demand for $his kind, $he has apparently eluded enslavement until recently.", _HS.career = "a wanderer", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a natural albino.", _HS.birthWeek = random(0,51), _HS.health = 100, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.nationality = "Ugandan", _HS.race = "black", _HS.hLength = 100, _HS.hStyle = "extremely long and bushy", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 600, _HS.face = 55, _HS.lips = 35, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "oral", _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.skill.oral = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 100, _HS.skill.combat = 3, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.collar = "pretty jewelry", _HS.shoes = "flats", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.geneticQuirks = {albinism: 2}, _HS.albinismOverride = {eyeColor: "pale grey", hColor: "white", skin: "extremely pale"}, _HS.custom.tattoo = "$His entire body is tattooed with a detailed map of $his arteries which, combined with $his albinism, gives $him a quasi-translucent quality.", _HS.custom.desc = "$His eyes are unsettling; though $his irises are a pale grey color, in some lights the whole eye takes on a red cast.">>
+<<set _HS.slaveName = "'Virago' Kissa", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "In spite of the great demand for $his kind, $he has apparently eluded enslavement until recently.", _HS.career = "a wanderer", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a natural albino.", _HS.birthWeek = random(0,51), setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.nationality = "Ugandan", _HS.race = "black", _HS.hLength = 100, _HS.hStyle = "extremely long and bushy", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 600, _HS.face = 55, _HS.lips = 35, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "oral", _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.skill.oral = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 100, _HS.skill.combat = 3, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.collar = "pretty jewelry", _HS.shoes = "flats", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.geneticQuirks = {albinism: 2}, _HS.albinismOverride = {eyeColor: "pale grey", hColor: "white", skin: "extremely pale"}, _HS.custom.tattoo = "$His entire body is tattooed with a detailed map of $his arteries which, combined with $his albinism, gives $him a quasi-translucent quality.", _HS.custom.desc = "$His eyes are unsettling; though $his irises are a pale grey color, in some lights the whole eye takes on a red cast.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Annabelle", _HS.birthName = "Annabelle", _HS.origin = "$He came to be a slave not long after fleeing farm life for the Free Cities.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -65, _HS.height = 155, _HS.nationality = "American", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hStyle = "braided into pigtails", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 4, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.whoring = 15, _HS.attrXY = 40, _HS.behavioralFlaw = "hates women", _HS.custom.desc = "The pale skin within $his tan lines is lightly freckled.", _HS.markings = "freckles", _HS.career = "a farmer">>
+<<set _HS.slaveName = "Annabelle", _HS.birthName = "Annabelle", _HS.origin = "$He came to be a slave not long after fleeing farm life for the Free Cities.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = -65, _HS.height = 155, _HS.nationality = "American", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hStyle = "braided into pigtails", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 4, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.whoring = 15, _HS.attrXY = 40, _HS.behavioralFlaw = "hates women", _HS.custom.desc = "The pale skin within $his tan lines is lightly freckled.", _HS.markings = "freckles", _HS.career = "a farmer">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Vampire' Elvira", _HS.birthName = "Elvira", _HS.career = "a service worker", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health = 90, _HS.devotion = 100, _HS.height = 145, _HS.nationality = "Swedish", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 85, _HS.hStyle = "ass-length", _HS.waist = -55, _HS.boobs = 650, _HS.boobsImplant = 200, _HS.nipplesPiercing = 2, _HS.butt = 3, _HS.buttImplant = 1, _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.tonguePiercing = 1, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.brand["right buttock"] = "your initials", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 15, _HS.rules.living = "luxurious", _HS.clothes = "choosing her own clothes", _HS.collar = "heavy gold", _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "'Vampire' Elvira", _HS.birthName = "Elvira", _HS.career = "a service worker", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, setHealth(_HS, 90, 0, 0, 0), _HS.devotion = 100, _HS.height = 145, _HS.nationality = "Swedish", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 85, _HS.hStyle = "ass-length", _HS.waist = -55, _HS.boobs = 650, _HS.boobsImplant = 200, _HS.nipplesPiercing = 2, _HS.butt = 3, _HS.buttImplant = 1, _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.tonguePiercing = 1, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.brand["right buttock"] = "your initials", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 15, _HS.rules.living = "luxurious", _HS.clothes = "choosing her own clothes", _HS.collar = "heavy gold", _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Creamy' Mayu", _HS.birthName = "Mayu", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 100, _HS.devotion = 100, _HS.weight = 20, _HS.height = 190, _HS.nationality = "Japanese", _HS.race = "asian", _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 7500, _HS.nipples = "huge", _HS.areolae = 3, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 7, _HS.buttTat = "bovine patterns", _HS.face = 15, _HS.faceImplant = 65, _HS.lips = 35, _HS.lipsTat = "bovine patterns", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaTat = "bovine patterns", _HS.counter.births = 1, _HS.counter.birthsTotal = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bovine patterns", _HS.earPiercing = 1, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.rules.relationship = "permissive", _HS.clothes = "a nice maid outfit", _HS.collar = "leather with cowbell", _HS.shoes = "flats", _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.desc = "$He is quite sweaty, often soaking though any clothing $he is wearing.">>
+<<set _HS.slaveName = "'Creamy' Mayu", _HS.birthName = "Mayu", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.weight = 20, _HS.height = 190, _HS.nationality = "Japanese", _HS.race = "asian", _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 7500, _HS.nipples = "huge", _HS.areolae = 3, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 7, _HS.buttTat = "bovine patterns", _HS.face = 15, _HS.faceImplant = 65, _HS.lips = 35, _HS.lipsTat = "bovine patterns", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaTat = "bovine patterns", _HS.counter.births = 1, _HS.counter.birthsTotal = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bovine patterns", _HS.earPiercing = 1, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.rules.relationship = "permissive", _HS.clothes = "a nice maid outfit", _HS.collar = "leather with cowbell", _HS.shoes = "flats", _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.desc = "$He is quite sweaty, often soaking though any clothing $he is wearing.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Submissive' Cindy", _HS.birthName = "Cindy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 100, _HS.devotion = 100, _HS.muscles = 20, _HS.height = 175, _HS.nationality = "Indonesian", _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.custom.tattoo = "$He has a barcode tattooed on the top of $his head.", _HS.pubicHStyle = "bushy", _HS.boobs = 600, _HS.nipplesPiercing = 1, _HS.boobsTat = "tribal patterns", _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsPiercing = 1, _HS.lipsTat = "tribal patterns", _HS.tonguePiercing = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "tribal patterns", _HS.preg = -2, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.ovaries = 1, _HS.anusPiercing = 1, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.navelPiercing = 1, _HS.shouldersTat = "tribal patterns", _HS.armsTat = "tribal patterns", _HS.legsTat = "tribal patterns", _HS.stampTat = "tribal patterns", _HS.skill.oral = 35, _HS.skill.combat = 1, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.rules.relationship = "permissive", _HS.clothes = "attractive lingerie", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -70, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$His skin is unnaturally perfect, totally without blemishes. $He radiates unnatural health and resilience.">>
+<<set _HS.slaveName = "'Submissive' Cindy", _HS.birthName = "Cindy", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 20, _HS.height = 175, _HS.nationality = "Indonesian", _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.custom.tattoo = "$He has a barcode tattooed on the top of $his head.", _HS.pubicHStyle = "bushy", _HS.boobs = 600, _HS.nipplesPiercing = 1, _HS.boobsTat = "tribal patterns", _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsPiercing = 1, _HS.lipsTat = "tribal patterns", _HS.tonguePiercing = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "tribal patterns", _HS.preg = -2, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.ovaries = 1, _HS.anusPiercing = 1, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.navelPiercing = 1, _HS.shouldersTat = "tribal patterns", _HS.armsTat = "tribal patterns", _HS.legsTat = "tribal patterns", _HS.stampTat = "tribal patterns", _HS.skill.oral = 35, _HS.skill.combat = 1, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.rules.relationship = "permissive", _HS.clothes = "attractive lingerie", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -70, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$His skin is unnaturally perfect, totally without blemishes. $He radiates unnatural health and resilience.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Anna", _HS.birthName = "Anna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.height = 175, _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 800, _HS.butt = 3, _HS.vaginaLube = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Anna", _HS.birthName = "Anna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 60, _HS.height = 175, _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 800, _HS.butt = 3, _HS.vaginaLube = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*Removed eyecolor customdesc -BoneyM*/
 
 <<if $seeExtreme == 1>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Mouse", _HS.birthName = "Mouse", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -50, _HS.weight = 20, _HS.height = 152, _HS.override_H_Color = 1, _HS.pubicHColor = "purple", _HS.origSkin = "pale", _HS.eye.origColor = "blue", _HS.origHColor = "purple", _HS.hLength = 10, _HS.boobs = 1000, _HS.areolae = 1, _HS.butt = 5, _HS.lipsTat = "permanent makeup", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.voice = 0, _HS.nipples = "puffy">>
+<<set _HS.slaveName = "Mouse", _HS.birthName = "Mouse", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = -50, _HS.weight = 20, _HS.height = 152, _HS.override_H_Color = 1, _HS.pubicHColor = "purple", _HS.origSkin = "pale", _HS.eye.origColor = "blue", _HS.origHColor = "purple", _HS.hLength = 10, _HS.boobs = 1000, _HS.areolae = 1, _HS.butt = 5, _HS.lipsTat = "permanent makeup", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.voice = 0, _HS.nipples = "puffy">>
 <<run App.Utils.removeHeroLimbs(_HS, "all")>>
 <<set $heroSlaves.push(_HS)>>
 /*Increased nipples and areolae, changed eye color, added mute -BoneyM*/
@@ -536,46 +536,46 @@
 /* put some of $his custom description in $his origin (box stuff), tagged as amp, lowered obedience, increased weight but lowered health, changed skin color from white to pale */
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Yukiko", _HS.birthName = "Yukiko", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 100, _HS.weight = -20, _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "very fair", _HS.hStyle = "long, and in a hime cut", _HS.boobs = 500, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.clothes = "a slave gown", _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.desc = "$He is a work of art: stoic, mysterious, doll-like, — and always smiling.", _HS.voice = 0>>
+<<set _HS.slaveName = "Yukiko", _HS.birthName = "Yukiko", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = 100, _HS.weight = -20, _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "very fair", _HS.hStyle = "long, and in a hime cut", _HS.boobs = 500, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.clothes = "a slave gown", _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.desc = "$He is a work of art: stoic, mysterious, doll-like, — and always smiling.", _HS.voice = 0>>
 <<run App.Utils.removeHeroLimbs(_HS, "all")>>
 <<set $heroSlaves.push(_HS)>>
 /* not much to change, lowered weight ('perfect slim body'), set to mute and changed flaw to odd- described as creepy */
 
 <<if $seePreg != 0>>
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Fucknugget' Pillow", _HS.birthName = "Anika", _HS.origin = "$He sold $himself into slavery to escape life on the streets.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 37, _HS.physicalAge = 37, _HS.visualAge = 37, _HS.ovaryAge = 37, _HS.health = 80, _HS.devotion = 100, _HS.weight = 40, _HS.origRace = "white", _HS.override_Race = 1, _HS.race = "latina", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.hStyle = "long", _HS.waist = -100, _HS.boobs = 6260, _HS.boobsImplant = 4200, _HS.nipplesPiercing = 2, _HS.areolae = 3, _HS.boobsTat = "flowers", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 12, _HS.buttImplant = 1, _HS.buttTat = "flowers", _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 55, _HS.lipsImplant = 10, _HS.lipsPiercing = 2, _HS.lipsTat = "flowers", _HS.tonguePiercing = 2, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.vaginaTat = "flowers", _HS.preg = 37, _HS.pregType = 1, _HS.pregWeek = 37, _HS.pregKnown = 1, _HS.belly = 13000, _HS.bellyPreg = 13000, _HS.counter.births = 2, _HS.counter.birthsTotal = 2, _HS.clitPiercing = 3, _HS.clitSetting = "boobs", _HS.anus = 2, _HS.ovaries = 1, _HS.anusPiercing = 2, _HS.anusTat = "flowers", _HS.makeup = 3, _HS.earPiercing = 2, _HS.nosePiercing = 2, _HS.eyebrowPiercing = 2, _HS.navelPiercing = 2, _HS.shouldersTat = "advertisements", _HS.stampTat = "flowers", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.aphrodisiacs = 1, _HS.addict = 99, _HS.clothes = "restrictive latex", _HS.collar = "leather with cowbell", _HS.intelligence = -70, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "'Fucknugget' Pillow", _HS.birthName = "Anika", _HS.origin = "$He sold $himself into slavery to escape life on the streets.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 37, _HS.physicalAge = 37, _HS.visualAge = 37, _HS.ovaryAge = 37, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 100, _HS.weight = 40, _HS.origRace = "white", _HS.override_Race = 1, _HS.race = "latina", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.hStyle = "long", _HS.waist = -100, _HS.boobs = 6260, _HS.boobsImplant = 4200, _HS.nipplesPiercing = 2, _HS.areolae = 3, _HS.boobsTat = "flowers", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 12, _HS.buttImplant = 1, _HS.buttTat = "flowers", _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 55, _HS.lipsImplant = 10, _HS.lipsPiercing = 2, _HS.lipsTat = "flowers", _HS.tonguePiercing = 2, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.vaginaTat = "flowers", _HS.preg = 37, _HS.pregType = 1, _HS.pregWeek = 37, _HS.pregKnown = 1, _HS.belly = 13000, _HS.bellyPreg = 13000, _HS.counter.births = 2, _HS.counter.birthsTotal = 2, _HS.clitPiercing = 3, _HS.clitSetting = "boobs", _HS.anus = 2, _HS.ovaries = 1, _HS.anusPiercing = 2, _HS.anusTat = "flowers", _HS.makeup = 3, _HS.earPiercing = 2, _HS.nosePiercing = 2, _HS.eyebrowPiercing = 2, _HS.navelPiercing = 2, _HS.shouldersTat = "advertisements", _HS.stampTat = "flowers", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.aphrodisiacs = 1, _HS.addict = 99, _HS.clothes = "restrictive latex", _HS.collar = "leather with cowbell", _HS.intelligence = -70, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1>>
 <<run App.Utils.removeHeroLimbs(_HS, "all")>>
 <<set $heroSlaves.push(_HS)>>
 <</if>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'DoL Toy' Allie", _HS.birthName = "Aliana", _HS.origin = "$He is an enslaved member of an anti-slavery extremist group.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 33, _HS.physicalAge = 33, _HS.visualAge = 33, _HS.ovaryAge = 33, _HS.health = 80, _HS.devotion = 65, _HS.height = 155, _HS.nationality = "Mexican", _HS.race = "latina", _HS.override_H_Color = 1, _HS.origHColor = "raven black with red highlights", _HS.origSkin = "brown", _HS.hLength = 10, _HS.waist = -55, _HS.boobs = 700, _HS.butt = 3, _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.bellyAccessory = "an extreme corset", _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.anus = 2, _HS.ovaries = 1, _HS.stampTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =35, _HS.skill.entertainment = 15, _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$His left butt cheek is tattooed with a small shield bearing the words 'Daughter of Liberty' with a large red 'not' symbol added over it.">>
+<<set _HS.slaveName = "'DoL Toy' Allie", _HS.birthName = "Aliana", _HS.origin = "$He is an enslaved member of an anti-slavery extremist group.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 33, _HS.physicalAge = 33, _HS.visualAge = 33, _HS.ovaryAge = 33, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 65, _HS.height = 155, _HS.nationality = "Mexican", _HS.race = "latina", _HS.override_H_Color = 1, _HS.origHColor = "raven black with red highlights", _HS.origSkin = "brown", _HS.hLength = 10, _HS.waist = -55, _HS.boobs = 700, _HS.butt = 3, _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.bellyAccessory = "an extreme corset", _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.anus = 2, _HS.ovaries = 1, _HS.stampTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =35, _HS.skill.entertainment = 15, _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$His left butt cheek is tattooed with a small shield bearing the words 'Daughter of Liberty' with a large red 'not' symbol added over it.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Onahole' Lian the Liberty Whore", _HS.birthName = "Lian", _HS.origin = "$He is an enslaved member of an anti-slavery extremist group.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = -70, _HS.devotion = 100, _HS.muscles = 20, _HS.nationality = "Chinese", _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.waist = -100, _HS.boobs = 2000, _HS.boobsImplant = 600, _HS.areolae = 2, _HS.butt = 8, _HS.face = 55, _HS.faceImplant = 65, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.clit = 2, _HS.anus = 2, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.collar = "shock punishment", _HS.shoes = "flats", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "'Onahole' Lian the Liberty Whore", _HS.birthName = "Lian", _HS.origin = "$He is an enslaved member of an anti-slavery extremist group.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, setHealth(_HS, -50, 10, 10), _HS.devotion = 100, _HS.muscles = 20, _HS.nationality = "Chinese", _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.waist = -100, _HS.boobs = 2000, _HS.boobsImplant = 600, _HS.areolae = 2, _HS.butt = 8, _HS.face = 55, _HS.faceImplant = 65, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.clit = 2, _HS.anus = 2, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.collar = "shock punishment", _HS.shoes = "flats", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<run App.Utils.removeHeroLimbs(_HS, "all")>>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Quiet' Fay", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "Having always been a mute with no desire to communicate $his origin, you aren't sure where $he's from or how $he ended up here.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = -20, _HS.devotion = -100, _HS.height = 145, _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "white", _HS.hStyle = "long and disheveled", _HS.boobs = 400, _HS.butt = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.clothes = "a nice maid outfit", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.custom.tattoo = "There's an 'X' imprinted on $his throat where $his larynx would be.", _HS.custom.desc = "$He earned $his name from $his permanent silence and fae physique.", _HS.voice = 0>>
+<<set _HS.slaveName = "'Quiet' Fay", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "Having always been a mute with no desire to communicate $his origin, you aren't sure where $he's from or how $he ended up here.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, -20), _HS.devotion = -100, _HS.height = 145, _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "white", _HS.hStyle = "long and disheveled", _HS.boobs = 400, _HS.butt = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.clothes = "a nice maid outfit", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.custom.tattoo = "There's an 'X' imprinted on $his throat where $his larynx would be.", _HS.custom.desc = "$He earned $his name from $his permanent silence and fae physique.", _HS.voice = 0>>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Flora", _HS.birthName = "Flora", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 25, _HS.weight = -20, _HS.height = 155, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.desc = "$He fits perfectly into a pillowcase.">>
+<<set _HS.slaveName = "Flora", _HS.birthName = "Flora", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 25, _HS.weight = -20, _HS.height = 155, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.desc = "$He fits perfectly into a pillowcase.">>
 <<run App.Utils.removeHeroLimbs(_HS, "all")>>
 <<set $heroSlaves.push(_HS)>>
 /*bitchy arrogant*/
 /*Added 'bitchy' quirk, reduced height and weight, added customdesc -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Cunt", _HS.birthName = "Cunt", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = -10, _HS.devotion = 10, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.heels = 1, _HS.boobs = 800, _HS.boobsImplant = 600, _HS.butt = 4, _HS.buttImplant = 2, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.clitPiercing = 1, _HS.anus = 2, _HS.anusTat = "tribal patterns", _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.intelligence = -70, _HS.attrXY = 40, _HS.attrKnown = 0, _HS.fetish = "mindbroken", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Cunt", _HS.birthName = "Cunt", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, -10), _HS.devotion = 10, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.heels = 1, _HS.boobs = 800, _HS.boobsImplant = 600, _HS.butt = 4, _HS.buttImplant = 2, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.clitPiercing = 1, _HS.anus = 2, _HS.anusTat = "tribal patterns", _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.intelligence = -70, _HS.attrXY = 40, _HS.attrKnown = 0, _HS.fetish = "mindbroken", _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*mindbroken*/
 /*Tweaked smart piercing setting, corrected piercings -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Fleshlight", _HS.birthName = "Fleshlight", _HS.origin = "Nothing remains of the person $he originally was, either mentally or physically.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 800, _HS.boobsImplant = 600, _HS.butt = 5, _HS.buttImplant = 2, _HS.lips = 55, _HS.lipsImplant = 2, _HS.lipsTat = "permanent makeup", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.makeup = 3, _HS.nails = 3, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "mindbroken", _HS.fetishKnown = 1, _HS.custom.desc = "$He has many surgical scars and something seems off about $him.">>
+<<set _HS.slaveName = "Fleshlight", _HS.birthName = "Fleshlight", _HS.origin = "Nothing remains of the person $he originally was, either mentally or physically.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 60, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 800, _HS.boobsImplant = 600, _HS.butt = 5, _HS.buttImplant = 2, _HS.lips = 55, _HS.lipsImplant = 2, _HS.lipsTat = "permanent makeup", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.makeup = 3, _HS.nails = 3, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "mindbroken", _HS.fetishKnown = 1, _HS.custom.desc = "$He has many surgical scars and something seems off about $him.">>
 <<run App.Medicine.Modification.addScar(_HS, "left breast", "surgical", 2)>>
 <<run App.Medicine.Modification.addScar(_HS, "right breast", "surgical", 2)>>
 <<run App.Medicine.Modification.addScar(_HS, "left buttock", "surgical", 2)>>
@@ -585,7 +585,7 @@
 /*Added origin, makeup and nails, changed eyes -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Whore", _HS.birthName = "Whore", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 100, _HS.height = 155, _HS.origSkin = "white", _HS.hStyle = "long and in a braid", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "mindbroken", _HS.fetishKnown = 1, _HS.custom.desc = "$He is a complete mental blank; to $him, there is only the Master.">>
+<<set _HS.slaveName = "Whore", _HS.birthName = "Whore", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = 100, _HS.height = 155, _HS.origSkin = "white", _HS.hStyle = "long and in a braid", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "mindbroken", _HS.fetishKnown = 1, _HS.custom.desc = "$He is a complete mental blank; to $him, there is only the Master.">>
 <<set $heroSlaves.push(_HS)>>
 /*Fixed customdesc syntax, changed hair from blue -BoneyM*/
 
@@ -594,17 +594,17 @@
 <<if $familyTesting == 1>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Camille", _HS.birthName = "Camille", _HS.ID = _i++, _HS.origin = "$He is half of a famous musical duo, along with $his twin sister. They fled to the Free Cities.", _HS.career = "an aspiring pop star", _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed singer; citizens would pay top prices to feel $his mouth around their dicks.", _HS.birthWeek = 16, _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 40, _HS.weight = -10, _HS.muscles = 10, _HS.height = 170, _HS.nationality = "American", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 60, _HS.hStyle = "neat, with thick luxurious bangs.", _HS.waist = -55, _HS.voice = 2, _HS.boobs = 300, _HS.boobShape = "perky", _HS.butt = 2, _HS.face = 100, _HS.lips = 25, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.entertainment = 100, _HS.energy = 50, _HS.attrXX = 80, _HS.fetish = "boobs", _HS.fetishStrength = 70, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He has an identical twin sister named Kennerly, from whom $he hates to be parted. They're from the former United States.", _HS.mother = -9999, _HS.father = -9998>>
+<<set _HS.slaveName = "Camille", _HS.birthName = "Camille", _HS.ID = _i++, _HS.origin = "$He is half of a famous musical duo, along with $his twin sister. They fled to the Free Cities.", _HS.career = "an aspiring pop star", _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed singer; citizens would pay top prices to feel $his mouth around their dicks.", _HS.birthWeek = 16, _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 40), _HS.weight = -10, _HS.muscles = 10, _HS.height = 170, _HS.nationality = "American", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 60, _HS.hStyle = "neat, with thick luxurious bangs.", _HS.waist = -55, _HS.voice = 2, _HS.boobs = 300, _HS.boobShape = "perky", _HS.butt = 2, _HS.face = 100, _HS.lips = 25, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.entertainment = 100, _HS.energy = 50, _HS.attrXX = 80, _HS.fetish = "boobs", _HS.fetishStrength = 70, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He has an identical twin sister named Kennerly, from whom $he hates to be parted. They're from the former United States.", _HS.mother = -9999, _HS.father = -9998>>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Kennerly", _HS.birthName = "Kennerly", _HS.ID = _i++, _HS.origin = "$He is half of a famous musical duo, along with $his twin sister. They fled to the Free Cities.", _HS.career = "an aspiring pop star", _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed singer; citizens would pay top prices to feel $his mouth around their dicks.", _HS.birthWeek = 16, _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 40, _HS.weight = 10, _HS.height = 167, _HS.nationality = "American", _HS.race = "white", _HS.markings = "beauty mark", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 60, _HS.hStyle = "neat, with thick luxurious bangs.", _HS.waist = -55, _HS.voice = 2, _HS.boobs = 500, _HS.boobShape = "perky", _HS.butt = 2, _HS.face = 100, _HS.lips = 15, _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.skill.oral = 15, _HS.skill.entertainment = 100, _HS.energy = 50, _HS.attrXX = 80, _HS.fetish = "boobs", _HS.fetishStrength = 70, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He has an identical twin sister named Camille, from whom $he hates to be parted. They're from the former United States.", _HS.mother = -9999, _HS.father = -9998>>
+<<set _HS.slaveName = "Kennerly", _HS.birthName = "Kennerly", _HS.ID = _i++, _HS.origin = "$He is half of a famous musical duo, along with $his twin sister. They fled to the Free Cities.", _HS.career = "an aspiring pop star", _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed singer; citizens would pay top prices to feel $his mouth around their dicks.", _HS.birthWeek = 16, _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 40), _HS.weight = 10, _HS.height = 167, _HS.nationality = "American", _HS.race = "white", _HS.markings = "beauty mark", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 60, _HS.hStyle = "neat, with thick luxurious bangs.", _HS.waist = -55, _HS.voice = 2, _HS.boobs = 500, _HS.boobShape = "perky", _HS.butt = 2, _HS.face = 100, _HS.lips = 15, _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.skill.oral = 15, _HS.skill.entertainment = 100, _HS.energy = 50, _HS.attrXX = 80, _HS.fetish = "boobs", _HS.fetishStrength = 70, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He has an identical twin sister named Camille, from whom $he hates to be parted. They're from the former United States.", _HS.mother = -9999, _HS.father = -9998>>
 <<set $heroSlaves.push(_HS)>>
 
 <</if>>
 
 /*
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "STANDARD", _HS.birthName = "STANDARD", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.anusTat = "bleached", _HS.skill.vaginal = 0, _HS.skill.oral = 0, _HS.skill.anal = 0, _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "STANDARD", _HS.birthName = "STANDARD", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 60, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.anusTat = "bleached", _HS.skill.vaginal = 0, _HS.skill.oral = 0, _HS.skill.anal = 0, _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 */
diff --git a/src/npc/databases/ddSlavesDatabase.tw b/src/npc/databases/ddSlavesDatabase.tw
index f8fe5db05176dd153c0202953fc59b81c249f371..3ae1f9862ad433e6c386a5e37da88810f33b78b2 100644
--- a/src/npc/databases/ddSlavesDatabase.tw
+++ b/src/npc/databases/ddSlavesDatabase.tw
@@ -2,113 +2,113 @@
 
 <<set _i = 800000>>
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Marylynne", _HS.birthName = "Tyson", _HS.genes = "XY", _HS.origin = "$He is a life-long house slave who has always tried to be the perfect woman, despite $his dick.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, _HS.health = 20, _HS.devotion = 100, _HS.origSkin = "white", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1000, _HS.areolae = 1, _HS.butt = 5, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 3, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 35, _HS.skill.anal = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is extremely self-conscious about $his dick.", _HS.sexualFlaw = "shamefast", _HS.behavioralQuirk = "insecure">>
+<<set _HS.slaveName = "Marylynne", _HS.birthName = "Tyson", _HS.genes = "XY", _HS.origin = "$He is a life-long house slave who has always tried to be the perfect woman, despite $his dick.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, setHealth(_HS, 20), _HS.devotion = 100, _HS.origSkin = "white", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1000, _HS.areolae = 1, _HS.butt = 5, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 3, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 35, _HS.skill.anal = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is extremely self-conscious about $his dick.", _HS.sexualFlaw = "shamefast", _HS.behavioralQuirk = "insecure">>
 <<set $heroSlaves.push(_HS)>>
 /*Increased areolae, added origin and customdesc -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Alyssa", _HS.birthName = "Alyssa", _HS.genes = "XY", _HS.ID = _i++, _HS.assignment = "be a servant", _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = -30, _HS.devotion = 60, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.faceShape = "androgynous">>
+<<set _HS.slaveName = "Alyssa", _HS.birthName = "Alyssa", _HS.genes = "XY", _HS.ID = _i++, _HS.assignment = "be a servant", _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, -30), _HS.devotion = 60, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.faceShape = "androgynous">>
 <<set $heroSlaves.push(_HS)>>
 /*Changed assignment -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Adrian", _HS.birthName = "Adrian", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 75, _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd">>
+<<set _HS.slaveName = "Adrian", _HS.birthName = "Adrian", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 10, _HS.health.health = 20, _HS.devotion = 75, _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd">>
 <<set $heroSlaves.push(_HS)>>
 /*switch*/
 /*Added odd as a stand-in for the multiple personalities -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Lola", _HS.birthName = "Lola", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = 20, _HS.devotion = 35, _HS.height = 175, _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.butt = 4, _HS.buttImplant = 2, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 3, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.aphrodisiacs = 1, _HS.addict = 10, _HS.intelligence = -30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Lola", _HS.birthName = "Lola", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, setHealth(_HS, 20), _HS.devotion = 35, _HS.height = 175, _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.butt = 4, _HS.buttImplant = 2, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 3, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.aphrodisiacs = 1, _HS.addict = 10, _HS.intelligence = -30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*Second slave to not need changes -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Amanda", _HS.birthName = "Amanda", _HS.genes = "XY", _HS.origin = "$He was raised as a girl despite $his gargantuan dick to be a truly unique slave.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 17, _HS.physicalAge = 17, _HS.visualAge = 17, _HS.ovaryAge = 17, _HS.health = 20, _HS.height = 152, _HS.origHColor = "black", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Amanda", _HS.birthName = "Amanda", _HS.genes = "XY", _HS.origin = "$He was raised as a girl despite $his gargantuan dick to be a truly unique slave.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 17, _HS.physicalAge = 17, _HS.visualAge = 17, _HS.ovaryAge = 17, setHealth(_HS, 20), _HS.height = 152, _HS.origHColor = "black", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*Added origin, removed anal virginity -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Mrs.' Maria", _HS.birthName = "Maria", _HS.genes = "XY", _HS.origin = "$He was once a successful drug lord, but was turned into $his current self after making too many enemies.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 100, _HS.devotion = 75, _HS.muscles = 20, _HS.height = 175, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 10, _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.lips = 55, _HS.lipsImplant = 10, _HS.vagina = -1, _HS.preg = -2, _HS.clitPiercing = 3, _HS.clitSetting = "anal", _HS.dick = 5, _HS.anus = 2, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["left testicle"] = "a brand of a former master", _HS.stampTat = "$He has a fairly generic tramp stamp.", _HS.career = "a gang leader">>
+<<set _HS.slaveName = "'Mrs.' Maria", _HS.birthName = "Maria", _HS.genes = "XY", _HS.origin = "$He was once a successful drug lord, but was turned into $his current self after making too many enemies.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 75, _HS.muscles = 20, _HS.height = 175, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 10, _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.lips = 55, _HS.lipsImplant = 10, _HS.vagina = -1, _HS.preg = -2, _HS.clitPiercing = 3, _HS.clitSetting = "anal", _HS.dick = 5, _HS.anus = 2, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["left testicle"] = "a brand of a former master", _HS.stampTat = "$He has a fairly generic tramp stamp.", _HS.career = "a gang leader">>
 <<set $heroSlaves.push(_HS)>>
 /*branded nut*/
 /*Added brand to customtat, added origin -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Sugar", _HS.birthName = "Sugar", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health = 20, _HS.height = 175, _HS.eye.origColor = "blue", _HS.origHColor = "platinum blonde", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1400, _HS.boobsImplant = 1200, _HS.butt = 5, _HS.buttImplant = 4, _HS.lips = 55, _HS.lipsImplant = 2, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.clothes = "slutty jewelry", _HS.intelligence = -90, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is as dumb as a bag of hammers.">>
+<<set _HS.slaveName = "Sugar", _HS.birthName = "Sugar", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, setHealth(_HS, 20), _HS.height = 175, _HS.eye.origColor = "blue", _HS.origHColor = "platinum blonde", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1400, _HS.boobsImplant = 1200, _HS.butt = 5, _HS.buttImplant = 4, _HS.lips = 55, _HS.lipsImplant = 2, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.clothes = "slutty jewelry", _HS.intelligence = -90, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is as dumb as a bag of hammers.">>
 <<set $heroSlaves.push(_HS)>>
 /*also buttslut*/
 /*Added customdesc, changed eye color -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Bella", _HS.birthName = "Bella", _HS.genes = "XY", _HS.origin = "$He grew up in a rich and deviant household, surrounded by but never a part of bizarre and unusual sex acts.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 10, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant">>
+<<set _HS.slaveName = "Bella", _HS.birthName = "Bella", _HS.genes = "XY", _HS.origin = "$He grew up in a rich and deviant household, surrounded by but never a part of bizarre and unusual sex acts.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = 10, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant">>
 <<set $heroSlaves.push(_HS)>>
 /*Added origin -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Julia", _HS.birthName = "Julia", _HS.genes = "XY", _HS.origin = "$He was homeless and willing to do anything for food, which in the end resulted in $him becoming a slave.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 30, _HS.origSkin = "white", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 2, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "a slave gown", _HS.intelligence = -20, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has beautiful eyes and some scars.">>
+<<set _HS.slaveName = "Julia", _HS.birthName = "Julia", _HS.genes = "XY", _HS.origin = "$He was homeless and willing to do anything for food, which in the end resulted in $him becoming a slave.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 30, _HS.origSkin = "white", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 2, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "a slave gown", _HS.intelligence = -20, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has beautiful eyes and some scars.">>
 <<set $heroSlaves.push(_HS)>>
 /*love*/
 /*Added origin, corrected customdesc syntax, increased cock and balls size to average -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Lily", _HS.birthName = "Lily", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health = 20, _HS.devotion = -60, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.clothes = "a slave gown", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">>
+<<set _HS.slaveName = "Lily", _HS.birthName = "Lily", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, setHealth(_HS, 20), _HS.devotion = -60, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.clothes = "a slave gown", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">>
 <<set $heroSlaves.push(_HS)>>
 /*angry*/
 /*Added bitchy, increased cock and balls size to average -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Harry", _HS.birthName = "Harry", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health = 20, _HS.devotion = 25, _HS.height = 175, _HS.heightImplant = 1, _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "a medium length", _HS.boobs = 300, _HS.butt = 5, _HS.face = 15, _HS.faceImplant = 15, _HS.lipsTat = "permanent makeup", _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 2, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.clothes = "attractive lingerie", _HS.intelligence = -20, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Harry", _HS.birthName = "Harry", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, setHealth(_HS, 20), _HS.devotion = 25, _HS.height = 175, _HS.heightImplant = 1, _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "a medium length", _HS.boobs = 300, _HS.butt = 5, _HS.face = 15, _HS.faceImplant = 15, _HS.lipsTat = "permanent makeup", _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 2, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.clothes = "attractive lingerie", _HS.intelligence = -20, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*light makeup tats*/
 /*Added makeup tattoos, added facial surgery, changed eye color, added height and heightimplant -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Jen", _HS.birthName = "Jen", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health = 20, _HS.devotion = 40, _HS.height = 175, _HS.origHColor = "dark brown", _HS.pubicHColor = "dark brown", _HS.origSkin = "white", _HS.hLength = 40, _HS.hStyle = "up in a bun", _HS.boobs = 300, _HS.butt = 5, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.clothes = "attractive lingerie", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.career = "a librarian", _HS.intelligence = 35, _HS.intelligenceImplant = 30>>
+<<set _HS.slaveName = "Jen", _HS.birthName = "Jen", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, setHealth(_HS, 20), _HS.devotion = 40, _HS.height = 175, _HS.origHColor = "dark brown", _HS.pubicHColor = "dark brown", _HS.origSkin = "white", _HS.hLength = 40, _HS.hStyle = "up in a bun", _HS.boobs = 300, _HS.butt = 5, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.clothes = "attractive lingerie", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.career = "a librarian", _HS.intelligence = 35, _HS.intelligenceImplant = 30>>
 <<set $heroSlaves.push(_HS)>>
 /*bookkeeper etc*/
 /*Removed customdesc copied over from previous slave -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Kai", _HS.birthName = "Mordecai", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 60, _HS.height = 191, _HS.nationality = "Russian", _HS.race = "white", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.hLength = 140, _HS.hStyle = "knee length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.nipplesPiercing = 2, _HS.lactation = 1, _HS.lactationDuration = 2, _HS.butt = 5, _HS.buttImplant = 3, _HS.lips = 35, _HS.lipsImplant = 10, _HS.lipsPiercing = 1, _HS.vagina = 1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.clothes = "restrictive latex", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has many girly tattoos.", _HS.custom.desc = "$He likes hair play.", _HS.navelPiercing = 1>>
+<<set _HS.slaveName = "Kai", _HS.birthName = "Mordecai", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 20), _HS.devotion = 60, _HS.height = 191, _HS.nationality = "Russian", _HS.race = "white", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.hLength = 140, _HS.hStyle = "knee length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.nipplesPiercing = 2, _HS.lactation = 1, _HS.lactationDuration = 2, _HS.butt = 5, _HS.buttImplant = 3, _HS.lips = 35, _HS.lipsImplant = 10, _HS.lipsPiercing = 1, _HS.vagina = 1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.clothes = "restrictive latex", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has many girly tattoos.", _HS.custom.desc = "$He likes hair play.", _HS.navelPiercing = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*Increased height and balls size -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Mackenzie", _HS.birthName = "Mackenzie", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 40, _HS.devotion = 60, _HS.markings = "freckled", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 1800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.desc = "$He has a slim and perfectly feminine frame except for $his big feet and ears. $He's very intelligent and well learned.">>
+<<set _HS.slaveName = "Mackenzie", _HS.birthName = "Mackenzie", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21,setHealth(_HS, 40), _HS.devotion = 60, _HS.markings = "freckled", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 1800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.desc = "$He has a slim and perfectly feminine frame except for $his big feet and ears. $He's very intelligent and well learned.">>
 <<set $heroSlaves.push(_HS)>>
 /*intelligent, classy, devoted to Master*/
 /*Increased ball size, changed eye color, changed skin to freckled, increased health, corrected customdesc syntax -BoneyM*/
 /% Fixed skin to pale, and changed markings to freckled %/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Rachel", _HS.birthName = "Rachel", _HS.genes = "XY", _HS.origin = "$He volunteered to become a slave when $he turned 18.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 100, _HS.height = 155, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 60, _HS.hStyle = "shoulder length", _HS.waist = -55, _HS.boobs = 600, _HS.butt = 2, _HS.face = 15, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.anusTat = "bleached", _HS.intelligence = 20, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut">>
+<<set _HS.slaveName = "Rachel", _HS.birthName = "Rachel", _HS.genes = "XY", _HS.origin = "$He volunteered to become a slave when $he turned 18.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 100, _HS.height = 155, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 60, _HS.hStyle = "shoulder length", _HS.waist = -55, _HS.boobs = 600, _HS.butt = 2, _HS.face = 15, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.anusTat = "bleached", _HS.intelligence = 20, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Nikole", _HS.birthName = "Nikole", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 80, _HS.devotion = 100, _HS.race = "white", _HS.markings = "freckled", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hLength = 60, _HS.hStyle = "long and in a ponytail", _HS.boobs = 200, _HS.butt = 5, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a tattoo of a black widow's hourglass pattern on $his ballsack.">>
+<<set _HS.slaveName = "Nikole", _HS.birthName = "Nikole", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 100, _HS.race = "white", _HS.markings = "freckled", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hLength = 60, _HS.hStyle = "long and in a ponytail", _HS.boobs = 200, _HS.butt = 5, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a tattoo of a black widow's hourglass pattern on $his ballsack.">>
 <<set $heroSlaves.push(_HS)>>
 /% Put the freckles from custDesc to markings Bane70 %/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Exta", _HS.birthName = "Exta", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.muscles = 20, _HS.height = 190, _HS.eye.origColor = "brown", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 15, _HS.hStyle = "short, and in a boyish cut", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 1, _HS.anusTat = "bleached", _HS.skill.oral = 15, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a raised circuitry pattern on the nape of $his neck.", _HS.sexualFlaw = "shamefast", _HS.career = "a businessman">>
+<<set _HS.slaveName = "Exta", _HS.birthName = "Exta", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 60, _HS.muscles = 20, _HS.height = 190, _HS.eye.origColor = "brown", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 15, _HS.hStyle = "short, and in a boyish cut", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 1, _HS.anusTat = "bleached", _HS.skill.oral = 15, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a raised circuitry pattern on the nape of $his neck.", _HS.sexualFlaw = "shamefast", _HS.career = "a businessman">>
 <<set $heroSlaves.push(_HS)>>
 /*business skill*/
 /*likes mods - gave internal testicles as such PM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Martin", _HS.birthName = "Martin", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = -55, _HS.muscles = 20, _HS.height = 190, _HS.eye.origColor = "bright blue", _HS.origHColor = "white", _HS.pubicHColor = "white", _HS.origSkin = "extremely pale", _HS.hLength = 15, _HS.hStyle = "short and in a boyish cut", _HS.waist = -55, _HS.boobs = 100, _HS.butt = 4, _HS.face = 55, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.behavioralFlaw = "arrogant", _HS.custom.desc = "An iron-willed, recently captured figure of a prominent anti-Free City guerrilla party, $he still clings strongly to traditional beliefs on Man's natural good, economic restriction, and monogamy. Excitable, girly, and sweet in comparison to $his natural sister, Elisa, $he has a lovely singing voice. $He prays quite often, if allowed to.", _HS.mother = -9997, _HS.father = -9996, _HS.sexualFlaw = "hates penetration">>
+<<set _HS.slaveName = "Martin", _HS.birthName = "Martin", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = -55, _HS.muscles = 20, _HS.height = 190, _HS.eye.origColor = "bright blue", _HS.origHColor = "white", _HS.pubicHColor = "white", _HS.origSkin = "extremely pale", _HS.hLength = 15, _HS.hStyle = "short and in a boyish cut", _HS.waist = -55, _HS.boobs = 100, _HS.butt = 4, _HS.face = 55, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.behavioralFlaw = "arrogant", _HS.custom.desc = "An iron-willed, recently captured figure of a prominent anti-Free City guerrilla party, $he still clings strongly to traditional beliefs on Man's natural good, economic restriction, and monogamy. Excitable, girly, and sweet in comparison to $his natural sister, Elisa, $he has a lovely singing voice. $He prays quite often, if allowed to.", _HS.mother = -9997, _HS.father = -9996, _HS.sexualFlaw = "hates penetration">>
 <<set $heroSlaves.push(_HS)>>
 /*also hates pen*/
 /*elisa's sibling*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Steven", _HS.birthName = "Steven", _HS.genes = "XY", _HS.origin = "$He was forced into slavery due to extreme debt.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, _HS.health = 20, _HS.devotion = -55, _HS.weight = 40, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.race = "white", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.boobs = 200, _HS.butt = 3, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.skill.oral = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration">>
+<<set _HS.slaveName = "Steven", _HS.birthName = "Steven", _HS.genes = "XY", _HS.origin = "$He was forced into slavery due to extreme debt.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, setHealth(_HS, 20), _HS.devotion = -55, _HS.weight = 40, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.race = "white", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.boobs = 200, _HS.butt = 3, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.skill.oral = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration">>
 <<set $heroSlaves.push(_HS)>>
 /*also hates pen*/
 /*wide dick*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Selene", _HS.birthName = "Selene", _HS.genes = "XY", _HS.origin = "Once $he was an arcology security officer, lured to aphrodisiacs addiction and feminized by $his boss (and former wife), to whom $he was sold as a slave to satisfy her spousal maintenance after divorce.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 32, _HS.physicalAge = 32, _HS.visualAge = 32, _HS.ovaryAge = 32, _HS.health = 20, _HS.devotion = 40, _HS.muscles = 20, _HS.height = 175, _HS.race = "latina", _HS.eye.origColor = "ice blue", _HS.origHColor = "ashen with black streaks", _HS.pubicHColor = "ashen", _HS.origSkin = "brown", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.waist = -55, _HS.boobs = 1400, _HS.butt = 1, _HS.face = 55, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 2, _HS.dickPiercing = 1, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.addict = 50, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.desc = "$He has a large police badge made of polished silver pinned right to the skin with several barbell piercings just above $his left nipple. $He wears two pairs of handcuffs as bracelets (one pair on each wrist); the handcuff keyholes are welded, so they cannot be unlocked and removed in any normal way.", _HS.career = "a security guard">>
+<<set _HS.slaveName = "Selene", _HS.birthName = "Selene", _HS.genes = "XY", _HS.origin = "Once $he was an arcology security officer, lured to aphrodisiacs addiction and feminized by $his boss (and former wife), to whom $he was sold as a slave to satisfy her spousal maintenance after divorce.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 32, _HS.physicalAge = 32, _HS.visualAge = 32, _HS.ovaryAge = 32, setHealth(_HS, 20), _HS.devotion = 40, _HS.muscles = 20, _HS.height = 175, _HS.race = "latina", _HS.eye.origColor = "ice blue", _HS.origHColor = "ashen with black streaks", _HS.pubicHColor = "ashen", _HS.origSkin = "brown", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.waist = -55, _HS.boobs = 1400, _HS.butt = 1, _HS.face = 55, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 2, _HS.dickPiercing = 1, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.addict = 50, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.desc = "$He has a large police badge made of polished silver pinned right to the skin with several barbell piercings just above $his left nipple. $He wears two pairs of handcuffs as bracelets (one pair on each wrist); the handcuff keyholes are welded, so they cannot be unlocked and removed in any normal way.", _HS.career = "a security guard">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
@@ -116,16 +116,16 @@
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Mistress Izzy", _HS.birthName = "Isabella", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 70, _HS.devotion = 100, _HS.eye.origColor = "black", _HS.origHColor = "sparkling and shiny golden red", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 60, _HS.hStyle = "in thick long heavy braids", _HS.waist = -100, _HS.boobs = 9200, _HS.boobsImplant = 6000, _HS.nipplesPiercing = 2, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.counter.milk = 3010, _HS.butt = 8, _HS.buttImplant = 1, _HS.buttTat = "bovine patterns", _HS.face = 55, _HS.faceImplant = 65, _HS.lips = 55, _HS.lipsImplant = 2, _HS.lipsPiercing = 2, _HS.lipsTat = "bovine patterns", _HS.tonguePiercing = 2, _HS.vagina = 2, _HS.vaginaPiercing = 2, _HS.vaginaTat = "bovine patterns", _HS.preg = -2, _HS.clitPiercing = 3, _HS.anus = 2, _HS.dick = 5, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 2, _HS.anusPiercing = 2, _HS.anusTat = "bovine patterns", _HS.makeup = 2, _HS.nails = 2, _HS.brand["right buttock"] = "SLUT",_HS.earPiercing = 2, _HS.nosePiercing = 2, _HS.eyebrowPiercing = 2, _HS.navelPiercing = 2, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 35, _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = 20, _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has tattoos of teasing, enticing messages begging others to come taste $his addictive milk.", _HS.custom.desc = "$His musky milky aura drives men and women around $him giggly and dumb with lust.", _HS.horn = "cow horns">>
+<<set _HS.slaveName = "Mistress Izzy", _HS.birthName = "Isabella", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 70), _HS.devotion = 100, _HS.eye.origColor = "black", _HS.origHColor = "sparkling and shiny golden red", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 60, _HS.hStyle = "in thick long heavy braids", _HS.waist = -100, _HS.boobs = 9200, _HS.boobsImplant = 6000, _HS.nipplesPiercing = 2, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.counter.milk = 3010, _HS.butt = 8, _HS.buttImplant = 1, _HS.buttTat = "bovine patterns", _HS.face = 55, _HS.faceImplant = 65, _HS.lips = 55, _HS.lipsImplant = 2, _HS.lipsPiercing = 2, _HS.lipsTat = "bovine patterns", _HS.tonguePiercing = 2, _HS.vagina = 2, _HS.vaginaPiercing = 2, _HS.vaginaTat = "bovine patterns", _HS.preg = -2, _HS.clitPiercing = 3, _HS.anus = 2, _HS.dick = 5, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 2, _HS.anusPiercing = 2, _HS.anusTat = "bovine patterns", _HS.makeup = 2, _HS.nails = 2, _HS.brand["right buttock"] = "SLUT",_HS.earPiercing = 2, _HS.nosePiercing = 2, _HS.eyebrowPiercing = 2, _HS.navelPiercing = 2, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 35, _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = 20, _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has tattoos of teasing, enticing messages begging others to come taste $his addictive milk.", _HS.custom.desc = "$His musky milky aura drives men and women around $him giggly and dumb with lust.", _HS.horn = "cow horns">>
 <<set $heroSlaves.push(_HS)>>
 /*Dropped desc = $He has two cute horns protruding from $his forehead. A few addicted milkslaves of $his own tag along behind $him. */
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Joan", _HS.birthName = "Mila", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 100, _HS.devotion = 25, _HS.weight = 20, _HS.height = 175, _HS.origHColor = "dark brown", _HS.pubicHColor = "brown", _HS.origSkin = "pale", _HS.hLength = 30, _HS.hStyle = "shoulder-length, done up in a ponytail", _HS.pubicHStyle = "bushy", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.areolae = 2, _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 7, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.clitPiercing = 3, _HS.dick = 4, _HS.prostate = 1, _HS.balls = 5, _HS.scrotum = 4, _HS.anusPiercing = 1, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.entertainment = 35, _HS.clothes = "cutoffs and a t-shirt", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has a blood red, faux brand tattoo on $his left ass cheek.", _HS.custom.desc = "$He has a nearly faded pockmark on the skin above $his left eyebrow, the last reminder of $his awkward past.">>
+<<set _HS.slaveName = "Joan", _HS.birthName = "Mila", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 25, _HS.weight = 20, _HS.height = 175, _HS.origHColor = "dark brown", _HS.pubicHColor = "brown", _HS.origSkin = "pale", _HS.hLength = 30, _HS.hStyle = "shoulder-length, done up in a ponytail", _HS.pubicHStyle = "bushy", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.areolae = 2, _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 7, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.clitPiercing = 3, _HS.dick = 4, _HS.prostate = 1, _HS.balls = 5, _HS.scrotum = 4, _HS.anusPiercing = 1, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.entertainment = 35, _HS.clothes = "cutoffs and a t-shirt", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has a blood red, faux brand tattoo on $his left ass cheek.", _HS.custom.desc = "$He has a nearly faded pockmark on the skin above $his left eyebrow, the last reminder of $his awkward past.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Aisha", _HS.birthName = "Aicha", _HS.genes = "XY", _HS.origin = "$He sold $himself into slavery to escape a life of boredom.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = -20, _HS.devotion = 45, _HS.height = 155, _HS.heightImplant = -1, _HS.race = "middle eastern", _HS.override_Eye_Color = 1, _HS.eye.origColor = "blue", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "peachy fading into a red ombre at the bottom", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.origSkin = "light", _HS.hLength = 30, _HS.hStyle = "shoulder-length in a hime cut", _HS.waist = -55, _HS.boobs = 250, _HS.butt = 3.5, _HS.face = 55, _HS.faceImplant = 65, _HS.vagina = -1, _HS.preg = -2, _HS.clitPiercing = 3, _HS.anus = 1, _HS.dick = 5, _HS.dickTat = "flowers", _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.anusPiercing = 1, _HS.anusTat = "flowers", _HS.brand["back"] = "your initials",_HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.entertainment = 15, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.custom.tattoo = "$He has tattooed petals trailing from the nape of $his neck down $his back, ending between $his butt cheeks.", _HS.custom.desc = "$His red pubic hair is waxed into the shape of a heart. $He has bright blue eyeshadow on $his bottom lids.", _HS.pubicHStyle = "waxed">>
+<<set _HS.slaveName = "Aisha", _HS.birthName = "Aicha", _HS.genes = "XY", _HS.origin = "$He sold $himself into slavery to escape a life of boredom.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, -20), _HS.devotion = 45, _HS.height = 155, _HS.heightImplant = -1, _HS.race = "middle eastern", _HS.override_Eye_Color = 1, _HS.eye.origColor = "blue", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "peachy fading into a red ombre at the bottom", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.origSkin = "light", _HS.hLength = 30, _HS.hStyle = "shoulder-length in a hime cut", _HS.waist = -55, _HS.boobs = 250, _HS.butt = 3.5, _HS.face = 55, _HS.faceImplant = 65, _HS.vagina = -1, _HS.preg = -2, _HS.clitPiercing = 3, _HS.anus = 1, _HS.dick = 5, _HS.dickTat = "flowers", _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.anusPiercing = 1, _HS.anusTat = "flowers", _HS.brand["back"] = "your initials",_HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.entertainment = 15, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.custom.tattoo = "$He has tattooed petals trailing from the nape of $his neck down $his back, ending between $his butt cheeks.", _HS.custom.desc = "$His red pubic hair is waxed into the shape of a heart. $He has bright blue eyeshadow on $his bottom lids.", _HS.pubicHStyle = "waxed">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
@@ -133,55 +133,55 @@
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Dragon Goddess' Chae-won", _HS.genes = "XY", _HS.birthName = "Chae-won", _HS.origin = "$He is a former Kkangpae gang member who was sold into slavery by $his former boss as a punishment.", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed Free Cities whore, and commands top prices.", _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.health = 50, _HS.devotion = 31, _HS.muscles = 50, _HS.height = 155, _HS.nationality = "Korean", _HS.race = "asian", _HS.override_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "onyx black and rainbow-streaked", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 60, _HS.hStyle = "styled in high chignon resembling a traditional Japanese geisha's Shimada hairstyle, with plenty of decorated hairpins", _HS.waist = -55, _HS.boobs = 6000, _HS.boobsImplant = 3000, _HS.nipples = "huge", _HS.butt = 4.5, _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.tonguePiercing = 1, _HS.vagina = -1, _HS.preg = -2, _HS.anus = 1, _HS.dick = 5, _HS.prostate = 1, _HS.balls = 4, _HS.scrotum = 4, _HS.anusTat = "bleached", _HS.nails = 3, _HS.earPiercing = 1, _HS.legsTat = "flowers", _HS.stampTat = "flowers", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.clothes = "a slave gown", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -3, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has two neon-blue butterflies tattooed on $his right temple and one more right above $his right eyebrow; a bright blue, luminescent tattoo of an oriental dragon is intertwining with floral tattoos on $his right leg.", _HS.custom.desc = "$He is almost never seen without $his long, thin, lavishly decorated smoking pipe, either holding it in hand, or carrying it tucked in $his chignon.", _HS.career = "a gang member">>
+<<set _HS.slaveName = "'Dragon Goddess' Chae-won", _HS.genes = "XY", _HS.birthName = "Chae-won", _HS.origin = "$He is a former Kkangpae gang member who was sold into slavery by $his former boss as a punishment.", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed Free Cities whore, and commands top prices.", _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, setHealth(_HS, 50), _HS.devotion = 31, _HS.muscles = 50, _HS.height = 155, _HS.nationality = "Korean", _HS.race = "asian", _HS.override_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "onyx black and rainbow-streaked", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 60, _HS.hStyle = "styled in high chignon resembling a traditional Japanese geisha's Shimada hairstyle, with plenty of decorated hairpins", _HS.waist = -55, _HS.boobs = 6000, _HS.boobsImplant = 3000, _HS.nipples = "huge", _HS.butt = 4.5, _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.tonguePiercing = 1, _HS.vagina = -1, _HS.preg = -2, _HS.anus = 1, _HS.dick = 5, _HS.prostate = 1, _HS.balls = 4, _HS.scrotum = 4, _HS.anusTat = "bleached", _HS.nails = 3, _HS.earPiercing = 1, _HS.legsTat = "flowers", _HS.stampTat = "flowers", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.clothes = "a slave gown", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -3, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has two neon-blue butterflies tattooed on $his right temple and one more right above $his right eyebrow; a bright blue, luminescent tattoo of an oriental dragon is intertwining with floral tattoos on $his right leg.", _HS.custom.desc = "$He is almost never seen without $his long, thin, lavishly decorated smoking pipe, either holding it in hand, or carrying it tucked in $his chignon.", _HS.career = "a gang member">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Bailey", _HS.birthName = "Bryan", _HS.genes = "XY", _HS.origin = "$He was sold to your predecessor by $his husband to pay off his extreme debt.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, _HS.health = 50, _HS.devotion = -50, _HS.nationality = "American", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "fair", _HS.hLength = 50, _HS.hStyle = "chest-length, styled up in schoolgirl pigtails with bangs", _HS.boobs = 700, _HS.boobsImplant = 400, _HS.butt = 2, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.anus = 1, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.clothes = "a slutty maid outfit", _HS.shoes = "heels", _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "Bailey", _HS.birthName = "Bryan", _HS.genes = "XY", _HS.origin = "$He was sold to your predecessor by $his husband to pay off his extreme debt.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, setHealth(_HS, 50), _HS.devotion = -50, _HS.nationality = "American", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "fair", _HS.hLength = 50, _HS.hStyle = "chest-length, styled up in schoolgirl pigtails with bangs", _HS.boobs = 700, _HS.boobsImplant = 400, _HS.butt = 2, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.anus = 1, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.clothes = "a slutty maid outfit", _HS.shoes = "heels", _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Mistress' Ingrid", _HS.birthName = "Ingrid", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health = 100, _HS.devotion = 100, _HS.muscles = 20, _HS.height = 190, _HS.race = "white", _HS.nationality = "Norwegian", _HS.eye.origColor = "blue", _HS.override_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "onyx black", _HS.origSkin = "pale", _HS.hLength = 90, _HS.hStyle = "ass-length with Nordic braids throughout", _HS.waist = -55, _HS.boobs = 800, _HS.butt = 5, _HS.face = 55, _HS.lips = 35, _HS.preg = -2, _HS.clitPiercing = 3, _HS.dick = 4, _HS.prostate = 1, _HS.balls = 4, _HS.scrotum = 4, _HS.ovaries = 1, _HS.makeup = 2, _HS.nails = 2, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.skill.combat = 1, _HS.clothes = "a slave gown", _HS.collar = "pretty jewelry", _HS.shoes = "boots", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has the style of Gothic royalty, and the demeanor to match.">>
+<<set _HS.slaveName = "'Mistress' Ingrid", _HS.birthName = "Ingrid", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 20, _HS.height = 190, _HS.race = "white", _HS.nationality = "Norwegian", _HS.eye.origColor = "blue", _HS.override_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "onyx black", _HS.origSkin = "pale", _HS.hLength = 90, _HS.hStyle = "ass-length with Nordic braids throughout", _HS.waist = -55, _HS.boobs = 800, _HS.butt = 5, _HS.face = 55, _HS.lips = 35, _HS.preg = -2, _HS.clitPiercing = 3, _HS.dick = 4, _HS.prostate = 1, _HS.balls = 4, _HS.scrotum = 4, _HS.ovaries = 1, _HS.makeup = 2, _HS.nails = 2, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.skill.combat = 1, _HS.clothes = "a slave gown", _HS.collar = "pretty jewelry", _HS.shoes = "boots", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has the style of Gothic royalty, and the demeanor to match.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Demon Whore' Yuzuki", _HS.birthName = "Yuri", _HS.genes = "XY", _HS.origin = "$His origins are unknown, but rumor has it that $he is a literal demon.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 60, _HS.devotion = 90.4, _HS.muscles = 20, _HS.height = 190, _HS.nationality = "Japanese", _HS.race = "asian", _HS.eye.origColor = "green", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.pubicHStyle = "in a strip", _HS.waist = -100, _HS.boobs = 10000, _HS.boobsImplant = 4800, _HS.areolae = 2, _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 9, _HS.face = 55, _HS.faceImplant = 65, _HS.lips = 35, _HS.vagina = 1, _HS.clitPiercing = 3, _HS.clitSetting = "humiliation", _HS.anus = 1, _HS.dick = 5, _HS.prostate = 1, _HS.balls = 5, _HS.scrotum = 4, _HS.ovaries = 1, _HS.makeup = 2, _HS.nails = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.skill.anal = 15, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a string bikini", _HS.collar = "pretty jewelry", _HS.shoes = "boots", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "'Demon Whore' Yuzuki", _HS.birthName = "Yuri", _HS.genes = "XY", _HS.origin = "$His origins are unknown, but rumor has it that $he is a literal demon.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 60), _HS.devotion = 90.4, _HS.muscles = 20, _HS.height = 190, _HS.nationality = "Japanese", _HS.race = "asian", _HS.eye.origColor = "green", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.pubicHStyle = "in a strip", _HS.waist = -100, _HS.boobs = 10000, _HS.boobsImplant = 4800, _HS.areolae = 2, _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 9, _HS.face = 55, _HS.faceImplant = 65, _HS.lips = 35, _HS.vagina = 1, _HS.clitPiercing = 3, _HS.clitSetting = "humiliation", _HS.anus = 1, _HS.dick = 5, _HS.prostate = 1, _HS.balls = 5, _HS.scrotum = 4, _HS.ovaries = 1, _HS.makeup = 2, _HS.nails = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.skill.anal = 15, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a string bikini", _HS.collar = "pretty jewelry", _HS.shoes = "boots", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1>>
 <<run setEyeColorFull(_HS, "", "demonic", "", "both")>>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Fuckmeat", _HS.birthName = "Alva", _HS.genes = "XY", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed Free Cities slut, and can please anyone.", _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 100, _HS.devotion = 100, _HS.muscles = 20, _HS.height = 145, _HS.race = "white", _HS.nationality = "Swedish", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "bushy", _HS.boobs = 1700, _HS.boobsTat = "rude words", _HS.butt = 8, _HS.buttTat = "rude words", _HS.face = 55, _HS.lips = 35, _HS.vagina = -1, _HS.vaginaTat = "rude words", _HS.preg = -2, _HS.anus = 3, _HS.dick = 2, _HS.dickTat = "rude words", _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 2, _HS.anusTat = "rude words", _HS.makeup = 3, _HS.nails = 3, _HS.brand["cheek"] = "a penis symbol",_HS.shouldersTat = "rude words", _HS.armsTat = "rude words", _HS.legsTat = "rude words", _HS.stampTat = "rude words", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.diet = "muscle building", _HS.clothes = "harem gauze", _HS.collar = "heavy gold", _HS.shoes = "boots", _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishStrength = 0, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a swastika tattooed on $his ballsack.">>
+<<set _HS.slaveName = "Fuckmeat", _HS.birthName = "Alva", _HS.genes = "XY", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed Free Cities slut, and can please anyone.", _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 20, _HS.height = 145, _HS.race = "white", _HS.nationality = "Swedish", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "bushy", _HS.boobs = 1700, _HS.boobsTat = "rude words", _HS.butt = 8, _HS.buttTat = "rude words", _HS.face = 55, _HS.lips = 35, _HS.vagina = -1, _HS.vaginaTat = "rude words", _HS.preg = -2, _HS.anus = 3, _HS.dick = 2, _HS.dickTat = "rude words", _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 2, _HS.anusTat = "rude words", _HS.makeup = 3, _HS.nails = 3, _HS.brand["cheek"] = "a penis symbol",_HS.shouldersTat = "rude words", _HS.armsTat = "rude words", _HS.legsTat = "rude words", _HS.stampTat = "rude words", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.diet = "muscle building", _HS.clothes = "harem gauze", _HS.collar = "heavy gold", _HS.shoes = "boots", _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishStrength = 0, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a swastika tattooed on $his ballsack.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<if $seeExtreme == 1>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Fjola", _HS.birthName = "Fjola", _HS.genes = "XY", _HS.origin = "$He was born into a slave ring that practiced heavy hormone manipulation to alter slaves from a very young age.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 10, _HS.weight = 20, _HS.height = 160, _HS.eye.origColor = "grey", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 30, _HS.hStyle = "curly and shoulder length", _HS.boobs = 1000, _HS.butt = 3, _HS.vagina = 1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.desc = "$He has a small scar on $his cheek, and many larger ones on $his back.">>
+<<set _HS.slaveName = "Fjola", _HS.birthName = "Fjola", _HS.genes = "XY", _HS.origin = "$He was born into a slave ring that practiced heavy hormone manipulation to alter slaves from a very young age.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 10, _HS.weight = 20, _HS.height = 160, _HS.eye.origColor = "grey", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 30, _HS.hStyle = "curly and shoulder length", _HS.boobs = 1000, _HS.butt = 3, _HS.vagina = 1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.desc = "$He has a small scar on $his cheek, and many larger ones on $his back.">>
 <<set $heroSlaves.push(_HS)>>
 /*tsundere, grey eyes, unhappy to be herm*/
 /*Changed eye color, added customdesc and origin -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Alex", _HS.birthName = "Alex", _HS.genes = "XY", _HS.origin = "$He was given a sex change in a freak laboratory mix-up, and sold $himself into slavery out of desperation due to a lack of any way to prove $his identity.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.height = 175, _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 400, _HS.preg = -2, _HS.attrXX = 40, _HS.attrXY = 40, _HS.sexualFlaw = "hates penetration", _HS.prostate = 1>>
+<<set _HS.slaveName = "Alex", _HS.birthName = "Alex", _HS.genes = "XY", _HS.origin = "$He was given a sex change in a freak laboratory mix-up, and sold $himself into slavery out of desperation due to a lack of any way to prove $his identity.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.height = 175, _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 400, _HS.preg = -2, _HS.attrXX = 40, _HS.attrXY = 40, _HS.sexualFlaw = "hates penetration", _HS.prostate = 1>>
 <<set $heroSlaves.push(_HS)>>
 /*MtF*/
 /*Made a post-op to match the bio as closely as possible in-universe, added origin, added hates penetration. -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Janine", _HS.birthName = "Janine", _HS.genes = "XY", _HS.origin = "$He was enslaved after $he fell into debt to you.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = 90, _HS.devotion = 100, _HS.nationality = "German", _HS.eye.origColor = "blue", _HS.origHColor = "golden blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 10, _HS.hStyle = "flowing gently just past $his cheek, framing $his face beautifully", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 3.5, _HS.face = 15, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 1, _HS.anusTat = "bleached", _HS.skill.oral = 100, _HS.clothes = "a penitent nuns habit", _HS.collar = "tight steel", _HS.shoes = "heels", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.desc = "$He has a beauty mark just above $his lip, on an otherwise flawless face.">>
+<<set _HS.slaveName = "Janine", _HS.birthName = "Janine", _HS.genes = "XY", _HS.origin = "$He was enslaved after $he fell into debt to you.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, setHealth(_HS, 90, 0, 0, 0), _HS.devotion = 100, _HS.nationality = "German", _HS.eye.origColor = "blue", _HS.origHColor = "golden blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 10, _HS.hStyle = "flowing gently just past $his cheek, framing $his face beautifully", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 3.5, _HS.face = 15, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 1, _HS.anusTat = "bleached", _HS.skill.oral = 100, _HS.clothes = "a penitent nuns habit", _HS.collar = "tight steel", _HS.shoes = "heels", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.desc = "$He has a beauty mark just above $his lip, on an otherwise flawless face.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Buck", _HS.birthName = "Buck", _HS.genes = "XY", _HS.origin = "$He was a soldier before being enslaved.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 90, _HS.devotion = -100, _HS.muscles = 50, _HS.height = 190, _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 0, _HS.prostate = 1, _HS.hStyle = "shaved", _HS.waist = -55, _HS.boobs = 100, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.face = 15, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.analArea = 1, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.navelPiercing = 1, _HS.skill.combat = 1, _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.behavioralFlaw = "bitchy", _HS.career = "a soldier">>
+<<set _HS.slaveName = "Buck", _HS.birthName = "Buck", _HS.genes = "XY", _HS.origin = "$He was a soldier before being enslaved.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 90, 0, 0, 0), _HS.devotion = -100, _HS.muscles = 50, _HS.height = 190, _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 0, _HS.prostate = 1, _HS.hStyle = "shaved", _HS.waist = -55, _HS.boobs = 100, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.face = 15, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.analArea = 1, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.navelPiercing = 1, _HS.skill.combat = 1, _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.behavioralFlaw = "bitchy", _HS.career = "a soldier">>
 <<set $heroSlaves.push(_HS)>>
 /*dickskilled*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "'Udders' Erika", _HS.birthName = "Erika", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = -10, _HS.devotion = 55, _HS.height = 145, _HS.eye.origColor = "blue", _HS.origSkin = "fair", _HS.hStyle = "long", _HS.pubicHStyle = "in a strip", _HS.boobs = 1250, _HS.areolae = 2, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 2, _HS.buttTat = "bovine patterns", _HS.lips = 55, _HS.lipsImplant = 10, _HS.lipsTat = "bovine patterns", _HS.vagina = -1, _HS.vaginaTat = "bovine patterns", _HS.preg = -3, _HS.clitPiercing = 3, _HS.clitSetting = "boobs", _HS.anus = 2, _HS.dick = 1, _HS.dickTat = "bovine patterns", _HS.prostate = 1, _HS.anusTat = "bovine patterns", _HS.nosePiercing = 2, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 35, _HS.collar = "leather with cowbell", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.desc = "Though $his vocal cords have been altered to keep $him from speaking, $he is still capable of the occasional moo.">>
+<<set _HS.slaveName = "'Udders' Erika", _HS.birthName = "Erika", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, -10), _HS.devotion = 55, _HS.height = 145, _HS.eye.origColor = "blue", _HS.origSkin = "fair", _HS.hStyle = "long", _HS.pubicHStyle = "in a strip", _HS.boobs = 1250, _HS.areolae = 2, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 2, _HS.buttTat = "bovine patterns", _HS.lips = 55, _HS.lipsImplant = 10, _HS.lipsTat = "bovine patterns", _HS.vagina = -1, _HS.vaginaTat = "bovine patterns", _HS.preg = -3, _HS.clitPiercing = 3, _HS.clitSetting = "boobs", _HS.anus = 2, _HS.dick = 1, _HS.dickTat = "bovine patterns", _HS.prostate = 1, _HS.anusTat = "bovine patterns", _HS.nosePiercing = 2, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 35, _HS.collar = "leather with cowbell", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.desc = "Though $his vocal cords have been altered to keep $him from speaking, $he is still capable of the occasional moo.">>
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Danny 'The D'", _HS.slaveSurname = "Ildoe", _HS.birthName = "Danny 'The D'", _HS.birthSurname = "Ildoe", _HS.origin = "Born without limbs and abandoned by $his parents, $he was taken in by a posh family, given a massive cock, and trained to be the wealthy lady's perfect living sex toy.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.visualAge = 28, _HS.physicalAge = 28, _HS.ovaryAge = 28, _HS.health = 100, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 94, _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 10, _HS.hStyle = "short", _HS.waist = 55, _HS.boobs = 50, _HS.hips = -1, _HS.butt = 0, _HS.face = 45, _HS.vagina = -1, _HS.preg = 0, _HS.dick = 6, _HS.balls = 10, _HS.scrotum = 7, _HS.prostate = 2, _HS.anusTat = "bleached", _HS.energy = 95, _HS.intelligenceImplant = 30, _HS.attrXX = 100, _HS.attrXY = 0, _HS.skill.oral = 95, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.behavioralQuirk = "advocate">>
+<<set _HS.slaveName = "Danny 'The D'", _HS.slaveSurname = "Ildoe", _HS.birthName = "Danny 'The D'", _HS.birthSurname = "Ildoe", _HS.origin = "Born without limbs and abandoned by $his parents, $he was taken in by a posh family, given a massive cock, and trained to be the wealthy lady's perfect living sex toy.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.visualAge = 28, _HS.physicalAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 50, _HS.height = 94, _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 10, _HS.hStyle = "short", _HS.waist = 55, _HS.boobs = 50, _HS.hips = -1, _HS.butt = 0, _HS.face = 45, _HS.vagina = -1, _HS.preg = 0, _HS.dick = 6, _HS.balls = 10, _HS.scrotum = 7, _HS.prostate = 2, _HS.anusTat = "bleached", _HS.energy = 95, _HS.intelligenceImplant = 30, _HS.attrXX = 100, _HS.attrXY = 0, _HS.skill.oral = 95, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.behavioralQuirk = "advocate">>
 <<run App.Utils.removeHeroLimbs(_HS, "all")>>
 <<set $heroSlaves.push(_HS)>>
 /* needed an amputated slave for debug reasons -prndev */
@@ -190,6 +190,6 @@
 
 /*
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "STANDARD", _HS.birthName = "STANDARD", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.origSkin = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.hLength = 20, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.anusTat = "bleached", _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1>>
+<<set _HS.slaveName = "STANDARD", _HS.birthName = "STANDARD", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 60, _HS.origSkin = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.hLength = 20, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.anusTat = "bleached", _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1>>
 <<set $heroSlaves.push(_HS)>>
 */
diff --git a/src/npc/databases/dfSlavesDatabase.tw b/src/npc/databases/dfSlavesDatabase.tw
index 041dd3614a4743b08493f9b60a75c6086eafefd2..cbd3291ad2e774fd2b09c3838b6c1538f4b35a94 100644
--- a/src/npc/databases/dfSlavesDatabase.tw
+++ b/src/npc/databases/dfSlavesDatabase.tw
@@ -2,48 +2,48 @@
 
 <<set _i = 700000>>
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Cherry", _HS.birthName = "Cherry", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 75, _HS.actualAge = 18, _HS.physicalAge = 18, _HS.visualAge = 18, _HS.ovaryAge = 18, _HS.eye.origColor = "light brown", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.origHColor = "black", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Two cherries are tattooed on $his left cheek.", _HS.buttTat = "Two cherries are tattooed on $his right butt cheek.", _HS.clitPiercing = 2, _HS.counter.birthsTotal = 1>>
+<<set _HS.slaveName = "Cherry", _HS.birthName = "Cherry", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 75, _HS.actualAge = 18, _HS.physicalAge = 18, _HS.visualAge = 18, _HS.ovaryAge = 18, _HS.eye.origColor = "light brown", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.origHColor = "black", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Two cherries are tattooed on $his left cheek.", _HS.buttTat = "Two cherries are tattooed on $his right butt cheek.", _HS.clitPiercing = 2, _HS.counter.birthsTotal = 1>>
 /*vag implant, vibe nips*/
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Strawberry", _HS.birthName = "Strawberry", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 30, _HS.physicalAge = 30, _HS.visualAge = 30, _HS.ovaryAge = 30, _HS.health = 20, _HS.devotion = 40, _HS.height = 175, _HS.eye.origColor = "dark brown", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.boobs = 1000, _HS.boobsImplant = 400, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.buttImplant = 2, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.lipsTat = "Strawberries are tattooed on $his left cheek.", _HS.buttTat = "Strawberries are tattooed on $his right buttock.", _HS.clitPiercing = 2, _HS.counter.birthsTotal = 2>>
+<<set _HS.slaveName = "Strawberry", _HS.birthName = "Strawberry", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 30, _HS.physicalAge = 30, _HS.visualAge = 30, _HS.ovaryAge = 30, setHealth(_HS, 20), _HS.devotion = 40, _HS.height = 175, _HS.eye.origColor = "dark brown", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.boobs = 1000, _HS.boobsImplant = 400, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.buttImplant = 2, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.lipsTat = "Strawberries are tattooed on $his left cheek.", _HS.buttTat = "Strawberries are tattooed on $his right buttock.", _HS.clitPiercing = 2, _HS.counter.birthsTotal = 2>>
 /*vibe nips, muscles*/
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Melon", _HS.birthName = "Melon", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 50, _HS.height = 175, _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 10, _HS.hStyle = "short", _HS.pubicHStyle = "waxed", _HS.boobs = 1800, _HS.boobsImplant = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Watermelons are tattooed on $his face.", _HS.buttTat = "Watermelons are tattooed on $his buttocks.", _HS.teeth = "removable", _HS.clitPiercing = 2, _HS.lipsPiercing = 2, _HS.counter.birthsTotal = 1>>
+<<set _HS.slaveName = "Melon", _HS.birthName = "Melon", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 20), _HS.devotion = 50, _HS.height = 175, _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 10, _HS.hStyle = "short", _HS.pubicHStyle = "waxed", _HS.boobs = 1800, _HS.boobsImplant = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Watermelons are tattooed on $his face.", _HS.buttTat = "Watermelons are tattooed on $his buttocks.", _HS.teeth = "removable", _HS.clitPiercing = 2, _HS.lipsPiercing = 2, _HS.counter.birthsTotal = 1>>
 /*vibe nips, saliva implant*/
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Carambola", _HS.birthName = "Carambola", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health = 20, _HS.devotion = 90, _HS.height = 175, _HS.eye.origColor = "light green", _HS.origHColor = "dark blonde", _HS.pubicHColor = "dark blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 60, _HS.hStyle = "curly and long, and in pigtails", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 8, _HS.buttImplant = 4, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.lipsTat = "Carambolas — starfruits — are tattooed on $his face.", _HS.buttTat = "Carambolas — starfruits — are tattooed on $his buttocks.", _HS.clitPiercing = 2, _HS.tonguePiercing = 1, _HS.clothes = "no clothing", _HS.collar = "bell collar", _HS.heels = 1>>
+<<set _HS.slaveName = "Carambola", _HS.birthName = "Carambola", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, setHealth(_HS, 20), _HS.devotion = 90, _HS.height = 175, _HS.eye.origColor = "light green", _HS.origHColor = "dark blonde", _HS.pubicHColor = "dark blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 60, _HS.hStyle = "curly and long, and in pigtails", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 8, _HS.buttImplant = 4, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.lipsTat = "Carambolas — starfruits — are tattooed on $his face.", _HS.buttTat = "Carambolas — starfruits — are tattooed on $his buttocks.", _HS.clitPiercing = 2, _HS.tonguePiercing = 1, _HS.clothes = "no clothing", _HS.collar = "bell collar", _HS.heels = 1>>
 /*vibe nips, saliva implant lube*/
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Banana", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 20, _HS.devotion = 65, _HS.race = "latina", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.lips = 35, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Bananas are tattooed on $his face.", _HS.buttTat = "Bananas are tattooed on $his buttocks.", _HS.teeth = "removable", _HS.clitPiercing = 2, _HS.hips = 1, _HS.labia = 2, _HS.clit = 1, _HS.bald = 1, _HS.hStyle = "bald", _HS.pubicHStyle = "bald", _HS.underArmHStyle = "bald", _HS.intelligence = -30>>
+<<set _HS.slaveName = "Banana", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 20), _HS.devotion = 65, _HS.race = "latina", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.lips = 35, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Bananas are tattooed on $his face.", _HS.buttTat = "Bananas are tattooed on $his buttocks.", _HS.teeth = "removable", _HS.clitPiercing = 2, _HS.hips = 1, _HS.labia = 2, _HS.clit = 1, _HS.bald = 1, _HS.hStyle = "bald", _HS.pubicHStyle = "bald", _HS.underArmHStyle = "bald", _HS.intelligence = -30>>
 /*vibe nips, big pusslips+clit*/
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Green Grape", _HS.birthName = "Green Grape", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 40, _HS.actualAge = 18, _HS.physicalAge = 18, _HS.visualAge = 18, _HS.ovaryAge = 18, _HS.race = "mixed race", _HS.eye.origColor = "green", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Green grapes are tattooed on $his face.", _HS.buttTat = "Green grapes are tattooed on $his buttocks.", _HS.mother = -9995, _HS.father = -9994, _HS.clitPiercing = 2, _HS.intelligence = -60>>
+<<set _HS.slaveName = "Green Grape", _HS.birthName = "Green Grape", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 40, _HS.actualAge = 18, _HS.physicalAge = 18, _HS.visualAge = 18, _HS.ovaryAge = 18, _HS.race = "mixed race", _HS.eye.origColor = "green", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Green grapes are tattooed on $his face.", _HS.buttTat = "Green grapes are tattooed on $his buttocks.", _HS.mother = -9995, _HS.father = -9994, _HS.clitPiercing = 2, _HS.intelligence = -60>>
 /*vibe nips, implant link to sister*/
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Purple Grape", _HS.birthName = "Purple Grape", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 40, _HS.race = "mixed race", _HS.eye.origColor = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 60, _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Purple grapes are tattooed on $his face.", _HS.buttTat = "Purple grapes are tattooed on $his buttocks.", _HS.mother = -9995, _HS.father = -9994, _HS.clitPiercing = 2, _HS.intelligence = -60>>
+<<set _HS.slaveName = "Purple Grape", _HS.birthName = "Purple Grape", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 20), _HS.devotion = 40, _HS.race = "mixed race", _HS.eye.origColor = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 60, _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Purple grapes are tattooed on $his face.", _HS.buttTat = "Purple grapes are tattooed on $his buttocks.", _HS.mother = -9995, _HS.father = -9994, _HS.clitPiercing = 2, _HS.intelligence = -60>>
 /*vibe nips, implant link to sister
 <<set $heroSlaves.push(_HS)>>
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Apple", _HS.birthName = "Apple", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 20, _HS.devotion = 75, _HS.muscles = 20, _HS.eye.origColor = "dark brown", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.origHColor = "black", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 55, _HS.lipsTat = "permanent makeup", _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Cored apples are tattooed on $his face.", _HS.buttTat = "Cored apples are tattooed $his on buttocks.", _HS.intelligence = -60, _HS.clitPiercing = 2>>
+<<set _HS.slaveName = "Apple", _HS.birthName = "Apple", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 20), _HS.devotion = 75, _HS.muscles = 20, _HS.eye.origColor = "dark brown", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.origHColor = "black", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 55, _HS.lipsTat = "permanent makeup", _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Cored apples are tattooed on $his face.", _HS.buttTat = "Cored apples are tattooed $his on buttocks.", _HS.intelligence = -60, _HS.clitPiercing = 2>>
 /*vibe nips, stupid, sensitive, no masturb implant*/
 <<set $heroSlaves.push(_HS)>>
 
 <<if $seeExtreme == 1>>
 	<<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-	<<set _HS.slaveName = "Plum", _HS.birthName = "Plum", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 20, _HS.devotion = 75, _HS.muscles = 30, _HS.weight = 20, _HS.eye.origColor = "brown", _HS.origHColor = "brown", _HS.origSkin = "pale", _HS.hLength = 20, _HS.hStyle = "short and wavy", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.lips = 35, _HS.vagina = 4, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Cored plums are tattooed on $his face.", _HS.buttTat = "Cored plums are tattooed on $his buttocks.", _HS.custom.desc = "$He has massive C-clamp piercings in $his back that allow $him to act as furniture, and a truly enormous vagina.", _HS.clitPiercing = 2, _HS.corsetPiercing = 1, _HS.sexualFlaw = "self hating", _HS.clothes = "no clothing", _HS.vaginalAccessory = "long, huge dildo">>
+	<<set _HS.slaveName = "Plum", _HS.birthName = "Plum", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 20), _HS.devotion = 75, _HS.muscles = 30, _HS.weight = 20, _HS.eye.origColor = "brown", _HS.origHColor = "brown", _HS.origSkin = "pale", _HS.hLength = 20, _HS.hStyle = "short and wavy", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.lips = 35, _HS.vagina = 4, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Cored plums are tattooed on $his face.", _HS.buttTat = "Cored plums are tattooed on $his buttocks.", _HS.custom.desc = "$He has massive C-clamp piercings in $his back that allow $him to act as furniture, and a truly enormous vagina.", _HS.clitPiercing = 2, _HS.corsetPiercing = 1, _HS.sexualFlaw = "self hating", _HS.clothes = "no clothing", _HS.vaginalAccessory = "long, huge dildo">>
 	/*vibe nips, can act as furniture*/
 	<<set $heroSlaves.push(_HS)>>
 <</if>>
diff --git a/src/npc/descriptions/fBellyFuck.tw b/src/npc/descriptions/fBellyFuck.tw
index fa95e1a0564f186e7d9f091d25fd01706d7b64d5..06617e62d81c35ef0ff954c14fdcfeb8a6798914 100644
--- a/src/npc/descriptions/fBellyFuck.tw
+++ b/src/npc/descriptions/fBellyFuck.tw
@@ -85,7 +85,7 @@ When you get to $his rear, you slap $his
 and then spread $his cheeks for easier access to $his <<if canDoVaginal($activeSlave)>>cunt. <<= VCheck.Vaginal()>><<else>>asshole. <<= VCheck.Anal()>><</if>> Heaving upward, you push $him fully onto $his belly, then lean into $him, fucking $him in a unique spin on the wheelbarrow position<<if $PC.dick == 0>> with your strap-on<</if>> and setting $his tightly packed gut to jiggling. $He moans in mixed pain and pleasure as you bring $him over the edge and, by the time you finish with $him and allow $him to return to $his duties, it's clear
 <<if $activeSlave.belly > $activeSlave.pregAdaptation*2000>>
 	that your recent escapades @@.red;have done lasting damage to $his body.@@
-	<<set $activeSlave.health -= 10>>
+	<<run healthDamage($activeSlave, 10)>>
 <<else>>
 	that you've left $him thoroughly exhausted.
 <</if>>
diff --git a/src/npc/descriptions/limbs.js b/src/npc/descriptions/limbs.js
index a14dbde94824329b1618b24a7d57a731bd6bc1b7..960873ce585ba186034e0175768fe1008c7d976f 100644
--- a/src/npc/descriptions/limbs.js
+++ b/src/npc/descriptions/limbs.js
@@ -53,7 +53,8 @@ App.Desc.limbChange = function() {
 		if (slave.PLimb < 1 && isProstheticAvailable(slave, "interfaceP1")) {
 			implant = true;
 			r += `<<link "Install basic interface">>` +
-				`<<set $activeSlave.PLimb = 1, $activeSlave.health -= 10>>` +
+				`<<set $activeSlave.PLimb = 1>>
+				<<run healthDamage($activeSlave, 10)>>` +
 				`<<replace "#amputate">><<= App.Desc.limbChange().prosthetic($activeSlave, ${JSON.stringify(oldLimbs)}, "${returnTo}")>><</replace>>` +
 				`<</link>>`;
 		}
@@ -63,7 +64,8 @@ App.Desc.limbChange = function() {
 			}
 			implant = true;
 			r += `<<link "Install advanced interface">>` +
-				`<<set $activeSlave.PLimb = 2, $activeSlave.health -= 10>>` +
+				`<<set $activeSlave.PLimb = 2>>
+				<<run healthDamage($activeSlave, 10)>>` +
 				`<<replace "#amputate">><<= App.Desc.limbChange().prosthetic($activeSlave, ${JSON.stringify(oldLimbs)}, "${returnTo}")>><</replace>>` +
 				`<</link>>`;
 		}
diff --git a/src/npc/fAbuse.tw b/src/npc/fAbuse.tw
index e298e324c1ebfb4e66741d7c28d38f62bedce507..cc555d2733daa7d4d6fe4a01e4f729e9db263d33 100644
--- a/src/npc/fAbuse.tw
+++ b/src/npc/fAbuse.tw
@@ -440,7 +440,7 @@ from your victim.
 
 <<if $activeSlave.bellyPreg >= 600000>>
 	The rough fucking was @@.red;very unhealthy@@ for $his massive pregnancy.
-	<<set $activeSlave.health -= 40>>
+	<<run healthDamage($activeSlave, 40)>>
 <</if>>
 
 <<if ($activeSlave.ID == $Bodyguard.ID)>>
diff --git a/src/npc/fFeelings.tw b/src/npc/fFeelings.tw
index 60d4dff434d2e56c19f4a69b35ba31765e7487cd..fd5dd83f8acbf86204290c56f8d60c2a9f1cbc77 100644
--- a/src/npc/fFeelings.tw
+++ b/src/npc/fFeelings.tw
@@ -92,8 +92,8 @@
 	<</if>>
 <</if>>
 
-<<if $activeSlave.devotion > 50 && $activeSlave.health < -20>>
-	I feel <<if $activeSlave.health < -50>>really <</if>><<s>>ick, <<Master>>.
+<<if $activeSlave.devotion > 50 && $activeSlave.health.condition < -20>>
+	I feel <<if $activeSlave.health.condition < -50>>really <</if>><<s>>ick, <<Master>>.
 	<<if $activeSlave.trust > 20>>
 		I wi<<sh>> you could give me <<s>>omething to ea<<s>>e the pain.
 	<</if>>
@@ -782,7 +782,7 @@ My favorite part of my body i<<s>>
 
 <<if ($activeSlave.curatives > 1) || $activeSlave.inflationType == "curative">>
 	<<if $activeSlave.inflationType == "curative">>
-		<<if ($activeSlave.health < 0)>>
+		<<if ($activeSlave.health.condition < 0)>>
 			I don't feel good, but I can almo<<s>>t feel the curative<<s>> fi<<x>>ing me, even if the belly i<<s>> a little uncomfortable. Thank you, <<Master>>.
 		<<elseif ($activeSlave.physicalAge > 35)>>
 			I can almo<<s>>t feel the curative<<s>> working. They make me feel like a young, pregnant $girl! Thank you, <<Master>>.
@@ -790,7 +790,7 @@ My favorite part of my body i<<s>>
 			I can almo<<s>>t feel the curative<<s>> working. They're pretty incredible, even if the belly i<<s>> a little uncomfortable. Thank you, <<Master>>.
 		<</if>>
 	<<else>>
-	<<if ($activeSlave.health < 0)>>
+	<<if ($activeSlave.health.condition < 0)>>
 		I don't feel good, but I can almo<<s>>t feel the curative<<s>> fi<<x>>ing me. Thank you, <<Master>>.
 	<<elseif ($activeSlave.physicalAge > 35)>>
 		I can almo<<s>>t feel the curative<<s>> working. They make me feel <<s>>o young! Thank you, <<Master>>.
diff --git a/src/npc/rgASDump.tw b/src/npc/rgASDump.tw
index 34235efc79e346283f776b6a55c6471b538a7d47..fa63877df97b3da88466b20eb3226f59231d9398 100644
--- a/src/npc/rgASDump.tw
+++ b/src/npc/rgASDump.tw
@@ -54,7 +54,7 @@
 		<<set $activeSlave.trust += 10>>
 		<<set $activeSlave.devotion += 10>>
 	<<elseif $PC.career == "gang">>
-		<<set $activeSlave.health += 5>>
+		<<run increaseCondition($activeSlave, 5)>>
 		<<if $activeSlave.skill.combat < 1>>
 			<<set $activeSlave.skill.combat += 1>>
 		<</if>>
diff --git a/src/npc/slaveStats.tw b/src/npc/slaveStats.tw
index 14cce3d7f2886760418437f9d94171f698026337..32dd435a3389b11fef6f6cc38551f5e472e20d73 100644
--- a/src/npc/slaveStats.tw
+++ b/src/npc/slaveStats.tw
@@ -147,7 +147,12 @@ Income: <<= num($activeSlave.lastWeeksRepIncome)>>
 
 <div id="Body" class="tabcontent">
 	<div class="content">
-		Health: $activeSlave.health,
+		Health: $activeSlave.health.health,
+		Condition: $activeSlave.health.condition,
+		ShortDamage: $activeSlave.health.shortDamage,
+		LongDamage: $activeSlave.health.longDamage,
+		Illness: $activeSlave.health.illness,
+		Tired: $activeSlave.health.tired,
 		MinorInjury: $activeSlave.minorInjury
 
 		<br><br>Markings: $activeSlave.markings
diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw
index fe0be4eb769be113a222cb03d074d8565519a003..f9a534b3b5f8f5d625668584e1781f0b8360f56a 100644
--- a/src/npc/startingGirls/startingGirls.tw
+++ b/src/npc/startingGirls/startingGirls.tw
@@ -569,8 +569,8 @@ __You are customizing this slave:__
 <</if>>
 
 <br>
-<<options $activeSlave.health>>
-	''Health:''
+<<options $activeSlave.health.condition>>
+	''Condition:''
 	<<optionlt -20 -40 "Unhealthy">>
 		@@.red;Unhealthy.@@
 	<<optionlt 20 0 "Healthy">>
@@ -1706,7 +1706,7 @@ __You are customizing this slave:__
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<link "Wellspring">>
 		<<StartingGirlsWorkaround>>
-		<<set $activeSlave.skill.anal = 0, $activeSlave.skill.oral = 0, $activeSlave.skill.vaginal = 0, $activeSlave.skill.whoring = 0, $activeSlave.skill.entertainment = 0, $activeSlave.skill.combat = 0, $activeSlave.actualAge = 18, $activeSlave.visualAge = 18, $activeSlave.physicalAge = 18, $activeSlave.fetishKnown = 0, $activeSlave.attrKnown = 0, $activeSlave.health = 10, $activeSlave.intelligence = -100, $activeSlave.intelligenceImplant = 0, $activeSlave.vagina = 3, $activeSlave.anus = 3, $activeSlave.ovaries = 1, $activeSlave.dick = 5, $activeSlave.balls = 5, $activeSlave.prostate = 1, $activeSlave.lactation = 2, $activeSlave.lactationDuration = 2, $activeSlave.nipples = "huge", $activeSlave.boobs = 10000>>
+		<<set $activeSlave.skill.anal = 0, $activeSlave.skill.oral = 0, $activeSlave.skill.vaginal = 0, $activeSlave.skill.whoring = 0, $activeSlave.skill.entertainment = 0, $activeSlave.skill.combat = 0, $activeSlave.actualAge = 18, $activeSlave.visualAge = 18, $activeSlave.physicalAge = 18, $activeSlave.fetishKnown = 0, $activeSlave.attrKnown = 0, $activeSlave.health.condition = 10, $activeSlave.intelligence = -100, $activeSlave.intelligenceImplant = 0, $activeSlave.vagina = 3, $activeSlave.anus = 3, $activeSlave.ovaries = 1, $activeSlave.dick = 5, $activeSlave.balls = 5, $activeSlave.prostate = 1, $activeSlave.lactation = 2, $activeSlave.lactationDuration = 2, $activeSlave.nipples = "huge", $activeSlave.boobs = 10000>>
 		<<goto "Starting Girls">>
 	<</link>>
 	//Capable of producing all kinds of useful fluids//
diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js
index 3bea6558fa7ee1abeb7d38e7066f66d2e39d19ba..09f3446a0071ef3ae385e8e3dab938e6ba6df45c 100644
--- a/src/player/js/PlayerState.js
+++ b/src/player/js/PlayerState.js
@@ -371,27 +371,47 @@ App.Entity.PlayerState = class PlayerState {
 		this.ageImplant = 0;
 		/** compatibility **/
 		this.devotion = 0;
-		/**
-		 * your health
-		 * * -90 - : On the edge of death
-		 * * -90 - -51: Extremely unhealthy
-		 * * -50 - -21: Unhealthy
-		 * * -20 -  20: Healthy
-		 * * 21  -  50: Very healthy
-		 * * 50  -  90: Extremely healthy
-		 * * 90  -  : Unnaturally healthy
-		 */
-		this.health = 100;
+		this.health = {
+			/**
+			 * your health
+			 * * -90 - : On the edge of death
+			 * * -90 - -51: Extremely unhealthy
+			 * * -50 - -21: Unhealthy
+			 * * -20 -  20: Healthy
+			 * * 21  -  50: Very healthy
+			 * * 50  -  90: Extremely healthy
+			 * * 90  -  : Unnaturally healthy
+			 */
+			condition: 0,
+			/** your short term health damage */
+			shortDamage: 0,
+			/** your long term health damage */
+			longDamage: 0,
+			/**
+			* your current illness status
+			* * 0 : Not ill
+			* * 1 : A little under the weather
+			* * 2 : Minor illness
+			* * 3 : Ill
+			* * 4 : serious illness
+			* * 5 : dangerous illness
+			*/
+			illness: 0,
+			/**
+			* your current level of exhaustion
+			* * 0  - 50 : Perfectly fine
+			* * 50 - 80 : tired
+			* * 80 - 100 : exhausted
+			*/
+			tired: 0,
+			/** your combined health (condition - short - long) */
+			health: 0
+		}
 		/**
 		 * you have a minor injury ("black eye", "bruise", "split lip")
 		 * @type {number | string}
 		 */
 		this.minorInjury = 0;
-		/**
-		 * you have a major injury (will replace the injured PC global)
-		 * @type {number | string}
-		 */
-		this.majorInjury = 0;
 		/**
 		 * you have a life-changing injury/malaise
 		 * @type {number | string}
diff --git a/src/pregmod/beastFucked.tw b/src/pregmod/beastFucked.tw
index 1794fc423de59eedd5184d3817763540321ca450..1c9603e791868fade6fd61133c39923155c5630d 100644
--- a/src/pregmod/beastFucked.tw
+++ b/src/pregmod/beastFucked.tw
@@ -289,7 +289,7 @@ before calling in the _animal.species. The _animal.species slowly saunters up to
 
 	<<if (!_used.vagina && _sexAct == "vaginal") || (!_used.anus && _sexAct == "anal")>>
 		The pain of having such a _animal.dickSize cock take $his <<if _sexAct == "anal">>anal <</if>>virginity has @@.red;damaged $his health.@@
-		<<set $activeSlave.health -= 5>>
+		<<run healthDamage($activeSlave, 5)>>
 	<</if>>
 <</if>>
 
@@ -378,7 +378,7 @@ before calling in the _animal.species. The _animal.species slowly saunters up to
 <<case "feline">>
 	The _animal.species begins to move, thrusting faster and faster. The $girl beneath can't stop a groan of pain from escaping $his lips as the barbs on its dick @@.red;rub the inside of $his _orifice raw.@@ After a few minutes of painful coupling, the _animal.species's thrusts finally slow, then stop completely. With a <<if _animal.species != "cat">>deep bellow<<else>>loud //meow//<</if>>, he finally dismounts, gives you a long look, then stalks off.
 
-	<<set $activeSlave.health -= 1>>
+	<<run healthDamage($activeSlave, 1)>>
 	<<switch _sexAct>>
 	<<case "vaginal">>
 		<<if $activeSlave.vagina < 2>>
diff --git a/src/pregmod/birthStorm.tw b/src/pregmod/birthStorm.tw
index 9c590a244b5b112f27497dc453a306bcca012690..770552a677b85945ea93dc2c70277d1fb03867eb 100644
--- a/src/pregmod/birthStorm.tw
+++ b/src/pregmod/birthStorm.tw
@@ -163,13 +163,13 @@ The remote surgery allows the removal of the pregnancy generator through convent
 	<<if $activeSlave.vagina < 6>>
 		<<set $activeSlave.vagina = 10>>
 	<</if>>
-	<<set $activeSlave.health -= 80>>
+	<<run healthDamage($activeSlave, 80)>>
 <<else>>
 	<<if lastPregRule($activeSlave,$defaultRules)>><<set $activeSlave.preg = -1>><<else>><<set $activeSlave.preg = 0>><</if>> /* I think, it's not logical to break her reproductive system out of repair, if she is only type 1 broodmother. In this case she have to birth only like 5-10 fully grown babies, others get progressively smaller. It's should be even smaller stress to body then for "normal" hyperpregnant with 15-20+ children - they have to birth them all at full size.*/
 	<<if $activeSlave.vagina < 6>>
 		<<set $activeSlave.vagina = 6>>
 	<</if>>
-	<<set $activeSlave.health -= 30>>
+	<<run healthDamage($activeSlave, 30)>>
 <</if>>
 
 <<if _curBabies > 0>>
diff --git a/src/pregmod/csec.tw b/src/pregmod/csec.tw
index c88c20fd20f7a74b87de0bd1241f919ba39bc6e7..e9981838782d48747e5890f45d8d7d597a86d9f9 100644
--- a/src/pregmod/csec.tw
+++ b/src/pregmod/csec.tw
@@ -553,11 +553,12 @@ Since $his <<if $activeSlave.mpreg == 1>>ass<<else>>vagina<</if>> was spared fro
 	<</if>>
 <<else>>
 	As with all surgery @@.red;$his health has been slightly affected.@@
-	<<set $activeSlave.health -= 5>>
+	<<run healthDamage($activeSlave, 5)>>
 <</if>>
 <<if $activeSlave.wombImplant == "restraint">>
 	The uterine support mesh built into $his womb was irreversibly damaged and had to be carefully extracted. Such an invasive surgery carried @@.red;major health complications.@@
-	<<set $activeSlave.health -= 30, $activeSlave.wombImplant = "none">>
+	<<set $activeSlave.wombImplant = "none">>
+	<<run healthDamage( $activeSlave, 30)>>
 <</if>>
 
 <<if $activeSlave.womb.length == 0>> /* Only if pregnancy is really ended... */
@@ -579,7 +580,7 @@ Since $his <<if $activeSlave.mpreg == 1>>ass<<else>>vagina<</if>> was spared fro
 		Since $he is already in surgery and $his body already stretched, it would be possible to preserve $his pregnant appearance via fillable implant.
 		<<link "Do it.">>
 			<<replace "#bir">>
-				<<if $PC.skill.medicine >= 100>><<set $activeSlave.health -= 5>><<else>><<set $activeSlave.health -= 10>><</if>>
+				<<if $PC.skill.medicine >= 100>><<run healthDamage($activeSlave, 5)>><<else>><<run healthDamage($activeSlave, 10)>><</if>>
 				Installation of belly implant is relatively simple procedure. Using the fact that $his body and internal organs have already adapted to pregnancy, it's possible to greatly expand the initial size of implant. $He will still look pregnant post surgery and recovery.
 				<br>
 				<<if ($activeSlave.devotion > 50)>>
diff --git a/src/pregmod/eliteSlave.tw b/src/pregmod/eliteSlave.tw
index aa53801c3ee2dabe65e5babfe7de91efd29405ab..78b94852c06e25ee9fd3346ef6ed7ad7003da2d2 100644
--- a/src/pregmod/eliteSlave.tw
+++ b/src/pregmod/eliteSlave.tw
@@ -42,10 +42,10 @@ You check to see if any potential breeding slaves are on auction. <<if $eliteAuc
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSPaternalist > 20>>
-	<<set $activeSlave.health = 100>>
+	<<run setHealth($activeSlave, 100, 0, 0, 0, 0)>>
 	<<set $activeSlave.intelligenceImplant = 30>>
 <<else>>
-	<<set $activeSlave.health = random(10,60)>>
+	<<run setHealth($activeSlave, jsRandom(10, 60), undefined, undefined, 0)>>
 	<<set $activeSlave.intelligenceImplant = either(0,15,30)>>
 <</if>>
 <<if $arcologies[0].FSSlimnessEnthusiast > 20>>
diff --git a/src/pregmod/eliteTakeOverResult.tw b/src/pregmod/eliteTakeOverResult.tw
index 6af38b3488ae78c689d6bdbc635cf3f866baf616..a4047f30a3dc13afa8ecbcdd2dc855d57e967479 100644
--- a/src/pregmod/eliteTakeOverResult.tw
+++ b/src/pregmod/eliteTakeOverResult.tw
@@ -155,7 +155,7 @@
 		<<set $activeSlave.intelligenceImplant = 30>>
 		<<set $activeSlave.skill.entertainment = 0>>
 		<<set $activeSlave.skill.whoring = 0>>
-		<<set $activeSlave.health = random(60,75)>>
+		<<run setHealth($activeSlave, jsRandom(60, 75), 0, 0, 0, jsRandom(0, 20))>>
 		<<set $activeSlave.canRecruit = 0>>
 		<<run newSlave($activeSlave)>> /* skip New Slave Intro */
 		<<set $activeSlave.recruiter = 0>> /* override New Slave Intro */
@@ -201,7 +201,7 @@
 		<<set $activeSlave.intelligenceImplant = 30>>
 		<<set $activeSlave.skill.entertainment = 0>>
 		<<set $activeSlave.skill.whoring = 0>>
-		<<set $activeSlave.health = random(60,75)>>
+		<<run setHealth($activeSlave, jsRandom(60, 75), 0, 0, 0, jsRandom(0, 20))>>
 		<<set $activeSlave.canRecruit = 0>>
 		<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 		<<run newSlave($activeSlave)>> /* skip New Slave Intro */
diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw
index a49c14148e49e086715d015c7ab4859cccc08b93..3f728846a71541bcf65a12774b2de2ba93bdffa6 100644
--- a/src/pregmod/fSlaveFeed.tw
+++ b/src/pregmod/fSlaveFeed.tw
@@ -763,7 +763,7 @@ Next, you see to $activeSlave.slaveName.
 
 	<<if $activeSlave.inflation == 3>>
 		<<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his over-stuffed belly as $he goes<<else>>$His belly is so taut it barely wobbles at all as $he is helped from your office<</if>>. Being filled so full @@.red;surely had negative effects@@ on $his health.
-		<<set $activeSlave.health -= 1>>
+		<<run healthDamage($activeSlave, 1)>>
 	<<elseif $activeSlave.inflation == 2>>
 		<<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his stuffed belly as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>.
 	<<elseif $activeSlave.inflation == 1>>
diff --git a/src/pregmod/fSlaveSlaveDickConsummate.tw b/src/pregmod/fSlaveSlaveDickConsummate.tw
index b01264c78161d6761532b804b079bb160628fe54..84d054c0509027d6e29d0bf9141a3560c45ed05d 100644
--- a/src/pregmod/fSlaveSlaveDickConsummate.tw
+++ b/src/pregmod/fSlaveSlaveDickConsummate.tw
@@ -394,7 +394,7 @@ You call $slaverapistx.slaveName into the room.
 		<</if>>
 	<</if>> /* closes losing virginity */
 	_He2 begins playing with $him immediately, slapping, pinching and licking $his boobs while bouncing on the meaty shaft. Occasionally _he2 stops, denying $activeSlave.slaveName release by painfully squeezing and smacking the sensitive shaft. By the end of the session $activeSlave.slaveName's abused, pent-up penis has shot several massive and painful loads into the blissfully satisfied $slaverapistx.slaveName, leaving $him lying on the bed, shaking in horror and @@.red;utter exhaustion,@@ while $slaverapistx.slaveName reaps the opportunity to continue painfully tormenting $him.
-	<<set $activeSlave.health -= 10>>
+	<<run healthDamage($activeSlave, 10)>>
 	<<set $activeSlave.counter.penetrative += 3, $penetrativeTotal += 3, $slaverapistx.counter.vaginal += 3, $vaginalTotal += 3>>
 
 <<elseif ($slaverapistx.energy > 95) && ($slaverapistx.devotion > 20)>>
diff --git a/src/pregmod/fillUpButt.tw b/src/pregmod/fillUpButt.tw
index 8c19c33858eb4c60c18364bb308d6c28246ca28b..82d69722e21cfdb15b408270f447eb024c9fe9dc 100644
--- a/src/pregmod/fillUpButt.tw
+++ b/src/pregmod/fillUpButt.tw
@@ -373,7 +373,7 @@ before shoving the equipment into $his
 	<<set $activeSlave.inflation += 1>>
 	<<if $activeSlave.inflation == 3>>
 		<<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his bloated guts as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>. Being filled so full @@.red;surely had negative effects@@ on $his health.
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 	<<elseif $activeSlave.inflation == 2>>
 		<<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his full guts as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>.
 	<<elseif $activeSlave.inflation == 1>>
diff --git a/src/pregmod/fillUpFace.tw b/src/pregmod/fillUpFace.tw
index 65837d3d565b3f5015fb518ff3bee0d00b84adb1..61f4953fada8e96791e7110fcacb63fde8ea18fb 100644
--- a/src/pregmod/fillUpFace.tw
+++ b/src/pregmod/fillUpFace.tw
@@ -218,7 +218,7 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.infl
 	<<set $activeSlave.inflation += 1>>
 	<<if $activeSlave.inflation == 3>>
 		<<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his over-stuffed belly as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>. Being filled so full @@.red;surely had negative effects@@ on $his health.
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 	<<elseif $activeSlave.inflation == 2>>
 		<<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his stuffed belly as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>.
 	<<elseif $activeSlave.inflation == 1>>
diff --git a/src/pregmod/forceFeeding.tw b/src/pregmod/forceFeeding.tw
index 6311876a9d0833c4b04d6a66f579d6f02a30005c..7c0a93541868d0b11124cf860fddc9ad094d24db 100644
--- a/src/pregmod/forceFeeding.tw
+++ b/src/pregmod/forceFeeding.tw
@@ -532,7 +532,7 @@ and a little jiggle from $his gut.
 			$His belly wobbles heavily as $he is helped from your office.
 		<</if>>
 		Being filled so full @@.red;surely had negative effects@@ on $his health.
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 	<<elseif $activeSlave.inflation == 2>>
 		<<if canWalk($activeSlave)>>
 			$He gingerly leaves your office, massaging $his stuffed belly as $he goes.
diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw
index 358a8498d2ffc29c33d722e06e384e7ca6330cb7..9ff44d24bfc63d850bde1d3546c432293ed53a19 100644
--- a/src/pregmod/newChildIntro.tw
+++ b/src/pregmod/newChildIntro.tw
@@ -661,7 +661,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 <<set $activeSlave.brand[_brandTarget] = $brandDesign.primary>>
 <<set $activeSlave.devotion -= 25>>
 <<set $activeSlave.trust -= 30>>
-<<set $activeSlave.health -= 20>>
+<<run healthDamage($activeSlave, 20)>>
 <<replace "#result">>
 	You drag $him to the body modification studio and strap $him down with $his _brandTarget clear and defenseless. $He doesn't understand what's on, becoming even more confused as disinfectant is applied to $his _brandTarget. $He can't see the approaching brand, <<if !canSee($activeSlave)>>of course, <</if>>but eventually $he feels the radiated heat on $his skin and manages to get one inarticulate, wordless noise of terror out before the dreadful sizzling noise and the sweet smell of burning flesh. If $he trusted you at all before, @@.mediumorchid;$he doesn't now,@@ and $he's got the @@.gold;agonizing@@ @@.red;injury@@ to remind $him should $he start to forget.
 	<<if ($arcologies[0].FSSubjugationistRace == $activeSlave.race) && ($arcologies[0].FSSubjugationist > 0)>>
@@ -995,9 +995,9 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 	<</if>>
 <</if>>
 
-<<if $activeSlave.health < -20>>
+<<if $activeSlave.health.condition < -20>>
 	<br><<link "Address $his medical issues">>
-	<<set $activeSlave.health += 10>>
+	<<run improveCondition($activeSlave, 10)>>
 	<<set $activeSlave.trust += 4>>
 	<<replace "#result">>
 		Since $he came out of the tank rather unhealthy, you give $him a comprehensive medical exam with the help of the remote surgery. You apply care to @@.green;address@@ some of the most outstanding concerns. After the checkup, $he happily @@.mediumaquamarine;expresses $his thanks@@ for making $him feel better.
@@ -1014,7 +1014,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 <<if $activeSlave.balls > 0>>
 	<br><<link "Geld $him">>
 	<<set $activeSlave.balls = 0>>
-	<<set $activeSlave.health -= 10>>
+	<<run healthDamage($activeSlave, 10)>>
 	<<set $activeSlave.trust -= 100>>
 	<<replace "#result">>
 		You escort $him to the remote surgery and strap $him face-down with $his legs spread. $He doesn't understand what's happening, but giggles at the sensations running through $his numb body. $He's so drugged and drowsy with @@.red;surgical recovery@@ that it takes a while for $him to figure out what's happened. When $he does, $his poor mind scarcely processes the @@.gold;horror@@ of what's happened. $He spends the rest of the week dimly trying to find where $his balls went.
@@ -1035,7 +1035,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 		<br><<link "Clip $his Achilles tendons">>
 		<<set $activeSlave.heels = 1>>
 		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<set $activeSlave.trust -= 5>>
 		<<replace "#result">>
 			You escort $him to the remote surgery and strap $him face-down with $his legs bare. $He doesn't understand what's coming for a while, but giggles as $his lower legs are carefully cleaned and disinfected. $He can't see the approaching surgical manipulators, <<if !canSee($activeSlave)>>of course, <</if>>but eventually $he feels a tugging at $his lower legs even through the local anesthetic. $He gets one squeal of protest out before the surgery begins to apply healing agents. $He now requires special heels to walk, and will @@.gold;remember your power@@ with every @@.red;painful@@ step $he takes. $He seems @@.hotpink;inappropriately happy@@ about getting to wear pretty shoes when $he can no longer walk without them.
@@ -1052,7 +1052,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 			<<set $activeSlave.pregType = 0>>
 			<<set $activeSlave.ovaries = 0>>
 			<<set $activeSlave.devotion -= 100>>
-			<<set $activeSlave.health -= 10>>
+			<<run healthDamage($activeSlave, 10)>>
 			<<set $activeSlave.trust -= 100>>
 			<<replace "#result">>
 				You escort $him to the remote surgery and strap $him face-up with $his stomach bare. $He doesn't understand what's coming for a while, even giggling as $his belly is carefully cleaned and disinfected. $He begins to panic at the <<if canSee($activeSlave)>>sight<<elseif canHear($activeSlave)>>sound<<else>>touch<</if>> of the approaching surgical manipulators, screaming out as they cut into $his abdomen. $He squeals in horror as $his womb and ovaries are extracted before $his eyes. $He will never<<if $activeSlave.counter.birthsTotal > 0>> again<</if>> bear children, and will @@.mediumorchid;remember $his status@@ with every fucking $he receives. Your absolute power is rightfully @@.gold;terrifying@@ to $his undeveloped mind.
@@ -1294,7 +1294,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 		<<set $activeSlave.boobs += 4000>>
 		<<set $activeSlave.boobsImplant += 4000>>
 		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<set $activeSlave.boobShape = "normal">>
 		<<replace "#result">>
 			You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't <<if hasAnyArms($activeSlave)>>keep $his hand<<if hasBothArms($activeSlave)>>s<</if>> off<<else>>stop shaking around<</if>> $his new ridiculous fake tits. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of giant breasts hanging from $his stretched chest and @@.mediumaquamarine;hopes@@ you have plans to make them even bigger, even though $he is already struggling to keep upright. As with all surgery @@.red;$his health has been slightly affected.@@
@@ -1307,7 +1307,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 		<<set $activeSlave.boobsImplant += 7500>>
 		<<set $activeSlave.boobsImplantType = 1>>
 		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<set $activeSlave.boobShape = "normal">>
 		<<replace "#result">>
 			You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't <<if hasAnyArms($activeSlave)>>keep $his hand<<if hasBothArms($activeSlave)>>s<</if>> off<<else>>stop shaking around<</if>> $his new ridiculous fake tits. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of monster breasts straining $his chest and @@.mediumaquamarine;bounces cheerfully@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> they'll keep growing, despite $his near inability to stay upright. As with all surgery @@.red;$his health has been slightly affected.@@
@@ -1320,7 +1320,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 		<<set $activeSlave.boobs += 1000>>
 		<<set $activeSlave.boobsImplant += 1000>>
 		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<set $activeSlave.boobShape = "normal">>
 		<<replace "#result">>
 			You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't <<if hasAnyArms($activeSlave)>>keep $his hand<<if hasBothArms($activeSlave)>>s<</if>> off<<else>>stop shaking around<</if>> $his new fake balloons. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of big breasts hanging from $his chest and @@.mediumaquamarine;hopes@@ you have plans to make them even bigger. As with all surgery @@.red;$his health has been slightly affected.@@
@@ -1333,7 +1333,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 		<<set $activeSlave.boobsImplant += 1500>>
 		<<set $activeSlave.boobsImplantType = 1>>
 		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<set $activeSlave.boobShape = "normal">>
 		<<replace "#result">>
 			You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't <<if hasAnyArms($activeSlave)>>keep $his hand<<if hasBothArms($activeSlave)>>s<</if>> off<<else>>stop shaking around<</if>> $his new fake balloons. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of big breasts hanging from $his chest and @@.mediumaquamarine;bounces cheerfully@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> they'll keep growing. As with all surgery @@.red;$his health has been slightly affected.@@
@@ -1362,7 +1362,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 			<<set $activeSlave.trust += 25>>
 			<<set $activeSlave.bellyImplant = 200000>>
 			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-			<<set $activeSlave.health -= 50>>
+			<<run healthDamage($activeSlave, 50)>>
 			<<run SetBellySize($activeSlave)>>
 			<<replace "#result">>
 				You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes from $his induced coma, $he nearly faints at the <<if canSee($activeSlave)>>sight<<else>>feeling<</if>> of $his immense middle. $He's @@.hotpink;deliriously happy@@ at $his hugeness and @@.mediumaquamarine;squirms happily@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> you can make it bigger, despite the fact that it is nearly as large as $he is and pins $him to the bed $he lies upon. As it was an invasive surgery, @@.red;$his health has been greatly affected.@@
@@ -1374,7 +1374,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 		<<set $activeSlave.trust += 15>>
 		<<set $activeSlave.bellyImplant = 2000>>
 		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<run SetBellySize($activeSlave)>>
 		<<replace "#result">>
 			You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't <<if hasAnyArms($activeSlave)>>keep $his hand<<if hasBothArms($activeSlave)>>s<</if>> off<<else>>stop shaking around<</if>> $his new bulbous middle. $He's @@.hotpink;deliriously happy@@ that $he has $his own round belly and @@.mediumaquamarine;bounces cheerfully@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> you can make it bigger. As with all surgery @@.red;$his health has been slightly affected.@@
@@ -1445,7 +1445,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 			<<set $activeSlave.hips += 1>>
 			<<set $activeSlave.hipsImplant = 1>>
 			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-			<<set $activeSlave.health -= 40>>
+			<<run healthDamage($activeSlave, 40)>>
 			<<replace "#result">>
 				You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't <<if hasAnyArms($activeSlave)>>keep $his hand<<if hasBothArms($activeSlave)>>s<</if>> off<<else>>stop shaking around<</if>> $his wide hips, especially since $he can't figure out how to roll over with them. $He's @@.hotpink;deliriously happy@@ that $he is ridiculously wide and @@.mediumaquamarine;wiggles $his door-jammers cheerfully@@ at you whenever $he gets the chance. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 			<</replace>>
@@ -1457,7 +1457,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 			<<set $activeSlave.hips += 1>>
 			<<set $activeSlave.hipsImplant = 1>>
 			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-			<<set $activeSlave.health -= 40>>
+			<<run healthDamage($activeSlave, 40)>>
 			<<replace "#result">>
 				You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't <<if hasAnyArms($activeSlave)>>keep $his hand<<if hasBothArms($activeSlave)>>s<</if>> off<<else>>stop shaking around<</if>> $his wide hips. $He's @@.hotpink;deliriously happy@@ that $he is wider than ever and @@.mediumaquamarine;wiggles $his hips cheerfully@@ at you whenever $he gets the chance. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 			<</replace>>
@@ -1501,7 +1501,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 		<<set $activeSlave.butt += 8>>
 		<<set $activeSlave.buttImplant += 8>>
 		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<replace "#result">>
 			You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't <<if hasAnyArms($activeSlave)>>keep $his hand<<if hasBothArms($activeSlave)>>s<</if>> off<<else>>stop shaking around<</if>> $his new ridiculous fake ass, not that $he has much choice, since it has $him pinned to the bed. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of giant butt cheeks ballooning from $his bottom and @@.mediumaquamarine;hopes@@ you have plans to make them even bigger, even though $he is already struggling to escape from under them. As with all surgery @@.red;$his health has been slightly affected.@@
 		<</replace>>
@@ -1513,7 +1513,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 		<<set $activeSlave.butt += 2>>
 		<<set $activeSlave.buttImplant += 2>>
 		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<replace "#result">>
 			You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't <<if hasAnyArms($activeSlave)>>keep $his hand<<if hasBothArms($activeSlave)>>s<</if>> off<<else>>stop shaking around<</if>> $his new fake bottom. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of big butt cheeks hanging from $his rear and @@.mediumaquamarine;hopes@@ you have plans to make them even bigger. As with all surgery @@.red;$his health has been slightly affected.@@
 		<</replace>>
@@ -1525,7 +1525,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 		<<set $activeSlave.buttImplant += 3>>
 		<<set $activeSlave.buttImplantType = 1>>
 		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<replace "#result">>
 			You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't <<if hasAnyArms($activeSlave)>>keep $his hand<<if hasBothArms($activeSlave)>>s<</if>> off<<else>>stop shaking around<</if>> $his new fake bottom. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of big butt cheeks hanging from $his rear and @@.mediumaquamarine;bounces them cheerfully@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> they'll keep growing. As with all surgery @@.red;$his health has been slightly affected.@@
 		<</replace>>
diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw
index 4136d6ed1c8d381c03eebf7ca7734f24414fb621..3017fd8c2965f09008e8efd2ae9919d032088a78 100644
--- a/src/pregmod/pRaped.tw
+++ b/src/pregmod/pRaped.tw
@@ -30,7 +30,7 @@
 <<set $activeSlave.origin = "You sentenced $him to enslavement for the attempted rape of a free " + _womanP + ".">>
 <<set $activeSlave.devotion = -100>>
 <<set $activeSlave.trust = -100>>
-<<set $activeSlave.health = random(-50,-20)>>
+<<run setHealth($activeSlave, jsRandom(-40, -20), normalRandInt(15, 3), undefined, 1, jsRandom(30, 80))>>
 <<set $activeSlave.anus = 0>>
 <<set $activeSlave.behavioralFlaw = "arrogant">>
 <<set $activeSlave.sexualFlaw = "judgemental">>
@@ -251,7 +251,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 			<</replace>>
 		<</link>>
 		<br><<link "Sentence $him to a day in the stocks, then enslave $him">>
-			<<set $activeSlave.health -= 10>>
+			<<run healthDamage($activeSlave, 10)>>
 			<<set $activeSlave.behavioralFlaw = "odd">>
 			<<set $activeSlave.sexualFlaw = "hates penetration">>
 			<<set $activeSlave.anus = 2>>
@@ -312,7 +312,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 		<</if>>
 		<<if $seeExtreme > 0>>
 			<br><<link "Punitively amputate $his limbs, and then enslave $him">>
-				<<set $activeSlave.health -= 20>>
+				<<run healthDamage($activeSlave, 20)>>
 				<<run removeLimbs($activeSlave, "all")>>
 				<<set $activeSlave.behavioralFlaw = "odd">>
 				<<run cashX(forceNeg($contractCost), "slaveTransfer", $activeSlave)>>
@@ -322,7 +322,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 			<</link>>
 			<<if $activeSlave.balls > 0>>
 				<br><<link "Enslave the criminal and geld $him">>
-					<<set $activeSlave.health -= 20>>
+					<<run healthDamage($activeSlave, 20)>>
 					<<set $activeSlave.balls = 0>>
 					<<set $activeSlave.devotion -= 25>>
 					<<set $activeSlave.trust -= 25>>
diff --git a/src/pregmod/reTheSirenStrikesBack.tw b/src/pregmod/reTheSirenStrikesBack.tw
index d16db5f6ccdb678e48996343155d1bdcaaf62752..08cf5ac89d032969145513d48297dbba805d7e77 100644
--- a/src/pregmod/reTheSirenStrikesBack.tw
+++ b/src/pregmod/reTheSirenStrikesBack.tw
@@ -18,7 +18,7 @@
 <<set $activeSlave.career = "a producer">>
 <<set $activeSlave.devotion = random(-70,30)>>
 <<set $activeSlave.trust = random(-100,-70)>>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20), Math.max(normalRandInt(0, 2), 0), Math.max(normalRandInt(0, 2), 0), 0, jsRandom(0, 20))>>
 <<set $activeSlave.anus = 0>>
 <<if $activeSlave.vagina > -1>>
 	<<set $activeSlave.vagina = 1>>
@@ -89,7 +89,8 @@ Several weeks have passed since you gained the musical prodigy and you couldn't
 	<<if !isAmputee(_ssb)>>
 		<br><<link "Enslave _him2 and throw _him2 to _ssb.slaveName">>
 			<<set $activeSlave.clothes = "no clothing">>
-			<<set $activeSlave.recruiter = 0, $activeSlave.health -= 20>>
+			<<set $activeSlave.recruiter = 0>>
+			<<run healthDamage($activeSlave, 20)>>
 			<<replace "#artFrame">>
 				/* 000-250-006 */
 				<<if $seeImages == 1>>
@@ -138,7 +139,8 @@ Several weeks have passed since you gained the musical prodigy and you couldn't
 	<</link>>
 	<br><<link "Enslave _him2 and punish _him2 for their actions">>
 		<<set $activeSlave.clothes = "no clothing">>
-		<<set $activeSlave.recruiter = 0, $activeSlave.health -= 20>>
+		<<set $activeSlave.recruiter = 0>>
+		<<run healthDamage($activeSlave, 20)>>
 		<<replace "#artFrame">>
 			/* 000-250-006 */
 			<<if $seeImages == 1>>
diff --git a/src/pregmod/saAgent.tw b/src/pregmod/saAgent.tw
index 72efa7765d9d2d37cd57a99dcb214d63ab84ee53..d01c6aa1ade7875657e7a6128f712c269e650441 100644
--- a/src/pregmod/saAgent.tw
+++ b/src/pregmod/saAgent.tw
@@ -250,7 +250,7 @@
 			<<if setup.fakeBellies.includes($slaves[$i].bellyAccessory)>>
 				<<set $slaves[$i].bellyAccessory = "none">>
 			<</if>>
-			<<if ($slaves[$i].preg > $slaves[$i].pregData.normalBirth/2) && ($slaves[$i].lactation == 0) && $slaves[$i].health >= -20 && $slaves[$i].weight > -30>>
+			<<if ($slaves[$i].preg > $slaves[$i].pregData.normalBirth/2) && ($slaves[$i].lactation == 0) && $slaves[$i].health.condition >= -20 && $slaves[$i].weight > -30>>
 				<<if $slaves[$i].preg > random($slaves[$i].pregData.normalBirth/2.22, $slaves[$i].pregData.normalBirth/1.33)>>
 					<<set $slaves[$i].lactation = 1>>
 				<</if>>
diff --git a/src/pregmod/saClothes.tw b/src/pregmod/saClothes.tw
index f374e9b09c7c7e2308415572d9e65b6fd88f60a2..be2f874c96bd266eeb2bdeb5656274b8f240341b 100644
--- a/src/pregmod/saClothes.tw
+++ b/src/pregmod/saClothes.tw
@@ -22,7 +22,8 @@
 			<</if>>
 		<<case "a penitent nuns habit">>
 			The mortification of the flesh $he endures from wearing $his sackcloth habit slowly and painfully @@.hotpink;purifies $his mind@@ of any but devoted, @@.gold;fearful@@ thoughts. It's also @@.red;unhealthy.@@
-			<<set $slaves[$i].devotion += 2, $slaves[$i].trust -= 2, $slaves[$i].health -= 3>>
+			<<set $slaves[$i].devotion += 2, $slaves[$i].trust -= 2>>
+			<<run healthDamage($slaves[$i], 3)>>
 			<<if ($slaves[$i].fetish == "masochist") && ($slaves[$i].fetishKnown == 0)>>
 				$His chafed skin makes sex an agonizing prospect. $He seems to get off on the pain; $he's a @@.lightcoral;natural masochist.@@
 				<<set $slaves[$i].fetishKnown = 1>>
@@ -431,7 +432,7 @@
 			<<set $slaves[$i].bellyAccessory = "none">>
 		<<elseif $slaves[$i].bellyPreg >= 1500>>
 			The tight corseting has @@.orange;caused $him to miscarry,@@ which @@.red;damages $his health.@@
-			<<set $slaves[$i].health -= 20>>
+			<<run healthDamage($slaves[$i], 20)>>
 			<<if lastPregRule($slaves[$i],$defaultRules)>><<set $slaves[$i].preg = -1>><<else>><<set $slaves[$i].preg = 0>><</if>>
 			<<set $slaves[$i].pregType = 0, WombFlush($slaves[$i]), $slaves[$i].pregKnown = 0>>
 			<<if $slaves[$i].geneticQuirks.fertility+$slaves[$i].geneticQuirks.hyperFertility >= 4>>
@@ -475,7 +476,7 @@
 				<</if>>
 				<<if $slaves[$i].waist >= -40>>
 					It's so tight that it's @@.red;unhealthy.@@
-					<<set $slaves[$i].health -= 5>>
+					<<run healthDamage($slaves[$i], 5)>>
 					<<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">>
 						<<if $slaves[$i].devotion < -20>>
 							$He @@.hotpink;barely has breath to think,@@ though $he has enough to @@.gold;fear.@@
@@ -616,7 +617,7 @@
 					<<set $slaves[$i].trust -= 1>>
 				<</if>>
 				They're so high they're a bit @@.red;unhealthy@@ for $his legs.
-				<<set $slaves[$i].health -= 2>>
+				<<run healthDamage($slaves[$i], 2)>>
 			<</if>>
 		<<else>>
 			$His P-Limb <<if hasBothLegs($slaves[$i])>>legs work<<else>>leg works<</if>> just as well in extreme heels as <<if hasBothLegs($slaves[$i])>>they do<<else>>it does<</if>> out of them.
@@ -801,7 +802,7 @@
 		<<if ($slaves[$i].preg > $slaves[$i].pregData.normalBirth/10) && $slaves[$i].pregKnown == 1>>
 			<<if (random(1,100) > 50)>>
 				The dildo penetrating $his womb @@.orange;caused $him to miscarry,@@ which @@.red;damages $his health.@@
-				<<set $slaves[$i].health -= 20>>
+				<<run healthDamage($slaves[$i], 20)>>
 				<<if lastPregRule($slaves[$i],$defaultRules)>><<set $slaves[$i].preg = -1>><<else>><<set $slaves[$i].preg = 0>><</if>>
 				<<set $slaves[$i].pregType = 0, WombFlush($slaves[$i]), $slaves[$i].pregKnown = 0>>
 				<<if $slaves[$i].geneticQuirks.fertility+$slaves[$i].geneticQuirks.hyperFertility >= 4>>
diff --git a/src/pregmod/saInflation.tw b/src/pregmod/saInflation.tw
index 625c096a02ba5f5767eefecc552668bdaaa3d559..1dc759837ba5aa7e76d9063f3da943b754ffbb31 100644
--- a/src/pregmod/saInflation.tw
+++ b/src/pregmod/saInflation.tw
@@ -28,7 +28,7 @@
 <<case "water">>
 	<<if $slaves[$i].inflation == 3>>
 		$He makes sure to fill $his rear with nearly two gallons of water, leaving $him looking ready to burst, whenever $he leaks or needs to release $his load. $He keeps $himself @@.red;painfully full@@ for you.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif $slaves[$i].inflation == 2>>
 		$He makes sure to fill $his rear with nearly four liters of water, leaving $him looking pregnant, whenever $he leaks or needs to release $his load. $He is full enough to be distended but not enough to grow taut.
 	<<elseif $slaves[$i].inflation == 1>>
@@ -38,7 +38,7 @@
 <<case "urine">>
 	<<if $slaves[$i].inflation == 3>>
 		$He makes sure to fill $his rear with nearly two gallons of urine, leaving $him looking ready to burst, whenever $he leaks or needs to release $his load. $He keeps $himself @@.red;painfully full@@ for you.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif $slaves[$i].inflation == 2>>
 		$He makes sure to fill $his rear with nearly four liters of urine, leaving $him looking pregnant, whenever $he leaks or needs to release $his load. $He is full enough to be distended but not enough to grow taut.
 	<<elseif $slaves[$i].inflation == 1>>
@@ -48,7 +48,7 @@
 <<case "aphrodisiac">>
 	<<if $slaves[$i].inflation == 3>>
 		$He makes sure to fill $his rear with nearly two gallons of an aphrodisiac solution, leaving $him looking ready to burst, whenever $he leaks or $his body absorbs too much. $He keeps $himself @@.red;painfully full@@ for you, though $he barely notices it over $his horniness. While having $his body packed full of aphrodisiacs doesn't make $him additionally submissive, it does amplify the effects of them. $His aphrodisiac bursting belly
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif $slaves[$i].inflation == 2>>
 		$He makes sure to fill $his rear with nearly four liters of an aphrodisiac solution, leaving $him looking pregnant, whenever $he leaks or $his body absorbs too much. $He is full enough to be distended but not enough to grow taut. While having $his body bloated with aphrodisiacs doesn't make $him additionally submissive, it does amplify the effects of them. $His overfilled aphrodisiac belly
 	<<elseif $slaves[$i].inflation == 1>>
@@ -66,7 +66,7 @@
 	<</if>>
 	<<if ($arcologies[0].FSBodyPuristLaw == 0) && ($healthyDrugsUpgrade == 0)>>
 		Such a high dosage held for so long @@.red;isn't healthy.@@
-		<<set $slaves[$i].health -= 5>>
+		<<run healthDamage($slaves[$i], 5)>>
 	<</if>>
 	<<set $slaves[$i].chem += 2*$slaves[$i].inflation>>
 	<<if ($slaves[$i].addict > 0)>>
@@ -86,53 +86,54 @@
 		$He makes sure to fill $his rear with nearly two gallons of a curative solution, leaving $him looking ready to burst, whenever $he leaks or $his body absorbs too much. $He keeps $himself full for you; the curatives in $his gut keeping $him healthy despite the pain.
 		<<if (($slaves[$i].assignment == "rest") || ($slaves[$i].assignment == "rest in the spa")) && ($slaves[$i].fetish != "mindbroken")>>
 			The curative enema $he's on synergize with rest, keeping $him asleep most of the time. This is an @@.green;extremely effective health treatment,@@ though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted.
-			<<set $slaves[$i].health += 4>>
-		<<elseif ($slaves[$i].health < -20)>>
+			<<run improveCondition($slaves[$i], 4)>>
+		<<elseif ($slaves[$i].health.condition < -20)>>
 			@@.green;$His poor health rapidly improves@@ under the curative enema, though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted.
-			<<set $slaves[$i].health += 2>>
+			<<run improveCondition($slaves[$i], 2)>>
 		<<else>>
 			@@.green;$His health improves@@ under the curative enema, though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted.
 		<</if>>
-		<<set $slaves[$i].health += 1>>
+		<<run improveCondition($slaves[$i], 1)>>
 	<<elseif $slaves[$i].inflation == 2>>
 		$He makes sure to fill $his rear with nearly four liters of a curative solution, leaving $him looking pregnant, whenever $he leaks or $his body absorbs too much. $He is full enough to be distended but not enough to grow taut.
 		<<if (($slaves[$i].assignment == "rest") || ($slaves[$i].assignment == "rest in the spa")) && ($slaves[$i].fetish != "mindbroken")>>
 			The curative enema $he's on synergize with rest, keeping $him asleep most of the time. This is an @@.green;extremely effective health treatment,@@ though being overfilled doesn't hasten $his recovery at all; it's just perverted.
-			<<set $slaves[$i].health += 4>>
-		<<elseif ($slaves[$i].health < -20)>>
+			<<run improveCondition($slaves[$i], 4)>>
+		<<elseif ($slaves[$i].health.condition < -20)>>
 			@@.green;$His poor health rapidly improves@@ under the curative enema, though being overfilled doesn't hasten $his recovery at all; it's just perverted.
-			<<set $slaves[$i].health += 2>>
+			<<run improveCondition($slaves[$i], 2)>>
 		<<else>>
 			@@.green;$His health improves@@ under curative enema, though being overfilled doesn't hasten $his recovery at all; it's just perverted.
 		<</if>>
-		<<set $slaves[$i].health += 6>>
+		<<run improveCondition($slaves[$i], 6)>>
 	<<elseif $slaves[$i].inflation == 1>>
 		$He makes sure to fill $his rear with nearly two liters of a curative solution, leaving $his belly noticeably distended, whenever $he leaks or $his body absorbs too much. $He is full enough to be swollen but not enough to visibly jiggle.
 		<<if (($slaves[$i].assignment == "rest") || ($slaves[$i].assignment == "rest in the spa")) && ($slaves[$i].fetish != "mindbroken")>>
 			The curative enema $he's on synergize with rest, keeping $him asleep most of the time. This is an @@.green;extremely effective health treatment.@@
-			<<set $slaves[$i].health += 4>>
-		<<elseif ($slaves[$i].health < -20)>>
+			<<run improveCondition($slaves[$i], 4)>>
+		<<elseif ($slaves[$i].health.condition < -20)>>
 			@@.green;$His poor health rapidly improves@@ under the curative enema.
-			<<set $slaves[$i].health += 2>>
+			<<run improveCondition($slaves[$i], 2)>>
 		<<else>>
 			@@.green;$His health improves@@ under curative enema.
 		<</if>>
-		<<set $slaves[$i].health += 6>>
+		<<run improveCondition($slaves[$i], 6)>>
 	<</if>>
 	<<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">>
 		$He @@.mediumaquamarine;trusts you more@@ for giving $his access to expensive modern medicine, even if it is really embarrassing to be seen with that belly.
 		<<set $slaves[$i].trust += 1>>
 	<</if>>
-	<<if $slaves[$i].health >= 90>>
+	<<if $slaves[$i].health.condition >= 90>>
 		$He is as healthy as $he can be. @@.yellow;$His curative enema regimen has been ended.@@
 		<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 	<</if>>
-	<<set $slaves[$i].chem += 2, $slaves[$i].health += $curativeUpgrade*6>>
+	<<set $slaves[$i].chem += 2>>
+	<<run improveCondition($slaves[$i], $curativeUpgrade*6)>>
 
 <<case "tightener">>
 	<<if $slaves[$i].inflation == 3>>
 		$He makes sure to fill $his rear with nearly two gallons of tightening solution, leaving $him looking ready to burst, whenever $he leaks or $his body absorbs too much. $He keeps $himself @@.red;painfully full@@ for you.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 		<<if $slaves[$i].geneMods.rapidCellGrowth != 1>>
 			<<if $slaves[$i].anus > 1>>
 				The solution slowly tightens $his anus while inside $his bowels. Being filled to $his limit with the solution does not make it tighten any better or faster; it's just perverted.
@@ -225,7 +226,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He struggles to keep $his fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He struggles to keep $his fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise.
 				<<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>>
@@ -239,7 +241,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He struggles to keep the fattening load inside $him, @@.gold;fearing@@ punishment otherwise.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ fills $his rectum from the dairy tap until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He struggles to keep the fattening load inside $him, @@.gold;fearing@@ punishment otherwise.
 				<<set $slaves[$i].devotion -= 5,$slaves[$i].trust -= 5>>
@@ -254,7 +257,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ suckles from $slaves[_saf].slaveName until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He struggles to keep $his fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
 				<<set $slaves[_saf].lactationDuration = 2, $slaves[_saf].boobs -= $slaves[_saf].boobsMilk, $slaves[_saf].boobsMilk = 0>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ suckles from $slaves[_saf].slaveName until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He struggles to keep $his fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise.
@@ -273,7 +277,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.hotpink;eagerly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently,@@ anticipating $his next gorging.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.hotpink;eagerly@@ sucks from the dairy tap until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ anticipating $his next feeding.
 				<<set $slaves[$i].devotion += 4, $slaves[$i].trust += 4>>
@@ -287,7 +292,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.hotpink;happily@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ though $he wishes $he could have swallowed it instead.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion += 4, $slaves[$i].trust += 4>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion += 4, $slaves[$i].trust += 4>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.hotpink;happily@@ fills $his rectum from the dairy tap until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He rubs $his full belly @@.mediumaquamarine;contently,@@ though $he wishes $he could have swallowed it instead.
 				<<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>>
@@ -302,7 +308,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.hotpink;eagerly@@ sucks from $slaves[_saf].slaveName until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently,@@ anticipating $his next gorging.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>>
 				<<set $slaves[_saf].lactationDuration = 2, $slaves[_saf].boobs -= $slaves[_saf].boobsMilk, $slaves[_saf].boobsMilk = 0>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.hotpink;eagerly@@ sucks from $slaves[_saf].slaveName until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ anticipating $his next feeding.
@@ -321,7 +328,7 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he makes sure to keep $himself filled with nearly two gallons of milk, leaving $him looking ready to burst. $He keeps $himself @@.red;painfully full@@ for you.
-				<<set $slaves[$i].health -= 10>>
+				<<run healthDamage($slaves[$i], 10)>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he makes sure to keep $himself filled with nearly four liters of milk, leaving $him looking pregnant. $He is full enough to be distended but not enough to grow taut.
 			<<elseif $slaves[$i].inflation == 1>>
@@ -333,7 +340,7 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he makes sure to fill $his rear with nearly two gallons of milk, leaving $him looking ready to burst, whenever $he leaks or needs to release $his load. $He keeps $himself @@.red;painfully full@@ for you.
-				<<set $slaves[$i].health -= 10>>
+				<<run healthDamage($slaves[$i], 10)>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he makes sure to fill $his rear with nearly four liters of milk, leaving $him looking pregnant, whenever $he leaks or needs to release $his load. $He is full enough to be distended but not enough to grow taut.
 			<<elseif $slaves[$i].inflation == 1>>
@@ -346,7 +353,7 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he makes sure keep suckling from $slaves[_saf].slaveName until $he is filled with nearly two gallons of milk, leaving $him looking ready to give birth. $He keeps $himself @@.red;painfully full@@ for you.
-				<<set $slaves[$i].health -= 10>>
+				<<run healthDamage($slaves[$i], 10)>>
 				<<set $slaves[_saf].lactationDuration = 2, $slaves[_saf].boobs -= $slaves[_saf].boobsMilk, $slaves[_saf].boobsMilk = 0>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he makes sure keep suckling from $slaves[_saf].slaveName until $he is filled with nearly four liters of milk, leaving $him looking pregnant. $He is full enough to be distended but not enough to grow taut.
@@ -366,7 +373,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He struggles to keep $his liquid meal down, @@.gold;fearing@@ punishment otherwise.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He struggles to keep $his liquid meal down, @@.gold;fearing@@ punishment otherwise.
 				<<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>>
@@ -380,7 +388,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He struggles to keep the massive cumshot inside $him, @@.gold;fearing@@ punishment otherwise.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ fills $his rectum from the dairy tap until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He struggles to keep the huge cumshot inside $him, @@.gold;fearing@@ punishment otherwise.
 				<<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>>
@@ -395,7 +404,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He struggles to keep $his liquid meal down, @@.gold;fearing@@ punishment otherwise.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He struggles to keep $his liquid meal down, @@.gold;fearing@@ punishment otherwise.
 				<<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>>
@@ -411,7 +421,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.hotpink;eagerly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently,@@ anticipating $his next gorging.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.hotpink;eagerly@@ sucks from the dairy tap until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ anticipating $his next feeding.
 				<<set $slaves[$i].devotion += 4, $slaves[$i].trust += 4>>
@@ -425,7 +436,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.hotpink;happily@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ though $he wishes $he could have swallowed it instead.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion += 4, $slaves[$i].trust += 4>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion += 4, $slaves[$i].trust += 4>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.hotpink;happily@@ fills $his rectum from the dairy tap until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He rubs $his full belly @@.mediumaquamarine;contently,@@ though $he wishes $he could have swallowed it instead.
 				<<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>>
@@ -440,7 +452,8 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he @@.hotpink;eagerly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently,@@ anticipating $his next gorging.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he @@.hotpink;eagerly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ anticipating $his next feeding.
 				<<set $slaves[$i].devotion += 4, $slaves[$i].trust += 4>>
@@ -456,7 +469,7 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he makes sure to keep $himself filled with nearly two gallons of cum, leaving $him looking ready to burst. $He keeps $himself @@.red;painfully full@@ for you.
-				<<set $slaves[$i].health -= 10>>
+				<<run healthDamage($slaves[$i], 10)>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he makes sure to keep $himself filled with nearly four liters of cum, leaving $him looking pregnant. $He is full enough to be distended but not enough to grow taut.
 			<<elseif $slaves[$i].inflation == 1>>
@@ -468,7 +481,7 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he makes sure to fill $his rear with nearly two gallons of cum, leaving $him looking ready to burst, whenever $he leaks or needs to release $his load. $He keeps $himself @@.red;painfully full@@ for you.
-				<<set $slaves[$i].health -= 10>>
+				<<run healthDamage($slaves[$i], 10)>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he makes sure to fill $his rear with nearly four liters of cum, leaving $him looking pregnant, whenever $he leaks or needs to release $his load. $He is full enough to be distended but not enough to grow taut.
 			<<elseif $slaves[$i].inflation == 1>>
@@ -481,7 +494,7 @@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>>
 			<<elseif $slaves[$i].inflation == 3>>
 				Throughout the week, $he makes sure keep sucking $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $he is filled with nearly two gallons of cum, leaving $him looking ready to burst. $He keeps $himself @@.red;painfully full@@ for you.
-				<<set $slaves[$i].health -= 10>>
+				<<run healthDamage($slaves[$i], 10)>>
 			<<elseif $slaves[$i].inflation == 2>>
 				Throughout the week, $he makes sure keep sucking $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $he is filled with nearly four liters of cum, leaving $him looking pregnant. $He is full enough to be distended but not enough to grow taut.
 			<<elseif $slaves[$i].inflation == 1>>
@@ -494,7 +507,8 @@
 	<<if $slaves[$i].behavioralFlaw == "anorexic">>
 		<<if $slaves[$i].inflation == 3>>
 			Throughout the week, $he focuses $his @@.mediumorchid;loathing@@ on you as $he forces down servings of slave food until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of the paste, leaving $him looking ready to burst. $He struggles to keep $his meal down, @@.gold;fearing@@ punishment otherwise.
-			<<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 16, $slaves[$i].trust -= 16>>
+			<<run healthDamage($slaves[$i], 10)>>
+			<<set $slaves[$i].devotion -= 16, $slaves[$i].trust -= 16>>
 		<<elseif $slaves[$i].inflation == 2>>
 			Throughout the week, $he focuses $his @@.mediumorchid;loathing@@ on you as $he forces down servings of slave food until $his stomach is bloated with nearly four liters of the paste, giving $him quite the food baby. $He struggles to keep $his meal down, @@.gold;fearing@@ punishment otherwise.
 			<<set $slaves[$i].devotion -= 10, $slaves[$i].trust -= 10>>
@@ -505,7 +519,8 @@
 	<<elseif $slaves[$i].behavioralFlaw == "gluttonous">>
 		<<if $slaves[$i].inflation == 3>>
 			Throughout the week, $he @@.hotpink;eagerly@@ stuffs $his face with servings of slave food until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of the paste, leaving $him looking ready to burst. $He rubs $his stuffed belly @@.mediumaquamarine;contently,@@ anticipating $his next gorging.
-			<<set $slaves[$i].health -= 10, $slaves[$i].devotion += 10, $slaves[$i].trust += 10>>
+			<<run healthDamage($slaves[$i], 10)>>
+			<<set $slaves[$i].devotion += 10, $slaves[$i].trust += 10>>
 		<<elseif $slaves[$i].inflation == 2>>
 			Throughout the week, $he @@.hotpink;eagerly@@ stuffs $his face with servings of slave food until $his stomach is bloated with nearly four liters of the paste, giving $him quite the food baby. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ anticipating $his next meal.
 			<<set $slaves[$i].devotion += 7, $slaves[$i].trust += 7>>
@@ -516,7 +531,7 @@
 	<<else>>
 		<<if $slaves[$i].inflation == 3>>
 			Throughout the week, $he makes sure to binge eat until $his gut is stuffed with nearly two gallons of slave food, leaving $him looking ready to burst. $He keeps $himself @@.red;painfully full@@ for you.
-			<<set $slaves[$i].health -= 10>>
+			<<run healthDamage($slaves[$i], 10)>>
 		<<elseif $slaves[$i].inflation == 2>>
 			Throughout the week, $he makes sure to binge eat until $his gut is filled with nearly four liters of slave food, giving $him quite the food baby. $He is full enough to be distended but not enough to grow taut.
 		<<elseif $slaves[$i].inflation == 1>>
diff --git a/src/pregmod/seFCTVremote.tw b/src/pregmod/seFCTVremote.tw
index 71828667c7962c3e0a22a22c044a0441a040584f..4df0195d3993ae806063811a0cf121f217ac62ca 100644
--- a/src/pregmod/seFCTVremote.tw
+++ b/src/pregmod/seFCTVremote.tw
@@ -15,7 +15,7 @@
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.devotion = 0>>
 <<set $activeSlave.trust = 0>>
-<<set $activeSlave.health = random(60,80)>>
+<<run setHealth($activeSlave, jsRandom(60, 80))>>
 <<set $activeSlave.muscles = 60>>
 <<if $activeSlave.weight > 130>>
 	<<set $activeSlave.weight -= 100>>
@@ -94,7 +94,7 @@ $He unboxes the new remote and turns $his back to you, eagerly demonstrating how
 	<<set _customer = GenerateNewSlave()>>
 	<<set _customer.devotion = 0>>
 	<<set _customer.trust = 0>>
-	<<set _customer.health = random(60,80)>>
+	<<run setHealth(_customer, jsRandom(60, 80))>>
 	<<set _customer.muscles = 60>>
 	<<if _customer.weight > 130>>
 		<<set _customer.weight -= 100>>
@@ -202,7 +202,7 @@ $He unboxes the new remote and turns $his back to you, eagerly demonstrating how
 		<</link>>
 		<br><<link "Sentence $him to a day in a wall with a TV, then enslave $him">>
 			<<set $analTotal++>>
-			<<set $activeSlave.health -= 10>>
+			<<run healthDamage($activeSlave, 10)>>
 			<<set $activeSlave.behavioralFlaw = "odd">>
 			<<set $activeSlave.sexualFlaw = "hates penetration">>
 			<<set $activeSlave.anus = 2>>
diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw
index 6c657bd23578010b5bb8cacddfcf482e5cdeb24a..b323715529148e37cc2ea62b40c0d74dbea3a655 100644
--- a/src/pregmod/seFCTVshows.tw
+++ b/src/pregmod/seFCTVshows.tw
@@ -108,7 +108,8 @@
 		<<set _kirk.actualAge = 44>>
 		<<set _kirk.devotion = 0>>
 		<<set _kirk.trust = 0>>
-		<<set _kirk.health = random(60,80)>>
+		<<set _kirk.health.condition = random(60,80)>>
+		<<set _kirk.health.health = _kirk.health.condition - _kirk.health.shortDamage - _kirk.health.longDamage>>
 		<<set _kirk.muscles = 60>>
 		<<set _kirk.weight = 30>>
 		<<set _kirk.waist = 90>>
@@ -127,7 +128,8 @@
 		<<set _jules = BaseSlave()>>
 		<<set _jules.devotion = 0>>
 		<<set _jules.trust = 0>>
-		<<set _jules.health = random(60,80)>>
+		<<set _jules.health.condition = random(60,80)>>
+		<<set _jules.health.health = _jules.health.condition - _jules.health.shortDamage - _jules.health.longDamage>>
 		<<set _jules.weight = 30>>
 		<<set _jules.waist = 30>>
 		<<set _jules.boobs = 700>>
@@ -168,7 +170,8 @@
 			<<set _model = BaseSlave()>>
 			<<set _model.devotion = -90>>
 			<<set _model.trust = 0>>
-			<<set _model.health = random(60,80)>>
+			<<set _model.health.condition = random(60,80)>>
+			<<set _model.health.health = _model.health.condition - _model.health.shortDamage - _model.health.longDamage>>
 			<<set _model.face = -20>>
 			<<set _model.hLength = 50>>
 			<<set _model.hStyle = "messy">>
@@ -243,7 +246,8 @@
 		<<set _model = BaseSlave()>>
 		<<set _model.devotion = 0>>
 		<<set _model.trust = 0>>
-		<<set _model.health = random(60,80)>>
+		<<set _model.health.condition = random(60,80)>>
+		<<set _model.health.health = _model.health.condition - _model.health.shortDamage - _model.health.longDamage>>
 		<<set _model.muscles = 60>>
 		<<set _model.boobs = 700>>
 		<<set _model.butt = 3>>
@@ -347,7 +351,8 @@
 		<<set $activeSlave.devotion = random(60,90)>>
 		<<set $activeSlave.trust = random(50,80)>>
 		<<set $activeSlave.chem = 0>>
-		<<set $activeSlave.health = 75>>
+		<<set $activeSlave.health.condition = 75>>
+		<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 		<<set $activeSlave.origin = "You purchased $him from FCTV's Home Slave Shopping stream channel.">>
 		<<set $activeSlave.career = "a slave">>
 		<<set $activeSlave.custom.tattoo = "$He has a small stylized 'A' tattooed on the nape of $his neck marking $him as the product of the famous breeding program at Arcturus Arcology.">>
@@ -399,7 +404,8 @@
 		<<set $activeSlave.behavioralQuirk = "none">>
 		<<set $activeSlave.sexualQuirk = either("caring", "caring", "romantic")>>
 		<<set $activeSlave.chem = 0>>
-		<<set $activeSlave.health = 75>>
+		<<set $activeSlave.health.condition = 75>>
+		<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 		<<set $activeSlave.intelligence = random(-15,80)>>
 		<<set $activeSlave.intelligenceImplant = 15>>
 		<<set $activeSlave.origin = "You purchased $him from FCTV's Home Slave Shopping stream channel.">>
@@ -445,7 +451,8 @@
 		<<set $activeSlave.devotion = random(60,90)>>
 		<<set $activeSlave.trust = random(50,80)>>
 		<<set $activeSlave.chem = 0>>
-		<<set $activeSlave.health = 75>>
+		<<set $activeSlave.health.condition = 75>>
+		<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 		<<set $activeSlave.counter.birthsTotal = random(2,3)>>
 		<<set $activeSlave.career = setup.youngCareers.random()>>
 		<<set $activeSlave.origin = "You purchased $him from FCTV's Home Slave Shopping stream channel.">>
@@ -488,7 +495,8 @@
 		<<set $activeSlave.devotion = random(60,90)>>
 		<<set $activeSlave.trust = random(50,80)>>
 		<<set $activeSlave.chem = 0>>
-		<<set $activeSlave.health = 75>>
+		<<set $activeSlave.health.condition = 75>>
+		<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 		<<set $activeSlave.counter.birthsTotal = random(1,3)>>
 		<<set $activeSlave.career = setup.youngCareers.random()>>
 		<<set $activeSlave.origin = "You purchased $him from FCTV's Home Slave Shopping stream channel.">>
@@ -573,7 +581,8 @@
 		<<set $activeSlave.devotion = random(60,90)>>
 		<<set $activeSlave.trust = random(50,80)>>
 		<<set $activeSlave.chem = 0>>
-		<<set $activeSlave.health = 75>>
+		<<set $activeSlave.health.condition = 75>>
+		<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 		<<set $activeSlave.career = setup.youngCareers.random()>>
 		<<set $activeSlave.origin = "You purchased $him from FCTV's Home Slave Shopping stream channel.">>
 	<</if>>
@@ -807,7 +816,8 @@
 		<<set _model = BaseSlave()>>
 		<<set _model.devotion = 0>>
 		<<set _model.trust = 0>>
-		<<set _model.health = 70>>
+		<<set _model.health.condition = 70>>
+		<<set _model.health.health = _model.health.condition - _model.health.shortDamage - _model.health.longDamage>>
 		<<set _model.hLength = 50>>
 		<<set _model.hStyle = "neat">>
 		<<set _model.hColor = "brown">>
@@ -890,7 +900,8 @@
 			<<set _model2 = BaseSlave()>>
 			<<set _model2.devotion = 0>>
 			<<set _model2.trust = 0>>
-			<<set _model2.health = 70>>
+			<<set _model2.health.condition = 70>>
+			<<set _model2.health.health = _model2.health.condition - _model2.health.shortDamage - _model2.health.longDamage>>
 			<<set _model2.hLength = 50>>
 			<<set _model2.hStyle = "luxurious">>
 			<<set _model2.hColor = "blonde">>
@@ -934,7 +945,8 @@
 		<<if $seeImages == 1>>
 			<<set _model.devotion = 100>>
 			<<set _model.trust = 100>>
-			<<set _model.health = 70>>
+			<<set _model.health.condition = 70>>
+			<<set _model.health.health = _model.health.condition - _model.health.shortDamage - _model.health.longDamage>>
 			<<set _model.hLength = 50>>
 			<<set _model.hStyle = "luxurious">>
 			<<set _model.hColor = "blonde">>
@@ -1008,7 +1020,8 @@
 		<<set _mindy = BaseSlave()>>
 		<<set _mindy.devotion = 100>>
 		<<set _mindy.trust = 100>>
-		<<set _mindy.health = 70>>
+		<<set _mindy.health.condition = 70>>
+		<<set _mindy.health.health = _mindy.health.condition - _mindy.health.shortDamage - _mindy.health.longDamage>>
 		<<set _mindy.hLength = 50>>
 		<<set _mindy.hStyle = "luxurious">>
 		<<set _mindy.hColor = "strawberry blonde">>
@@ -1568,7 +1581,8 @@
 		<</if>>
 		<<set _hostess.devotion = 45>>
 		<<set _hostess.trust = 55>>
-		<<set _hostess.health = random(60,80)>>
+		<<set _hostess.health.condition = random(60,80)>>
+		<<set _hostess.health.health = _hostess.health.condition - _hostess.health.shortDamage - _hostess.health.longDamage>>
 		<<set _hostess.muscles = 60>>
 		<<if _hostess.weight > 130>>
 			<<set _hostess.weight -= 100>>
@@ -1599,7 +1613,8 @@
 		<</if>>
 		<<set _scientist.devotion = 0>>
 		<<set _scientist.trust = 0>>
-		<<set _scientist.health = random(60,80)>>
+		<<set _scientist.health.condition = random(60,80)>>
+		<<set _scientist.health.health = _scientist.health.condition - _scientist.health.shortDamage - _scientist.health.longDamage>>
 		<<set _scientist.muscles = 60>>
 		<<if _scientist.weight > 130>>
 			<<set _scientist.weight -= 100>>
@@ -1632,7 +1647,8 @@
 		<</if>>
 		<<set _nun.devotion = random(45,60)>>
 		<<set _nun.trust = random(-10)>>
-		<<set _nun.health = random(60,80)>>
+		<<set _nun.health.condition = random(60,80)>>
+		<<set _nun.health.health = _nun.health.condition - _nun.health.shortDamage - _nun.health.longDamage>>
 		<<set _nun.muscles = 30>>
 		<<if _nun.weight > 130>>
 			<<set _nun.weight -= 100>>
diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw
index 93589f69f1822044a0beca79b4b106d288bfc8df..1351f6b2aeefdef37ed4c644160273bb0f4bbb34 100644
--- a/src/pregmod/sePlayerBirth.tw
+++ b/src/pregmod/sePlayerBirth.tw
@@ -554,7 +554,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 
 	<<if _wounded == 1>>
 		Things didn't quite go as planned, leaving you @@.red;weak and wounded.@@ You'll need a couple weeks to recover from the ordeal before you're back on your feet.
-		<<set $PC.majorInjury = 2>>
+		<<run healthDamage($PC, 40)>>
 	<</if>>
 
 <</if>> /*closes gaveBirth*/
diff --git a/src/pregmod/widgets/bodySwapReaction.tw b/src/pregmod/widgets/bodySwapReaction.tw
index e9e1a91cdabafc08b89495d2958bd5bdb2f90b2a..45f12ae9f12b19f506f57b8c8e5609e7508d8cbe 100644
--- a/src/pregmod/widgets/bodySwapReaction.tw
+++ b/src/pregmod/widgets/bodySwapReaction.tw
@@ -15,9 +15,9 @@
 <</if>>
 <<set _end = 0>>
 
-<<if $args[0].health >= $args[1].health+10>>
+<<if $args[0].health.health >= $args[1].health.health+10>>
 	The monitors indicate that $his @@.green;health has improved@@ from $his previous body. Whatever else happens, $he will likely appreciate this.
-<<elseif $args[0].health <= $args[1].health-10>>
+<<elseif $args[0].health.health <= $args[1].health.health-10>>
 	The monitors indicate that $his @@.red;health has degraded@@ from $his previous body. Whatever else happens, this will likely upset $him.
 <</if>>
 Now you only have to wait for $him to wake up.
diff --git a/src/pregmod/widgets/bodyswapWidgets.tw b/src/pregmod/widgets/bodyswapWidgets.tw
index c7b50b6ccc27d802ed71d96c77a651e24b23001a..7b439aae9033b7b45d030da8689bd548324fb8d4 100644
--- a/src/pregmod/widgets/bodyswapWidgets.tw
+++ b/src/pregmod/widgets/bodyswapWidgets.tw
@@ -10,7 +10,12 @@
 <<set $args[0].physicalAge = $args[1].physicalAge>>
 <<set $args[0].visualAge = $args[1].visualAge>>
 <<set $args[0].ageImplant = $args[1].ageImplant>>
-<<set $args[0].health = $args[1].health>>
+<<set $args[0].health.condition = $args[1].health.condition>>
+<<set $args[0].health.shortDamage = $args[1].health.shortDamage>>
+<<set $args[0].health.longDamage = $args[1].health.longDamage>>
+<<set $args[0].health.illness = $args[1].health.illness>>
+<<set $args[0].health.tired = $args[1].health.tired>>
+<<set $args[0].health.health = $args[1].health.health>>
 <<set $args[0].weight = $args[1].weight>>
 <<set $args[0].muscles = $args[1].muscles>>
 <<set $args[0].height = $args[1].height>>
diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw
index 49c8d60a79255caffcaf71ef1b05bf4289808bfd..c03143a04e2d9b42f5fb35358cfc6460564d9f89 100644
--- a/src/pregmod/widgets/pregmodWidgets.tw
+++ b/src/pregmod/widgets/pregmodWidgets.tw
@@ -841,10 +841,10 @@
 <</if>>
 <<if $arcologies[0].FSPaternalist > 20>>
 	<<set $activeStandard.intelligenceImplant = 15>>
-	<<set $activeStandard.health = 60>>
+	<<set $activeStandard.health.condition = 60>>
 <<elseif $arcologies[0].FSDegradationist > 20>>
 	<<set $activeStandard.intelligenceImplant = 15>>
-	<<set $activeStandard.health = 0>>
+	<<set $activeStandard.health.condition = 0>>
 <</if>>
 <<if $arcologies[0].FSSlaveProfessionalism > 20>>
 	<<set $activeStandard.intelligenceImplant = 30>>
@@ -1081,7 +1081,7 @@ $activeSlave.slaveName is up for review:
 		<br>$He @@.red;FAILED@@ educational trials.
 		<<set _passing-->>
 	<</if>>
-	<<if $activeSlave.health >= $activeStandard.health>>
+	<<if $activeSlave.health.condition >= $activeStandard.health.condition>>
 		<br>$He @@.lime;PASSED@@ health examinations.
 	<<else>>
 		<br>$He @@.red;FAILED@@ health examinations.
diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw
index c1c3b22db9fd0942a1ce4ed36c1f841ed60c1863..c940f1ef6a4e396bc358c3349f8472f579f4a94c 100644
--- a/src/pregmod/widgets/seBirthWidgets.tw
+++ b/src/pregmod/widgets/seBirthWidgets.tw
@@ -37,8 +37,8 @@
 <<elseif $slaves[$i].muscles < -5>>
 	<<set $birthDamage += 2>>
 <</if>>
-<<if $slaves[$i].health < -20>>
-	<<set $birthDamage += (4-($slaves[$i].health/10))>>
+<<if $slaves[$i].health.condition < -20>>
+	<<set $birthDamage += (4-($slaves[$i].health.condition/10))>>
 <</if>>
 <<if $slaves[$i].physicalAge < 6>>
 	<<set $birthDamage += 5>>
@@ -157,7 +157,7 @@
 <<elseif $slaves[$i].pregAdaptation >= 100>>
 	<<set $suddenBirth += 1>>
 <</if>>
-<<if $slaves[$i].health < 0>>
+<<if $slaves[$i].health.condition < 0>>
 	<<set $suddenBirth += 2>>
 <</if>>
 <<if $slaves[$i].heels == 1>>
@@ -457,7 +457,8 @@ This descriptions can be expanded with more outcomes later. But it's not practic
 	<</if>>
 	<<if $csec == 1 && $slaves[$i].wombImplant == "restraint">>
 		The uterine support mesh built into $his womb was irreversibly damaged and had to be carefully extracted. Such an invasive surgery carried @@.red;major health complications.@@
-		<<set $slaves[$i].health -= 30, $slaves[$i].wombImplant = "none">>
+		<<set $slaves[$i].wombImplant = "none">>
+		<<run healthDamage($slaves[$i], 30)>>
 	<</if>>
 
 <</if>>
@@ -499,10 +500,12 @@ This descriptions can be expanded with more outcomes later. But it's not practic
 			<br><br>
 			<<if ($slaves[$i].fetish == "masochist")>>
 				Since $he was a virgin, giving birth was a @@.red;terribly painful@@ experience.<<if $slaves[$i].fetishKnown == 0>> $He seems to have orgasmed several times during the experience and appears to @@.lightcoral;really like pain@@.<<set $slaves[$i].fetishKnown = 1>><<else>> However, due to $his masochistic streak, $he @@.hotpink;greatly enjoyed@@ said experience<</if>>.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion += 2>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion += 2>>
 			<<else>>
 				Since $he was a virgin, giving birth was a @@.red;terribly painful@@ experience. $He @@.mediumorchid;despises@@ you for taking $his virginity in such a @@.gold;horrifying@@ way.
-				<<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 25, $slaves[$i].trust -= 25>>
+				<<run healthDamage($slaves[$i], 10)>>
+				<<set $slaves[$i].devotion -= 25, $slaves[$i].trust -= 25>>
 			<</if>>
 		<</if>>
 	<</if>>
@@ -523,7 +526,8 @@ This descriptions can be expanded with more outcomes later. But it's not practic
 			It only hurt for an instant and a second later was promptly forgotten. To $him, $his hips were always this wide.
 		<</if>>
 		$His pelvis has been forced into a @@.lime;more feminine@@ shape.<<if $slaves[$i].hipsImplant > 0>> This has also undone any surgical narrowing $he has undergone.<</if>>
-		<<set $slaves[$i].health -= 20, $slaves[$i].hips = 0, $slaves[$i].hipsImplant = 0>>
+		<<run healthDamage($slaves[$i], 20)>>
+		<<set $slaves[$i].hips = 0, $slaves[$i].hipsImplant = 0>>
 	<</if>>
 	<br><br>
 	<<if $slaves[$i].mpreg == 1>>
@@ -621,7 +625,7 @@ This descriptions can be expanded with more outcomes later. But it's not practic
 		<br>
 		$His thin body was @@.red;ill-suited $his childbirth.@@
 	<</if>>
-	<<if $slaves[$i].health < -20>>
+	<<if $slaves[$i].health.condition < -20>>
 		<br>
 		$His poor health made laboring @@.red;exhausting.@@
 		<<set _compoundCondition = 1>>
@@ -721,10 +725,10 @@ All in all,
 		childbirth was @@.green;no problem@@ for $him.
 	<</if>>
 	<<if $birthDamage > 0>>
-		<<set $slaves[$i].health -= Math.round(($birthDamage/2)*10)>>
+		<<run healthDamage($slaves[$i], Math.round(($birthDamage/2)*10))>>
 		<<if $birthDamage > 5 && _compoundCondition == 1 && _curBabies > 1>>
 			Or it would have been, were $he only having one. With each additional child that needed to be birthed, @@.red;the damage to $his health was compounded.@@
-			<<set $slaves[$i].health -= _curBabies>>
+			<<run healthDamage($slaves[$i], _curBabies>>
 		<</if>>
 	<</if>>
 <</if>>
@@ -1206,7 +1210,7 @@ All in all,
 <<widget "seBirthCritical">>
 <<set _curBabies = $slaves[$i].curBabies.length>>
 
-<<if $slaves[$i].health <= -100>>
+<<if $slaves[$i].health.health <= -100>>
 	<br><br>
 	While attempting to recover, $slaves[$i].slaveName @@.red;passes away@@ from complications. $His body was fatally damaged during childbirth.
 	<<if _curBabies > 0>> /* this needs to include ALL children born fom this batch, incubated ones included. */
diff --git a/src/societies/aztec/slaveSacrifice.tw b/src/societies/aztec/slaveSacrifice.tw
index eee39c12beabc2af7f848f8664b9337bdf269c58..b4ce9a4a5a30bb117b5e115ba259be98ca50675d 100644
--- a/src/societies/aztec/slaveSacrifice.tw
+++ b/src/societies/aztec/slaveSacrifice.tw
@@ -253,7 +253,7 @@
 		<<set $activeSlave.boobsMilk += 10*$activeSlave.lactationAdaptation>>
 		<<set $sactiveSlave.boobs += $activeSlave.boobsMilk>>
 	<</if>>
-	<<set $activeSlave.health -= 20>>
+	<<run healthDamage($activeSlave, 20)>>
 	The penance put $his body through great stress @@.red;which impacted $his health.@@
 	<<set $currentRule.addict = 5>>
 	<<set $activeSlave.clothes = "no clothing">>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 5ce558b59b72459493ad39774d57230c49995965..250d7a05355e4f04b03ec0e6c1c1c7e4b2439ee0 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -52,6 +52,9 @@
 <<if def $spaSlaves>>
 	<<unset $spaSlaves>>
 <</if>>
+<<if ndef $spaSpots>>
+	<<set $spaSpots = 0>>
+<</if>>
 <<if def $nurserySlaves>>
 	<<unset $nurserySlaves>>
 <</if>>
diff --git a/src/uncategorized/PETS.tw b/src/uncategorized/PETS.tw
index 1eb786415a9768595093d3f9a68bf53403c6d27f..9354ce43ca73a2277e697fbb6f6fca3231d5e416 100644
--- a/src/uncategorized/PETS.tw
+++ b/src/uncategorized/PETS.tw
@@ -320,7 +320,7 @@ You decide to knit up care's raveled sleave with a break in the spa. You have yo
 	<<run $slaves.forEach(function(s) {
 		if (s.assignment == "be confined in the cellblock") {
 			s.devotion += 10;
-			s.health -= 10;
+			healthDamage(s, 10);
 		}
 	})>>
 	<</replace>>
@@ -331,7 +331,7 @@ You decide to knit up care's raveled sleave with a break in the spa. You have yo
 	You let $activeSlave.slaveName finish using $subSlave.slaveName's mouth, turn off the lights in _his2 cell, and then meet $him outside. It won't do to undermine $him in front of the prisoners. You offer a few choice remarks on the value of $his charges to you and the potential effects of sleep deprivation, and point out that $he is a poor Wardeness if $he cannot break slaves without taking measures that may damage their health. $He's clearly filled with remorse, begs your forgiveness, and manages to break slaves just as effectively this week while taking @@.green;better care@@ of their health.
 	<<run $slaves.forEach(function(s) {
 		if (s.assignment == "be confined in the cellblock") {
-			s.health += 10;
+			improveCondition(s, 10);
 		}
 	})>>
 	<</replace>>
diff --git a/src/uncategorized/REFI.tw b/src/uncategorized/REFI.tw
index 363ef0f7e955100722f0c55baaa23aa7b8a01c56..c7b7ca8e3007f031874519b7d1e2d9606ae26de6 100644
--- a/src/uncategorized/REFI.tw
+++ b/src/uncategorized/REFI.tw
@@ -1382,7 +1382,8 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 				"Pregnant <<s>>e<<x>> with <<Master>> i<<s>> the be<<s>>t!"
 			<</if>>
 			$He has become @@.hotpink;more devoted to you,@@ @@.gold;mostly out of fear of your sexual appetite,@@ but @@.lightcoral;with a newfound pregnancy fetish,@@ even if though you got a little domineering.
-			<<set $activeSlave.devotion += 4, $activeSlave.trust -= 4, $activeSlave.health -= 5>>
+			<<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>>
+			<<run healthDamage($activeSlave, 5)>>
 			<<set $activeSlave.counter.penetrative += 3, $penetrativeTotal += 3>>
 		<<elseif $PC.pregMood == 1>>
 			You ask $him if $he finds you attractive, even with such a
diff --git a/src/uncategorized/REFS.tw b/src/uncategorized/REFS.tw
index 8bab643badf42524647bdf8dd12f11f65c6c43c6..7f9a82d93b51c3514aef3a00f2cd6e62df17afd4 100644
--- a/src/uncategorized/REFS.tw
+++ b/src/uncategorized/REFS.tw
@@ -52,7 +52,7 @@
 	<<set $activeSlave.boobs = random(6,9)*50>>
 	<<set $activeSlave.hips = random(-2,-1)>>
 	<<set $activeSlave.butt = random(0,2)>>
-	<<set $activeSlave.health = random(-30,-10)>>
+	<<run setHealth($activeSlave, jsRandom(-30, -10), normalRandInt(10, 3), normalRandInt(10, 3))>>
 	<<set $activeSlave.clothes = "uncomfortable straps">>
 	<<set $activeSlave.collar = "uncomfortable leather">>
 
@@ -67,7 +67,7 @@
 	<<set $activeSlave.boobs = random(6,9)*50>>
 	<<set $activeSlave.hips = random(-2,-1)>>
 	<<set $activeSlave.butt = random(0,2)>>
-	<<set $activeSlave.health = random(70,80)>>
+	<<run setHealth($activeSlave, jsRandom(70, 80), 0, undefined, 0, 0)>>
 	<<set $activeSlave.clothes = "conservative clothing">>
 
 <<case "physical idealist encounter">>
@@ -82,7 +82,7 @@
 	<<set $activeSlave = GenerateNewSlave("XX")>>
 	<<set $activeSlave.devotion = 100>>
 	<<set $activeSlave.trust = 100>>
-	<<set $activeSlave.health = 100>>
+	<<run setHealth($activeSlave, 100, 0, undefined, 0)>>
 	<<set $activeSlave.muscles = 99>>
 	<<if $activeSlave.dick > 0 && $activeSlave.vagina == -1>>
 		<<set $activeSlave.clothes = "sport shorts">>
@@ -105,7 +105,7 @@
 	<</if>>
 	<<set $activeSlave.devotion = 100>>
 	<<set $activeSlave.trust = 100>>
-	<<set $activeSlave.health = 100>>
+	<<run setHealth($activeSlave, 100, 0)>>
 	<<set $activeSlave.hColor = "grey">>
 	<<set $activeSlave.hStyle = "bun">>
 	<<set $activeSlave.clothes = "conservative clothing">>
@@ -123,7 +123,7 @@
 	<<set $activeSlave.origin = "$He was enslaved by you when you overcharged $him for surgery.">>
 	<<set $activeSlave.devotion = random(-70,-55)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(10,20)>>
+	<<run setHealth($activeSlave, jsRandom(10, 20), jsRandom(10, 20)))>>
 	<<set $activeSlave.boobs += 600>>
 	<<set $activeSlave.boobsImplant = 600>>
 	<<set $activeSlave.butt += 1>>
@@ -146,7 +146,7 @@
 	<<set $activeSlave = GenerateNewSlave("XX")>>
 	<<set $activeSlave.devotion = 20>>
 	<<set $activeSlave.trust = 20>>
-	<<set $activeSlave.health = -30>>
+	<<run setHealth($activeSlave, -30, Math.max(normalRandInt(5, 3), 0), normalRandInt(10, 3))>>
 	<<set $activeSlave.boobs = random(7,11)*30>>
 	<<set $activeSlave.hips = 0>>
 	<<set $activeSlave.butt = 0>>
@@ -194,7 +194,7 @@
 	<<set $activeSlave.origin = "$He was enslaved by you when you purchased $his debt.">>
 	<<set $activeSlave.devotion = random(-90,-75)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(10,20)>>
+	<<run setHealth($activeSlave, jsRandom(10, 20))>>
 	<<set $activeSlave.counter.birthsTotal = 2>>
 	/* Plush */
 	<<set $activeSlave.boobs = random(7,11)*100>>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 4a1ed88603872d0c6443d086d7bc3d912aad2be4..b930100048b9a061a61a61be36bc2457768df52e 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -116,7 +116,7 @@
 		<<set _meanGirl.visualAge = _meanGirl.actualAge>>
 		<<set _meanGirl.physicalAge = _meanGirl.actualAge>>
 		<<set _meanGirl.ovaryAge = _meanGirl.actualAge>>
-		<<set _meanGirl.health = random(30,50)>>
+		<<run setHealth(_meanGirl, jsRandom(30, 50), 0, 0, 0)>>
 		<<set _meanGirl.attrXY = random(60,90)>>
 		<<set _meanGirl.attrXX = random(10,20)>>
 		<<set _meanGirl.behavioralFlaw = either("arrogant", "bitchy")>>
@@ -3764,7 +3764,7 @@ Passing by the kitchen in the morning, you take a moment to listen to the low hu
 	"You're really fucking tall," the other slave explains. "Guys here love a $girl that tower over them and you're, like, the definition of tall."
 <<elseif ($arcologies[0].FSPetiteAdmiration != "unset") && heightPass($activeSlave)>>
 	"You're so small," the other slave explains. "A guy can just scoop you up and carry you off for a good time."
-<<elseif ($arcologies[0].FSBodyPurist != "unset") && ($activeSlave.boobsImplant == 0) && ($activeSlave.health > 50)>>
+<<elseif ($arcologies[0].FSBodyPurist != "unset") && ($activeSlave.boobsImplant == 0) && ($activeSlave.health.condition > 50)>>
 	"It's how healthy you are, and your natural boobs," the other slave explains. "You look good and natural, and everyone likes that here, especially if you're mature."
 <<elseif ($arcologies[0].FSIntellectualDependency != "unset") && bimboScore($activeSlave) >= 6>>
 	"You're so hot," the other slave explains. "Guys love a $girl who knows a good time and your body screams 'ravish me'."
@@ -4899,7 +4899,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <<if $seeExtreme == 1 && $activeSlave.indentureRestrictions <= 0>>
 	<br><<link "Geld $him to render $him impotent again">>
-		<<set $activeSlave.balls = 0, $activeSlave.health -= 10, $activeSlave.trust -= 20>>
+		<<set $activeSlave.balls = 0, $activeSlave.trust -= 20>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
 			You bluntly tell $him $he is becoming potent, and that is something you can't allow to roam unchecked amongst your fertile slaves. You drag $him to the remote surgery and strap $him face-down with $his legs spread <<if $activeSlave.belly >= 5000>>$his _belly rounded belly forcing $his rear into the air<</if>>. $He doesn't understand what's happening, since the anesthetics totally deprive $him of any sensation. $He's so drugged and drowsy with @@.red;surgical recovery@@ that it takes a while for $him to figure out what's happened. When $he does, $his poor mind scarcely processes the @@.gold;horror@@ of what's happened. $He numbly carries on, terrified.
@@ -5133,7 +5134,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 						<<replace "#result2">>
 							You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
 							<<set $activeSlave.trust -= 15>>
-							<<set $activeSlave.health -= 15>>
+							<<run healthDamage($activeSlave, 15)>>
 							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
 						<</replace>>
 					<</link>>
@@ -5148,38 +5149,38 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 					<br><<link "Castrate $him">>
 						<<replace "#result2">>
 							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
-							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
+							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10>>
 							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
-							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 10)>>
 						<</replace>>
 					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
 					<<if $activeSlave.vagina == -2>>
 						<br><<link "Surgically alter $his gender">>
 							<<replace "#result2">>
 								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
 								<<= VCheck.Vaginal()>>
 								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 							<</replace>>
 						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
 					<<else>>
 						<br><<link "Remove $his male genitalia">>
 							<<replace "#result2">>
 								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
-								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
 								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 							<</replace>>
 						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
 					<</if>>
 					<br><<link "Deny $him from ever having satisfying sex again">>
 						<<replace "#result2">>
 							You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
+							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
 							<<= VCheck.Anal()>>
 							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
+							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 						<</replace>>
 					<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
 				<</if>>
@@ -5234,7 +5235,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 						<<replace "#result2">>
 							You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
 							<<set $activeSlave.trust -= 15>>
-							<<set $activeSlave.health -= 15>>
+							<<run healthDamage($activeSlave, 15)>>
 							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
 						<</replace>>
 					<</link>>
@@ -5249,38 +5250,38 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 					<br><<link "Castrate $him">>
 						<<replace "#result2">>
 							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
-							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
+							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10>>
 							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
-							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 10)>>
 						<</replace>>
 					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
 					<<if $activeSlave.vagina == -2>>
 						<br><<link "Surgically alter $his gender">>
 							<<replace "#result2">>
 								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
 								<<= VCheck.Vaginal()>>
 								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 							<</replace>>
 						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
 					<<else>>
 						<br><<link "Remove $his male genitalia">>
 							<<replace "#result2">>
 								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
-								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
 								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 							<</replace>>
 						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
 					<</if>>
 					<br><<link "Deny $him from ever having satisfying sex again">>
 						<<replace "#result2">>
 							You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
+							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
 							<<= VCheck.Anal()>>
 							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
+							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 						<</replace>>
 					<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
 				<</if>>
@@ -5329,7 +5330,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 						<<replace "#result2">>
 							You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
 							<<set $activeSlave.trust -= 15>>
-							<<set $activeSlave.health -= 15>>
+							<<run healthDamage($activeSlave, 15)>>
 							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
 						<</replace>>
 					<</link>>
@@ -5344,38 +5345,38 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 					<br><<link "Castrate $him">>
 						<<replace "#result2">>
 							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
-							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
+							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10>>
 							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
-							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 10)>>
 						<</replace>>
 					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
 					<<if $activeSlave.vagina == -2>>
 						<br><<link "Surgically alter $his gender">>
 							<<replace "#result2">>
 								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
 								<<= VCheck.Vaginal()>>
 								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 							<</replace>>
 						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
 					<<else>>
 						<br><<link "Remove $his male genitalia">>
 							<<replace "#result2">>
 								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
-								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
 								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 							<</replace>>
 						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
 					<</if>>
 					<br><<link "Deny $him from ever having satisfying sex again">>
 						<<replace "#result2">>
 							You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
+							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
 							<<= VCheck.Anal()>>
 							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
+							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 						<</replace>>
 					<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
 				<</if>>
@@ -5399,7 +5400,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 				<<replace "#result2">>
 					You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
 					<<set $activeSlave.trust -= 15>>
-					<<set $activeSlave.health -= 15>>
+					<<run healthDamage($activeSlave, 15)>>
 					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
 				<</replace>>
 			<</link>>
@@ -5414,38 +5415,38 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<br><<link "Castrate $him">>
 				<<replace "#result2">>
 					As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
-					<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
+					<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10>>
 					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
-					<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+					<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 10)>>
 				<</replace>>
 			<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
 			<<if $activeSlave.vagina == -2>>
 				<br><<link "Surgically alter $his gender">>
 					<<replace "#result2">>
 						You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-						<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
+						<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
 						<<= VCheck.Vaginal()>>
 						<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-						<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+						<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 					<</replace>>
 				<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
 			<<else>>
 				<br><<link "Remove $his male genitalia">>
 					<<replace "#result2">>
 						You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
-						<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
+						<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
 						<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-						<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+						<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 					<</replace>>
 				<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
 			<</if>>
 			<br><<link "Deny $him from ever having satisfying sex again">>
 				<<replace "#result2">>
 					You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-					<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
+					<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
 					<<= VCheck.Anal()>>
 					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-					<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
+					<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20)>>
 				<</replace>>
 			<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
 		<</if>>
@@ -5469,7 +5470,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 				<br><<link "Just get $him out of here">>
 					<<replace "#result2">>
 					You grab $activeSlave.slaveName by the scruff of $his neck as $he struggles to right $himself and literally throw $him out of your room and into the hallway, where $he lands with a painful-sounding crash. You decide to deal with getting that mess cleaned up later; for now, you're going back to bed.
-					<<set $activeSlave.health -= 10>>
+					<<run healthDamage($activeSlave, 10)>>
 					<</replace>>
 				<</link>>
 			</span>
@@ -5502,7 +5503,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<<set $slaves[$slaveIndices[$Bodyguard.ID]].devotion += 2>>
 		<<elseif $Concubine != 0 && canWalk($Concubine)>>
 			and gets tackled off of you by $Concubine.slaveName. After a violent struggle, the amorous cow is restrained and leaking cum on your floor. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. $Concubine.slaveName is @@.gold;visibly shaken@@ by the assault and was @@.red;badly beaten@@ by the muscular slave during the fight.
-			<<set $slaves[$slaveIndices[$Concubine.ID]].health -= 40, $slaves[$slaveIndices[$Concubine.ID]].trust -= 5>>
+			<<set $slaves[$slaveIndices[$Concubine.ID]].trust -= 5>>
+			<<run healthDamage($slaves[$slaveIndices[$Concubine.ID]], 40)>>
 		<<else>>
 			and cums directly into your exposed womb. $He backs off, possibly startled by the shouting, giving you the chance to slip away to safety. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. Still, $he knew you were fertile and went right for the prize; it would be wise to assume $he's done $his job well.
 			<<= knockMeUp($PC, 50, 0, $activeSlave.ID)>>
@@ -6834,11 +6836,11 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		In the same straightforward tone, you ask about $his health. $He swallows nervously and stammers,
 		<<if ($activeSlave.preg > $activeSlave.pregData.normalBirth/8) && ($activeSlave.preg < $activeSlave.pregData.normalBirth/3.33)>>
 			"I, I haven't been feeling good in the morning,
-		<<elseif ($activeSlave.health < -20)>>
+		<<elseif ($activeSlave.health.condition < -20)>>
 			"I, I don't feel very good,
 		<<elseif ($activeSlave.preg > 0) && ($activeSlave.preg < $activeSlave.pregData.normalBirth/6.66)>>
 			"I, I feel a little off. The food ta<<s>>te<<s>> weird lately and my brea<<s>>t<<s>> are really <<s>>en<<s>>itive,
-		<<elseif ($activeSlave.health > 20)>>
+		<<elseif ($activeSlave.health.condition > 20)>>
 			"I'm, I'm okay,
 		<<else>>
 			"I, I feel healthy,
@@ -7897,7 +7899,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		Lesser whippings are usually performed by binding a slave's hands and then securing them to the ceiling so that $he will dance titillatingly when struck. This is not such a beating. You tie $activeSlave.slaveName to a wall by $his wrists and ankles and flog $him with workmanlike thoroughness<<if $activeSlave.pregKnown == 1>>, making sure to avoid accidentally ending $his pregnancy<</if>>. $He passes from angry struggles to agonized sobbing and finally to bloody, exhausted weeping before you untie $his now-limp form and apply first aid. $activeSlave.slaveName's rebelliousness is @@.gold;dulled by the experience,@@ and $his @@.red;health is damaged.@@ Furthermore, every single one of your other slaves not already obedient to you is @@.gold;frightened@@ by the example set.
-		<<set $activeSlave.trust -= 5, $activeSlave.health -= 40>>
+		<<set $activeSlave.trust -= 5>>
+		<<run healthDamage($activeSlave, 40)>>
 		<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>>
 	<</replace>>
 <</link>>
@@ -7906,7 +7909,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
 			The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;saddened@@ and @@.gold;frightened@@ by this punishment, and $his @@.red;health is damaged@@ by the surgery. Every single one of your other slaves with any resistance left in them is @@.gold;sensibly restrained@@ from trying such rash acts.
-			<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5, $activeSlave.health -= 10, $activeSlave.heels = 1>>
+			<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5, $activeSlave.heels = 1>>
+			<<run healthDamage($activeSlave, 10)>>
 			<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>>
 		<</replace>>
 	<</link>>
@@ -7914,8 +7918,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
 			The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and $his @@.red;health is damaged@@ by the major surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set.
-			<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 40, $activeSlave.diet = "healthy">>
-			<<run removeLimbs($activeSlave, "all")>>
+			<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.diet = "healthy">>
+			<<run removeLimbs($activeSlave, "all"), healthDamage($activeSlave, 40)>>
 			<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>>
 		<</replace>>
 	<</link>>
@@ -7924,9 +7928,10 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<<EventNameDelink $activeSlave>>
 			<<replace "#result">>
 				The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. You make sure to point out all the things $he'll never get to see again. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and $his @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set.
-				<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 20>>
-				<<run eyeSurgery($activeSlave, "both", "blind")>>
+				<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50>>
+				<<run eyeSurgery($activeSlave, "both", "blind"), healthDamage($activeSlave, 20)>>
 				<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>>
+				
 			<</replace>>
 		<</link>>
 	<</if>>
@@ -7935,7 +7940,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<<EventNameDelink $activeSlave>>
 			<<replace "#result">>
 				The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, protesting form through the penthouse to the surgery. $He is allowed one last chance to verbally resist you, plead with you, and finally to beg with you, all in vain. $activeSlave.slaveName is @@.mediumorchid;filled with hatred@@ and @@.gold;terror@@ by this harsh punishment, and $his @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.hotpink;terrified@@ by the example set.
-				<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 25, $activeSlave.health -= 10, $activeSlave.voice = 0>>
+				<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 25, $activeSlave.voice = 0>>
+				<<run healthDamage($activeSlave, 10)>>
 				<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>>
 			<</replace>>
 		<</link>>
@@ -8831,7 +8837,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		Since $he's limbless<<if $activeSlave.pregKnown == 1>> and pregnant<</if>>, $his health is more fragile than most slaves'. You look in on $him, and when $he continues to shiver, you pull the sheets back around $him, tucking $him in in such a way that $he can lie comfortably. In the morning $he doesn't understand why $he's so snug and well-rested, but @@.green;$his health improves with decent sleep.@@
-		<<set $activeSlave.health += 10>>
+		<<run improveCondition($activeSlave, 10)>>
 	<</replace>>
 <</link>>
 <br><<link "Keep $him warm">>
@@ -8845,7 +8851,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		In the morning, $his lips are blue and $he's nearly unresponsive. Your other slaves get $him working again, but @@.red;$his health has been damaged.@@
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 	<</replace>>
 <</link>>
 
@@ -9533,8 +9539,9 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 	<<replace "#result">>
 		$He gets a weekly health exam from the automated systems, which also do their best to monitor $his well-being, but $he does not protest as you take $him to the surgery and give $him a <<if $PC.skill.medicine >= 100>>professional examination. It feels good to put the old skills to use on an attractive patient<<else>>thorough examination<</if>>. There's nothing the matter other than that $he hasn't been 18 for a long time. $He looks a little sad at some of the results, but whenever $he does, you place a hand on $his cheek and give $him a kiss. $He gets the idea.
 		"I under<<s>>tand, <<Master>>. I can <<s>>till <<s>>erve you," $he <<say>>s.
-		You adjust $his diet and exercise a little, which should @@.green;slightly improve@@ $his health<<if $PC.skill.medicine >= 100>>, and prescribe some new supplements that might help $him @@.green;feel $his best@@ all the time<<set $activeSlave.health += 10>><</if>>. As $he gets up from the chair and makes to resume $his duties, you give $him a light swat across the buttocks. $He squeaks and turns to @@.mediumaquamarine;giggle at you,@@ giving you a broad wink and shaking $his tits a little for you.
-		<<set $activeSlave.health += 10, $activeSlave.trust += 4>>
+		You adjust $his diet and exercise a little, which should @@.green;slightly improve@@ $his health<<if $PC.skill.medicine >= 100>>, and prescribe some new supplements that might help $him @@.green;feel $his best@@ all the time<<run improveCondition($activeSlave, 10)>><</if>>. As $he gets up from the chair and makes to resume $his duties, you give $him a light swat across the buttocks. $He squeaks and turns to @@.mediumaquamarine;giggle at you,@@ giving you a broad wink and shaking $his tits a little for you.
+		<<set $activeSlave.trust += 4>>
+		<<run improveCondition($activeSlave, 10)>>
 	<</replace>>
 <</link>>
 <<if ($HeadGirl != 0) && ($HeadGirl.ID != $activeSlave.ID)>>
@@ -9543,8 +9550,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
 			$HeadGirl.slaveName understands the situation immediately. _He2 gets _himself2 and $activeSlave.slaveName dressed for a nice, non-sexual 'date' in $clubName, and leads $him out by the hand with a wink over _his2 shoulder to you. Your Head Girl understands just what kind of break from sexual servitude $activeSlave.slaveName really needs. They enjoy a nice meal, take a stroll and talk as friends, and get some inconsequential but relaxing beauty treatments together. They both @@.hotpink;enjoy the relaxation,@@ and $activeSlave.slaveName @@.green;feels much better@@ after the rest, too.
-			<<set $activeSlave.devotion += 4, $activeSlave.health += 10>>
-			<<run cashX(forceNeg(500), "event", $activeSlave)>>
+			<<set $activeSlave.devotion += 4>>
+			<<run cashX(forceNeg(500), "event", $activeSlave), improveCondition($activeSlave, 10)>>
 			<<set $slaves[$slaveIndices[$HeadGirl.ID]].devotion += 4>>
 		<</replace>>
 	<</link>> //This option will cost <<print cashFormat(500)>>//
@@ -10081,7 +10088,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		You shove $his unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of $his sack, leaving $him writhing on the couch in considerable discomfort. You add leather mittens to $his hands to stop $him from removing the rubber, and then observe that this is a method used to geld livestock. $His tearful begging goes on until you tire of it and put $him out. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> tracks $his agonized, weeping progress around the arcology for the many hours it takes the lack of blood flow to necessitate a trip to the remote surgery. When that time comes, you make $him beg you to remove $his balls for an hour straight before you do — and $he's so desperate for relief from the pain that $he does it. The experience has left $him @@.red;slightly injured,@@ @@.orange;gelded,@@ @@.red;thoroughly traumatized,@@ and @@.gold;willing to do anything@@ to avoid any more pain.
-		<<set $activeSlave.behavioralFlaw = "odd", $activeSlave.trust -= 20, $activeSlave.health -= 10, $activeSlave.balls = 0, $activeSlave.scrotum = 0>>
+		<<set $activeSlave.behavioralFlaw = "odd", $activeSlave.trust -= 20, $activeSlave.balls = 0, $activeSlave.scrotum = 0>>
+		<<run healthDamage($activeSlave, 10)>>
 	<</replace>>
 <</link>>
 
@@ -10917,7 +10925,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			enduring all of your teasing without the slightest hint of an erection. Even though $his chastity blocks the use of $his ass, you still focus most of your attention on $his rear for the day the belt comes off.
 		<</if>>
 		When $he goes to the bathroom afterward, however, you see $him <<if canSee($activeSlave)>>glance at $himself in the mirror, just once, and then @@.gold;glance away again,@@<<else>>run $his hand under $his cock, just once, and then @@.gold;quickly removing $his hand,@@<</if>> a tear leaking down $his cheek.
-		<<set $activeSlave.balls = 0, $activeSlave.scrotum = 0,$activeSlave.health -= 5, $activeSlave.trust -= 4, $activeSlave.devotion += 4>>
+		<<set $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.trust -= 4, $activeSlave.devotion += 4>>
+		<<run healthDamage($activeSlave, 5)>>
 	<</replace>>
 	<<replace "#artFrame">>
 		/* 000-250-006 */
@@ -11803,8 +11812,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 	<<replace "#result">>
 		You give $activeSlave.slaveName no indication that $his public use assignment is about to change. Late in the day, when $his shift would normally end, another of your slaves simply maintains $him as usual and then leaves $him be. $activeSlave.slaveName is so deprived of any way to tell time that $he doesn't realize $he's been left for some time. The first indication $he gets that something's different is when liquid food is squirted down $his throat the next morning. When $he's finally stripped out of the suit at the end of the week, $he's pale and wan and $his holes are puffy and red. @@.red;$His health was damaged.@@ However, $his permanent presence became quite noted. @@.green;Your reputation has increased.@@ And when $he's out of the suit, $he instantly begs you to allow $him to do anything to save $himself from more of that. @@.gold;$His fear of you has increased.@@
 	<</replace>>
-	<<run repX(500, "event", $activeSlave)>>
-	<<set $activeSlave.trust -= 10, $activeSlave.health -= 10, $activeSlave.counter.publicUse += 30>>
+	<<run repX(500, "event", $activeSlave), healthDamage($activeSlave, 10)>>
+	<<set $activeSlave.trust -= 10, $activeSlave.counter.publicUse += 30>>
 	<<if canDoVaginal($activeSlave)>>
 		<<if canDoAnal($activeSlave)>>
 			<<set $activeSlave.counter.vaginal += 10, $vaginalTotal += 10, $activeSlave.counter.anal += 10, $analTotal += 10, $activeSlave.counter.oral += 10, $oralTotal += 10>>
@@ -12186,7 +12195,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		When you assent, $he cheers up immediately, looking remarkably happy for a $girl who's just learned $his vagina is about to have a surgical operation performed on it. Then again, having those huge pussylips constantly getting in $his way when $he runs must be extremely uncomfortable, so it's not shocking $he would consider a radical solution to $his problem. When $he exits the remote surgery, $he looks @@.red;sorer than ever,@@ of course, but $he @@.hotpink;smiles gratefully@@ at you the next time $he <<if canSee($activeSlave)>>sees<<else>>meets<</if>> you, and lets you know $he's really looking forward to recovering enough for $him to take $his beloved <<= WrittenMaster()>> into $his @@.orange;newly streamlined cunt.@@
-		<<set $activeSlave.devotion += 4, $activeSlave.health -= 10, $activeSlave.labia = 0>>
+		<<set $activeSlave.devotion += 4, $activeSlave.labia = 0>>
+		<<run healthDamage($activeSlave, 10)>>
 	<</replace>>
 <</link>>
 <<if canDoVaginal($activeSlave)>>
@@ -12827,21 +12837,25 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<</if>>
 			The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
 			<<if $activeSlave.geneMods.NCS == 0>>
-				<<set $activeSlave.health -= 10, $activeSlave.boobs += 200>>
+				<<set $activeSlave.boobs += 200>>
+				<<run healthDamage($activeSlave, 10)>>
 			<<else>>
-				<<set $activeSlave.health -= 10, $activeSlave.boobs += 100>>
+				<<set $activeSlave.boobs += 100>>
+				<<run healthDamage($activeSlave, 10)>>
 			<</if>>
 		<<elseif _injection == "butt">>
 			@@.lime;buttocks have grown,@@ delighting $him.
 			<<set $activeSlave.butt++>>
 			The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-			<<set $activeSlave.health -= 10>>
+			<<run healthDamage($activeSlave, 10)>>
 		<<elseif _injection == "lips">>
 			@@.lime;lips have swelled,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-			<<set $activeSlave.health -= 10, $activeSlave.lips += 10>>
+			<<set $activeSlave.lips += 10>>
+			<<run healthDamage($activeSlave, 10)>>
 		<<elseif _injection == "clit">>
 			@@.lime;clit has grown,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-			<<set $activeSlave.health -= 10, $activeSlave.clit++>>
+			<<set $activeSlave.clit++>>
+			<<run healthDamage($activeSlave, 10)>>
 		<<elseif _injection == "dick">>
 			@@.lime;cock has grown,@@ delighting $him.
 			<<set $activeSlave.dick++>>
@@ -12850,7 +12864,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 				<<set $activeSlave.balls++>>
 			<</if>>
 			The dose of growth hormones and male hormone treatment necessary to cause such rapid change left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-			<<set $activeSlave.health -= 10>>
+			<<run healthDamage($activeSlave, 10)>>
 		<<elseif _injection == "dickMinus">>
 			@@.orange;dick has shrunk,@@ delighting $him.
 			<<set $activeSlave.dick-->>
@@ -12865,13 +12879,15 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 				<</if>>
 			<</if>>
 			The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-			<<set $activeSlave.health -= 10>>
+			<<run healthDamage($activeSlave, 10)>>
 		<<elseif _injection == "balls">>
 			@@.lime;testicles have grown,@@ delighting $him. The dose of growth hormones and male hormone treatment necessary to cause such rapid change left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-			<<set $activeSlave.health -= 10, $activeSlave.balls++>>
+			<<set $activeSlave.balls++>>
+			<<run healthDamage($activeSlave, 10)>>
 		<<elseif _injection == "ballsMinus">>
 			@@.orange;testicles have shrunk,@@ delighting $him. The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-			<<set $activeSlave.balls--, $activeSlave.health -= 10>>
+			<<set $activeSlave.balls-->>
+			<<run healthDamage($activeSlave, 10)>>
 			<<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.balls > 1) && (random(1,100) > 50))>>
 				<<set $activeSlave.balls-->>
 			<</if>>
@@ -13491,7 +13507,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<<set $activeSlave.behavioralFlaw = "odd">>
 			The terrible experience has left $him with @@.red;unpleasant nervous tics.@@
 		<</if>>
-		<<set $activeSlave.devotion += 10, $activeSlave.health -= 10>>
+		<<set $activeSlave.devotion += 10>>
+		<<run healthDamage($activeSlave, 10)>>
 	<</replace>>
 <</link>>
 <<if canImpreg($activeSlave, $PC)>>
@@ -15370,10 +15387,10 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		Simple problems require simple solutions — $he'll get fucked in the mouth until $he either gets over $his hang-ups about oral or learns to hide them. You drag the protesting $activeSlave.slaveName out in public, chain $him low so that $his mouth is available, and tell $him that $he'll suck dicks until $he gets through five in a row without grimacing, gagging, or resisting. You have a comfortable chair brought out to you and settle in to watch the show.
 		$activeSlave.slaveName tries, $he really does. But when word gets out as to the conditions of $his enslavement, $his users take a perverse enjoyment in being rougher than usual to evoke the exact reactions $he's trying to avoid. By the third failed streak, you've started to grow bored of the spectacle, but luckily you find entertainment in conversation with those who have already been entertained by poor $activeSlave.slaveName. Before long more chairs have been brought up and an impromptu salon has been set up alongside the blowbang line. By the sixth failed streak, an enterprising citizen has set up a small bar and is serving drinks. By the ninth, you've delegated watching $activeSlave.slaveName to your assistant. You personally break the eleventh streak after $he reached four, to general acclaim from your newfound friends and a toast to your virility.
 		When the fourteenth streak is finally successful, there are serious talks about making these blowbang salons a regular occurrence and some backslapping directed towards you for your innovation in genteel hedonism. While you seriously doubt $activeSlave.slaveName enjoys oral sex any more than $he did at the start of the day, $he's certainly @@.green;learned to keep $his feelings on the matter to $himself.@@ $He did, however, @@.red;have quite a rough time@@ of it<<if $activeSlave.skill.oral <= 30>>, though $he did learn a thing or two about sucking dick.<<= SkillIncrease.Oral($activeSlave, 10)>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons.
-		<<set $activeSlave.health -= 10, $activeSlave.sexualFlaw = "none">>
+		<<set $activeSlave.sexualFlaw = "none">>
 		<<set _oralSeed = random(65,80)>>
 		<<set $activeSlave.counter.oral += _oralSeed, $activeSlave.counter.publicUse += _oralSeed, $oralTotal += _oralSeed>>
-		<<run repX(500, "event", $activeSlave)>>
+		<<run repX(500, "event", $activeSlave), healthDamage($activeSlave, 10)>>
 	<</replace>>
 <</link>>
 <br><<link "Teach $him to see cum as a reward">>
@@ -17722,7 +17739,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<<set $activeSlave.devotion += 4>>
 			<<set $activeSlave.balls = 0>>
 			<<set $activeSlave.scrotum = 0>>
-			<<set $activeSlave.health-->>
+			<<run healthDamage($activeSlave, 1)>>
 		<</replace>>
 	<</link>><<if $activeSlave.anus == 0>> //This option will take $his virginity//<</if>>
 <</if>>
@@ -17969,7 +17986,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
 			You have $assistantName inform $activeSlave.slaveName of $his unacceptable behavior and sentence $him to a day in $arcadeName. $He cries and pleads for mercy, and even begs to be allowed to suck a cock, any cock, so $he can prove $his newfound enthusiasm for cum, but you are unmerciful as two other slaves drag $him off to serve $his sentence. $He is forced to wear a<<if $activeSlave.vagina != -1>> combined vaginal and<<else>>n<</if>> anal chastity belt so that the only hole available is $his mouth, and is then confined in $arcadeName with $his mouth spread open by a ring gag and $his head sticking through the hole in the wall. A sign below $his mouth proclaims $him to be a "cum extraction tube" and $he is used that way for the duration of $his stay — a grueling, 18-hour marathon of relentless throat fucking. <<if $activeSlave.sexualFlaw != "hates oral">>$His ordeal is so extreme that $he now @@.red;hates oral sex@@<<else>>$His hatred of oral sex makes $his ordeal that much more horrific<</if>>, but it @@.hotpink;breaks down $his resistance.@@ $He now @@.gold;better understands the terrifying power you have over $him,@@ and the sheer amount of cum $he is forced to ingest @@.red;negatively effects $his health.@@ Your other cum-fed slaves take note of what you do to those who can't hold down their assigned diet.
-			<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.counter.oral += 55, $activeSlave.counter.publicUse += 55, $oralTotal += 55, $activeSlave.sexualFlaw = "hates oral", $activeSlave.fetish = "masochist">>
+			<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.counter.oral += 55, $activeSlave.counter.publicUse += 55, $oralTotal += 55, $activeSlave.sexualFlaw = "hates oral", $activeSlave.fetish = "masochist">>
+			<<run healthDamage($activeSlave, 5)>>
 		<</replace>>
 	<</link>>
 <</if>>
@@ -18000,7 +18018,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		<</if>>
 		<<= knockMeUp($activeSlave, 100, 2, -2, 1)>>
 		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-		<<set $activeSlave.health -= 20>>
+		<<run healthDamage($activeSlave, 20)>>
 		<<set $activeSlave.race = $arcologies[0].FSSubjugationistRace>>
 		<<set $activeSlave.skin = randomRaceSkin($arcologies[0].FSSubjugationistRace)>>
 		<<run setEyeColor($activeSlave, randomRaceEye($arcologies[0].FSSubjugationistRace))>>
@@ -18137,7 +18155,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			$his dick starts to come to attention.
 		<</if>>
 		You then book $him to be the main attraction at a corporate office party that afternoon, where $he will be the target of a blow-bang and bukkake. You see that $he's dosed heavily with the drugs every day this week, and then book the rest of $his afternoons for similar duties, making sure $he still tends to $his regular assignments as well. In the meantime, you also instruct the kitchen that $he is to eat as much cum-based food from the dispensers as $he can suck down in order to fuel up for these exhausting escapades. By the end of the week, the aphrodisiacs and $his slide into an inescapable routine of cum immersion have done their job, and $he has begun to @@.lightcoral;view cum as an inevitable component of $his daily life.@@ $He also manages to @@.green;gain a little weight.@@ Thanks to your manipulation of $his Pavlovian responses through extreme drug therapy, $his @@.red;health has suffered a bit,@@ but $he is also @@.hotpink;more dependent on you@@ thanks to $his <<if $activeSlave.addict == 0>>@@.cyan;new@@<<else>>@@.cyan;developing@@<</if>> @@.cyan;addiction to aphrodisiacs.@@
-		<<set $activeSlave.devotion += 5, $activeSlave.health -= 10, $activeSlave.weight += 10, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.counter.oral += 50, $oralTotal += 50, $activeSlave.counter.publicUse += 50, $activeSlave.addict += 1>>
+		<<set $activeSlave.devotion += 5, $activeSlave.weight += 10, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.counter.oral += 50, $oralTotal += 50, $activeSlave.counter.publicUse += 50, $activeSlave.addict += 1>>
+		<<run healthDamage($activeSlave, 10)>>
 	<</replace>>
 <</link>>
 
@@ -18572,8 +18591,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
 			You announce that you're resolved to continue growing $his breasts, and since $he feels like a cow, plan to help $him fulfill $his image of $himself. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you drag $him to the remote surgery for an impromptu lactation implant installation. When $he comes to, $he immediately realizes $his breasts are larger than ever. As $he brings a hand to each of the full mounds, a moan laced with relief and disdain escapes $his lips; along with a strong gush of milk from $his engorged breasts. $He has been taught a harsh lesson about questioning your will, a lesson $he will be reminded of every time $he has to empty $his ever swelling breasts of their excessive milk. As with all surgery @@.red;$his health has been slightly affected.@@
-			<<set $activeSlave.trust -= 5, $activeSlave.lactation = 2, $activeSlave.health -= 10>>
-			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+			<<set $activeSlave.trust -= 5, $activeSlave.lactation = 2>>
+			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 10)>>
 		<</replace>>
 	<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
 <</if>>
@@ -18683,7 +18702,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		You schedule $him for the surgery. Like all invasive procedures, it @@.red;affects $his health,@@ but @@.lime;$he's effectively an anal virgin again.@@ $He @@.mediumaquamarine;trusts you a bit more@@ for granting $his request, and is eager for buttsex that's more interesting than having a hotdog thrown down $his hallway.
-		<<set $activeSlave.trust += 3, $activeSlave.health -= 10, $activeSlave.anus = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+		<<set $activeSlave.trust += 3, $activeSlave.anus = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<if $activeSlave.skill.anal > 10>><<set $activeSlave.skill.anal -= 10>><</if>>
 		<br><br>
 		<span id="result2">
@@ -19887,10 +19907,9 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			You tell $him $he'll get fucked in the mouth until $he either gets over the idea of being special for $his education or until all $his learning is fucked out of $his head. You drag the protesting $activeSlave.slaveName out into a public plaza, restrain $him in stocks so that $his mouth is available, and inform the gathering crowd of citizens that this particular slave thinks $himself more than a fuckhole because of some fancy 'education'.
 			<br><br>
 			When you return later in the evening, it becomes abundantly clear that your citizenry taught $activeSlave.slaveName a harsh lesson about a slave's place in $arcologies[0].name. $activeSlave.slaveName has certainly @@.green;learned to keep any pretentious thoughts about $his education in $his head.@@ $He did, however, @@.red;have quite a rough time@@ sucking all those dicks<<if $activeSlave.skill.oral <= 30>>, though $he did learn about sucking dick, so $he can't claim enslavement isn't educational.<<= SkillIncrease.Oral($activeSlave, 10)>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons.
-			<<set $activeSlave.health -= 10>>
 			<<set _blowBang = random(65,80)>>
 			<<set $activeSlave.counter.oral += _blowBang, $activeSlave.counter.publicUse += _blowBang, $oralTotal += _blowBang>>
-			<<run repX(500, "event", $activeSlave)>>
+			<<run repX(500, "event", $activeSlave), healthDamage($activeSlave, 10)>>
 		<</replace>>
 	<</link>>
 <<elseif $arcologies[0].FSPaternalist !== "unset">>
@@ -20205,7 +20224,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
 			You inform $activeSlave.slaveName that short <<= $girl>>s like $him are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag $him off to be installed in the arcade for a day, so that $he too may see the humor in having short <<= $girl>>s serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although $his head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of $his toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Customers are unable to fuck $his holes but readily delight in watching $him squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking $his face. Somewhere in the grueling, 18-hour marathon of relentless throat fucking, $his precarious position slips and $his lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, $his neck is held crooked at an unnatural angle by $his restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short $girl's place is as an @@.hotpink;amusing arcade hole,@@ though $he can't find the humor@@.gold;in such a terrible plight.@@ Furthermore, $his intense exertions during $his stay @@.red;negatively effects $his health.@@ Your other slaves take note of what you do to short <<= $girl>>s who ask questions about their place in your penthouse.
-			<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.counter.oral += 55, $oralTotal += 55>>
+			<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.counter.oral += 55, $oralTotal += 55>>
+			<<run healthDamage($activeSlave, 5)>>
 			<<set $activeSlave.counter.publicUse += 55>>
 		<</replace>>
 	<</link>>
@@ -21054,7 +21074,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			across $his back
 		<</if>>
 		and then slide off of $him to instruct your servants to fix the door frame before they carry $him to $his duties for the day.
-		<<set $activeSlave.health -= 20, $activeSlave.trust -= 20>>
+		<<set $activeSlave.trust -= 20>>
+		<<run healthDamage($activeSlave, 20)>>
 	<</replace>>
 <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <br><<link "Fuck $him">>
@@ -21128,7 +21149,8 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		<br><br>
 		You step back, taking one last appreciative look at your trapped slave, then call a team of menials to remove the door from its foundation to free $him. Though your slave is extricated uninjured, your decision to use $him before saving $him leaves the $girl @@.gold;trusting you less.@@ You could pay to have the door widened, but then you wouldn't get this opportunity again, would you?
 		<br>
-		<<set $activeSlave.health -= 10, $activeSlave.trust -= 10>>
+		<<set $activeSlave.trust -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 	<</replace>>
 <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <br><<link "Try the 'Butter Strategy'">>
diff --git a/src/uncategorized/REroyalblood.tw b/src/uncategorized/REroyalblood.tw
index cc5d867da7bf6b85428f4050327975ada03dc230..02bf36263b81d969c47bba5fbef1614fcbb4c434 100644
--- a/src/uncategorized/REroyalblood.tw
+++ b/src/uncategorized/REroyalblood.tw
@@ -33,7 +33,7 @@
 <<set $activeSlave.skill.oral = 0>>
 <<set $activeSlave.skill.whoring = 0>>
 <<set $activeSlave.canRecruit = 0>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60), 0, 0, 0, 0)>>
 <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 <<set _princess = clone($activeSlave)>>
 /*prince*/
@@ -85,7 +85,7 @@
 <<set $activeSlave.skill.whoring = 0>>
 <<set $activeSlave.skill.combat = 1>>
 <<set $activeSlave.canRecruit = 0>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60), 0, 0, 0, 0)>>
 <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 <<set _prince = clone($activeSlave)>>
 /*Queen*/
@@ -139,7 +139,7 @@
 <<set $activeSlave.pubertyXX = 1>>
 <<set $activeSlave.pubertyXY = 0>>
 <<set $activeSlave.canRecruit = 0>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60), 0, 0, 0, 0)>>
 <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 <<set _queen = clone($activeSlave)>>
 
@@ -360,7 +360,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.intelligenceImplant = 15>>
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
-			<<set $activeSlave.health = random(30,60)>>
+			<<run setHealth($activeSlave, jsRandom(30, 60), 0, 0, 0, 0)>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
@@ -412,7 +412,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.intelligenceImplant = 15>>
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
-			<<set $activeSlave.health = random(30,60)>>
+			<<run setHealth($activeSlave, jsRandom(30, 60), 0, 0, 0, 0)>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
@@ -589,7 +589,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.intelligenceImplant = 15>>
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
-			<<set $activeSlave.health = random(30,60)>>
+			<<run setHealth($activeSlave, jsRandom(30, 60), 0, 0, 0, 0)>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
@@ -649,7 +649,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.intelligenceImplant = 15>>
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
-			<<set $activeSlave.health = random(30,60)>>
+			<<run setHealth($activeSlave, jsRandom(30, 60), 0, 0, 0, 0)>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
@@ -707,7 +707,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.intelligenceImplant = 15>>
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
-			<<set $activeSlave.health = random(30,60)>>
+			<<run setHealth($activeSlave, jsRandom(30, 60), 0, 0, 0, 0)>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
@@ -786,7 +786,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.intelligenceImplant = 15>>
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
-			<<set $activeSlave.health = random(30,60)>>
+			<<run setHealth($activeSlave, jsRandom(30, 60), 0, 0, 0, 0)>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
diff --git a/src/uncategorized/arcadeReport.tw b/src/uncategorized/arcadeReport.tw
index ce7c8ad38fc91055379c01ae10370b8518a39863..ac4b1dbf4326ccc3903f3e8a23c3d69116a176f4 100644
--- a/src/uncategorized/arcadeReport.tw
+++ b/src/uncategorized/arcadeReport.tw
@@ -30,16 +30,16 @@
 	/* Perform facility based rule changes */
 	<<set $slaves[$i].clothes = "no clothing">>
 	/* Health */
-	<<if $arcadeUpgradeHealth == 2 && $slaves[$i].health < 40>>
-		<<set $slaves[$i].health += 2>>
-	<<elseif $slaves[$i].health > 20>>
-		<<set $slaves[$i].health -= 5>>
-	<<elseif $arcadeUpgradeHealth == 1 && $slaves[$i].health < -30>>
-		<<set $slaves[$i].health += 2>>
-	<<elseif $slaves[$i].health > -50>>
-		<<set $slaves[$i].health -= 3>>
-	<<elseif $slaves[$i].health > -90>>
-		<<set $slaves[$i].health -= 1>>
+	<<if $arcadeUpgradeHealth == 2 && $slaves[$i].health.condition < 40>>
+		<<run improveCondition($slaves[$i], 2)>>
+	<<elseif $slaves[$i].health.condition > 20>>
+		<<run healthDamage($slaves[$i], 5)>>
+	<<elseif $arcadeUpgradeHealth == 1 && $slaves[$i].health.condition < -30>>
+		<<run improveCondition($slaves[$i], 2)>>
+	<<elseif $slaves[$i].health.condition > -50>>
+		<<run healthDamage($slaves[$i], 3)>>
+	<<elseif $slaves[$i].health.condition > -90>>
+		<<run healthDamage($slaves[$i], 1)>>
 	<</if>>
 	/* Curatives */
 	<<if $arcadeUpgradeHealth == 2>>
@@ -85,16 +85,16 @@
 	<</if>>
 	<<if ($arcadeUpgradeCollectors > 0)>>
 		<<if ($slaves[$i].vasectomy == 1)>>
-			<<set $slaves[$i].vasectomy = 0, $slaves[$i].health -= 10, _vasectomiesUndone++>>
-			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>>
+			<<set $slaves[$i].vasectomy = 0, _vasectomiesUndone++>>
+			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>>
 		<<elseif ($slaves[$i].lactation < 2)>>
-			<<set $slaves[$i].lactation = 2, $slaves[$i].health -= 10, _boobsImplanted++>>
+			<<set $slaves[$i].lactation = 2, _boobsImplanted++>>
 			<<set _bSlave = $slaves[$i]>>
-			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>>
+			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>>
 		<<elseif $slaves[$i].prostate == 1>>
-			<<set $slaves[$i].prostate = 2, $slaves[$i].health -= 10, _prostatesImplanted++>>
+			<<set $slaves[$i].prostate = 2, _prostatesImplanted++>>
 			<<set _pSlave = $slaves[$i]>>
-			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>>
+			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>>
 		<<elseif ($slaves[$i].lactation > 0) || ($slaves[$i].balls > 0)>>
 			<<set _oldCash = $cash>>
 			<<if $showEWD != 0>>
diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw
index 6f832d65d5193b8a742713986269d8443912cc9c..679df555f6463dce02dbc45fb47db564cc1b5595 100644
--- a/src/uncategorized/bodyModification.tw
+++ b/src/uncategorized/bodyModification.tw
@@ -9,6 +9,7 @@
 
 <h1>Body Modification Studio</h1>
 
+<div style="padding-bottom:2em">
 <<= SlaveFullName($activeSlave)>> is lying strapped down on the table in your body modification studio. $He is entirely at your mercy.
 
 <<if $brandApplied || $degradation || $scarApplied>>
@@ -17,7 +18,7 @@
 	<</if>>
 	<<if $brandApplied>>
 		The smell of burnt flesh hangs in the air. Being branded @@.red;has hurt $his health a little.@@
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 		<<unset $brandApplied>>
 	<</if>>
 	<<if $scarApplied>>
@@ -37,7 +38,7 @@
 					The best way to apply scarring to the entire body is with a good old fashioned whip. $His body is a mess of crisscrossed lines<<if hasAnyNaturalLimbs($activeSlave)>>, and $his <<if getLimbCount($activeSlave, 1) > 1>>limbs twisted so violently in their restraints that they too have<<else>>only limb twists so violently in its restraints that it too has<</if>> become scarred<</if>>.
 			<</switch>>
 			No matter how you chose to apply it, scarring so much of $his body has @@.red; hurt $his health.@@
-			<<set $activeSlave.health -= 20>>
+			<<run healthDamage($slaves[$i], 20)>>
 		<<else>>
 			<<if $activeSlave.scar[$scarTarget.local][$scarDesign.local] > 0>>
 				This is not the first time $he was scarred like this.
@@ -76,7 +77,7 @@
 			<</switch>>
 
 			No matter how you chose to apply it, being scarred @@.red; hurt $his health a little.@@
-			<<set $activeSlave.health -= 10>>
+			<<run healthDamage($slaves[$i], 10)>>
 		<</if>>
 		Afterwards you seal the wounds with a white medical spray. Infection is no risk to $activeSlave.slaveName thanks to your curatives, but in order to form obvious scar tissue you had to keep air out and delay normal healing as long as possible.
 		<<unset $scarApplied>>
@@ -390,20 +391,21 @@
 	<</if>>
 <</if>>
 /* 000-250-006 */
+</div>
 
 /* PIERCINGS */
 
 <<set _piercingCount =($activeSlave.earPiercing + $activeSlave.nosePiercing + $activeSlave.eyebrowPiercing + $activeSlave.lipsPiercing + $activeSlave.tonguePiercing + $activeSlave.nipplesPiercing + $activeSlave.areolaePiercing + $activeSlave.corsetPiercing + $activeSlave.navelPiercing + $activeSlave.clitPiercing + $activeSlave.vaginaPiercing + $activeSlave.dickPiercing + $activeSlave.anusPiercing)>>
 
 /*DESCRIPTIONS */
-<br><br>
 
-Piercings:
+<h2>Piercings</h2>
 
+<div class="indent">
+<div style="padding-bottom:1em">
 <<if _piercingCount == 0>>
 	$His smooth $activeSlave.skin skin is completely unpierced.
 <</if>>
-<div class="indent">
 <<if $activeSlave.earPiercing > 0 >><div><<= App.Desc.piercing($activeSlave, "ear")>></div><</if>>
 <<if $activeSlave.nosePiercing > 0 >><div><<= App.Desc.piercing($activeSlave, "nose")>></div><</if>>
 <<if $activeSlave.eyebrowPiercing > 0 >><div><<= App.Desc.piercing($activeSlave, "eyebrow")>></div><</if>>
@@ -419,19 +421,20 @@ Piercings:
 <<if $activeSlave.anusPiercing > 0 >><div><<= App.Desc.piercing($activeSlave, "anus")>></div><</if>>
 
 <div><<= App.Desc.piercing($activeSlave, "chastity")>></div>
+</div>
 
 /* Apply piercings */
 
-<br>
+<div>
 Choose piercing style:
 <<if $piercingLevel != 1>>[[Light|Body Modification][$piercingLevel = 1]]<<else>>Light<</if>>
 <<if $piercingLevel != 2>>| [[Heavy|Body Modification][$piercingLevel = 2]]<<else>>| Heavy<</if>>
 <<if $piercingLevel != 3>>| [[Smart|Body Modification][$piercingLevel = 3]]<<else>>| Smart<</if>>
 <<if $piercingLevel != 0>>| [[Remove|Body Modification][$piercingLevel = 0]]<<else>>| Remove<</if>>
+</div>
 
-
+<div>
 <<if $piercingLevel == 1>>
-	<br>
 	//Lightly// pierce $his:
 
 	<<link "Entire body">>
@@ -484,10 +487,7 @@ Choose piercing style:
 		<<if $activeSlave.dickPiercing != 1>>	| [[Dick|Body Modification][$activeSlave.dickPiercing = 1, cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]<</if>>
 	<</if>>
 	<<if $activeSlave.anusPiercing != 1>>		| [[Anus|Body Modification][$activeSlave.anusPiercing = 1, cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]<</if>>
-<</if>>
-
-<<if $piercingLevel == 2>>
-	<br>
+<<elseif $piercingLevel == 2>>
 	''Heavily'' pierce $his:
 
 	<<link "Entire body">>
@@ -540,22 +540,15 @@ Choose piercing style:
 		<<if $activeSlave.dickPiercing != 2>>	| [[Dick|Body Modification][$activeSlave.dickPiercing = 2, cashX(forceNeg($modCost), "slaveMod", $activeSlave),$degradation += 1]]<</if>>
 	<</if>>
 	<<if $activeSlave.anusPiercing != 2>>		| [[Anus|Body Modification][$activeSlave.anusPiercing = 2, cashX(forceNeg($modCost), "slaveMod", $activeSlave),$degradation += 1]]<</if>>
-<</if>>
-
-<<if $piercingLevel == 3>>
+<<elseif $piercingLevel == 3>>
 	<<if ($activeSlave.vagina != -1) || ($activeSlave.dick != 0)>>
 		<<if $activeSlave.clitPiercing != 3>>
-			<br>
 			Give $him a [[smart piercing?|Body Modification][$activeSlave.clitPiercing = 3,$activeSlave.clitSetting = "all",cashX(forceNeg($SPcost), "slaveMod", $activeSlave),$degradation += 1]] //Costs <<print cashFormat($SPcost)>>, unlocks options to mold sexuality//
 		<<else>>
-			<br>
 			$He already has a smart piercing!
 		<</if>>
 	<</if>>
-<</if>>
-
-<<if $piercingLevel == 0>>
-	<br>
+<<elseif $piercingLevel == 0>>
 	Remove piercings from:
 
 	/* no dick/vagina checks in 'remove' so stealth piercings can be cleaned. Check only for piercings. */
@@ -596,25 +589,27 @@ Choose piercing style:
 	<<if $activeSlave.anusPiercing > 0>>		| [[Anus|Body Modification][$activeSlave.anusPiercing = 0, cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]<</if>>
 <</if>>
 </div>
-
-<br>
+</div> /* indent */
 
 /* TATTOOS */
 
-Tattoos:
-<<if $activeSlave.shouldersTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "shoulder")>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.lipsTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "lips")>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.boobsTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "breast")>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.armsTat != 0 && hasAnyNaturalArms($activeSlave)>>	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "upper arm")>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.backTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "back")>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.stampTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "lower back")>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.buttTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "buttock")>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.vaginaTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "vagina")>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.dickTat != 0 && $activeSlave.dick > 0>>	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "dick")>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.anusTat != 0>>							<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "anus")>><<set _hasTat = 1>><</if>>
-<<if $activeSlave.legsTat != 0 && hasAnyNaturalLegs($activeSlave)>>	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<= App.Desc.tattoo($activeSlave, "thigh")>><<set _hasTat = 1>><</if>>
-
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<h2>Tattoos</h2>
+<div class="indent">
+<div style="padding-bottom:1em">
+<<if $activeSlave.shouldersTat != 0>><div><<= App.Desc.tattoo($activeSlave, "shoulder")>></div><<set _hasTat = 1>><</if>>
+<<if $activeSlave.lipsTat != 0>><div><<= App.Desc.tattoo($activeSlave, "lips")>></div><<set _hasTat = 1>><</if>>
+<<if $activeSlave.boobsTat != 0>><div><<= App.Desc.tattoo($activeSlave, "breast")>></div><<set _hasTat = 1>><</if>>
+<<if $activeSlave.armsTat != 0 && hasAnyNaturalArms($activeSlave)>><div><<= App.Desc.tattoo($activeSlave, "upper arm")>></div><<set _hasTat = 1>><</if>>
+<<if $activeSlave.backTat != 0>><div><<= App.Desc.tattoo($activeSlave, "back")>></div><<set _hasTat = 1>><</if>>
+<<if $activeSlave.stampTat != 0>><div><<= App.Desc.tattoo($activeSlave, "lower back")>></div><<set _hasTat = 1>><</if>>
+<<if $activeSlave.buttTat != 0>><div><<= App.Desc.tattoo($activeSlave, "buttock")>></div><<set _hasTat = 1>><</if>>
+<<if $activeSlave.vaginaTat != 0>><div><<= App.Desc.tattoo($activeSlave, "vagina")>></div><<set _hasTat = 1>><</if>>
+<<if $activeSlave.dickTat != 0 && $activeSlave.dick > 0>><div><<= App.Desc.tattoo($activeSlave, "dick")>></div><<set _hasTat = 1>><</if>>
+<<if $activeSlave.anusTat != 0>><div><<= App.Desc.tattoo($activeSlave, "anus")>></div><<set _hasTat = 1>><</if>>
+<<if $activeSlave.legsTat != 0 && hasAnyNaturalLegs($activeSlave)>><div><<= App.Desc.tattoo($activeSlave, "thigh")>></div><<set _hasTat = 1>><</if>>
+</div>
+
+<div>
 Choose a tattoo style:
 /* if/else is here so a "highlighted" option is never a link. */
 <<if $tattooChoice != "tribal patterns">>[[Tribal patterns|Body Modification][$tattooChoice = "tribal patterns"]]<<else>>Tribal patterns<</if>>
@@ -639,9 +634,10 @@ Choose a tattoo style:
 <<if _hasTat == 1>>
 	<<if $tattooChoice !== 0>> | //[[Remove a tattoo|Body Modification][$tattooChoice = 0]]//<<else>>| Remove a tattoo<</if>>
 <</if>>
+</div>
 
+<div>
 <<if def $tattooChoice>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<if $tattooChoice == 0>>
 		Clean the ink off of $him:
 	<<elseif $tattooChoice == "counting">>
@@ -788,8 +784,9 @@ Choose a tattoo style:
 		<</if>>
 	<</if>>
 <</if>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+</div>
 
+<div>
 <<if $activeSlave.belly >= 10000 && $activeSlave.bellyPreg < 450000 && $activeSlave.bellyFluid < 5000>>
 	<<if $activeSlave.bellyTat == 0>>
 		$He has no navel tattoos.
@@ -797,10 +794,11 @@ Choose a tattoo style:
 		$His navel is tattooed with $activeSlave.bellyTat.
 	<</if>>
 	<<if $activeSlave.bellyTat == 0>>
-		<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<div>
 		[[Heart|Body Modification][$activeSlave.bellyTat = "a heart",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)]]
 		| [[Star|Body Modification][$activeSlave.bellyTat = "a star",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)]]
 		| [[Butterfly|Body Modification][$activeSlave.bellyTat = "a butterfly",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$degradation += 1]]
+		</div>
 	<</if>>
 	<<if $activeSlave.bellyTat != 0>>
 		//[[Remove tattoos|Body Modification][$activeSlave.bellyTat = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)]]//
@@ -812,8 +810,9 @@ Choose a tattoo style:
 <<else>>
 	$His middle isn't large enough to be a suitable canvas for a navel focused tattoo.
 <</if>>
+</div>
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 <<if $activeSlave.birthsTat > 0>>
 	<<if $activeSlave.birthsTat > 1>>
 		$He has a series of num($activeSlave.birthsTat) baby-shaped tattoos adorning $his stomach; one for each successful pregnancy<<if $activeSlave.pregKnown == 1>> and a temporary one for $his current pregnancy<</if>>.
@@ -834,7 +833,9 @@ Choose a tattoo style:
 	Have $him receive a tattoo each time $he gives birth.
 	//[[Begin keeping track|Body Modification][$activeSlave.birthsTat = 0]]//
 <</if>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+</div>
+
+<div>
 <<if $activeSlave.abortionTat > 0>>
 	<<if $activeSlave.abortionTat > 1>>
 		$He has a series of num($activeSlave.abortionTat) crossed out baby-shaped tattoos<<if $activeSlave.pregKnown == 1>>, and one uncrossed one,<</if>> adorning $his stomach.
@@ -855,70 +856,70 @@ Choose a tattoo style:
 	Have $him receive a tattoo for each abortion or miscarriage $he has.
 	//[[Begin keeping track|Body Modification][$activeSlave.abortionTat = 0]]//
 <</if>>
+</div>
+</div>/* indent */
 
-<br>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
-
-Custom Tats:
-<br>&nbsp;&nbsp;&nbsp;&nbsp;//Use complete sentences, make a description of it//
-
+<h3>Custom Tattoos</h3>
+<div class="indent">
+//Use complete sentences, make a description of it//
+<div class="grid-2columns-auto">
 <<if $activeSlave.lipsTat == 0>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom face tattoo: <<textbox "$activeSlave.lipsTat" $activeSlave.lipsTat "Slave Interact">>
+	<div>Give $him a custom face tattoo:</div>
+	<div><<textbox "$activeSlave.lipsTat" $activeSlave.lipsTat "Slave Interact">></div>
 <</if>>
 
 <<if $activeSlave.shouldersTat == 0>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom shoulder tattoo: <<textbox "$activeSlave.shouldersTat" $activeSlave.shouldersTat "Slave Interact">>
+	<div>Give $him a custom shoulder tattoo:</div>
+	<div><<textbox "$activeSlave.shouldersTat" $activeSlave.shouldersTat "Slave Interact">></div>
 <</if>>
 
 <<if $activeSlave.armsTat == 0 && hasAnyNaturalArms($activeSlave)>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom arm tattoo: <<textbox "$activeSlave.armsTat" $activeSlave.armsTat "Slave Interact">>
+	<div>Give $him a custom arm tattoo:</div>
+	<div><<textbox "$activeSlave.armsTat" $activeSlave.armsTat "Slave Interact">></div>
 <</if>>
 
 <<if $activeSlave.boobsTat == 0>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom tit tattoo: <<textbox "$activeSlave.boobsTat" $activeSlave.boobsTat "Slave Interact">>
+	<div>Give $him a custom tit tattoo:</div>
+	<div><<textbox "$activeSlave.boobsTat" $activeSlave.boobsTat "Slave Interact">></div>
 <</if>>
 
 <<if $activeSlave.backTat == 0>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom back tattoo: <<textbox "$activeSlave.backTat" $activeSlave.backTat "Slave Interact">>
+	<div>Give $him a custom back tattoo:</div>
+	<div><<textbox "$activeSlave.backTat" $activeSlave.backTat "Slave Interact">></div>
 <</if>>
 
 <<if $activeSlave.stampTat == 0>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom tramp stamp (lower back tattoo): <<textbox "$activeSlave.stampTat" $activeSlave.stampTat "Slave Interact">>
+	<div>Give $him a custom tramp stamp (lower back tattoo):</div>
+	<div><<textbox "$activeSlave.stampTat" $activeSlave.stampTat "Slave Interact">></div>
 <</if>>
 
 <<if $activeSlave.buttTat == 0>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom butt tattoo: <<textbox "$activeSlave.buttTat" $activeSlave.buttTat "Slave Interact">>
+	<div>Give $him a custom butt tattoo:</div>
+	<div><<textbox "$activeSlave.buttTat" $activeSlave.buttTat "Slave Interact">></div>
 <</if>>
 
 <<if $activeSlave.dickTat == 0 && $activeSlave.dick != 0>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom dick tattoo: <<textbox "$activeSlave.dickTat" $activeSlave.dickTat "Slave Interact">>
+	<div>Give $him a custom dick tattoo:</div>
+	<div><<textbox "$activeSlave.dickTat" $activeSlave.dickTat "Slave Interact">></div>
 <</if>>
 
 <<if $activeSlave.vaginaTat == 0>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom pubic tattoo: <<textbox "$activeSlave.vaginaTat" $activeSlave.vaginaTat "Slave Interact">>
+	<div>Give $him a custom pubic tattoo:</div>
+	<div><<textbox "$activeSlave.vaginaTat" $activeSlave.vaginaTat "Slave Interact">></div>
 <</if>>
 
 <<if $activeSlave.anusTat == 0>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom anus tattoo: <<textbox "$activeSlave.anusTat" $activeSlave.anusTat "Slave Interact">>
+	<div>Give $him a custom anus tattoo:</div>
+	<div><<textbox "$activeSlave.anusTat" $activeSlave.anusTat "Slave Interact">></div>
 <</if>>
 
 <<if $activeSlave.legsTat == 0 && hasAnyNaturalLegs($activeSlave)>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him a custom leg tattoo: <<textbox "$activeSlave.legsTat" $activeSlave.legsTat "Slave Interact">>
+	<div>Give $him a custom leg tattoo:</div>
+	<div><<textbox "$activeSlave.legsTat" $activeSlave.legsTat "Slave Interact">></div>
 <</if>>
+</div> /* grid */
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
-
+<div>
 <<if ($activeSlave.custom.tattoo == "")>>
 	Give $him a custom tattoo: <<textbox "$activeSlave.custom.tattoo" $activeSlave.custom.tattoo "Slave Interact">>
 <<else>>
@@ -928,14 +929,17 @@ Custom Tats:
 <<if $activeSlave.custom.tattoo != "">>
 	//[[Remove custom tattoo|Body Modification][$activeSlave.custom.tattoo = "",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)]]//
 <</if>>
+</div>
 
-<br><br>
+</div> /* indent */
 
 /* Branding */
 
-Branding:
+<h2>Branding</h2>
+<div class="indent">
+<div style="padding-bottom:1em">
 <<for _brandName, _brand range $activeSlave.brand>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	<div>
 	$His _brandName is marked with _brand<<if _brand == $brandDesign.official>>, your [[official brand|Universal Rules]]<</if>>:
 	<<capture _brandName>>
 		<<link "Remove Brand">>
@@ -946,22 +950,28 @@ Branding:
 			<<goto "Body Modification">>
 		<</link>>
 	<</capture>>
+	</div>
 <</for>>
 <<if (jQuery.isEmptyObject($activeSlave.brand))>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	<div>
 	$His skin is unmarked.
+	</div>
 <</if>>
 
 <<if !(Object.values($activeSlave.brand).includes($brandDesign.official))>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	<div>
 	$He lacks your [[official brand|Universal Rules]], "$brandDesign.official."
+	</div>
 <</if>>
+</div>
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 Use ''$brandDesign.local'' or choose another brand:
 [[Your slaving emblem|Body Modification][$brandDesign.local = "your personal symbol"]]
 | [[Your initials|Body Modification][$brandDesign.local = "your initials"]]
-<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;
+</div>
+<div class="double-indent">
+<div>
 [[SLUT|Body Modification][$brandDesign.local = "SLUT"]]
 | [[WHORE|Body Modification][$brandDesign.local = "WHORE"]]
 | [[SLAVE|Body Modification][$brandDesign.local = "SLAVE"]]
@@ -969,11 +979,13 @@ Use ''$brandDesign.local'' or choose another brand:
 | [[MEAT|Body Modification][$brandDesign.local = "MEAT"]]
 | [[CUMDUMP|Body Modification][$brandDesign.local = "CUMDUMP"]]
 | [[LOVER|Body Modification][$brandDesign.local = "LOVER"]]
-<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;
+</div>
+<div>
 [[Pussy symbol|Body Modification][$brandDesign.local = "a pussy symbol"]]
 | [[Anus symbol|Body Modification][$brandDesign.local = "an anus symbol"]]
 | [[Penis symbol|Body Modification][$brandDesign.local = "a penis symbol"]]
-<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;
+</div>
+<div>
 [[Lady|Body Modification][$brandDesign.local = "a lady silhouette"]]
 | [[Princess|Body Modification][$brandDesign.local = "a princess silhouette"]]
 | [[Queen|Body Modification][$brandDesign.local = "a queen silhouette"]]
@@ -1057,12 +1069,14 @@ Use ''$brandDesign.local'' or choose another brand:
 <<if ($arcologies[0].FSChineseRevivalist != "unset")>>
 	| //FS// [[Imperial Seal|Body Modification][$brandDesign.local = "your Imperial Seal"]]
 <</if>>
+</div>
+</div> /* double indent */
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 Or design your own: <<textbox "$brandDesign.local" $brandDesign.local "Body Modification">>
+</div>
 
-
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 Choose a site for branding:
 /* Sorted head to toe */
 /* Head */
@@ -1101,13 +1115,15 @@ Choose a site for branding:
 	| [[Ankles|Body Modification][$brandTarget.local = "ankle"]]
 	| [[Feet|Body Modification][$brandTarget.local = "foot"]]
 <</if>>
+</div>
 
 /* Branding expansion contributed by Anon1888 */
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 Or a custom site: <<textbox "$brandTarget.local" $brandTarget.local "Body Modification">>
+</div>
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 <<if ["ankle", "breast", "buttock", "calf", "cheek", "ear", "foot", "hand", "lower arm", "shoulder", "testicle", "thigh", "upper arm", "wrist"].includes($brandTarget.local)>>
 	<<set _leftTarget = ("left " + $brandTarget.local)>>
 	<<set _rightTarget = ("right " + $brandTarget.local)>>
@@ -1160,19 +1176,23 @@ Or a custom site: <<textbox "$brandTarget.local" $brandTarget.local "Body Modifi
 		with $brandDesign.local on the $brandTarget.local<<if $activeSlave.brand[$brandTarget.local]>>, covering the "<<print $activeSlave.brand[$brandTarget.local]>>" that is already there?<<else>>.<</if>> //Branding will slightly reduce $his beauty but may slowly increase your reputation.//
 	<</if>>
 <</if>>
+</div>
 
 <<if $activeSlave.breedingMark == 1 && ($propOutcome == 0 || $eugenicsFullControl == 1 || $arcologies[0].FSRestart == "unset")>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	</div>
 	$He has an intricate tattoo on $his lower belly that suggests $he was made to be bred. [[Remove it|Body Modification][$activeSlave.breedingMark = 0]]
+	</div>
 <</if>>
 
-<br><br>
+</div> /* indent */
 
 /* Scars */
 
-Scars:
+<h2>Scars</h2>
+<div class="indent">
+<div style="padding-bottom:1em">
 <<for _scarName, _scar range $activeSlave.scar>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	<div>
 	$His _scarName is marked with <<= App.Desc.expandScarString($activeSlave, _scarName)>>:
 	<<capture _scarName>>
 		<<link "Remove Scar">>
@@ -1183,13 +1203,16 @@ Scars:
 			<<goto "Body Modification">>
 		<</link>>
 	<</capture>>
+	</div>
 <</for>>
 <<if (jQuery.isEmptyObject($activeSlave.scar))>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	<div>
 	$His skin is not scarred.
+	</div>
 <</if>>
+</div>
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 Use ''$scarDesign.local'' or choose another scar:
 
 [[Whip|Body Modification][$scarDesign.local = "whip"]]
@@ -1198,11 +1221,13 @@ Use ''$scarDesign.local'' or choose another scar:
 | [[Menacing|Body Modification][$scarDesign.local = "menacing"]]
 | [[Exotic|Body Modification][$scarDesign.local = "exotic"]]
 /* Other common scars might be battle scars or c-Section but it makes little sense to include them here */
+</div>
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 Or design your own: <<textbox "$scarDesign.local" $scarDesign.local "Body Modification">>
+</div>
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 Choose a site for scaring:
 
 <<if ["menacing", "exotic"].includes($scarDesign.local)>>
@@ -1251,9 +1276,11 @@ Choose a site for scaring:
 		| [[Feet|Body Modification][$scarTarget.local = "foot"]]
 	<</if>>
 <</if>>
+</div>
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 Or a custom site: <<textbox "$scarTarget.local" $scarTarget.local "Body Modification">>
+</div>
 
 /* Correct some "bad" choices" */
 <<if ["menacing", "exotic"].includes($scarDesign.local)>>
@@ -1262,7 +1289,7 @@ Or a custom site: <<textbox "$scarTarget.local" $scarTarget.local "Body Modifica
 	<</if>>
 <</if>>
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<div>
 <<if ["ankle", "breast", "buttock", "calf", "cheek", "ear", "foot", "hand", "lower arm", "shoulder", "testicle", "thigh", "upper arm", "wrist"].includes($scarTarget.local)>>
 	<<set _leftTarget = ("left " + $scarTarget.local)>>
 	<<set _rightTarget = ("right " + $scarTarget.local)>>
@@ -1349,3 +1376,5 @@ Or a custom site: <<textbox "$scarTarget.local" $scarTarget.local "Body Modifica
 	<</link>>
 	with $scarDesign.local on the $scarTarget.local<<if $activeSlave.scar[$scarTarget.local]>>, adding to the scars that are already there?<<else>>.<</if>>
 <</if>>
+<div>
+</div> /* indent */
diff --git a/src/uncategorized/brothelReport.tw b/src/uncategorized/brothelReport.tw
index 700c624fe2c0e749e3506726c4850b68f35d7adb..2d3cc559c19e01039de2b4b0631a24df05e7a34d 100644
--- a/src/uncategorized/brothelReport.tw
+++ b/src/uncategorized/brothelReport.tw
@@ -14,14 +14,14 @@
 <<if ($Madam != 0)>>
 	<<set _FLs = $slaveIndices[$Madam.ID]>>
 
-	<<if ($slaves[_FLs].health < -80)>>
-		<<set $slaves[_FLs].health += 20>>
-	<<elseif $slaves[_FLs].health < -40>>
-		<<set $slaves[_FLs].health += 15>>
-	<<elseif $slaves[_FLs].health < 0>>
-		<<set $slaves[_FLs].health += 10>>
-	<<elseif $slaves[_FLs].health < 90>>
-		<<set $slaves[_FLs].health += 7>>
+	<<if ($slaves[_FLs].health.condition < -80)>>
+		<<run improveCondition($slaves[_FLs], 20)>>
+	<<elseif $slaves[_FLs].health.condition < -40>>
+		<<run improveCondition($slaves[_FLs], 15)>>
+	<<elseif $slaves[_FLs].health.condition < 0>>
+		<<run improveCondition($slaves[_FLs], 10)>>
+	<<elseif $slaves[_FLs].health.condition < 90>>
+		<<run improveCondition($slaves[_FLs], 7)>>
 	<</if>>
 	<<if $slaves[_FLs].devotion <= 45>>
 		<<set $slaves[_FLs].devotion += 5>>
@@ -266,21 +266,22 @@
 		<</if>>
 
 		/* Perform facility based rule changes */
-		<<set $slaves[$i].health += _healthBonus, $slaves[$i].aphrodisiacs = _aphrod>>
+		<<run improveCondition($slaves[$i], _healthBonus)>>
+		<<set $slaves[$i].aphrodisiacs = _aphrod>>
 		<<switch $brothelDecoration>>
 		<<case "Degradationist" "standard">>
 			<<set $slaves[$i].rules.living = "spare">>
 		<<default>>
 			<<set $slaves[$i].rules.living = "normal">>
 		<</switch>>
-		<<if ($slaves[$i].health < -80)>>
-			<<set $slaves[$i].health += 20>>
-		<<elseif $slaves[$i].health < -40>>
-			<<set $slaves[$i].health += 15>>
-		<<elseif $slaves[$i].health < 0>>
-			<<set $slaves[$i].health += 10>>
-		<<elseif $slaves[$i].health < 90>>
-			<<set $slaves[$i].health += 7>>
+		<<if ($slaves[$i].health.condition < -80)>>
+			<<run improveCondition($slaves[$i], 20)>>
+		<<elseif $slaves[$i].health.condition < -40>>
+			<<run improveCondition($slaves[$i], 15)>>
+		<<elseif $slaves[$i].health.condition < 0>>
+			<<run improveCondition($slaves[$i], 10)>>
+		<<elseif $slaves[$i].health.condition < 90>>
+			<<run improveCondition($slaves[$i], 7)>>
 		<</if>>
 		<<if ($slaves[$i].devotion <= 20) && ($slaves[$i].trust >= -20)>>
 			<<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>>
diff --git a/src/uncategorized/cellblockReport.tw b/src/uncategorized/cellblockReport.tw
index 7aa1b7922307a49304da368e8b882b3851a2f5b7..efe83704b61c08630b0fa5f881f41071b5f0b22b 100644
--- a/src/uncategorized/cellblockReport.tw
+++ b/src/uncategorized/cellblockReport.tw
@@ -13,14 +13,14 @@
 	<<set _FLs = $slaveIndices[$Wardeness.ID]>>
 	<<setLocalPronouns $Wardeness>>
 
-	<<if ($slaves[_FLs].health < -80)>>
-		<<set $slaves[_FLs].health += 20>>
-	<<elseif ($slaves[_FLs].health < -40)>>
-		<<set $slaves[_FLs].health += 15>>
-	<<elseif ($slaves[_FLs].health < 0)>>
-		<<set $slaves[_FLs].health += 10>>
-	<<elseif ($slaves[_FLs].health < 90)>>
-		<<set $slaves[_FLs].health += 7>>
+	<<if ($slaves[_FLs].health.condition < -80)>>
+		<<run improveCondition($slaves[_FLs], 20)>>
+	<<elseif ($slaves[_FLs].health.condition < -40)>>
+		<<run improveCondition($slaves[_FLs], 15)>>
+	<<elseif ($slaves[_FLs].health.condition < 0)>>
+		<<run improveCondition($slaves[_FLs], 10)>>
+	<<elseif ($slaves[_FLs].health.condition < 90)>>
+		<<run improveCondition($slaves[_FLs], 7)>>
 	<</if>>
 	<<if ($slaves[_FLs].devotion <= 60)>>
 		<<set $slaves[_FLs].devotion += 2>>
@@ -233,16 +233,16 @@
 	<<if ($Wardeness != 0) && ($Wardeness.sexualFlaw == "malicious") && ($slaves[$i].energy >= 2)>>
 		<<set $slaves[$i].energy -= 2>>
 	<</if>>
-	<<if ($slaves[$i].health < -80)>>
-		<<set $slaves[$i].health += 20>>
-	<<elseif ($slaves[$i].health < -40)>>
-		<<set $slaves[$i].health += 15>>
-	<<elseif ($slaves[$i].health < 0)>>
-		<<set $slaves[$i].health += 10>>
-	<<elseif ($slaves[$i].health < 40)>>
-		<<set $slaves[$i].health += 7>>
-	<<elseif ($slaves[$i].health < 100)>>
-		<<set $slaves[$i].health += 3>>
+	<<if ($slaves[$i].health.condition < -80)>>
+		<<run improveCondition($slaves[$i], 20)>>
+	<<elseif ($slaves[$i].health.condition < -40)>>
+		<<run improveCondition($slaves[$i], 15)>>
+	<<elseif ($slaves[$i].health.condition < 0)>>
+		<<run improveCondition($slaves[$i], 10)>>
+	<<elseif ($slaves[$i].health.condition < 40)>>
+		<<run improveCondition($slaves[$i], 7)>>
+	<<elseif ($slaves[$i].health.condition < 100)>>
+		<<run improveCondition($slaves[$i], 3)>>
 	<</if>>
 	<<if $showEWD != 0>>
 		<br><br>
diff --git a/src/uncategorized/clinicReport.tw b/src/uncategorized/clinicReport.tw
index 55f0e982cb82461092c7ca9438adaa68ad27d3cc..19a3ab701107f3742ead3d7e67d43bf3250895dd 100644
--- a/src/uncategorized/clinicReport.tw
+++ b/src/uncategorized/clinicReport.tw
@@ -12,8 +12,8 @@
 <<if $Nurse != 0>>
 	<<set _FLs = $slaveIndices[$Nurse.ID]>>
 
-	<<if ($slaves[_FLs].health < 100)>>
-		<<set $slaves[_FLs].health += 20>>
+	<<if ($slaves[_FLs].health.condition < 100)>>
+		<<run improveCondition($slaves[_FLs], 20)>>
 	<</if>>
 	<<if ($slaves[_FLs].devotion <= 60)>>
 		<<set $slaves[_FLs].devotion++>>
@@ -83,35 +83,39 @@
 		<<if $Nurse.rivalryTarget == $slaves[$i].ID>>
 			<<setLocalPronouns $slaves[$i] 2>>
 			$He purposefully neglects the needs of $his <<print rivalryTerm($Nurse)>>, $slaves[$i].slaveName, hindering _his2 recovery and deepening their dislike for each other.
-			<<set $slaves[$i].devotion--, $slaves[$i].trust--, $slaves[$i].health -= 3>>
+			<<set $slaves[$i].devotion--, $slaves[$i].trust-->>
+			<<run healthDamage($slaves[$i], 3)>>
 			<<if random(1,100) > 65>>
 				<<set $Nurse.rivalry++, $slaves[_FLs].rivalry++, $slaves[$i].rivalry++>>
 			<</if>>
 		<<elseif $Nurse.relationshipTarget == $slaves[$i].ID>>
 			<<setLocalPronouns $slaves[$i] 2>>
 			$He dedicates most of $his attention to $his <<print relationshipTerm($Nurse)>>, $slaves[$i].slaveName, making sure _he2 has everything _he2 needs and more. This lavish attention detracts from $his overall effectiveness.
-			<<set _idleBonus -= 3, $slaves[$i].devotion++, $slaves[$i].trust++, $slaves[$i].health += 3>>
+			<<set _idleBonus -= 3, $slaves[$i].devotion++, $slaves[$i].trust++>>
+			<<run improveCondition($slaves[$i], 3)>>
 		<<elseif $familyTesting == 1 && areRelated($Nurse, $slaves[$i]) > 0>>
 			$He makes sure to spend extra time caring for $his <<print relativeTerm($Nurse,$slaves[$i])>>, $slaves[$i].slaveName.
-			<<set $slaves[$i].trust++, $slaves[$i].health++>>
+			<<set $slaves[$i].trust++>>
+			<<run improveCondition($slaves[$i], 1)>>
 		<<elseif $Nurse.relationTarget == $slaves[$i].ID && $familyTesting == 0>>
 			$He makes sure to spend extra time caring for $his $slaves[$i].relation, $slaves[$i].slaveName.
-			<<set $slaves[$i].trust++, $slaves[$i].health++>>
+			<<set $slaves[$i].trust++>>
+			<<run improveCondition($slaves[$i], 1)>>
 		<</if>>
 		<<switch $slaves[$i].prestigeDesc>>
 		<<case "$He is a famed Free Cities whore, and commands top prices.">>
 			<<setLocalPronouns $slaves[$i] 2>>
 			$He does $his best to aid the famous whore, $slaves[$i].slaveName, making sure to pay special attention to _his2 worn holes.
-			<<set $slaves[$i].health += 2>>
+			<<run improveCondition($slaves[$i], 2)>>
 		<<case "$He is a famed Free Cities slut, and can please anyone.">>
 			<<setLocalPronouns $slaves[$i] 2>>
 			$He does $his best to aid the famous entertainer, $slaves[$i].slaveName, making sure _he2 can show off as soon as possible.
-			<<set $slaves[$i].health += 2>>
+			<<run improveCondition($slaves[$i], 2)>>
 		<<case "$He is remembered for winning best in show as a cockmilker.">>
 			<<setLocalPronouns $slaves[$i] 2>>
 			<<if ($slaves[$i].balls > 4) && ($slaves[$i].dick != 0)>>
 				$He does $his best to aid the dribbling $slaves[$i].slaveName, paying special attention to _his2 huge cock and balls as well as making sure to milk _his2 <<if canAchieveErection($slaves[$i])>>erect <</if>>dick hourly.
-				<<set $slaves[$i].health += 4>>
+				<<run improveCondition($slaves[$i], 4)>>
 				<<if (random(1,100) > 65) && (($Nurse.fetish == "none") || ($Nurse.fetish == "cumslut"))>>
 					<<if $Nurse.fetish == "none">>
 						<<set $Nurse.fetish = "cumslut", $slaves[_FLs].fetish = "cumslut">>
@@ -124,7 +128,8 @@
 			<<setLocalPronouns $slaves[$i] 2>>
 			<<if ($slaves[$i].lactation > 0) && (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 6000)>>
 				$He does $his best to aid the leaking $slaves[$i].slaveName, paying special attention to _his2 huge breasts as well as making sure to milk _him2 hourly.
-				<<set $slaves[$i].health += 4, $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
+				<<run improveCondition($slaves[$i], 4)>>
+				<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
 				<<if (random(1,100) > 65) && (($Nurse.fetish == "none") || ($Nurse.fetish == "boobs"))>>
 					<<if $Nurse.fetish == "none">>
 						<<set $Nurse.fetish = "boobs", $slaves[_FLs].fetish = "boobs">>
@@ -137,10 +142,10 @@
 			<<setLocalPronouns $slaves[$i] 2>>
 			<<if $slaves[$i].bellyPreg >= 1500>>
 				$He does $his best to aid the pregnant $slaves[$i].slaveName, paying special attention to _his2 swollen belly and the welfare of the life within.
-				<<set $slaves[$i].health += 6>>
+				<<run improveCondition($slaves[$i], 6)>>
 			<<elseif $slaves[$i].ovaries == 1 || $slaves[$i].mpreg == 1>>
 				$He does $his best to aid the breeder $slaves[$i].slaveName, paying special attention to _his2 fertility and reproductive organs.
-				<<set $slaves[$i].health += 4>>
+				<<run improveCondition($slaves[$i], 4)>>
 			<<else>>
 				$He lays out plans on how to restore the breeder $slaves[$i].slaveName to _his2 former gravid glory.
 			<</if>>
@@ -148,7 +153,8 @@
 		<<if $slaves[$i].bellyImplant > -1 && $clinicInflateBelly == 1>>
 			<<setLocalPronouns $slaves[$i] 2>>
 			<br>''@@.pink;$slaves[$i].slaveName@@'' spent a lot of time during the week under IV-like stands with bags of inert filler steadily flowing into _his2 belly implant, slowly pushing _his2 belly further and further out. Careful attention, along with several drug injections, were used to make sure _his2 body was able to safely adjust to the implant's rapid growth.
-			<<set $slaves[$i].bellyImplant += 5000, $slaves[$i].health -= 10>>
+			<<run healthDamage($slaves[$i], 10)>>
+			<<set $slaves[$i].bellyImplant += 5000>>
 			<<if ($slaves[$i].devotion > 50)>>
 				<<set $slaves[$i].devotion += 4, $slaves[$i].trust += 3>>
 			<<elseif ($slaves[$i].devotion >= -20)>>
@@ -164,7 +170,7 @@
 		<<if $slaves[$i].pregKnown == 1 && $slaves[$i].preg < $slaves[$i].pregData.normalBirth && $slaves[$i].pregControl == "speed up">>
 			<<setLocalPronouns $slaves[$i] 2>>
 			<br>''@@.pink;$slaves[$i].slaveName@@'' spends most of _his2 time on bedrest being filled with rapid gestation agents and concentrated slave food. All _he2 can do is <<if hasAnyArms($slaves[$i]) && canSee($slaves[$i])>>watch and feel _his2 belly pushing further and further out with life<<elseif canSee($slaves[$i])>>watch _his2 belly bulging further and further out with life<<elseif hasAnyArms($slaves[$i])>>feel _his2 belly pushing further and further out with life beneath _his2 fingers<<else>>feel the every growing pressure inside _his2 abdomen<</if>>. Careful attention, along with numerous drug injections, are used to make sure _his2 body is able to safely adjust to _his2 pregnancy's rapid growth.
-			<<set $slaves[$i].health -= 10>>
+			<<run healthDamage($slaves[$i], 10)>>
 			<<if ($slaves[$i].devotion > 50)>>
 				<<set $slaves[$i].devotion += 2, $slaves[$i].trust += 1>>
 			<<elseif ($slaves[$i].devotion >= -20)>>
@@ -240,9 +246,11 @@
 	<<if $slaves[$i].trust < 45>>
 		<<set $slaves[$i].trust += 4>>
 	<</if>>
+	/* improving condition is not the basic function of the clinic anymore
 	<<if $slaves[$i].health < 90>>
 		<<set $slaves[$i].health += 10 + ($curativeUpgrade * 10) + _healthBonus>>
 	<</if>>
+	*/
 
 	<<switch $clinicDecoration>>
 	<<case "Eugenics" "Gender Fundamentalist" "Gender Radicalist" "Hedonistic" "Intellectual Dependency" "Maturity Preferentialist" "Paternalist" "Petite Admiration" "Repopulation Focus" "Slimness Enthusiast" "Statuesque Glorification" "Youth Preferentialist">>
@@ -258,17 +266,17 @@
 			<<set $slaves[$i].pregControl = "speed up">>
 		<</if>>
 		<<if ($slaves[$i].chem > 10) && ($clinicUpgradeFilters >= 1)>>
-			<<set $slaves[$i].chem -= (5 + (50 * $clinicUpgradePurge))>>
-			<<if $slaves[$i].health > -50 && ($clinicUpgradePurge > 0)>>
-				<<set $slaves[$i].health = -50>>
+			<<if $slaves[$i].health.health > -50 && ($clinicUpgradePurge > 0)>>
+				<<set $slaves[$i].chem -= 50 * $clinicUpgradePurge>>
+				<<run healthDamage($slaves[$i], 50)>>
 			<</if>>
-			<<set $slaves[$i].chem = Math.max($slaves[$i].chem, 0)>>
+			<<set $slaves[$i].chem = Math.max($slaves[$i].chem - 5, 0)>>
 		<</if>>
 		<<if $slaves[$i].lactation == 1>>
 			<<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
 		<</if>>
 	<</if>>
-	<<if ($slaves[$i].health <= 40)>>
+	<<if ($slaves[$i].health.illness > 0)>>
 	<<elseif ($Nurse != 0) && ($slaves[$i].chem > 15) && ($clinicUpgradeFilters == 1)>>
 	<<elseif ($Nurse != 0) && ($slaves[$i].pregKnown == 1) && ($clinicSpeedGestation > 0 || $slaves[$i].pregControl == "speed up")>>
 	<<elseif ($Nurse != 0) && ($slaves[$i].pregAdaptation*1000 < $slaves[$i].bellyPreg || $slaves[$i].preg > $slaves[$i].pregData.normalBirth/1.33)>>
@@ -295,7 +303,7 @@
 			is receiving treatment in $clinicName.
 		<</if>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;$He <<= saRest($slaves[$i])>>
-		<<if ($slaves[$i].health <= 40)>>
+		<<if ($slaves[$i].health.illness > 0)>>
 			$He stays in the clinic as $he is still sick.
 		<<elseif ($Nurse != 0) && ($slaves[$i].chem > 15) && ($clinicUpgradeFilters == 1)>>
 			$He stays in the clinic as unhealthy chemicals are still being flushed from $his system.
diff --git a/src/uncategorized/clubReport.tw b/src/uncategorized/clubReport.tw
index 5035045e066ad674f5c97214fd42df4f13d98ada..aa5020c22c2d408b55cfd68471bf1b27d9b318b3 100644
--- a/src/uncategorized/clubReport.tw
+++ b/src/uncategorized/clubReport.tw
@@ -14,14 +14,14 @@
 <<if $DJ != 0>>
 	<<set _FLs = $slaveIndices[$DJ.ID]>>
 
-	<<if ($slaves[_FLs].health < -80)>>
-		<<set $slaves[_FLs].health += 20>>
-	<<elseif $slaves[_FLs].health < -40>>
-		<<set $slaves[_FLs].health += 15>>
-	<<elseif $slaves[_FLs].health < 0>>
-		<<set $slaves[_FLs].health += 10>>
-	<<elseif $slaves[_FLs].health < 90>>
-		<<set $slaves[_FLs].health += 7>>
+	<<if ($slaves[_FLs].health.condition < -80)>>
+		<<run improveCondition($slaves[_FLs], 20)>>
+	<<elseif $slaves[_FLs].health.condition < -40>>
+		<<run improveCondition($slaves[_FLs], 15)>>
+	<<elseif $slaves[_FLs].health.condition < 0>>
+		<<run improveCondition($slaves[_FLs], 10)>>
+	<<elseif $slaves[_FLs].health.condition < 90>>
+		<<run improveCondition($slaves[_FLs], 7)>>
 	<</if>>
 	<<if $slaves[_FLs].devotion <= 60>>
 		<<set $slaves[_FLs].devotion += 5>>
@@ -195,14 +195,14 @@
 			<<set $slaves[$i].trust += 5>>
 		<</if>>
 
-		<<if ($slaves[$i].health < -80)>>
-			<<set $slaves[$i].health += 20>>
-		<<elseif ($slaves[$i].health < -40)>>
-			<<set $slaves[$i].health += 15>>
-		<<elseif ($slaves[$i].health < 0)>>
-			<<set $slaves[$i].health += 10>>
-		<<elseif ($slaves[$i].health < 90)>>
-			<<set $slaves[$i].health += 7>>
+		<<if ($slaves[$i].health.condition < -80)>>
+			<<run improveCondition($slaves[$i], 20)>>
+		<<elseif ($slaves[$i].health.condition < -40)>>
+			<<run improveCondition($slaves[$i], 15)>>
+		<<elseif ($slaves[$i].health.condition < 0)>>
+			<<run improveCondition($slaves[$i], 10)>>
+		<<elseif ($slaves[$i].health.condition < 90)>>
+			<<run improveCondition($slaves[$i], 7)>>
 		<</if>>
 
 		<<if $slaves[$i].rules.living != "normal">>
diff --git a/src/uncategorized/customSlave.tw b/src/uncategorized/customSlave.tw
index 153a0f39d139578d5b06fbddae5b4ce09bc95682..91cf6b788d9aa51a560cf1d56d1135af7b69d077 100644
--- a/src/uncategorized/customSlave.tw
+++ b/src/uncategorized/customSlave.tw
@@ -266,19 +266,26 @@
 <br>
 
 <span id = "health">
-<<if $customSlave.health == 0>>Healthy.
+<<if $customSlave.health.condition == 0>>Healthy.
 <<else>>Extremely healthy.
 <</if>>
 </span>
 <<link "Healthy">>
-	<<set $customSlave.health = 0>>
+	<<set $customSlave.health.condition = 0>>
+	<<set $customSlave.health.health = $customSlave.health.condition>>
 	<<CustomSlaveHealth>>
 <</link>>
 |
 <<link "Extremely healthy">>
-	<<set $customSlave.health = 80>>
+	<<set $customSlave.health.condition = 80>>
+	<<set $customSlave.health.health = $customSlave.health.condition>>
 	<<CustomSlaveHealth>>
 <</link>>
+<<set $customSlave.health.shortDamage = 0>>
+<<set $customSlave.health.longDamage = 0>>
+<<set $customSlave.health.illness = 0>>
+<<set $customSlave.health.tired = 0>>
+<<set $customSlave.health.health = $customSlave.health.condition>>
 
 <br>
 
diff --git a/src/uncategorized/dairyReport.tw b/src/uncategorized/dairyReport.tw
index dd82da89af06ffd0ed0e4a28c5150198487fa609..d6c92b4e0c1572995a3694e92ac7f75140011b18 100644
--- a/src/uncategorized/dairyReport.tw
+++ b/src/uncategorized/dairyReport.tw
@@ -89,7 +89,7 @@
 		<</for>>
 	<</if>>
 
-	<<if $slaves[_FLs].health < 90>>
+	<<if $slaves[_FLs].health.condition < 90>>
 		<<set $slaves[_FLs].curatives = 2>>
 	<<else>>
 		<<set $slaves[_FLs].curatives = 0>>
@@ -106,7 +106,7 @@
 	<<if ($slaves[_FLs].skill.oral > 0)>>
 		<<set $milkmaidDevotionBonus += Math.trunc($slaves[_FLs].skill.oral/30)>>
 	<</if>>
-	<<if ($slaves[_FLs].health >= 80)>>
+	<<if ($slaves[_FLs].health.condition >= 80)>>
 		<<set $milkmaidHealthBonus++>>
 	<</if>>
 	<<if $slaves[_FLs].rules.living != "luxurious">>
@@ -424,14 +424,14 @@
 	<<if ($slaves[$i].devotion <= 20) && ($slaves[$i].trust >= -20)>>
 		<<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>>
 	<</if>>
-	<<if ($slaves[$i].health < -80)>>
-		<<set $slaves[$i].health += 20>>
-	<<elseif ($slaves[$i].health < -40)>>
-		<<set $slaves[$i].health += 10>>
-	<<elseif ($slaves[$i].health < 0)>>
-		<<set $slaves[$i].health += 7>>
-	<<elseif ($slaves[$i].health < 90)>>
-		<<set $slaves[$i].health += 3>>
+	<<if ($slaves[$i].health.condition < -80)>>
+		<<run improveCondition($slaves[$i], 20)>>
+	<<elseif ($slaves[$i].health.condition < -40)>>
+		<<run improveCondition($slaves[$i], 10)>>
+	<<elseif ($slaves[$i].health.condition < 0)>>
+		<<run improveCondition($slaves[$i], 7)>>
+	<<elseif ($slaves[$i].health.condition < 90)>>
+		<<run improveCondition($slaves[$i], 3)>>
 	<</if>>
 	<<if ($slaves[$i].inflation > 0)>>
 		<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>>
@@ -454,18 +454,18 @@
 		<<set $slaves[$i].boobs += _growth>>
 	<</if>>
 	<<if $slaves[$i].prostate == 1>>
-		<<set $slaves[$i].prostate = 2, $slaves[$i].health -= 10>>
-		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>>
+		<<set $slaves[$i].prostate = 2>>
+		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>>
 	<</if>>
 	<<if $slaves[$i].vasectomy == 1>>
-		<<set $slaves[$i].vasectomy = 0, $slaves[$i].health -= 10>>
-		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>>
+		<<set $slaves[$i].vasectomy = 0>>
+		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>>
 	<</if>>
 	<<if ($dairySlimMaintain == 0)>>
 		<<if $dairyImplantsSetting <= 1>>
 			<<if ($slaves[$i].lactation < 2) && ($slaves[$i].boobs > 300 || $slaves[$i].balls == 0 || $slaves[$i].lactation == 1 || $dairyImplantsSetting == 1)>>
-				<<set $slaves[$i].lactation = 2, $slaves[$i].lactationDuration = 2, $slaves[$i].health -= 10>>
-				<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>>
+				<<set $slaves[$i].lactation = 2, $slaves[$i].lactationDuration = 2>>
+				<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>>
 			<</if>>
 		<<elseif $dairyImplantsSetting == 3>>
 			<<if ($slaves[$i].lactation < 1) && ($slaves[$i].boobs > 300 || $slaves[$i].balls == 0)>>
@@ -485,8 +485,8 @@
 				<<set $slaves[$i].weight += 2>>
 			<</if>>
 		<</if>>
-		<<if ($slaves[$i].health < 75)>>
-			<<set $slaves[$i].health += 25>>
+		<<if ($slaves[$i].health.condition < 75)>>
+			<<run improveCondition($slaves[$i], 25)>>
 		<<else>>
 			<<if ($dairySlimMaintain == 0) && $slaves[$i].lactation > 0>>
 				<<if $dairyFeedersSetting > 1 && $dairyStimulatorsSetting > 0>>
@@ -620,8 +620,8 @@
 		<<elseif ($slaves[$i].anus < 3)>>
 			<<set $slaves[$i].anus++>>
 		<</if>>
-		<<if ($slaves[$i].health < 60)>>
-			<<set $slaves[$i].health += 20>>
+		<<if ($slaves[$i].health.condition < 60)>>
+			<<run improveCondition($slaves[$i], 20)>>
 		<<elseif $dairySlimMaintain == 0 && $slaves[$i].lactation > 0>>
 			<<if $dairyFeedersSetting > 1>>
 				<<if $slaves[$i].boobs < 50000>>
diff --git a/src/uncategorized/fullReport.tw b/src/uncategorized/fullReport.tw
index 3a7d29884a2700cf0c3045b1ab7eb80d90e5b611..7f38f8b6c4a4e57bb547fd8c0fee82626c9c2a3b 100644
--- a/src/uncategorized/fullReport.tw
+++ b/src/uncategorized/fullReport.tw
@@ -8,6 +8,7 @@
 <</if>>
 /* 000-250-006 */
 
+<<run illness($slaves[$i]), tired($slaves[$i])>>
 <<setLocalPronouns $slaves[$i]>>
 
 <<switch $slaves[$i].assignment>>
@@ -97,4 +98,4 @@
 	<</if>>
 <</for>>
 
-<<include "SA devotion">>
+<<include "SA devotion">>
\ No newline at end of file
diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw
index 9f91854e6216195673a9149683c161fefbd350de..7b1968d876bcde9793cadd80fe7304fa34e80328 100644
--- a/src/uncategorized/genericPlotEvents.tw
+++ b/src/uncategorized/genericPlotEvents.tw
@@ -14,7 +14,7 @@
 <<if _genPlot != -1>>
 	<<run $slaves.forEach(function(s) {
 		if (s.curatives > 1 || s.inflationType == "curative") {
-			s.health -= Math.floor(Math.random() * 2 + 1);
+			healthDamage(s, Math.floor(Math.random() * 2 + 1));
 		}
 	})>>
 <<else>>
@@ -35,7 +35,7 @@ The firm promptly pays @@.yellowgreen;fair compensation@@ for the minor damage t
 <<if _genPlot != -1>>
 	<<run $slaves.forEach(function(s) {
 		if (["breast injections", "hyper breast injections", "intensive breast injections"].includes(s.drugs)) {
-			s.health -= Math.floor(Math.random() * 2 + 1);
+			healthDamage(s, Math.floor(Math.random() * 2 + 1));
 		}
 	})>>
 <<else>>
@@ -72,7 +72,7 @@ As you step off the elevator, you hear several <<if $seeDicks != 100>>female <</
 	<<set $activeSlave.career = "a prostitute">>
 	<<set $activeSlave.devotion = 20>>
 	<<set $activeSlave.trust = 5>>
-	<<set $activeSlave.health -= 50>>
+	<<run setHealth($activeSlave, jsRandom(-90, 10))>>
 	<<set $activeSlave.anus = 2>>
 	<<if $activeSlave.dick == 0>>
 		<<set $activeSlave.vagina = 2>>
@@ -88,7 +88,7 @@ As you step off the elevator, you hear several <<if $seeDicks != 100>>female <</
 	<<set $activeSlave.career = "a prostitute">>
 	<<set $activeSlave.devotion = 45>>
 	<<set $activeSlave.trust = 25>>
-	<<set $activeSlave.health = 20>>
+	<<run setHealth($activeSlave, 20)>>
 	<<set $activeSlave.anus = 2>>
 	<<if $activeSlave.dick == 0>>
 		<<set $activeSlave.vagina = 2>>
@@ -257,7 +257,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 	<<set $activeSlave.career = "a nun">>
 	<<set $activeSlave.devotion = -20>>
 	<<set $activeSlave.trust = random(-90,-75)>>
-	<<set $activeSlave.health = random(-10,10)>>
+	<<run setHealth($activeSlave, jsRandom(-10, 10))>>
 	<<set $activeSlave.face = 15>>
 	<<set $activeSlave.anus = 0>>
 	<<set $activeSlave.vagina = 0>>
@@ -285,7 +285,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 		<<set $activeSlave.career = "a nun">>
 		<<set $activeSlave.devotion = random(-90,-75)>>
 		<<set $activeSlave.trust = -20>>
-		<<set $activeSlave.health = random(-10,10)>>
+		<<run setHealth($activeSlave, jsRandom(-10, 10))>>
 		<<set $activeSlave.anus = 0>>
 		<<set $activeSlave.vagina = 0>>
 		<<set $activeSlave.weight = random(-20,-100)>>
@@ -314,7 +314,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 	<<set $activeSlave.career = "a principal">>
 	<<set $activeSlave.devotion = -20>>
 	<<set $activeSlave.trust = random(-90,-75)>>
-	<<set $activeSlave.health = random(-10,10)>>
+	<<run setHealth($activeSlave, jsRandom(-10, 10))>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = random(20,80)>>
@@ -340,7 +340,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 		<<set $activeSlave.career = "a student">>
 		<<set $activeSlave.devotion = random(-90,-75)>>
 		<<set $activeSlave.trust = -20>>
-		<<set $activeSlave.health = random(-10,10)>>
+		<<run setHealth($activeSlave, jsRandom(-10, 10))>>
 		<<set $activeSlave.anus = 1>>
 		<<set $activeSlave.vagina = random(0, 0, 1)>>
 		<<set $activeSlave.weight = random(-50,0)>>
@@ -377,7 +377,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 		<<set $activeSlave.pregKnown = 1>>
 		<<set $activeSlave.pregWeek = $activeSlave.preg>>
 		<<run SetBellySize($activeSlave)>>
-		<<set $activeSlave.health = random(-10,10)>>
+		<<run setHealth($activeSlave, jsRandom(-10, 10))>>
 		<<set $activeSlave.vagina = random(1,3)>>
 		<<set $activeSlave.boobs += 100*random(0,2)>>
 		<<set $activeSlave.lactation = 1>>
@@ -409,7 +409,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 		<<set $activeSlave.career = "a student">>
 		<<set $activeSlave.devotion = random(-90,-75)>>
 		<<set $activeSlave.trust = random(-90,-75)>>
-		<<set $activeSlave.health = random(-10,10)>>
+		<<run setHealth($activeSlave, jsRandom(-10, 10))>>
 		<<set _newSlaves.push($activeSlave)>>
 	<</for>>
 <<elseif $PAidTarget == "conversion">>
@@ -422,7 +422,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 	<<set $activeSlave.career = "a business owner">>
 	<<set $activeSlave.devotion = -20>>
 	<<set $activeSlave.trust = random(-90,-75)>>
-	<<set $activeSlave.health = random(-10,10)>>
+	<<run setHealth($activeSlave, jsRandom(-10, 10))>>
 	<<set $activeSlave.anus = random(2,3)>>
 	<<set $activeSlave.weight = random(20,80)>>
 	<<set $activeSlave.attrXX = random(10,50)>>
@@ -447,7 +447,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 		<<set $activeSlave.career = "a student">>
 		<<set $activeSlave.devotion = random(-90,-75)>>
 		<<set $activeSlave.trust = -20>>
-		<<set $activeSlave.health = random(-10,10)>>
+		<<run setHealth($activeSlave, jsRandom(-10, 10))>>
 		<<set $activeSlave.anus = 1>>
 		<<set $activeSlave.weight = random(-50,0)>>
 		<<set $activeSlave.attrXX = random(10,50)>>
@@ -475,7 +475,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 		<<set $activeSlave.career = "a student athlete">>
 		<<set $activeSlave.devotion = random(-90,-75)>>
 		<<set $activeSlave.trust = random(-90,-75)>>
-		<<set $activeSlave.health = random(20,60)>>
+		<<run setHealth($activeSlave, jsRandom(20, 60), 0, 0)>>
 		<<set $activeSlave.muscles = random(20,40)>>
 		<<set $activeSlave.weight = random(-10,5)>>
 		<<set $activeSlave.waist = random(-40,0)>>
@@ -502,7 +502,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 	<<set _missLeader.intelligenceImplant = 15>>
 	<<set _missLeader.devotion = 40>>
 	<<set _missLeader.trust = random(0,40)>>
-	<<set _missLeader.health = random(-50,-10)>>
+	<<run setHealth(_missLeader, jsRandom(-50, 10), normalRandInt(15, 3))>>
 	<<set _missLeader.anus = 3>>
 	<<set _missLeader.vagina = 5>>
 	<<set _missLeader.weight = random(-80,-20)>>
@@ -547,7 +547,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 	<<set $activeSlave.intelligenceImplant = 15>>
 	<<set $activeSlave.devotion = 30>>
 	<<set $activeSlave.trust = random(-20,20)>>
-	<<set $activeSlave.health = random(-60,-10)>>
+	<<run setHealth($activeSlave, jsRandom(-60, -10), normalRandInt(15, 3))>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.vagina = 4>>
 	<<set $activeSlave.weight = random(-90,-20)>>
@@ -591,7 +591,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 	<<set $activeSlave.career = "a nun">>
 	<<set $activeSlave.devotion = 50>>
 	<<set $activeSlave.trust = random(0,50)>>
-	<<set $activeSlave.health = random(-90,-50)>>
+	<<run setHealth($activeSlave, jsRandom(-90, -50), normalRandInt(15, 3))>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.vagina = 5>>
 	<<set $activeSlave.weight = random(-90,-60)>>
@@ -643,7 +643,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 	<<set _missLoli.career = "an orphan">>
 	<<set _missLoli.devotion = -20>>
 	<<set _missLoli.trust = random(-100,-80)>>
-	<<set _missLoli.health = random(-90,-70)>>
+	<<run setHealth(_missLoli, jsRandom(-90, -70), normalRandInt(25, 3))>>
 	<<set _missLoli.anus = 3>>
 	<<set _missLoli.vagina = 5>>
 	<<set _missLoli.pubertyXX = 1>>
@@ -697,7 +697,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u
 		<<set $activeSlave.career = "a housewife">>
 		<<set $activeSlave.devotion = -20>>
 		<<set $activeSlave.trust = random(-10,10)>>
-		<<set $activeSlave.health = random(30,50)>>
+		<<run setHealth($activeSlave, jsRandom(30, 50), 0, 0, 0)>>
 		<<set $activeSlave.anus = 1>>
 		<<set $activeSlave.vagina = random(1,2)>>
 		<<set $activeSlave.weight = random(-20,20)>>
@@ -1154,7 +1154,7 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 	<<set $activeSlave.preg = -1>>
 	<<set $activeSlave.muscles = 50>>
 	<<set $activeSlave.weight = 0>>
-	<<set $activeSlave.health = 80>>
+	<<run setHealth($activeSlave, 80)>>
 	<<set $activeSlave.boobs = 400>>
 	<<set $activeSlave.butt = 2>>
 	<<set $activeSlave.waist = 0>>
@@ -1204,7 +1204,7 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 		<<set $activeSlave.muscles = 0>>
 		<<set $activeSlave.weight = -10>>
 		<<set $activeSlave.height = 135>>
-		<<set $activeSlave.health = 80>>
+		<<run setHealth($activeSlave, 80)>>
 		<<set $activeSlave.boobs = 200>>
 		<<set $activeSlave.butt = 1>>
 		<<set $activeSlave.waist = -50>>
@@ -1262,7 +1262,7 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 	<<set $activeSlave.skill.anal = 0>>
 	<<set $activeSlave.muscles = 20>>
 	<<set $activeSlave.weight = 20>>
-	<<set $activeSlave.health = 30>>
+	<<run setHealth($activeSlave, 30)>>
 	<<if $activeSlave.lips < 10>><<set $activeSlave.lips += 10>><</if>>
 	<<set $activeSlave.boobs = 1000>>
 	<<set $activeSlave.butt = 6>>
@@ -1320,7 +1320,7 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 		<<set $activeSlave.skill.anal = 35>>
 		<<set $activeSlave.muscles = 0>>
 		<<set $activeSlave.weight = 0>>
-		<<set $activeSlave.health = 30>>
+		<<run setHealth($activeSlave, 30)>>
 		<<if $activeSlave.lips < 10>><<set $activeSlave.lips += 10>><</if>>
 		<<set $activeSlave.boobs = 800>>
 		<<set $activeSlave.butt = 4>>
diff --git a/src/uncategorized/hgApplication.tw b/src/uncategorized/hgApplication.tw
index 59c00c20da0e0460a6778b75ab536762434da6c9..d99f9bd9c87fdbb4af876a462d4cab8392ea0b28 100644
--- a/src/uncategorized/hgApplication.tw
+++ b/src/uncategorized/hgApplication.tw
@@ -44,7 +44,7 @@
 <<if $HGtraining == "health">>
 
 $He helps $activeSlave.slaveName however $he can. The tender care has @@.green;improved $activeSlave.slaveName's health.@@
-<<set $activeSlave.health += 10>>
+<<run improveCondition($activeSlave, 10)>>
 <<set $activeSlave.training = 0>>
 
 <<else>>
diff --git a/src/uncategorized/hgSelect.tw b/src/uncategorized/hgSelect.tw
index b0dd2398d7ee70ff5a10d8225ba5fb6c22a7d514..e7f18078a225c5db8d57228e18b23840f3e7b565 100644
--- a/src/uncategorized/hgSelect.tw
+++ b/src/uncategorized/hgSelect.tw
@@ -69,12 +69,12 @@ _HGName
 	<<if $HeadGirl != 0>>
 		<<if $universalRulesImpregnation == "HG">>
 			<br><br>_HGName is responsible for impregnating fertile slaves.
-			<<set $HGCum = 2+Math.trunc(($HeadGirl.balls/5)+($HeadGirl.energy/95)+($HeadGirl.health/95)+($HeadGirl.devotion/95)+($reproductionFormula*5))>>
+			<<set $HGCum = 2+Math.trunc(($HeadGirl.balls/5)+($HeadGirl.energy/95)+($HeadGirl.health.condition/95)+($HeadGirl.devotion/95)+($reproductionFormula*5))>>
 			<<if canPenetrate($HeadGirl) && $HeadGirl.pubertyXY == 1>>
 				To maximize the chances of impregnation, $he will fuck fertile pussies frequently during the week. $HeadGirl.slaveName can service $HGCum slaves this way.
 				<<if $HeadGirl.devotion > 95>>$He loves you so much $he'll fuck them until $he's sore.<<else>>If $he were more devoted to you, $he might be able to drive $himself to get hard and service one more.<</if>>
 				<<if $HeadGirl.balls >= 120>>$His unreal balls produce nearly an endless supply of semen; $his ability to impregnate is almost limitless.<<elseif $HeadGirl.balls >= 80>>$His inhuman balls produce so much semen $he can easily impregnate twenty girls in one sitting.<<elseif $HeadGirl.balls >= 50>>$His giant balls produce so much semen $he can easily impregnate twelve girls in one sitting.<<elseif $HeadGirl.balls >= 25>>$His oversized balls produce so much semen $he can cum repeatedly in a single session.<<elseif $HeadGirl.balls >= 5>>$His big balls produce so much semen $he can cum more before $he's drained.<<else>>Bigger balls would let $him cum more before $he's drained.<</if>>
-				<<if $HeadGirl.health > 95>>$His wonderful health lets $him get hard and stay hard all the time.<<else>>If $his health were perfect, $he might be able to get hard more often.<</if>>
+				<<if $HeadGirl.health.condition > 95>>$His wonderful health lets $him get hard and stay hard all the time.<<else>>If $his health were perfect, $he might be able to get hard more often.<</if>>
 				<<if $HeadGirl.energy > 95>>$His nymphomania drives $him to go above and beyond in this.<<else>>A more powerful sex drive could reduce $his refractory period.<</if>>
 			<<else>>
 				However, $HeadGirl.slaveName cannot perform this duty.
diff --git a/src/uncategorized/householdLiquidator.tw b/src/uncategorized/householdLiquidator.tw
index 6b0700f1ea9f1a6c594beeaaaf9db1807c478dbe..650c4b0576f6d502fd5d15a24e5a2d6d57562436 100644
--- a/src/uncategorized/householdLiquidator.tw
+++ b/src/uncategorized/householdLiquidator.tw
@@ -12,7 +12,7 @@
 <<set $activeSlave.trust = random(-45,-25)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
 <<set $activeSlave.oldTrust = $activeSlave.trust>>
-<<set $activeSlave.health = random(-50,20)>>
+<<run setHealth($activeSlave, jsRandom(-50, 20))>>
 <<if $familyTesting == 1>>
 	<<set $activeSlave.mother = $missingParentID>>
 	<<set $missingParentID-->>
@@ -57,7 +57,7 @@ The price is <<print cashFormat($slaveCost*3)>>.<<if $slavesSeen > $slaveMarketL
 <<set $activeSlave.trust = random(-45,-25)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
 <<set $activeSlave.oldTrust = $activeSlave.trust>>
-<<set $activeSlave.health = random(-50,20)>>
+<<run setHealth($activeSlave, jsRandom(-50, 20))>>
 <<set $activeSlave.boobs += 100>>
 <<set $activeSlave.butt += 1>>
 <<if $activeSlave.vagina > -1>><<set $activeSlave.vagina += 1>><</if>>
@@ -101,7 +101,7 @@ The price is <<print cashFormat($slaveCost*3)>>.<<if $slavesSeen > $slaveMarketL
 <<set $activeSlave.trust = random(-45,-25)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
 <<set $activeSlave.oldTrust = $activeSlave.trust>>
-<<set $activeSlave.health = random(-50,20)>>
+<<run setHealth($activeSlave, jsRandom(-50, 20))>>
 <<if $familyTesting == 1>>
 	<<set $activeSlave.mother = $missingParentID>>
 	<<set $missingParentID-->>
diff --git a/src/uncategorized/jeSlaveDispute.tw b/src/uncategorized/jeSlaveDispute.tw
index 09517ea8312064e07bc58a98d2a375bcdb8777ed..0a7ef47229f94ce1882504cae50d7e76512b9c96 100644
--- a/src/uncategorized/jeSlaveDispute.tw
+++ b/src/uncategorized/jeSlaveDispute.tw
@@ -14,7 +14,7 @@
 	<<set $activeSlave.devotion = random(25,30)>>
 	<<set $activeSlave.trust = $activeSlave.devotion-20>>
 	<<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-	<<set $activeSlave.health = random(0,20)>>
+	<<run setHealth($activeSlave, jsRandom(0, 20))>>
 	<<set $activeSlave.earPiercing = 1>>
 	<<set $activeSlave.vagina = random(1,2)>>
 	<<set $activeSlave.ovaries = 1>>
@@ -32,7 +32,7 @@
 	<<set $activeSlave.career = "a breeder">>
 	<<set $activeSlave.devotion = random(10,25)>>
 	<<set $activeSlave.trust = $activeSlave.devotion>>
-	<<set $activeSlave.health = random(80,90)>>
+	<<run setHealth($activeSlave, jsRandom(80, 90), 0, 0, 0, jsRandom(10, 30))>>
 	<<set $activeSlave.anus = 0>>
 	<<set $activeSlave.vagina = 3>>
 	<<set $activeSlave.skill.anal = 0>>
@@ -56,7 +56,7 @@
 	<<set $activeSlave.devotion = random(30,40)>>
 	<<set $activeSlave.trust = $activeSlave.devotion>>
 	<<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-	<<set $activeSlave.health = random(60,80)>>
+	<<run setHealth($activeSlave, jsRandom(60, 80), 0, 0, 0, jsRandom(10, 30))>>
 	<<set $activeSlave.balls = 0>>
 	<<set $activeSlave.anus = 2>>
 	<<set $activeSlave.skill.anal = 35>>
@@ -94,7 +94,7 @@
 	<<set $activeSlave.devotion = random(10,15)>>
 	<<set $activeSlave.trust = $activeSlave.devotion>>
 	<<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-	<<set $activeSlave.health = random(80,90)>>
+	<<run setHealth($activeSlave, jsRandom(80, 90), 0, 0, 0, jsRandom(10, 30))>>
 	<<if $activeSlave.dick == 0>>
 		<<set $activeSlave.vagina = 0>>
 		<<set $activeSlave.ovaries = 1>>
@@ -113,7 +113,7 @@
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
 	<<set $activeSlave = GenerateNewSlave()>>
-	<<set $activeSlave.health = random(-20,20)>>
+	<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 	<<set $activeSlave.anus = 2>>
 	<<if $activeSlave.vagina > -1>>
 		<<set $activeSlave.vagina = 2>>
@@ -148,7 +148,7 @@
 	<<set $activeSlave.devotion = random(25,30)>>
 	<<set $activeSlave.trust = $activeSlave.devotion-20>>
 	<<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-	<<set $activeSlave.health = random(0,20)>>
+	<<run setHealth($activeSlave, jsRandom(0, 20))>>
 	<<set $activeSlave.anus = 2>>
 	<<if $activeSlave.dick == 0>>
 		<<set $activeSlave.vagina = 2>>
diff --git a/src/uncategorized/lawCompliance.tw b/src/uncategorized/lawCompliance.tw
index 3dede2821204cfe2fd940ee345e1f2b105fca757..7cede15a9637fd32d2562a38579be923168c555e 100644
--- a/src/uncategorized/lawCompliance.tw
+++ b/src/uncategorized/lawCompliance.tw
@@ -4,7 +4,7 @@
 
 <<if $arcologies[0].FSSlimnessEnthusiastSMR == 1>>
 	<<set $activeSlave.weight = random(-80,0)>>
-	<<set $activeSlave.health = random(50,90)>>
+	<<run setHealth($activeSlave, jsRandom(50, 90), 0, undefined, 0)>>
 	$He has been kept on a rigorous diet for sale, has been required to exercise regularly, and has had excellent care taken of $his health.
 <</if>>
 <<if $arcologies[0].FSRepopulationFocusSMR == 1>>
@@ -56,16 +56,16 @@
 		lifting weights,
 	<</if>>
 	and $his health has been raised to an almost unnatural level.
-	<<set $activeSlave.health = random(50,90)>>
+	<<run setHealth($activeSlave, jsRandom(50, 90), 0, undefined, 0)>>
 	<<set $activeSlave.weight = random(-20,0)>>
 <<elseif $arcologies[0].FSHedonisticDecadenceSMR == 1>>
 	<<set $activeSlave.weight = random(50,200)>>
 	<<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>>
 		<<set $activeSlave.muscles = random(10,60)>>
-		<<set $activeSlave.health = random(10,40)>>
+		<<run setHealth($activeSlave, jsRandom(10, 40), 0, undefined, 0)>>
 	<<else>>
+		<<run setHealth($activeSlave, jsRandom(-30, 10))>>
 		<<set $activeSlave.muscles = random(-80,0)>>
-		<<set $activeSlave.health = random(-30,10)>>
 	<</if>>
 	Much of $his time before sale was spent being fattened up and <<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>>pumping iron<<else>>lying around<</if>>.
 	<<if $activeSlave.devotion <= 20>>
@@ -354,9 +354,9 @@
 <</if>>
 
 <<if $HealthInspectionSMR == 1>>
-	<<if $activeSlave.health < -10>>
+	<<if $activeSlave.health.condition < -10>>
 		$His current owners held $him for basic medical care before putting $him on sale, resolving some of $his health issues.
-		<<set $activeSlave.health = -10>>
+		<<run improveCondition($activeSlave, 10)>>
 	<</if>>
 <</if>>
 
@@ -403,7 +403,8 @@
 		<<if $activeSlave.height >= 160>>
 			Before $he was put up for sale, $he underwent height increasing surgery to fulfill your arcology's height SMR. $He was @@.gold;horrified@@ by how drastically $his body was altered just for a chance at sale.
 			<<set $activeSlave.trust -= 10>>
-			<<set $activeSlave.height += 10, $activeSlave.heightImplant = 1, $activeSlave.health -= -40>>
+			<<set $activeSlave.height += 10, $activeSlave.heightImplant = 1>>
+			<<run healthDamage($activeSlave, 40)>>
 		<<else>>
 			While $he was in the slave pens, $he was treated as nothing more than an unsalvageable slab of meat suitable only for the lowliest of jobs. $He's @@.hotpink;desperate@@ enough to follow any order in @@.gold;fear@@ that should $he fail, $he'll be discarded like so many other shorties.
 			<<set $activeSlave.devotion += 10, $activeSlave.trust -= 10>>
@@ -417,7 +418,8 @@
 		<<if $activeSlave.height <= 169>>
 			Before $he was put up for sale, $he underwent height reduction surgery to fulfill your arcology's height SMR. $He was @@.gold;horrified@@ by how drastically $his body was altered just for a chance at sale.
 			<<set $activeSlave.trust -= 10>>
-			<<set $activeSlave.height -= 10, $activeSlave.heightImplant = -1, $activeSlave.health -= -40>>
+			<<set $activeSlave.height -= 10, $activeSlave.heightImplant = -1>>
+			<<run healthDamage($activeSlave, 40)>>
 		<<else>>
 			While $he was in the slave pens, $he was treated as nothing more than an unsalvageable slab of meat suitable only for the lowliest of jobs. $He's @@.hotpink;desperate@@ enough to follow any order in @@.gold;fear@@ that should $he fail, $he'll be discarded like all the other tall <<= $girl>>s.
 			<<set $activeSlave.devotion += 10, $activeSlave.trust -= 10>>
diff --git a/src/uncategorized/masterSuiteReport.tw b/src/uncategorized/masterSuiteReport.tw
index 02824322bdb7f8c3125f853bda0b51e30d760e54..58ad5a27ae94d2af4919918c2155754076643009 100644
--- a/src/uncategorized/masterSuiteReport.tw
+++ b/src/uncategorized/masterSuiteReport.tw
@@ -354,11 +354,11 @@
 					<</if>>
 				<</if>>
 				/* If they're preggo and in the upgraded suite, give them extra health. More if they're being given lighter duties. */
-				<<if ($slaves[$i].health < 100)>>
+				<<if ($slaves[$i].health.condition < 100)>>
 					<<if ($masterSuitePregnancySlaveLuxuries == 0)>>
-						<<set $slaves[$i].health += 15>>
+						<<run improveCondition($slaves[$i], 15)>>
 					<<else>>
-						<<set $slaves[$i].health += 25>>
+						<<run improveCondition($slaves[$i], 25)>>
 					<</if>>
 				<</if>>
 			<</if>>
@@ -402,11 +402,11 @@
 			<<include "SA devotion">>
 			<</silently>>
 		<</if>>
-		<<if $slaves[$i].health < 80>>
+		<<if $slaves[$i].health.condition < 80>>
 			<<if $masterSuiteUpgradeLuxury == 1>>
-				<<set $slaves[$i].health += 20>>
+				<<run improveCondition($slaves[$i], 20)>>
 			<<else>>
-				<<set $slaves[$i].health += 10>>
+				<<run improveCondition($slaves[$i], 10)>>
 			<</if>>
 		<</if>>
 
diff --git a/src/uncategorized/motherDaughterWorkaround.tw b/src/uncategorized/motherDaughterWorkaround.tw
index 48e40ce74bbeaf6bf3e415365140f06d19eeadeb..47a40522f2dc806cd73e665341b0faca3530d78f 100644
--- a/src/uncategorized/motherDaughterWorkaround.tw
+++ b/src/uncategorized/motherDaughterWorkaround.tw
@@ -18,7 +18,7 @@ Your new pair of slaves look frightened and uncertain, but seem encouraged by ea
 <<set _secondSlave.oldDevotion = _secondSlave.devotion>>
 <<set _secondSlave.trust -= random(5,15)>>
 <<set _secondSlave.oldTrust = _secondSlave.trust>>
-<<set _secondSlave.health += 30>>
+<<run improveCondition(_secondSlave, 30)>>
 <<set _secondSlave.boobs -= 100>>
 <<set _secondSlave.butt -= 1>>
 <<set _secondSlave.vagina = either(0, 0, 0, 1)>>
diff --git a/src/uncategorized/multiImplant.tw b/src/uncategorized/multiImplant.tw
index 463533c33a7ef8298f43329fd2f80f2dbf971dff..532922414b6a5ec64389a2e2422299ee1205a8ab 100644
--- a/src/uncategorized/multiImplant.tw
+++ b/src/uncategorized/multiImplant.tw
@@ -25,7 +25,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized
 			<</if>>
 			<<if !_actions[_l].canImplant($activeSlave)>>
 				@@.red;ERROR: <<print _actions[_l].implantError($activeSlave)>>@@<br>
-			<<elseif $activeSlave.health - _actions[_l].healthImpact < -75>>
+			<<elseif $activeSlave.health.health - _actions[_l].healthImpact < -75>>
 				Estimated health impact too high, skipping further surgeries.
 				<<set _break = true>>
 				<<break>>
@@ -62,7 +62,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized
 	Ensures that a slave can never die during the execution of this passage.
 	Calculation based on worst case, so when changing worst case change it here too.
 	*/
-	<<if $activeSlave.health - (_prostheticCount * 20) < -75>>
+	<<if $activeSlave.health.health - (_prostheticCount * 20) < -75>>
 		<br><hr>
 		@@.red;Estimated health impact too great; $activeSlave.slaveName skipped.@@
 		<<continue>>
@@ -78,21 +78,21 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized
 			<<case "ocular">>
 				<<if getBestVision($activeSlave) === 0>>
 					<<run eyeSurgery($activeSlave, "both", "cybernetic"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-					<<set $activeSlave.health -= 20, $surgeryType = "ocular implant">>
+					<<set healthDamage($activeSlave, 20), $surgeryType = "ocular implant">>
 					<<include "Surgery Degradation">>
 				<<else>>
 					//Since $he has working eyes the <<= setup.prosthetics.ocular.name>> will be put into storage.//
 				<</if>>
 			<<case "cochlear">>
 				<<if $activeSlave.hears != 0>>
-					<<set $activeSlave.earImplant = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "cochlear implant">>
+					<<set $activeSlave.earImplant = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20), $surgeryType = "cochlear implant">>
 					<<include "Surgery Degradation">>
 				<<else>>
 					//Since $he has working ears the <<= setup.prosthetics.cochlear.name>> will be put into storage.//
 				<</if>>
 			<<case "electrolarynx">>
 				<<if $activeSlave.voice <= 0>>
-					<<set $activeSlave.electrolarynx = 1, $activeSlave.voice = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "electrolarynx">>
+					<<set $activeSlave.electrolarynx = 1, $activeSlave.voice = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20), $surgeryType = "electrolarynx">>
 					<<include "Surgery Degradation">>
 				<<else>>
 					//Since $he has a voice the <<= setup.prosthetics.electrolarynx.name>> will be put into storage.//
@@ -103,17 +103,17 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized
 				<<elseif $activeSlave.PLimb == 2>>
 					//Since $he already has <<= addA(setup.prosthetics.interfaceP2.name)>> installed the <<= setup.prosthetics.interfaceP1.name>> will be put into storage.//
 				<<else>>
-					<<set $activeSlave.PLimb = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "PLimb interface1">>
+					<<set $activeSlave.PLimb = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20), $surgeryType = "PLimb interface1">>
 					<<include "Surgery Degradation">>
 				<</if>>
 			<<case "interfaceP2">>
 				<<if hasAllNaturalLimbs($activeSlave)>>
 					//Since $he has no amputated limbs the <<= setup.prosthetics.interfaceP2.name>> will be put into storage.//
 				<<elseif $activeSlave.PLimb == 1>>
-					<<set $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "PLimb interface3">>
+					<<set $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 5), $surgeryType = "PLimb interface3">>
 					<<include "Surgery Degradation">>
 				<<else>>
-					<<set $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "PLimb interface2">>
+					<<set $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20), $surgeryType = "PLimb interface2">>
 					<<include "Surgery Degradation">>
 				<</if>>
 			<<case "basicL" "sexL" "beautyL" "combatL" "cyberneticL">>
@@ -164,7 +164,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized
 					<</if>>
 				<</if>>
 			<<case "interfaceTail">>
-				<<set $activeSlave.PTail = 1, $activeSlave.tail = "none", $activeSlave.tailColor = "none", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "tailInterface">>
+				<<set $activeSlave.PTail = 1, $activeSlave.tail = "none", $activeSlave.tailColor = "none", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 10), $surgeryType = "tailInterface">>
 				<<include "Surgery Degradation">>
 			<<case "modT" "sexT" "combatT">>
 				<<if $activeSlave.PTail == 0>>
diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw
index 2b5642e5e0163c9cc11ac106e74bf535e3b5b291..6371d224d04d26154c689ce6b2bdce02f296ce87 100644
--- a/src/uncategorized/newSlaveIntro.tw
+++ b/src/uncategorized/newSlaveIntro.tw
@@ -693,7 +693,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 		<<set $activeSlave.brand[_brandTarget] = $brandDesign.primary>>
 		<<set $activeSlave.devotion -= 5>>
 		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<if canDoAnal($activeSlave)>>
 			<<= VCheck.Anal()>>
 		<</if>>
@@ -764,7 +764,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 			When $he <<if canHear($activeSlave)>>hears<<else>>learns<</if>> $he'll be heading to surgery immediately, $he bursts into @@.hotpink;tears of gratitude@@ and makes to run around your desk to hug you before checking $himself. $He clearly doesn't want to put a foot wrong and isn't sure it would be appropriate. You solve $his dilemma by meeting $him with an embrace. $He @@.mediumaquamarine;cries into your chest@@ and promises to be your best slave. The surgery does affect $his @@.red;health@@ a little.
 		<</replace>>
 		<<set $activeSlave.devotion += 15>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<set $activeSlave.trust += 10>>
 		<<set $activeSlave.vagina = 0>>
 		<<set $activeSlave.dick = 0>>
@@ -799,7 +799,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 			<</replace>>
 			<<set $activeSlave.devotion -= 10>>
 			<<set $activeSlave.trust -= -10>>
-			<<set $activeSlave.health -= 10>>
+			<<run healthDamage($activeSlave, 10)>>
 			<<set $activeSlave.balls = 0>>
 			<<= VCheck.Anal()>>
 		<</link>>
@@ -870,7 +870,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 		<<set $activeSlave.devotion += 4>>
 		<<set $activeSlave.trust += 4>>
 		<<set $activeSlave.voice += 1>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<= VCheck.Anal()>>
 	<</link>>
 	<<if canDoAnal($activeSlave)>>
@@ -1137,7 +1137,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 
 <br>//Have $him changed...//
 
-<<if $activeSlave.health < -20>>
+<<if $activeSlave.health.condition < -20>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<link "Address $his medical issues">>
 		<<replace "#introResult">>
@@ -1147,7 +1147,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 				<<= FutureSocieties.Change("Paternalist", 2)>>
 			<</if>>
 		<</replace>>
-		<<set $activeSlave.health += 10>>
+		<<run improveCondition($activeSlave, 10)>>
 		<<set $activeSlave.trust += 4>>
 	<</link>>
 <</if>>
@@ -1229,7 +1229,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 	<<set $activeSlave.brand[_brandTarget] = $brandDesign.primary>>
 	<<set $activeSlave.devotion -= 5>>
 	<<set $activeSlave.trust -= 10>>
-	<<set $activeSlave.health -= 10>>
+	<<run healthDamage($activeSlave, 10)>>
 <</link>>
 
 
@@ -1260,7 +1260,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 	<<run cashX(forceNeg($modCost), "slaveMod", $activeSlave)>> /* Let's just bill once, for the whip and disinfectant. */
 	<<set $activeSlave.devotion -= 5>>
 	<<set $activeSlave.trust -= 10>>
-	<<set $activeSlave.health -= 10>>
+	<<run healthDamage($activeSlave, 10)>>
 	<<replace "#introResult">>
 		You drag $him to the
 		<<if $cellblock>>
@@ -1320,7 +1320,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 	<<run App.Medicine.Modification.addScar($activeSlave, _scarTarget, $scarDesign.primary)>>
 	<<set $activeSlave.devotion -= 5>>
 	<<set $activeSlave.trust -= 10>>
-	<<set $activeSlave.health -= 10>>
+	<<run healthDamage($activeSlave, 10)>>
 <</link>>
 
 <<if $arcologies[0].FSHedonisticDecadence >= 50 && $activeSlave.behavioralFlaw == "anorexic" && $activeSlave.weight < 10>>
@@ -1377,7 +1377,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 		<<set $activeSlave.pregKnown = 0>>
 		<<run SetBellySize($activeSlave)>>
 		<<set $activeSlave.ovaries = 0>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 	<</link>>
 <</if>>
 
@@ -1410,7 +1410,8 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 				<</if>>
 			<</replace>>
 			<<set $activeSlave.balls = 0, $activeSlave.scrotum = 0>>
-			<<set $activeSlave.health -= 10, $activeSlave.trust -= 50>>
+			<<run healthDamage($activeSlave, 10)>>
+			<<set $activeSlave.trust -= 50>>
 		<</link>> |
 	<</if>>
 	<<link "Remove $his genitalia">>
@@ -1424,8 +1425,8 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 			<</if>>
 		<</replace>>
 		<<set $activeSlave.chastityPenis = 0, $activeSlave.chastityVagina = 0, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.ovaries = 0, $activeSlave.preg = -2, $activeSlave.pregKnown = 0, $activeSlave.pregSource = 0, $activeSlave.pregType = 0, $activeSlave.pregWeek = -4, $activeSlave.vagina = -1, $activeSlave.skill.vaginal = 0>>
-		<<run SetBellySize($activeSlave)>>
-		<<set $activeSlave.health -= 10, $activeSlave.trust = Math.clamp($activeSlave.trust-100, -100, 100)>>
+		<<run SetBellySize($activeSlave), healthDamage($activeSlave, 10)>>
+		<<set $activeSlave.trust = Math.clamp($activeSlave.trust-100, -100, 100)>>
 	<</link>>
 <</if>>
 
@@ -1438,7 +1439,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 		<</replace>>
 		<<set $activeSlave.heels = 1>>
 		<<set $activeSlave.devotion -= 5>>
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<set $activeSlave.trust -= 20>>
 	<</link>>
 <</if>>
@@ -1447,7 +1448,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<link "Implant $him with slow release lactation drugs">>
 		<<replace "#introResult">>
-			You <<if $activeSlave.devotion > 20>> guide the compliant $desc <<else>>have the $desc restrained and brought<</if>> to the remote surgery. The procedure is quick and @@.red;minimally invasive@@<<set $activeSlave.health -= 10>>. Once the process is complete and the anesthesia subsides $he begins to feel a rising pressure within $his <<if $activeSlave.boobs > 2000 >>gigantic udders<<elseif $activeSlave.boobs > 900>>plentiful bosom<<elseif $activeSlave.boobs > 400>>healthy breasts<<else>>small breasts<</if>>. You then <<if $activeSlave.devotion > 20>>instruct $him to rest<<else>>have $him restrained<</if>> beside your desk until further notice. After a few hours $his increasing discomfort becomes obvious, and white droplets begin to appear across $his nipples and areola.
+			You <<if $activeSlave.devotion > 20>> guide the compliant $desc <<else>>have the $desc restrained and brought<</if>> to the remote surgery. The procedure is quick and @@.red;minimally invasive@@<<run healthDamage($activeSlave, 10)>>. Once the process is complete and the anesthesia subsides $he begins to feel a rising pressure within $his <<if $activeSlave.boobs > 2000 >>gigantic udders<<elseif $activeSlave.boobs > 900>>plentiful bosom<<elseif $activeSlave.boobs > 400>>healthy breasts<<else>>small breasts<</if>>. You then <<if $activeSlave.devotion > 20>>instruct $him to rest<<else>>have $him restrained<</if>> beside your desk until further notice. After a few hours $his increasing discomfort becomes obvious, and white droplets begin to appear across $his nipples and areola.
 			<<if $activeSlave.devotion > 20>>
 				<<if $activeSlave.fetish == "boobs">>
 					<<if $activeSlave.fetishKnown == 0>>
diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw
index 6a68dae6b83ac656c9950fcf91d9e5c0ae2542c7..9115db254e2f4a496bd65b3b42429841ce06e2d8 100644
--- a/src/uncategorized/nextWeek.tw
+++ b/src/uncategorized/nextWeek.tw
@@ -205,7 +205,6 @@
 		<<set $slaves[_i].fetishStrength = Math.clamp($slaves[_i].fetishStrength.toFixed(1), 0, 100)>>
 	<</if>>
 	<<set $slaves[_i].weight = Math.clamp($slaves[_i].weight.toFixed(1), -100, 200)>>
-	<<set $slaves[_i].health = Number($slaves[_i].health.toFixed(1))>>
 	<<set $slaves[_i].butt = Number($slaves[_i].butt.toFixed(1))>>
 	<<set $slaves[_i].muscles = Math.clamp($slaves[_i].muscles.toFixed(1), -100, 100)>>
 	<<set $slaves[_i].lips = Math.clamp($slaves[_i].lips.toFixed(1), 0, 100)>>
diff --git a/src/uncategorized/pBombing.tw b/src/uncategorized/pBombing.tw
index 7d7df0e2dd4d7119a6d2f31a5691b42c9462cb91..a2a5d4f7207e20c443e65d7ef69f0dd687866950 100644
--- a/src/uncategorized/pBombing.tw
+++ b/src/uncategorized/pBombing.tw
@@ -69,8 +69,7 @@ The implant is small, and went off too far ahead to do anything more than stun.
 
 	<<else>>
 		$Bodyguard.slaveName hurriedly <<if ($Bodyguard.muscles+$Bodyguard.height-100)/25 > 5>>gets $his light machine gun firing. The weapon's high rate of fire tears through the first enemy but rapidly pulls $his aim off target.<<elseif ($Bodyguard.muscles+$Bodyguard.height-100)/25 > 4>>brings up $his battle rifle. $He hits the nearest assailant with $his first round and then fires again, but the weapon's powerful recoil sends it over $his target.<<elseif ($Bodyguard.muscles+$Bodyguard.height-100)/25 > 3>>brings up $his submachine gun. $He points it at the nearest assailant and pulls the trigger; the weapon's high rate of fire tears through the enemy but rapidly pulls $his aim off target.<<else>>draws $his machine pistol. $He points it one-handed at the nearest assailant and pulls the trigger; the weapon's high rate of fire tears through the enemy but rapidly pulls $his aim off target.<</if>> By the time $he pulls the muzzle back down the others are on $him. $His sword is very sharp, but so are $his assailants' weapons, and everyone is unskilled. As often happens with bladed fights between unarmored novices, everyone dies, and so fast that you cannot intervene. $Bodyguard.slaveName expires gasping in agony over multiple deep wounds to $his abdomen, but still manages to lock eyes with you as $he does. There is some @@.red;minor property damage@@ to repair, but no lasting harm.
-		<<run cashX(-1000, "event", $Bodyguard)>>
-		<<set $Bodyguard.health -= 1000>>
+		<<run cashX(-1000, "event", $Bodyguard), healthDamage($Bodyguard, 1000)>>
 		<<set $activeSlave = $Bodyguard>>
 		<<= removeActiveSlave() >>
 	<</if>> /* closes $Bodyguard != 0 */
diff --git a/src/uncategorized/pCoupAttempt.tw b/src/uncategorized/pCoupAttempt.tw
index 8bec16865b5477617a58b274ed34526d5e85ff8f..70084bbd5644a551bac38d88e10e68cf586d2074 100644
--- a/src/uncategorized/pCoupAttempt.tw
+++ b/src/uncategorized/pCoupAttempt.tw
@@ -225,11 +225,11 @@ You are awakened in the middle of the night by a jolt that shakes the entire arc
 	<<elseif $traitorType == "hostage">>
 		$traitor.slaveName wanders back to the penthouse, battered and bloody, but alive.
 		<<set $traitor.assignment = "rest">>
-		<<set $traitor.health = random(-80,-60)>>
+		<<run setHealth($traitor, $traitor.health.condition, $traitor.health.condition - $traitor.health.shortDamage + 80, $traitor.health.longDamage, $traitor.health.illness, $traitor.health.tired)>>
 	<<else>>
 		$traitor.slaveName was captured and has been returned to you.
 		<<set $traitor.assignment = "stay confined">>
-		<<set $traitor.health = random(-80,-60)>>
+		<<run setHealth($traitor, $traitor.health.condition, $traitor.health.condition - $traitor.health.shortDamage + 80, $traitor.health.longDamage, $traitor.health.illness, $traitor.health.tired)>>
 		<<set $traitor.origin = "$He was your slave, but you freed $him, which $he repaid by participating in a coup attempt against you. It failed, and $he is again your chattel.">>
 	<</if>>
 	<<if $familyTesting == 1>>
diff --git a/src/uncategorized/pHostageAcquisition.tw b/src/uncategorized/pHostageAcquisition.tw
index ba79a11e8554bbcd2e7bce899d422202951e5bd1..79c43b13158c1b359ab17638055c1bd8c082ff17 100644
--- a/src/uncategorized/pHostageAcquisition.tw
+++ b/src/uncategorized/pHostageAcquisition.tw
@@ -56,7 +56,7 @@ Your hired mercenaries are en route now with your precious cargo.
 	<<if $activeSlave.preg > 0>>
 		<<run WombFatherRace($activeSlave, $arcologies[0].FSSubjugationistRace)>>
 	<</if>>
-	<<set $activeSlave.health = 50>>
+	<<run setHealth($activeSlave, 50, $activeSlave.health.shortDamage, $activeSlave.health.longDamage, undefined, undefined)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They kept trying to rape me with $arcologies[0].FSSubjugationistRace <<s>>lave<<s>>!" You gently wrap your arms around $him in a comforting embrace. $He's nearly the same as you remember $him, albeit a bit more hateful towards $arcologies[0].FSSubjugationistRace people.
 	<<elseif $rivalryDuration <= 10>>
@@ -87,25 +87,33 @@ Your hired mercenaries are en route now with your precious cargo.
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "Thank you... Thank you..." You gently wrap your arms around $him in a comforting embrace. $He's nearly the same as you remember $him, albeit acting slightly odd and covered in scars.
 		<<set $activeSlave.weight = 0>>
 		<<set $activeSlave.muscles = 0>>
-		<<if $activeSlave.health > -20>><<set $activeSlave.health = -20>><</if>>
+		<<if $activeSlave.health.health > -20>>
+			<<run setHealth($activeSlave, 0, Math.max($activeSlave.health.shortDamage, 10), Math.max($activeSlave.health.longDamage, 10))>>
+		<</if>>
 		<<set $activeSlave.custom.tattoo = "$He has slight scarring from being beaten under your rival's rule.">>
 	<<elseif $rivalryDuration <= 10>>
 		Upon seeing you, $activeSlave.slaveName walks into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "T-thank you... T-thank you..." You gently draw $his thin body into a comforting embrace. $He's nearly the same as you remember $him, albeit thinner, acting odd and covered in many scars.
 		<<set $activeSlave.weight = -20>>
 		<<set $activeSlave.muscles = -20>>
-		<<if $activeSlave.health > -40>><<set $activeSlave.health = -40>><</if>>
+		<<if $activeSlave.health.health > -40>>
+			<<run setHealth($activeSlave, 0, Math.max($activeSlave.health.shortDamage, 20), Math.max($activeSlave.health.longDamage, 20))>>
+		<</if>>
 		<<set $activeSlave.custom.tattoo = "$He has noticeable scarring from being beaten under your rival's rule.">>
 	<<elseif $rivalryDuration <= 15>>
 		Upon seeing you, $activeSlave.slaveName shuffles into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "T-thank you..." You gently draw $his rail thin body into a comforting embrace, though you can't help but feel $his <<if $seePreg != 0>>swollen<<else>>caved-in<</if>> belly pressing into your own. $He's nearly the same as you remember $him, albeit thinner,<<if $seePreg != 0>> pregnant,<</if>> acting very odd, and heavily covered in scars.
 		<<set $activeSlave.weight = -50>>
 		<<set $activeSlave.muscles = -50>>
-		<<if $activeSlave.health > -60>><<set $activeSlave.health = -60>><</if>>
+		<<if $activeSlave.health.health > -60>>
+			<<run setHealth($activeSlave, -10, 25, Math.max($activeSlave.health.longDamage, 25))>>
+		<</if>>
 		<<set $activeSlave.custom.tattoo = "$He has heavy scarring from being beaten under your rival's rule.">>
 	<<elseif $rivalryDuration <= 20>>
 		Upon seeing you, $activeSlave.slaveName attempts to stumble into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> but only makes it several pained steps before collapsing to the ground. You gently pick up $his frail, <<if $seePreg != 0>>bloated<<else>>sickly<</if>> body and hold it in a comforting embrace. a short "T-thank you..." escapes $his tired lips. $He's nearly the same as you remember $him, albeit emaciated,<<if $seePreg != 0>> pregnant,<</if>> acting very odd and completely covered in scars.
 		<<set $activeSlave.weight = -100>>
 		<<set $activeSlave.muscles = -75>>
-		<<if $activeSlave.health > -80>><<set $activeSlave.health = -80>><</if>>
+		<<if $activeSlave.health.health > -80>>
+			<<run setHealth($activeSlave, -20, 30, Math.max($activeSlave.health.longDamage, 30), 1)>>
+		<</if>>
 		<<set $activeSlave.custom.tattoo = "$He has heavy scarring all over $his body from being beaten under your rival's rule.">>
 	<<else>>
 		Your mercenaries radio you upon arrival. "VIP recovered but... $He isn't all there."
@@ -113,11 +121,13 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain apologizes again. "My apologies, we found $him like that. I'm sorry," he says as he and his group exit your penthouse, leaving you with the comatose $activeSlave.slaveName. $He looks the same as you remember, albeit emaciated, battered, <<if $seePreg != 0>>broken, and very pregnant<<else>>and broken<</if>>. Although, if $he pulls through this, $he'll be devoted to you forever.
 		<<set $activeSlave.weight = -100>>
 		<<set $activeSlave.muscles = -100>>
-		<<if $activeSlave.health > -100>><<set $activeSlave.health = -100>><</if>>
+		<<if $activeSlave.health.health > -100>>
+			<<run setHealth($activeSlave, -40, 30, Math.max($activeSlave.health.longDamage, 30), 2)>>
+		<</if>>
 		<<set $activeSlave.custom.tattoo = "$He has intense scarring all over $his body from being beaten under your rival's rule.">>
 	<</if>>
 <<case "Repopulation Focus">>
-	<<set $activeSlave.health = 50>>
+	<<run setHealth($activeSlave, 50, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<set WombFlush($activeSlave)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They took my egg<<s>> away!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember, though a medical scan reveals that $his ovaries contain absolutely zero egg cells.
@@ -134,7 +144,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, especially given $his hatred for pregnancy.
 	<</if>>
 <<case "Eugenics">>
-	<<set $activeSlave.health = 50>>
+	<<run setHealth($activeSlave, 50, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $seeHyperPreg != 1>>
 		<<if $rivalryDuration <= 5>>
 			Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They filled me with cum! I think I'm pregnant!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember, though a medical scan reveals that $he is carrying <<print pregNumberName($activeSlave.pregType, 2)>>.
@@ -167,7 +177,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		<</if>>
 	<</if>>
 <<case "Gender Radicalism">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They acted <<s>>o weird!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember, if not slightly more attached to you.
 	<<elseif $rivalryDuration <= 10>>
@@ -183,7 +193,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, given $his views on a $girl's place in society.
 	<</if>>
 <<case "Gender Fundamentalism">>
-	<<set $activeSlave.health = 20>>
+	<<run setHealth($activeSlave, 20, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They did <<s>>uch terrible thing<<s>> to my butt!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember, if not a little curious about anal.
 	<<elseif $rivalryDuration <= 10>>
@@ -203,31 +213,41 @@ Your hired mercenaries are en route now with your precious cargo.
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "Thank you... Thank you..." You gently wrap your arms around $him in a comforting embrace. $He's nearly the same as you remember $him, albeit acting slightly odd and covered in piercings and tattoos.
 		<<set $activeSlave.weight = 0>>
-		<<if $activeSlave.health > -20>><<set $activeSlave.health = -20>><</if>>
+		<<if $activeSlave.health.health > -20>>
+			<<run setHealth($activeSlave, 0, Math.max($activeSlave.health.shortDamage, 10), Math.max($activeSlave.health.longDamage, 10))>>
+		<</if>>
 	<<elseif $rivalryDuration <= 10>>
 		Upon seeing you, $activeSlave.slaveName tries to crawl to you. You help $him into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> as $he sobs "T-thank you... T-thank you..." You gently draw $his thin body into a comforting embrace. $He's nearly the same as you remember $him, albeit thinner, acting odd and covered in piercings and tattoos.
 		<<set $activeSlave.weight = -20>>
 		<<set $activeSlave.muscles = -20>>
-		<<if $activeSlave.health > -40>><<set $activeSlave.health = -40>><</if>>
+		<<if $activeSlave.health.health > -40>>
+			<<run setHealth($activeSlave, 0, Math.max($activeSlave.health.shortDamage, 20), Math.max($activeSlave.health.longDamage, 20))>>
+		<</if>>
 	<<elseif $rivalryDuration <= 15>>
 		Upon seeing you, $activeSlave.slaveName tries to crawl to you. You help $him into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> as $he sobs. You gently draw $his rail thin body into a comforting embrace, though you can't help but notice several of $his ribs are broken. $He's barely recognizable; being much thinner, acting very odd and covered in piercings and tattoos.
 		<<set $activeSlave.weight = -50>>
 		<<set $activeSlave.muscles = -50>>
-		<<if $activeSlave.health > -60>><<set $activeSlave.health = -60>><</if>>
+		<<if $activeSlave.health.health > -60>>
+			<<run setHealth($activeSlave, -10, 25, Math.max($activeSlave.health.longDamage, 25))>>
+		<</if>>
 	<<elseif $rivalryDuration <= 20>>
 		Upon being placed in your office, $activeSlave.slaveName curls into a fetal position and begins sobbing. You help $him into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> as $he pitifully struggles. You gently draw $his emaciated body into a comforting embrace and call out $his name, having realized $he is blind. $He immediately calms down and moves closer to you. $He's barely recognizable; being skin and bone, acting very odd and covered in piercings and tattoos.
 		<<set $activeSlave.weight = -100>>
 		<<set $activeSlave.muscles = -80>>
-		<<if $activeSlave.health > -80>><<set $activeSlave.health = -80>><</if>>
+		<<if $activeSlave.health.health > -80>>
+			<<run setHealth($activeSlave, -20, 30, Math.max($activeSlave.health.longDamage, 30), 1)>>
+		<</if>>
 	<<else>>
 		Your mercenaries radio you upon arrival. "VIP recovered but... I'm so sorry..."
 		You immediately wretch from the smell that follows the merc troop into your office. You rise to shout at them for tracking it in when you realize what the source of the smell is. A crate containing the twisted, mutilated, inked and pierced body of $activeSlave.slaveName. The mercenaries see themselves out as you carefully take a biometric scan of the inert, limbless body before you. $He is alive, but barely, and a brain scan shows few signs of activity. You call for some servants to clean $him up, hoping that maybe it will draw $him out of $his stupor. Deep down, you understand the $girl you used to know has been twisted and broken completely; never to be the same again.
-		<<if $activeSlave.health > -100>><<set $activeSlave.health = -100>><</if>>
+		<<if $activeSlave.health.health > -100>>
+			<<run setHealth($activeSlave, -40, 30, Math.max($activeSlave.health.longDamage, 30), 2)>>
+		<</if>>
 		<<set $activeSlave.weight = -100>>
 		<<set $activeSlave.muscles = -100>>
 	<</if>>
 <<case "Degradationism">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They acted <<s>>o weird!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember, if not slightly more attached to you.
 	<<elseif $rivalryDuration <= 10>>
@@ -243,7 +263,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember,<<if $seePreg != 0>> minus $his rounded belly,<</if>> but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, seeing as $he intends to undermine you at every turn.
 	<</if>>
 <<case "Body Purism">>
-	<<set $activeSlave.health = -30>>
+	<<run setHealth($activeSlave, 0, Math.max($activeSlave.health.shortDamage, 15), Math.max($activeSlave.health.longDamage, 15))>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName attempts to dive into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>>. The weight of $his huge <<print $activeSlave.boobs>>cc fake tits knocks the wind out of you. You embrace $him as best you can as $he sobs "Look what they did to my che<<s>>t! They ruined it!" $He looks similar to how you remember, minus $his huge chest of course.
 	<<elseif $rivalryDuration <= 10>>
@@ -259,7 +279,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful." He pats $his grotesque breast, adding "'Least $he won't be going anywhere." He and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. The $girl you used to know is barely recognizable under those implants and $he certainly doesn't think the same anymore. Odds are high that $he'll cause problems for you in the future, assuming you can find a doctor to remove those ridiculous implants from $his once flat chest. Or you could leave $him as an immobile ornament, though implants are definitely out of style.
 	<</if>>
 <<case "Transformation Fetishism">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They told me <<s>>uch horrible thing<<s>> about you!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -275,7 +295,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, given $his hatred for implants.
 	<</if>>
 <<case "Youth Preferentialism">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "Thi<<s>> old woman tried to make me her pet!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -286,13 +306,13 @@ Your hired mercenaries are en route now with your precious cargo.
 		<<set $activeSlave.trust = 40>>
 		Upon seeing you, $activeSlave.slaveName shifts $his weight back and forth, unsure of what to make of you. As you step forward, $he quickly steps back. After several steps, $he says "<<if $PC.visualAge >= 50>>You know, you're <<s>>oo much older than me... I like that," with a wink.<<elseif $PC.visualAge < 35>>Ew, you're <<s>>oo young. Keep your hand<<s>> off me!<<else>>Can you hook me up with a ni<<c>>e MILF?<</if>>" While $he looks the same as you remember, $he definitely doesn't think the same anymore.
 	<<else>>
-		<<set $activeSlave.trust = 80>>
+		<<run setHealth($activeSlave, 80, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 		Your mercenaries radio you upon arrival. "This one's got quite some spunk in $him, you better ready yourself. We're coming in now."
 		Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, $he stands $his ground. After several steps, $he shouts "How fucking DARE you <<s>>plit me up from my MILFy wife! I <<s>>aw your arcology on the way in, and it'<<s>> <<S>>ICK. <<S>>o many young girl<<s>>, you're <<s>>ick, you hear me!? <<S>>I-"
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, given $his hatred for young people.
 	<</if>>
 <<case "Maturity Preferentialism">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "Thi<<s>> young girl kept mole<<s>>ting me!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -309,7 +329,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, given $his hatred for older people.
 	<</if>>
 <<case "Slimness Enthusiasm">>
-	<<set $activeSlave.health = -30>>
+	<<run setHealth($activeSlave, -30, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<set $activeSlave.chem = 100>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName attempts to dive into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>>. The weight of $his huge <<print $activeSlave.boobs>>cc tits knocks the wind out of you. You embrace $him as best you can, you hands sinking into $his soft butt, as $he sobs "Look what they did to my che<<s>>t and a<<ss>>! They ruined them!" $He looks similar to how you remember, minus $his huge assets of course.
@@ -326,7 +346,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful." He pats $his grotesque breast, adding "'Least $he won't be going anywhere." He and his group exit your penthouse, leaving you with the enraged and struggling $activeSlave.slaveName. You sigh at the amount of motion running through $his absurd tits, mountainous ass, and obese body. The $girl you used to know is barely recognizable under all that flesh and $he certainly doesn't think the same anymore. Odds are high that $he'll cause problems for you in the future, once $his body sheds the weight. Or you could leave $him as an immobile ornament, though assets of that size are definitely out of style.
 	<</if>>
 <<case "Asset Expansionism">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They told me <<s>>uch horrible thing<<s>> about you!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -342,7 +362,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him. "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, given $his hatred for huge assets.
 	<</if>>
 <<case "Pastoralism">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "I've never had to e<<x>>er<<c>>i<<s>>e <<s>>o much; I'm exhau<<s>>ted!" You gently wrap your arms around $his soft body in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -358,7 +378,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain is thrown back as $he explodes out of $his restraints, having been preparing to gag $him. The rest of the troop center their weapons on $him, forcing $him to back down. $He glares at you as the captain picks himself up and exits your penthouse, leaving you with the enraged $activeSlave.slaveName. $He grunts as $he exits the office for the slave quarters, stopping in the doorway. "I'll be your <<s>>lave, but you're going to be <<s>>orry." With a hand on each door frame, $he rips it out of the wall. $He lets out a single laugh while scowling at you. $He is thin and extremely muscular, a stark difference from the soft, chubby $girl you used to know; $he certainly doesn't think the same anymore, either. Odds are high that $he'll cause problems for you in the future, given $his hatred for you and $his frightening strength.
 	<</if>>
 <<case "Cummunism">>
-	<<set $activeSlave.health = -30>>
+	<<run setHealth($activeSlave, -30, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName attempts to dive into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>>. The weight of $his huge <<print $activeSlave.boobs>>cc tits knocks the wind out of you. You embrace $him as best you can, you hands sinking into $his soft butt, as $he sobs "They made me fat! My nipple<<s>> won't <<s>>top leaking milk!" $He looks similar to how you remember, minus $his huge milky assets of course.
 	<<elseif $rivalryDuration <= 10>>
@@ -377,25 +397,25 @@ Your hired mercenaries are en route now with your precious cargo.
 <<case "Physical Idealism">>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>>, $his added heft knocking the wind out of you. You gently wrap your arms around $him in a comforting embrace, your arms gently sinking into $his soft flesh, as $he sobs, "They made me fat! I'm <<s>>o glad tho<<s>>e guy<<s>> let me puke up all that food; I don't even want to think how big I'd be otherwi<<s>>e!" $He looks similar to how you remember, thanks to the pudge, though that can be easily rectified.
-		<<set $activeSlave.health = 0>>
+		<<run setHealth($activeSlave, 0, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<elseif $rivalryDuration <= 10>>
 		Upon seeing you, $activeSlave.slaveName gingerly approaches, uncertain if $he should. You pull $his meaty body into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> as $he breaks down in tears. "Why did they make me into a <<s>>ow, I don't under<<s>>tand..." $He looks similar to how you remember, minus $his added weight of course.
-		<<set $activeSlave.health = -10>>
+		<<run setHealth($activeSlave, -10, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<elseif $rivalryDuration <= 15>>
 		Upon seeing you, $activeSlave.slaveName shifts $his weight back and forth causing $his plump body, big breasts and fat ass to jiggle, unsure of what to make of you. As you step forward, $he asks "Can I have <<s>>ome food?" The $girl you used to know is barely recognizable under all that fat and $he certainly doesn't think the same anymore.
-		<<set $activeSlave.health = -30>>
+		<<run setHealth($activeSlave, -30, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<elseif $rivalryDuration <= 20>>
 		Upon seeing you, $activeSlave.slaveName shifts $his weight back and forth causing $his fat body to jiggle, unsure of what to make of you. As you step forward, $he stumbles back. After several steps, $he screams "Keep away from me! I don't want to work out! <<S>>tuffing my fa<<c>>e and hole<<s>> whenever I plea<<s>>e i<<s>> too much fun!" The $girl you used to know is barely recognizable under that obese body; $he certainly doesn't think the same anymore, either.
-		<<set $activeSlave.health = -50>>
+		<<run setHealth($activeSlave, -50, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<else>>
 		<<set $activeSlave.trust = 80>>
 		Your mercenaries radio you upon arrival. "We got a problem sir. $He, um, is rather heavy and can't walk well... We're working our way up, but, do you have a freight elevator by chance?"
 		Once $activeSlave.slaveName's hugely fat ass is safely in the penthouse, you finally get a good look at $him. Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, $he begins to let out a low growl. After several steps, $he shouts "<<S>>tay away from me, you <<s>>ick fuck! Fit girl<<s>> are tra<<sh>>! Real men like big <<s>>oft bodie<<s>>! You're <<s>>ick! <<S>>ICK! Don't you —"
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful." He pats $his fat coated shoulder, to which $he immediately sits down. Several mercs join their captain in trying to pull $him back to $his feet. A load crack and a groan of pain escapes the captain as he drops to the ground clutching his back. His comrades quickly help him from the penthouse, leaving you to deal with the scowling blob of fat and flesh. $He is intent on not budging from that spot and you aren't interested in breaking anything, though you're certain $he'll be begging for food within an hour and easily manipulated. $He is massively fat, a stark difference from the fit, thin $girl you used to know; $he certainly doesn't think the same anymore, either. Odds are high that $he'll cause problems for you in the future, be it breaking furniture or getting stuck in doors, though given $his rather laid back life up until this point, $he is likely to be quite malleable. Though $he is wheezing quite a lot considering $he is just sitting there.
-		<<set $activeSlave.health = -80>>
+		<<run setHealth($activeSlave, -80, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<</if>>
 <<case "Hedonistic Decadence">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "I've never had to e<<x>>er<<c>>i<<s>>e <<s>>o much, I'm exhau<<s>>ted!" You gently wrap your arms around $his soft body in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -411,7 +431,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain is thrown back as $he explodes out of $his restraints, having been preparing to gag $him. The rest of the troop center their weapons on $him, forcing $him to back down. $He glares at you as the captain picks himself up and exits your penthouse, leaving you with the enraged $activeSlave.slaveName. $He grunts as $he exits the office for the slave quarters, stopping in the doorway. "I'll be your <<s>>lave, but you're going to be <<s>>orry." With a hand on each door frame, $he rips it out of the wall. $He lets out a single laugh while scowling at you. $He is thin and extremely muscular, a stark difference from the soft, chubby $girl you used to know; $he certainly doesn't think the same anymore, either. Odds are high that $he'll cause problems for you in the future, given $his hatred for you and $his frightening strength.
 	<</if>>
 <<case "Chattel Religionism">>
-	<<set $activeSlave.health = 50>>
+	<<run setHealth($activeSlave, 50, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They told me <<s>>uch horrible thing<<s>> about you!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -427,7 +447,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him. "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says, as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future.
 	<</if>>
 <<case "Multiculturalism">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They <<s>>aid <<s>>uch cra<<z>>y thing<<s>>!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -444,7 +464,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him. "My apologies, I did warn you about that mouth. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the disappointed $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, trying to preach $his new faith.
 	<</if>>
 <<case "Intellectual Dependency">>
-	<<set $activeSlave.health = 80>>
+	<<run setHealth($activeSlave, 80, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They tried to teach me the mo<<s>>t ob<<sc>>ene thing<<s>>!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -463,7 +483,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		Upon seeing you, $activeSlave.slaveName graciously bows, giving you a lovely view down $his cleavage, before resuming $his perfect stance. "I am your property now and any thought<<s>> of my previou<<s>> owner are no longer relevant. Any feeling<<s>> I may have had have been left behind and will not influen<<c>>e me. I am your<<s>> to u<<s>>e a<<s>> you plea<<s>>e, no matter what the outcome may be. How may I <<s>>ervi<<c>>e you, <<Master>>?" While $he looks the same as you remember, $he certainly doesn't think the same anymore.
 	<</if>>
 <<case "Slave Professionalism">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They did thing<<s>> to me! My head hurt<<s>> <<s>>o much..." You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -477,7 +497,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		Upon seeing you, $activeSlave.slaveName's eyes fill with excitement. As you step forward, $he struggles against $his bindings, desperately trying to get loose. The mercenary captain yanks $him back. "My apologies, the only thing left of $his mind is a libido it feels like. Please be careful when you unbind $him, $he's nothing more than a horny idiot now." he says as he and his group exit your penthouse, leaving you with the dripping $activeSlave.slaveName. $He looks the same as you remember<<if $seePreg != 0>>, albeit a little pregnant<</if>>, but $he acts nothing like the $girl you used to know. $He's probably too dumb to manage to cause any trouble, but is likely to be high maintenance given $his ineptitude and nymphomania.
 	<</if>>
 <<case "Petite Admiration">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "Thi<<s>> giant woman tried to make me her pet!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -500,7 +520,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, given $his hatred for the short.
 	<</if>>
 <<case "Statuesque Glorification">>
-	<<set $activeSlave.health = 60>>
+	<<run setHealth($activeSlave, 60, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "Thi<<s>> midget kept mole<<s>>ting me!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
@@ -523,7 +543,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, given $his hatred for tall people.
 	<</if>>
 <<default>>
-	<<set $activeSlave.health = 40>>
+	<<run setHealth($activeSlave, 40, $activeSlave.health.shortDamage, $activeSlave.health.longDamage)>>
 	<<if $rivalryDuration <= 5>>
 		Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs >= 650>>ample bust<<else>>chest<</if>> sobbing "They told me <<s>>uch horrible thing<<s>> about you!" You gently wrap your arms around $him in a comforting embrace. $He's exactly as you remember.
 	<<elseif $rivalryDuration <= 10>>
diff --git a/src/uncategorized/pRaidResult.tw b/src/uncategorized/pRaidResult.tw
index 86105c95a81421ee4f253b3eaaa891cfcea7d389..0611440099a6bc8216afcd9030475ad9b04ed0c1 100644
--- a/src/uncategorized/pRaidResult.tw
+++ b/src/uncategorized/pRaidResult.tw
@@ -40,7 +40,7 @@ Out ahead of the main body of refugees there is a small knot moving quickly and
 	<<for _prr = 0; _prr < 5; _prr++>>
 		<<set $activeSlave = GenerateNewSlave()>>
 		<<set $activeSlave.origin = "$He is an enslaved refugee who was wounded in the defeated attack on your arcology.">>
-		<<set $activeSlave.health = random(-80,-40)>>
+		<<run setHealth($activeSlave, jsRandom(-50, 40), normalRandInt(20, 3), normalRandInt(15, 3), Math.max(normalRandInt(0, 1), 0), jsRandom(40, 80))>>
 		<<set _newSlaves.push($activeSlave)>>
 	<</for>>
 <</if>>
diff --git a/src/uncategorized/pRivalInitiation.tw b/src/uncategorized/pRivalInitiation.tw
index 0477381e1ec36d284064fa0235caddfb56a1d027..3a8ba6d6082c500a8de00e36f20586fe11a5a9df 100644
--- a/src/uncategorized/pRivalInitiation.tw
+++ b/src/uncategorized/pRivalInitiation.tw
@@ -42,8 +42,8 @@ This is a special week, the week of your victory. <<EventNameLink>> awaits your
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
 		$activeSlave.slaveName, who has been fairly dignified up to this point, breaks down when $he's placed in stocks with $his ass in the air. $His sobs become screams when, for the first time in $his life, $he feels the burning sensation of a well-lubricated <<if $PC.dick != 0>>cockhead<<else>>strap-on<</if>> forcing its way past $his virgin sphincter. Raping a virgin anus is not a new pleasure for you, but the usual shrieking, struggling and spasming is all the sweeter this time. @@.green;Half the arcology@@ has used $his @@.red;poor injured butthole@@ by the end of the day; $he @@.gold;is learning to fear you,@@ and hates you @@.mediumorchid;even more@@ if possible.
-		<<set $activeSlave.devotion -= 4, $activeSlave.trust -= 5, $activeSlave.health -= 10, $activeSlave.anus = 3, $activeSlave.counter.anal += 47, $analTotal += 47>>
-		<<run repX(2500, "event", $activeSlave)>>
+		<<set $activeSlave.devotion -= 4, $activeSlave.trust -= 5, $activeSlave.anus = 3, $activeSlave.counter.anal += 47, $analTotal += 47>>
+		<<run repX(2500, "event", $activeSlave), healthDamage($activeSlave, 10)>>
 		<<if $activeSlave.counter.publicUse>><<set $activeSlave.counter.publicUse += 47>><<else>><<set $activeSlave.counter.publicUse = 47>><</if>>
 		<<set $rivalID = 0>>
 		<</replace>>
@@ -54,8 +54,8 @@ This is a special week, the week of your victory. <<EventNameLink>> awaits your
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
 		You announce that since $activeSlave.slaveName has spent so much money and effort turning $himself into a girl with expensive hormones, you'll take a lower-tech step to bring $him further in that regard. An autosurgery is set up in public and the populace is treated to the edifying spectacle of a very large pair of testicles being efficiently removed by the modern surgical art. Unusually, $he was not given general anesthesia, but instead given local painkillers and made to watch on a monitor, to $his @@.gold;rage@@ and @@.mediumorchid;horror.@@ There is @@.green;applause@@ as the cauterizer seals the surgical site where $his massive scrotum used to hang. $His cock looks softer already.
-		<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 10, $activeSlave.balls = 0>>
-		<<run repX(2500, "event", $activeSlave)>>
+		<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.balls = 0>>
+		<<run repX(2500, "event", $activeSlave), healthDamage($activeSlave, 10)>>
 		<<set $rivalID = 0>>
 		<</replace>>
 	<</link>>
diff --git a/src/uncategorized/pRivalryCapture.tw b/src/uncategorized/pRivalryCapture.tw
index 78367e1de18adbe70bb7d4bb38e8c8e9a28491e9..d2991a39af010aa838ee6d4790e2fdc5183d625e 100644
--- a/src/uncategorized/pRivalryCapture.tw
+++ b/src/uncategorized/pRivalryCapture.tw
@@ -405,7 +405,7 @@
 <<set $activeSlave.career = "an arcology owner">>
 <<set $activeSlave.prestige = 3>>
 <<set $activeSlave.prestigeDesc = "You bankrupted and enslaved $him in revenge for $his part in the attack on your arcology by the Daughters of Liberty.">>
-<<set $activeSlave.health = 100>>
+<<run setHealth($activeSlave, 100, 0, 0, 0, jsRandom(10, 30))>>
 <<if $activeSlave.physicalAge > 35>><<set $activeSlave.ageImplant = 1>><<run ageImplantAdjustment($activeSlave)>><</if>>
 <<set $activeSlave.pubicHStyle = "waxed">>
 <<set $activeSlave.underArmHStyle = "waxed">>
diff --git a/src/uncategorized/pRivalryHostage.tw b/src/uncategorized/pRivalryHostage.tw
index 413cdb08037e9cb93b032f615a99de156e188dc2..1ff63ff69aec758b1ad2d841a876ceb1d9c775de 100644
--- a/src/uncategorized/pRivalryHostage.tw
+++ b/src/uncategorized/pRivalryHostage.tw
@@ -104,7 +104,7 @@
 		<<set $activeSlave.actualAge = random(20,24)>>
 	<</if>>
 	<<set $activeSlave.muscles = 40>>
-	<<set $activeSlave.health = 100>>
+	<<run setHealth($activeSlave, 100, 0, 0, 0, jsRandom(10, 30))>>
 	<<set $activeSlave.skill.combat = 1>>
 <<case "BlackHat">>
 	<<set $activeSlave.career = "a shut-in">>
diff --git a/src/uncategorized/pSlaveMedic.tw b/src/uncategorized/pSlaveMedic.tw
index 958e4f8f4263148881c801ea722c4df9222957bd..86fa1330d05bb4077e5ae31880f5637b3cc0c55b 100644
--- a/src/uncategorized/pSlaveMedic.tw
+++ b/src/uncategorized/pSlaveMedic.tw
@@ -53,7 +53,7 @@
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.hStyle = "neat">>
 <<set $activeSlave.hLength = 35>>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40))>>
 <<if $mercenaries >= 3>>
 	<<if $activeSlave.counter.publicUse>><<set $activeSlave.counter.publicUse += 39>><<else>><<set $activeSlave.counter.publicUse = 39>><</if>>
 <<else>>
diff --git a/src/uncategorized/pSnatchAndGrabResult.tw b/src/uncategorized/pSnatchAndGrabResult.tw
index 83674cef23c1e5170f191b7e0720248a417d1060..4ec7f111c75e6b864bd8c55a8208576d5ce64045 100644
--- a/src/uncategorized/pSnatchAndGrabResult.tw
+++ b/src/uncategorized/pSnatchAndGrabResult.tw
@@ -11,7 +11,7 @@
 <<set $activeSlave.career = "a slave">>
 <<set $activeSlave.devotion = 100>>
 <<set $activeSlave.trust = 100>>
-<<set $activeSlave.health = 250>>
+<<run setHealth($activeSlave, 250, 0, 0, 0, 0)>>
 <<set $activeSlave.face = 15>>
 <<set $activeSlave.faceShape = "exotic">>
 <<set $activeSlave.anus = 0>>
@@ -76,7 +76,7 @@
 <<set $activeSlave.career = "a slave">>
 <<set $activeSlave.devotion = 100>>
 <<set $activeSlave.trust = 100>>
-<<set $activeSlave.health = 250>>
+<<run setHealth($activeSlave, 250, 0, 0, 0, 0)>>
 <<set $activeSlave.face = 15>>
 <<set $activeSlave.faceShape = "androgynous">>
 <<set $activeSlave.anus = 0>>
diff --git a/src/uncategorized/pUndergroundRailroad.tw b/src/uncategorized/pUndergroundRailroad.tw
index 5251589b10188fe0920d39af562150f8b5da0297..9bd99a5de0da7229c2f48b5dd72606617ed167a0 100644
--- a/src/uncategorized/pUndergroundRailroad.tw
+++ b/src/uncategorized/pUndergroundRailroad.tw
@@ -356,8 +356,8 @@ This is disturbing, to say the least. After close investigation, it appears some
 		<<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Random Nonindividual Event">><<UpdateNextButton>> /* unlock Continue button */
 		<<replace "#result">>
 		You announce that a treasonous slave will be publicly flogged. Treason is understood in the Free Cities to be activity that tends to undermine slavery, and public interest is considerable when $activeSlave.slaveName is dragged out into a public atrium and secured to a post. You do your duty; the one that passes the sentence should swing the lash. The ordeal is long and bloody. The populace understand the necessity of the punishment, though they are @@.red;disturbed@@ that such a thing could happen in your penthouse of all places. The effect on $activeSlave.slaveName's health @@.red;is serious,@@ and $he is @@.gold;terrified of failing you again.@@
-		<<set $activeSlave.health -= 30, $activeSlave.trust -= 15>>
-		<<run repX(-500, "event", $activeSlave)>>
+		<<set $activeSlave.trust -= 15>>
+		<<run repX(-500, "event", $activeSlave), healthDamage($activeSlave, 30)>>
 		<</replace>>
 	<</link>>
 	<br><<link "Chemically lobotomize $him to extirpate any record of the incident">>
diff --git a/src/uncategorized/pePitFight.tw b/src/uncategorized/pePitFight.tw
index e0d4f4b1f88c9fa6f2b7b7a9295d64729874d137..edf997e3a64f4bcede3c770294db2dda6620dd5d 100644
--- a/src/uncategorized/pePitFight.tw
+++ b/src/uncategorized/pePitFight.tw
@@ -49,7 +49,7 @@ Across the ring, $his opponent's owner nods civilly to you and examines $activeS
 	$His height gives $him a reach advantage with $his sword.
 <</if>>
 
-<<if $activeSlave.health > 50>>
+<<if $activeSlave.health.condition > 50>>
 	$His shining health makes $him a better combatant.
 <</if>>
 
@@ -65,7 +65,7 @@ Across the ring, $his opponent's owner nods civilly to you and examines $activeS
 	$His light weight is an impediment as a pit fighter.
 <</if>>
 
-<<if $activeSlave.health < -50>>
+<<if $activeSlave.health.condition < -50>>
 	$His poor health makes $him a weaker combatant.
 <</if>>
 
@@ -191,17 +191,17 @@ The umpire announces gravely that the fight is to the death and rings a bell.
 	The combat is long and exhausting. $activeSlave.slaveName and $his opponent are closely matched in terms of skill, so neither takes foolish risks and a protracted, bloody fight results as both slaves take horrible but non-life-threatening cuts. Finally, $activeSlave.slaveName's superior physical condition wins out and $his opponent falls from exhaustion and blood loss. $activeSlave.slaveName stumbles over to open _hisU throat. This victory has @@.green;won you some renown@@ and @@.yellowgreen;a sum of money@@ from each of the spectators, though $activeSlave.slaveName is @@.red;badly hurt.@@
 	<<run repX(500, "pit", $activeSlave)>>
 	<<run cashX(5000, "pit", $activeSlave)>>
-	<<set $activeSlave.health = -50>>
+	<<set $activeSlave.health.condition = -50>>
 	<<set $activeSlave.counter.pitKills += 1>>
 	<<set $pitKillsTotal += 1>>
 <<elseif $deadliness > (_opponent-1)>>
 	The combat is long and exhausting. $activeSlave.slaveName and $his opponent are closely matched in terms of skill, so neither takes foolish risks and a protracted, bloody fight results as both slaves take horrible but non-life-threatening cuts. Finally, $activeSlave.slaveName's inferior physical condition fails $him and $he falls from exhaustion and blood loss. As $he slumps $he catches your eye with a look of apology. $His opponent stumbles over to open $his throat. $activeSlave.slaveName @@.red;has been killed.@@
-	<<set $activeSlave.health -= 1000>>
+	<<run healthDamage($activeSlave, 1000)>>
 <<else>>
 	$activeSlave.slaveName is outmatched from the start. In the first pass, $his opponent moves beyond $him, opening a long gash in $his thigh as _heU goes. Thus injured, $activeSlave.slaveName fails to block a slash that severs $his Achilles tendon on the other side. On $his knees, $he barely manages to ward off one more blow before the second one opens $his belly. $activeSlave.slaveName @@.red;has been killed.@@
-	<<set $activeSlave.health -= 1000>>
+	<<run healthDamage($activeSlave, 1000)>>
 <</if>>
 
-<<if $activeSlave.health < -90>>
+<<if $activeSlave.health.health < -90>>
 	<<= removeActiveSlave() >>
 <</if>>
diff --git a/src/uncategorized/persBusiness.tw b/src/uncategorized/persBusiness.tw
index c54d799f36d83737603cf14c8742356e03b60c4c..3d7098c7efddeebf877aef640da75f8626719f1f 100644
--- a/src/uncategorized/persBusiness.tw
+++ b/src/uncategorized/persBusiness.tw
@@ -27,13 +27,13 @@
 			<<set $gameover = "debt">><<goto "Gameover">>
 		<</if>>
 	<</if>>
-<<elseif $PC.majorInjury>>
-	<<if $PC.majorInjury > 0>>
-		<<set $PC.majorInjury-->>
+<<elseif $PC.health.shortDamage >= 30>>
+	<<if $PC.health.shortDamage >= 30>>
+		<<run endWeekHealthDamage($PC)>>
 		The injuries received in the recent battle prevents you from engaging in tiring endeavors.
-		<<if $PC.majorInjury > 1>>
+		<<if $PC.health.shortDamage >= 51>>
 			Your trusted physician believes it will still take a few weeks to fully recover.
-		<<elseif $PC.majorInjury == 1>>
+		<<elseif $PC.health.shortDamage >= 39>>
 			You are starting to feel better. It's very likely you will be back to full working order within the next week.
 		<<else>>
 			You have finally recovered from your injuries.
@@ -421,7 +421,7 @@
 	/* <<set _X = 0>> */
 /* <</if>> */
 
-<<if $PC.majorInjury == 0>>
+<<if $PC.health.shortDamage < 30>>
 	<<switch $personalAttention>>
 	<<case "trading">>
 		<<set _oldSkill = $PC.skill.trading>>
diff --git a/src/uncategorized/personalAttentionSelect.tw b/src/uncategorized/personalAttentionSelect.tw
index 1fc20102c1bd722c27e08dff01699c7117075fbb..9e9cc508b298288585bcfdd96391fb516d8afde1 100644
--- a/src/uncategorized/personalAttentionSelect.tw
+++ b/src/uncategorized/personalAttentionSelect.tw
@@ -158,7 +158,7 @@
 		<</if>>
 
 		<<if $personalAttention[_i].trainingRegimen == "undecided">>
-			<<if ($activeSlave.health < -20)>>
+			<<if ($activeSlave.health.condition < -20)>>
 				<<set $personalAttention[_i].trainingRegimen = "look after her">>
 			<<elseif ($activeSlave.behavioralFlaw != "none")>>
 				<<if ($activeSlave.devotion >= -20)>>
diff --git a/src/uncategorized/prestigiousSlave.tw b/src/uncategorized/prestigiousSlave.tw
index 4a838c57bad7050dceb6b90c8d1d3bb294bdc0b7..0a52f1de693b8a1960fb3f1eb1e995d25d7087b4 100644
--- a/src/uncategorized/prestigiousSlave.tw
+++ b/src/uncategorized/prestigiousSlave.tw
@@ -62,7 +62,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.faceShape = "sensual">>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(-40,40)>>
+	<<run setHealth($activeSlave)>>
 	<<set $activeSlave.anus = 2>>
 	<<set $activeSlave.vagina = 2>>
 	<<set $activeSlave.weight = 0>>
@@ -103,7 +103,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.faceShape = "sensual">>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(60,80)>>
+	<<run setHealth($activeSlave, jsRandom(60, 80), 0, 0, 0)>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 0>>
@@ -137,7 +137,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.heels = 1>>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(80,90)>>
+	<<run setHealth($activeSlave, jsRandom(80, 90), 0, jsRandom(5, 10), 0, jsRandom(10, 30))>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 0>>
@@ -171,7 +171,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.face = 55>>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(-20,20)>>
+	<<run setHealth($activeSlave, jsRandom(-20, 20), 0, 0, 0, jsRandom(10, 30))>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 0>>
@@ -199,8 +199,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.career = "a slave">>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(40,60)>>
-	<<run eyeSurgery($activeSlave, "both", "blur")>>
+	<<run eyeSurgery($activeSlave, "both", "blur"), setHealth($activeSlave, jsRandom(40, 60), 0, 0, 0, jsRandom(10, 30))>>
 	<<set $activeSlave.custom.desc = "$His eyes are unsettling; though $his irises are a pale grey color, in some lights the whole eye takes on a red cast.">>
 
 <<case "old-timer">>
@@ -226,7 +225,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.faceShape = "exotic">>
 	<<set $activeSlave.devotion = random(25,45)>>
 	<<set $activeSlave.trust = random(0,15)>>
-	<<set $activeSlave.health = random(20,40)>>
+	<<run setHealth($activeSlave, jsRandom(20, 40), 0, jsRandom(0, 5), 0, jsRandom(10, 30))>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.vagina = 3>>
 	<<set $activeSlave.weight = 0>>
@@ -276,7 +275,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.faceShape = "cute">>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(-80,-40)>>
+	<<run setHealth($activeSlave, jsRandom(-70, -40), undefined, undefined, 0, jsRandom(30, 80))>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 0>>
@@ -310,7 +309,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.height += 10>>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(60,80)>>
+	<<run setHealth($activeSlave, jsRandom(-45, -25), 0, 0, 0, jsRandom(30, 70))>>
 	<<set $activeSlave.anus = 0>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 0>>
@@ -340,7 +339,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.height += 10>>
 	<<set $activeSlave.devotion = random(75,90)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = 100>>
+	<<run setHealth($activeSlave, 100, 0, 0, 0, jsRandom(0, 20))>>
 	<<set $activeSlave.anus = 0>>
 	<<set $activeSlave.vagina = 0>>
 	<<set $activeSlave.weight = 0>>
@@ -378,7 +377,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.lipsImplant = 3>>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(-80,-60)>>
+	<<run setHealth($activeSlave, jsRandom(-70, -60), undefined, undefined, undefined, jsRandom(40, 90))>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.vagina = 3>>
 	<<set $activeSlave.weight = -20>>
@@ -430,7 +429,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.face = 55>>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(-20,20)>>
+	<<run setHealth($activeSlave, jsRandom(-45, -25), 0, 0, 0, jsRandom(30, 70))>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 20>>
@@ -456,7 +455,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.prestigeDesc = "$He is a natural-born hermaphrodite. $He was enslaved as an adult and subjected to treatment to upgrade both $his halves to full functionality.">>
 	<<set $activeSlave.devotion = random(-45,-25)>>
 	<<set $activeSlave.trust = random(-90,-75)>>
-	<<set $activeSlave.health = random(-40,-30)>>
+	<<run setHealth($activeSlave, jsRandom(-40, -30), undefined, undefined, 0, jsRandom(30, 70))>>
 	<<set $activeSlave.chem = 100>>
 	<<set $activeSlave.anus = random(1,2)>>
 	<<set $activeSlave.dick = random(1,2)>>
@@ -490,7 +489,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.career = "a slave">>
 	<<set $activeSlave.devotion = random(25,45)>>
 	<<set $activeSlave.trust = random(25,45)>>
-	<<set $activeSlave.health = random(0,20)>>
+	<<run setHealth($activeSlave, jsRandom(0, 20), 0, 0, 0, jsRandom(20, 60))>>
 	<<set $activeSlave.chem = 200>>
 	<<set $activeSlave.boobs += 100*random(2,4)>>
 	<<set $activeSlave.butt += random(1,2)>>
@@ -539,7 +538,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.faceShape = "androgynous">>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(-40,40)>>
+	<<run setHealth($activeSlave, undefined, undefined, undefined, undefined, jsRandom(30, 70))>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.dick = 5>>
 	<<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>>
@@ -577,7 +576,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.muscles = random(20,100)>>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(60,80)>>
+	<<run setHealth($activeSlave, jsRandom(60, 80), 0, 0, 0, jsRandom(10, 30))>>
 	<<set $activeSlave.weight = 0>>
 	<<set $activeSlave.clitPiercing = 1>>
 	<<set $activeSlave.skill.oral = 15>>
@@ -606,7 +605,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.heels = 1>>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(80,90)>>
+	<<run setHealth($activeSlave, jsRandom(80, 90), 0, jsRandom(5, 10), 0, jsRandom(20, 50))>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.dick = random(3,5)>>
 	<<if $activeSlave.dick > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>>
@@ -641,7 +640,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.faceShape = "androgynous">>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(-20,20)>>
+	<<run setHealth($activeSlave, jsRandom(-20, 20), 0, 0, 0, jsRandom(10, 30))>>
 	<<set $activeSlave.anus = 2>>
 	<<set $activeSlave.weight = 0>>
 	<<set $activeSlave.earPiercing = 1>>
@@ -668,8 +667,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.career = "a slave">>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(40,60)>>
-	<<run eyeSurgery($activeSlave, "both", "blur")>>
+	<<run eyeSurgery($activeSlave, "both", "blur"), setHealth($activeSlave, jsRandom(40, 60), 0, 0, 0, jsRandom(10, 30))>>
 	<<set $activeSlave.custom.desc = "$His eyes are unsettling; though $his irises are a pale grey color, in some lights the whole eye takes on a red cast.">>
 
 <<case "d old-timer">>
@@ -695,7 +693,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.faceShape = "exotic">>
 	<<set $activeSlave.devotion = random(25,45)>>
 	<<set $activeSlave.trust = random(0,15)>>
-	<<set $activeSlave.health = random(20,40)>>
+	<<run setHealth($activeSlave, jsRandom(20, 40), undefined, jsRandom(5, 10), undefined, jsRandom(30, 70))>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.dick = 1>>
 	<<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>>
@@ -747,7 +745,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.faceShape = "cute">>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(-80,-40)>>
+	<<run setHealth($activeSlave, jsRandom(-80, -40), 0, 0, 0, jsRandom(30, 70))>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.weight = 0>>
 	<<set $activeSlave.earPiercing = 1>>
@@ -778,7 +776,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.faceShape = "masculine">>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(60,80)>>
+	<<run setHealth($activeSlave, jsRandom(60, 80), 0, 0, 0, jsRandom(30, 70))>>
 	<<set $activeSlave.anus = 0>>
 	<<set $activeSlave.weight = 0>>
 	<<set $activeSlave.skill.oral = 0>>
@@ -804,7 +802,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.height += 10>>
 	<<set $activeSlave.devotion = random(75,85)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = 100>>
+	<<run setHealth($activeSlave, 100, 0, 0, 0, jsRandom(0, 20))>>
 	<<set $activeSlave.anus = 0>>
 	<<set $activeSlave.dick = 2>>
 	<<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>>
@@ -837,7 +835,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.voice = 0>>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(-80,-60)>>
+	<<run setHealth($activeSlave, jsRandom(-80, -60), undefined, undefined, undefined, jsRandom(40, 90))>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.weight = -20>>
 	<<set $activeSlave.nipplesPiercing = 2>>
@@ -889,7 +887,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres
 	<<set $activeSlave.faceShape = either("androgynous", "masculine")>>
 	<<set $activeSlave.devotion = random(-90,-80)>>
 	<<set $activeSlave.trust = random(-45,-25)>>
-	<<set $activeSlave.health = random(-20,20)>>
+	<<run setHealth($activeSlave, jsRandom(-45, -25), 0, 0, 0, jsRandom(20, 60))>>
 	<<set $activeSlave.anus = 2>>
 	<<set $activeSlave.weight = 20>>
 	<<set $activeSlave.earPiercing = 1>>
diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw
index ba085ea244c485e3e13d7860880a7f8dd8dd30b6..296957e3b63aecd1e8d1f5bca7e43b56f11ac1ad 100644
--- a/src/uncategorized/ptWorkaround.tw
+++ b/src/uncategorized/ptWorkaround.tw
@@ -96,9 +96,9 @@
 			<<set $activeSlave.kindness = 1>>
 		<</if>>
 	<</if>>
-	<<if ($activeSlave.health < 100)>>
+	<<if ($activeSlave.health.condition < 100)>>
 		Your close and expert attention improves $his health in a way drug treatment or mere medical intervention cannot. @@.green;$His health has improved.@@
-		<<set $activeSlave.health = $activeSlave.health+10>>
+		<<run improveCondition($activeSlave, 10)>>
 	<</if>>
 	<<if (($activeSlave.anus == 3) || ($activeSlave.vagina == 3)) && $activeSlave.geneMods.rapidCellGrowth != 1>>
 		$activeSlave.slaveName is a veteran sex slave and has seen hard use. Tightening up a slave is difficult, but with close supervision and attention it can be done. You and your other slaves carefully apply injections, creams, and massage, and $his other work is carefully managed to reduce wear and tear.
@@ -461,7 +461,8 @@
 	<<set $activeSlave.training = 0>>
 
 <<case "harshly break her will">>
-	<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 10, $activeSlave.health-->>
+	<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 10>>
+	<<run healthDamage($activeSlave, 1)>>
 	<<if ($activeSlave.fetish == "mindbroken")>>
 		<<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>>
 		$activeSlave.slaveName's mind is broken. $He is a boring slave to torture, though $his body will still occasionally react to intense pain. No matter what you try, nothing really reaches $his destroyed soul. The agonies do @@.red;affect $his health, leaving $him with a $activeSlave.minorInjury.@@
diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw
index 6565ff97e30d75e6cd77be126196364f66aae75c..d1d241cf116203ea3564cbdb904d380034d97744 100644
--- a/src/uncategorized/randomNonindividualEvent.tw
+++ b/src/uncategorized/randomNonindividualEvent.tw
@@ -470,7 +470,7 @@
 
 	<</if>>
 
-	<<if ($Milkmaid != 0) && ($DairyiIDs.length >= 5) && ($Milkmaid.health >= 70)>>
+	<<if ($Milkmaid != 0) && ($DairyiIDs.length >= 5) && ($Milkmaid.health.condition >= 70)>>
 		<<if ($Milkmaid.muscles > 5)>>
 			<<set $PESSevent.push("tired milkmaid")>>
 		<</if>>
diff --git a/src/uncategorized/reAWOL.tw b/src/uncategorized/reAWOL.tw
index 70a21fbc1f5a6662836276476e195b2b21837478..7df1e8f5408603681260401f611d62b8b9b1e902 100644
--- a/src/uncategorized/reAWOL.tw
+++ b/src/uncategorized/reAWOL.tw
@@ -25,7 +25,7 @@
 <<set $activeSlave.career = "a soldier">>
 <<set $activeSlave.devotion = random(-75,-60)>>
 <<set $activeSlave.trust = random(-15,0)>>
-<<set $activeSlave.health = random(60,80)>>
+<<run setHealth($activeSlave, jsRandom(60, 80))>>
 <<set $activeSlave.muscles = 50>>
 <<set $activeSlave.weight = random(-10,10)>>
 <<run eyeSurgery($activeSlave, "both", "normal")>>
diff --git a/src/uncategorized/reBoomerang.tw b/src/uncategorized/reBoomerang.tw
index d568e9d8675c4b58dc5aa35a57c817e137c51a23..50bed2c7624ae2f193b8f13002804dc98d87b6b5 100644
--- a/src/uncategorized/reBoomerang.tw
+++ b/src/uncategorized/reBoomerang.tw
@@ -19,7 +19,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against
 "Plea<<s>>e take me back," $he whispers, not wanting to draw the attention of passersby, and knowing that $his faint words will be picked up and amplified for you.
 
 <<set $activeSlave.collar = "none", $activeSlave.choosesOwnClothes = 0, $activeSlave.clothes = "no clothing", $activeSlave.buttplug = "none", $activeSlave.vaginalAccessory = "none", $activeSlave.dickAccessory = "none", $activeSlave.chastityAnus = 0, $activeSlave.chastityPenis = 0, $activeSlave.chastityVagina = 0>>
-<<set $activeSlave.health = random(-40,-25)>>
+<<run setHealth($activeSlave, jsRandom(-40, -25), $activeSlave.health.shortDamage + jsRandom(0, 10), $activeSlave.health.longDamage + jsRandom(0, 10))>>
 
 /* ------------------ pregnancy setup start here----------------- */
 
@@ -146,7 +146,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against
 <<case "pain fetishist">>
 	"They whip me. A-actually," $he sniffles, "I'm glad when they whip me b-becau<<s>>e e-everything el<<s>>e they d-do is w-wor<<s>>e. The only break I get i-i<<s>> when I'm hurt bad and th-they have to f-fi<<x>> me." After all, you did sell $him into a life as a pain slave.
 	<<set $activeSlave.behavioralFlaw = "odd", $activeSlave.sexualFlaw = "apathetic">>
-	<<set $activeSlave.health = random(-85,-75)>>
+	<<run setHealth($activeSlave, jsRandom(-50, -30), $activeSlave.health.shortDamage + normalRandInt(20, 4), $activeSlave.health.longDamage + normalRandInt(15, 3))>>
 <<case "sadism fetishist">>
 	"I-it'<<s>> t-too much." $He shudders. You sold $him to a sadist who planned to use $him to abuse other slaves. "I c-can't d-do it anymore. I u<<s>>ed to fanta<<s>>i<<z>>e about d-doing h-horrible thing<<s>>, but, but, the <<s>>creaming." $He squeezes $his eyes shut. "If I don't do it I'll h-have it d-done t-to me."
 	<<set $activeSlave.behavioralFlaw = "odd", $activeSlave.sexualFlaw = "apathetic">>
@@ -329,7 +329,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against
 <<case "etiquette coach">>
 	"The etiquette t-trainer I wa<<s>> <<s>>old to wa<<s>> an e<<x>>cellent teacher indeed," $he <<say>>s with a grimace, "H-however, I find that he had <<s>>ome rather old-f-fa<<sh>>ioned view<<s>> on educational method<<s>>, to be quite b-blunt." You look $him over; $he has numerous caning marks all over $his body, and appears to have been starved.
 	<<set $activeSlave.weight = random(-80, -70)>>
-	<<set $activeSlave.health = random(-70, -60)>>
+	<<run setHealth($activeSlave, jsRandom(-60, -40), $activeSlave.health.shortDamage + normalRandInt(10, 3), $activeSlave.health.longDamage + normalRandInt(10, 3))>>
 	<<set $activeSlave.behavioralFlaw = "odd">>
 	<<set $activeSlave.sexualFlaw = either("idealistic", "repressed", "self hating", "shamefast")>>
 <<case "sex double">>
diff --git a/src/uncategorized/reBrothelFunction.tw b/src/uncategorized/reBrothelFunction.tw
index abe071bb044de76dd023641f465d59c966f2674e..d9231d2c74902a9e545b06ac612bcd74a3983547 100644
--- a/src/uncategorized/reBrothelFunction.tw
+++ b/src/uncategorized/reBrothelFunction.tw
@@ -58,7 +58,7 @@ The last of these requests comes in the form of a letter, stamped with the heral
 	Though he was but a boy yesterday, none can say that this newly made man entered his manhood with anything less than a sterling display of enthusiasm and virility, though he is somewhat lacking in general technique. Nevertheless, any man able to fuck his way through an entire brothel of sex slaves and back again is clearly capable of bearing the mantle of citizenry in $arcologies[0].name. The story of a boy entering manhood in such a spectacular manner spreads rapidly and reflects well in the court of @@.green;public opinion,@@ with many citizens recalling their own passage past the age of majority. However, a lifetime of indulgence and spoiling have rendered this new citizen unable to understand the concept of being refused — not that your slaves could refuse him, in any case. His rough treatment has left your poor slave whores @@.red;battered@@ by his brutally selfish lovemaking.
 	<<for $i = 0; $i < $slaves.length; $i++>>
 		<<if $slaves[$i].assignment == "work in the brothel">>
-			<<set $slaves[$i].health -= 5>>
+			<<run healthDamage($slaves[$i], 5)>>
 			<<if canDoVaginal($slaves[$i]) && canDoAnal($slaves[$i])>>
 				<<set $slaves[$i].counter.vaginal += 1>>
 				<<set $vaginalTotal += 1>>
diff --git a/src/uncategorized/reBusyBrothel.tw b/src/uncategorized/reBusyBrothel.tw
index a5d6ac95388e41d30b27380c0495b12f4eea46ed..ca2e1c47b183a394133e834356a26657ce5588dd 100644
--- a/src/uncategorized/reBusyBrothel.tw
+++ b/src/uncategorized/reBusyBrothel.tw
@@ -43,7 +43,7 @@ Of course, $brothelName is the best establishment of its kind in the arcology. C
 	The news that sex will be free at the brothel travels like wildfire. Security measures are necessary to control the throng that spends the entire day entering and leaving the brothel, though as the day goes on the crowds thin. By midmorning, all the holes on offer are so fucked out that only those who fetishize that sort of thing stick around. The brothel is a real seminal sewer by noon, and it smells like it. Nevertheless, free sex is a short route to @@.green;public approval,@@ though you do miss a morning's fees. The poor slave whores are @@.red;fairly battered@@ by so much wear and tear in so little time.
 	<<for $i = 0; $i < $BrothiIDs.length; $i++>>
 		<<set _rebb = $slaveIndices[$BrothiIDs[$i]]>>
-		<<set $slaves[_rebb].health -= 10>>
+		<<run healthDamage($slaves[_rebb], 10)>>
 		<<if canDoVaginal($slaves[_rebb])>>
 			<<set $slaves[_rebb].counter.vaginal += 5>>
 			<<set $vaginalTotal += 5>>
diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw
index 080e2b1a6ff9772a06169ee9b1ba45a022c1b86f..3437f240c7b53e0187999fe4ec1b8f8401eacbbe 100644
--- a/src/uncategorized/reFSAcquisition.tw
+++ b/src/uncategorized/reFSAcquisition.tw
@@ -32,7 +32,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave("XX")>>
 <<set $activeSlave.origin = "$He offered $himself for voluntary enslavement, choosing you as $his new owner because you treat lactating girls well.">>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(5,15)>>
 <<set $activeSlave.preg = random(15,30)>>
@@ -57,7 +57,7 @@
 <<set $activeSlave = GenerateNewSlave("XX")>>
 <<set $activeSlave.origin = "$He offered $himself for voluntary enslavement, hoping to become a valuable source of milk for you.">>
 <<set $activeSlave.age = random(32,$retirementAge-2)>>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(5,15)>>
 <<set $activeSlave.lactation = 1>>
@@ -111,7 +111,7 @@
 <<set $fixedRace = $arcologies[0].FSSubjugationistRace>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He was beaten, sexually assaulted, and finally enslaved for being stupid enough to visit an arcology that doesn't like $his kind.">>
-<<set $activeSlave.health = random(-80,-60)>>
+<<run setHealth($activeSlave, jsRandom(-50, -20), jsRandom(20, 30), jsRandom(0, 10), Math.max(normalRandInt(1, 0.5), 0), jsRandom(40, 90))>>
 <<set $activeSlave.trust = random(-45,-25)>>
 <<set $activeSlave.devotion = random(-75,-65)>>
 <<set $activeSlave.anus = random(1,2)>>
@@ -126,7 +126,7 @@
 <<set $fixedRace = $arcologies[0].FSSubjugationistRace>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He came to your arcology to be enslaved out of a sense of self-loathing for $his kind.">>
-<<set $activeSlave.health = random(-80,-60)>>
+<<run setHealth($activeSlave, jsRandom(-70, -60)>>
 <<set $activeSlave.trust = random(-25,-15)>>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.anus = random(1,2)>>
@@ -139,7 +139,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave("XY")>>
 <<set $activeSlave.origin = "$He offered $himself for voluntary enslavement to escape life in an area that disapproved of $his sexual tendencies.">>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 <<set $activeSlave.devotion = random(15,20)>>
 <<set $activeSlave.trust = random(0,10)>>
 <<set $activeSlave.anus = random(1,2)>>
@@ -156,7 +156,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave("XY")>>
 <<set $activeSlave.origin = "$He offered $himself for voluntary enslavement after a lifetime as an outcast due to $his sexual tendencies.">>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 <<set $activeSlave.devotion = random(15,20)>>
 <<set $activeSlave.trust = random(0,10)>>
 <<set $activeSlave.anus = random(1,2)>>
@@ -174,7 +174,7 @@
 <<set $activeSlave = GenerateNewSlave("XX")>>
 <<set $activeSlave.origin = "$He was sold to you as a way of disposing of an inconveniently pregnant young $woman.">>
 <<set $activeSlave.career = setup.youngCareers.random()>>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-45,-25)>>
 <<set $activeSlave.preg = random(20,40)>>
@@ -197,7 +197,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave("XX")>>
 <<set $activeSlave.origin = "$He was raped and impregnated, then sold to you as a way of disposing of an inconveniently pregnant mother.">>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-45,-25)>>
 <<set $activeSlave.preg = random(20,40)>>
@@ -218,7 +218,7 @@
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He was voluntarily enslaved after $he decided that your paternalistic arcology was a better place for advancement than the old world.">>
 <<set $activeSlave.career = setup.educatedCareers.random()>>
-<<set $activeSlave.health = random(40,60)>>
+<<run setHealth($activeSlave, jsRandom(40, 60))>>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.intelligence = random(51,95)>>
@@ -236,7 +236,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He was voluntarily enslaved after $he decided that your paternalistic arcology was a better place to live than the old world.">>
-<<set $activeSlave.health = random(40,60)>>
+<<run setHealth($activeSlave, jsRandom(40, 60))>>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $slaveCost = slaveCost($activeSlave)>>
@@ -262,7 +262,7 @@
 <<set $activeSlave.faceImplant += 40>>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-45,-25)>>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40))>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.vagina = 2>>
 <<set $activeSlave.weight = 0>>
@@ -302,7 +302,7 @@
 <<set $activeSlave.face = Math.clamp($activeSlave.face+20,-100,100)>>
 <<set $activeSlave.devotion = random(-75,-55)>>
 <<set $activeSlave.trust = random(-65,-45)>>
-<<set $activeSlave.health = random(-40,20)>>
+<<run setHealth($activeSlave, jsRandom(-40, 20), normalRandInt(10, 3), normalRandInt(10, 3), undefined, jsRandom(30, 80))>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.vagina = 2>>
 <<set $activeSlave.weight = 0>>
@@ -331,7 +331,7 @@
 <<set $activeSlave.face = Math.clamp($activeSlave.face+20,-100,100)>>
 <<set $activeSlave.devotion = random(-100,-50)>>
 <<set $activeSlave.trust = random(-100,-80)>>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 <<set $activeSlave.weight = random(-10,90)>>
 <<set $activeSlave.behavioralFlaw = "odd">>
 <<set $activeSlave.canRecruit = 0>>
@@ -357,7 +357,7 @@
 <<set $activeSlave.intelligence = -100>>
 <<set $activeSlave.devotion = random(20,40)>>
 <<set $activeSlave.trust = random(0,50)>>
-<<set $activeSlave.health = random(-60,-20)>>
+<<run setHealth($activeSlave, jsRandom(-60, -40))>>
 <<set $activeSlave.weight = random(-40,0)>>
 <<set $activeSlave.energy = 100>>
 <<set $activeSlave.attrXX = 100>>
@@ -384,7 +384,7 @@
 <<set $activeSlave.trust = random(25,65)>>
 <<set $activeSlave.intelligence = random(75,100)>>
 <<set $activeSlave.intelligenceImplant = 15>>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40))>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.vagina = 2>>
 <<set $activeSlave.weight = random(-40,10)>>
@@ -419,7 +419,7 @@
 <<set $activeSlave.trust = random(60,80)>>
 <<set $activeSlave.intelligence = 100>>
 <<set $activeSlave.intelligenceImplant = 30>>
-<<set $activeSlave.health = random(40,60)>>
+<<run setHealth($activeSlave, jsRandom(40, 60))>>
 <<set $activeSlave.anus = 2>>
 <<if $activeSlave.vagina >= 0>>
 	<<set $activeSlave.vagina = 2>>
@@ -449,7 +449,7 @@
 <</if>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He offered $himself for voluntary enslavement to get to an arcology in which implants are uncommon, since $he has a fear of surgery.">>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(-15,15)>>
 <<set $slaveCost = slaveCost($activeSlave)>>
@@ -466,7 +466,7 @@
 <<set $activeSlave.origin = "$He offered $himself for voluntary enslavement after graduating from a slave school and passing $his majority, because $he heard you treat slaves without implants well.">>
 <<set $activeSlave.age = random(18,24)>>
 <<set $activeSlave.career = "a student">>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20), 0, 0, 0, jsRandom(10, 30))>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(-15,15)>>
 <<set $slaveCost = slaveCost($activeSlave)>>
@@ -479,7 +479,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He came to you for enslavement out of desperation, terrified that $he was about to be enslaved into a worse situation by $his abusive family.">>
-<<set $activeSlave.health = random(-40,30)>>
+<<run setHealth($activeSlave, jsRandom(-40, 30))>>
 <<set $activeSlave.devotion = random(10,15)>>
 <<set $activeSlave.trust = random(-55,-75)>>
 /*
@@ -503,7 +503,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He came to you for enslavement out of desperation, terrified that $he was about to be asked to do something with $his life by $his family.">>
-<<set $activeSlave.health = random(-40,30)>>
+<<run setHealth($activeSlave, jsRandom(-40, 30), 0, 0, 0, jsRandom(20, 40))>>
 <<set $activeSlave.devotion = random(10,15)>>
 <<set $activeSlave.trust = random(-55,-75)>>
 <<set $activeSlave.intelligence = random(-95,-51)>>
@@ -525,7 +525,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He offered $himself to you for enslavement after deciding you were $his best hope of a good life as a slave.">>
-<<set $activeSlave.health = random(40,60)>>
+<<run setHealth($activeSlave, jsRandom(40, 60))>>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.muscles = 20>>
@@ -563,7 +563,7 @@
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.career = setup.educatedCareers.random()>>
-<<set $activeSlave.health = random(-60,-50)>>
+<<run setHealth($activeSlave, jsRandom(-60, -50))>>
 <<set $activeSlave.intelligence = random(51,95)>>
 <<set $activeSlave.intelligenceImplant = 15>>
 <<set $activeSlave.teeth = "normal">>
@@ -623,7 +623,7 @@
 <<set $activeSlave.faceShape = "sensual">>
 <<set $activeSlave.devotion = random(40,65)>>
 <<set $activeSlave.trust = random(45,65)>>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40))>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.vagina = 2>>
 <<set $activeSlave.weight = random(-20,20)>>
@@ -693,7 +693,7 @@
 <<set $activeSlave.faceImplant += 40>>
 <<set $activeSlave.devotion = random(-100,-75)>>
 <<set $activeSlave.trust = random(-45,-25)>>
-<<set $activeSlave.health = random(-80,-70)>>
+<<run setHealth($activeSlave, jsRandom(-50, -20), normalRandInt(20, 4), normalRandInt(10, 3))>>
 <<set $activeSlave.pubicHStyle = "waxed">>
 <<set $activeSlave.underArmHStyle = "waxed">>
 <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "odd")>>
@@ -722,7 +722,7 @@
 <<set $activeSlave.faceImplant += 40>>
 <<set $activeSlave.devotion = random(-100,-75)>>
 <<set $activeSlave.trust = random(-45,-25)>>
-<<set $activeSlave.health = random(-80,-70)>>
+<<run setHealth($activeSlave, jsRandom(-60, -40), normalRandInt(10, 3), normalRandInt(10, 3))>>
 <<set $activeSlave.pubicHStyle = "waxed">>
 <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "odd")>>
 <<set $slaveCost = slaveCost($activeSlave)>>
@@ -746,7 +746,7 @@
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.career = setup.educatedCareers.random()>>
-<<set $activeSlave.health = random(-60,-50)>>
+<<run setHealth($activeSlave, jsRandom(-60, -50))>>
 <<set $activeSlave.intelligence = random(51,95)>>
 <<set $activeSlave.intelligenceImplant = 15>>
 <<set $activeSlave.teeth = "normal">>
@@ -771,7 +771,7 @@
 <<set $activeSlave.lips = 0>>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(-60,-50)>>
+<<run setHealth($activeSlave, jsRandom(-60, -50))>>
 <<if $activeSlave.physicalAge >= 12>>
 	<<set $activeSlave.teeth = "normal">>
 <</if>>
@@ -794,7 +794,7 @@
 <<set $activeSlave.lips = 35>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(-15,15)>>
-<<set $activeSlave.health = random(-60,-50)>>
+<<run setHealth($activeSlave, jsRandom(-40, -30), undefined, normalRandInt(10, 3), Math.max(normalRandInt(1, 0.5), 0))>>
 <<set $activeSlave.intelligence = random(0,90)>>
 <<set $activeSlave.pubicHStyle = "waxed">>
 <<set $activeSlave.underArmHStyle = "waxed">>
@@ -820,7 +820,7 @@
 <<set $activeSlave.lips = 35>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(-15,15)>>
-<<set $activeSlave.health = random(-60,-50)>>
+<<run setHealth($activeSlave, jsRandom(-60, -50))>>
 <<set $activeSlave.intelligence = random(0,90)>>
 <<set $activeSlave.pubicHStyle = "waxed">>
 <<set $slaveCost = slaveCost($activeSlave)>>
@@ -834,7 +834,7 @@
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He was voluntarily enslaved after $he decided that your arcology was the best place for $him to get the steroids that $he'd allowed to define $his life.">>
 <<set $activeSlave.career = setup.uneducatedCareers.random()>>
-<<set $activeSlave.health = random(20,60)>>
+<<run setHealth($activeSlave, jsRandom(20, 60))>>
 <<set $activeSlave.muscles = 100>>
 <<set $activeSlave.addict = 1>>
 <<set $activeSlave.devotion = random(0,15)>>
@@ -851,7 +851,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He was voluntarily enslaved after $he decided that your arcology was the best place for $him to get the steroids that $he'd allowed to define $his life.">>
-<<set $activeSlave.health = random(20,60)>>
+<<run setHealth($activeSlave, jsRandom(20, 60))>>
 <<set $activeSlave.muscles = 100>>
 <<set $activeSlave.addict = 1>>
 <<set $activeSlave.devotion = random(0,15)>>
@@ -867,7 +867,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He offered $himself for enslavement out of religious conviction.">>
-<<set $activeSlave.health = random(10,30)>>
+<<run setHealth($activeSlave, jsRandom(10, 30))>>
 <<set $activeSlave.devotion = -100>>
 <<set $activeSlave.trust = -100>>
 <<set $activeSlave.behavioralFlaw = "devout">>
@@ -882,7 +882,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He was offered to you by a group of Chattel Religionists eager to be rid of $his blasphemous old world beliefs.">>
-<<set $activeSlave.health = random(-10,10)>>
+<<run setHealth($activeSlave, jsRandom(-10, 10))>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(60,75)>>
 <<if $activeSlave.anus > 0>>
@@ -914,7 +914,7 @@
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He sold $himself to you to escape those who condemned $his lifestyle.">>
 <<set $activeSlave.career = "a shut-in">>
-<<set $activeSlave.health = random(-40,20)>>
+<<run setHealth($activeSlave, jsRandom(-40, 20))>>
 <<set $activeSlave.devotion = random(35,45)>>
 <<set $activeSlave.trust = random(20,25)>>
 <<if $activeSlave.vagina > -1>>
@@ -954,7 +954,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He offered $himself for enslavement in hope of being less dull.">>
-<<set $activeSlave.health = random(0,10)>>
+<<run setHealth($activeSlave, jsRandom(0, 10))>>
 <<set $activeSlave.devotion = random(0,15)>>
 <<set $activeSlave.trust = random(10,25)>>
 <<set $activeSlave.behavioralFlaw = "none">>
@@ -986,7 +986,7 @@
 <<set $activeSlave = GenerateNewSlave("XX")>>
 <<set $activeSlave.origin = "$He sold $himself to you in the hopes that $his body would help keep humanity alive.">>
 <<set $activeSlave.career = setup.youngCareers.random()>>
-<<set $activeSlave.health = random(40,60)>>
+<<run setHealth($activeSlave, jsRandom(40, 60))>>
 <<set $activeSlave.devotion = random(25,35)>>
 <<set $activeSlave.trust = random(20,25)>>
 <<set $activeSlave.vagina = 0>>
@@ -1011,7 +1011,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave("XX")>>
 <<set $activeSlave.origin = "$He sold $himself to you in the hope of someday bearing children.">>
-<<set $activeSlave.health = random(40,60)>>
+<<run setHealth($activeSlave, jsRandom(40, 60))>>
 <<set $activeSlave.devotion = random(25,35)>>
 <<set $activeSlave.trust = random(20,25)>>
 <<set $activeSlave.vagina = 2>>
@@ -1037,7 +1037,7 @@
 <<set $activeSlave.career = "a student from a private school">>
 <<set $activeSlave.intelligence = random(16,95)>>
 <<set $activeSlave.intelligenceImplant = 30>>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.devotion = random(-100,-90)>>
 <<set $activeSlave.trust = random(-100,-90)>>
 <<set $activeSlave.vagina = 0>>
@@ -1054,7 +1054,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He considered $himself ugly and wished to stay out of your gene pool.">>
-<<set $activeSlave.health = random(0,60)>>
+<<run setHealth($activeSlave, jsRandom(0, 60))>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.anus = random(1,2)>>
@@ -1080,7 +1080,7 @@
 <<set $activeSlave.devotion = random(-15,-5)>>
 <<set $activeSlave.trust = random(5,15)>>
 <<set $activeSlave.career = "a student">>
-<<set $activeSlave.health = random(-10,10)>>
+<<run setHealth($activeSlave, jsRandom(-10, 10))>>
 <<set $activeSlave.face = random(-20,0)>>
 <<set $activeSlave.anus = 0>>
 <<if $activeSlave.vagina != -1>><<set $activeSlave.vagina = 0>><</if>>
@@ -1106,7 +1106,7 @@
 <<set $activeSlave.devotion = random(25,50)>>
 <<set $activeSlave.trust = random(25,50)>>
 <<set $activeSlave.career = "a merchant">>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 <<set $activeSlave.face = random(-20,0)>>
 <<set $activeSlave.anus = 0>>
 <<if $activeSlave.vagina != -1>><<set $activeSlave.vagina = 0>><</if>>
@@ -1140,7 +1140,7 @@
 <<set $activeSlave.devotion = random(-15,-5)>>
 <<set $activeSlave.trust = random(5,15)>>
 <<set $activeSlave.career = "a student">>
-<<set $activeSlave.health = random(-20,0)>>
+<<run setHealth($activeSlave, jsRandom(-20, 0))>>
 <<set $activeSlave.face = random(-60,10)>>
 <<set $activeSlave.weight = random(20,100)>>
 <<set $activeSlave.vagina = 0>>
@@ -1170,7 +1170,7 @@
 <<set $activeSlave.devotion = random(30,35)>>
 <<set $activeSlave.trust = random(30,35)>>
 <<set $activeSlave.career = "a professor">>
-<<set $activeSlave.health = random(10,30)>>
+<<run setHealth($activeSlave, jsRandom(10, 30))>>
 <<set $activeSlave.face = random(15,100)>>
 <<set $activeSlave.skill.oral = 35>>
 <<set $activeSlave.skill.anal = 15>>
@@ -1195,7 +1195,7 @@
 <<set $activeSlave.devotion = random(30,35)>>
 <<set $activeSlave.trust = random(30,35)>>
 <<set $activeSlave.career = "a businesswoman">>
-<<set $activeSlave.health = random(10,30)>>
+<<run setHealth($activeSlave, jsRandom(10, 30))>>
 <<set $activeSlave.face = 15>>
 <<set $activeSlave.skill.oral = random(15,40)>>
 <<set $activeSlave.skill.anal = random(15,40)>>
diff --git a/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw b/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw
index fc7e24fbe63bf364b3e02a704bfac04e9fabdddb..796339a312cbcc304fc6002ab4e7b23f454e2069 100644
--- a/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw
+++ b/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw
@@ -17,7 +17,7 @@
 <<set $activeSlave.visualAge = $activeSlave.actualAge>>
 <<set $activeSlave.physicalAge = $activeSlave.actualAge>>
 <<set $activeSlave.ovaryAge = $activeSlave.actualAge>>
-<<set $activeSlave.health = random(-20,0)>>
+<<run setHealth($activeSlave, jsRandom(-20, 0))>>
 <<set $slaveCost = slaveCost($activeSlave)>>
 <<set $slaveCost -= 3000>>
 <<if $familyTesting == 1>>
diff --git a/src/uncategorized/reFormerAbolitionist.tw b/src/uncategorized/reFormerAbolitionist.tw
index 42f0fff5aed6487b6959c7af5f0f3ee021bf9b56..27c25413c5f116cc732ac7a9a02ae028f030d00e 100644
--- a/src/uncategorized/reFormerAbolitionist.tw
+++ b/src/uncategorized/reFormerAbolitionist.tw
@@ -32,7 +32,7 @@ This is a rare opportunity. While the mob is quick to pat itself on the back for
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		You fasten $activeSlave.slaveName in a kneeling position in the center of your club, secured by shackles around $his <<if hasAnyArms($activeSlave)>>wrist<<if hasBothArms($activeSlave)>>s<</if>><<if hasAnyLegs($activeSlave)>> and <</if>><</if>><<if hasAnyLegs($activeSlave)>>ankle<<if hasBothLegs($activeSlave)>>s<</if>><</if>> — purely decorative, since $he's so devoted $he'd perform $his role in this if you just hinted it would please you if $he did. In front of $him, you place a sign: "Fuck the mouth that preached abolitionism, <<print cashFormat(5)>>." In a few moments, the morning crowd will begin to arrive, and you have no doubt that $activeSlave.slaveName will be very, very popular. And $he is. Even with an extra dose of curatives and a check-up every night, the strain of a week of dicks and a diet of cum @@.red;has taken a toll on $his health.@@ But even after you pay to have the area that $activeSlave.slaveName worked thoroughly cleaned, you have made @@.yellowgreen;a tidy profit.@@
-		<<set $activeSlave.health -= 10>>
+		<<run healthDamage($activeSlave, 10)>>
 		<<set $activeSlave.counter.oral += random(410,440)>>
 		<<run cashX(2000, "event", $activeSlave)>>
 	<</replace>>
diff --git a/src/uncategorized/reMalefactor.tw b/src/uncategorized/reMalefactor.tw
index 5889d4ccc9f87472fc823e4fca387c69e09a1fb8..dcb7c149b96be6e9524ae0aa5eda4c7554311f61 100644
--- a/src/uncategorized/reMalefactor.tw
+++ b/src/uncategorized/reMalefactor.tw
@@ -12,7 +12,7 @@
 <<set $activeSlave.devotion = random(-75,-60)>>
 <<set $activeSlave.trust = random(-15,0)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(-40,-20)>>
+<<run setHealth($activeSlave, jsRandom(-40, -20))>>
 <<set $activeSlave.addict = 30>>
 <<set $activeSlave.anus = 3>>
 <<if $activeSlave.dick == 0>>
@@ -41,7 +41,7 @@
 <<set $activeSlave.devotion = random(-75,-60)>>
 <<set $activeSlave.trust = random(-15,0)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(-80,-70)>>
+<<run setHealth($activeSlave, jsRandom(-80, -70))>>
 <<set $activeSlave.heels = 1>>
 <<set $activeSlave.boobs += 100*random(12,32)>>
 <<set $activeSlave.butt += random(2,4)>>
@@ -74,7 +74,7 @@
 <<set $activeSlave.devotion = random(-75,-50)>>
 <<set $activeSlave.trust = random(-75,-60)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40))>>
 <<set $activeSlave.weight = random(40,80)>>
 <<set $activeSlave.accent = 3>>
 <<set $activeSlave.boobs += 200>>
@@ -106,7 +106,7 @@
 <<set $activeSlave.devotion = random(-15,0)>>
 <<set $activeSlave.trust = random(-75,-60)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(-80,-70)>>
+<<run setHealth($activeSlave, jsRandom(-80, -70))>>
 <<set $activeSlave.weight = -100>>
 <<set $activeSlave.accent = 3>>
 <<set $activeSlave.boobs = 0>>
@@ -154,7 +154,7 @@
 <<set $activeSlave.boobsImplant = 400>>
 <<set $activeSlave.butt += 2>>
 <<set $activeSlave.buttImplant = 2>>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40))>>
 <<set $activeSlave.sexualFlaw = "hates oral">>
 <<set $activeSlave.behavioralFlaw = "arrogant">>
 <<set $activeSlave.hStyle = "fashionable for a Free Cities businesswoman, up in a tight bun">>
@@ -175,7 +175,7 @@
 <<set $activeSlave.devotion = random(-75,-60)>>
 <<set $activeSlave.trust = random(-15,0)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(-40,-20)>>
+<<run setHealth($activeSlave, jsRandom(-40, -20))>>
 <<set $activeSlave.anus = 2>>
 <<if $activeSlave.dick == 0>>
 	<<set $activeSlave.balls = 0>>
@@ -217,7 +217,7 @@
 <<set $activeSlave.devotion = random(-75,-60)>>
 <<set $activeSlave.trust = random(-15,0)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.anus = 0>>
 <<set $activeSlave.balls = random(2,4)>>
 <<set $activeSlave.skill.oral = 0>>
@@ -257,7 +257,7 @@
 <<set $activeSlave.waist = random(-30,-10)>>
 <<set $activeSlave.boobs = random(4,5)*100>>
 <<set $activeSlave.boobShape = "perky">>
-<<set $activeSlave.health = random(-20,10)>>
+<<run setHealth($activeSlave, jsRandom(-20, 10))>>
 <<set $activeSlave.sexualFlaw = "hates penetration">>
 <<set $activeSlave.behavioralFlaw = "shamefast">>
 <<set $activeSlave.accent = 0>>
@@ -282,7 +282,7 @@
 <<set $activeSlave.skill.whoring = 0>>
 <<set $activeSlave.skill.combat = 1>>
 <<set $activeSlave.anus = 0>>
-<<set $activeSlave.health = random(60,80)>>
+<<run setHealth($activeSlave, jsRandom(60, 80))>>
 <<set $activeSlave.behavioralFlaw = "arrogant">>
 <<set $activeSlave.sexualFlaw = "hates men">>
 <<set $activeSlave.hStyle = "shaved into a mohawk">>
@@ -304,7 +304,7 @@
 <<set $activeSlave.devotion = random(-75,-50)>>
 <<set $activeSlave.trust = random(-75,-50)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(-40,-20)>>
+<<run setHealth($activeSlave, jsRandom(-40, -20))>>
 <<set $activeSlave.intelligence = random(51,95)>>
 <<set $activeSlave.intelligenceImplant = 15>>
 <<if $arcologies[0].FSSupremacistLawME == 1>>
@@ -411,7 +411,7 @@ $He is easily taken into custody and $his contraband confiscated once the jeerin
 			<</replace>>
 		<</link>>
 		<br><<link "Sentence $him to a day in the stocks, then enslave $him">>
-			<<set $activeSlave.health -= 10>>
+			<<run healthDamage($activeSlave, 10)>>
 			<<set $activeSlave.behavioralFlaw = "odd">>
 			<<set $activeSlave.sexualFlaw = "hates penetration">>
 			<<set $activeSlave.anus = 2>>
@@ -521,7 +521,7 @@ $He is easily taken into custody and $his contraband confiscated once the jeerin
 		<</if>>
 		<<if $seeExtreme > 0>>
 			<br><<link "Punitively amputate $his limbs, and then enslave $him">>
-				<<set $activeSlave.health -= 20>>
+				<<run damageHealth($activeSlave, 20)>>
 				<<run removeLimbs($activeSlave, "all")>>
 				<<set $activeSlave.behavioralFlaw = "odd">>
 				<<run cashX(forceNeg($contractCost), "slaveTransfer", $activeSlave)>>
@@ -554,7 +554,7 @@ $He is easily taken into custody and $his contraband confiscated once the jeerin
 			<</link>>
 			<<if $malefactor == "rapist" && $activeSlave.balls > 0>>
 				<br><<link "Enslave the criminal and geld $him">>
-					<<set $activeSlave.health -= 20>>
+					<<run healthDamage($activeSlave, 20)>>
 					<<set $activeSlave.balls = 0>>
 					<<set $activeSlave.devotion -= 25>>
 					<<set $activeSlave.trust -= 25>>
diff --git a/src/uncategorized/reMilfTourist.tw b/src/uncategorized/reMilfTourist.tw
index b7de7607952533646937e752a6d937c4f9ea36cf..58e8912ab93dc4eb7a64e72a31d3068efad5514e 100644
--- a/src/uncategorized/reMilfTourist.tw
+++ b/src/uncategorized/reMilfTourist.tw
@@ -20,7 +20,7 @@
 <<set $activeSlave.origin = "$He came to your arcology as a tourist and found $himself enslaved.">>
 <<set $activeSlave.devotion = random(-70,-55)>>
 <<set $activeSlave.trust = random(-45,-25)>>
-<<set $activeSlave.health = random(10,20)>>
+<<run setHealth($activeSlave, jsRandom(10, 20))>>
 <<set $activeSlave.vagina++>>
 <<set $activeSlave.hips = 2>>
 <<set $activeSlave.butt = random(4,6)>>
diff --git a/src/uncategorized/rePokerNight.tw b/src/uncategorized/rePokerNight.tw
index a9eeda33d63eddf2ddc5543d4f1266aae3715b8e..0df0e3826b1b9eb3fbd8f50047b38baa8a1a5f1c 100644
--- a/src/uncategorized/rePokerNight.tw
+++ b/src/uncategorized/rePokerNight.tw
@@ -75,7 +75,7 @@ On a particularly lackadaisical evening, you find yourself alerted to a message
 					<<set $activeSlave.indenture = 52>>
 					<<set $activeSlave.devotion = random(25,40)>>
 					<<set $activeSlave.trust = random(35,45)>>
-					<<set $activeSlave.health = random(60,80)>>
+					<<run setHealth($activeSlave, jsRandom(60, 80), 0, undefined, 0)>>
 					<<set $activeSlave.muscles = 50>>
 					<<if $activeSlave.weight > 130>>
 						<<set $activeSlave.weight -= 100>>
diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw
index c7cd0d3a5cc7f96849dac2736e9d662ee71a41ae..c6356381c7bebac3e61dfd64373437d19523e607 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -40,7 +40,7 @@
 <<set $activeSlave.career = "a party girl">>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.anus = 0>>
 <<set $activeSlave.vagina = 1>>
 <<set $activeSlave.skill.vaginal = 15>>
@@ -75,7 +75,7 @@
 <<set $activeSlave.career = "a party girl">>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.anus = 0>>
 <<set $activeSlave.skill.oral = 15>>
 <<set $activeSlave.skill.anal = 0>>
@@ -105,7 +105,7 @@
 <<set $activeSlave.career = "a prostitute">>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(-40,-20)>>
+<<run setHealth($activeSlave, jsRandom(-40, -20))>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.vagina = 2>>
 <<set $activeSlave.skill.vaginal = 35>>
@@ -202,7 +202,7 @@
 <<run SetBellySize($activeSlave)>>
 <<set $activeSlave.fetish = "none">>
 <<set $activeSlave.fetishKnown = 0>>
-<<set $activeSlave.health = random(-40,-20)>>
+<<run setHealth($activeSlave, jsRandom(-40, -20))>>
 
 <<case "blind homeless">>
 
@@ -238,7 +238,7 @@
 <<set $activeSlave.weight = -100>>
 <<set $activeSlave.fetish = "none">>
 <<set $activeSlave.fetishKnown = 0>>
-<<set $activeSlave.health = random(-60,-20)>>
+<<run setHealth($activeSlave, jsRandom(-60, -20))>>
 
 <<case "paternalist swan song">>
 
@@ -256,7 +256,7 @@
 <<set $activeSlave.career = "a musician">>
 <<set $activeSlave.devotion = random(30,100)>>
 <<set $activeSlave.trust = random(30,100)>>
-<<set $activeSlave.health = random(0,100)>>
+<<run setHealth($activeSlave, jsRandom(0, 100), 0, 0, 0, jsRandom(10, 30))>>
 <<set $activeSlave.anus = 0>>
 <<set $activeSlave.vagina = 1>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -298,7 +298,7 @@
 <<set $activeSlave.face = 15>>
 <<set $activeSlave.fetish = "none">>
 <<set $activeSlave.fetishKnown = 0>>
-<<set $activeSlave.health = random(-80,-60)>>
+<<run setHealth($activeSlave, jsRandom(-70, -60), normalRandInt(10, 3), normalRandInt(10, 3), Math.max(normalRandInt(1, 0.5), 0))>>
 
 <<case "tg addict">>
 
@@ -336,7 +336,7 @@
 <<set $activeSlave.career = "a slave">>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(50,60)>>
+<<run setHealth($activeSlave, jsRandom(50, 60))>>
 <<set $activeSlave.weight = 0>>
 <<set $activeSlave.lips = 35>>
 <<set $activeSlave.face = 15>>
@@ -367,7 +367,7 @@
 <<set $activeSlave.career = "a slave">>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(50,60)>>
+<<run setHealth($activeSlave, jsRandom(50, 60))>>
 <<set $activeSlave.weight = 0>>
 <<set $activeSlave.face = 15>>
 <<set $activeSlave.boobs = random(5,6)*100>>
@@ -404,7 +404,7 @@
 <<set $activeSlave.origin = "$He asked to be enslaved out of naïve infatuation with you.">>
 <<set $activeSlave.devotion = random(25,30)>>
 <<set $activeSlave.trust = random(-15,-10)>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.anus = 1>>
 <<set $activeSlave.skill.anal = 15>>
 <<set $activeSlave.skill.oral = 15>>
@@ -430,7 +430,7 @@
 <<set $activeSlave.origin = "$He asked to be enslaved in the hope you'd treat a fellow woman well.">>
 <<set $activeSlave.devotion = random(10,15)>>
 <<set $activeSlave.trust = random(-15,-10)>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.face = random(0,20)>>
 <<set $activeSlave.anus = 1>>
 <<set $activeSlave.skill.anal = 0>>
@@ -460,7 +460,7 @@
 <<set $activeSlave.origin = "$He asked to be enslaved since $he felt you were $his only hope of becoming a prettier woman.">>
 <<set $activeSlave.devotion = random(10,15)>>
 <<set $activeSlave.trust = random(-15,-10)>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.voice = 1>>
 <<set $activeSlave.dick = random(1,2)>>
 <<set $activeSlave.balls = random(1,2)>>
@@ -502,7 +502,7 @@
 <<set $activeSlave.origin = "$He got into debt for damaging someone's property during a student protest and you bought out $his debt.">>
 <<set $activeSlave.devotion = random(-25,0)>>
 <<set $activeSlave.trust = random(-20,-5)>>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40))>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = random(0,15)>>
 <<set $activeSlave.skill.anal = 0>>
@@ -538,7 +538,7 @@
 <<set $activeSlave.origin = "$He got into debt for damaging someone's property during a student protest and you bought out $his debt.">>
 <<set $activeSlave.devotion = random(-30,-5)>>
 <<set $activeSlave.trust = random(-25,-5)>>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40))>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.faceImplant = 15>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -577,7 +577,7 @@
 <<set $activeSlave.origin = "$He got into debt for damaging someone's property during a student protest and you bought out $his debt.">>
 <<set $activeSlave.devotion = -100>>
 <<set $activeSlave.trust = 60>>
-<<set $activeSlave.health = random(-20,20)>>
+<<run setHealth($activeSlave, jsRandom(-20, 20))>>
 <<set $activeSlave.face = random(80,100)>>
 <<set $activeSlave.faceShape = "sensual">>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -628,7 +628,7 @@
 <<set $activeSlave.origin = "$He enslaved $himself to be with a man $he loved, only to be sold to you afterward.">>
 <<set $activeSlave.devotion = random(-30,-5)>>
 <<set $activeSlave.trust = random(-25,-5)>>
-<<set $activeSlave.health = random(10,30)>>
+<<run setHealth($activeSlave, jsRandom(10, 30))>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.faceImplant = 0>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -668,7 +668,7 @@
 <<set $activeSlave.origin = "$He enslaved $himself to be with a man $he loved, only to be sold to you afterward.">>
 <<set $activeSlave.devotion = random(-30,-5)>>
 <<set $activeSlave.trust = random(-25,-5)>>
-<<set $activeSlave.health = random(10,30)>>
+<<run setHealth($activeSlave, jsRandom(10, 30))>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.faceImplant = 15>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -709,7 +709,7 @@
 <<set $activeSlave.origin = "$He enslaved $himself to be with a man $he loved, only to be sold to you afterward.">>
 <<set $activeSlave.devotion = random(-30,-5)>>
 <<set $activeSlave.trust = random(-25,-5)>>
-<<set $activeSlave.health = random(10,30)>>
+<<run setHealth($activeSlave, jsRandom(10, 30))>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.faceImplant = 15>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -745,7 +745,7 @@
 <<set $activeSlave.origin = "$He was given to you by criminals as 'tribute', after which you transformed the overthrown (male) leader of their rival gang.">>
 <<set $activeSlave.devotion = random(-70,-40)>>
 <<set $activeSlave.trust = random(-20,-5)>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.face = Math.clamp($activeSlave.face+20,-100,100)>>
 <<set $activeSlave.faceImplant = 15>>
 <<set $activeSlave.skill.anal = 0>>
@@ -778,7 +778,7 @@
 <<set $activeSlave.origin = "$He was a runaway slave captured by a gang outside your arcology. You bought $him cheap after $he was harshly used by them.">>
 <<set $activeSlave.devotion = random(0,25)>>
 <<set $activeSlave.trust = -20>>
-<<set $activeSlave.health = random(-50,-30)>>
+<<run setHealth($activeSlave, jsRandom(-50, -30), normalRandInt(10, 3), normalRandInt(10, 3), Math.max(normalRandInt(1, 0.5), 0))>>
 <<set $activeSlave.face = random(0,20)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 15>>
@@ -818,7 +818,7 @@
 <<set $activeSlave.origin = "$He was a runaway slave captured by a gang outside your arcology. You bought $him cheap after $he was harshly used by them.">>
 <<set $activeSlave.devotion = random(0,25)>>
 <<set $activeSlave.trust = -20>>
-<<set $activeSlave.health = random(-50,-30)>>
+<<run setHealth($activeSlave, jsRandom(-50, -30), normalRandInt(10, 3), normalRandInt(10, 3), Math.max(normalRandInt(1, 0.5), 0))>>
 <<set $activeSlave.face = random(0,20)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 15>>
@@ -864,7 +864,7 @@
 <<set $activeSlave.origin = "$He was a runaway slave captured by a gang outside your arcology. You bought $him cheap after $he was harshly used by them.">>
 <<set $activeSlave.devotion = random(0,25)>>
 <<set $activeSlave.trust = -20>>
-<<set $activeSlave.health = random(-50,-30)>>
+<<run setHealth($activeSlave, jsRandom(-50, -30), normalRandInt(10, 3), normalRandInt(10, 3), Math.max(normalRandInt(1, 0.5), 0))>>
 <<set $activeSlave.face = random(0,20)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 15>>
@@ -910,7 +910,7 @@
 <<set $activeSlave.origin = "$He was the private slave of a con artist cult leader before he had to abandon $him and flee.">>
 <<set $activeSlave.devotion = random(25,50)>>
 <<set $activeSlave.trust = random(25,50)>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60))>>
 <<set $activeSlave.face = random(25,100)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 0>>
@@ -956,7 +956,7 @@
 <<set $activeSlave.origin = "$He was the private slave of a con artist cult leader before he had to abandon $him and flee.">>
 <<set $activeSlave.devotion = random(-45,15)>>
 <<set $activeSlave.trust = random(25,50)>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60))>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = random(50,100)>>
 <<set $activeSlave.skill.anal = random(50,100)>>
@@ -1003,7 +1003,7 @@
 <<set $activeSlave.prestigeDesc = "Many people remember $him from the slavegirl races where $he slammed $his cock into countless runners' pussies after catching them.">>
 <<set $activeSlave.devotion = random(-15,10)>>
 <<set $activeSlave.trust = random(-20,10)>>
-<<set $activeSlave.health = random(30,50)>>
+<<run setHealth($activeSlave, jsRandom(30, 50))>>
 <<set $activeSlave.shoulders = random(1,2)>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -1048,7 +1048,7 @@
 <<set $activeSlave.prestigeDesc = "After $his short but very promising slave racing career, during which $he made it through several competitions as a virgin, many people fondly remember fantasizing about taking $him.">>
 <<set $activeSlave.devotion = random(15,25)>>
 <<set $activeSlave.trust = random(15,25)>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60))>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = random(0,15)>>
@@ -1096,7 +1096,7 @@
 <<set $activeSlave.prestigeDesc = "For years, $he delighted the watchers of slavegirl racing with winning competition after competition with $his virginity intact.">>
 <<set $activeSlave.devotion = random(15,25)>>
 <<set $activeSlave.trust = random(10,20)>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60))>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = random(0,15)>>
@@ -1133,7 +1133,7 @@
 <<set $activeSlave.origin = "$He was the housekeeper and fucktoy of a frat house before being collected by repo-men and sold to you.">>
 <<set $activeSlave.devotion = random(25,50)>>
 <<set $activeSlave.trust = random(25,50)>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60))>>
 <<set $activeSlave.face = random(0,60)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 15>>
@@ -1169,7 +1169,7 @@
 <<set $activeSlave.origin = "$He was a nanny before being sold to you.">>
 <<set $activeSlave.devotion = random(25,50)>>
 <<set $activeSlave.trust = random(-50,-25)>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60))>>
 <<set $activeSlave.face = random(0,60)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 0>>
@@ -1210,7 +1210,7 @@
 <<set $activeSlave.origin = "$He was a milk cow in the stable of a slaveholding farmer before being sold to you.">>
 <<set $activeSlave.devotion = random(25,50)>>
 <<set $activeSlave.trust = random(25,50)>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60))>>
 <<set $activeSlave.face = random(-30,30)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 15>>
@@ -1259,7 +1259,7 @@
 <<set $activeSlave.origin = "$He was a breeding bull in the stable of a slaveholding farmer before being sold to you.">>
 <<set $activeSlave.devotion = random(25,50)>>
 <<set $activeSlave.trust = random(25,50)>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60))>>
 <<set $activeSlave.face = random(-30,30)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 35>>
@@ -1297,7 +1297,7 @@
 <<set $activeSlave.origin = "$He was a virgin cow in the stable of a slaveholding farmer before being sold to you.">>
 <<set $activeSlave.devotion = random(25,50)>>
 <<set $activeSlave.trust = random(25,50)>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60))>>
 <<set $activeSlave.face = random(-30,30)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 15>>
@@ -1335,7 +1335,7 @@
 <<set $activeSlave.origin = "$He was in an orphanage until reaching maturity, at which point $he was sold to you.">>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-25,0)>>
-<<set $activeSlave.health = random(10,40)>>
+<<run setHealth($activeSlave, jsRandom(10, 40))>>
 <<set $activeSlave.face = random(-30,30)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 15>>
@@ -1371,7 +1371,7 @@
 <<set $activeSlave.origin = "$He was in an orphanage until reaching maturity, at which point $he was sold to you.">>
 <<set $activeSlave.devotion = random(10,40)>>
 <<set $activeSlave.trust = random(-25,0)>>
-<<set $activeSlave.health = random(10,40)>>
+<<run setHealth($activeSlave, jsRandom(10, 40))>>
 <<set $activeSlave.face = random(20,60)>>
 <<if $activeSlave.faceShape == "masculine">>
 	<<set $activeSlave.faceShape = "cute">>
@@ -1415,7 +1415,7 @@
 <<set $activeSlave.origin = "$He was captured in a raid on a gated community and quickly sold off.">>
 <<set $activeSlave.devotion = -20>>
 <<set $activeSlave.trust = 0>>
-<<set $activeSlave.health = 20>>
+<<run setHealth($activeSlave, 20, 0, 0, 0, jsRandom(10, 30))>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 0>>
@@ -1465,7 +1465,7 @@
 <<set $activeSlave.face = 20>>
 <<set $activeSlave.fetish = "none">>
 <<set $activeSlave.fetishKnown = 0>>
-<<set $activeSlave.health = random(-80,-60)>>
+<<run setHealth($activeSlave, jsRandom(-70, -60))>>
 <<set $activeSlave.intelligence = random(-50,0)>>
 <<set $activeSlave.intelligenceImplant = 0>>
 <<set $activeSlave.career = setup.uneducatedCareers.random()>>
@@ -1480,7 +1480,7 @@
 <<set $activeSlave.origin = "$He sold $himself into slavery to spite $his father.">>
 <<set $activeSlave.devotion = 20>>
 <<set $activeSlave.trust = 0>>
-<<set $activeSlave.health = 80>>
+<<run setHealth($activeSlave, 80, 0, 0, 0, jsRandom(0, 20)))>>
 <<set $activeSlave.face = random(15,70)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 0>>
@@ -1532,7 +1532,7 @@
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.career = "an artist">>
-<<set $activeSlave.health = random(-60,-50)>>
+<<run setHealth($activeSlave, jsRandom(-60, -50))>>
 <<set $activeSlave.intelligence = random(16,50)>>
 <<set $activeSlave.skill.entertainment = 40>>
 <<set $activeSlave.intelligenceImplant = 0>>
@@ -1549,7 +1549,7 @@
 <<set $activeSlave.origin = "$He was the housekeeper and fucktoy of a frat house before being replaced in favor of fresher slaves and sold to you.">>
 <<set $activeSlave.devotion = random(25,50)>>
 <<set $activeSlave.trust = random(25,50)>>
-<<set $activeSlave.health = random(30,60)>>
+<<run setHealth($activeSlave, jsRandom(30, 60))>>
 <<set $activeSlave.face = random(0,60)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 25>>
@@ -1586,7 +1586,7 @@
 <<set $activeSlave.origin = "$He sold $himself into slavery to pay $his immigration costs.">>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-15,0)>>
-<<set $activeSlave.health -= 50>>
+<<run setHealth($activeSlave)>>
 
 <<case "wandering homeless">>
 
@@ -1599,7 +1599,7 @@
 <<set $activeSlave.origin = "$He offered to sell you $his body and you graciously accepted.">>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-15,0)>>
-<<set $activeSlave.health = 50>>
+<<run setHealth($activeSlave))>>
 <<set $activeSlave.weight = -70>>
 <<set $activeSlave.boobs = 100>>
 <<set $activeSlave.origHColor = "silver">>
@@ -1641,7 +1641,7 @@
 <<set $activeSlave.origin = "You helped $him give birth, leaving $him deeply indebted to you.">>
 <<set $activeSlave.devotion = random(0,20)>>
 <<set $activeSlave.trust = random(0,20)>>
-<<set $activeSlave.health = -100>>
+<<run setHealth($activeSlave, -90)>>
 <<set $activeSlave.weight = random(-100, -50)>>
 <<set $activeSlave.hips = -1>>
 <<set $activeSlave.boobs += random(3,6)*100>>
@@ -1669,7 +1669,7 @@
 <<set $activeSlave = GenerateNewSlave("XX")>>
 <<set $activeSlave.origin = "$He sold $himself into slavery to feed $himself and $his growing brood.">>
 <<set $activeSlave.career = "a farm laborer">>
-<<set $activeSlave.health = random(-35,-10)>>
+<<run setHealth($activeSlave, jsRandom(-35, 10))>>
 <<set $activeSlave.devotion = random(35,45)>>
 <<set $activeSlave.trust = random(15,25)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
@@ -1715,7 +1715,7 @@
 <<set $activeSlave.origin = "You helped free $him from a POW camp after being abandoned by $his country, leaving $him deeply indebted to you.">>
 <<set $activeSlave.devotion = random(0,20)>>
 <<set $activeSlave.trust = random(0,20)>>
-<<set $activeSlave.health = -80>>
+<<run setHealth($activeSlave, -50, normalRandInt(15, 4), normalRandInt(15, 4), Math.max(normalRandInt(1, 0.5), 0), jsRandom(30, 80)))>>
 <<set $activeSlave.muscles = random(-80, 0)>>
 <<set $activeSlave.weight = random(-80, -60)>>
 <<set $activeSlave.waist = random(-40, -20)>>
@@ -1785,7 +1785,7 @@
 <<set $activeSlave.origin = "$He is an unsuccessful cyborg experiment that was set free.">>
 <<set $activeSlave.devotion = random(0,20)>>
 <<set $activeSlave.trust = random(0,20)>>
-<<set $activeSlave.health = 100>>
+<<run setHealth($activeSlave, 100)>>
 <<set $activeSlave.weight = random(-11 -30)>>
 <<set $activeSlave.waist = random(-11, -40)>>
 <<set $activeSlave.skill.combat = 1>>
@@ -1828,7 +1828,7 @@
 <<set $activeSlave.origin = "$He was the virgin figurehead of a new religion and 'blessed' by their Lord.">>
 <<set $activeSlave.devotion = random(-20,20)>>
 <<set $activeSlave.trust = random(25,50)>>
-<<set $activeSlave.health = random(60,100)>>
+<<run setHealth($activeSlave, jsRandom(60, 100), 0, 0, 0)>>
 <<set $activeSlave.face = random(20,90)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 0>>
@@ -1872,7 +1872,7 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave("XX")>>
 <<set $activeSlave.origin = "$He was the holy vessel of a new religion and 'blessed' by their Lord to bring forth His servants.">>
-<<set $activeSlave.health = random(100,100)>>
+<<run setHealth($activeSlave, 100, 0, 0, 0)>>
 <<set $activeSlave.face = random(20,90)>>
 <<set $activeSlave.boobs = random(4,7)*300>>
 <<set $activeSlave.vagina = 10>>
@@ -1915,7 +1915,7 @@
 <<set $activeSlave.teeth = "normal">>
 <<set $activeSlave.devotion = random(-100,-90)>>
 <<set $activeSlave.trust = random(25,85)>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.weight = random(-10,10)>>
 <<set $activeSlave.muscles = random(10,40)>>
 <<set $activeSlave.anus = 0>>
@@ -1944,7 +1944,7 @@
 <<set $activeSlave.prestigeDesc = "$He was once the princess of an old world kingdom up until $his loose habits caught up with $him and $he was exiled.">>
 <<set $activeSlave.devotion = random(-100,-90)>>
 <<set $activeSlave.trust = random(25,85)>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20), 0, 0, 0)>>
 <<set $activeSlave.skill.vaginal = 30>>
 <<set $activeSlave.skill.anal = 0>>
 <<set $activeSlave.skill.oral = 50>>
@@ -1975,7 +1975,7 @@
 <<set $activeSlave.clothes = "a nice maid outfit">>
 <<set $activeSlave.devotion = random(-20,20)>>
 <<set $activeSlave.trust = random(-90,-80)>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.skill.vaginal = 30>>
 <<set $activeSlave.skill.anal = 15>>
 <<set $activeSlave.skill.oral = 50>>
@@ -2771,7 +2771,7 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of
 				<<set $activeSlave.clothes = "a nice maid outfit">>
 				<<set $activeSlave.devotion = random(-20,20)>>
 				<<set $activeSlave.trust = random(-20,20)>>
-				<<set $activeSlave.health = random(0,20)>>
+				<<run setHealth($activeSlave, jsRandom(0, 20))>>
 				<<set $activeSlave.weight = random(-20,60)>>
 				<<set $activeSlave.waist = random(-40,0)>>
 				<<run newSlave($activeSlave)>>
diff --git a/src/uncategorized/reRelativeRecruiter.tw b/src/uncategorized/reRelativeRecruiter.tw
index 0b8f8d2184c87b875fa45e371dca9ce919785fb5..19ce898b41a5768e30bd215dfaf7a0ed8988c362 100644
--- a/src/uncategorized/reRelativeRecruiter.tw
+++ b/src/uncategorized/reRelativeRecruiter.tw
@@ -445,7 +445,8 @@
 <<set $activeSlave.toyHole = "all her holes">>
 <<set $activeSlave.indenture = -1>>
 <<set $activeSlave.indentureRestrictions = 0>>
-<<set $activeSlave.health = random(20,40)>>
+<<set $activeSlave.health = {}>>
+<<run setHealth($activeSlave, jsRandom(20, 40))>>
 <<set $activeSlave.minorInjury = 0>>
 <<set $activeSlave.eyewear = "none">>
 <<set $activeSlave.earwear = "none">>
diff --git a/src/uncategorized/reShelterInspection.tw b/src/uncategorized/reShelterInspection.tw
index 36436003b824de8ddcdf8edb19526c37a474354b..ccaf8e35a48254a53b3ff08c8c5550ea12cbbccc 100644
--- a/src/uncategorized/reShelterInspection.tw
+++ b/src/uncategorized/reShelterInspection.tw
@@ -20,7 +20,7 @@
 <<set $activeSlave.trust = random(75,90)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
 <<set $activeSlave.oldTrust = $activeSlave.trust>>
-<<set $activeSlave.health = random(30,50)>>
+<<run setHealth($activeSlave, jsRandom(30, 50), 0, 0, 0)>>
 <<set $activeSlave.skill.anal = 0>>
 <<set $activeSlave.skill.oral = 0>>
 <<set $activeSlave.skill.whoring = 0>>
diff --git a/src/uncategorized/reShippingContainer.tw b/src/uncategorized/reShippingContainer.tw
index c10810906708ade71129eb18d4d82410e5935708..b8152ab53ce4a6c0d69072b9c5177ac6198632db 100644
--- a/src/uncategorized/reShippingContainer.tw
+++ b/src/uncategorized/reShippingContainer.tw
@@ -12,7 +12,7 @@
 	<<set $activeSlave.origin = "$He arrived at your arcology in an undocumented shipping container.">>
 	<<set $activeSlave.devotion = random(-90,-75)>>
 	<<set $activeSlave.trust = -20>>
-	<<set $activeSlave.health = -10>>
+	<<run setHealth($activeSlave, -10)>>
 	<<set _newSlaves.push($activeSlave)>>
 <</for>>
 <<set $menials += 25>>
@@ -79,7 +79,7 @@ For now, the crowd around you is looking at the helpless human cargo with
 					<</if>>
 					<<set _newSlaves[_reShip].counter.publicUse += _pTotal>>
 					<<set _newSlaves[_reShip].anus = 3>>
-					<<set _newSlaves[_reShip].health -= 20>>
+					<<run setHealth(_newSlaves[_reShip], -20)>>
 					<<run newSlave(_newSlaves[_reShip])>> /* skip New Slave Intro */
 				<</for>>
 				You use the container handling systems to segregate the obvious menials from those with any potential as sex slaves. The menials go into a different container, which is whisked off, leaving a little shivering knot of frightened bodies, vulnerable and naked. The crowd watches all this with good humor, and there's silence enough that everyone hears your quiet announcement. You announce that the shipment is in violation of shipping and slave market regulations, and is being confiscated; however, you don't expect to see these particular slaves delivered to your penthouse for a couple of hours. Then you turn your back and walk away. The crowd gives a kind of @@.green;appreciative howl@@ which, understandably, produces a wail of terror from the slaves. As you head off, the sobbing turns into screaming. It sounds like your new slaves might be a bit stretched out, here and there.
diff --git a/src/uncategorized/recETS.tw b/src/uncategorized/recETS.tw
index b6c1a83cbd39eefce6fdc654550c4427d21e46b2..05eade3ae4d23ae7cc29250b8c8444bf1d25e0be 100644
--- a/src/uncategorized/recETS.tw
+++ b/src/uncategorized/recETS.tw
@@ -46,7 +46,7 @@
 <<set $activeSlave.butt += 1>>
 <<if $activeSlave.vagina > -1>><<set $activeSlave.vagina += 1>><</if>>
 <<set $activeSlave.anus += 1>>
-<<set $activeSlave.health = random(-60,-20)>>
+<<run setHealth($activeSlave, jsRandom(-60, 20), Math.max(normalRandInt(5, 3), 0), Math.max(normalRandInt(5, 3), 0))>>
 <<set $activeSlave.pubicHStyle = "waxed">>
 <<set $activeSlave.underArmHStyle = "waxed">>
 <<if $familyTesting == 1>>
@@ -90,7 +90,7 @@
 <<set $activeSlave.butt += 1>>
 <<set $activeSlave.buttImplant = 1>>
 <<set $activeSlave.clothes = "nice business attire">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.pubicHStyle = "neat">>
 <<set $activeSlave.underArmHStyle = "shaved">>
 <<if $familyTesting == 1>>
@@ -135,7 +135,7 @@
 <<set $activeSlave.butt += 2>>
 <<set $activeSlave.buttImplant = 0>>
 <<set $activeSlave.clothes = "conservative clothing">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.pubicHStyle = "bushy">>
 <<set $activeSlave.behavioralQuirk = "sinful">>
 <<if $familyTesting == 1>>
@@ -165,7 +165,7 @@
 <<set $activeSlave.face = 15>>
 <<set $activeSlave.faceShape = "masculine">>
 <<set $activeSlave.clothes = "conservative clothing">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.behavioralQuirk = "sinful">>
 <<if $familyTesting == 1>>
 	<<set $activeSlave.canRecruit = 0>>
@@ -204,7 +204,7 @@
 <<set $activeSlave.lactation = 1>>
 <<set $activeSlave.lactationDuration = 2>>
 <<set $activeSlave.clothes = "cutoffs and a t-shirt">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.pubicHStyle = "in a strip">>
 <<set $activeSlave.behavioralQuirk = "sinful">>
 <<if $familyTesting == 1>>
@@ -238,7 +238,7 @@
 <<set $activeSlave.attrXX = 80>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.clothes = "cutoffs and a t-shirt">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.pubicHStyle = "in a strip">>
 <<set $activeSlave.behavioralQuirk = "sinful">>
 <<if $familyTesting == 1>>
@@ -269,7 +269,7 @@
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
 <<set $activeSlave.face = random(15,40)>>
 <<set $activeSlave.clothes = "conservative clothing">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.attrXY = 80>>
 <<set $activeSlave.pubicHStyle = "bushy">>
 <<set $activeSlave.behavioralQuirk = "sinful">>
@@ -304,7 +304,7 @@
 <<set $activeSlave.attrXX = 80>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.clothes = "cutoffs and a t-shirt">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.pubicHStyle = "in a strip">>
 <<set $activeSlave.behavioralQuirk = "sinful">>
 <<if $familyTesting == 1>>
@@ -334,7 +334,7 @@
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
 <<set $activeSlave.face = random(15,40)>>
 <<set $activeSlave.clothes = "conservative clothing">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.attrXY = 80>>
 <<set $activeSlave.pubicHStyle = "bushy">>
 <<set $activeSlave.behavioralQuirk = "sinful">>
@@ -368,7 +368,7 @@
 <<set $activeSlave.attrXX = 80>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.clothes = "cutoffs and a t-shirt">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.pubicHStyle = "in a strip">>
 <<set $activeSlave.behavioralQuirk = "sinful">>
 <<if $familyTesting == 1>>
@@ -410,7 +410,7 @@
 <<set $activeSlave.butt += 2>>
 <<set $activeSlave.buttImplant = 0>>
 <<set $activeSlave.clothes = "conservative clothing">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.pubicHStyle = "bushy">>
 <<set $activeSlave.behavioralQuirk = "sinful">>
 <<if $familyTesting == 1>>
@@ -440,7 +440,7 @@
 <<set $activeSlave.face = random(15,50)>>
 <<set $activeSlave.faceShape = "masculine">>
 <<set $activeSlave.clothes = "conservative clothing">>
-<<set $activeSlave.health = random(20,40)>>
+<<run setHealth($activeSlave, jsRandom(20, 40), 0, 0, 0)>>
 <<set $activeSlave.behavioralQuirk = "sinful">>
 <<if $familyTesting == 1>>
 	<<set $activeSlave.canRecruit = 0>>
@@ -469,7 +469,7 @@
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(-15,15)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.anus = 1>>
 <<set $activeSlave.vagina = -1>>
 <<set $activeSlave.dick = 1>>
@@ -517,7 +517,7 @@
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(-15,15)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.anus = 1>>
 <<set $activeSlave.vagina = -1>>
 <<set $activeSlave.dick = 1>>
@@ -569,7 +569,7 @@
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(-15,15)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.anus = 1>>
 <<set $activeSlave.dick = 0>>
 <<set $activeSlave.foreskin = 0>>
@@ -624,7 +624,7 @@
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(-15,15)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(0,20)>>
+<<run setHealth($activeSlave, jsRandom(0, 20))>>
 <<set $activeSlave.anus = 1>>
 <<set $activeSlave.dick = 5>>
 <<set $activeSlave.foreskin = 4>>
@@ -691,7 +691,7 @@
 <<set $activeSlave = GenerateNewSlave("XX")>>
 <<set $activeSlave.origin = "$He begged to be enslaved in a desperate attempt to provide for $his many children.">>
 <<set $activeSlave.career = "homeless">>
-<<set $activeSlave.health = random(-45,-30)>>
+<<run setHealth($activeSlave, jsRandom(-45, -30))>>
 <<set $activeSlave.devotion = random(35,45)>>
 <<set $activeSlave.trust = random(15,25)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
@@ -1254,7 +1254,7 @@
 	<<set $activeSlave.origin = "$His mother offered $him to you as an incentive to take them in.">>
 	<<set $activeSlave.slaveName = $activeSlave.birthName>>
 	<<set $activeSlave.ID = $activeSlave.ID + 1000>>
-	<<set $activeSlave.health = random(10,20)>>
+	<<run setHealth($activeSlave, jsRandom(10, 20))>>
 	<<set $activeSlave.devotion -= 5>>
 	<<set $activeSlave.trust -= 5>>
 	<<set $activeSlave.oldDevotion = $activeSlave.devotion>>
@@ -1320,7 +1320,7 @@
 	<<set $activeSlave.origin = "$His mother offered $him to you as an incentive to take them in.">>
 	<<set $activeSlave.slaveName = $activeSlave.birthName>>
 	<<set $activeSlave.ID = $activeSlave.ID + 1000>>
-	<<set $activeSlave.health = random(10,20)>>
+	<<run setHealth($activeSlave, jsRandom(10, 20))>>
 	<<set $activeSlave.devotion -= 5>>
 	<<set $activeSlave.trust -= 5>>
 	<<set $activeSlave.oldDevotion = $activeSlave.devotion>>
diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw
index 75a477a19f15f49c7272a2b7e9e2268b04ccf581..e7033047e6565bfe5c0a8eb1670e9f1fbe0d92b9 100644
--- a/src/uncategorized/remoteSurgery.tw
+++ b/src/uncategorized/remoteSurgery.tw
@@ -20,7 +20,7 @@
 <h1>The Remote Surgery</h1>
 
 <div style="padding-bottom:2em">
-	//$activeSlave.slaveName is lying strapped down on the table in your <<if $surgeryUpgrade == 1>>heavily upgraded and customized remote surgery.<<else>>remote surgery.<</if>> The surgical equipment reads <<if $activeSlave.health < -20>>@@.red;SLAVE UNHEALTHY, SURGERY NOT RECOMMENDED.@@<<elseif $activeSlave.health <= 20>>@@.yellow;SLAVE HEALTHY, SURGERY SAFE.@@<<else>>@@.green;SLAVE HEALTHY, SURGERY ENCOURAGED.@@<</if>><<if $PC.skill.medicine >= 100>> The remote surgery mechanisms that allow a surgeon to be brought in by telepresence are inactive, and the autosurgery is ready for your control inputs. Surgery on your slaves is a challenge and a pleasure you wouldn't dream of sharing.<</if>>//
+	//$activeSlave.slaveName is lying strapped down on the table in your <<if $surgeryUpgrade == 1>>heavily upgraded and customized remote surgery.<<else>>remote surgery.<</if>> The surgical equipment reads <<if $activeSlave.health.health < -20>>@@.red;SLAVE UNHEALTHY, SURGERY NOT RECOMMENDED.@@<<elseif $activeSlave.health.health <= 20>>@@.yellow;SLAVE HEALTHY, SURGERY SAFE.@@<<else>>@@.green;SLAVE HEALTHY, SURGERY ENCOURAGED.@@<</if>><<if $PC.skill.medicine >= 100>> The remote surgery mechanisms that allow a surgeon to be brought in by telepresence are inactive, and the autosurgery is ready for your control inputs. Surgery on your slaves is a challenge and a pleasure you wouldn't dream of sharing.<</if>>//
 </div>
 
 /* 000-250-006 */
@@ -93,27 +93,27 @@
 		<</if>>//
 		<div class="indent">
 			<<if $activeSlave.faceShape != "normal">>
-				[[Make conventionally feminine|Surgery Degradation][$activeSlave.faceShape = "normal",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "face"]] |
+				[[Make conventionally feminine|Surgery Degradation][$activeSlave.faceShape = "normal",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "face"]] |
 			<</if>>
 			<<if $activeSlave.faceShape == "masculine">>
-				[[Soften to androgynous|Surgery Degradation][$activeSlave.faceShape = "androgynous",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "face"]] |
+				[[Soften to androgynous|Surgery Degradation][$activeSlave.faceShape = "androgynous",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "face"]] |
 			<<else>>
 				<<if $activeSlave.faceShape != "cute">>
-					[[Cute|Surgery Degradation][$activeSlave.faceShape = "cute",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "face"]] |
+					[[Cute|Surgery Degradation][$activeSlave.faceShape = "cute",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "face"]] |
 				<</if>>
 				<<if $activeSlave.faceShape != "exotic">>
-					[[Exotic|Surgery Degradation][$activeSlave.faceShape = "exotic",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "face"]] |
+					[[Exotic|Surgery Degradation][$activeSlave.faceShape = "exotic",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "face"]] |
 				<</if>>
 				<<if $activeSlave.faceShape != "sensual">>
-					[[Sensual|Surgery Degradation][$activeSlave.faceShape = "sensual",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "face"]] |
+					[[Sensual|Surgery Degradation][$activeSlave.faceShape = "sensual",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "face"]] |
 				<</if>>
 				<<if $activeSlave.faceShape != "androgynous">>
-					[[Androgynous|Surgery Degradation][$activeSlave.faceShape = "androgynous",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "face"]] |
+					[[Androgynous|Surgery Degradation][$activeSlave.faceShape = "androgynous",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "face"]] |
 				<<else>>
-					[[Masculine|Surgery Degradation][$activeSlave.faceShape = "masculine",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "face"]] |
+					[[Masculine|Surgery Degradation][$activeSlave.faceShape = "masculine",$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "face"]] |
 				<</if>>
 			<</if>>
-			[[Just improve attractiveness|Surgery Degradation][$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "face"]]
+			[[Just improve attractiveness|Surgery Degradation][$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "face"]]
 			<div>
 				<<if ($activeSlave.ageImplant > 1)>>
 					//$He's had a multiple facelifts and other cosmetic procedures in an effort to preserve $his youth.//
@@ -121,7 +121,7 @@
 					//$He's had a face lift and other minor cosmetic procedures to make $him look younger.//
 				<<elseif ($activeSlave.physicalAge >= 25) && ($activeSlave.visualAge >= 25)>>
 					//$He's old enough that a face lift and other minor cosmetic procedures could make $him look younger.//
-					[[Age lift|Surgery Degradation][$activeSlave.ageImplant = 1,$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "age"]]
+					[[Age lift|Surgery Degradation][$activeSlave.ageImplant = 1,$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "age"]]
 				<</if>>
 			</div>
 		</div>
@@ -136,26 +136,26 @@
 		<<set _n = 0>>
 		<<if getLeftEyeVision($activeSlave) === 2 && getLeftEyeType($activeSlave) === 1>>
 			<<set _n++>>
-			| [[Blur left eye|Surgery Degradation][eyeSurgery($activeSlave, "left", "blur"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "eyeBlur"]]
+			| [[Blur left eye|Surgery Degradation][eyeSurgery($activeSlave, "left", "blur"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "eyeBlur"]]
 		<</if>>
 		<<if getRightEyeVision($activeSlave) === 2 && getRightEyeType($activeSlave) === 1>>
 			<<set _n++>>
-			| [[Blur right eye|Surgery Degradation][eyeSurgery($activeSlave, "right", "blur"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "eyeBlur"]]
+			| [[Blur right eye|Surgery Degradation][eyeSurgery($activeSlave, "right", "blur"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "eyeBlur"]]
 		<</if>>
 		<<if _n === 2>>
-			| [[Blur both eyes|Surgery Degradation][eyeSurgery($activeSlave, "both", "blur"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "eyeBlur"]]
+			| [[Blur both eyes|Surgery Degradation][eyeSurgery($activeSlave, "both", "blur"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "eyeBlur"]]
 		<</if>>
 		<<set _n = 0>>
 		<<if getLeftEyeVision($activeSlave) === 1 && getLeftEyeType($activeSlave) === 1>>
 			<<set _n++>>
-			| [[Fix left eye|Surgery Degradation][eyeSurgery($activeSlave, "left", "fix"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "eyeFix"]]
+			| [[Fix left eye|Surgery Degradation][eyeSurgery($activeSlave, "left", "fix"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "eyeFix"]]
 		<</if>>
 		<<if getRightEyeVision($activeSlave) === 1 && getRightEyeType($activeSlave) === 1>>
 			<<set _n++>>
-			| [[Fix right eye|Surgery Degradation][eyeSurgery($activeSlave, "right", "fix"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "eyeFix"]]
+			| [[Fix right eye|Surgery Degradation][eyeSurgery($activeSlave, "right", "fix"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "eyeFix"]]
 		<</if>>
 		<<if _n === 2>>
-			| [[Fix both eyes|Surgery Degradation][eyeSurgery($activeSlave, "both", "fix"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "eyeFix"]]
+			| [[Fix both eyes|Surgery Degradation][eyeSurgery($activeSlave, "both", "fix"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "eyeFix"]]
 		<</if>>
 	<</if>>
 
@@ -166,41 +166,41 @@
 			<<set _n = 0>>
 			<<if getLeftEyeVision($activeSlave) > 0 && getLeftEyeType($activeSlave) === 1>>
 				<<set _n++>>
-				| [[Blind left eye|Surgery Degradation][eyeSurgery($activeSlave, "left", "blind"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "blind"]]
+				| [[Blind left eye|Surgery Degradation][eyeSurgery($activeSlave, "left", "blind"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "blind"]]
 			<</if>>
 			<<if getRightEyeVision($activeSlave) > 0 && getRightEyeType($activeSlave) === 1>>
 				<<set _n++>>
-				| [[Blind right eye|Surgery Degradation][eyeSurgery($activeSlave, "right", "blind"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "blind"]]
+				| [[Blind right eye|Surgery Degradation][eyeSurgery($activeSlave, "right", "blind"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "blind"]]
 			<</if>>
 			<<if _n === 2>>
-				| [[Blind both eyes|Surgery Degradation][eyeSurgery($activeSlave, "both", "blind"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "blind"]]
+				| [[Blind both eyes|Surgery Degradation][eyeSurgery($activeSlave, "both", "blind"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "blind"]]
 			<</if>>
 			/* remove */
 			<<set _n = 0>>
 			<<if hasLeftEye($activeSlave)>>
 				<<set _n++>>
-				| [[Remove left eye|Surgery Degradation][eyeSurgery($activeSlave, "left", "remove"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "remove eyes"]]
+				| [[Remove left eye|Surgery Degradation][eyeSurgery($activeSlave, "left", "remove"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "remove eyes"]]
 			<</if>>
 			<<if hasRightEye($activeSlave)>>
 				<<set _n++>>
-				| [[Remove right eye|Surgery Degradation][eyeSurgery($activeSlave, "right", "remove"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "remove eyes"]]
+				| [[Remove right eye|Surgery Degradation][eyeSurgery($activeSlave, "right", "remove"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "remove eyes"]]
 			<</if>>
 			<<if _n === 2>>
-				| [[Remove both eyes|Surgery Degradation][eyeSurgery($activeSlave, "both", "remove"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "remove eyes"]]
+				| [[Remove both eyes|Surgery Degradation][eyeSurgery($activeSlave, "both", "remove"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20), $surgeryType = "remove eyes"]]
 			<</if>>
 			/* implant */
 			<<if isProstheticAvailable($activeSlave, "ocular")>>
 				<<set _n = 0>>
 				<<if !hasLeftEye($activeSlave)>>
 					<<set _n++>>
-					| [[Give left eye ocular implant|Surgery Degradation][eyeSurgery($activeSlave, "left", "cybernetic"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "ocular implant"]]
+					| [[Give left eye ocular implant|Surgery Degradation][eyeSurgery($activeSlave, "left", "cybernetic"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "ocular implant"]]
 				<</if>>
 				<<if !hasRightEye($activeSlave)>>
 					<<set _n++>>
-					| [[Give right eye ocular implant|Surgery Degradation][eyeSurgery($activeSlave, "right", "cybernetic"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "ocular implant"]]
+					| [[Give right eye ocular implant|Surgery Degradation][eyeSurgery($activeSlave, "right", "cybernetic"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "ocular implant"]]
 				<</if>>
 				<<if _n === 2>>
-					| [[Give ocular implants|Surgery Degradation][eyeSurgery($activeSlave, "both", "cybernetic"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "ocular implant"]]
+					| [[Give ocular implants|Surgery Degradation][eyeSurgery($activeSlave, "both", "cybernetic"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20), $surgeryType = "ocular implant"]]
 				<</if>>
 			<</if>>
 		<</if>>
@@ -214,7 +214,7 @@
 		normal ears.
 	<<elseif $activeSlave.earShape == "damaged">>
 		damaged ears.
-		| [[Repair|Surgery Degradation][$activeSlave.earShape = "normal", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earRestore"]]
+		| [[Repair|Surgery Degradation][$activeSlave.earShape = "normal", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earRestore"]]
 	<<elseif $activeSlave.earShape == "pointy">>
 		small elfin ears.
 	<<elseif $activeSlave.earShape == "elven">>
@@ -231,7 +231,7 @@
 		//$His indenture forbids elective surgery//
 	<<else>>
 		<<if $activeSlave.earShape != "normal" && $activeSlave.earShape != "none">>
-			[[Restore to normal|Surgery Degradation][$activeSlave.earShape = "normal", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earRestore"]]
+			[[Restore to normal|Surgery Degradation][$activeSlave.earShape = "normal", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earRestore"]]
 		<</if>>
 		<<if $activeSlave.earShape != "normal" && $activeSlave.earShape !== "none" && $seeExtreme == 1 && $activeSlave.indentureRestrictions < 1>> | <</if>>
 		<<if $activeSlave.earShape != "none" && $seeExtreme == 1 && $activeSlave.indentureRestrictions < 1>>
@@ -243,14 +243,14 @@
 			<</if>>
 		<<else>>
 			<<if $activeSlave.earShape != "pointy">>
-				| [[Reshape into small elfin ears|Surgery Degradation][$activeSlave.earShape = "pointy", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earMinor"]]
+				| [[Reshape into small elfin ears|Surgery Degradation][$activeSlave.earShape = "pointy", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earMinor"]]
 			<</if>>
 			<<if $surgeryUpgrade == 1>>
 				<<if $activeSlave.earShape != "elven">>
-					| [[Reshape into long elf ears|Surgery Degradation][$activeSlave.earShape = "elven", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earMajor"]]
+					| [[Reshape into long elf ears|Surgery Degradation][$activeSlave.earShape = "elven", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earMajor"]]
 				<</if>>
 				<<if $activeSlave.earShape != "ushi">>
-					| [[Reshape into bovine ears|Surgery Degradation][$activeSlave.earShape = "ushi", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earMajor"]]
+					| [[Reshape into bovine ears|Surgery Degradation][$activeSlave.earShape = "ushi", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earMajor"]]
 				<</if>>
 			<</if>>
 		<</if>>
@@ -280,28 +280,28 @@
 			//$His indenture forbids elective surgery//
 		<<else>>
 			<<if $activeSlave.earT != "none" && $seeExtreme == 1 && $activeSlave.indentureRestrictions < 1>>
-				[[Remove them|Surgery Degradation][$activeSlave.earT = "none", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "earGone"]]
+				[[Remove them|Surgery Degradation][$activeSlave.earT = "none", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20), $surgeryType = "earGone"]]
 			<</if>>
 			<<if $activeSlave.earT == "normal">>
 				<<if $activeSlave.earT != "neko">>
-					| [[Reshape into cat Ears|Surgery Degradation][$activeSlave.earT = "neko", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earMajor"]]
+					| [[Reshape into cat Ears|Surgery Degradation][$activeSlave.earT = "neko", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earMajor"]]
 				<</if>>
 				<<if $activeSlave.earT != "inu">>
-					| [[Reshape into dog Ears|Surgery Degradation][$activeSlave.earT = "inu", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earMajor"]]
+					| [[Reshape into dog Ears|Surgery Degradation][$activeSlave.earT = "inu", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earMajor"]]
 				<</if>>
 				<<if $activeSlave.earT != "kit">>
-					| [[Reshape into fox Ears|Surgery Degradation][$activeSlave.earT = "kit", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earMajor"]]
+					| [[Reshape into fox Ears|Surgery Degradation][$activeSlave.earT = "kit", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earMajor"]]
 				<</if>>
 				<<if $activeSlave.earT != "tanuki">>
-					| [[Reshape into tanuki Ears|Surgery Degradation][$activeSlave.earT = "tanuki", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earMajor"]]
+					| [[Reshape into tanuki Ears|Surgery Degradation][$activeSlave.earT = "tanuki", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earMajor"]]
 				<</if>>
 			<<else>>
 				<<if $activeSlave.earTColor == "hairless">>
 					They are completely bald.
-					[[Implant hair mimicking fibers|Surgery Degradation][$activeSlave.earTColor = $activeSlave.hColor, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earMinor"]]
+					[[Implant hair mimicking fibers|Surgery Degradation][$activeSlave.earTColor = $activeSlave.hColor, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earMinor"]]
 				<<else>>
 					They are covered by a multitude of implanted $activeSlave.earTColor fibers mimicking hair.
-					[[Remove them|Surgery Degradation][$activeSlave.earTColor = "hairless", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earMinor"]]
+					[[Remove them|Surgery Degradation][$activeSlave.earTColor = "hairless", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earMinor"]]
 				<</if>>
 			<</if>>
 		<</if>>
@@ -319,12 +319,12 @@
 		<<if $activeSlave.hears == -1>>
 			inner ears, but is hearing impaired<<if $activeSlave.earShape == "none">>, likely due to missing the outer structure<</if>>.
 			<<if ($activeSlave.earImplant != 1) && $activeSlave.earShape != "none">>
-				[[Correct hearing|Surgery Degradation][$activeSlave.hears = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earFix"]]
+				[[Correct hearing|Surgery Degradation][$activeSlave.hears = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earFix"]]
 			<</if>>
 		<<else>>
 			ears and good hearing.
 			<<if ($seeExtreme == 1) && ($activeSlave.earImplant != 1) && $activeSlave.indentureRestrictions < 1>>
-				[[Muffle hearing|Surgery Degradation][$activeSlave.hears = -1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "earMuffle"]]
+				[[Muffle hearing|Surgery Degradation][$activeSlave.hears = -1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "earMuffle"]]
 			<</if>>
 		<</if>>
 	<</if>>
@@ -332,10 +332,10 @@
 	<<if ($seeExtreme == 1) && $activeSlave.indentureRestrictions < 1>>
 		<<if $activeSlave.earImplant == 0>>
 			<<if ($activeSlave.hears > -2)>>
-				| [[Deafen|Surgery Degradation][$activeSlave.hears = -2,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "deafen"]]
+				| [[Deafen|Surgery Degradation][$activeSlave.hears = -2,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "deafen"]]
 			<</if>>
 			<<if isProstheticAvailable($activeSlave, "cochlear")>>
-				| [["Give " + $him + " cochlear implants"|Surgery Degradation][$activeSlave.earImplant = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "cochlear implant"]]
+				| [["Give " + $him + " cochlear implants"|Surgery Degradation][$activeSlave.earImplant = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20), $surgeryType = "cochlear implant"]]
 			<</if>>
 		<</if>>
 	<</if>>
@@ -356,22 +356,22 @@
 	<<if $activeSlave.horn == "none">>
 		Give $him:
 		<<if $activeSlave.horn != "curved succubus horns">>
-			[[Succubus horns|Surgery Degradation][$activeSlave.horn = "curved succubus horns", $activeSlave.hornColor = "jet black", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "horn"]]
+			[[Succubus horns|Surgery Degradation][$activeSlave.horn = "curved succubus horns", $activeSlave.hornColor = "jet black", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "horn"]]
 		<</if>>
 		<<if $activeSlave.horn != "backswept horns">>
-			| [[Backswept horns|Surgery Degradation][$activeSlave.horn = "backswept horns", $activeSlave.hornColor = "jet black", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "horn"]]
+			| [[Backswept horns|Surgery Degradation][$activeSlave.horn = "backswept horns", $activeSlave.hornColor = "jet black", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "horn"]]
 		<</if>>
 		<<if $activeSlave.horn != "cow horns">>
-			| [[Bovine horns|Surgery Degradation][$activeSlave.horn = "cow horns", $activeSlave.hornColor = "ivory", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "horn"]]
+			| [[Bovine horns|Surgery Degradation][$activeSlave.horn = "cow horns", $activeSlave.hornColor = "ivory", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "horn"]]
 		<</if>>
 		<<if $activeSlave.horn != "one long oni horn">>
-			| [[One oni horn|Surgery Degradation][$activeSlave.horn = "one long oni horn", $activeSlave.hornColor = $activeSlave.skin, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "horn"]]
+			| [[One oni horn|Surgery Degradation][$activeSlave.horn = "one long oni horn", $activeSlave.hornColor = $activeSlave.skin, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "horn"]]
 		<</if>>
 		<<if $activeSlave.horn != "two long oni horns">>
-			| [[Two oni horns|Surgery Degradation][$activeSlave.horn = "two long oni horns", $activeSlave.hornColor = $activeSlave.skin, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "horn"]]
+			| [[Two oni horns|Surgery Degradation][$activeSlave.horn = "two long oni horns", $activeSlave.hornColor = $activeSlave.skin, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "horn"]]
 		<</if>>
 		<<if $activeSlave.horn != "small horns">>
-			| [[Small horns|Surgery Degradation][$activeSlave.horn = "small horns", $activeSlave.hornColor = "ivory", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "horn"]]
+			| [[Small horns|Surgery Degradation][$activeSlave.horn = "small horns", $activeSlave.hornColor = "ivory", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "horn"]]
 		<</if>>
 	<</if>>
 </div>
@@ -404,9 +404,9 @@
 		//$His indenture forbids elective surgery//
 	<<elseif ($activeSlave.lips <= 75) || (($activeSlave.lips <= 95) && ($seeExtreme == 1))>>
 		<<if $activeSlave.lipsImplant > 0>>
-			[[Replace with the next size up|Surgery Degradation][$activeSlave.lipsImplant += 20,$activeSlave.lips += 20,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "lips"]] //This will reduce $his oral skills//
+			[[Replace with the next size up|Surgery Degradation][$activeSlave.lipsImplant += 20,$activeSlave.lips += 20,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "lips"]] //This will reduce $his oral skills//
 		<<else>>
-			[[Lip implants|Surgery Degradation][$activeSlave.lipsImplant = 20,$activeSlave.lips += 20,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "lips"]] //This will reduce $his oral skills//
+			[[Lip implants|Surgery Degradation][$activeSlave.lipsImplant = 20,$activeSlave.lips += 20,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "lips"]] //This will reduce $his oral skills//
 		<</if>>
 	<</if>>
 	<<if $activeSlave.lipsImplant != 0>>
@@ -428,51 +428,51 @@
 		$He has crooked teeth.
 		[[Apply braces|Surgery Degradation][$activeSlave.teeth = "straightening braces",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$surgeryType = "braces"]]
 		<<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>>
-			| [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "sharp"]]
+			| [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "sharp"]]
 		<</if>>
 	<<case "gapped">>
 		$He has a noticeable gap in $his front teeth.
 		[[Apply braces|Surgery Degradation][$activeSlave.teeth = "straightening braces",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$surgeryType = "braces"]]
 		<<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>>
-			| [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "sharp"]]
+			| [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "sharp"]]
 		<</if>>
 	<<case "straightening braces">>
 		$His crooked teeth are in braces.
 		[[Remove braces|Remote Surgery][$activeSlave.teeth = "crooked",$surgeryType = "removeBraces"]]
 		<<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>>
-			| [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "sharp"]]
+			| [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "sharp"]]
 		<</if>>
 	<<case "cosmetic braces">>
 		$He has braces on $his straight teeth.
 		[[Remove braces|Remote Surgery][$activeSlave.teeth = "normal"]]
 		<<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>>
-			| [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "sharp"]]
+			| [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "sharp"]]
 		<</if>>
 	<<case "removable">>
 		$He has prosthetic teeth that can be removed for extreme oral sex.
 		<<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>>
-			[[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "sharp"]] | [[Normal dental implants|Surgery Degradation][$activeSlave.teeth = "normal",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "oral"]]
+			[[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "sharp"]] | [[Normal dental implants|Surgery Degradation][$activeSlave.teeth = "normal",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "oral"]]
 		<</if>>
 	<<case "pointy">>
 		$His teeth have been replaced with sturdy, realistic implants that mimic the dentition of a predator.
 		<<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>>
-			[[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Normal dental implants|Surgery Degradation][$activeSlave.teeth = "normal",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "oral"]]
+			[[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "teeth"]] | [[Normal dental implants|Surgery Degradation][$activeSlave.teeth = "normal",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "oral"]]
 		<</if>>
 	<<case "baby">>
 		$He has baby teeth.
 		<<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>>
-			[[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "sharp"]] | [[Normal dental implants|Surgery Degradation][$activeSlave.teeth = "normal",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "oral"]]
+			[[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "sharp"]] | [[Normal dental implants|Surgery Degradation][$activeSlave.teeth = "normal",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "oral"]]
 		<</if>>
 	<<case "mixed">>
 		$He has a mix of baby and normal teeth.
 		<<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>>
-			[[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "sharp"]] | [[Normal dental implants|Surgery Degradation][$activeSlave.teeth = "normal",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "oral"]]
+			[[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "sharp"]] | [[Normal dental implants|Surgery Degradation][$activeSlave.teeth = "normal",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "oral"]]
 		<</if>>
 	<<default>>
 		$He has normal, healthy teeth.
 		[[Unnecessary braces|Surgery Degradation][$activeSlave.teeth = "cosmetic braces",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$surgeryType = "braces"]]
 		<<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>>
-			| [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "sharp"]]
+			| [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "sharp"]]
 		<</if>>
 	<</switch>>
 </div>
@@ -500,19 +500,19 @@
 	<<if ($activeSlave.indentureRestrictions < 1) && ($activeSlave.electrolarynx != 1)>>
 		<<if $activeSlave.voice != 0>>
 			<<if $activeSlave.voice < 3>>
-				[[Perform surgery to raise voice|Surgery Degradation][$activeSlave.voice += 1, $activeSlave.voiceImplant += 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "voice"]]
+				[[Perform surgery to raise voice|Surgery Degradation][$activeSlave.voice += 1, $activeSlave.voiceImplant += 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "voice"]]
 			<</if>>
 			<<if $activeSlave.voice == 2>>
 				|
 			<</if>>
 			<<if $activeSlave.voice > 1>>
-				[[Perform surgery to lower voice|Surgery Degradation][$activeSlave.voice -= 1, $activeSlave.voiceImplant -= 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "voice2"]]
+				[[Perform surgery to lower voice|Surgery Degradation][$activeSlave.voice -= 1, $activeSlave.voiceImplant -= 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "voice2"]]
 			<</if>>
 			<<if $seeExtreme == 1>>
 				| [[Remove vocal cords|Surgery Degradation][surgeryAmp($activeSlave, "voicebox"), $surgeryType = "mute", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)]]
 			<</if>>
 		<<elseif isProstheticAvailable($activeSlave, "electrolarynx")>>
-			[["Give " + $him + " an electrolarynx"|Surgery Degradation][$activeSlave.electrolarynx = 1, $activeSlave.voice = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "electrolarynx"]]
+			[["Give " + $him + " an electrolarynx"|Surgery Degradation][$activeSlave.electrolarynx = 1, $activeSlave.voice = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20), $surgeryType = "electrolarynx"]]
 		<</if>>
 	<</if>>
 </div>
@@ -530,14 +530,14 @@
 	<</if>>
 	<<if $activeSlave.indentureRestrictions < 1>>
 		<<if ($activeSlave.smells == 0) && ($seeExtreme == 1)>>
-			| [[Remove sense of smell|Surgery Degradation][$activeSlave.smells = -1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "desmell"]]
+			| [[Remove sense of smell|Surgery Degradation][$activeSlave.smells = -1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "desmell"]]
 		<<elseif $activeSlave.smells == -1>>
-			| [[Repair sense of smell|Surgery Degradation][$activeSlave.smells = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "resmell"]]
+			| [[Repair sense of smell|Surgery Degradation][$activeSlave.smells = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "resmell"]]
 		<</if>>
 		<<if ($activeSlave.tastes == 0) && ($seeExtreme == 1)>>
-			| [[Remove sense of taste|Surgery Degradation][$activeSlave.tastes = -1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "detaste"]]
+			| [[Remove sense of taste|Surgery Degradation][$activeSlave.tastes = -1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "detaste"]]
 		<<elseif $activeSlave.tastes == -1>>
-			| [[Repair sense of taste|Surgery Degradation][$activeSlave.tastes = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "retaste"]]
+			| [[Repair sense of taste|Surgery Degradation][$activeSlave.tastes = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "retaste"]]
 		<</if>>
 	<</if>>
 </div>
@@ -546,10 +546,10 @@
 <div class="indent">
 	<<if $activeSlave.scar["left cheek"]>>
 		$He has <<= App.Desc.expandScarString($activeSlave, "left cheek")>> on $his left cheek.
-		[[Remove all scars there|Surgery Degradation][delete $activeSlave.scar["left cheek"], cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "scarRemov"]]
+		[[Remove all scars there|Surgery Degradation][delete $activeSlave.scar["left cheek"], cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "scarRemov"]]
 	<<else>>
-		$His face is unscarred. [[Give a menacing scar|Surgery Degradation][App.Medicine.Modification.addScar($activeSlave, "left cheek", "menacing"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "scarFear"]] |
-		[[Give an exotic scar|Surgery Degradation][App.Medicine.Modification.addScar($activeSlave, "left cheek", "exotic"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "scarExo"]]
+		$His face is unscarred. [[Give a menacing scar|Surgery Degradation][App.Medicine.Modification.addScar($activeSlave, "left cheek", "menacing"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "scarFear"]] |
+		[[Give an exotic scar|Surgery Degradation][App.Medicine.Modification.addScar($activeSlave, "left cheek", "exotic"), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "scarExo"]]
 	<</if>>
 </div>
 
@@ -629,16 +629,16 @@
 				//$His supportive mesh implant prevents reconstruction//
 			<<else>>
 				<<if ($activeSlave.boobShape == "saggy") || ($activeSlave.boobShape == "downward-facing")>>
-					[[Breast lift|Surgery Degradation][$activeSlave.boobShape = "normal", $activeSlave.health -= 20,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "breastLift"]]<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.42 || ($activeSlave.boobs >= 5000 && $activeSlave.boobs < 8000)>> //$His current state may result in $his breasts becoming saggy again//<</if>>
+					[[Breast lift|Surgery Degradation][$activeSlave.boobShape = "normal", healthDamage($activeSlave,20),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "breastLift"]]<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.42 || ($activeSlave.boobs >= 5000 && $activeSlave.boobs < 8000)>> //$His current state may result in $his breasts becoming saggy again//<</if>>
 				<<else>>
 					<<if ($activeSlave.boobShape == "normal")>>
-						[[Reshape them to be perkier|Surgery Degradation][$activeSlave.boobShape = "perky",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "breastReconstruction"]]
-						| [[Make them torpedo-shaped|Surgery Degradation][$activeSlave.boobShape = "torpedo-shaped",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "breastReconstruction"]]
+						[[Reshape them to be perkier|Surgery Degradation][$activeSlave.boobShape = "perky",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "breastReconstruction"]]
+						| [[Make them torpedo-shaped|Surgery Degradation][$activeSlave.boobShape = "torpedo-shaped",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "breastReconstruction"]]
 					<<else>>
-						[[Reshape them to be more normal|Surgery Degradation][$activeSlave.boobShape = "normal",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "breastReconstruction"]]
+						[[Reshape them to be more normal|Surgery Degradation][$activeSlave.boobShape = "normal",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "breastReconstruction"]]
 					<</if>>
 					<<if ($activeSlave.boobShape != "saggy") && ($activeSlave.boobShape != "downward-facing") && ($activeSlave.boobs >= 2000) && ($activeSlave.boobsImplant == 0) && ($meshImplants == 1) && ($surgeryUpgrade == 1)>>
-						| [[Implant a supportive mesh to preserve their shape|Surgery Degradation][$activeSlave.breastMesh = 1,cashX(forceNeg($surgeryCost*($activeSlave.boobs/100)), "slaveSurgery", $activeSlave),$activeSlave.health -= 10,$surgeryType = "breastShapePreservation"]]
+						| [[Implant a supportive mesh to preserve their shape|Surgery Degradation][$activeSlave.breastMesh = 1,cashX(forceNeg($surgeryCost*($activeSlave.boobs/100)), "slaveSurgery", $activeSlave),healthDamage($activeSlave,10),$surgeryType = "breastShapePreservation"]]
 					<</if>>
 				<</if>>
 			<</if>>
@@ -656,7 +656,7 @@
 			//$His indenture forbids extreme body modification//
 		<<else>> /* split for possible dicknips later on, should lcd wish to attempt it again. */
 			<<if $activeSlave.nipples == "fuckable">>
-				[[Restore their shape and function|Surgery Degradation][$activeSlave.nipples = "huge",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "areolae"]]
+				[[Restore their shape and function|Surgery Degradation][$activeSlave.nipples = "huge",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "areolae"]]
 			<<else>>
 				<<if $activeSlave.boobs-$activeSlave.boobsMilk < 500>>
 					//$His breasts are too small to support reshaping $his nipples to be penetratable//
@@ -665,7 +665,7 @@
 				<<elseif $activeSlave.nipples != "huge">>
 					//$His nipples are too small to be made fuckable//
 				<<else>>
-					[[Reshape them to support being penetrated|Surgery Degradation][$activeSlave.nipples = "fuckable",$activeSlave.nipplesPiercing = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "nippleCunts"]]<<if $activeSlave.nipplesPiercing > 0>> //Will remove piercings.//<</if>>
+					[[Reshape them to support being penetrated|Surgery Degradation][$activeSlave.nipples = "fuckable",$activeSlave.nipplesPiercing = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "nippleCunts"]]<<if $activeSlave.nipplesPiercing > 0>> //Will remove piercings.//<</if>>
 				<</if>>
 			<</if>>
 		<</if>>
@@ -684,24 +684,24 @@
 	<<if $activeSlave.indentureRestrictions < 2>>
 		<<if $activeSlave.areolaeShape != "circle">>
 			$His <<= $activeSlave.areolaeShape>>-shaped areolae can be normalized or reshaped:
-			[[Normal|Surgery Degradation][$activeSlave.areolaeShape = "circle",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "areolae"]]
+			[[Normal|Surgery Degradation][$activeSlave.areolaeShape = "circle",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "areolae"]]
 			<<if $activeSlave.areolaeShape != "heart">>
-				| [[Heart-shaped|Surgery Degradation][$activeSlave.areolaeShape = "heart",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "areolae"]]
+				| [[Heart-shaped|Surgery Degradation][$activeSlave.areolaeShape = "heart",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "areolae"]]
 			<</if>>
 			<<if $activeSlave.areolaeShape != "star">>
-				| [[Star-shaped|Surgery Degradation][$activeSlave.areolaeShape = "star",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "areolae"]] |
+				| [[Star-shaped|Surgery Degradation][$activeSlave.areolaeShape = "star",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "areolae"]] |
 			<</if>>
 		<</if>>
 		<<if ($activeSlave.areolae > 0) && ($activeSlave.areolaeShape == "circle")>>
 			They are big enough that they could be reshaped into a pattern. Graft skin to make $his areolae:
-			[[Heart-shaped|Surgery Degradation][$activeSlave.areolaeShape = "heart",$activeSlave.areolae -= 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "areolae"]]
-			| [[Star-shaped|Surgery Degradation][$activeSlave.areolaeShape = "star",$activeSlave.areolae -= 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "areolae"]]
+			[[Heart-shaped|Surgery Degradation][$activeSlave.areolaeShape = "heart",$activeSlave.areolae -= 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "areolae"]]
+			| [[Star-shaped|Surgery Degradation][$activeSlave.areolaeShape = "star",$activeSlave.areolae -= 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "areolae"]]
 		<</if>>
 		<<if $activeSlave.areolae > 0>>
-			| [[Reduce areolae|Surgery Degradation][$activeSlave.areolae -= 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "areolae"]]
+			| [[Reduce areolae|Surgery Degradation][$activeSlave.areolae -= 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "areolae"]]
 		<</if>>
 		<<if $activeSlave.areolae < 4>>
-			| [[Enlarge areolae|Surgery Degradation][$activeSlave.areolae += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "areolae"]]
+			| [[Enlarge areolae|Surgery Degradation][$activeSlave.areolae += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "areolae"]]
 		<</if>>
 	<</if>>
 </div>
@@ -717,7 +717,7 @@
 	<</if>>
 	<<if $activeSlave.lactation < 2>>
 		<<if $activeSlave.indentureRestrictions < 2>>
-			[[Implant slow-release pro-lactation drugs|Surgery Degradation][$activeSlave.lactation = 2, $activeSlave.lactationDuration = 2, $activeSlave.induceLactation = 0, $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "lactation"]] //This may increase $his natural breast size//
+			[[Implant slow-release pro-lactation drugs|Surgery Degradation][$activeSlave.lactation = 2, $activeSlave.lactationDuration = 2, $activeSlave.induceLactation = 0, $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "lactation"]] //This may increase $his natural breast size//
 		<</if>>
 	<</if>>
 	<<if $activeSlave.lactation > 1>>
@@ -733,14 +733,14 @@
 		//$His indenture forbids elective surgery//
 	<<elseif $activeSlave.weight > 30>>
 		<<if $activeSlave.weight > 190>>
-			$He is extremely fat. [[Major liposuction|Surgery Degradation][$activeSlave.health -= 40, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "liposuction"]]
+			$He is extremely fat. [[Major liposuction|Surgery Degradation][healthDamage($activeSlave,40), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "liposuction"]]
 		<<elseif $activeSlave.weight > 130>>
-			$He is fat. [[Heavy liposuction|Surgery Degradation][$activeSlave.health -= 20, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "liposuction"]]
+			$He is fat. [[Heavy liposuction|Surgery Degradation][healthDamage($activeSlave,20), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "liposuction"]]
 		<<elseif $activeSlave.weight > 30>>
-			$He is overweight. [[Liposuction|Surgery Degradation][$activeSlave.health -= 10, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "liposuction"]]
+			$He is overweight. [[Liposuction|Surgery Degradation][healthDamage($activeSlave,10), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "liposuction"]]
 		<</if>>
 		<<if $surgeryUpgrade == 1>>
-			| [[Fat grafting|fat grafting workaround][$activeSlave.health -= 40, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)*2, $availabeFat = Math.round($activeSlave.weight/10), $boobFat = 0, $buttFat = 0, $surgeryType = "fat graft"]]
+			| [[Fat grafting|fat grafting workaround][healthDamage($activeSlave,40), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)*2, $availabeFat = Math.round($activeSlave.weight/10), $boobFat = 0, $buttFat = 0, $surgeryType = "fat graft"]]
 		<</if>>
 	<</if>>
 </div>
@@ -759,12 +759,12 @@
 	waist.
 	<<if $activeSlave.waist >= -75>>
 		<<if $activeSlave.indentureRestrictions < 2>>
-			[[Liposuction|Surgery Degradation][$activeSlave.waist -= 20,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "lipo"]]
+			[[Liposuction|Surgery Degradation][$activeSlave.waist -= 20,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "lipo"]]
 		<</if>>
 	<</if>>
 	<<if ($activeSlave.waist >= -95) && ($activeSlave.waist < -75) && ($seeExtreme == 1)>>
 		<<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0 || $eugenicsFullControl == 1 || $arcologies[0].FSRestart == "unset")>>
-			[["Remove ribs to severely narrow " + $his + " waist"|Surgery Degradation][$activeSlave.waist = -100,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "ribs"]]
+			[["Remove ribs to severely narrow " + $his + " waist"|Surgery Degradation][$activeSlave.waist = -100,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "ribs"]]
 		<</if>>
 	<</if>>
 </div>
@@ -827,34 +827,34 @@
 	<<elseif $activeSlave.bellyImplant > 130000 && $arcologies[0].FSTransformationFetishistResearch != 1>>
 		//$His abdominal implant is at its capacity//
 	<<elseif $activeSlave.bellyImplant == -1 && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && $bellyImplants == 1>>
-		[[Implant fillable abdominal implant|Surgery Degradation][$activeSlave.bellyImplant = 0,$activeSlave.preg = -2, $activeSlave.bellyPain += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "bellyIn"]]
+		[[Implant fillable abdominal implant|Surgery Degradation][$activeSlave.bellyImplant = 0,$activeSlave.preg = -2, $activeSlave.bellyPain += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "bellyIn"]]
 	<<elseif $activeSlave.bellyImplant == -1 && $bellyImplants == 1>>
-		[[Implant a fillable abdominal implant|Surgery Degradation][$activeSlave.bellyImplant = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.bellyPain += 2, $activeSlave.health -= 50, $surgeryType = "bellyInMale"]]
+		[[Implant a fillable abdominal implant|Surgery Degradation][$activeSlave.bellyImplant = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.bellyPain += 2, healthDamage($activeSlave,50), $surgeryType = "bellyInMale"]]
 	<<elseif $activeSlave.bellyPain == 2>>
 		//$His body cannot handle more filler this week//
 	<<elseif $activeSlave.bellyImplant > -1 && $activeSlave.bellyPain == 0>>
-		[[Add inert filler|Surgery Degradation][$activeSlave.bellyImplant += 200, $activeSlave.bellyPain += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "bellyUp"]]
-		| [[Add a considerable amount of inert filler|Surgery Degradation][$activeSlave.bellyImplant += 500, $activeSlave.bellyPain += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "bellyUp"]]
+		[[Add inert filler|Surgery Degradation][$activeSlave.bellyImplant += 200, $activeSlave.bellyPain += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "bellyUp"]]
+		| [[Add a considerable amount of inert filler|Surgery Degradation][$activeSlave.bellyImplant += 500, $activeSlave.bellyPain += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "bellyUp"]]
 	<<elseif $activeSlave.bellyImplant > -1 && $activeSlave.bellyPain == 1>>
-		[[Add more inert filler|Surgery Degradation][$activeSlave.bellyImplant += 200, $activeSlave.bellyPain += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 30,$surgeryType = "bellyUp"]]
-		| [[Add a considerable amount of inert filler|Surgery Degradation][$activeSlave.bellyImplant += 500, $activeSlave.bellyPain += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "bellyUp"]]<<if $activeSlave.health < 0>>//@@.red;This may cause severe health issues//<</if>>
+		[[Add more inert filler|Surgery Degradation][$activeSlave.bellyImplant += 200, $activeSlave.bellyPain += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,30),$surgeryType = "bellyUp"]]
+		| [[Add a considerable amount of inert filler|Surgery Degradation][$activeSlave.bellyImplant += 500, $activeSlave.bellyPain += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "bellyUp"]]<<if $activeSlave.health.health < 0>>//@@.red;This may cause severe health issues//<</if>>
 	<</if>>
 	<<if $activeSlave.bellyImplant > -1>>
-		| [[Drain implant|Surgery Degradation][$activeSlave.bellyImplant -= 200,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "bellyDown"]]
+		| [[Drain implant|Surgery Degradation][$activeSlave.bellyImplant -= 200,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "bellyDown"]]
 		<<if $activeSlave.bellyImplant >= 500>>
-			| [[Greatly drain implant|Surgery Degradation][$activeSlave.bellyImplant -= 500, $activeSlave.health -= 5,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "bellyDown"]]
+			| [[Greatly drain implant|Surgery Degradation][$activeSlave.bellyImplant -= 500, healthDamage($activeSlave,5),cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "bellyDown"]]
 		<</if>>
 		<<if $activeSlave.indentureRestrictions < 2>>
-			| [[Remove implant|Surgery Degradation][$activeSlave.bellyImplant = -1, $activeSlave.cervixImplant = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "bellyOut"]]
+			| [[Remove implant|Surgery Degradation][$activeSlave.bellyImplant = -1, $activeSlave.cervixImplant = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "bellyOut"]]
 			<<if $activeSlave.cervixImplant != 1 && $activeSlave.cervixImplant != 3 && $cervixImplants >= 1 && $activeSlave.vagina > -1>> /* slave should have vagina */
 				<div class="indent">
-					[[Install cervix micropump filter|Surgery Degradation][$activeSlave.cervixImplant = ($activeSlave.cervixImplant==0?1:3), $activeSlave.health -= 5, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "cervixPump"]]
+					[[Install cervix micropump filter|Surgery Degradation][$activeSlave.cervixImplant = ($activeSlave.cervixImplant==0?1:3), healthDamage($activeSlave, 5), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "cervixPump"]]
 					//Will allow $his belly implant to slowly swell as people cum in $his vagina//
 				</div>
 			<</if>>
 			<<if $activeSlave.cervixImplant != 2 && $activeSlave.cervixImplant != 3 && $cervixImplants == 2>>
 				<div class="indent">
-					[[Install rectal micropump filter|Surgery Degradation][$activeSlave.cervixImplant = ($activeSlave.cervixImplant==0?2:3), $activeSlave.health -= 20, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "cervixPumpA"]]
+					[[Install rectal micropump filter|Surgery Degradation][$activeSlave.cervixImplant = ($activeSlave.cervixImplant==0?2:3), healthDamage($activeSlave, 20), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "cervixPumpA"]]
 					//Will allow $his belly implant to slowly swell as people cum in $his anus//
 				</div>
 			<</if>>
@@ -873,7 +873,7 @@
 		<<else>>
 			<<if $surgeryUpgrade == 1>>
 				<<if $UterineRestraintMesh == 1>>
-					[[Install reinforcing organic mesh|Surgery Degradation][$activeSlave.wombImplant = "restraint", $activeSlave.health -= 25, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "womb"]]
+					[[Install reinforcing organic mesh|Surgery Degradation][$activeSlave.wombImplant = "restraint", healthDamage($activeSlave,25), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "womb"]]
 				<</if>>
 			<</if>>
 		<</if>>
@@ -884,7 +884,7 @@
 		<<elseif $activeSlave.bellyImplant > 0 || $activeSlave.preg > 0>>
 			//$His womb is currently in use and unsafe to operate on//
 		<<else>>
-			[[Remove organic mesh|Surgery Degradation][$activeSlave.wombImplant = "none", $activeSlave.health -= 50, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "womb"]]<<if $activeSlave.health < 0>>//@@.red;This may cause severe health issues//<</if>>
+			[[Remove organic mesh|Surgery Degradation][$activeSlave.wombImplant = "none", healthDamage($activeSlave,50), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "womb"]]<<if $activeSlave.health.health < 0>>//@@.red;This may cause severe health issues//<</if>>
 		<</if>>
 	<</if>>
 </div>
@@ -896,14 +896,14 @@
 			$He has a sagging midriff, ruined from excessive pregnancy. It is currently filled out by $his swollen belly and cannot safely be worked on.
 		<<else>>
 			$He has a sagging midriff, ruined from excessive pregnancy.
-			[[Tummy tuck|Surgery Degradation][$activeSlave.bellySag = 0,$activeSlave.bellySagPreg = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "tummyTuck"]]
+			[[Tummy tuck|Surgery Degradation][$activeSlave.bellySag = 0,$activeSlave.bellySagPreg = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "tummyTuck"]]
 		<</if>>
 	<<elseif $activeSlave.bellySag > 0>>
 		<<if $activeSlave.belly >= 1500>>
 			$He has a sagging midriff, ruined from excessive distention. It is currently filled out by $his swollen belly and cannot safely be worked on.
 		<<else>>
 			$He has a sagging midriff, ruined from excessive distention.
-			[[Tummy tuck|Surgery Degradation][$activeSlave.bellySag = 0,$activeSlave.bellySagPreg = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "tummyTuck"]]
+			[[Tummy tuck|Surgery Degradation][$activeSlave.bellySag = 0,$activeSlave.bellySagPreg = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "tummyTuck"]]
 		<</if>>
 	<</if>>
 </div>
@@ -916,7 +916,7 @@
 			<<link "Remove Caesarean scar">>
 				<<run App.Medicine.Modification.removeScar($activeSlave, "belly", "c-section")>>
 				<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-				<<set $activeSlave.health -= 10,$surgeryType = "bellyscar">>
+				<<set healthDamage($activeSlave,10),$surgeryType = "bellyscar">>
 				<<goto "Surgery Degradation">>
 			<</link>>
 		<</if>>
@@ -987,13 +987,13 @@
 		<</if>>
 		<<if $activeSlave.labia > 0>>
 			<<if $activeSlave.indentureRestrictions < 2>>
-				[[Apply labiaplasty|Surgery Degradation][$activeSlave.labia = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "labiaplasty"]]
+				[[Apply labiaplasty|Surgery Degradation][$activeSlave.labia = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "labiaplasty"]]
 			<</if>>
 		<</if>>
 		<<if ($activeSlave.labia < 3) && ($surgeryUpgrade == 1)>>
 			<<if $activeSlave.indentureRestrictions < 1>>
 				<<if $activeSlave.labia > 0>> | <</if>>
-				[[Increase labia|Surgery Degradation][$activeSlave.labia += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "labiaplasty"]]
+				[[Increase labia|Surgery Degradation][$activeSlave.labia += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "labiaplasty"]]
 			<</if>>
 		<</if>>
 		<div class="indent">
@@ -1010,19 +1010,19 @@
 				<</if>>
 				<<if $activeSlave.clit > 0>>
 					<<if $activeSlave.indentureRestrictions < 2>>
-						[[Apply clitoral reduction|Surgery Degradation][$activeSlave.clit = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "clitoral reduction"]]
+						[[Apply clitoral reduction|Surgery Degradation][$activeSlave.clit = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "clitoral reduction"]]
 					<</if>>
 				<</if>>
 				<<if ($activeSlave.clit < 3) && ($surgeryUpgrade == 1)>>
 					<<if $activeSlave.indentureRestrictions < 1>>
 						<<if $activeSlave.clit > 0>> | <</if>>
-						[[Increase clit|Surgery Degradation][$activeSlave.clit += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "clitoral enlargement"]]
+						[[Increase clit|Surgery Degradation][$activeSlave.clit += 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "clitoral enlargement"]]
 					<</if>>
 				<</if>>
 				<<if ($activeSlave.foreskin > 0) && $activeSlave.clit > 0>>
 					<<if $seeCircumcision == 1>>
 						<<if $activeSlave.indentureRestrictions < 2>>
-							| [[Remove clitoral hood|Surgery Degradation][$activeSlave.foreskin = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "circumcision"]]
+							| [[Remove clitoral hood|Surgery Degradation][$activeSlave.foreskin = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "circumcision"]]
 						<</if>>
 					<</if>>
 				<</if>>
@@ -1049,10 +1049,10 @@
 
 	<<if ($activeSlave.preg > -2) && ($activeSlave.preg < 1) && ($activeSlave.ovaries != 0 || $activeSlave.mpreg != 0)>>
 		<<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0 || $eugenicsFullControl == 1 || $arcologies[0].FSRestart == "unset")>>
-		[[Sterilize|Surgery Degradation][$activeSlave.preg = -2,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "ster"]]
+		[[Sterilize|Surgery Degradation][$activeSlave.preg = -2,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "ster"]]
 		<</if>>
 	<<elseif ($activeSlave.preg < 1) && ($activeSlave.ovaries != 0 || $activeSlave.mpreg != 0) && ($activeSlave.preg != -3)>>
-		[[Restore fertility|Surgery Degradation][$activeSlave.preg = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "fert"]]
+		[[Restore fertility|Surgery Degradation][$activeSlave.preg = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "fert"]]
 	<</if>>
 
 	<<if ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1)>>
@@ -1069,19 +1069,19 @@
 				<<switch $activeSlave.ovaImplant>>
 				<<case "fertility">>
 					They have fertility implants attached to them.
-					[[Remove implants|Surgery Degradation][$activeSlave.ovaImplant = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "ovaImplant removed"]]
+					[[Remove implants|Surgery Degradation][$activeSlave.ovaImplant = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "ovaImplant removed"]]
 				<<case "sympathy">>
 					They are linked via implants and ovulate in concert.
-					[[Remove implants|Surgery Degradation][$activeSlave.ovaImplant = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "ovaImplant removed"]]
+					[[Remove implants|Surgery Degradation][$activeSlave.ovaImplant = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "ovaImplant removed"]]
 				<<case "asexual">>
 					One has been replaced with a sperm producing analog for self-fertilization.
 				<</switch>>
 			<<else>>
 				<<if $fertilityImplant == 1>>
-					[[Install fertility implants|Surgery Degradation][$activeSlave.ovaImplant = "fertility",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "ovaImplant added"]]
+					[[Install fertility implants|Surgery Degradation][$activeSlave.ovaImplant = "fertility",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "ovaImplant added"]]
 				<</if>>
 				<<if $sympatheticOvaries == 1>>
-					[[Install sympathetic ovulation implants|Surgery Degradation][$activeSlave.ovaImplant = "sympathy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "ovaImplant added"]]
+					[[Install sympathetic ovulation implants|Surgery Degradation][$activeSlave.ovaImplant = "sympathy",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "ovaImplant added"]]
 				<</if>>
 			<</if>>
 		</div>
@@ -1092,14 +1092,14 @@
 				<<if $activeSlave.preg > 0>>
 					$His ovaries and womb cannot be removed while $he is pregnant.
 				<<else>>
-					[[Oophorectomy|Surgery Degradation][$activeSlave.ovaries = 0,$activeSlave.ovaImplant = 0,$activeSlave.wombImplant = "none",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "ster"]]
+					[[Oophorectomy|Surgery Degradation][$activeSlave.ovaries = 0,$activeSlave.ovaImplant = 0,$activeSlave.wombImplant = "none",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "ster"]]
 				<</if>>
 			<</if>>
 			<<if $activeSlave.mpreg == 1>>
 				<<if $activeSlave.preg > 0>>
 					$His anal womb cannot be removed while $he is pregnant.
 				<<else>>
-					[[Remove anal reproductive organs|Surgery Degradation][$activeSlave.mpreg = 0,$activeSlave.ovaImplant = 0, $activeSlave.wombImplant = "none",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 30,$surgeryType = "mpreg removed"]]
+					[[Remove anal reproductive organs|Surgery Degradation][$activeSlave.mpreg = 0,$activeSlave.ovaImplant = 0, $activeSlave.wombImplant = "none",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,30),$surgeryType = "mpreg removed"]]
 				<</if>>
 			<</if>>
 		<</if>>
@@ -1112,12 +1112,12 @@
 				<<elseif $activeSlave.broodmother > 0>>
 					$He has been made into a <<if $activeSlave.broodmother > 1>>hyper-<</if>>broodmother.
 					<<if $activeSlave.womb.length == 0 >>
-						[[Remove the pregnancy generator|Surgery Degradation][$activeSlave.preg = 0,$activeSlave.pregWeek = -2,$activeSlave.pregSource = 0,$activeSlave.pregWeek = 0,$activeSlave.pregKnown = 0,$activeSlave.pregType = 0,$activeSlave.broodmother = 0,$activeSlave.broodmotherFetuses = 0,$activeSlave.broodmotherOnHold = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.pregControl = "none",$activeSlave.health -= 10,$surgeryType = "pregRemove"]]
+						[[Remove the pregnancy generator|Surgery Degradation][$activeSlave.preg = 0,$activeSlave.pregWeek = -2,$activeSlave.pregSource = 0,$activeSlave.pregWeek = 0,$activeSlave.pregKnown = 0,$activeSlave.pregType = 0,$activeSlave.broodmother = 0,$activeSlave.broodmotherFetuses = 0,$activeSlave.broodmotherOnHold = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.pregControl = "none",healthDamage($activeSlave,10),$surgeryType = "pregRemove"]]
 					<<else>>
 						$He is pregnant right now, so $his broodmother implant can't be safely extracted.
 						<div class="double-indent">
 							<<if $activeSlave.broodmother == 1 && $activeSlave.broodmotherFetuses == 1>> /*hack can be applied only one time, for type 1 broodmothers, and only if implant already present*/
-								[[Hack the pregnancy generator|Surgery Degradation][cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.pregControl = "none",$activeSlave.health -= 1,$surgeryType = "preg1hack"]] //This will trick the generator ova release logic, forcing it to release more than one ova each week. This is an untested override and can cause severe health problems.//
+								[[Hack the pregnancy generator|Surgery Degradation][cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.pregControl = "none",healthDamage($activeSlave,1),$surgeryType = "preg1hack"]] //This will trick the generator ova release logic, forcing it to release more than one ova each week. This is an untested override and can cause severe health problems.//
 							<<elseif $activeSlave.broodmother == 1 && $activeSlave.broodmotherFetuses > 1>>
 								The implant firmware has already been adjusted.
 							<</if>>
@@ -1127,7 +1127,7 @@
 					//$He is protected from extreme surgery//
 				<<elseif isFertile($activeSlave) && $activeSlave.ovaryAge <= 46>>
 					$He could be made into a broodmother.
-					[[Implant a pregnancy generator|Surgery Degradation][$activeSlave.preg = 1,$activeSlave.pregWeek = 1,$activeSlave.pregKnown = 1,$activeSlave.pregType = 1,$activeSlave.broodmother = 1,$activeSlave.broodmotherFetuses = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.pregControl = "none",$activeSlave.health -= 10,$surgeryType = "preg"]] //This will have severe effects on $his health and mind//
+					[[Implant a pregnancy generator|Surgery Degradation][$activeSlave.preg = 1,$activeSlave.pregWeek = 1,$activeSlave.pregKnown = 1,$activeSlave.pregType = 1,$activeSlave.broodmother = 1,$activeSlave.broodmotherFetuses = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.pregControl = "none",healthDamage($activeSlave,10),$surgeryType = "preg"]] //This will have severe effects on $his health and mind//
 				<<else>>
 					$His body cannot support being a broodmother.
 				<</if>>
@@ -1190,10 +1190,10 @@
 
 	<<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0 || $eugenicsFullControl == 1 || $arcologies[0].FSRestart == "unset")>>
 		<<if ($activeSlave.vagina == -1) && ($activeSlave.dick != 0)>>
-			| [[Convert genitalia to female|Surgery Degradation][$activeSlave.dick = 0,$activeSlave.dickAccessory = "none",$activeSlave.chastityPenis = 0,$activeSlave.dickTat = 0,$activeSlave.foreskin = 0,$activeSlave.scrotum = 0,$activeSlave.balls = 0,$activeSlave.ballType = "human",$activeSlave.vasectomy = 0,$activeSlave.vagina = 0,$activeSlave.preg = -2,$activeSlave.skill.vaginal = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $surgeryType = "mtf"]]
+			| [[Convert genitalia to female|Surgery Degradation][$activeSlave.dick = 0,$activeSlave.dickAccessory = "none",$activeSlave.chastityPenis = 0,$activeSlave.dickTat = 0,$activeSlave.foreskin = 0,$activeSlave.scrotum = 0,$activeSlave.balls = 0,$activeSlave.ballType = "human",$activeSlave.vasectomy = 0,$activeSlave.vagina = 0,$activeSlave.preg = -2,$activeSlave.skill.vaginal = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $surgeryType = "mtf"]]
 		<</if>>
 		<<if ($activeSlave.vagina == -1) && ($activeSlave.dick == 0) && ($surgeryUpgrade == 1)>>
-			| [[Create a vagina|Surgery Degradation][$activeSlave.vagina = 0,$activeSlave.skill.vaginal = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $surgeryType = "ntf"]]
+			| [[Create a vagina|Surgery Degradation][$activeSlave.vagina = 0,$activeSlave.skill.vaginal = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $surgeryType = "ntf"]]
 		<</if>>
 		<<if ($activeSlave.dick > 0) && ($seeExtreme == 1)>>
 			| [[Remove penis|Surgery Degradation][surgeryAmp($activeSlave, "dick"), $surgeryType = "chop", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)]]
@@ -1201,10 +1201,10 @@
 		<<if ($activeSlave.foreskin > 0) && $activeSlave.dick > 0>>
 			<<if $activeSlave.indentureRestrictions < 2>>
 				<<if $seeCircumcision == 1>>
-					| [[Remove foreskin|Surgery Degradation][$activeSlave.foreskin = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "circumcision"]]
+					| [[Remove foreskin|Surgery Degradation][$activeSlave.foreskin = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "circumcision"]]
 				<</if>>
 				<<if $activeSlave.foreskin - $activeSlave.dick > 0>>
-					| [[Remove excess foreskin|Surgery Degradation][$activeSlave.foreskin = $activeSlave.dick,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "foreskinTuck"]]
+					| [[Remove excess foreskin|Surgery Degradation][$activeSlave.foreskin = $activeSlave.dick,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "foreskinTuck"]]
 				<</if>>
 			<</if>>
 		<</if>>
@@ -1212,7 +1212,7 @@
 
 	<<if ($activeSlave.dick != 0) && ($activeSlave.vagina == -1) && ($surgeryUpgrade == 1)>>
 		<<if $activeSlave.indentureRestrictions < 1>>
-			| [[Create surgical hermaphrodite|Surgery Degradation][$activeSlave.vagina = 0,$activeSlave.skill.vaginal = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $surgeryType = "herm"]]
+			| [[Create surgical hermaphrodite|Surgery Degradation][$activeSlave.vagina = 0,$activeSlave.skill.vaginal = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $surgeryType = "herm"]]
 		<</if>>
 	<</if>>
 </div>
@@ -1221,14 +1221,14 @@
 <div class="indent">
 	<<if ($activeSlave.vagina > 3)>>
 		$His vagina could benefit from surgical repair.
-		[[Repair pussy|Surgery Degradation][$activeSlave.vagina = 3,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "vagina"]] //This will reduce $his vaginal skills//
+		[[Repair pussy|Surgery Degradation][$activeSlave.vagina = 3,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "vagina"]] //This will reduce $his vaginal skills//
 	<<elseif ($surgeryUpgrade == 1) && ($activeSlave.indentureRestrictions < 2)>>
 		<<if ($activeSlave.vagina > 1)>>
 			$His vaginal muscles could benefit from microsurgical rejuvenation.
-			[[Tighten pussy|Surgery Degradation][$activeSlave.vagina = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "vagina"]] //This will reduce $his vaginal skills//
+			[[Tighten pussy|Surgery Degradation][$activeSlave.vagina = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "vagina"]] //This will reduce $his vaginal skills//
 		<<elseif ($activeSlave.vagina > 0)>>
 			$His pussy is as tight as a virgin's, and $his hymen could be restored.
-			[[Restore virginity|Surgery Degradation][$activeSlave.vagina = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "vagina"]] //This will reduce $his vaginal skills//
+			[[Restore virginity|Surgery Degradation][$activeSlave.vagina = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "vagina"]] //This will reduce $his vaginal skills//
 		<</if>>
 	<</if>>
 </div>
@@ -1244,12 +1244,12 @@
 			located in $his scrotum.
 			<<if $activeSlave.indentureRestrictions < 2>>
 				<<if $activeSlave.scrotum - $activeSlave.balls > 0>>
-					[[Remove excess scrotal skin|Surgery Degradation][$activeSlave.scrotum = $activeSlave.balls,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "scrotalTuck"]]
+					[[Remove excess scrotal skin|Surgery Degradation][$activeSlave.scrotum = $activeSlave.balls,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "scrotalTuck"]]
 					<<if $activeSlave.indentureRestrictions < 1>> | <</if>>
 				<</if>>
 			<</if>>
 			<<if $activeSlave.indentureRestrictions < 1>>
-				[[Move them inside abdomen and remove scrotum|Surgery Degradation][$activeSlave.scrotum = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "relocate"]]
+				[[Move them inside abdomen and remove scrotum|Surgery Degradation][$activeSlave.scrotum = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20), $surgeryType = "relocate"]]
 				//This will have a negative impact on cum production//
 			<</if>>
 		<<else>>
@@ -1263,7 +1263,7 @@
 			<<if ($activeSlave.scrotum > 0)>>
 				|
 			<</if>>
-			[[Geld|Surgery Degradation][$activeSlave.balls = 0,$activeSlave.ballType = "human",$activeSlave.scrotum = 0,$activeSlave.vasectomy = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $surgeryType = "geld"]]
+			[[Geld|Surgery Degradation][$activeSlave.balls = 0,$activeSlave.ballType = "human",$activeSlave.scrotum = 0,$activeSlave.vasectomy = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $surgeryType = "geld"]]
 		<</if>>
 		<<if $activeSlave.ballType != "sterile">>
 			<<if ($activeSlave.scrotum > 0)>>
@@ -1274,17 +1274,17 @@
 		<div class="indent">
 			<<if ($activeSlave.vasectomy == 1)>>
 				$He has had a vasectomy and shoots blanks when $he cums<<if $activeSlave.pubertyXY == 0 || $activeSlave.ballType == "sterile">>, or would, if $he were potent<</if>>.
-				[[Reverse vasectomy|Surgery Degradation][$activeSlave.vasectomy = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "vasectomy undo"]]
+				[[Reverse vasectomy|Surgery Degradation][$activeSlave.vasectomy = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "vasectomy undo"]]
 			<<else>>
 				<<if $activeSlave.ballType == "sterile">>
 					$He has non-functional testicles.
 					<<if $activeSlave.indentureRestrictions < 1>>
-						[[Clamp vas deferens|Surgery Degradation][$activeSlave.vasectomy = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "vasectomy"]]
+						[[Clamp vas deferens|Surgery Degradation][$activeSlave.vasectomy = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "vasectomy"]]
 					<</if>>
 				<<else>>
 					$He has working testicles<<if $activeSlave.pubertyXY == 0>>, though $he isn't potent<</if>>.
 					<<if $activeSlave.indentureRestrictions < 1>>
-						[[Clamp vas deferens to cull potency|Surgery Degradation][$activeSlave.vasectomy = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "vasectomy"]]
+						[[Clamp vas deferens to cull potency|Surgery Degradation][$activeSlave.vasectomy = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "vasectomy"]]
 					<</if>>
 				<</if>>
 			<</if>>
@@ -1299,11 +1299,11 @@
 		<<if $activeSlave.prostate >= 2 && $prostateImplants == 1>>
 			<<if $activeSlave.prostate < 3>>
 				<<if $activeSlave.indentureRestrictions < 2>>
-				[[Implant prostate with an ejaculation boosting implant|Surgery Degradation][$activeSlave.prostate = 3,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "ejaculation"]] //This will thin $his ejaculate but greatly increase its quantity//
+				[[Implant prostate with an ejaculation boosting implant|Surgery Degradation][$activeSlave.prostate = 3,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "ejaculation"]] //This will thin $his ejaculate but greatly increase its quantity//
 				<</if>>
 			<</if>>
 			<<if $activeSlave.prostate == 3>>
-				| [[Remove ejaculation implant|Surgery Degradation][$activeSlave.prostate = 2,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "endejac"]]
+				| [[Remove ejaculation implant|Surgery Degradation][$activeSlave.prostate = 2,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "endejac"]]
 			<<elseif $activeSlave.prostate == 2>>
 				| [[Remove drug implant|Surgery Degradation][$activeSlave.prostate=1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$surgeryType="endprecum"]]
 			<</if>>
@@ -1313,13 +1313,13 @@
 			<</if>>
 			<<if $activeSlave.prostate < 2>>
 				<<if $activeSlave.indentureRestrictions < 2>>
-					| [[Implant slow-release productivity drugs|Surgery Degradation][$activeSlave.prostate=2,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$activeSlave.health-=10,$surgeryType="precum"]] //This may cause some leaking//
+					| [[Implant slow-release productivity drugs|Surgery Degradation][$activeSlave.prostate=2,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),healthDamage($activeSlave, 10),$surgeryType="precum"]] //This may cause some leaking//
 				<</if>>
 			<</if>>
 		<</if>>
 		<<if ($seeExtreme == 1)>>
 			<<if $activeSlave.indentureRestrictions < 1>>
-				| [[Remove prostate|Surgery Degradation][$activeSlave.prostate = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $surgeryType = "prostate"]]
+				| [[Remove prostate|Surgery Degradation][$activeSlave.prostate = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $surgeryType = "prostate"]]
 			<</if>>
 		<</if>>
 	<</if>>
@@ -1347,14 +1347,14 @@
 <div class="indent">
 	<<if ($activeSlave.anus > 3)>>
 		$His anal sphincter could benefit from surgical repair.
-		[[Repair asshole|Surgery Degradation][$activeSlave.anus = 3,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "anus"]] //This will reduce $his anal skills//
+		[[Repair asshole|Surgery Degradation][$activeSlave.anus = 3,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "anus"]] //This will reduce $his anal skills//
 	<<elseif ($surgeryUpgrade == 1) && ($activeSlave.indentureRestrictions < 2)>>
 		<<if ($activeSlave.anus > 1)>>
 			$His anal sphincter could benefit from microsurgical rejuvenation.
-			[[Tighten asshole|Surgery Degradation][$activeSlave.anus = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "anus"]] //This will reduce $his anal skills//
+			[[Tighten asshole|Surgery Degradation][$activeSlave.anus = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "anus"]] //This will reduce $his anal skills//
 		<<elseif ($activeSlave.anus > 0)>>
 			$His butthole is fairly narrow, but could be tightened to virgin status.
-			[[Restore anal virginity|Surgery Degradation][$activeSlave.anus = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "anus"]] //This will reduce $his anal skills//
+			[[Restore anal virginity|Surgery Degradation][$activeSlave.anus = 0,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "anus"]] //This will reduce $his anal skills//
 		<</if>>
 	<</if>>
 </div>
@@ -1365,7 +1365,7 @@
 		<div class="indent">
 			//Modification at a genetic level clearly violates $his indenture contract//
 		</div>
-	<<elseif $activeSlave.health < 0>>
+	<<elseif $activeSlave.health.health < 0>>
 		<div class="indent">
 			//$He's too unhealthy to undergo gene therapy//
 		</div>
@@ -1375,7 +1375,7 @@
 		<div class="indent">
 			<<if $arcologies[0].childhoodFertilityInducedNCSResearch == 1>>
 				<<if $activeSlave.geneMods.NCS == 0>>
-					[[Induced NCS treatment|Surgery Degradation][$activeSlave.geneMods.NCS = 1,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 80, $activeSlave.chem += 40,$surgeryType = "retrograde virus injection NCS"]] //This will induce @@.orange;NCS@@ in $his genetic code//
+					[[Induced NCS treatment|Surgery Degradation][$activeSlave.geneMods.NCS = 1,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,80), $activeSlave.chem += 40,$surgeryType = "retrograde virus injection NCS"]] //This will induce @@.orange;NCS@@ in $his genetic code//
 				<<else>>
 					//$He already has Induced @@.orange;NCS@@//
 				<</if>>
@@ -1385,7 +1385,7 @@
 		<div class="indent">
 			<<if $RapidCellGrowthFormula == 1>>
 				<<if $activeSlave.geneMods.rapidCellGrowth == 0>>
-					[[Increased elasticity treatment|Surgery Degradation][$activeSlave.geneMods.rapidCellGrowth = 1,cashX(forceNeg($surgeryCost * 4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "elasticity treatment"]] //This will alter $his genetic code to encourage $his body to stretch//
+					[[Increased elasticity treatment|Surgery Degradation][$activeSlave.geneMods.rapidCellGrowth = 1,cashX(forceNeg($surgeryCost * 4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "elasticity treatment"]] //This will alter $his genetic code to encourage $his body to stretch//
 				<<else>>
 					//$He already has received the plasticity increasing elasticity treatment//
 				<</if>>
@@ -1394,175 +1394,175 @@
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.albinism == 2>>
-				[[Albinism prevention treatment|Surgery Degradation][$activeSlave.geneticQuirks.albinism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Albinism prevention treatment|Surgery Degradation][$activeSlave.geneticQuirks.albinism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.albinism == 1 && $geneticMappingUpgrade >= 2>>
-				[[Albinism activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.albinism = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]] //Will not have an active effect//
-				| [[Albinism carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.albinism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Albinism activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.albinism = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]] //Will not have an active effect//
+				| [[Albinism carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.albinism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced albinism treatment|Surgery Degradation][$activeSlave.geneticQuirks.albinism = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;albinism@@ in $his genetic code//
+				[[Induced albinism treatment|Surgery Degradation][$activeSlave.geneticQuirks.albinism = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;albinism@@ in $his genetic code//
 			<</if>>
 			<<if $activeSlave.geneticQuirks.androgyny == 2>>
-				[[Androgyny correction treatment|Surgery Degradation][$activeSlave.geneticQuirks.androgyny = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Androgyny correction treatment|Surgery Degradation][$activeSlave.geneticQuirks.androgyny = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.androgyny == 1 && $geneticMappingUpgrade >= 2>>
-				[[Androgyny activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.androgyny = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Androgyny carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.androgyny = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Androgyny activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.androgyny = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Androgyny carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.androgyny = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced androgyny treatment|Surgery Degradation][$activeSlave.geneticQuirks.androgyny = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;natural androgyny@@ in $his genetic code//
+				[[Induced androgyny treatment|Surgery Degradation][$activeSlave.geneticQuirks.androgyny = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;natural androgyny@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.dwarfism == 2>>
-				[[Dwarfism correction treatment|Surgery Degradation][$activeSlave.geneticQuirks.dwarfism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Dwarfism correction treatment|Surgery Degradation][$activeSlave.geneticQuirks.dwarfism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.dwarfism == 1 && $geneticMappingUpgrade >= 2>>
-				[[Dwarfism activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.dwarfism = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Dwarfism carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.dwarfism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Dwarfism activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.dwarfism = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Dwarfism carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.dwarfism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced dwarfism treatment|Surgery Degradation][$activeSlave.geneticQuirks.dwarfism = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;dwarfism@@ in $his genetic code//
+				[[Induced dwarfism treatment|Surgery Degradation][$activeSlave.geneticQuirks.dwarfism = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;dwarfism@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.gigantism == 2>>
-				[[Gigantism correction treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Gigantism correction treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.gigantism == 1 && $geneticMappingUpgrade >= 2>>
-				[[Gigantism activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantism = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Gigantism carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Gigantism activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantism = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Gigantism carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantism = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced gigantism treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantism = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;gigantism@@ in $his genetic code//
+				[[Induced gigantism treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantism = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;gigantism@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.pFace == 2>>
-				[[Prevent passing of perfect faces|Surgery Degradation][$activeSlave.geneticQuirks.pFace = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Prevent passing of perfect faces|Surgery Degradation][$activeSlave.geneticQuirks.pFace = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<</if>>
 		<div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.uFace == 2>>
-				[[Prevent passing of hideous faces|Surgery Degradation][$activeSlave.geneticQuirks.uFace = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Prevent passing of hideous faces|Surgery Degradation][$activeSlave.geneticQuirks.uFace = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.hyperFertility == 2>>
-				[[Correct genetic hyper fertility|Surgery Degradation][$activeSlave.geneticQuirks.hyperFertility = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct genetic hyper fertility|Surgery Degradation][$activeSlave.geneticQuirks.hyperFertility = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.hyperFertility == 1 && $geneticMappingUpgrade >= 2>>
-				[[Hyper fertility activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.hyperFertility = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Hyper fertility carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.hyperFertility = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Hyper fertility activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.hyperFertility = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Hyper fertility carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.hyperFertility = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced hyper fertility treatment|Surgery Degradation][$activeSlave.geneticQuirks.hyperFertility = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;inhumanly high fertility@@ in $his genetic code//
+				[[Induced hyper fertility treatment|Surgery Degradation][$activeSlave.geneticQuirks.hyperFertility = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;inhumanly high fertility@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.fertility == 2>>
-				[[Correct heightened fertility|Surgery Degradation][$activeSlave.geneticQuirks.fertility = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct heightened fertility|Surgery Degradation][$activeSlave.geneticQuirks.fertility = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.fertility == 1 && $geneticMappingUpgrade >= 2>>
-				[[Heightened fertility activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.fertility = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Heightened fertility carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.fertility = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Heightened fertility activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.fertility = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Heightened fertility carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.fertility = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced heightened fertility treatment|Surgery Degradation][$activeSlave.geneticQuirks.fertility = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;heightened fertility@@ in $his genetic code//
+				[[Induced heightened fertility treatment|Surgery Degradation][$activeSlave.geneticQuirks.fertility = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;heightened fertility@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.superfetation == 2>>
-				[[Correct ova release during pregnancy|Surgery Degradation][$activeSlave.geneticQuirks.superfetation = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct ova release during pregnancy|Surgery Degradation][$activeSlave.geneticQuirks.superfetation = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.superfetation == 1 && $geneticMappingUpgrade >= 2>>
-				[[Superfetation activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.superfetation = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Superfetation carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.superfetation = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Superfetation activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.superfetation = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Superfetation carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.superfetation = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced superfetation treatment|Surgery Degradation][$activeSlave.geneticQuirks.superfetation = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;superfetation@@ in $his genetic code//
+				[[Induced superfetation treatment|Surgery Degradation][$activeSlave.geneticQuirks.superfetation = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;superfetation@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.gigantomastia >= 2>>
-				[[Correct gigantomastia|Surgery Degradation][$activeSlave.geneticQuirks.gigantomastia = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct gigantomastia|Surgery Degradation][$activeSlave.geneticQuirks.gigantomastia = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.gigantomastia == 1 && $geneticMappingUpgrade >= 2>>
-				[[Gigantomastia activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantomastia = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Gigantomastia carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantomastia = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Gigantomastia activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantomastia = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Gigantomastia carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantomastia = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.gigantomastia == 0 && $geneticFlawLibrary == 1>>
-				[[Induced gigantomastia treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantomastia = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;gigantomastia@@ in $his genetic code//
+				[[Induced gigantomastia treatment|Surgery Degradation][$activeSlave.geneticQuirks.gigantomastia = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;gigantomastia@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.macromastia >= 2>>
-				[[Correct macromastia|Surgery Degradation][$activeSlave.geneticQuirks.macromastia = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct macromastia|Surgery Degradation][$activeSlave.geneticQuirks.macromastia = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.macromastia == 1 && $geneticMappingUpgrade >= 2>>
-				[[Macromastia activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.macromastia = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Macromastia carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.macromastia = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Macromastia activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.macromastia = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Macromastia carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.macromastia = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.macromastia == 0 && $geneticFlawLibrary == 1>>
-				[[Induced macromastia treatment|Surgery Degradation][$activeSlave.geneticQuirks.macromastia = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;macromastia@@ in $his genetic code//
+				[[Induced macromastia treatment|Surgery Degradation][$activeSlave.geneticQuirks.macromastia = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;macromastia@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.rearLipedema == 2>>
-				[[Correct lipedema|Surgery Degradation][$activeSlave.geneticQuirks.rearLipedema = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct lipedema|Surgery Degradation][$activeSlave.geneticQuirks.rearLipedema = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.rearLipedema == 1 && $geneticMappingUpgrade >= 2>>
-				[[Lipedema activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.rearLipedema = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Lipedema carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.rearLipedema = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Lipedema activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.rearLipedema = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Lipedema carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.rearLipedema = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced lipedema treatment|Surgery Degradation][$activeSlave.geneticQuirks.rearLipedema = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;lipedema@@ in $his genetic code//
+				[[Induced lipedema treatment|Surgery Degradation][$activeSlave.geneticQuirks.rearLipedema = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;lipedema@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.wellHung == 2>>
-				[[Correct genetic predisposition for large genitals|Surgery Degradation][$activeSlave.geneticQuirks.wellHung = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct genetic predisposition for large genitals|Surgery Degradation][$activeSlave.geneticQuirks.wellHung = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.wellHung == 1 && $geneticMappingUpgrade >= 2>>
-				[[Enhanced penile development activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.wellHung = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Enhanced penile development carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.wellHung = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Enhanced penile development activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.wellHung = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Enhanced penile development carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.wellHung = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced penile development treatment|Surgery Degradation][$activeSlave.geneticQuirks.wellHung = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;penile development@@ in $his genetic code//
+				[[Induced penile development treatment|Surgery Degradation][$activeSlave.geneticQuirks.wellHung = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;penile development@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.wGain == 2>>
-				[[Correct hyperleptinemia|Surgery Degradation][$activeSlave.geneticQuirks.wGain = 0, $activeSlave.weightDirection = 0, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct hyperleptinemia|Surgery Degradation][$activeSlave.geneticQuirks.wGain = 0, $activeSlave.weightDirection = 0, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.wGain == 1 && $geneticMappingUpgrade >= 2>>
-				[[Hyperleptinemia activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.wGain = 2, $activeSlave.weightDirection = 1, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Hyperleptinemia carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.wGain = 0, $activeSlave.weightDirection = 0, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Hyperleptinemia activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.wGain = 2, $activeSlave.weightDirection = 1, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Hyperleptinemia carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.wGain = 0, $activeSlave.weightDirection = 0, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced hyperleptinemia treatment|Surgery Degradation][$activeSlave.geneticQuirks.wGain = 2, $activeSlave.weightDirection = 1, cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;hyperleptinemia@@ in $his genetic code//
+				[[Induced hyperleptinemia treatment|Surgery Degradation][$activeSlave.geneticQuirks.wGain = 2, $activeSlave.weightDirection = 1, cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;hyperleptinemia@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.wLoss == 2>>
-				[[Correct hypoleptinemia|Surgery Degradation][$activeSlave.geneticQuirks.wLoss = 0, $activeSlave.weightDirection = 0, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct hypoleptinemia|Surgery Degradation][$activeSlave.geneticQuirks.wLoss = 0, $activeSlave.weightDirection = 0, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.wLoss == 1 && $geneticMappingUpgrade >= 2>>
-				[[Hypoleptinemia activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.wLoss = 2, $activeSlave.weightDirection = -1, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Hypoleptinemia carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.wLoss = 0, $activeSlave.weightDirection = 0, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Hypoleptinemia activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.wLoss = 2, $activeSlave.weightDirection = -1, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Hypoleptinemia carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.wLoss = 0, $activeSlave.weightDirection = 0, cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced hypoleptinemia treatment|Surgery Degradation][$activeSlave.geneticQuirks.wLoss = 2, $activeSlave.weightDirection = -1, cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;hypoleptinemia@@ in $his genetic code//
+				[[Induced hypoleptinemia treatment|Surgery Degradation][$activeSlave.geneticQuirks.wLoss = 2, $activeSlave.weightDirection = -1, cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;hypoleptinemia@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.mGain == 2>>
-				[[Correct myotonic hypertrophy|Surgery Degradation][$activeSlave.geneticQuirks.mGain = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct myotonic hypertrophy|Surgery Degradation][$activeSlave.geneticQuirks.mGain = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.mGain == 1 && $geneticMappingUpgrade >= 2>>
-				[[Myotonic hypertrophy activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.mGain = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Myotonic hypertrophy carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.mGain = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Myotonic hypertrophy activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.mGain = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Myotonic hypertrophy carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.mGain = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced myotonic hypertrophy treatment|Surgery Degradation][$activeSlave.geneticQuirks.mGain = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;myotonic hypertrophy@@ in $his genetic code//
+				[[Induced myotonic hypertrophy treatment|Surgery Degradation][$activeSlave.geneticQuirks.mGain = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;myotonic hypertrophy@@ in $his genetic code//
 			<</if>>
 		</div>
 
 		<div class="indent">
 			<<if $activeSlave.geneticQuirks.mLoss == 2>>
-				[[Correct myotonic dystrophy|Surgery Degradation][$activeSlave.geneticQuirks.mLoss = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Correct myotonic dystrophy|Surgery Degradation][$activeSlave.geneticQuirks.mLoss = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $activeSlave.geneticQuirks.mLoss == 1 && $geneticMappingUpgrade >= 2>>
-				[[Myotonic dystrophy activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.mLoss = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
-				| [[Myotonic dystrophy carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.mLoss = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				[[Myotonic dystrophy activation treatment|Surgery Degradation][$activeSlave.geneticQuirks.mLoss = 2,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+				| [[Myotonic dystrophy carrier corrective treatment|Surgery Degradation][$activeSlave.geneticQuirks.mLoss = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 			<<elseif $geneticFlawLibrary == 1>>
-				[[Induced myotonic dystrophy treatment|Surgery Degradation][$activeSlave.geneticQuirks.mLoss = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;myotonic dystrophy@@ in $his genetic code//
+				[[Induced myotonic dystrophy treatment|Surgery Degradation][$activeSlave.geneticQuirks.mLoss = 2,cashX(forceNeg($surgeryCost*10), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40), $activeSlave.chem += 40,$surgeryType = "gene treatment"]] //This will induce @@.orange;myotonic dystrophy@@ in $his genetic code//
 			<</if>>
 		</div>
 	<</if>>
@@ -1608,40 +1608,40 @@
 	<<if $activeSlave.indentureRestrictions < 1>>
 		$He is $activeSlave.race<<if $activeSlave.race != $activeSlave.origRace>>, but was originally $activeSlave.origRace<</if>>. Surgically alter $him to look more:
 		<<if $activeSlave.race != "white">>
-			[[White|Surgery Degradation][$activeSlave.race = "white", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[White|Surgery Degradation][$activeSlave.race = "white", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "latina">>
-			[[Latina|Surgery Degradation][$activeSlave.race = "latina", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[Latina|Surgery Degradation][$activeSlave.race = "latina", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "black">>
-			[[Black|Surgery Degradation][$activeSlave.race = "black", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[Black|Surgery Degradation][$activeSlave.race = "black", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "asian">>
-			[[Asian|Surgery Degradation][$activeSlave.race = "asian", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[Asian|Surgery Degradation][$activeSlave.race = "asian", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "middle eastern">>
-			[[Middle Eastern|Surgery Degradation][$activeSlave.race = "middle eastern", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[Middle Eastern|Surgery Degradation][$activeSlave.race = "middle eastern", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "indo-aryan">>
-			[[Indo-Aryan|Surgery Degradation][$activeSlave.race = "indo-aryan", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[Indo-Aryan|Surgery Degradation][$activeSlave.race = "indo-aryan", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "pacific islander">>
-			[[Pacific Islander|Surgery Degradation][$activeSlave.race = "pacific islander", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[Pacific Islander|Surgery Degradation][$activeSlave.race = "pacific islander", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "malay">>
-			[[Malay|Surgery Degradation][$activeSlave.race = "malay", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[Malay|Surgery Degradation][$activeSlave.race = "malay", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "amerindian">>
-			[[Amerindian|Surgery Degradation][$activeSlave.race = "amerindian", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[Amerindian|Surgery Degradation][$activeSlave.race = "amerindian", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "southern european">>
-			[[Southern European|Surgery Degradation][$activeSlave.race = "southern european", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[Southern European|Surgery Degradation][$activeSlave.race = "southern european", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "semitic">>
-			[[Semitic|Surgery Degradation][$activeSlave.race = "semitic", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]] |
+			[[Semitic|Surgery Degradation][$activeSlave.race = "semitic", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]] |
 		<</if>>
 		<<if $activeSlave.race != "mixed race">>
-			[[Mixed Race|Surgery Degradation][$activeSlave.race = "mixed race", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "race"]]
+			[[Mixed Race|Surgery Degradation][$activeSlave.race = "mixed race", $activeSlave.skin = randomRaceSkin($activeSlave.race), $activeSlave.hColor = randomRaceHair($activeSlave.race), setEyeColor($activeSlave, randomRaceEye($activeSlave.race)), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "race"]]
 		<</if>>
 	<<else>>
 		//$His indenture forbids elective surgery//
@@ -1685,19 +1685,19 @@
 		<</if>>
 		<<if ($activeSlave.shouldersImplant == 0)>>
 			<<if $activeSlave.shoulders > -2 && $activeSlave.shoulders < 2>>
-				[[Restructure shoulders more broadly|Surgery Degradation][$activeSlave.shouldersImplant++,$activeSlave.shoulders++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "shoulders"]] | [[Restructure shoulders more narrowly|Surgery Degradation][$activeSlave.shouldersImplant--,$activeSlave.shoulders--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "shoulders"]]
+				[[Restructure shoulders more broadly|Surgery Degradation][$activeSlave.shouldersImplant++,$activeSlave.shoulders++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "shoulders"]] | [[Restructure shoulders more narrowly|Surgery Degradation][$activeSlave.shouldersImplant--,$activeSlave.shoulders--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "shoulders"]]
 			<<elseif $activeSlave.shoulders <= -1>>
-				[[Restructure shoulders more broadly|Surgery Degradation][$activeSlave.shouldersImplant++,$activeSlave.shoulders++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "shoulders"]]
+				[[Restructure shoulders more broadly|Surgery Degradation][$activeSlave.shouldersImplant++,$activeSlave.shoulders++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "shoulders"]]
 			<<elseif $activeSlave.shoulders >= 2>>
-				[[Restructure shoulders more narrowly|Surgery Degradation][$activeSlave.shouldersImplant--,$activeSlave.shoulders--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "shoulders"]]
+				[[Restructure shoulders more narrowly|Surgery Degradation][$activeSlave.shouldersImplant--,$activeSlave.shoulders--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "shoulders"]]
 			<</if>>
 		<<elseif $surgeryUpgrade == 1>>
 			<<if $activeSlave.shoulders > -2 && $activeSlave.shoulders < 2>>
-				[[Advanced shoulder broadening surgery|Surgery Degradation][$activeSlave.shouldersImplant++,$activeSlave.shoulders++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "shoulders"]] | [[Advanced shoulder narrowing surgery|Surgery Degradation][$activeSlave.shouldersImplant--,$activeSlave.shoulders--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "shoulders"]]
+				[[Advanced shoulder broadening surgery|Surgery Degradation][$activeSlave.shouldersImplant++,$activeSlave.shoulders++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "shoulders"]] | [[Advanced shoulder narrowing surgery|Surgery Degradation][$activeSlave.shouldersImplant--,$activeSlave.shoulders--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "shoulders"]]
 			<<elseif $activeSlave.shoulders <= -1>>
-				[[Advanced shoulder broadening surgery|Surgery Degradation][$activeSlave.shouldersImplant++,$activeSlave.shoulders++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "shoulders"]]
+				[[Advanced shoulder broadening surgery|Surgery Degradation][$activeSlave.shouldersImplant++,$activeSlave.shoulders++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "shoulders"]]
 			<<elseif $activeSlave.shoulders >= 2>>
-				[[Advanced shoulder narrowing surgery|Surgery Degradation][$activeSlave.shouldersImplant--,$activeSlave.shoulders--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "shoulders"]]
+				[[Advanced shoulder narrowing surgery|Surgery Degradation][$activeSlave.shouldersImplant--,$activeSlave.shoulders--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "shoulders"]]
 			<</if>>
 		<</if>>
 	<</if>>
@@ -1740,21 +1740,21 @@
 		<</if>>
 		<<if ($activeSlave.hipsImplant == 0)>>
 			<<if $activeSlave.hips > -2 && $activeSlave.hips < 3 && $surgeryUpgrade == 1>>
-				[[Broaden pelvis|Surgery Degradation][$activeSlave.hipsImplant++,$activeSlave.hips++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "hips"]] | [[Narrow pelvis|Surgery Degradation][$activeSlave.hipsImplant--,$activeSlave.hips--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "hips"]]
+				[[Broaden pelvis|Surgery Degradation][$activeSlave.hipsImplant++,$activeSlave.hips++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "hips"]] | [[Narrow pelvis|Surgery Degradation][$activeSlave.hipsImplant--,$activeSlave.hips--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "hips"]]
 			<<elseif $activeSlave.hips > -2 && $activeSlave.hips < 2>>
-				[[Broaden pelvis|Surgery Degradation][$activeSlave.hipsImplant++,$activeSlave.hips++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "hips"]] | [[Narrow pelvis|Surgery Degradation][$activeSlave.hipsImplant--,$activeSlave.hips--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "hips"]]
+				[[Broaden pelvis|Surgery Degradation][$activeSlave.hipsImplant++,$activeSlave.hips++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "hips"]] | [[Narrow pelvis|Surgery Degradation][$activeSlave.hipsImplant--,$activeSlave.hips--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "hips"]]
 			<<elseif $activeSlave.hips <= -1>>
-				[[Broaden pelvis|Surgery Degradation][$activeSlave.hipsImplant++,$activeSlave.hips++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "hips"]]
+				[[Broaden pelvis|Surgery Degradation][$activeSlave.hipsImplant++,$activeSlave.hips++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "hips"]]
 			<<elseif $activeSlave.hips >= 2>>
-				[[Narrow pelvis|Surgery Degradation][$activeSlave.hipsImplant--,$activeSlave.hips--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "hips"]]
+				[[Narrow pelvis|Surgery Degradation][$activeSlave.hipsImplant--,$activeSlave.hips--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "hips"]]
 			<</if>>
 		<<elseif $surgeryUpgrade == 1>>
 			<<if $activeSlave.hips > -2 && $activeSlave.hips < 3>>
-				[[Advanced pelvis broadening|Surgery Degradation][$activeSlave.hipsImplant++,$activeSlave.hips++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "hips"]] | [[Advanced pelvis narrowing|Surgery Degradation][$activeSlave.hipsImplant--,$activeSlave.hips--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "hips"]]
+				[[Advanced pelvis broadening|Surgery Degradation][$activeSlave.hipsImplant++,$activeSlave.hips++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "hips"]] | [[Advanced pelvis narrowing|Surgery Degradation][$activeSlave.hipsImplant--,$activeSlave.hips--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "hips"]]
 			<<elseif $activeSlave.hips <= -1>>
-				[[Advanced pelvis broadening|Surgery Degradation][$activeSlave.hipsImplant++,$activeSlave.hips++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "hips"]]
+				[[Advanced pelvis broadening|Surgery Degradation][$activeSlave.hipsImplant++,$activeSlave.hips++,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "hips"]]
 			<<elseif $activeSlave.hips >= 3>>
-				[[Advanced pelvis narrowing|Surgery Degradation][$activeSlave.hipsImplant--,$activeSlave.hips--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "hips"]]
+				[[Advanced pelvis narrowing|Surgery Degradation][$activeSlave.hipsImplant--,$activeSlave.hips--,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "hips"]]
 			<</if>>
 		<</if>>
 	<</if>>
@@ -1773,19 +1773,19 @@
 		<</if>>
 		<<if ($activeSlave.heightImplant == 0)>>
 			<<if $activeSlave.indentureRestrictions < 1>>
-				[[Lengthen major bones|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] | [[Shorten major bones|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]]
+				[[Lengthen major bones|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "height"]] | [[Shorten major bones|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "height"]]
 			<</if>>
 		<<elseif ($activeSlave.height < (Height.mean($activeSlave)+15)) && ($activeSlave.height >= (Height.mean($activeSlave)-15)) && ($surgeryUpgrade == 1)>>
 			<<if $activeSlave.indentureRestrictions < 1>>
-				[[Advanced height gain surgery|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] | [[Advanced height reduction surgery|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]]
+				[[Advanced height gain surgery|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "height"]] | [[Advanced height reduction surgery|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "height"]]
 			<</if>>
 		<<elseif ($activeSlave.height < (Height.mean($activeSlave)+15)) && ($surgeryUpgrade == 1)>>
 			<<if $activeSlave.indentureRestrictions < 1>>
-				[[Advanced height gain surgery|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]]
+				[[Advanced height gain surgery|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "height"]]
 			<</if>>
 		<<elseif ($activeSlave.height >= (Height.mean($activeSlave)-15)) && ($surgeryUpgrade == 1)>>
 			<<if $activeSlave.indentureRestrictions < 1>>
-				[[Advanced height reduction surgery|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]]
+				[[Advanced height reduction surgery|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,40),$surgeryType = "height"]]
 			<</if>>
 		<</if>>
 	</div>
@@ -1798,11 +1798,11 @@
 		<</if>>
 		<<if ($activeSlave.heels == 0) && hasAnyNaturalLegs($activeSlave) && ($seeExtreme == 1)>>
 			<<if $activeSlave.indentureRestrictions < 1>>
-				[[Shorten tendons|Surgery Degradation][$activeSlave.heels = 1,$activeSlave.shoes = "heels",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "heels"]] //Prevents $him from walking in anything but very high heels//
+				[[Shorten tendons|Surgery Degradation][$activeSlave.heels = 1,$activeSlave.shoes = "heels",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "heels"]] //Prevents $him from walking in anything but very high heels//
 			<</if>>
 		<</if>>
 		<<if ($activeSlave.heels == 1)>>
-			[[Replace tendons|Surgery Degradation][$activeSlave.heels = 0,$activeSlave.shoes = "none",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "heelsRestoration"]]
+			[[Replace tendons|Surgery Degradation][$activeSlave.heels = 0,$activeSlave.shoes = "none",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10),$surgeryType = "heelsRestoration"]]
 		<</if>>
 	</div>
 <</if>>
@@ -1871,7 +1871,7 @@
 				<<set _atleastOne++>>
 			<</if>>
 			<<if _atleastOne>>
-				<<set $activeSlave.health -= _atleastOne * 10, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+				<<set healthDamage($activeSlave,_atleastOne * 10), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
 				<<if !hasAnyArms($activeSlave)>>
 					<<set $activeSlave.rules.release.masturbation = 0>>
 				<</if>>
@@ -1887,13 +1887,13 @@
 <div class="indent">
 	<<if !hasAllNaturalLimbs($activeSlave) && $activeSlave.PLimb == 0>>
 		<<if isProstheticAvailable($activeSlave, "interfaceP1")>>
-			[[Install basic prosthetic interface|Surgery Degradation][$oldLimbs = App.Desc.limbChange().currentLimbs($activeSlave), $activeSlave.PLimb = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "PLimb interface"]]
+			[[Install basic prosthetic interface|Surgery Degradation][$oldLimbs = App.Desc.limbChange().currentLimbs($activeSlave), $activeSlave.PLimb = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20), $surgeryType = "PLimb interface"]]
 		<</if>>
 		<<if isProstheticAvailable($activeSlave, "interfaceP2")>> |
-			[[Install advanced prosthetic interface|Surgery Degradation][$oldLimbs = App.Desc.limbChange().currentLimbs($activeSlave), $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "PLimb interface"]]
+			[[Install advanced prosthetic interface|Surgery Degradation][$oldLimbs = App.Desc.limbChange().currentLimbs($activeSlave), $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20), $surgeryType = "PLimb interface"]]
 		<</if>>
 	<<elseif $activeSlave.PLimb == 1 && isProstheticAvailable($activeSlave, "interfaceP2")>>
-		[[Upgrade to advanced prosthetic interface|Surgery Degradation][$oldLimbs = App.Desc.limbChange().currentLimbs($activeSlave), $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "PLimb interface"]]
+		[[Upgrade to advanced prosthetic interface|Surgery Degradation][$oldLimbs = App.Desc.limbChange().currentLimbs($activeSlave), $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,5), $surgeryType = "PLimb interface"]]
 	<</if>>
 </div>
 
@@ -1902,7 +1902,7 @@
 		$He has a neural interface allowing attachment of tails.
 	<<elseif isProstheticAvailable($activeSlave, "interfaceTail")>>
 		$He lacks a neural interface allowing attachment of tails.
-		[[Implant interface|Surgery Degradation][$activeSlave.PTail = 1, $activeSlave.tail = "none", $activeSlave.tailColor = "none", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "tailInterface"]]
+		[[Implant interface|Surgery Degradation][$activeSlave.PTail = 1, $activeSlave.tail = "none", $activeSlave.tailColor = "none", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,10), $surgeryType = "tailInterface"]]
 	<<else>>
 		$He lacks a neural interface allowing attachment of tails and you have none ready for $him.
 	<</if>>
@@ -1948,7 +1948,7 @@
 		<</if>>
 		<<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0 || $eugenicsFullControl == 1 || $arcologies[0].FSRestart == "unset")>>
 			<<if $activeSlave.fetish != "mindbroken">>
-				[[Chemically lobotomize|Surgery Degradation][$activeSlave.fetish = "mindbroken",$activeSlave.fetishKnown = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "mindbreak"]]
+				[[Chemically lobotomize|Surgery Degradation][$activeSlave.fetish = "mindbroken",$activeSlave.fetishKnown = 1,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave,20),$surgeryType = "mindbreak"]]
 				//Warning: this is permanent and irreversible. It will destroy $his will and $his ability to remember anything but the simplest skills.//
 			<</if>>
 		<</if>>
diff --git a/src/uncategorized/resFailure.tw b/src/uncategorized/resFailure.tw
index 0b0bf27bc1d66d5b98f1e41b8fb60512cd0e5d6d..3ce6396411d3cff9422c1a10a38b673ad3698401 100644
--- a/src/uncategorized/resFailure.tw
+++ b/src/uncategorized/resFailure.tw
@@ -60,7 +60,7 @@
 		<<set $activeSlave.intelligence = random(-50,95)>>
 		<<set $activeSlave.devotion = random(25,45)>>
 		<<set $activeSlave.trust = random(25,45)>>
-		<<set $activeSlave.health = random(50,60)>>
+		<<run setHealth($activeSlave, jsRandom(50, 60), 0, 0, 0)>>
 		<<set $activeSlave.preg = 0>>
 		<<set $activeSlave.weight = 0>>
 		<<set $activeSlave.chem = 20>>
@@ -112,7 +112,7 @@
 		<<set $activeSlave.intelligence = either(-100, -100, -100, -96, -80, -70, -50)>>
 		<<set $activeSlave.devotion = 100>>
 		<<set $activeSlave.trust = 100>>
-		<<set $activeSlave.health = random(50,60)>>
+		<<run setHealth($activeSlave, jsRandom(50, 60), 0, 0, 0)>>
 		<<set $activeSlave.preg = random(30,39)>>
 		<<set $activeSlave.pregType = random(3,6)>>
 		<<set $activeSlave.pregKnown = 1>>
@@ -172,9 +172,9 @@
 		<<set $activeSlave.trust = random(-25,-45)>>
 		<<set $activeSlave.chem = 100>>
 		<<if $GRI.schoolUpgrade == 1>>
-			<<set $activeSlave.health = 200>>
+			<<run setHealth($activeSlave, 200), 0, 0, 0)>>
 		<<else>>
-			<<set $activeSlave.health = random(-80,100)>>
+			<<run setHealth($activeSlave, jsRandom(-70, 100), 0)>>
 		<</if>>
 		<<set $activeSlave.height = random(150,190)>>
 		<<set $activeSlave.butt = random(4,10)>>
@@ -234,7 +234,7 @@
 			<<set $activeSlave.devotion = random(25,45)>>
 			<<set $activeSlave.trust = random(25,45)>>
 		<</if>>
-		<<set $activeSlave.health = 100>>
+		<<run setHealth($activeSlave, 100, 0, 0, 0)>>
 		<<set $activeSlave.heightImplant = 1>>
 		<<set $activeSlave.height += 10>>
 		<<set $activeSlave.buttImplant = (4-$activeSlave.butt)>>
@@ -307,7 +307,7 @@
 			<<set $activeSlave.devotion = random(60,70)>>
 			<<set $activeSlave.trust = random(55,60)>>
 		<</if>>
-		<<set $activeSlave.health = random(60,80)>>
+		<<run setHealth($activeSlave, jsRandom(60, 80), 0, 0, 0)>>
 		<<set $activeSlave.muscles = 0>>
 		<<if random(1,100) > 75>>
 			<<set $activeSlave.geneticQuirks.rearLipedema = 2>>
@@ -368,7 +368,7 @@
 		<<set $activeSlave = GenerateNewSlave()>>
 		<<set $activeSlave.origin = "$He was given to you by a failed branch campus of Nueva Universidad de Libertad right after $his graduation.">>
 		<<set $activeSlave.career = "a slave">>
-		<<set $activeSlave.health = random(60,80)>>
+		<<run setHealth($activeSlave, jsRandom(60, 80), 0, 0, 0)>>
 		<<set $activeSlave.devotion = random(60,75)>>
 		<<set $activeSlave.trust = random(60,75)>>
 		<<set $activeSlave.intelligenceImplant = 30>>
@@ -428,7 +428,7 @@
 			<<set $activeSlave.devotion = random(25,45)>>
 			<<set $activeSlave.trust = random(25,45)>>
 		<</if>>
-		<<set $activeSlave.health = 100>>
+		<<run setHealth($activeSlave, 100, 0, 0, 0)>>
 		<<set $activeSlave.muscles = either(20, 50, 50)>>
 		<<set $activeSlave.butt = either(2, 2, 3)>>
 		<<set $activeSlave.boobs = either(100, 200)>>
@@ -488,7 +488,7 @@
 		<<set $activeSlave.face = either(20,20,35,35,35,50,75,100)>>
 		<<set $activeSlave.lips = either(0,10,25)>>
 		<<set $activeSlave.weight = -10>>
-		<<set $activeSlave.health = random(80,100)>>
+		<<run setHealth($activeSlave, jsRandom(80, 100), 0, 0, 0)>>
 		<<set $activeSlave.actualAge = 18>>
 		<<set $activeSlave.physicalAge = $activeSlave.actualAge>>
 		<<set $activeSlave.visualAge = $activeSlave.actualAge>>
@@ -500,7 +500,7 @@
 		<<set $activeSlave.boobs = (random(30,60) * 10)>>
 		<<set $activeSlave.preg = 0>>
 		<<run SetBellySize($activeSlave)>>
-		<<set $activeSlave.health = random(60,80)>>
+		<<run setHealth($activeSlave, jsRandom(60, 80), 0, 0, 0)>>
 		<<set $activeSlave.muscles = random(40,60)>>
 		<<set _minHeight = random(170,180)>>
 		<<set $activeSlave.height = Math.trunc(Math.clamp(Height.random($activeSlave, {limitMult: [2, 15], spread: .1}),_minHeight, 274))>>
@@ -701,7 +701,7 @@
 		<</if>>
 		<<set $activeSlave.devotion = random(30,35)>>
 		<<set $activeSlave.trust = random(-15,-5)>>
-		<<set $activeSlave.health = random(60,80)>>
+		<<run setHealth($activeSlave, jsRandom(60, 80), 0, 0, 0)>>
 		<<set $activeSlave.muscles = 20>>
 		<<set $activeSlave.waist = -15>>
 		<<if $activeSlave.genes == "XY">>
@@ -787,7 +787,7 @@
 	<</if>>
 	<<set $activeSlave.devotion = random(25,30)>>
 	<<set $activeSlave.trust = random(10,15)>>
-	<<set $activeSlave.health = random(60,80)>>
+	<<run setHealth($activeSlave, jsRandom(60, 80), 0, 0, 0)>>
 	<<set $activeSlave.muscles = 20>>
 	<<set $activeSlave.waist = -15>>
 	<<set $activeSlave.shoulders = 1>>
diff --git a/src/uncategorized/saChoosesOwnJob.tw b/src/uncategorized/saChoosesOwnJob.tw
index 67b99f1f02ef961d327900af54158a6ecfde52d6..9b2058275efce1390c9670de98338395e7a62cf4 100644
--- a/src/uncategorized/saChoosesOwnJob.tw
+++ b/src/uncategorized/saChoosesOwnJob.tw
@@ -21,15 +21,33 @@
 		<<= removeJob($slaves[$i], $slaves[$i].assignment)>>
 		<<set $slaves[$i].devotion -= 5>>
 
-	<<elseif ($slaves[$i].health < 20)>>
+	<<elseif ($slaves[$i].health.illness > 1)>>
 		<<if ($universalRulesAssignsSelfFacility == 1) && ($clinic > _clinicL)>>
-			<<set $slaves[$i].choosesOwnAssignmentText += " is unhealthy, so $he decides to get treatment at $clinicName.">>
+			<<set $slaves[$i].choosesOwnAssignmentText += " is ill, so $he decides to get treatment at $clinicName.">>
 			<<= assignJob($slaves[$i], "get treatment in the clinic")>>
+		<<else>>
+			<<set $slaves[$i].choosesOwnAssignmentText += " is ill, so $he decides to rest.">>
+			<<= removeJob($slaves[$i], $slaves[$i].assignment)>>
+		<</if>>
+	
+	<<elseif ($slaves[$i].health.condition < 20)>>
+		<<if (universalRulesAssignsSelfFacility == 1) && ($spa > _spaL)>>
+			<<set $slaves[$i].choosesOwnAssignmentText += " is unhealthy, so $he decides to get recover at $spaName.">>
+			<<= assignJob($slaves[$i], "rest in the spa")>>
 		<<else>>
 			<<set $slaves[$i].choosesOwnAssignmentText += " is unhealthy, so $he decides to rest.">>
 			<<= removeJob($slaves[$i], $slaves[$i].assignment)>>
 		<</if>>
 
+	<<elseif ($slaves[$i].health.tired > 50)>>
+		<<if (universalRulesAssignsSelfFacility == 1) && ($spa > _spaL)>>
+			<<set $slaves[$i].choosesOwnAssignmentText += " is tired, so $he decides to get recover at $spaName.">>
+			<<= assignJob($slaves[$i], "rest in the spa")>>
+		<<else>>
+			<<set $slaves[$i].choosesOwnAssignmentText += " is tired, so $he decides to rest.">>
+			<<= removeJob($slaves[$i], $slaves[$i].assignment)>>
+		<</if>>
+
 	<<elseif ($slaves[$i].boobsMilk > 0)>>
 		<<set $slaves[$i].choosesOwnAssignmentText += " rushes to get milked since $his breasts have become painfully engorged.">>
 		<<= assignJob($slaves[$i], "get milked")>>
diff --git a/src/uncategorized/saDiet.tw b/src/uncategorized/saDiet.tw
index a32538c6e7bca1b58e6017788b62465dc50b036a..eaa9599ec6c4f53756ef3fbb30c14f472ebf3a96 100644
--- a/src/uncategorized/saDiet.tw
+++ b/src/uncategorized/saDiet.tw
@@ -98,11 +98,11 @@
 	<</if>>
 	<<if _weightLoss == 8>>
 		$His @@.lime;weight loss@@ this week is so dramatic as to be dangerous, and @@.red;$his health suffers because of it.@@ @@.gold;Your disregard for $his well-being scares $him.@@
-		<<set $slaves[$i].health -= 4>>
+		<<run healthDamage($slaves[$i], 4)>>
 		<<set $slaves[$i].trust -= 2>>
 	<<elseif _weightLoss == 7>>
 		Distaste for $his food caused $him to @@.lime;lose weight@@ a bit too quickly, and by the end of the week $he looks @@.gold;a little unsettled@@ and @@.red;slightly malnourished.@@
-		<<set $slaves[$i].health -= 1>>
+		<<run healthDamage($slaves[$i], 1)>>
 		<<set $slaves[$i].trust -= 1>>
 	<<elseif _weightLoss == 6>>
 		Due to $his distaste for $his diet, $he @@.lime;loses a bit more weight than $he was supposed to this week,@@ making $him @@.gold;a little anxious.@@
@@ -464,7 +464,7 @@
 		<</if>>
 		<<if random(1,100) > 80>>
 			$His workout successes have @@.green;improved $his health.@@
-			<<set $slaves[$i].health += 10>>
+			<<run improveCondition($slaves[$i], 10)>>
 		<</if>>
 		<<if $slaves[$i].weight > 10 && $slaves[$i].weightDirection != 1>>
 			$His workouts have also @@.orange;burned off some excess fat.@@
@@ -551,7 +551,7 @@
 		<</if>>
 		<<if random(1,100) > 80>>
 			$His workout successes have @@.green;improved $his health.@@
-			<<set $slaves[$i].health += 10>>
+			<<run improveCondition($slaves[$i], 10)>>
 		<</if>>
 		<<if $slaves[$i].weight > 10 && $slaves[$i].weightDirection != 1>>
 			$His workouts have also @@.orange;burned off some excess fat.@@
@@ -585,9 +585,9 @@
 				<<set $slaves[$i].butt -= 1>>
 			<</if>>
 		<</if>>
-		<<if random(1,100) > 50 && $slaves[$i].health <= 90 && $slaves[$i].health >= -20>>
+		<<if random(1,100) > 50 && $slaves[$i].health.condition <= 90 && $slaves[$i].health.condition >= -20>>
 			$His workout successes have @@.green;improved $his health.@@
-			<<set $slaves[$i].health += 5>>
+			<<run improveCondition($slaves[$i], 5)>>
 		<</if>>
 		<<if $slaves[$i].weight > 10 && $slaves[$i].weightDirection != 1>>
 			$His workouts have also @@.orange;burned off some excess fat.@@
@@ -886,12 +886,12 @@
 		<<set $slaves[$i].energy += 1>>
 	<</if>>
 <<case "cleansing">> /* chem reduce and health plus */
-	<<if $slaves[$i].health > 90 && $slaves[$i].chem < 10>>
+	<<if $slaves[$i].health.condition > 90 && $slaves[$i].chem < 10>>
 		$His health, all things considered, cannot get much better. @@.yellow;$His cleansing diet has ended.@@
 		<<set $slaves[$i].diet = "healthy">>
 	<</if>>
-	<<if $slaves[$i].health <= 90>>
-		<<set $slaves[$i].health += 2>>
+	<<if $slaves[$i].health.condition <= 90>>
+		<<run improveCondition($slaves[$i], 2)>>
 	<</if>>
 	<<if $slaves[$i].chem > 2>>
 		<<set $slaves[$i].chem -= 2>>
@@ -1435,11 +1435,12 @@
 
 <<case "cleansing">> /* chem reduce and health plus */
 	The ports in Fuckdoll suits allow total dietary control, and $he's barely aware $he's @@.green;becoming healthier.@@
-	<<set $slaves[$i].devotion -= 2, $slaves[$i].trust++, $slaves[$i].health += 2>>
+	<<set $slaves[$i].devotion -= 2, $slaves[$i].trust++>>
+	<<run improveCondition($slaves[$i], 2)>>
 	<<if $slaves[$i].chem > 2>>
 		<<set $slaves[$i].chem -= 2>>
 	<</if>>
-	<<if $slaves[$i].health > 90 && $slaves[$i].chem < 10>>
+	<<if $slaves[$i].health.condition > 90 && $slaves[$i].chem < 10>>
 		$He can't get any healthier. @@.yellow;$His cleansing diet has been ended.@@
 		<<set $slaves[$i].diet = "healthy">>
 	<</if>>
diff --git a/src/uncategorized/saDrugs.tw b/src/uncategorized/saDrugs.tw
index e369bd38aa742b8c9488de15894173b05eb7aa73..423737ff2463bb0421157d821e7719be27bcc96f 100644
--- a/src/uncategorized/saDrugs.tw
+++ b/src/uncategorized/saDrugs.tw
@@ -20,17 +20,17 @@
 		<<set $slaves[$i].drugs = "no drugs">>
 	<<elseif $slaves[$i].chastityPenis == 1>>
 		A tight cage around a dick forced hard are a bad mix so @@.yellow;$his drug regimen has been ended.@@
-	<<elseif $slaves[$i].health <= -50>>
+	<<elseif $slaves[$i].health.health <= -50>>
 		$He is too unwell to risk further health complications from priapism. @@.yellow;$His drug regimen has been ended.@@
 	<<elseif $slaves[$i].dick > 10>>
 		$His dick is so enormous that attempts to force an erection would kill $him. @@.yellow;$His drug regimen has been mercifully ended.@@
 		<<set $slaves[$i].drugs = "no drugs">>
 	<<else>>
 		$His drug regime keeps $his dick @@.red;painfully erect.@@
-		<<set $slaves[$i].health -= 5>>
+		<<run healthDamage($slaves[$i], 5)>>
 		<<if $slaves[$i].dick >= 7>>
 			The amount of blood needed to keep $his oversized cock hard has @@.red;severe effects on $his health!@@
-			<<set $slaves[$i].health -= $slaves[$i].dick*5>>
+			<<run healthDamage($slaves[$i], $slaves[$i].dick*5)>>
 		<</if>>
 	<</if>>
 
@@ -84,28 +84,28 @@
 	<<set _growth = (1+$injectionUpgrade)*3*_gigantomastiaMod>>
 	$He receives @@.lime;direct injections of <<if ($injectionUpgrade != 0)>> advanced<</if>> hyper growth hormones, right into $his breasts;@@
 	<<if ($slaves[$i].diet == "fattening")>>
-		all the food $he's required to consume fuels growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		all the food $he's required to consume fuels growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth += 6>>
 	<<elseif ($slaves[$i].diet == "fertility")>>
-		the fertility hormones in $his food favor breast growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		the fertility hormones in $his food favor breast growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth += 1>>
 	<<elseif ($slaves[$i].diet == "restricted")>>
-		$his restricted diet means $his body has few resources to grow on, <<if $slaves[$i].health > -20>>but<<else>>and<</if>>
+		$his restricted diet means $his body has few resources to grow on, <<if $slaves[$i].health.condition > -20>>but<<else>>and<</if>>
 		<<set _growth -= 1>>
 	<<elseif ($slaves[$i].weight > 130)>>
-		the enormous diet $he eats to maintain $his hugely fat body helps support growth, <<if $slaves[$i].health > -20>>but<<else>>and<</if>>
+		the enormous diet $he eats to maintain $his hugely fat body helps support growth, <<if $slaves[$i].health.condition > -20>>but<<else>>and<</if>>
 		<<set _growth += 4>>
 	<<elseif ($slaves[$i].weight > 30)>>
-		the generous diet $he eats to maintain $his fat body helps support growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		the generous diet $he eats to maintain $his fat body helps support growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth += 2>>
 	<<elseif ($slaves[$i].weight <= -30)>>
-		the diet $he is required to maintain to keep slim impedes growth, <<if $slaves[$i].health > -20>>but<<else>>and<</if>>
+		the diet $he is required to maintain to keep slim impedes growth, <<if $slaves[$i].health.condition > -20>>but<<else>>and<</if>>
 		<<set _growth-->>
 	<</if>>
-	<<if $slaves[$i].health > 80>>
+	<<if $slaves[$i].health.condition > 80>>
 		$his perfect health supports growth extremely well, <<if $slaves[$i].boobs < 5000 || $slaves[$i].boobs >= 10000>>and<<else>>but<</if>>
 		<<set _growth += 6>>
-	<<elseif ($slaves[$i].health > -20)>>
+	<<elseif ($slaves[$i].health.condition > -20)>>
 		$his health supports growth, <<if $slaves[$i].boobs < 2000 || $slaves[$i].boobs >= 10000>>and<<else>>but<</if>>
 	<<else>>
 		$his poor health does not support steady growth, but
@@ -192,28 +192,28 @@
 	<</if>>
 	injections of <<if ($injectionUpgrade != 0)>>advanced<</if>> growth hormones, right into $his breasts;@@
 	<<if ($slaves[$i].diet == "fattening")>>
-		all the food $he's required to consume fuels growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		all the food $he's required to consume fuels growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth += 2>>
 	<<elseif ($slaves[$i].diet == "fertility")>>
-		the fertility hormones in $his food favor breast growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		the fertility hormones in $his food favor breast growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth += 1>>
 	<<elseif ($slaves[$i].diet == "restricted")>>
-		$his restricted diet means $his body has few resources to grow on, <<if $slaves[$i].health > -20>>but<<else>>and<</if>>
+		$his restricted diet means $his body has few resources to grow on, <<if $slaves[$i].health.condition > -20>>but<<else>>and<</if>>
 		<<set _growth -= 2>>
 	<<elseif ($slaves[$i].weight > 130)>>
-		the enormous diet $he eats to maintain $his hugely fat body helps support growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		the enormous diet $he eats to maintain $his hugely fat body helps support growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth++>>
 	<<elseif ($slaves[$i].weight > 30)>>
-		the generous diet $he eats to maintain $his fat body helps support growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		the generous diet $he eats to maintain $his fat body helps support growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth++>>
 	<<elseif ($slaves[$i].weight <= -30)>>
-		the diet $he is required to maintain to keep slim impedes growth, <<if $slaves[$i].health > -20>>but<<else>>and<</if>>
+		the diet $he is required to maintain to keep slim impedes growth, <<if $slaves[$i].health.condition > -20>>but<<else>>and<</if>>
 		<<set _growth-->>
 	<</if>>
-	<<if $slaves[$i].health > 80>>
+	<<if $slaves[$i].health.condition > 80>>
 		$his perfect health supports growth extremely well, <<if $slaves[$i].boobs < 2000>>and<<else>>but<</if>>
 		<<set _growth++>>
-	<<elseif ($slaves[$i].health > -20)>>
+	<<elseif ($slaves[$i].health.condition > -20)>>
 		$his health supports growth, <<if $slaves[$i].boobs < 2000>>and<<else>>but<</if>>
 	<<else>>
 		$his poor health does not support steady growth, <<if $slaves[$i].boobs < 2000>>but<<else>>and<</if>>
@@ -318,25 +318,25 @@
 	<</if>>
 	injections of <<if ($injectionUpgrade != 0)>>advanced<</if>> growth hormones, right into $his buttocks;@@
 	<<if ($slaves[$i].diet == "fattening")>>
-		all the food $he's required to consume fuels growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		all the food $he's required to consume fuels growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth += 2>>
 	<<elseif ($slaves[$i].diet == "restricted")>>
-		$his restricted diet means $his body has few resources to grow on, <<if $slaves[$i].health > -20>>but<<else>>and<</if>>
+		$his restricted diet means $his body has few resources to grow on, <<if $slaves[$i].health.condition > -20>>but<<else>>and<</if>>
 		<<set _growth -= 2>>
 	<<elseif ($slaves[$i].weight > 130)>>
-		the generous diet $he eats to maintain $his fat body helps support growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		the generous diet $he eats to maintain $his fat body helps support growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth += 3>>
 	<<elseif ($slaves[$i].weight > 30)>>
-		the generous diet $he eats to maintain $his fat body helps support growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		the generous diet $he eats to maintain $his fat body helps support growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth++>>
 	<<elseif ($slaves[$i].weight <= -30)>>
-		the diet $he is required to maintain to keep slim impedes growth, <<if $slaves[$i].health > -20>>but<<else>>and<</if>>
+		the diet $he is required to maintain to keep slim impedes growth, <<if $slaves[$i].health.condition > -20>>but<<else>>and<</if>>
 		<<set _growth-->>
 	<</if>>
-	<<if $slaves[$i].health > 80>>
+	<<if $slaves[$i].health.condition > 80>>
 		$his perfect health supports growth extremely well, <<if $slaves[$i].butt < 6>>and<<else>>but<</if>>
 		<<set _growth++>>
-	<<elseif ($slaves[$i].health > -20)>>
+	<<elseif ($slaves[$i].health.condition > -20)>>
 		$his health supports growth, <<if $slaves[$i].butt < 6>>and<<else>>but<</if>>
 	<<else>>
 		$his poor health does not support steady growth, <<if $slaves[$i].butt < 6>>but<<else>>and<</if>>
@@ -389,25 +389,25 @@
 	<<set _growth = .5>>
 	$He receives @@.lime;direct injections of <<if ($injectionUpgrade != 0)>> advanced<</if>> hyper growth hormones, right into $his buttocks;@@
 	<<if ($slaves[$i].diet == "fattening")>>
-		all the food $he's required to consume fuels growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		all the food $he's required to consume fuels growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth += 0.2>>
 	<<elseif ($slaves[$i].diet == "restricted")>>
-		$his restricted diet means $his body has few resources to grow on, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		$his restricted diet means $his body has few resources to grow on, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth -= 0.2>>
 	<<elseif ($slaves[$i].weight > 130)>>
-	the enormous diet $he eats to maintain $his hugely fat body helps support growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+	the enormous diet $he eats to maintain $his hugely fat body helps support growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 	<<set _growth += 0.2>>
 	<<elseif ($slaves[$i].weight > 30)>>
-	the generous diet $he eats to maintain $his fat body helps support growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+	the generous diet $he eats to maintain $his fat body helps support growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 	<<set _growth += 0.1>>
 	<<elseif ($slaves[$i].weight <= -30)>>
-		the diet $he is required to maintain to keep slim impedes growth, <<if $slaves[$i].health > -20>>and<<else>>but<</if>>
+		the diet $he is required to maintain to keep slim impedes growth, <<if $slaves[$i].health.condition > -20>>and<<else>>but<</if>>
 		<<set _growth -= 0.1>>
 	<</if>>
-	<<if $slaves[$i].health > 80>>
+	<<if $slaves[$i].health.condition > 80>>
 		$his perfect health supports growth extremely well, <<if $slaves[$i].butt < 10>>and<<else>>but<</if>>
 		<<set _growth += .5>>
-	<<elseif ($slaves[$i].health > -20)>>
+	<<elseif ($slaves[$i].health.condition > -20)>>
 		$his health supports growth reasonably well, <<if ($slaves[$i].butt < 10)>>and<<else>>but<</if>>
 	<<else>>
 		$his poor health does not support steady growth, <<if ($slaves[$i].butt < 10)>>but<<else>>and<</if>>
@@ -577,10 +577,10 @@
 		<<set _growth += 0.5>>
 	<</if>>
 	/*health*/
-	<<if $slaves[$i].health > 80>>
+	<<if $slaves[$i].health.condition > 80>>
 		$His perfect health greatly supports $his growth.
 		<<set _growth += 0.2>>
-	<<elseif $slaves[$i].health > -20>>
+	<<elseif $slaves[$i].health.condition > -20>>
 		$His health supports $his growth.
 	<<else>>
 		$His poor health hinders growth.
@@ -661,16 +661,16 @@
 		/*health issues*/
 		<<if _growth == 5>>
 			$his growth is so extreme that $his body can barely keep up, @@.red;severely damaging $his health.@@
-			<<set $slaves[$i].health -= 20>>
+			<<run healthDamage($slaves[$i], 20)>>
 		<</if>>
 		<<if random(1,10) == 1 && _growth != 5>>
 			The stimulants stressed $slaves[$i].slaveName's body more than expected, @@.red;damaging $his health.@@
-			<<set $slaves[$i].health -= 10>>
+			<<run healthDamage($slaves[$i], 10)>>
 		<</if>>
 		<<if $slaves[$i].physicalAge > $maxGrowthAge>>
 			<<if random(1,6) == 1>>
 				Since $his body already concluded $his natural growth processes, the treatment @@.red;weakens $him considerably.@@
-				<<set $slaves[$i].health -= 15>>
+				<<run healthDamage($slaves[$i], 15)>>
 			<</if>>
 		<</if>>
 		/*updates slave's height*/
@@ -687,7 +687,7 @@
 	<<else>>
 		The intense hormonal injections leave $him @@.red;sickened and weak@@ as $his body struggles to adapt to the overwhelming chemicals flooding $his system.
 		<<set $slaves[$i].chem += 20>>
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 		<<if $slaves[$i].energy > 5>>
 			<<set $slaves[$i].energy -= 5>>
 		<</if>>
@@ -700,7 +700,7 @@
 	<<else>>
 		The intense hormonal injections leave $him @@.red;sickened and weak@@ as $his body struggles to adapt to the overwhelming chemicals flooding $his system.
 		<<set $slaves[$i].chem += 20>>
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 		<<if $slaves[$i].energy > 5>>
 			<<set $slaves[$i].energy -= 5>>
 		<</if>>
@@ -892,16 +892,16 @@
 		$He's on super fertility drugs, so $he is more likely to conceive, and will have multiple pregnancy.
 	<</if>>
 	<<if $slaves[$i].geneMods.NCS == 0>>
-		<<if $slaves[$i].lactation == 0 && random(0,50) < $slaves[$i].health>>
+		<<if $slaves[$i].lactation == 0 && random(0,50) < $slaves[$i].health.condition>>
 			The hormonal changes produced by the fertility drugs have the side effect of @@.lime;inducing lactation,@@ indistinguishable from natural lactation.
 			<<set $slaves[$i].lactation = 1, $slaves[$i].lactationDuration = 1>>
 		<</if>>
 	<</if>>
-	<<if $slaves[$i].attrXY < 100 && random(0,10) < $slaves[$i].health>>
+	<<if $slaves[$i].attrXY < 100 && random(0,10) < $slaves[$i].health.condition>>
 		The hormonal changes produced by the fertility drugs cause $him to begin @@.green;finding men more attractive.@@
 		<<set $slaves[$i].attrXY += random(5,10)>>
 	<</if>>
-	<<if $slaves[$i].energy < 85 && random(0,10) < $slaves[$i].health>>
+	<<if $slaves[$i].energy < 85 && random(0,10) < $slaves[$i].health.condition>>
 		The hormonal changes produced by the fertility drugs cause $him to @@.green;begin craving sex more.@@
 		<<set $slaves[$i].energy += 2>>
 	<</if>>
@@ -936,7 +936,7 @@
 		$He's on fertility drugs, so $he is more likely to conceive, and may experience multiple pregnancy.
 	<</if>>
 	<<if $slaves[$i].geneMods.NCS == 0>>
-		<<if $slaves[$i].lactation == 0 && random(0,100) < $slaves[$i].health>>
+		<<if $slaves[$i].lactation == 0 && random(0,100) < $slaves[$i].health.condition>>
 			The hormonal changes produced by the fertility drugs have the side effect of @@.lime;inducing lactation,@@ indistinguishable from natural lactation.
 			<<set $slaves[$i].lactation = 1, $slaves[$i].lactationDuration = 1>>
 		<</if>>
@@ -1191,8 +1191,8 @@
 	<<if (($slaves[$i].assignment != "get treatment in the clinic") || ($Nurse == 0)) && $slaves[$i].geneMods.rapidCellGrowth != 1>>
 		<<if $slaves[$i].pregType > 1>><<set _childCount = "children are">><<else>><<set _childCount = "child is">><</if>>
 		$His _childCount growing rapidly within $his womb, far faster than $his @@.red;poor body can handle.@@<<if $slaves[$i].pregType >= 10 && $slaves[$i].bellyPreg >= 100000>> $His rate of growth is straining $his womb, $he is @@.red;at risk of bursting!@@<</if>>
-		<<set $slaves[$i].health -= ($slaves[$i].preg+$slaves[$i].pregType-$slaves[$i].bellySag)>>
-		<<if $slaves[$i].health <= -100>>
+		<<run healthDamage($slaves[$i], ($slaves[$i].preg+$slaves[$i].pregType-$slaves[$i].bellySag))>>
+		<<if $slaves[$i].health.health <= -100>>
 			$His critically poor health @@.orange;caused $him to miscarry.@@
 			<<if lastPregRule($slaves[$i],$defaultRules)>><<set $slaves[$i].preg = -1>><<else>><<set $slaves[$i].preg = 0>><</if>>
 			<<set $slaves[$i].pregType = 0, $slaves[$i].pregSource = 0, $slaves[$i].pregWeek = -4, $slaves[$i].pregKnown = 0, WombFlush($slaves[$i]), SetBellySize($slaves[$i])>>
@@ -1225,30 +1225,30 @@
 <<case "labor suppressors">>
 	<<set $slaves[$i].chem += 2>>
 	<<if WombBirthReady($slaves[$i], $activeSlave.pregData.normalBirth*1.5) > 0>>
-		<<set $slaves[$i].health -= 20>>
+		<<run healthDamage($slaves[$i], 20)>>
 		<<set $slaves[$i].labor = 1>>
 		<<set $slaves[$i].induce = 1>>
 		<<set $birthee = 1>>
 		$He has been ready to give birth for some time now. Suppressing birth for so long @@.red;greatly affects $his health.@@ $He may @@.red;have trouble@@ giving birth to $his oversized child<<if $slaves[$i].pregType > 1>>ren<</if>>. $He seems to be in distress, $his body is @@.red;forcing $his child<<if $slaves[$i].pregType > 1>>ren<</if>> out!@@
 	<<elseif WombBirthReady($slaves[$i], $activeSlave.pregData.normalBirth*1.25) > 0>>
-		<<set $slaves[$i].health -= 20>>
+		<<run healthDamage($slaves[$i], 20)>>
 		$He has been ready to give birth for some time now. Suppressing birth for so long @@.red;greatly affects $his health.@@ $He may @@.red;have trouble@@ giving birth to $his oversized child<<if $slaves[$i].pregType > 1>>ren<</if>>.
 	<<elseif WombBirthReady($slaves[$i], $activeSlave.pregData.normalBirth) > 0>>
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 		Labor suppressing agents @@.red;negatively affect $his health.@@
 	<</if>>
 <</switch>>
 
 <<if $slaves[$i].curatives > 1>>
-	<<if ($slaves[$i].health > 90)>>
+	<<if ($slaves[$i].health.condition > 90)>>
 		$His health is already outstanding and cannot be improved with further drug treatment. @@.yellow;$His drug regimen has defaulted to preventatives.@@
 		<<set $slaves[$i].curatives = 1>>
 	<<elseif (($slaves[$i].assignment == "rest") || ($slaves[$i].assignment == "rest in the spa")) && ($slaves[$i].fetish != "mindbroken")>>
 		The curatives $he's taking synergize with rest, keeping $him asleep most of the time. This is an @@.green;extremely effective health treatment.@@
-		<<set $slaves[$i].health += 4>>
+		<<run improveCondition($slaves[$i], 4)>>
 	<<elseif ($slaves[$i].health < -20)>>
 		@@.green;$His poor health rapidly improves@@ under drug treatment.
-		<<set $slaves[$i].health += 2>>
+		<<run improveCondition($slaves[$i], 2)>>
 	<<else>>
 		@@.green;$His health improves@@ under curative treatment.
 	<</if>>
@@ -1258,8 +1258,8 @@
 			<<set $slaves[$i].trust += 1>>
 		<</if>>
 	<</if>>
-	<<set $slaves[$i].health += 6>>
-	<<set $slaves[$i].health += $curativeUpgrade*6>>
+	<<run improveCondition($slaves[$i], 6)>>
+	<<run improveCondition($slaves[$i], $curativeUpgrade * 6)>>
 	<<set $slaves[$i].chem += 1>>
 <</if>>
 
@@ -1280,7 +1280,7 @@
 		<</if>>
 		<<if ($arcologies[0].FSBodyPuristLaw == 0) && ($healthyDrugsUpgrade == 0)>>
 			Such a high dosage @@.red;isn't healthy.@@
-			<<set $slaves[$i].health -= 5>>
+			<<run healthDamage($slaves[$i], 5)>>
 		<</if>>
 		<<set $slaves[$i].chem += 1>>
 	<<else>>
@@ -1313,14 +1313,15 @@
 
 <<if _intensive>>
 	Such reckless doping is dangerous and @@.red;unhealthy.@@
-	<<set $slaves[$i].health -= random(3,5), _intensive = 0>>
+	<<set _intensive = 0>>
+	<<run healthDamage($slaves[$i], jsRandom(3, 5))>>
 <</if>>
 
-<<if $slaves[$i].curatives < 2 && $slaves[$i].inflationType != "curative" && $slaves[$i].assignment != "get treatment in the clinic">>
-	<<if $slaves[$i].health < -50>>
-		It's difficult being so ill, and $he @@.mediumorchid;resents you@@ for not treating $him.
+<<if $slaves[$i].curatives < 2 && $slaves[$i].inflationType != "curative" && ($slaves[$i].assignment != "rest in the spa" || $slaves[$i].assignment != "rest")>>
+	<<if $slaves[$i].health.condition < -50>>
+		It's difficult being so in such poor condition, and $he @@.mediumorchid;resents you@@ for ignoring $his plight.
 		<<set $slaves[$i].devotion -= 2>>
-	<<elseif ($slaves[$i].health > 50)>>
+	<<elseif ($slaves[$i].health.condition > 50)>>
 		<<if $slaves[$i].fuckdoll == 0>>
 			<<if $slaves[$i].fetish != "mindbroken">>
 				$He understands that $he owes $his near-perfect health to you and @@.hotpink;believes@@ that life with you is better than freedom in some ways.
@@ -1330,6 +1331,45 @@
 	<</if>>
 <</if>>
 
+<<if $slaves[$i].tired > 80 && ($slaves[$i].assignment != "rest in the spa" || $slaves[$i].assignment != "rest")>>
+	$He has been worked to the bone
+	<<if $slaves[$i].devotion < 20>>
+		and @@.hotpink;bends a little more to your will,@@ while @@.gold;fearing she'll never earn a reprieve@@ from toiling.
+		<<set $slaves[$i].devotion += 2, $slaves[$i].trust -= 2>>
+	<<elseif $slaves[$i].devotion < 50>>
+		and can't help but @@.gold;worry a little about her well-being.@@
+		<<set $slaves[$i].trust -= 1>>
+	<<else>>
+		but $he carries on without reservations.
+	<</if>>
+<<elseif $slaves[$i].tired > 50 && ($slaves[$i].assignment != "rest in the spa" || $slaves[$i].assignment != "rest")>>
+	$He is suffering from exhaustion
+	<<if $slaves[$i].devotion < 20>>
+		and it is @@.hotpink;wearing away at her resistance.@@
+		<<set $slaves[$i].devotion += 1>>
+	<<else>>
+		but $he tries not to let it show.
+	<</if>>
+<</if>>
+
+<<if $slaves[$i].illness > 1 && ($slaves[$i].assignment != "get treatment in the clinic" || $slaves[$i].assignment != "rest")>>
+	$He is<<if $slaves[$i].illness > 4>> deathly<<elseif $slaves[$i].illness > 3>> seriously<</if>> ill
+	<<if $slaves[$i].devotion < 20>>
+		and @@.mediumorchid;hates@@ having $his health issues @@.gold;ignored.@@
+		<<set $slaves[$i].devotion -= $slaves[$i].illness * 2, $slaves[$i].trust -= $slaves[$i].illness>>
+	<<elseif $slaves[$i].devotion < 50 && $slaves[$i].illness > 3>>
+		and @@.mediumorchid;resents@@ not given proper treatment.
+		<<set $slaves[$i].devotion -= $slaves[$i].illness>>
+	<<else>>
+		and does $his best to continue with $his duties out of dedication to you, despite being sick.
+	<</if>>
+<<elseif $slaves[$i].illness > 1 && $slaves.assignment == "get treatment in the clinic">>
+	$He is<<if $slaves[$i].illness > 4>> deathly<<elseif $slaves[$i].illness > 3>> seriously<</if>> ill and receiving appropriate treatment. $He is @@.hotpink;grateful@@ you help $him get well.
+	<<set $slaves[$i].devotion += 2>>
+<<elseif $slaves[$i].illness == 1>>
+	$He is a bit under the weather this week and $his productivity suffers, $he will hopefully feel better soon.
+<</if>>
+
 <<if ($slaves[$i].addict > 0)>>
 	<<if $slaves[$i].aphrodisiacs > 0>>
 		<<set $slaves[$i].addict += $slaves[$i].aphrodisiacs>>
diff --git a/src/uncategorized/saGuardsYou.tw b/src/uncategorized/saGuardsYou.tw
index 3bb46e6dde83b2643e7db126a0a9a9287746da9c..5010eeba2ac16be911b82af04f98ba811553a0f8 100644
--- a/src/uncategorized/saGuardsYou.tw
+++ b/src/uncategorized/saGuardsYou.tw
@@ -46,7 +46,7 @@ carries arms in your defense.
 	$His height gives $him a reach advantage with $his sword.
 <</if>>
 
-<<if $slaves[$i].health > 50>>
+<<if $slaves[$i].health.condition > 50>>
 	$His shining health makes $him a better combatant.
 <</if>>
 
@@ -84,7 +84,7 @@ carries arms in your defense.
 	$His light weight is an impediment as a bodyguard.
 <</if>>
 
-<<if $slaves[$i].health < -50>>
+<<if $slaves[$i].health.condition < -50>>
 	$His poor health makes $him a weaker combatant.
 <</if>>
 
@@ -230,7 +230,7 @@ Being continually trusted with your life @@.hotpink;increases $his devotion to y
 			<</if>>
 		<<else>>
 			$He finds no suitable candidates to serve as $his replacement, leaving $him stressed over your future safety. The worry is exhausting and @@.red;bad for $his health.@@
-			<<set $slaves[$i].health -= 3>>
+			<<run healthDamage($slaves[$i], 3)>>
 		<</if>>
 	<<else>>
 		$He takes care to look after the skills of your other defensively capable slaves, satisfied that there are enough of them living in your penthouse.
diff --git a/src/uncategorized/saLiveWithHG.tw b/src/uncategorized/saLiveWithHG.tw
index 1425d998c355e3c3912617441ab8d834140e217c..f4867a777ad5bcb56abac490b378d8bbf5996373 100644
--- a/src/uncategorized/saLiveWithHG.tw
+++ b/src/uncategorized/saLiveWithHG.tw
@@ -865,7 +865,7 @@
 <</if>>
 
 <<if $HGSuiteDrugs != 0>>
-	<<if ($slaves[$i].health < 60)>>
+	<<if ($slaves[$i].health.condition < 60)>>
 		$HeadGirl.slaveName gives $slaves[$i].slaveName curatives, since _he2 wants a shiningly healthy living partner.
 		<<set $slaves[$i].curatives = 2>>
 	<</if>>
@@ -915,7 +915,7 @@
 		<<set $slaves[$i].drugs = "no drugs">>
 	<</if>>
 <<else>>
-	<<if ($slaves[$i].health < 100)>>
+	<<if ($slaves[$i].health.condition < 100)>>
 		$HeadGirl.slaveName gives $slaves[$i].slaveName curatives, since _his2 assistant could be healthier.
 		<<set $slaves[$i].curatives = 2>>
 	<</if>>
@@ -928,46 +928,53 @@
 	<</if>>
 	<<if $HeadGirl.fetishKnown == 1>>
 		<<if ($HeadGirl.fetish == "sadist") && ($HeadGirl.fetishStrength > 95) && ($seeExtreme == 1) && ($slaves[$i].fetish != "mindbroken")>>
-			<<if ($slaves[$i].health > 40)>>
+			<<if ($slaves[$i].health.condition > 40)>>
 				<<if hasAnyNaturalLimbs($slaves[$i]) && ($slaves[$i].devotion < -20)>>
 					$HeadGirl.slaveName decides to extract the ultimate in sadistic pleasure from $slaves[$i].slaveName, and directs the autosurgery to @@.red;amputate $his <<if hasAnyArms($slaves[$i])>>arm<<if hasBothArms($slaves[$i])>>s<</if>> <<if hasAnyLegs($slaves[$i])>>and<</if>><</if>><<if hasAnyLegs($slaves[$i])>> leg<<if hasBothLegs($slaves[$i])>>s<</if>><</if>>.@@ _He2 carefully describes the entire process to the sobbing slave @@.gold;in minute detail@@ before allowing $him to be sedated.
-					<<set $slaves[$i].devotion -= 20, $slaves[$i].trust -= 20, $slaves[$i].health -= 40>>
-					<<run removeLimbs($slaves[$i], "all")>>
+					<<set $slaves[$i].devotion -= 20, $slaves[$i].trust -= 20>>
+					<<run removeLimbs($slaves[$i], "all"), healthDamage($slaves[$i], 40)>>
 				<</if>>
 				<<if ($slaves[$i].balls > 0) && ($slaves[$i].devotion <= 50)>>
 					$HeadGirl.slaveName decides to have some once-only sadistic pleasure, and carefully straps $slaves[$i].slaveName into the surgery until $he's completely immobile. $HeadGirl.slaveName situates <<if canSee($slaves[$i])>>a mirror so the terrified $girl can see $his own crotch<<else>>$him so that the terrified $girl can sense what part of $his body is being manipulated even through the anesthetics<</if>>, gets behind $him, and carefully sodomizes $him during the entire process of @@.red;castration.@@ $slaves[$i].slaveName is anesthetized down there and can't feel the brutal anal rape, but $his abuser orgasms repeatedly to $him @@.gold;weeping at the <<if canSee($slaves[$i])>>sight<<else>>muted sensation<</if>> of being gelded and raped at once.@@
-					<<set $slaves[$i].devotion -= 20, $slaves[$i].trust -= 20, $slaves[$i].health -= 20, $slaves[$i].balls = 0>>
+					<<set $slaves[$i].devotion -= 20, $slaves[$i].trust -= 20, $slaves[$i].balls = 0>>
+					<<run healthDamage($slaves[$i], 20)>>
 				<</if>>
 			<</if>>
 			<<if ($slaves[$i].devotion < -90) && ($slaves[$i].fetish != "mindbroken")>>
 				$HeadGirl.slaveName tires of $slaves[$i].slaveName's protests that $HeadGirl.slaveName is a monster for hurting $him this way and $his complaints that $he deserves better. $HeadGirl.slaveName decides that it'll be just as much fun and a lot less trouble to mistreat $slaves[$i].slaveName once $he's mindbroken, and sends $him in for @@.red;chemical lobotomization.@@
-				<<set $slaves[$i].health -= 20, $slaves[$i].fetish = "mindbroken">>
+				<<set $slaves[$i].fetish = "mindbroken">>
+				<<run healthDamage($slaves[$i], 20)>>
 			<</if>>
 		<<elseif ($HeadGirl.fetish == "dom") && ($HeadGirl.fetishStrength > 60) && ($seeExtreme == 1) && ($slaves[$i].fetish != "mindbroken") && ($slaves[$i].devotion <= 50)>>
-			<<if ($slaves[$i].health > 40)>>
+			<<if ($slaves[$i].health.condition > 40)>>
 				<<if ($slaves[$i].heels == 0) && hasAnyNaturalLegs($slaves[$i])>>
 					$HeadGirl.slaveName is not satisfied with $slaves[$i].slaveName's submissiveness, and directs the autosurgery to @@.red;clip $his Achilles tendons.@@ Once the slave is recovered from surgery, $HeadGirl.slaveName removes all shoes from the suite, too, so $slaves[$i].slaveName is forced to crawl like a good little bitch. $slaves[$i].slaveName is @@.gold;angry@@ and @@.gold;frightened.@@
-					<<set $slaves[$i].devotion -= 5, $slaves[$i].health -= 20, $slaves[$i].heels = 1, $slaves[$i].shoes = "none">>
+					<<set $slaves[$i].devotion -= 5 $slaves[$i].heels = 1, $slaves[$i].shoes = "none">>
+					<<run healthDamage($slaves[$i], 20)>>
 				<</if>>
 				<<if ($slaves[$i].balls > 0)>>
 					$HeadGirl.slaveName decides that it's counterproductive for $slaves[$i].slaveName to be able to get hard, and sends $him in to have $his @@.red;balls removed.@@ $slaves[$i].slaveName is horrified, but $HeadGirl.slaveName uses $his anus with such persistence and mercilessness that the poor gelding doesn't have much time to mourn. $slaves[$i].slaveName is badly @@.gold;frightened@@ by $his new role as nothing but a recipient of anal.
-					<<set $slaves[$i].trust -= 10, $slaves[$i].health -= 20, $slaves[$i].balls = 0>>
+					<<set $slaves[$i].trust -= 10, $slaves[$i].balls = 0>>
+					<<run healthDamage($slaves[$i], 20)>>
 				<</if>>
 			<</if>>
 		<<elseif $HeadGirl.energy > 95>>
-			<<if ($slaves[$i].health > 40) && ($slaves[$i].heels == 0) && hasAnyNaturalLegs($slaves[$i]) && ($slaves[$i].devotion <= 50) && ($slaves[$i].fetish != "mindbroken")>>
+			<<if ($slaves[$i].health.condition > 40) && ($slaves[$i].heels == 0) && hasAnyNaturalLegs($slaves[$i]) && ($slaves[$i].devotion <= 50) && ($slaves[$i].fetish != "mindbroken")>>
 				$HeadGirl.slaveName wants a good little bimbo who sticks $his butt out all the time, and directs the autosurgery to @@.red;clip $slaves[$i].slaveName's Achilles tendons.@@ Once the slave is recovered from surgery, $HeadGirl.slaveName presents $slaves[$i].slaveName with a new pair of extra-tall heels to totter around in like a good little slut. $slaves[$i].slaveName is @@.gold;angry@@ and @@.gold;frightened.@@
-				<<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5, $slaves[$i].health -= 20, $slaves[$i].heels = 1, $slaves[$i].shoes = "heels">>
+				<<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5, $slaves[$i].heels = 1, $slaves[$i].shoes = "heels">>
+				<<run healthDamage($slaves[$i], 20)>>
 			<</if>>
 		<<elseif $HeadGirl.fetish == "masochist">>
-			<<if ($slaves[$i].health > 40) && ($slaves[$i].heightImplant == 0) && ($slaves[$i].height < 185) && hasAllLimbs($slaves[$i])>>
+			<<if ($slaves[$i].health.condition > 40) && ($slaves[$i].heightImplant == 0) && ($slaves[$i].height < 185) && hasAllLimbs($slaves[$i])>>
 				$HeadGirl.slaveName has a subconscious need to be hurt by the biggest, strongest $girl possible, and directs the autosurgery to extend $slaves[$i].slaveName's arm and leg bones to make $him a little @@.lime;taller.@@
-				<<set $slaves[$i].health -= 20, $slaves[$i].heightImplant = 1, $slaves[$i].height += 1>>
+				<<set $slaves[$i].heightImplant = 1, $slaves[$i].height += 1>>
+				<<run healthDamage($slaves[$i], 20)>>
 			<</if>>
 		<<elseif $HeadGirl.fetish == "submissive">>
-			<<if ($slaves[$i].health > 40) && ($slaves[$i].heightImplant == 0) && ($slaves[$i].height < 185) && hasAllLimbs($slaves[$i])>>
+			<<if ($slaves[$i].health.condition > 40) && ($slaves[$i].heightImplant == 0) && ($slaves[$i].height < 185) && hasAllLimbs($slaves[$i])>>
 				$HeadGirl.slaveName wants to be topped by the biggest, strongest $girl possible, and directs the autosurgery to extend $slaves[$i].slaveName's arm and leg bones to make $him a little @@.lime;taller.@@
-				<<set $slaves[$i].health -= 20, $slaves[$i].heightImplant = 1, $slaves[$i].height += 1>>
+				<<set $slaves[$i].heightImplant = 1, $slaves[$i].height += 1>>
+				<<run healthDamage($slaves[$i], 20)>>
 			<</if>>
 		<</if>>
 	<</if>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index ecc82ddd0392f3194188b4fb86fbe8a2cffb303f..85272b27d0672ec194592eca56984a5b222cec1a 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -1186,7 +1186,7 @@
 					$His paraphilia is satisfied by the knowledge that $his genetic abnormality will keep $his breasts bigger than $his head.
 				<<elseif $slaves[$i].geneticQuirks.gigantomastia == 2>>
 					$His paraphilia is satisfied by $his chest's curious tendency toward perpetual growth.
-				<<elseif $slaves[$i].health < 0>>
+				<<elseif $slaves[$i].health.condition < 0>>
 					$His paraphilia is ameliorated by $his poor health; $he knows $he can't take expansion right now.
 				<<elseif $slaves[$i].drugs == "intensive breast injections">>
 					$His paraphilia makes $him feel @@.mediumaquamarine;fulfilled to be a sex slave@@ if it means breast expansion like this.
@@ -3193,31 +3193,31 @@
 		<<set $slaves[$i].boobs -= 100, $slaves[$i].boobsImplant -= 100>>
 	<<elseif ($slaves[$i].boobsImplant > 25000) && (_effect >= 2)>>
 		As they grow they @@.red;greatly irritate@@ the tissue of $his breasts.
-		<<set $slaves[$i].health -= 20>>
+		<<run healthDamage($slaves[$i], 20)>>
 	<<elseif ($slaves[$i].boobsImplant > 15000) && (_effect >= 3)>>
 		As they grow they @@.red;irritate@@ the tissue of $his breasts.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif ($slaves[$i].boobsImplant > 10000) && (_effect >= 4)>>
 		As they grow they @@.red;irritate@@ the tissue of $his breasts.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif ($slaves[$i].boobsImplant > 8000) && (_effect >= 5)>>
 		As they grow they @@.red;irritate@@ the tissue of $his breasts.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif ($slaves[$i].boobsImplant > 6000) && (_effect >= 6)>>
 		As they grow they @@.red;irritate@@ the tissue of $his breasts.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif ($slaves[$i].boobsImplant > 4500) && (_effect >= 7)>>
 		As they grow they @@.red;irritate@@ the tissue of $his breasts.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif ($slaves[$i].boobsImplant > 3000) && (_effect >= 8)>>
 		As they grow they @@.red;irritate@@ the tissue of $his breasts.
-		<<set $slaves[$i].health -= 7>>
+		<<run healthDamage($slaves[$i], 7)>>
 	<<elseif ($slaves[$i].boobsImplant > 2000) && (_effect >= 9)>>
 		As they grow they @@.red;irritate@@ the tissue of $his breasts.
-		<<set $slaves[$i].health -= 5>>
+		<<run healthDamage($slaves[$i], 5)>>
 	<<elseif ($slaves[$i].boobsImplant > 1000) && (_effect > 9)>>
 		As they grow they @@.red;irritate@@ the tissue of $his breasts.
-		<<set $slaves[$i].health -= 3>>
+		<<run healthDamage($slaves[$i], 3)>>
 	<</if>>
 <</if>>
 
@@ -3258,28 +3258,28 @@
 	<<set _effect = random(1,8)>>
 	<<if ($slaves[$i].buttImplant > 7) && (_effect >= 2)>>
 		As they grow they @@.red;greatly irritate@@ the tissue of $his cheeks.
-		<<set $slaves[$i].health -= 20>>
+		<<run healthDamage($slaves[$i], 20)>>
 	<<elseif ($slaves[$i].buttImplant > 6) && (_effect >= 2)>>
 		As they grow they @@.red;greatly irritate@@ the tissue of $his cheeks.
-		<<set $slaves[$i].health -= 20>>
+		<<run healthDamage($slaves[$i], 20)>>
 	<<elseif ($slaves[$i].buttImplant > 5) && (_effect >= 3)>>
 		As they grow they @@.red;irritate@@ the tissue of $his cheeks.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif ($slaves[$i].buttImplant > 4) && (_effect >= 4)>>
 		As they grow they @@.red;irritate@@ the tissue of $his cheeks.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif ($slaves[$i].buttImplant > 3) && (_effect >= 5)>>
 		As they grow they @@.red;irritate@@ the tissue of $his cheeks.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif ($slaves[$i].buttImplant > 2) && (_effect >= 6)>>
 		As they grow they @@.red;irritate@@ the tissue of $his cheeks.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif ($slaves[$i].buttImplant > 1) && (_effect >= 7)>>
 		As they grow they @@.red;irritate@@ the tissue of $his cheeks.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<elseif ($slaves[$i].buttImplant > 0) && (_effect > 7)>>
 		As they grow they @@.red;irritate@@ the tissue of $his cheeks.
-		<<set $slaves[$i].health -= 10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<</if>>
 <</if>>
 
@@ -4244,7 +4244,7 @@
 				<<set $slaves[$i].bellyAccessory = "none">>
 			<</if>>
 			<<if ($slaves[$i].preg > $slaves[$i].pregData.normalBirth/2) && ($slaves[$i].lactation == 0)>>
-				<<if $slaves[$i].health < -20>>
+				<<if $slaves[$i].health.condition < -20>>
 					$He's so unwell that natural lactation is unlikely.
 				<<elseif $slaves[$i].weight <= -30>>
 					$He's so skinny that natural lactation is unlikely.
@@ -4654,7 +4654,7 @@
 		<</switch>>
 	<</if>>
 
-	<<if $slaves[$i].bellyFluid >= 10000 && $seeExtreme == 1 && $slaves[$i].health <= -100 && $slaves[$i].geneMods.rapidCellGrowth != 1>>
+	<<if $slaves[$i].bellyFluid >= 10000 && $seeExtreme == 1 && $slaves[$i].health.health <= -100 && $slaves[$i].geneMods.rapidCellGrowth != 1>>
 		$He feels an @@.red;unusual intense pain@@ in $his bloated belly.
 		<<set $slaves[$i].burst = 1>>
 	<</if>>
@@ -4903,7 +4903,7 @@
 							<<set $slaves[$i].devotion -= 5>>
 						<<case 2>>
 							@@.mediumorchid;$his mental state was bad for $his health.@@
-							<<set $slaves[$i].health -= 5>>
+							<<run healthDamage($slaves[$i], 5)>>
 						<<case 3>>
 							@@.orange;$his face grew a little more haggard.@@
 							<<set $slaves[$i].face -= 2>>
@@ -5547,7 +5547,7 @@
 				<<= FutureSocieties.ChangePorn("Paternalist", -2)>>
 			<</if>>
 		<</if>>
-		<<if ($slaves[$i].health > 80)>>
+		<<if ($slaves[$i].health.condition > 80)>>
 			Society @@.green;approves@@ of $his shining health; this advances belief in a slaveowner's duty.
 			<<= FutureSocieties.ChangePorn("Paternalist", 1)>>
 		<</if>>
@@ -5916,7 +5916,7 @@
 			Society @@.green;approves@@ of how tall $he is; the sexual advantages of $his height are impressed on the public mind.
 			<<= FutureSocieties.ChangePorn("PhysicalIdealist", 1)>>
 		<</if>>
-		<<if ($slaves[$i].health > 80)>>
+		<<if ($slaves[$i].health.condition > 80)>>
 			Society @@.green;approves@@ of $his health; the expectation that slaves should be kept perfectly healthy grows.
 			<<= FutureSocieties.ChangePorn("PhysicalIdealist", 1)>>
 		<</if>>
@@ -5990,7 +5990,7 @@
 			<<set $toSearch = $slaves[$i].origin>>
 			<<if $toSearch.indexOf("Slave Shelter") != -1>>
 				<<if ["serve in the club", "serve the public", "whore", "work in the brothel"].includes($slaves[$i].assignment)>>
-					<<if ($slaves[$i].trust > 20) && ($slaves[$i].health > 40)>>
+					<<if ($slaves[$i].trust > 20) && ($slaves[$i].health.condition > 40)>>
 						<<if $arcologies[0].FSPaternalist != "unset">>
 							Society @@.green;strongly approves@@ of how you've brought a shelter $girl health and happiness.
 							<<= FutureSocieties.ChangePorn("Paternalist", 2)>>
@@ -6573,7 +6573,7 @@
 			$He is not allowed to get off as frequently as $his aphrodisiac fueled sex drive demands, and the constant frustration
 			<<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">>
 				@@.red;stresses $his body considerably.@@
-				<<set $slaves[$i].health -= 1+Math.trunc($slaves[$i].need/20)>>
+				<<run healthDamage($slaves[$i], 1+Math.trunc($slaves[$i].need/20)>>
 			<<else>>
 				drives $him mad with lust. $He @@.mediumorchid;blames you@@ for this @@.gold;cruelty.@@
 				<<set _decay = 1+Math.trunc($slaves[$i].need/20)>>
@@ -6586,7 +6586,7 @@
 	<</if>>
 <</if>>
 
-<<if $slaves[$i].health > 90>>
+<<if $slaves[$i].health.condition > 90>>
 	<<if $slaves[$i].need <= $slaves[$i].energy/2>>
 		<<if $slaves[$i].energy <= 70>>
 			$His outstanding health produces a @@.green;slow improvement in libido.@@
@@ -6615,7 +6615,7 @@
 			<</if>>
 		<</if>>
 	<</if>>
-<<elseif ($slaves[$i].health > 60)>>
+<<elseif ($slaves[$i].health.condition > 60)>>
 	<<if $slaves[$i].need <= $slaves[$i].energy/2>>
 		<<if ($slaves[$i].energy <= 50)>>
 			$His good health produces a @@.green;slow improvement in libido.@@
@@ -6625,16 +6625,16 @@
 <</if>>
 
 <<if $slaves[$i].physicalAge >= 30>>
-	<<if $slaves[$i].health > 20>>
+	<<if $slaves[$i].health.condition > 20>>
 		<<if $slaves[$i].curatives == 0 && $slaves[$i].inflationType != "curative">>
 			<<if $slaves[$i].physicalAge-30 > random(1,100)>>
 				The bloom comes off $his excellent health a little. It seems $his @@.red;age@@ may be affecting $him.
-				<<set $slaves[$i].health -= 10>>
+				<<run healthDamage($slaves[$i], 10)>>
 			<</if>>
 		<</if>>
 	<</if>>
 	<<if $slaves[$i].trust < random(1,100)>>
-		<<if $slaves[$i].health < random(1,100)>>
+		<<if $slaves[$i].health.condition < random(1,100)>>
 			<<if $slaves[$i].physicalAge-30 > random(1,100)>>
 				$His face looks @@.orange;just a little older@@ than it did last week. $He's not getting any younger.
 				<<set $slaves[$i].face -= 2>>
@@ -7061,7 +7061,7 @@
 					<<elseif $slaves[$i].devotion <= 50>>
 						$His giant tits are debilitatingly big. They are @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for $his body.
 						<<set $slaves[$i].devotion -= 3>>
-						<<set $slaves[$i].health -= 5>>
+						<<run healthDamage($slaves[$i], 5)>>
 					<<else>>
 						$His giant tits are debilitatingly big, but $he takes measures to keep comfortable and pain free as to not concern you with $his troubles.
 					<</if>>
@@ -7074,7 +7074,7 @@
 						<<elseif $slaves[$i].devotion <= 50>>
 							Dragging $his huge tits around is @@.mediumorchid;uncomfortable@@ and @@.red;painful@@ for $his slight form.
 							<<set $slaves[$i].devotion -= 2>>
-							<<set $slaves[$i].health -= 2>>
+							<<run healthDamage($slaves[$i], 2)>>
 						<<else>>
 							$He finds $his breasts uncomfortably large, but $he grins and bears it for you.
 						<</if>>
@@ -7145,7 +7145,7 @@
 					<<elseif $slaves[$i].devotion <= 50>>
 						$His giant tits are debilitatingly big. They are @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for $his childish form.
 						<<set $slaves[$i].devotion -= 3>>
-						<<set $slaves[$i].health -= 4>>
+						<<run healthDamage($slaves[$i], 4)>>
 					<<else>>
 						$His giant tits are debilitatingly big. $He does everything $he can to keep comfortable and pain free as to not bother you.
 					<</if>>
@@ -7227,7 +7227,7 @@
 					<<elseif $slaves[$i].devotion <= 50>>
 						They are @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for $his childish form.
 						<<set $slaves[$i].devotion -= 3>>
-						<<set $slaves[$i].health -= 5>>
+						<<run healthDamage($slaves[$i], 5)>>
 					<<else>>
 						$He does $his best to not let them get the better of $his youthful body.
 					<</if>>
@@ -7240,7 +7240,7 @@
 						<<elseif $slaves[$i].devotion <= 50>>
 							Dragging $his huge tits around is @@.mediumorchid;uncomfortable@@ and @@.red;painful@@ for $his childish form.
 							<<set $slaves[$i].devotion -= 2>>
-							<<set $slaves[$i].health -= 4>>
+							<<run healthDamage($slaves[$i], 4)>>
 						<<else>>
 							$His huge tits are uncomfortably big for $his childish form, but $he keeps it to $himself out of devotion to you.
 						<</if>>
@@ -7298,7 +7298,8 @@
 					No amount of discomfort or pain could dissuade $him from going bigger.
 				<<elseif $slaves[$i].devotion <= 50>>
 					They are @@.mediumorchid;very uncomfortable@@ and @@.red;painful@@ for $his youthful form.
-					<<set $slaves[$i].devotion -= 3, $slaves[$i].health -= 10>>
+					<<set $slaves[$i].devotion -= 3>>
+					<<run healthDamage($slaves[$i], 10)>>
 				<<else>>
 					$He finds them painfully uncomfortable, but finds ways to mitigate it to not distract you with $his worries.
 				<</if>>
@@ -7309,7 +7310,8 @@
 							$His huge breasts are troublesome for $his slight form, but that only drives $his desire to go even bigger.
 						<<elseif $slaves[$i].devotion <= 50>>
 							Dragging $his huge tits around is @@.mediumorchid;uncomfortable@@ and @@.red;painful@@ for $his slight form.
-							<<set $slaves[$i].devotion -= 2, $slaves[$i].health -= 3>>
+							<<set $slaves[$i].devotion -= 2>>
+							<<run healthDamage($slaves[$i], 3)>>
 						<<else>>
 							$His huge tits are uncomfortably big for $his slight form, but $he keeps it to $himself out of devotion to you.
 						<</if>>
@@ -7363,7 +7365,8 @@
 				<</if>>
 			<</if>>
 		<</if>>
-		<<set $slaves[$i].health -= 30, $slaves[$i].pregAdaptation += 1>>
+		<<run healthDamage($slaves[$i], 30)>>
+		<<set $slaves[$i].pregAdaptation += 1>>
 	<<elseif $slaves[$i].belly > ($slaves[$i].pregAdaptation*3200)>>
 		$His <<if $slaves[$i].mpreg == 0 && $slaves[$i].ovaries == 0>>implant filled abdominal cavity<<else>>straining womb<</if>> takes up most of $his body and puts @@.red;tremendous pressure on $his skin and organs.@@
 		<<if isSlaveAvailable($slaves[$i])>>
@@ -7400,7 +7403,8 @@
 				<</if>>
 			<</if>>
 		<</if>>
-		<<set $slaves[$i].health -= 20, $slaves[$i].pregAdaptation += .4>>
+		<<run healthDamage($slaves[$i], 20)>>
+		<<set $slaves[$i].pregAdaptation += .4>>
 	<<elseif $slaves[$i].belly > ($slaves[$i].pregAdaptation*2000)>>
 		$His <<if $slaves[$i].mpreg == 0 && $slaves[$i].ovaries == 0>>belly implant<<else>>womb<</if>> takes up most of $his body and @@.red;puts tremendous pressure on $his skin and organs.@@
 		<<if isSlaveAvailable($slaves[$i])>>
@@ -7431,7 +7435,8 @@
 				<</if>>
 			<</if>>
 		<</if>>
-		<<set $slaves[$i].health -= (10/_bellyBand), $slaves[$i].pregAdaptation += .3>>
+		<<run healthDamage($slaves[$i], (10/_bellyBand))>>
+		<<set $slaves[$i].pregAdaptation += .3>>
 	<<elseif $slaves[$i].belly > ($slaves[$i].pregAdaptation*1000)>>
 		$His <<if $slaves[$i].mpreg == 0 && $slaves[$i].ovaries == 0>>belly implant<<else>>womb<</if>> fills $his body and @@.red;compresses $his internal organs.@@
 		<<if isSlaveAvailable($slaves[$i])>>
@@ -7451,13 +7456,14 @@
 				<</if>>
 			<</if>>
 		<</if>>
-		<<set $slaves[$i].health -= (2/_bellyBand), $slaves[$i].pregAdaptation += .2>>
+		<<run healthDamage($slaves[$i], (2/_bellyBand))>>
+		<<set $slaves[$i].pregAdaptation += .2>>
 	<<elseif $slaves[$i].belly > ($slaves[$i].pregAdaptation*750)>>
 		<<set $slaves[$i].pregAdaptation += .1>>
 	<</if>>
 	<<if $slaves[$i].wombImplant == "restraint" && $slaves[$i].belly >= 400000>>
 		The mesh implanted into the walls of $his uterus is nearing its limit and @@.red;beginning to strangle@@ the organ it is meant to support. While it is still structurally sound, it can only expand so much before failing.
-		<<set $slaves[$i].health -= 15>>
+		<<run healthDamage($slaves[$i], 15)>>
 	<</if>>
 
 	<<if $seeExtreme == 1 && $dangerousPregnancy == 1 && (($slaves[$i].belly > ($slaves[$i].pregAdaptation*3200)) || $slaves[$i].bellyPreg > 600000) && $slaves[$i].bellyPreg >= 100000>>
@@ -7697,7 +7703,7 @@
 	<</if>>
 	<<if $slaves[$i].curatives == 0 && $slaves[$i].inflationType != "curative">>
 		The extreme physical stress of living in the suit @@.red;damages $his health.@@
-		<<set $slaves[$i].health = -10>>
+		<<run healthDamage($slaves[$i], 10)>>
 	<<else>>
 		The <<if $slaves[$i].curatives == 1>>preventatives<<elseif $slaves[$i].inflationType == "curative">>rectal curatives<<else>>curatives<</if>> protect $him from the extreme physical stress of living in the suit.
 	<</if>>
@@ -7757,10 +7763,10 @@
 		/*Without release, $his breasts have become @@.lime;<<if $slaves[$i].lactationAdaptation > 50>>massively <</if>>engorged@@ with pent-up milk.*/ /* I don't know where to put this since it happens at the tail end of endWeek now */
 		<<if $slaves[$i].boobs+$slaves[$i].boobsMilk > $slaves[$i].boobs*2>>
 			Having breasts bloated to the point of bursting is @@.red;incredibly painful.@@ Spending a week like that is excruciating,
-			<<set $slaves[$i].health -= 20>>
+			<<run healthDamage($slaves[$i], 20)>>
 		<<elseif $slaves[$i].boobs+$slaves[$i].boobsMilk > $slaves[$i].boobs*.5>>
 			Having breasts so swollen with milk that every motion hurts is @@.red;very uncomfortable.@@ Spending a week like that only makes it worse,
-			<<set $slaves[$i].health -= 5>>
+			<<run healthDamage($slaves[$i], 5)>>
 		<<else>>
 			$He spends the week with breasts aching for release,
 		<</if>>
@@ -7817,9 +7823,9 @@
 	<<if $slaves[$i].diet != "high caloric">>
 		<<if $slaves[$i].preg > $slaves[$i].pregData.normalBirth/2>>
 			The pregnancy generator places heavy strain on $him as $his body @@.red;consumes itself@@ to keep releasing eggs and maintain $his many developing babies.
-			<<set $slaves[$i].health -= 1>>
+			<<run healthDamage($slaves[$i], 1)>>
 			<<if $slaves[$i].weight lt -2>>
-				<<set $slaves[$i].health -= 1>>
+				<<run healthDamage($slaves[$i], 1)>>
 			<</if>>
 			<<set $slaves[$i].chem += 2>>
 			<<if $slaves[$i].weight lt -2>>
@@ -7833,15 +7839,15 @@
 			<</if>>
 			<<if $slaves[$i].physicalAge lt 12>>
 				$His very young body is decimated by it.
-				<<if random(2,10) gt $slaves[$i].health and $slaves[$i].weight gt -3>>
+				<<if random(2,10) gt $slaves[$i].health.condition and $slaves[$i].weight gt -3>>
 					$He has @@.red;lost weight.@@
 					<<set $slaves[$i].weight -= 2>>
 				<</if>>
-				<<if random(2,10) gt $slaves[$i].health and $slaves[$i].muscles gt 0>>
+				<<if random(2,10) gt $slaves[$i].health.condition and $slaves[$i].muscles gt 0>>
 					$He has @@.red;lost muscle mass.@@
 					<<set $slaves[$i].muscles -= 2>>
 				<</if>>
-				<<if random(2,10) gt $slaves[$i].health and $slaves[$i].boobs gt 0>>
+				<<if random(2,10) gt $slaves[$i].health.condition and $slaves[$i].boobs gt 0>>
 					<<if $slaves[$i].weight lte -3>>
 						With nothing else to draw from, $his body @@.red;rapidly consumes $his breasts.@@
 						<<set $slaves[$i].boobs -= 5000>>
@@ -7853,7 +7859,7 @@
 						<<set $slaves[$i].boobs to 0>>
 					<</if>>
 				<</if>>
-				<<if random(2,10) gt $slaves[$i].health and $slaves[$i].butt gt 0>>
+				<<if random(2,10) gt $slaves[$i].health.condition and $slaves[$i].butt gt 0>>
 					<<if $slaves[$i].weight lte -3>>
 						With nothing else to draw from, $his body @@.red;rapidly consumes $his ass fat.@@
 						<<set $slaves[$i].butt -= 4>>
@@ -7867,15 +7873,15 @@
 				<</if>>
 			<<elseif $slaves[$i].physicalAge lt 18>>
 				$His young body suffers greatly from it.
-				<<if random(1,8) gt $slaves[$i].health and $slaves[$i].weight gt -3>>
+				<<if random(1,8) gt $slaves[$i].health.condition and $slaves[$i].weight gt -3>>
 					$He has @@.red;lost weight.@@
 					<<set $slaves[$i].weight -= 2>>
 				<</if>>
-				<<if random(1,8) gt $slaves[$i].health and $slaves[$i].muscles gt 0>>
+				<<if random(1,8) gt $slaves[$i].health.condition and $slaves[$i].muscles gt 0>>
 					$He has @@.red;lost muscle mass.@@
 					<<set $slaves[$i].muscles -= 2>>
 				<</if>>
-				<<if random(1,8) gt $slaves[$i].health and $slaves[$i].boobs gt 0>>
+				<<if random(1,8) gt $slaves[$i].health.condition and $slaves[$i].boobs gt 0>>
 					<<if $slaves[$i].weight lte -3>>
 						With nothing else to draw from, $his body @@.red;rapidly consumes $his breasts.@@
 						<<set $slaves[$i].boobs -= 2000>>
@@ -7887,7 +7893,7 @@
 						<<set $slaves[$i].boobs to 0>>
 					<</if>>
 				<</if>>
-				<<if random(1,8) gt $slaves[$i].health and $slaves[$i].butt gt 0>>
+				<<if random(1,8) gt $slaves[$i].health.condition and $slaves[$i].butt gt 0>>
 					<<if $slaves[$i].weight lte -3>>
 						With nothing else to draw from, $his body @@.red;rapidly consumes $his ass fat.@@
 						<<set $slaves[$i].butt -= 3>>
@@ -7901,15 +7907,15 @@
 				<</if>>
 			<<elseif $slaves[$i].physicalAge gt 32>>
 				$His mature body handles it well.
-				<<if random(1,6) gt $slaves[$i].health and $slaves[$i].weight gt -3>>
+				<<if random(1,6) gt $slaves[$i].health.condition and $slaves[$i].weight gt -3>>
 					$He has @@.red;lost weight.@@
 					<<set $slaves[$i].weight -= 1>>
 				<</if>>
-				<<if random(1,8) gt $slaves[$i].health and $slaves[$i].muscles gt 0>>
+				<<if random(1,8) gt $slaves[$i].health.condition and $slaves[$i].muscles gt 0>>
 					$He has @@.red;lost muscle mass.@@
 					<<set $slaves[$i].muscles -= 1>>
 				<</if>>
-				<<if random(1,6) gt $slaves[$i].health and $slaves[$i].boobs gt 0>>
+				<<if random(1,6) gt $slaves[$i].health.condition and $slaves[$i].boobs gt 0>>
 					<<if $slaves[$i].weight lte -3>>
 						With nothing else to draw from, $his body @@.red;rapidly consumes $his breasts.@@
 						<<set $slaves[$i].boobs -= 1000>>
@@ -7921,7 +7927,7 @@
 						<<set $slaves[$i].boobs to 0>>
 					<</if>>
 				<</if>>
-				<<if random(1,6) gt $slaves[$i].health and $slaves[$i].butt gt 0>>
+				<<if random(1,6) gt $slaves[$i].health.condition and $slaves[$i].butt gt 0>>
 					<<if $slaves[$i].weight lte -3>>
 						With nothing else to draw from, $his body @@.red;rapidly consumes $his ass fat.@@
 						<<set $slaves[$i].butt -= 2>>
@@ -7934,15 +7940,15 @@
 					<</if>>
 				<</if>>
 			<<else>>
-				<<if random(1,8) gt $slaves[$i].health and $slaves[$i].weight gt -3>>
+				<<if random(1,8) gt $slaves[$i].health.condition and $slaves[$i].weight gt -3>>
 					$He has @@.red;lost weight.@@
 					<<set $slaves[$i].weight -= 1>>
 				<</if>>
-				<<if random(1,8) gt $slaves[$i].health and $slaves[$i].muscles gt 0>>
+				<<if random(1,8) gt $slaves[$i].health.condition and $slaves[$i].muscles gt 0>>
 					$He has @@.red;lost muscle mass.@@
 					<<set $slaves[$i].muscles -= 1>>
 				<</if>>
-				<<if random(1,8) gt $slaves[$i].health and $slaves[$i].boobs gt 0>>
+				<<if random(1,8) gt $slaves[$i].health.condition and $slaves[$i].boobs gt 0>>
 					<<if $slaves[$i].weight lte -3>>
 						With nothing else to draw from, $his body @@.red;rapidly consumes $his breasts.@@
 						<<set $slaves[$i].boobs -= 1000>>
@@ -7954,7 +7960,7 @@
 						<<set $slaves[$i].boobs to 0>>
 					<</if>>
 				<</if>>
-				<<if random(1,8) gt $slaves[$i].health and $slaves[$i].butt gt 0>>
+				<<if random(1,8) gt $slaves[$i].health.condition and $slaves[$i].butt gt 0>>
 					<<if $slaves[$i].weight lte -3>>
 						With nothing else to draw from, $his body @@.red;rapidly consumes $his ass fat.@@
 						<<set $slaves[$i].butt -= 2>>
@@ -8225,9 +8231,9 @@
 
 <<if ($curativeSideEffects != 0)>>
 	<<if ($slaves[$i].chem > 10)>>
-		<<if random(1,200) < $slaves[$i].chem + $slaves[$i].physicalAge - $slaves[$i].health - (5*$slaves[$i].curatives)>>
+		<<if random(1,200) < $slaves[$i].chem + $slaves[$i].physicalAge - $slaves[$i].health.condition - (5*$slaves[$i].curatives)>>
 			<<set _effect = random(1,10)>>
-			<<set $slaves[$i].health -= 10>>
+			<<run healthDamage($slaves[$i], 10)>>
 			<<switch _effect>>
 			<<case 1>>
 				A routine medical scan detects a small, benign growth in one of $his breasts. The autosurgery removes it with only @@.red;minor health consequences,@@
@@ -8264,30 +8270,30 @@
 	<<if $slaves[$i].weight > 190>>
 		<<if $slaves[$i].curatives != 1>>
 			$His extreme obesity @@.red;directly affects@@ $his health.
-			<<set $slaves[$i].health -= 2>>
+			<<run healthDamage($slaves[$i], 2)>>
 		<</if>>
 		<<if random(1,200) < 5>>
 			$He experienced @@.red;severe@@ health complications due to $his weight this week. After extensive surgery, $his health was stabilized, though $his survival is not assured.
-			<<set $slaves[$i].health -= 80>>
+			<<run healthDamage($slaves[$i], 80)>>
 		<</if>>
 	<<elseif $slaves[$i].weight > 160>>
 		<<if $slaves[$i].curatives != 1>>
 			$His obesity @@.red;directly affects@@ $his health.
-			<<set $slaves[$i].health-->>
+			<<run healthDamage($slaves[$i], 1)>>
 		<</if>>
 		<<if random(1,200) < 5>>
 			$He experienced @@.red;severe@@ health complications due to $his weight this week. After extensive surgery, $his health was stabilized.
-			<<set $slaves[$i].health -= 40>>
+			<<run healthDamage($slaves[$i], 40)>>
 		<</if>>
 	<<elseif $slaves[$i].weight > 130>>
 		<<if random(1,200) < 5>>
 			$He experienced @@.red;severe@@ health complications due to $his weight this week. After some rest, $he recovered.
-			<<set $slaves[$i].health -= 20>>
+			<<run healthDamage($slaves[$i], 20)>>
 		<</if>>
 	<<elseif $slaves[$i].weight > 95>>
 		<<if random(1,200) < 5>>
 			$He experienced @@.red;minor@@ health complications due to $his weight this week. After some rest, $he recovered.
-			<<set $slaves[$i].health -= 5>>
+			<<run healthDamage($slaves[$i], 5)>>
 		<</if>>
 	<</if>>
 <</if>>
@@ -8472,13 +8478,13 @@
 				<<set _miscarriageChance += 10>>
 			<</if>>
 			<<set _miscarriageChance -= ($slaves[$i].curatives == 1 ? 100 : 0)>>
-			<<if $slaves[$i].health < -20>>
-				<<set _miscarriageChance -= ($slaves[$i].health)>>
+			<<if $slaves[$i].health.health < -20>>
+				<<set _miscarriageChance -= ($slaves[$i].health.health)>>
 				<<if $slaves[$i].trust < -20>>
 					<<set _miscarriageChance -= ($slaves[$i].trust/2)>>
 				<</if>>
-			<<elseif $slaves[$i].health > 80>>
-				<<set _miscarriageChance -= ($slaves[$i].health/10)>>
+			<<elseif $slaves[$i].health.health > 80>>
+				<<set _miscarriageChance -= ($slaves[$i].health.health/10)>>
 			<</if>>
 			<<if $slaves[$i].weight < -50>>
 				<<set _miscarriageChance -= ($slaves[$i].weight)>>
@@ -8581,10 +8587,10 @@
 					<<if (($slaves[$i].belly > ($slaves[$i].pregAdaptation*3200)) || $slaves[$i].bellyPreg >= 500000)>>
 						<<set _burstChance = -80>>
 						<<set _burstChance += (($slaves[$i].belly/1000)-$slaves[$i].pregAdaptation)>> /* this could use to not be linear */
-						<<if $slaves[$i].health < -20>>
-							<<set _burstChance -= ($slaves[$i].health)>>
-						<<elseif $slaves[$i].health > 80>>
-							<<set _burstChance -= ($slaves[$i].health/10)>>
+						<<if $slaves[$i].health.health < -20>>
+							<<set _burstChance -= ($slaves[$i].health.health)>>
+						<<elseif $slaves[$i].health.health > 80>>
+							<<set _burstChance -= ($slaves[$i].health.health/10)>>
 						<</if>>
 						<<if $slaves[$i].weight < 0>>
 							<<set _burstChance -= $slaves[$i].weight>>
@@ -8624,11 +8630,13 @@
 	<</if>>
 <</if>>
 
+<<run endWeekHealthDamage($slaves[$i])>>
+
 <<if $slaves[$i].burst == 1>>
 	<<set $burstee = 1>>
 <<else>>
-	<<if $slaves[$i].health <= -90 && $slaves[$i].assignment != "get treatment in the clinic">>
-		<<set _deathSeed = ($slaves[$i].health-$slaves[$i].physicalAge-($slaves[$i].chem*2)-($slaves[$i].addict*2))>>
+	<<if $slaves[$i].health.health <= -90 && $slaves[$i].assignment != "get treatment in the clinic">>
+		<<set _deathSeed = ($slaves[$i].health.health-$slaves[$i].physicalAge-($slaves[$i].chem*2)-($slaves[$i].addict*2))>>
 		<<if $slaves[$i].weight < -50 || $slaves[$i].weight > 95>>
 			<<set _deathSeed -= 100>>
 		<</if>>
@@ -8654,8 +8662,8 @@
 		<</if>>
 	<</if>>
 	<<if $seeAge == 1>>
-		<<set _deathSeed = (($slaves[$i].health*2)-($slaves[$i].physicalAge*2)-($slaves[$i].chem*4)-($slaves[$i].addict*3))>>
-		<<if $slaves[$i].physicalAge >= Math.max((70+($slaves[$i].health/5)-($slaves[$i].addict)-($slaves[$i].chem/20)),50) && random(1,1000) > 800+_deathSeed>>
+		<<set _deathSeed = (($slaves[$i].health.health*2)-($slaves[$i].physicalAge*2)-($slaves[$i].chem*4)-($slaves[$i].addict*3))>>
+		<<if $slaves[$i].physicalAge >= Math.max((70+($slaves[$i].health.health/5)-($slaves[$i].addict)-($slaves[$i].chem/20)),50) && random(1,1000) > 800+_deathSeed>>
 			<<set $slaves[$i].death = "old">>
 			<<set $slaveDeath = 1>>
 		<</if>>
diff --git a/src/uncategorized/saPleaseYou.tw b/src/uncategorized/saPleaseYou.tw
index 7b6720083fdf3a030d7b14f77846d294ff51a0d8..323fae6cf3ae32ce718d998786c14c517cd820eb 100644
--- a/src/uncategorized/saPleaseYou.tw
+++ b/src/uncategorized/saPleaseYou.tw
@@ -1052,9 +1052,9 @@ serves you this week.
 	<<set $slaves[$i].counter.mammary += _mammaryUse, $mammaryTotal += _mammaryUse>>
 
 	<<if $slaves[$i].fuckdoll == 0>>
-		<<if ($slaves[$i].health < 0) && (random(1,100) > 50)>>
+		<<if ($slaves[$i].health.condition < 0) && (random(1,100) > 50)>>
 			Under your personal supervision, @@.green;$his health improves.@@
-			<<set $slaves[$i].health += 10>>
+			<<run improveCondition($slaves[$i], 10)>>
 		<</if>>
 		<<if $slaves[$i].fetish != "mindbroken">>
 			<<if ($slaves[$i].skill.oral < 100)>>
diff --git a/src/uncategorized/saRecruitGirls.tw b/src/uncategorized/saRecruitGirls.tw
index 9bd82c96373b276eeea84fd69980e9474bf7627e..b1f5f33024f02e735cb51521a642cc8cb42d19f4 100644
--- a/src/uncategorized/saRecruitGirls.tw
+++ b/src/uncategorized/saRecruitGirls.tw
@@ -381,7 +381,7 @@
 			$He does $his best to convince them that Free Cities medicine can keep them and their pregnancies safe and healthy.
 		<</if>>
 	<<elseif $recruiterTarget == "young migrants">>
-		<<if ($Recruiter.health >= 80) && ($Recruiter.face > 10)>>
+		<<if ($Recruiter.health.condition >= 80) && ($Recruiter.face > 10)>>
 			$His lovely face and shining health go a long way to convince them that being your slave promises a better life.
 			<<set $recruiterProgress += 1>>
 		<<else>>
@@ -530,7 +530,7 @@
 				<<set $arcologies[0].FSPaternalist += 0.01*$FSSingleSlaveRep>>
 			<</if>>
 		<</if>>
-		<<if $slaves[$i].health > 40>>
+		<<if $slaves[$i].health.condition > 40>>
 			<<set _seed += 1>>
 		<</if>>
 	<<elseif $arcologies[0].FSDegradationist != "unset">>
@@ -674,7 +674,7 @@
 		<</if>>
 	<</if>>
 	<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-		<<if ($slaves[$i].muscles >= 50 && $arcologies[0].FSPhysicalIdealistLaw == 0) || ($slaves[$i].muscles >= 20 && $slaves[$i].muscles < 50 && $arcologies[0].FSPhysicalIdealistLaw == 1) || ($slaves[$i].muscles > 40 && $slaves[$i].health > 80)>>
+		<<if ($slaves[$i].muscles >= 50 && $arcologies[0].FSPhysicalIdealistLaw == 0) || ($slaves[$i].muscles >= 20 && $slaves[$i].muscles < 50 && $arcologies[0].FSPhysicalIdealistLaw == 1) || ($slaves[$i].muscles > 40 && $slaves[$i].health.condition > 80)>>
 			<<set _seed += 4, _FSmatch++, $arcologies[0].FSPhysicalIdealist += 0.01*$FSSingleSlaveRep>>
 		<</if>>
 	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
@@ -684,7 +684,7 @@
 		<<if $slaves[$i].weight > 95 || ($slaves[$i].fetishStrength >= 95 && $slaves[$i].weight > 10)>>
 			<<set _seed += 2, _FSmatch++, $arcologies[0].FSHedonisticDecadence += 0.01*$FSSingleSlaveRep>>
 		<</if>>
-		<<if $slaves[$i].weight > 10 && $slaves[$i].health > 80>>
+		<<if $slaves[$i].weight > 10 && $slaves[$i].health.condition > 80>>
 			<<set _seed += 2, _FSdefend++>>
 		<</if>>
 	<</if>>
@@ -884,7 +884,7 @@
 		<<if $arcologies[0].FSPaternalist != "unset">>
 			<<if ($slaves[$i].devotion + $slaves[$i].trust) > 150 || $slaves[$i].relationship == -3>>
 				<<if $slaves[$i].intelligenceImplant >= 15>>
-					All week $he shares original poetry in which $his love for you shines through<<if $slaves[$i].health > 40>>, and $his healthy body shines in every live appearance<</if>>.
+					All week $he shares original poetry in which $his love for you shines through<<if $slaves[$i].health.condition > 40>>, and $his healthy body shines in every live appearance<</if>>.
 				<<else>>
 					Even though $he clearly adores $his <<= WrittenMaster($slaves[$i])>>, at times the uneducated slave struggles to fully and cogently express $his affection.
 				<</if>>
@@ -1039,7 +1039,7 @@
 				$He asks another slave to photo-document $his time in the gym this week: naked, of course, to show off $his impressive muscle definition, and in certain poses $he nearly seems to be making love to the equipment.
 			<<elseif ($slaves[$i].muscles >= 20 && $slaves[$i].muscles < 50 && $arcologies[0].FSPhysicalIdealistLaw == 1)>>
 				$He asks another slave to photo-document $his time on the track this week: naked, of course, to show off how perfectly toned body in motion.
-			<<elseif ($slaves[$i].muscles > 40 && $slaves[$i].health > 80)>>
+			<<elseif ($slaves[$i].muscles > 40 && $slaves[$i].health.condition > 80)>>
 				$He asks another slave to photo-document $his time in the gym this week: naked, of course, to show off how $he keeps in such fine shape, and in certain poses $he nearly seems to be making love to the equipment.
 			<<else>>
 				$He tries documenting $his exercise routine, but it's a snooze fest because $he doesn't have the guns to show for it.
@@ -1048,7 +1048,7 @@
 			<<if $slaves[$i].weight > 95 || ($slaves[$i].fetishStrength >= 95 && $slaves[$i].weight > 10)>>
 				$He frequently <<if $slaves[$i].fetishStrength >= 95>>makes public appearances where $he demonstrates the strength of $his fetishes and invites spectators to aid in satisfying $his desires<<else>>livestreams $himself relaxing and masturbating, making sure to draw attention to $his lush curves and how comfortable $his life is<</if>>.
 			<</if>>
-			<<if $slaves[$i].weight > 10 && $slaves[$i].health > 80>>
+			<<if $slaves[$i].weight > 10 && $slaves[$i].health.condition > 80>>
 				Despite $his weight, $he practically oozes health and happiness helping to ease potential worries about the excessive lifestyle slaves enjoy under you.
 			<</if>>
 			<<if $arcologies[0].FSHedonisticDecadenceResearch == 1 && $arcologies[0].FSDegradationist == "unset">>
diff --git a/src/uncategorized/saRules.tw b/src/uncategorized/saRules.tw
index 42f796c15f845bd4028c3268e9bf8d67fbfd4367..3062b5fde3c6c80af278d4fd701214118f95717b 100644
--- a/src/uncategorized/saRules.tw
+++ b/src/uncategorized/saRules.tw
@@ -174,10 +174,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -486,10 +486,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -524,7 +524,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he finds $his next client is into @@.gold;orgasm denial,@@ @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -675,10 +675,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -959,10 +959,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs during business hours, which @@.red;isn't healthy,@@ but helps bind $him to you strongly. The patrons won't complain either.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -997,7 +997,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he finds $his next dance to be both extremely sexual and @@.gold;completely unsatisfying,@@ @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -1141,10 +1141,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -1340,7 +1340,7 @@
 				<</if>>
 			<</if>>
 
-			<<if random(-200,200) > $slaves[$i].health>>
+			<<if random(-200,200) > $slaves[$i].health.condition>>
 				<<if $slaves[$i].devotion > 50>>
 					$He does $his best for you, so $he frequently deserves a reward and never needs to be punished.
 					<<set _punishments = 0>>
@@ -1384,10 +1384,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -1417,7 +1417,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him or complicate $his stay, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he's @@.gold;denied@@ $his next orgasm, @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -1512,10 +1512,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -1674,7 +1674,7 @@
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he's given a hit of mild aphrodisiacs and @@.gold;left to squirm without release,@@ @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -1813,10 +1813,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -2141,10 +2141,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -2179,7 +2179,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he's @@.gold;denied@@ $his next orgasm, @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -2318,10 +2318,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -2651,10 +2651,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -2689,7 +2689,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he's @@.gold;denied@@ $his next orgasm, @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -2844,10 +2844,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -3159,10 +3159,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -3197,7 +3197,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's dragged to the front of the class and @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he's dragged to the front of the class for use in a lesson on edging. $He is kept @@.gold;just shy of orgasm@@ for the rest of the day, @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -3341,10 +3341,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -3658,10 +3658,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -3696,7 +3696,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he finds $himself cleaning up around an ongoing orgy, yet @@.gold;forbidden from getting off,@@ @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -3835,10 +3835,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -4215,10 +4215,10 @@
 								$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 							<</if>>
 							These breaks are @@.green;good for $him.@@
-							<<set $slaves[$i].health += _rewards>>
+							<<run improveCondition($slaves[$i], _rewards)>>
 						<<case "drugs">>
 							$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-							<<set $slaves[$i].health -= _rewards>>
+							<<run healthDamage($slaves[$i], _rewards)>>
 							<<set $slaves[$i].devotion += _rewards*2>>
 						<<case "orgasm">>
 							$He's @@.hotpink;rewarded@@ with
@@ -4248,7 +4248,7 @@
 							<<set $slaves[$i].trust -= _punishments>>
 						<<case "whipping">>
 							When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-							<<set $slaves[$i].health -= _punishments>>
+							<<run healthDamage($slaves[$i], _punishments)>>
 							<<set $slaves[$i].trust -= 2*_punishments>>
 						<<case "chastity">>
 							When $he disobeys, $he finds $his @@.gold;milkings fewer and far between,@@ @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -4393,10 +4393,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -4755,10 +4755,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -4788,7 +4788,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he finds $his @@.gold;milkings fewer and far between,@@ @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -4850,10 +4850,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -4983,10 +4983,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -5019,7 +5019,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he's @@.gold;denied@@ $his next orgasm, @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -5134,10 +5134,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -5172,7 +5172,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $HeadGirl.slaveName @@.gold;ruins $his next orgasm,@@ @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
@@ -5396,7 +5396,7 @@
 							<<set $slaves[$i].devotion -= 3>>
 						<</if>>
 						and is @@.red;not good for $him,@@ since it's difficult to rest there.
-						<<set $slaves[$i].health -= 2>>
+						<<run healthDamage($slaves[$i], 2)>>
 					<<else>>
 						@@.yellow;extremely overcrowded.@@ The unpleasant situation
 						<<if $slaves[$i].trust > 20>>
@@ -5407,7 +5407,7 @@
 							<<set $slaves[$i].devotion -= 5>>
 						<</if>>
 						and is @@.red;bad for $his health.@@
-						<<set $slaves[$i].health -= 4>>
+						<<run healthDamage($slaves[$i], 4)>>
 					<</if>>
 				<</if>>
 			<</if>>
@@ -5520,10 +5520,10 @@
 						$He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>.
 					<</if>>
 					These breaks are @@.green;good for $him.@@
-					<<set $slaves[$i].health += _rewards>>
+					<<run improveCondition($slaves[$i], _rewards)>>
 				<<case "drugs">>
 					$He's @@.hotpink;rewarded@@ with hits of mild recreational drugs, which @@.red;isn't healthy,@@ but helps bind $him to you strongly.
-					<<set $slaves[$i].health -= _rewards>>
+					<<run healthDamage($slaves[$i], _rewards)>>
 					<<set $slaves[$i].devotion += _rewards*2>>
 				<<case "orgasm">>
 					$He's @@.hotpink;rewarded@@ with
@@ -5558,7 +5558,7 @@
 					<<set $slaves[$i].trust -= _punishments>>
 				<<case "whipping">>
 					When $he disobeys, $he's @@.gold;whipped,@@ not hard enough to mark $him, but hard enough to @@.red;hurt,@@ breaking $him quickly.
-					<<set $slaves[$i].health -= _punishments>>
+					<<run healthDamage($slaves[$i], _punishments)>>
 					<<set $slaves[$i].trust -= 2*_punishments>>
 				<<case "chastity">>
 					When $he disobeys, $he's @@.gold;denied@@ $his next orgasm, @@.red;reducing $his libido@@ but breaking $him to @@.hotpink;sexual obedience.@@
diff --git a/src/uncategorized/saServeYourOtherSlaves.tw b/src/uncategorized/saServeYourOtherSlaves.tw
index b819127fd4d30c277952d2daa01e40eff7afea7d..a9e96f6705d6a28469669e6cd30fbf894bf2cd80 100644
--- a/src/uncategorized/saServeYourOtherSlaves.tw
+++ b/src/uncategorized/saServeYourOtherSlaves.tw
@@ -84,7 +84,8 @@
 		<</if>>
 	<<else>>
 		Since <<if $subSlaves == 1>>$he is the only slave<<else>>there are so few other slaves<</if>> servicing your stock, $he is used to the @@.red;point of exhaustion.@@
-		<<set $slaves[$i].tired = 1, $slaves[$i].health -= 10>>
+		<<set $slaves[$i].tired = 1>>
+		<<run healthDamage($slaves[$i], 10)>>
 		<<if $averageDick > 5>>
 			<<if canDoVaginal($slaves[$i]) && $slaves[$i].vagina > 0 && $slaves[$i].vagina < 4>>
 				<<if ($slaves[$i].vagina*40)-($averageDick*5) < random(1,100)>>
@@ -327,7 +328,8 @@ is serving ''$slaves[_dom].slaveName'' this week.
 	<</if>>
 <<elseif ($slaves[_dom].fetishKnown == 1) && ($slaves[_dom].fetishStrength > 60) && ($slaves[_dom].fetish == "sadist") && canWalk($slaves[_dom])>>
 	$slaves[_dom].slaveName loves to inflict pain, and the first indication $slaves[$i].slaveName gets of what $he's in for this week is when $slaves[_dom].slaveName ambushes _him2 in the dormitory, tackles $him from behind, and hogties $him with sheets. <<if canTalk($slaves[_dom])>>$slaves[_dom].slaveName bends close to the immobilized $slaves[$i].slaveName's ear and whispers to $him that $he might as well scream.<<else>>$slaves[_dom].slaveName carefully uses gestures to communicate to $him that $he might as well scream.<</if>> $slaves[$i].slaveName's struggles to escape become desperate at this, and more desperate still when the week's first @@.red;beating@@ starts. Later, $he tries going limp and unresistant, but that just makes the annoyed $slaves[_dom].slaveName beat _his2 pain slave all the harder until _he2 gets a reaction again. It's a long and @@.hotpink;will breaking@@ week for $slaves[$i].slaveName, and $slaves[_dom].slaveName certainly @@.hotpink;enjoys torturing _his2 toy.@@
-	<<set $slaves[$i].devotion += 1, $slaves[$i].health -= 3>>
+	<<set $slaves[$i].devotion += 1>>
+	<<run healthDamage($slaves[$i], 3)>>
 	<<if $slaves[$i].need && $slaves[$i].fetishKnown>>
 		<<if $slaves[$i].fetish == "submissive" || $slaves[$i].fetish == "masochist">>
 			$slaves[$i].slaveName needs this kind of treatment to be truly sexually satisfied; this week, $his desire for abuse is sated.
@@ -535,9 +537,9 @@ is serving ''$slaves[_dom].slaveName'' this week.
 
 <<set $slaves[_dom].devotion += 4, $slaves[_dom].need = 0>>
 
-<<if $slaves[_dom].health < 40>>
+<<if $slaves[_dom].health.condition < 40>>
 	@@.green;$slaves[_dom].slaveName's health improves@@ with $slaves[$i].slaveName to serve _him2 and help with some of _his2 harder duties.
-	<<set $slaves[_dom].health += 10>>
+	<<run improveCondition($slaves[_dom], 10)>>
 <</if>>
 
 <<if $slaves[$i].devotion <= 20>>
diff --git a/src/uncategorized/schoolroomReport.tw b/src/uncategorized/schoolroomReport.tw
index f61ea790805c1ca0792c8758f38b2d466137288f..ff631199a2e16ff3cfa22317516e213614313dcc 100644
--- a/src/uncategorized/schoolroomReport.tw
+++ b/src/uncategorized/schoolroomReport.tw
@@ -12,14 +12,14 @@
 <<if $Schoolteacher != 0>>
 	<<set _FLs = $slaveIndices[$Schoolteacher.ID]>>
 
-	<<if ($slaves[_FLs].health < -80)>>
-		<<set $slaves[_FLs].health += 20>>
-	<<elseif ($slaves[_FLs].health < -40)>>
-		<<set $slaves[_FLs].health += 15>>
-	<<elseif ($slaves[_FLs].health < 0)>>
-		<<set $slaves[_FLs].health += 10>>
-	<<elseif ($slaves[_FLs].health < 90)>>
-		<<set $slaves[_FLs].health += 7>>
+	<<if ($slaves[_FLs].health.condition < -80)>>
+		<<run improveCondition($slaves[$i], 20)>>
+	<<elseif ($slaves[_FLs].health.condition < -40)>>
+		<<run improveCondition($slaves[$i], 15)>>
+	<<elseif ($slaves[_FLs].health.condition < 0)>>
+		<<run improveCondition($slaves[$i], 10)>>
+	<<elseif ($slaves[_FLs].health.condition < 90)>>
+		<<run improveCondition($slaves[$i], 7)>>
 	<</if>>
 	<<if ($slaves[_FLs].devotion <= 60)>>
 		<<set $slaves[_FLs].devotion++>>
@@ -148,14 +148,14 @@
 	<<set $i = $slaveIndices[$SchlRiIDs[_dI]]>>
 	<<setLocalPronouns $slaves[$i] 2>>
 	<<set $slaves[$i].devotion += _devBonus>>
-	<<if ($slaves[$i].health < -80)>>
-		<<set $slaves[$i].health += 20>>
-	<<elseif ($slaves[$i].health < -40)>>
-		<<set $slaves[$i].health += 10>>
-	<<elseif ($slaves[$i].health < 0)>>
-		<<set $slaves[$i].health += 7>>
-	<<elseif ($slaves[$i].health < 90)>>
-		<<set $slaves[$i].health += 3>>
+	<<if ($slaves[$i].health.condition < -80)>>
+		<<run improveCondition($slaves[$i], 20)>>
+	<<elseif ($slaves[$i].health.condition < -40)>>
+		<<run improveCondition($slaves[$i], 10)>>
+	<<elseif ($slaves[$i].health.condition < 0)>>
+		<<run improveCondition($slaves[$i], 7)>>
+	<<elseif ($slaves[$i].health.condition < 90)>>
+		<<run improveCondition($slaves[$i], 3)>>
 	<</if>>
 	<<if $slaves[$i].rules.living != "normal">>
 		<<set $slaves[$i].rules.living = "normal">>
diff --git a/src/uncategorized/seCoursing.tw b/src/uncategorized/seCoursing.tw
index a93fb4af6f2930d61f4d030fe4c5ff1308e9693d..817b7d30429f933964f64eb25250d39c09100f93 100644
--- a/src/uncategorized/seCoursing.tw
+++ b/src/uncategorized/seCoursing.tw
@@ -350,7 +350,7 @@ You lead your lurcher $activeLurcher.slaveName out on a leash, naked just like t
 <</if>>
 
 <<set $activeSlave.origin = "Your lurcher " + $activeLurcher.slaveName + " caught $him coursing; $he was a " + $origin + " hare.">>
-<<set $activeSlave.health = random(30,50)>>
+<<run setHealth($activeSlave, jsRandom(30,50))>>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-60,-75)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
diff --git a/src/uncategorized/seCoursingRace.tw b/src/uncategorized/seCoursingRace.tw
index 024805de1b8eed392e1c39c4677db5698d79a262..c53f68633baf8b22dd1a114c3aa895a25be7cee6 100644
--- a/src/uncategorized/seCoursingRace.tw
+++ b/src/uncategorized/seCoursingRace.tw
@@ -18,10 +18,10 @@ You place your hand on the leash's quick release and <<if canHear($activeLurcher
 <<else>>
 	$He's a bit hesitant about this, but gets off reasonably well.
 <</if>>
-<<if $activeLurcher.health > 60>>
+<<if $activeLurcher.health.condition > 60>>
 	$His shining health allows $him to pour it on.
 	<<set _LurcherSpeed += 1>>
-<<elseif $activeLurcher.health < 0>>
+<<elseif $activeLurcher.health.condition < 0>>
 	$His poor health slows $him down.
 	<<set _LurcherSpeed -= 1>>
 <</if>>
diff --git a/src/uncategorized/seCustomSlaveDelivery.tw b/src/uncategorized/seCustomSlaveDelivery.tw
index 5561998ab01218d884d02aaf18022b68e4cfd9dc..87839dc975d2955e9cacf05ef9e0d090ffe9ba8c 100644
--- a/src/uncategorized/seCustomSlaveDelivery.tw
+++ b/src/uncategorized/seCustomSlaveDelivery.tw
@@ -176,7 +176,7 @@
 <<else>>
 	<<set $activeSlave.voice = random(0,3)>>
 <</if>>
-<<set $activeSlave.health = $customSlave.health>>
+<<run setHealth($activeSlave, $customSlave.health.condition, $customSlave.health.shortDamage, $customSlave.health.longDamage, $customSlave.health.illness, $customSlave.health.tired)>>
 <<set $activeSlave.muscles = $customSlave.muscles>>
 <<set $activeSlave.weight = $customSlave.weight>>
 <<set $activeSlave.face = $customSlave.face>>
diff --git a/src/uncategorized/seLethalPit.tw b/src/uncategorized/seLethalPit.tw
index 41a99af4f302eac19a6d2c7af0cd346fe345f26a..4fcebf745bbde7d4a1c537d90d82771f8513c109 100644
--- a/src/uncategorized/seLethalPit.tw
+++ b/src/uncategorized/seLethalPit.tw
@@ -135,7 +135,7 @@ You review the rules — the <<if $pitAnimal == 0>>combatants<<else>>slave<</if>
 	$His height gives $him a reach advantage.
 <</if>>
 
-<<if _fighterOne.health > 50>>
+<<if _fighterOne.health.condition > 50>>
 	$His shining health makes $him a better fighter.
 <</if>>
 
@@ -151,7 +151,7 @@ You review the rules — the <<if $pitAnimal == 0>>combatants<<else>>slave<</if>
 	$His light weight is an impediment as a pit fighter.
 <</if>>
 
-<<if _fighterOne.health < -50>>
+<<if _fighterOne.health.condition < -50>>
 	$His poor health makes $him a weaker combatant.
 <</if>>
 
@@ -287,7 +287,7 @@ You review the rules — the <<if $pitAnimal == 0>>combatants<<else>>slave<</if>
 		_His2 height gives _him2 a reach advantage.
 	<</if>>
 
-	<<if _fighterTwo.health > 50>>
+	<<if _fighterTwo.health.condition > 50>>
 		_His2 shining health makes _him2 a better fighter.
 	<</if>>
 
@@ -303,7 +303,7 @@ You review the rules — the <<if $pitAnimal == 0>>combatants<<else>>slave<</if>
 		_His2 light weight is an impediment as a pit fighter.
 	<</if>>
 
-	<<if _fighterTwo.health < -50>>
+	<<if _fighterTwo.health.condition < -50>>
 		_His2 poor health makes _him2 a weaker combatant.
 	<</if>>
 
@@ -428,7 +428,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 	<<setLocalPronouns _loser 2>>
 	<<if !canSee(_winner) && !canSee(_loser)>>
 		_winner.slaveName and _loser.slaveName are both blind, making the fight a staredown. Neither slave wants to make the first move, especially with the drowning cacophony coming from the jeering crowd. Slowly, _winner.slaveName moves forward, waving $his sword side to side in the hopes of finding $his opponent before $he $himself gets found. _loser.slaveName's sword clips the tip of _winner.slaveName's setting off a surprisingly brutal series of slashes. The two slaves violently lay into each other, suffering more and more strikes as the struggle goes on. Less than a minute from first contact, both slaves are lying in their combined blood. As you begin to call it a draw, you notice _winner.slaveName start to stir. $He staggers to $his feet, coated in $his and _loser.slaveName's blood, before dropping back to $his knees. It seems $he lived through this fight; odds aren't likely $he'll do it again.
-		<<set _winner.health -= 50>>
+		<<run healthDamage(_winner, 50)>>
 		<<if $pitAudience == "paid">>
 			The audience is surprised by the sudden violence after so much standing around, and your @@.yellowgreen;cut of the betting@@ is modest.
 			<<run cashX(5000, "pit", _winner)>>
@@ -456,7 +456,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 		<</if>>
 	<<elseif !canSee(_winner)>>
 		_winner.slaveName centers $himself and hones in on _loser.slaveName's rapid breath. $He readies $himself, knowing $he has a single chance to live. With heavy steps, _loser.slaveName rushes $him, fully prepared to slaughter the helpless combatant. _winner.slaveName gambles everything on a single high slash, a slash that cut _loser.slaveName's undefended neck wide open. _winner.slaveName collapses to the ground, fully aware of _loser.slaveName's final gurgles, and the sword @@.red;firmly planted in $his side.@@ $He lived this time, barely, but $he doubts $he can do it again.
-		<<set _winner.health -= 80>>
+		<<run healthDamage(_winner, 80)>>
 		<<if $pitAudience == "paid">>
 			The audience is awestruck by the blind $girl's triumph, and your @@.yellowgreen;cut of the betting@@ is enormous.
 			<<run cashX(40000, "pit", _winner)>>
@@ -466,7 +466,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 		<</if>>
 	<<elseif !canSee(_loser)>>
 		_winner.slaveName sighs at _loser.slaveName's random slashing and calmly struts around the panicking slave. In one quick swoop, _he2 buries _his2 blade in _loser.slaveName's back, ending the poor _girl2's flailing.
-		<<set _winner.health -= 80>>
+		<<run healthDamage(_winner, 80)>>
 		<<if $pitAudience == "paid">>
 			The audience found the fight embarrassing, and your @@.yellowgreen;cut of the betting@@ is pitiful.
 			<<run cashX(40, "pit", _winner)>>
@@ -486,7 +486,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 			<</if>>
 		<<else>>
 			_winner.slaveName wants to win and is confident $he will, but $he isn't particularly sure about how to do so. $He fights cautiously, swinging $his sword in powerful but inaccurate strokes. It is only a matter of time before one of these strikes gets through; it's telling that rather than hitting what $he aimed at, _winner.slaveName accidentally opens a massive gash down _loser.slaveName's thigh. Realizing _he2 has to do something, _loser.slaveName makes a desperate counterattack, pouring blood as _he2 goes. _winner.slaveName panics and fails to parry one of the last counterstrikes before loss of blood ends the attack, suffering a @@.red;terrible cut@@ to $his shoulder. Down to one arm, _winner.slaveName is forced to make a long, loud butchery of ending the fight.
-			<<set _winner.health -= 20>>
+			<<run healthDamage(_winner, 20)>>
 			<<if $pitAudience == "paid">>
 				The audience is reasonably impressed by the blood, and your @@.yellowgreen;cut of the betting@@ is reasonable.
 				<<run cashX(4000, "pit", _winner)>>
@@ -497,7 +497,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 		<</if>>
 	<<elseif (_winner.skill.combat > 0) && (_loser.skill.combat > 0)>>
 		Upon your word the two combatants approach each other warily, both knowing the other is reasonably competent. Before long they are trading thrust and parry, swing and block. _winner.slaveName is slowly pressed back, so $he decides to change the nature of the fight. After three tries $he manages to force _loser.slaveName to close, suffering a @@.red;nearly severed ear@@ as $he does. _loser.slaveName realizes _he2 only retains an advantage at long range but cannot back up fast enough to avoid close combat. _loser.slaveName is forced back fast enough that _he2 trips; _he2's barely fallen on _his2 back before _he2 grunts with shock and pain, dying with a look of surprise as _he2 stares at the sword growing out of _his2 chest.
-		<<set _winner.health -= 20>>
+		<<run healthDamage(_winner, 20)>>
 		<<if $pitAudience == "paid">>
 			The audience is quite impressed by the expert fight, and your @@.yellowgreen;cut of the betting@@ is quite good.
 			<<run cashX(10000, "pit", _winner)>>
@@ -507,7 +507,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 		<</if>>
 	<<elseif (_winner.height-_loser.height <= -10)>>
 		_winner.slaveName realizes that _loser.slaveName's wingspan gives _him2 a huge reach advantage. $He bores straight in, taking @@.red;a glancing scalp wound@@ but coming on regardless. _loser.slaveName understands _his2 opponent's intention and backs off, but the pit is small and there isn't much room to retreat. When _his2 back hits a padded wall, _winner.slaveName aims a gutting cut that _loser.slaveName struggles to block. _He2 manages it, but the wall catches _his2 point, so the block is with _his2 wrist, not _his2 sword. The sharp blade cuts almost all the way through the joint, leaving _him2 in agony and totally incapable of defense. _winner.slaveName pushes _his2 head back against the wall and cuts _his2 throat down to the spine.
-		<<set _loser.health -= 20>>
+		<<run healthDamage(_loser, 20)>>
 		<<if $pitAudience == "paid">>
 			The audience is reasonably impressed by the blood, and your @@.yellowgreen;cut of the betting@@ is reasonable.
 			<<run cashX(4000, "pit", _winner)>>
@@ -684,7 +684,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 	<<if _winner == _fighterOne>>	/*if slave wins*/
 		<<if !canSee(_winner)>>
 			_winner.slaveName centers $himself and hones in on the _animal.species's rapid breath. $He readies $himself, knowing $he has a single chance to live. With heavy steps, the _animal.species rushes at $him, fully prepared to slaughter the helpless combatant. _winner.slaveName gambles everything on a single high slash, a slash that cuts the _animal.species's undefended neck wide open. _winner.slaveName collapses to the ground, fully aware of the _animal.species's final gurgles and the @@.red;deep scratches in $his side.@@ $He lived this time, barely, but $he doubts $he can do it again.
-			<<set _winner.health -= 80>>
+			<<run healthDamage(_winner, 80)>>
 			<<if $pitAudience == "paid">>
 				The audience is awestruck by the blind $girl's triumph, and your @@.yellowgreen;cut of the betting@@ is enormous.
 				<<run cashX(50000, "pit", _winner)>>
diff --git a/src/uncategorized/seNonlethalPit.tw b/src/uncategorized/seNonlethalPit.tw
index 1e6e26a5b5e8085d50ee0fa4f7778d84562c0547..946e229476206ec2011803046c925baa0e06c876 100644
--- a/src/uncategorized/seNonlethalPit.tw
+++ b/src/uncategorized/seNonlethalPit.tw
@@ -119,7 +119,7 @@
 		$His height gives $him a reach advantage with $his fists and feet.
 	<</if>>
 
-	<<if _fighterOne.health > 50>>
+	<<if _fighterOne.health.condition > 50>>
 		$His shining health makes $him a better fighter.
 	<</if>>
 
@@ -135,7 +135,7 @@
 		$His light weight is an impediment as a pit fighter.
 	<</if>>
 
-	<<if _fighterOne.health < -50>>
+	<<if _fighterOne.health.condition < -50>>
 		$His poor health makes $him a weaker combatant.
 	<</if>>
 
@@ -259,7 +259,7 @@
 		_His2 height gives _him2 a reach advantage with _his2 fists and feet.
 	<</if>>
 
-	<<if _fighterTwo.health > 50>>
+	<<if _fighterTwo.health.condition > 50>>
 		_His2 shining health makes _him2 a better fighter.
 	<</if>>
 
@@ -275,7 +275,7 @@
 		_His2 light weight is an impediment as a pit fighter.
 	<</if>>
 
-	<<if _fighterTwo.health < -50>>
+	<<if _fighterTwo.health.condition < -50>>
 		_His2 poor health makes _him2 a weaker combatant.
 	<</if>>
 
@@ -450,7 +450,7 @@
 			<</if>>
 		<<else>>
 			_winner.slaveName wants to win and is confident $he will, but $he isn't particularly sure about how to do so. $He fights cautiously, mostly hitting _loser.slaveName from afar. Slowly, the rain of blows begins to tell, opening _loser.slaveName's lip, giving _him2 a bloody nose, and bruising _his2 face. Realizing _he2 has to do something, _loser.slaveName makes a desperate counterattack, @@.red;dripping blood@@ as _he2 goes. As _he2 does _he2 manages to get _his2 face in the way of another of _winner.slaveName's inexpert strikes and goes down hard. _He2 makes to rise, but _winner.slaveName decides the fight by the simple expedient of kicking _him2 in the crotch.
-			<<set _loser.health -= 10>>
+			<<run healthDamage(_loser, 10)>>
 			<<if $pitAudience == "paid">>
 				The audience is reasonably impressed by the beating, and your @@.yellowgreen;cut of the betting@@ is reasonable.
 				<<run cashX(100, "pit", _winner)>>
@@ -461,8 +461,8 @@
 		<</if>>
 	<<elseif (_winner.belly >= 600000) && (_loser.belly >= 600000)>>
 		_winner.slaveName and _loser.slaveName stare each other down and both come to a realization. Neither can reach the other around their massive bellies. Instead, they choose to ram their bulk into each other in hopes of toppling the weaker. After a drawn out struggle, both slaves' middles are @@.red;dark red and shuddering,@@ ready to burst open. Rather than continue, _loser.slaveName lets the next strike down _him2 hoping that the outcome of this fight isn't fatal.
-		<<set _winner.health -= 50>>
-		<<set _loser.health -= 50>>
+		<<run healthDamage(_winner, 50)>>
+		<<run healthDamage(_loser, 50)>>
 		<<if $pitAudience == "paid">>
 			The audience is very impressed by the showdown, and your @@.yellowgreen;cut of the betting@@ is good.
 			<<run cashX(1500, "pit", _winner)>>
@@ -481,8 +481,8 @@
 		<</if>>
 	<<elseif (_winner.skill.combat > 0) && (_loser.skill.combat > 0)>>
 		Upon your word the two combatants approach each other warily, both knowing the other is reasonably competent. Before long they are trading expert blows. _winner.slaveName is getting the worst of it, so $he decides to change the nature of the fight. After three tries $he manages to bring _loser.slaveName to the ground, suffering a @@.red;broken nose@@ as $he does. _loser.slaveName tries to break the imperfect hold but only earns _himself2 an elbow to the face. _He2's furious and _winner.slaveName is obliged to wrench _his2 arm @@.red;to the point of damage@@ before _he2 allows _himself2 to go limp.
-		<<set _loser.health -= 10>>
-		<<set _winner.health -= 10>>
+		<<run healthDamage(_loser, 10)>>
+		<<run healthDamage(_winner, 10)>>
 		<<if $pitAudience == "paid">>
 			The audience is quite impressed by the expert fight, and your @@.yellowgreen;cut of the betting@@ is quite good.
 			<<run cashX(2000, "pit", _winner)>>
@@ -492,7 +492,7 @@
 		<</if>>
 	<<elseif (_winner.height-_loser.height >= 10)>>
 		_winner.slaveName realizes that _loser.slaveName's wingspan gives _him2 a huge reach advantage. $He bores straight in, taking a hit or two but coming on regardless. _loser.slaveName understands _his2 opponent's intention and backs off, but the pit is small and there isn't much room to retreat. When _his2 back hits a padded wall, _winner.slaveName manages to land a light hit to _his2 stomach that leaves _loser.slaveName winded enough that a hard kick to the side of _his2 knee goes undefended. It causes @@.red;considerable damage,@@ dropping _him2 and ending the fight.
-		<<set _loser.health -= 10>>
+		<<run healthDamage(_loser, 10)>>
 		<<if $pitAudience == "paid">>
 			The audience is reasonably impressed by the takedown, and your @@.yellowgreen;cut of the betting@@ is reasonable.
 			<<run cashX(1000, "pit", _winner)>>
@@ -502,7 +502,8 @@
 		<</if>>
 	<<elseif (_loser.eyebrowPiercing > 0)>>
 		The fight starts slowly, with the two trading jabs. Just as the spectators are getting bored, _loser.slaveName takes a glancing blow to the eyebrow. _His2 piercing catches on _winner.slaveName's glove and tears out. _loser.slaveName goes after _his2 tormentor in fury, streaming blood, the piercing forgotten on the mat. Any tendency _winner.slaveName might have had to feel badly about this is extinguished by the assault, and soon _winner.slaveName is even willing to follow up on the success by targeting pierced body parts. The fight ends with poor _loser.slaveName writhing in pain on the mat, @@.red;leaking blood@@ from several terribly shredded areas.
-		<<set _loser.health -= 10, _loser.eyebrowPiercing = 0>>
+		<<set _loser.eyebrowPiercing = 0>>
+		<<run healthDamage(_loser, 10)>>
 		<<if $pitAudience == "paid">>
 			The audience is reasonably impressed by the gory spectacle, and your @@.yellowgreen;cut of the betting@@ is reasonable.
 			<<run cashX(1000, "pit", _winner)>>
@@ -512,7 +513,7 @@
 		<</if>>
 	<<elseif (_winner.muscles > 30)>>
 		_winner.slaveName is so massively muscular that $he's actually impeded by $his size. _loser.slaveName is properly afraid of $his strength, though, so _he2 tries to stay away as much as _he2 can. The pit isn't large, however, and eventually _winner.slaveName manages to lay a hand on _him2. $He pulls _him2 down, and then it's all over but the beating. _loser.slaveName rains blows on _his2 huge oppressor, but all _winner.slaveName has to do is hold on with one arm and deliver damage with the other. By the time _he2 gives up and goes limp, _loser.slaveName has collected @@.red;many minor injuries.@@
-		<<set _loser.health -= 10>>
+		<<run healthDamage(_loser, 10)>>
 		<<if $pitAudience == "paid">>
 			The audience is reasonably impressed by the show of strength, and your @@.yellowgreen;cut of the betting@@ is reasonable.
 			<<run cashX(1000, "pit", _winner)>>
@@ -1051,7 +1052,7 @@
 		<<set _orifice = "mouth">>	/*this shouldn't ever actually be used*/
 	<</if>>
 
-	<<if ($activeSlave.muscles > -30) && ($activeSlave.weight <= 95) && ($activeSlave.health >= -50) && ($activeSlave.bellyPreg <= 5000) && ($activeSlave.bellyImplant <= 4000) && ($activeSlave.labor == 0) && ($activeSlave.bellyFluid <= 2000)>>
+	<<if ($activeSlave.muscles > -30) && ($activeSlave.weight <= 95) && ($activeSlave.health.condition >= -50) && ($activeSlave.bellyPreg <= 5000) && ($activeSlave.bellyImplant <= 4000) && ($activeSlave.labor == 0) && ($activeSlave.bellyFluid <= 2000)>>
 		<<set _canRun = 1>>
 	<<else>>
 		<<set _canRun = 0>>
diff --git a/src/uncategorized/seRaiding.tw b/src/uncategorized/seRaiding.tw
index da6fc519c61f79b468187d2a85d8bff6fe0821d1..4620e2caa9353f991d03488e04fa478df8b7d32b 100644
--- a/src/uncategorized/seRaiding.tw
+++ b/src/uncategorized/seRaiding.tw
@@ -609,7 +609,7 @@ target
 <</switch>>
 
 <<set $activeSlave.origin = "Your " + $mercenariesTitle + " caught $him while raiding; $he was a " + $origin + ".">>
-<<set $activeSlave.health = random(30,50)>>
+<<run setHealth($activeSlave, random(30,50))>>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-60,-75)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
diff --git a/src/uncategorized/seRecruiterSuccess.tw b/src/uncategorized/seRecruiterSuccess.tw
index 0c7131a627974b0f4fa062be7c8c7a4fc80f6919..2f7c8d6c478aa5275dd49de9376bf40f3311c1ee 100644
--- a/src/uncategorized/seRecruiterSuccess.tw
+++ b/src/uncategorized/seRecruiterSuccess.tw
@@ -10,7 +10,7 @@
 <<set $activeSlave.origin = "$He submitted to enslavement for a better chance at survival than $he had as a migrant.">>
 <<set $activeSlave.devotion = random(-15,5)>>
 <<set $activeSlave.trust = random(-10,10)>>
-<<set $activeSlave.health = random(-80,20)>>
+<<run setHealth($activeSlave, jsRandom(-80,20))>>
 <<set $activeSlave.anus = 0>>
 <<if $activeSlave.vagina > 0>>
 	<<set $activeSlave.vagina = random(1,3)>>
@@ -40,7 +40,7 @@
 <<set $activeSlave.origin = "$He submitted to enslavement for a better quality of life than $he had as a recent divorcee.">>
 <<set $activeSlave.devotion = random(-15,5)>>
 <<set $activeSlave.trust = random(-10,10)>>
-<<set $activeSlave.health = random(-40,20)>>
+<<run setHealth($activeSlave, jsRandom(-40,20))>>
 <<set $activeSlave.anus = random(1,3)>>
 <<if $activeSlave.balls > 0>>
 	<<set $activeSlave.vagina = random(1,3)>>
@@ -68,7 +68,7 @@
 <<set $activeSlave.origin = "$He submitted to enslavement as $his only way to obtain surgery to transform $him into a woman.">>
 <<set $activeSlave.devotion = random(-15,5)>>
 <<set $activeSlave.trust = random(-10,10)>>
-<<set $activeSlave.health = random(-40,20)>>
+<<run setHealth($activeSlave, jsRandom(-40,20))>>
 <<if $activeSlave.balls == 0>>
 	<<set $activeSlave.balls = random(1,3)>>
 <</if>>
@@ -96,7 +96,7 @@
 <<set $activeSlave.origin = "$He submitted to enslavement out of a misguided desire to join a sexually libertine society.">>
 <<set $activeSlave.devotion = random(-15,5)>>
 <<set $activeSlave.trust = random(-10,10)>>
-<<set $activeSlave.health = random(-40,20)>>
+<<run setHealth($activeSlave, jsRandom(-40,20))>>
 <<set $activeSlave.anus = random(1,3)>>
 <<if $activeSlave.balls == 0>>
 	<<set $activeSlave.balls = random(1,3)>>
@@ -135,7 +135,7 @@
 <<set $activeSlave.origin = "$He submitted to enslavement to get access to modern prenatal care.">>
 <<set $activeSlave.devotion = random(-15,5)>>
 <<set $activeSlave.trust = random(-10,10)>>
-<<set $activeSlave.health = random(-80,-20)>>
+<<run setHealth($activeSlave, jsRandom(-80,20))>>
 <<set $activeSlave.vagina = random(1,3)>>
 <<set $activeSlave.preg = random(15,39)>>
 <<set $activeSlave.pregType = setPregType($activeSlave)>>
@@ -171,7 +171,7 @@
 <<set $activeSlave.career = "a prostitute">>
 <<set $activeSlave.devotion = random(-15,5)>>
 <<set $activeSlave.trust = random(-10,10)>>
-<<set $activeSlave.health = random(-80,20)>>
+<<run setHealth($activeSlave, jsRandom(-80,20))>>
 <<set $activeSlave.anus = random(1,3)>>
 <<if $activeSlave.balls > 0>>
 	<<set $activeSlave.vagina = random(1,3)>>
diff --git a/src/uncategorized/sellSlave.tw b/src/uncategorized/sellSlave.tw
index 8e08fa6306de5edcfa4b010368698d447bbfe10b..d2eec4b60acd2aa15b288302392ce99adac37c9b 100644
--- a/src/uncategorized/sellSlave.tw
+++ b/src/uncategorized/sellSlave.tw
@@ -809,7 +809,7 @@ __Bids Received__
 <<elseif ($activeSlave.skill.oral >= 100) && (random(1,100) > 80)>>
 	<br>''<<print cashFormat(_Price)>>'' from a citizen interested in acquiring a skilled cocksucker.
 	<<set _NewOwner = 1>>
-<<elseif ($activeSlave.health > 80) && (random(1,100) > 80)>>
+<<elseif ($activeSlave.health.condition > 80) && (random(1,100) > 80)>>
 	<br>''<<print cashFormat(_Price)>>'' from a citizen who pays creepily close attention to the state of $his health, and ignores everything else.
 	<<set _NewOwner = 1>>
 <<elseif ($activeSlave.nationality != 0) && (random(1,100) > 80)>>
@@ -1342,7 +1342,7 @@ __Bids Received__
 
 <<if $activeSlave.weight > 10>>
 	<<if $activeSlave.muscles > 5>>
-		<<if $activeSlave.health > 60>>
+		<<if $activeSlave.health.condition > 60>>
 			<<if $slaveCost < 10000>>
 				<<if random(1,100) > 60>>
 					<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a prominent citizen who takes unusually close interest in $his health and muscle tone, and cannot quite hide his salivation as he does so.
@@ -1524,7 +1524,7 @@ __Bids Received__
 <</if>>
 
 <<if $activeSlave.skill.combat >= 1>>
-	<<if $activeSlave.health > 40>>
+	<<if $activeSlave.health.condition > 40>>
 		<<if $activeSlave.muscles > 25>>
 			<<if random(1,100) > 70>>
 				<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a recreation of the Great Aztec Empire. He's in the market for willing, strong and combat ready slaves, to bolster his empire
@@ -1539,7 +1539,7 @@ __Bids Received__
 <</if>>
 
 <<if $activeSlave.skill.combat > 0>>
-	<<if $activeSlave.health > 40>>
+	<<if $activeSlave.health.condition > 40>>
 		<<if $activeSlave.muscles > 5>>
 			<<if random(1,100) > 70>>
 				<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of classical Rome. He's in the market for slaves with basic combat skills to fight in modern gladiatorial combats.
@@ -1568,7 +1568,7 @@ __Bids Received__
 
 <<if $activeSlave.muscles > 5>>
 	<<if $activeSlave.muscles <= 95>>
-		<<if $activeSlave.health > 60>>
+		<<if $activeSlave.health.condition > 60>>
 			<<if random(1,100) > 70>>
 				<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to muscular ladies. He seems to feel that $activeSlave.slaveName is not at $his true potential, and wants a try at improving $his physique himself.
 				<<link "Accept bid" "Slave Sold">>
@@ -1583,7 +1583,7 @@ __Bids Received__
 
 <<if $activeSlave.weight > 30>>
 	<<if $activeSlave.weight <= 95>>
-		<<if $activeSlave.health > 60>>
+		<<if $activeSlave.health.condition > 60>>
 			<<if random(1,100) > 70>>
 				<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to chubby ladies. He seems to feel that $activeSlave.slaveName can handle a fair bit more weight, and wants a try at fattening $him up himself.
 				<<link "Accept bid" "Slave Sold">>
@@ -1809,7 +1809,7 @@ __Bids Received__
 <<if $seePreg != 0>>
 	<<if $arcologies[0].FSPaternalist == "unset">>
 		<<if $slaveCost < 10000>>
-			<<if $activeSlave.health > 40>>
+			<<if $activeSlave.health.condition > 40>>
 				<<if $activeSlave.ovaries == 1>>
 					<<if random(1,100) > 50>>
 						<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a high-volume breeding operation interested in $him mostly for $his healthy, functional womb.
@@ -1841,7 +1841,7 @@ __Bids Received__
 <<if $arcologies[0].FSDegradationist == "unset">>
 	<<if $slaveCost < 50000>>
 		<<if $activeSlave.boobsImplant == 0>>
-			<<if $activeSlave.health > 40>>
+			<<if $activeSlave.health.condition > 40>>
 				<<if random(1,100) > 50>>
 					<br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.8)/500))>>'' from a free-range farm that pays for the high costs of high quality livestock care by aggressively marketing its cruelty-free products.
 					<<link "Accept bid" "Slave Sold">>
@@ -1855,7 +1855,7 @@ __Bids Received__
 	<</if>>
 <</if>>
 
-<<if $activeSlave.health > 40>>
+<<if $activeSlave.health.condition > 40>>
 	<<if $slaveCost < 5000>>
 		<<if random(1,100) > 10>>
 			<br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from an organ harvesting firm that acquires healthy raw materials cheaply.
diff --git a/src/uncategorized/servantsQuartersReport.tw b/src/uncategorized/servantsQuartersReport.tw
index 853a50862a28dcfe09081e799ccc44c5c60182bf..3d67aa66625684ac7b345e53eb432cf3817f4b70 100644
--- a/src/uncategorized/servantsQuartersReport.tw
+++ b/src/uncategorized/servantsQuartersReport.tw
@@ -13,14 +13,14 @@
 	<<set _FLs = $slaveIndices[$Stewardess.ID]>>
 
 	<<set $slaves[_FLs].devotion += _devBonus>>
-	<<if ($slaves[_FLs].health < -80)>>
-		<<set $slaves[_FLs].health += 20>>
-	<<elseif ($slaves[_FLs].health < -40)>>
-		<<set $slaves[_FLs].health += 15>>
-	<<elseif ($slaves[_FLs].health < 0)>>
-		<<set $slaves[_FLs].health += 10>>
-	<<elseif ($slaves[_FLs].health < 90)>>
-		<<set $slaves[_FLs].health += 7>>
+	<<if ($slaves[_FLs].health.condition < -80)>>
+		<<run improveCondition($slaves[_FLs], 20)>>
+	<<elseif ($slaves[_FLs].health.condition < -40)>>
+		<<run improveCondition($slaves[_FLs], 15)>>
+	<<elseif ($slaves[_FLs].health.condition < 0)>>
+		<<run improveCondition($slaves[_FLs], 10)>>
+	<<elseif ($slaves[_FLs].health.condition < 90)>>
+		<<run improveCondition($slaves[_FLs], 7)>>
 	<</if>>
 	<<if $slaves[_FLs].devotion <= 60>>
 		<<set $slaves[_FLs].devotion++>>
@@ -77,9 +77,9 @@
 	<<elseif _FLsFetish == 2>>
 		Having a legion of servants jumping to obey $his daily commands @@.lightsalmon;makes $him more dominant.@@
 	<</if>>
-	<<if ($Stewardess.health < 10)>>
+	<<if ($Stewardess.health.condition < 10)>>
 		Though $he tries to watch the servants, $his lack of good health inhibits $him.
-	<<elseif ($Stewardess.health < 80)>>
+	<<elseif ($Stewardess.health.condition < 80)>>
 		<<set $stewardessBonus += 50>>
 		$His good health allows $him to work long hours and @@.yellowgreen;drive@@ the servants hard.
 	<<else>>
@@ -235,14 +235,14 @@
 	<<elseif ($slaves[$i].trust < -30)>>
 		<<set $slaves[$i].trust += 1>>
 	<</if>>
-	<<if ($slaves[$i].health < -80)>>
-		<<set $slaves[$i].health += 20>>
-	<<elseif ($slaves[$i].health < -40)>>
-		<<set $slaves[$i].health += 10>>
-	<<elseif ($slaves[$i].health < 0)>>
-		<<set $slaves[$i].health += 7>>
-	<<elseif ($slaves[$i].health < 90)>>
-		<<set $slaves[$i].health += 3>>
+	<<if ($slaves[$i].health.condition < -80)>>
+		<<run improveCondition($slaves[$i], 20)>>
+	<<elseif ($slaves[$i].health.condition < -40)>>
+		<<run improveCondition($slaves[$i], 10)>>
+	<<elseif ($slaves[$i].health.condition < 0)>>
+		<<run improveCondition($slaves[$i], 7)>>
+	<<elseif ($slaves[$i].health.condition < 90)>>
+		<<run improveCondition($slaves[$i], 3)>>
 	<</if>>
 	<<switch $servantsQuartersDecoration>>
 	<<case "Arabian Revivalist" "Aztec Revivalist" "Chattel Religionist" "Chinese Revivalist" "Degradationist" "Edo Revivalist" "Egyptian Revivalist" "Roman Revivalist" "Subjugationist" "Supremacist">>
diff --git a/src/uncategorized/slaveAssignmentsReport.tw b/src/uncategorized/slaveAssignmentsReport.tw
index f82ba3678cd1f11ef4c2ab2b4dfdc8a705496183..ec1afc6a2d4f1920306769b35189aadabbd88dbf 100644
--- a/src/uncategorized/slaveAssignmentsReport.tw
+++ b/src/uncategorized/slaveAssignmentsReport.tw
@@ -420,6 +420,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue
 <<else>> /*You are providing > 80% of their desired amount of sex*/
 	<<set $classSatisfied.topClass = 1>>
 <</if>>
+
 <br><br>
 
 <<for $i = 0; $i < _SL; $i++>>
@@ -490,7 +491,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue
 			<<set $HGEnergy++>>
 		<</if>>
 		<<if canAchieveErection($HeadGirl)>>
-			<<set $HGCum = 2+Math.trunc(($HeadGirl.balls/5)+($HeadGirl.energy/95)+($HeadGirl.health/95)+($HeadGirl.devotion/95)+($reproductionFormula*5))>>
+			<<set $HGCum = 2+Math.trunc(($HeadGirl.balls/5)+($HeadGirl.energy/95)+($HeadGirl.health.condition/95)+($HeadGirl.devotion/95)+($reproductionFormula*5))>>
 		<</if>>
 	<<else>>
 		<<= removeJob($slaves[$i], "be your Head Girl")>>
@@ -791,6 +792,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue
 <<if $slaves[$i].bellyPain != 0>>
 	<<set $slaves[$i].bellyPain = 0>>
 <</if>>
+
 /* preg speed and advance*/
 
 <<if $slaves[$i].preg > 0>>
@@ -873,6 +875,14 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue
 
 <</for>>
 
+/*Spa room*/
+<<if $spa > 0>>
+	<<set $spaSpots = ($spa - $SpaiIDs.length) * 20>>
+	<<if $Attendant != 0>>
+		<<set $spaSpots = Math.trunc($spaSpots * (1 + ($Attendant.skill.attendant / 400)))>> /*A skilled attendant improves available space by 25%*/
+	<</if>>
+<</if>>
+
 <<if $averageDick > 0>><<set $averageDick = $averageDick/$slavesWithWorkingDicks>><</if>>
 <<set $freeSexualEnergy = $PC.sexualEnergy-$fuckSlaves>>
 <<if $freeSexualEnergy > 0>>
@@ -895,7 +905,7 @@ $sexDemandResult.topClass = Math.trunc((($NPCSexSupply.topClass + $slaveJobValue
 			<<continue>>
 		<</if>>
 
-		<<if ($headGirlTrainsHealth && _Slave.health < -20)>>
+		<<if ($headGirlTrainsHealth && _Slave.health.condition < -20)>>
 			<<set _HGPossibleSlaves[0].push({ID: _Slave.ID, training: "health"})>>
 			<<continue>>
 		<</if>>
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 2c9f5b874e8bff17bb1add74ad84f17fd02dc21d..f0e69a8a240940f621ca2e5c39cc0514212dc392 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -1450,7 +1450,7 @@ Hormones: <strong><span id="hormones">
 
 <br>Diet: <strong><span id="diet">$activeSlave.diet</span></strong>.
 <<link "Healthy">><<set $activeSlave.diet = "healthy">><<replace "#diet">>$activeSlave.diet<</replace>><</link>>
-<<if ($activeSlave.health < 90 || $activeSlave.chem >= 10) && ($dietCleanse == 1)>>
+<<if ($activeSlave.health.condition < 90 || $activeSlave.chem >= 10) && ($dietCleanse == 1)>>
 	| <<link "Cleanse">><<set $activeSlave.diet = "cleansing">><<replace "#diet">>$activeSlave.diet<</replace>><</link>>
 <<elseif ($dietCleanse == 1)>>
 	| //$He is already healthy//
diff --git a/src/uncategorized/slaveShelter.tw b/src/uncategorized/slaveShelter.tw
index 31046f5dee4ac6a201aea8b226dc34b4aae4807c..c24d26bb8ac59067596d18c17c92f0344683d3d0 100644
--- a/src/uncategorized/slaveShelter.tw
+++ b/src/uncategorized/slaveShelter.tw
@@ -45,7 +45,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "a slave">>
 	<<set $shelterSlave.devotion = random(-25,-45)>>
 	<<set $shelterSlave.trust = random(-25,-45)>>
-	<<set $shelterSlave.health = random(-30,-10)>>
+	<<run setHealth($shelterSlave, jsRandom(-30,-10))>>
 	<<set $shelterSlave.anus = 3>>
 	<<set $shelterSlave.skill.oral = 0>>
 	<<set $shelterSlave.skill.anal = 0>>
@@ -67,7 +67,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<run removeLimbs($shelterSlave, "all")>>
 	<<set $shelterSlave.devotion = random(-100,-90)>>
 	<<set $shelterSlave.trust = random(-100,-90)>>
-	<<set $shelterSlave.health = random(-80,-60)>>
+	<<run setHealth($shelterSlave, jsRandom(-60,-40), normalRandInt(10, 3), normalRandInt(20, 3))>>
 	<<set $shelterSlave.behavioralFlaw = either("hates men", "hates women", "odd")>>
 	<<set $shelterSlave.sexualFlaw = either("apathetic", "hates anal", "hates oral", "hates penetration")>>
 <<case "blind">>
@@ -83,7 +83,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.custom.desc = "$He has an obvious burn across $his eyes.">>
 	<<set $shelterSlave.devotion = random(-100,-90)>>
 	<<set $shelterSlave.trust = random(-100,-90)>>
-	<<set $shelterSlave.health = random(-80,-60)>>
+	<<run setHealth($shelterSlave, jsRandom(-60,-40), normalRandInt(10, 3), normalRandInt(20, 3))>>
 	<<set $shelterSlave.behavioralFlaw = "hates men">>
 	<<set $shelterSlave.sexualFlaw = "hates oral">>
 	<<set $shelterSlave.canRecruit = 0>>
@@ -99,7 +99,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.hears = -2>>
 	<<set $shelterSlave.devotion = random(-100,-90)>>
 	<<set $shelterSlave.trust = random(-100,-90)>>
-	<<set $shelterSlave.health = random(-80,-60)>>
+	<<run setHealth($shelterSlave, jsRandom(-60,-40), normalRandInt(10, 3), normalRandInt(20, 3))>>
 	<<set $shelterSlave.behavioralFlaw = "hates men">>
 	<<set $shelterSlave.sexualFlaw = "hates oral">>
 	<<set $shelterSlave.canRecruit = 0>>
@@ -113,7 +113,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "homeless">>
 	<<set $shelterSlave.devotion = random(-25,-45)>>
 	<<set $shelterSlave.trust = random(-25,-45)>>
-	<<set $shelterSlave.health = random(-50,-30)>>
+	<<run setHealth($shelterSlave, jsRandom(-50,-30), normalRandInt(10, 3), normalRandInt(20, 3))>>
 	<<set $shelterSlave.weight = -50>>
 	<<set $shelterSlave.vagina = 9>>
 	<<set $shelterSlave.bellySag = 20>>
@@ -143,7 +143,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "a slave">>
 	<<set $shelterSlave.devotion = random(-100,-80)>>
 	<<set $shelterSlave.trust = random(-100,-90)>>
-	<<set $shelterSlave.health = random(-75,-50)>>
+	<<run setHealth($shelterSlave, jsRandom(-60,-40), normalRandInt(10, 3), normalRandInt(20, 3))>>
 	<<set $shelterSlave.dick = 0>>
 	<<set $shelterSlave.foreskin = 0>>
 	<<set $shelterSlave.balls = 0>>
@@ -167,7 +167,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "a slave">>
 	<<set $shelterSlave.devotion = random(-100,-80)>>
 	<<set $shelterSlave.trust = random(-100,-90)>>
-	<<set $shelterSlave.health = random(-75,-50)>>
+	<<run setHealth($shelterSlave, jsRandom(-60,-40), normalRandInt(10, 3), normalRandInt(20, 3))>>
 	<<set $shelterSlave.boobs = 0>>
 	<<set $shelterSlave.boobsImplant = 0>>
 	<<set $shelterSlave.nipples = "tiny">>
@@ -185,7 +185,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "a slave">>
 	<<set $shelterSlave.devotion = random(-100,-90)>>
 	<<set $shelterSlave.trust = random(-100,-90)>>
-	<<set $shelterSlave.health = random(-90,-70)>>
+	<<run setHealth($shelterSlave, jsRandom(-60,-40), normalRandInt(10, 3), normalRandInt(20, 3))>>
 	<<set $shelterSlave.slaveName = either("Cumbitch", "Cumbucket", "Cumdoll", "Cumgulper", "Fuckhole", "Fuckmeat", "Fuckpuppet", "Fuckslut", "Fucktoy", "Rapemeat", "Sluttypig", "Spunkbucket", "Spunkswallow", "Whorelips")>>
 	<<set $shelterSlave.slaveSurname = 0>>
 	<<set $shelterSlave.minorInjury = either("black eye", "bruise", "split lip", 0)>>
@@ -230,7 +230,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "a slave">>
 	<<set $shelterSlave.devotion = random(-75,-60)>>
 	<<set $shelterSlave.trust = random(-100,-75)>>
-	<<set $shelterSlave.health = random(-50,-30)>>
+	<<run setHealth($shelterSlave, jsRandom(-50,-30))>>
 	<<set $shelterSlave.face = random(-60,-20)>>
 	<<set $shelterSlave.dick = random(1,2)>>
 	<<set $shelterSlave.balls = 0>>
@@ -253,7 +253,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "a slave">>
 	<<set $shelterSlave.devotion = random(-75,-60)>>
 	<<set $shelterSlave.trust = random(-100,-75)>>
-	<<set $shelterSlave.health = random(-50,-30)>>
+	<<run setHealth($shelterSlave, jsRandom(-50,-30))>>
 	<<set $shelterSlave.face = random(-60,-20)>>
 	<<set $shelterSlave.dick = random(4,5)>>
 	<<set $shelterSlave.balls = random(4,5)>>
@@ -277,7 +277,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "a slave">>
 	<<set $shelterSlave.devotion = random(-75,-60)>>
 	<<set $shelterSlave.trust = random(-100,-75)>>
-	<<set $shelterSlave.health = random(-50,-30)>>
+	<<run setHealth($shelterSlave, jsRandom(-50,-30))>>
 	<<set $shelterSlave.vagina = 4>>
 	<<set $shelterSlave.anus = 4>>
 	<<set $shelterSlave.skill.oral = 15>>
@@ -303,7 +303,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "a breeder">>
 	<<set $shelterSlave.devotion = random(-75,-60)>>
 	<<set $shelterSlave.trust = random(-100,-75)>>
-	<<set $shelterSlave.health = random(-50,-30)>>
+	<<run setHealth($shelterSlave, jsRandom(-50,-30))>>
 	<<set $shelterSlave.preg = -2>>
 	<<set $shelterSlave.counter.birthsTotal = 13>>
 	<<set $activeSlave.pregAdaptation = 60>>
@@ -328,7 +328,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "a prostitute">>
 	<<set $shelterSlave.devotion = random(-75,-60)>>
 	<<set $shelterSlave.trust = random(-100,-75)>>
-	<<set $shelterSlave.health = random(-80,-60)>>
+	<<run setHealth($shelterSlave, jsRandom(-60,-40), normalRandInt(10, 3))>>
 	<<set $shelterSlave.face = random(-60,-20)>>
 	<<set $shelterSlave.preg = -2>>
 	<<set $shelterSlave.vagina = 4>>
@@ -349,7 +349,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
 	<<set $shelterSlave.career = "a slave">>
 	<<set $shelterSlave.devotion = random(-75,-60)>>
 	<<set $shelterSlave.trust = random(-100,-75)>>
-	<<set $shelterSlave.health = random(-80,-60)>>
+	<<run setHealth($shelterSlave, jsRandom(-60,-40), normalRandInt(10, 3), normalRandInt(20, 3))>>
 	<<set $shelterSlave.chem = 1000>>
 	<<if ($shelterSlave.dick > 0) && (random(1,2) == 1)>>
 		<<set $shelterSlave.dick = random(5,6)>>
diff --git a/src/uncategorized/spaReport.tw b/src/uncategorized/spaReport.tw
index db829ce050884a0b370a8807ef36c397afe2675e..ac7c8c31eccbb976cebbb363889bd9e7670d5ef1 100644
--- a/src/uncategorized/spaReport.tw
+++ b/src/uncategorized/spaReport.tw
@@ -12,8 +12,8 @@
 <<if $Attendant != 0>>
 	<<set _FLs = $slaveIndices[$Attendant.ID]>>
 
-	<<if ($slaves[_FLs].health < 100)>>
-		<<set $slaves[_FLs].health += 20>>
+	<<if ($slaves[_FLs].health.condition < 100)>>
+		<<run improveCondition($slaves[_FLs], 20)>>
 	<</if>>
 	<<if ($slaves[_FLs].devotion <= 60)>>
 		<<set $slaves[_FLs].devotion++>>
@@ -85,7 +85,7 @@
 	<<for _dI = 0; _dI < _DL; _dI++>>
 		<<set $i = $slaveIndices[$SpaiIDs[_dI]]>>
 		<<setLocalPronouns $slaves[$i] 2>>
-		<<if ($slaves[$i].fetish == "mindbroken") && ($slaves[$i].health > 20) && (_attendantUsedCure == 0) && ($spaFix != 2)>>
+		<<if ($slaves[$i].fetish == "mindbroken") && ($slaves[$i].health.condition > 20) && (_attendantUsedCure == 0) && ($spaFix != 2)>>
 			<<set _attendantUsedCure = 1>>
 			<<if (random(1,100) > 90-$Attendant.devotion)>>
 				<br>&nbsp;&nbsp;&nbsp;&nbsp;@@.green;Something almost miraculous has happened.@@ $Attendant.slaveName has always refused to believe that $slaves[$i].slaveName could not be reached, and has lavished patient tenderness on _him2 in $spaName. $slaves[$i].slaveName has begun to respond, and is stirring from _his2 mental torpor.
@@ -116,7 +116,8 @@
 			<<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>>
 		<<elseif $familyTesting == 1 && areRelated($Attendant, $slaves[$i]) > 0>>
 			$He makes sure to spend extra time caring for $his <<print relativeTerm($Attendant,$slaves[$i])>>, $slaves[$i].slaveName.
-			<<set $slaves[$i].trust++, $slaves[$i].health++>>
+			<<set $slaves[$i].trust++>>
+			<<run improveCondition($slaves[$i], 1)>>
 		<<elseif $Attendant.relationTarget == $slaves[$i].ID && $familyTesting == 0>>
 			$He makes sure to spend extra time caring for $his $slaves[$i].relation, $slaves[$i].slaveName.
 			<<set $slaves[$i].trust++>>
@@ -259,7 +260,8 @@
 <<for _dI = 0; _dI < _DL; _dI++>>
 	<<set $i = $slaveIndices[$SpaiIDs[_dI]]>>
 	<<setLocalPronouns $slaves[$i]>>
-	<<set $slaves[$i].devotion += _devBonus, $slaves[$i].trust += _trustBonus, $slaves[$i].health += _healthBonus>>
+	<<set $slaves[$i].devotion += _devBonus, $slaves[$i].trust += _trustBonus>>
+	<<run improveCondition($slaves[$i], _healthBonus)>>
 	<<if ($slaves[$i].devotion < 60) && ($slaves[$i].trust < 60)>>
 		<<set $slaves[$i].devotion++, $slaves[$i].trust++>>
 	<<elseif ($slaves[$i].trust < 40)>>
@@ -267,8 +269,8 @@
 	<<elseif ($slaves[$i].devotion < 40)>>
 		<<set $slaves[$i].devotion += 10>>
 	<</if>>
-	<<if ($spaUpgrade == 1) && ($slaves[$i].health < 20)>>
-		<<set $slaves[$i].health += 3>>
+	<<if ($spaUpgrade == 1) && ($slaves[$i].health.condition < 20)>>
+		<<run improveCondition($slaves[$i], 3)>>
 	<</if>>
 	<<switch $spaDecoration>>
 	<<case "Chattel Religionist" "Chinese Revivalist">>
@@ -278,7 +280,7 @@
 	<<default>>
 		<<set $slaves[$i].rules.living = "luxurious">>
 	<</switch>>
-	<<if ($slaves[$i].health >= 20) && ($slaves[$i].trust > 60) && ($slaves[$i].devotion > 60) && ($slaves[$i].fetish != "mindbroken") && ($slaves[$i].sexualFlaw == "none") && ($slaves[$i].behavioralFlaw == "none")>>
+	<<if ($slaves[$i].health.condition >= 20) && ($slaves[$i].trust > 60) && ($slaves[$i].devotion > 60) && ($slaves[$i].fetish != "mindbroken") && ($slaves[$i].sexualFlaw == "none") && ($slaves[$i].behavioralFlaw == "none")>>
 		<br><br>''__@@.pink;$slaves[$i].slaveName@@__'' is feeling well enough to leave $spaName, so @@.yellow;$his assignment has defaulted to rest.@@
 		<<= removeJob($slaves[$i], "rest in the spa")>>
 		<<set _restedSlaves++, _DL--, _dI-->>
@@ -306,7 +308,7 @@
 			$He remains in the Spa, stubborn in $his flaw.
 		<<elseif ($slaves[$i].trust < 60) || ($slaves[$i].devotion < 60)>>
 			$He remains in the Spa, as $he is still learning to accept life as a slave.
-		<<elseif ($slaves[$i].health < 20)>>
+		<<elseif ($slaves[$i].health.condition < 20)>>
 			$He remains in the Spa, as $his health is still low.
 		<</if>>
 		<br>&nbsp;&nbsp;&nbsp;
diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw
index 16d65537251b741fbb0f43fbdb46556238f0b426..84a3e52bc53d718b3a83b650e86a1ff1eba19c49 100644
--- a/src/uncategorized/surgeryDegradation.tw
+++ b/src/uncategorized/surgeryDegradation.tw
@@ -27,11 +27,11 @@
 
 <<set _slaveDevotion = $activeSlave.devotion>>
 
-<<if ($activeSlave.health < random(-100,-80)) && !["body hair removal", "braces", "chem castrate", "eyebrow removal", "hair removal", "insemination", "removeBraces"].includes($surgeryType)>>
+<<if ($activeSlave.health.condition < random(-100,-80)) && !["body hair removal", "braces", "chem castrate", "eyebrow removal", "hair removal", "insemination", "removeBraces"].includes($surgeryType)>>
 	$activeSlave.slaveName @@.red;has died from complications of surgery.@@
 	<<= removeActiveSlave() >>
 	<<set $nextLink = "Main">>
-<<elseif $surgeryType == "breastShapePreservation" && (($activeSlave.health-($activeSlave.boobs/1000)) < random(-100,-80))>>
+<<elseif $surgeryType == "breastShapePreservation" && (($activeSlave.health.condition-($activeSlave.boobs/1000)) < random(-100,-80))>>
 	$activeSlave.slaveName's mesh implantation @@.red;has gone wrong, resulting in a mastectomy!@@
 	<<if ($activeSlave.boobs >= 7000)>>
 		<<if ($activeSlave.areolae > 2)>>
@@ -100,7 +100,8 @@
 			<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 		<</if>>
 	<</if>>
-	<<set $activeSlave.boobs = 300, $activeSlave.breastMesh = 0, $activeSlave.health -= 30, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+	<<set $activeSlave.boobs = 300, $activeSlave.breastMesh = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+	<<run healthDamage($activeSlave, 3)0>>
 
 <<else>>
 	<<switch $surgeryType>>
@@ -1895,10 +1896,10 @@ As the remote surgery's long recovery cycle completes,
 	Since you have already have a prosthetic interface prepared for this slave, you can install it during the operation.<br>
 	The procedure will put additional strain on $his health but less so than if you were to perform the procedures separately.
 	<<if isProstheticAvailable($activeSlave, "interfaceP1")>><br>
-		[[Install basic interface|Surgery Degradation][$activeSlave.PLimb = 1, $activeSlave.health -= 10, $surgeryType = "amp2", $nextLink = "Surgery Degradation"]]
+		[[Install basic interface|Surgery Degradation][$activeSlave.PLimb = 1, $activeSlave.health.condition -= 10, $surgeryType = "amp2", $nextLink = "Surgery Degradation"]]
 	<</if>>
 	<<if isProstheticAvailable($activeSlave, "interfaceP2")>><br>
-		[[Install advanced interface|Surgery Degradation][$activeSlave.PLimb = 2, $activeSlave.health -= 10, $surgeryType = "amp2", $nextLink = "Surgery Degradation"]]
+		[[Install advanced interface|Surgery Degradation][$activeSlave.PLimb = 2, $activeSlave.health.condition -= 10, $surgeryType = "amp2", $nextLink = "Surgery Degradation"]]
 	<</if>>
 
 <<case "amp2">>
@@ -2466,7 +2467,7 @@ As the remote surgery's long recovery cycle completes,
 	<</if>>
 	<<if $surgeryType == "cervixPumpA" && $activeSlave.mpreg == 1>>
 		$His existing anal womb made the surgery @@.green;slightly easier.@@
-		<<set $activeSlave.health += 10>>
+		<<run improveCondition($activeSlave, 10)>>
 	<</if>>
 
 <<case "bellyInMale">>
@@ -2788,7 +2789,7 @@ As the remote surgery's long recovery cycle completes,
 	<br><br>
 	<<if !["body hair removal", "braces", "chem castrate", "eyebrow removal", "hair removal", "insemination", "removeBraces"].includes($surgeryType)>>
 		Since you @@.springgreen;performed the surgery yourself,@@ and you do an artist's work, $his health is @@.green;less affected@@ by the surgery than it would have been if you'd paid some hack to do it remotely.
-		<<set $activeSlave.health += 5>>
+		<<run improveCondition($activeSlave, 5)>>
 	<</if>>
 	<<if ($activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0)>>
 		$He spent the surgery very aware that you were performing it personally.
diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw
index 4a89c04dc660d1273707dec9a526de2b3877b70a..38de2157f54d829ce8190ed8b030ace5ca8cf3dc 100644
--- a/src/utility/slaveCreationWidgets.tw
+++ b/src/utility/slaveCreationWidgets.tw
@@ -6,7 +6,7 @@
 <<widget "StartingGirlsWorkaround">>
 	<<set $activeSlave = GenerateNewSlave()>>
 	<<set $startingGirlCopied = 0>>
-	<<set $activeSlave.health = 0>>
+	<<run setHealth($activeSlave, 0)>>
 	<<set $activeSlave.devotion = 0>>
 	<<set $activeSlave.trust = 0>>
 	<<set $activeSlave.sexualQuirk = "none">>
@@ -172,7 +172,7 @@
 %/
 <<widget "CustomSlaveHealth">>
 	<<replace #health>>
-		<<if $customSlave.health == 0>>Healthy.
+		<<if $customSlave.health.condition == 0>>Healthy.
 		<<else>>Extremely healthy.
 		<</if>>
 	<</replace>>
@@ -785,7 +785,7 @@
 	<<set $activeSlave.hears = 0, $activeSlave.voice = 2>>
 	<<set $activeSlave.intelligenceImplant = 30, $activeSlave.intelligence = random(20,100)>>
 	<<set $activeSlave.trust = 80, $activeSlave.devotion = 80>>
-	<<set $activeSlave.health = random(80,95)>>
+	<<run setHealth($activeSlave, jsRandom(80,95), 0, 0, 0, 0)>>
 	<<set $activeSlave.origin = "The Job Fulfillment Center offered $his contract to fill your request for a ">>
 	<<set $activeSlave.origin += $Role>>
 	<<set $activeSlave.origin += ".">>
@@ -861,7 +861,8 @@
 				<<set $activeSlave.dick = random(3,5), $activeSlave.balls = random(4,9), $activeSlave.scrotum = $activeSlave.balls, $activeSlave.prostate = either(1,1,1,2)>>
 			<</if>>
 		<<case "Farmer">>
-			<<set $activeSlave.devotion = 80, $activeSlave.trust = 80, $activeSlave.health = random(80,95), $activeSlave.muscles = random(41,70), $activeSlave.sexualQuirk = "caring", $activeSlave.career = either("a farmer", "a farmer's daughter", "a rancher", "a farmhand", "a zookeeper"), $activeSlave.intelligenceImplant = 30, $activeSlave.intelligence = random(20,70), $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]})), $activeSlave.weight = random(0,30)>>
+			<<set $activeSlave.devotion = 80, $activeSlave.trust = 80, $activeSlave.muscles = random(41,70), $activeSlave.sexualQuirk = "caring", $activeSlave.career = either("a farmer", "a farmer's daughter", "a rancher", "a farmhand", "a zookeeper"), $activeSlave.intelligenceImplant = 30, $activeSlave.intelligence = random(20,70), $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]})), $activeSlave.weight = random(0,30)>>
+			<<run setHealth($activeSlave, jsRandom(80, 95), 0, 0, 0, 0)>>
 			<<if $seeDicks > 0>>
 				<<set $activeSlave.dick = random(3,5), $activeSlave.balls = random(4,9), $activeSlave.scrotum = $activeSlave.balls, $activeSlave.prostate = either(1,1,1,2)>>
 			<</if>>