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 21e0e20dd581543af47276255fb4560e12934082..347633f59777f95ba938aa4153f05389b6881d0e 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..732b43dad2c70846a00b1c207820cbcb00fc6138 100644
--- a/src/uncategorized/REFS.tw
+++ b/src/uncategorized/REFS.tw
@@ -52,7 +52,8 @@
 	<<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)>>
+	<<set $activeSlave.health.condition = random(-30,-10)>>
+	<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.clothes = "uncomfortable straps">>
 	<<set $activeSlave.collar = "uncomfortable leather">>
 
@@ -67,7 +68,8 @@
 	<<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)>>
+	<<set $activeSlave.health.condition = random(70,80)>>
+	<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.clothes = "conservative clothing">>
 
 <<case "physical idealist encounter">>
@@ -82,7 +84,8 @@
 	<<set $activeSlave = GenerateNewSlave("XX")>>
 	<<set $activeSlave.devotion = 100>>
 	<<set $activeSlave.trust = 100>>
-	<<set $activeSlave.health = 100>>
+	<<set $activeSlave.health.condition = 100>>
+	<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.muscles = 99>>
 	<<if $activeSlave.dick > 0 && $activeSlave.vagina == -1>>
 		<<set $activeSlave.clothes = "sport shorts">>
@@ -105,7 +108,8 @@
 	<</if>>
 	<<set $activeSlave.devotion = 100>>
 	<<set $activeSlave.trust = 100>>
-	<<set $activeSlave.health = 100>>
+	<<set $activeSlave.health.condition = 100>>
+	<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.hColor = "grey">>
 	<<set $activeSlave.hStyle = "bun">>
 	<<set $activeSlave.clothes = "conservative clothing">>
@@ -123,7 +127,8 @@
 	<<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)>>
+	<<set $activeSlave.health.condition = random(10,20)>>
+	<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.boobs += 600>>
 	<<set $activeSlave.boobsImplant = 600>>
 	<<set $activeSlave.butt += 1>>
@@ -146,7 +151,8 @@
 	<<set $activeSlave = GenerateNewSlave("XX")>>
 	<<set $activeSlave.devotion = 20>>
 	<<set $activeSlave.trust = 20>>
-	<<set $activeSlave.health = -30>>
+	<<set $activeSlave.health.condition = -30>>
+	<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.boobs = random(7,11)*30>>
 	<<set $activeSlave.hips = 0>>
 	<<set $activeSlave.butt = 0>>
@@ -194,7 +200,8 @@
 	<<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)>>
+	<<set $activeSlave.health.condition = random(10,20)>>
+	<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.counter.birthsTotal = 2>>
 	/* Plush */
 	<<set $activeSlave.boobs = random(7,11)*100>>
diff --git a/src/uncategorized/REroyalblood.tw b/src/uncategorized/REroyalblood.tw
index cc5d867da7bf6b85428f4050327975ada03dc230..6ea1796a0d1b5dab2ebf1a35b59c14482de3b265 100644
--- a/src/uncategorized/REroyalblood.tw
+++ b/src/uncategorized/REroyalblood.tw
@@ -33,7 +33,12 @@
 <<set $activeSlave.skill.oral = 0>>
 <<set $activeSlave.skill.whoring = 0>>
 <<set $activeSlave.canRecruit = 0>>
-<<set $activeSlave.health = random(30,60)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.shortDamage = 0>>
+<<set $activeSlave.health.longDamage = 0>>
+<<set $activeSlave.health.illness = 0>>
+<<set $activeSlave.health.tired = 0>>
+<<set $activeSlave.health.health = $activeSlave.health.condition>>
 <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 <<set _princess = clone($activeSlave)>>
 /*prince*/
@@ -86,6 +91,11 @@
 <<set $activeSlave.skill.combat = 1>>
 <<set $activeSlave.canRecruit = 0>>
 <<set $activeSlave.health = random(30,60)>>
+<<set $activeSlave.health.shortDamage = 0>>
+<<set $activeSlave.health.longDamage = 0>>
+<<set $activeSlave.health.illness = 0>>
+<<set $activeSlave.health.tired = 0>>
+<<set $activeSlave.health.health = $activeSlave.health.condition>>
 <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 <<set _prince = clone($activeSlave)>>
 /*Queen*/
@@ -140,6 +150,11 @@
 <<set $activeSlave.pubertyXY = 0>>
 <<set $activeSlave.canRecruit = 0>>
 <<set $activeSlave.health = random(30,60)>>
+<<set $activeSlave.health.shortDamage = 0>>
+<<set $activeSlave.health.longDamage = 0>>
+<<set $activeSlave.health.illness = 0>>
+<<set $activeSlave.health.tired = 0>>
+<<set $activeSlave.health.health = $activeSlave.health.condition>>
 <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 <<set _queen = clone($activeSlave)>>
 
@@ -361,6 +376,11 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
 			<<set $activeSlave.health = random(30,60)>>
+			<<set $activeSlave.health.shortDamage = 0>>
+			<<set $activeSlave.health.longDamage = 0>>
+			<<set $activeSlave.health.illness = 0>>
+			<<set $activeSlave.health.tired = 0>>
+			<<set $activeSlave.health.health = $activeSlave.health.condition>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
@@ -413,6 +433,11 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
 			<<set $activeSlave.health = random(30,60)>>
+			<<set $activeSlave.health.shortDamage = 0>>
+			<<set $activeSlave.health.longDamage = 0>>
+			<<set $activeSlave.health.illness = 0>>
+			<<set $activeSlave.health.tired = 0>>
+			<<set $activeSlave.health.health = $activeSlave.health.condition>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
@@ -590,6 +615,11 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
 			<<set $activeSlave.health = random(30,60)>>
+			<<set $activeSlave.health.shortDamage = 0>>
+			<<set $activeSlave.health.longDamage = 0>>
+			<<set $activeSlave.health.illness = 0>>
+			<<set $activeSlave.health.tired = 0>>
+			<<set $activeSlave.health.health = $activeSlave.health.condition>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
@@ -650,6 +680,11 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
 			<<set $activeSlave.health = random(30,60)>>
+			<<set $activeSlave.health.shortDamage = 0>>
+			<<set $activeSlave.health.longDamage = 0>>
+			<<set $activeSlave.health.illness = 0>>
+			<<set $activeSlave.health.tired = 0>>
+			<<set $activeSlave.health.health = $activeSlave.health.condition>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
@@ -708,6 +743,11 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
 			<<set $activeSlave.health = random(30,60)>>
+			<<set $activeSlave.health.shortDamage = 0>>
+			<<set $activeSlave.health.longDamage = 0>>
+			<<set $activeSlave.health.illness = 0>>
+			<<set $activeSlave.health.tired = 0>>
+			<<set $activeSlave.health.health = $activeSlave.health.condition>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
@@ -787,6 +827,11 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 			<<set $activeSlave.skill.entertainment = 25>>
 			<<set $activeSlave.skill.whoring = 0>>
 			<<set $activeSlave.health = random(30,60)>>
+			<<set $activeSlave.health.shortDamage = 0>>
+			<<set $activeSlave.health.longDamage = 0>>
+			<<set $activeSlave.health.illness = 0>>
+			<<set $activeSlave.health.tired = 0>>
+			<<set $activeSlave.health.health = $activeSlave.health.condition>>
 			<<set $activeSlave.canRecruit = 0>>
 			<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>>
 			<<run newSlave($activeSlave)>> /* skip New Slave Intro */
diff --git a/src/uncategorized/pHostageAcquisition.tw b/src/uncategorized/pHostageAcquisition.tw
index a5de5f44f8edb121f27c195fb04123ae0fa95a9f..75ea0947cf82e273d3e29434c8c90ffd4250ec29 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>>
+	<<set $activeSlave.health.condition = 50, $activeSlave.health.health = $activeSlave.health.condition - $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 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,25 @@ 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>><<set $activeSlave.health.condition = 0, $activeSlave.health.longDamage = 10, $activeSlave.health.shortDamage = 10, $activeSlave.health.health = -20>><</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>><<set $activeSlave.health.condition = 0, $activeSlave.health.longDamage = 20, $activeSlave.health.shortDamage = 20, $activeSlave.health.health = -40>><</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>><<set $activeSlave.health.condition = -10, $activeSlave.health.longDamage = 25, $activeSlave.health.shortDamage = 25, $activeSlave.health.health = -60>><</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>><<set $activeSlave.health.condition = -20, $activeSlave.health.longDamage = 30, $activeSlave.health.shortDamage = 30, $activeSlave.health.health = -80>><</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 +113,11 @@ 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 > -100>><<set $activeSlave.health.condition = -39, $activeSlave.health.longDamage = 30, $activeSlave.health.shortDamage = 30, $activeSlave.health.health = -99>><</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>>
+	<<set $activeSlave.health.condition = 50, $activeSlave.health.health = $activeSlave.health.condition - $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 +134,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>>
+	<<set $activeSlave.health.condition = 50, $activeSlave.health.health = $activeSlave.health.condition - $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 +167,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		<</if>>
 	<</if>>
 <<case "Gender Radicalism">>
-	<<set $activeSlave.health = 60>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +183,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>>
+	<<set $activeSlave.health.condition = 20, $activeSlave.health.health = $activeSlave.health.condition - $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 +203,31 @@ 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>><<set $activeSlave.health.condition = 0, $activeSlave.health.longDamage = 10, $activeSlave.health.shortDamage = 10, $activeSlave.health.health = -20>><</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>><<set $activeSlave.health.condition = 0, $activeSlave.health.longDamage = 20, $activeSlave.health.shortDamage = 20, $activeSlave.health.health = -40>><</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>><<set $activeSlave.health.condition = -10, $activeSlave.health.longDamage = 25, $activeSlave.health.shortDamage = 25 $activeSlave.health.health = -60>><</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>><<set $activeSlave.health.condition = -20, $activeSlave.health.longDamage = 30, $activeSlave.health.shortDamage = 30, $activeSlave.health.health = -80>><</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>><<set $activeSlave.health.condition = -39, $activeSlave.health.longDamage = 30, $activeSlave.health.shortDamage = 30, $activeSlave.health.health = -99>><</if>>
 		<<set $activeSlave.weight = -100>>
 		<<set $activeSlave.muscles = -100>>
 	<</if>>
 <<case "Degradationism">>
-	<<set $activeSlave.health = 60>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +243,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>>
+	<<set $activeSlave.health.condition = 0, $activeSlave.health.shortDamage = 15, $activeSlave.health.longDamage = 15, $activeSlave.health.health = -30>>
 	<<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 +259,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>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +275,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>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +286,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>>
+		<<set $activeSlave.health.condition = 80, $activeSlave.health.health = $activeSlave.health.condition - $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>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +309,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>>
+	<<set $activeSlave.health.condition = -30, $activeSlave.health.health = $activeSlave.health.condition - $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 +326,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>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +342,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>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +358,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>>
+	<<set $activeSlave.health.condition = -30, $activeSlave.health.health = $activeSlave.health.condition - $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 +377,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>>
+		<<set $activeSlave.health.condition = 0, $activeSlave.health.health = $activeSlave.health.condition - $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>>
+		<<set $activeSlave.health.condition = -10, $activeSlave.health.health = $activeSlave.health.condition - $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>>
+		<<set $activeSlave.health.condition = -30, $activeSlave.health.health = $activeSlave.health.condition - $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>>
+		<<set $activeSlave.health.condition = -50, $activeSlave.health.health = $activeSlave.health.condition - $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>>
+		<<set $activeSlave.health.condition = -80, $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<</if>>
 <<case "Hedonistic Decadence">>
-	<<set $activeSlave.health = 60>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +411,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>>
+	<<set $activeSlave.health.condition = 50, $activeSlave.health.health = $activeSlave.health.condition - $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 +427,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>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +444,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>>
+	<<set $activeSlave.health.condition = 80, $activeSlave.health.health = $activeSlave.health.condition - $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 +463,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>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +477,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>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +500,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>>
+	<<set $activeSlave.health.condition = 60, $activeSlave.health.health = $activeSlave.health.condition - $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 +523,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>>
+	<<set $activeSlave.health.condition = 40, $activeSlave.health.health = $activeSlave.health.condition - $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..c554e9db0535186edd94d96003b1838996805880 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)>>
+		<<set $activeSlave.health.condition = random(-80,-40), $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 		<<set _newSlaves.push($activeSlave)>>
 	<</for>>
 <</if>>
diff --git a/src/uncategorized/pRivalInitiation.tw b/src/uncategorized/pRivalInitiation.tw
index 0477381e1ec36d284064fa0235caddfb56a1d027..bfeb519eb93d7e7395002d79af2186c2df20a5b3 100644
--- a/src/uncategorized/pRivalInitiation.tw
+++ b/src/uncategorized/pRivalInitiation.tw
@@ -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..16e6e2ed478e23c40dcaeb04327baace6634779f 100644
--- a/src/uncategorized/pRivalryCapture.tw
+++ b/src/uncategorized/pRivalryCapture.tw
@@ -405,7 +405,8 @@
 <<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>>
+<<set $activeSlave.health.condition = 100>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<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..9ee57831d43b6bebc5722fe9a632b95c0dba0328 100644
--- a/src/uncategorized/pRivalryHostage.tw
+++ b/src/uncategorized/pRivalryHostage.tw
@@ -104,7 +104,8 @@
 		<<set $activeSlave.actualAge = random(20,24)>>
 	<</if>>
 	<<set $activeSlave.muscles = 40>>
-	<<set $activeSlave.health = 100>>
+	<<set $activeSlave.health.condition = 100>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<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..9118c7bab73bf8b3199537b59e5293668a508c38 100644
--- a/src/uncategorized/pSlaveMedic.tw
+++ b/src/uncategorized/pSlaveMedic.tw
@@ -53,7 +53,8 @@
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.hStyle = "neat">>
 <<set $activeSlave.hLength = 35>>
-<<set $activeSlave.health = random(20,40)>>
+<<set $activeSlave.health.condition = random(20,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<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..ba5f7759c127e64aaed4dbe6df260df4c4672a50 100644
--- a/src/uncategorized/pSnatchAndGrabResult.tw
+++ b/src/uncategorized/pSnatchAndGrabResult.tw
@@ -11,7 +11,12 @@
 <<set $activeSlave.career = "a slave">>
 <<set $activeSlave.devotion = 100>>
 <<set $activeSlave.trust = 100>>
-<<set $activeSlave.health = 250>>
+<<set $activeSlave.health.condition = 250>>
+<<set $activeSlave.health.shortDamage = 0>>
+<<set $activeSlave.health.longDamage = 0>>
+<<set $activeSlave.health.illness = 0>>
+<<set $activeSlave.health.tired = 0>>
+<<set $activeSlave.health.health = 250>>
 <<set $activeSlave.face = 15>>
 <<set $activeSlave.faceShape = "exotic">>
 <<set $activeSlave.anus = 0>>
@@ -76,7 +81,12 @@
 <<set $activeSlave.career = "a slave">>
 <<set $activeSlave.devotion = 100>>
 <<set $activeSlave.trust = 100>>
-<<set $activeSlave.health = 250>>
+<<set $activeSlave.health.condition = 250>>
+<<set $activeSlave.health.shortDamage = 0>>
+<<set $activeSlave.health.longDamage = 0>>
+<<set $activeSlave.health.illness = 0>>
+<<set $activeSlave.health.tired = 0>>
+<<set $activeSlave.health.health = 250>>
 <<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/prestigiousSlave.tw b/src/uncategorized/prestigiousSlave.tw
index 33b1d6463120d5c3ce7951d492148cec40e61244..9dc5e8f04457221b90a41c1a21eb945bedff0b70 100644
--- a/src/uncategorized/prestigiousSlave.tw
+++ b/src/uncategorized/prestigiousSlave.tw
@@ -62,7 +62,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-40,40)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 2>>
 	<<set $activeSlave.vagina = 2>>
 	<<set $activeSlave.weight = 0>>
@@ -103,7 +104,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(60,80)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 0>>
@@ -137,7 +139,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(80,90)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 0>>
@@ -171,7 +174,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-20,20)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 0>>
@@ -198,7 +202,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(40,60)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.hColor = "white">>
 	<<set $activeSlave.pubicHColor = "white">>
 	<<set $activeSlave.underArmHColor = "white">>
@@ -231,7 +236,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(20,40)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.vagina = 3>>
 	<<set $activeSlave.weight = 0>>
@@ -281,7 +287,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-70,-40)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 0>>
@@ -315,7 +322,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(60,80)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 0>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 0>>
@@ -345,7 +353,8 @@ 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>>
+	<<set $activeSlave.health.condition = 100>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 0>>
 	<<set $activeSlave.vagina = 0>>
 	<<set $activeSlave.weight = 0>>
@@ -383,7 +392,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-70,-60)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.vagina = 3>>
 	<<set $activeSlave.weight = -20>>
@@ -435,7 +445,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-20,20)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.vagina = 1>>
 	<<set $activeSlave.weight = 20>>
@@ -461,7 +472,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-40,-30)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.chem = 100>>
 	<<set $activeSlave.anus = random(1,2)>>
 	<<set $activeSlave.dick = random(1,2)>>
@@ -495,7 +507,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(0,20)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.chem = 200>>
 	<<set $activeSlave.boobs += 100*random(2,4)>>
 	<<set $activeSlave.butt += random(1,2)>>
@@ -544,7 +557,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-40,40)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.dick = 5>>
 	<<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>>
@@ -582,7 +596,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(60,80)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.weight = 0>>
 	<<set $activeSlave.clitPiercing = 1>>
 	<<set $activeSlave.skill.oral = 15>>
@@ -611,7 +626,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(80,90)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.dick = random(3,5)>>
 	<<if $activeSlave.dick > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>>
@@ -646,7 +662,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-20,20)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 2>>
 	<<set $activeSlave.weight = 0>>
 	<<set $activeSlave.earPiercing = 1>>
@@ -672,7 +689,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(40,60)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.hColor = "white">>
 	<<set $activeSlave.pubicHColor = "white">>
 	<<set $activeSlave.underArmHColor = "white">>
@@ -705,7 +723,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(20,40)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.dick = 1>>
 	<<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>>
@@ -757,7 +776,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-80,-40)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 1>>
 	<<set $activeSlave.weight = 0>>
 	<<set $activeSlave.earPiercing = 1>>
@@ -788,7 +808,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(60,80)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 0>>
 	<<set $activeSlave.weight = 0>>
 	<<set $activeSlave.skill.oral = 0>>
@@ -814,7 +835,8 @@ 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>>
+	<<set $activeSlave.health.condition = 100>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 0>>
 	<<set $activeSlave.dick = 2>>
 	<<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>>
@@ -847,7 +869,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-80,-60)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.anus = 3>>
 	<<set $activeSlave.weight = -20>>
 	<<set $activeSlave.nipplesPiercing = 2>>
@@ -899,7 +922,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-20,20)>>
+	<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<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 d793cad056480e207deda1430d0fe34ae69e3636..3844347caf81563eec5699b2fbfc2ef70ab1412f 100644
--- a/src/uncategorized/ptWorkaround.tw
+++ b/src/uncategorized/ptWorkaround.tw
@@ -92,9 +92,9 @@
 		Since $activeSlave.slaveName is your $wife and not all there, you keep $him under a watchful eye to make sure no harm comes to the broken $girl. $He almost seems in better spirits under your care, not that it will matter in an hour or two.
 		<<set $activeSlave.kindness++>>
 	<</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.
@@ -457,7 +457,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 8be35ca1d2174440fa9a170b59fb78c14a97c54b..ac17584a8403204d779cb5ba94467edaabc9a0b8 100644
--- a/src/uncategorized/reAWOL.tw
+++ b/src/uncategorized/reAWOL.tw
@@ -25,7 +25,8 @@
 <<set $activeSlave.career = "a soldier">>
 <<set $activeSlave.devotion = random(-75,-60)>>
 <<set $activeSlave.trust = random(-15,0)>>
-<<set $activeSlave.health = random(60,80)>>
+<<set $activeSlave.health.condition = random(60,80)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.muscles = 50>>
 <<set $activeSlave.weight = random(-10,10)>>
 <<set $activeSlave.eyes = 1>>
diff --git a/src/uncategorized/reBoomerang.tw b/src/uncategorized/reBoomerang.tw
index 2259d449d7a688ee12cad341ebb9e0b16728cdb0..3833a879315e0bfe09f1600f322b6a9c48a27671 100644
--- a/src/uncategorized/reBoomerang.tw
+++ b/src/uncategorized/reBoomerang.tw
@@ -19,7 +19,8 @@ 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)>>
+<<set $activeSlave.health.condition = random(-40,-25)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 
 /* ------------------ pregnancy setup start here----------------- */
 
@@ -146,7 +147,8 @@ 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)>>
+	<<set $activeSlave.health.condition = random(-85,-75)>>
+	<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<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">>
@@ -330,6 +332,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against
 	"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)>>
+	<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 	<<set $activeSlave.behavioralFlaw = "odd">>
 	<<set $activeSlave.sexualFlaw = either("idealistic", "repressed", "self hating", "shamefast")>>
 <<default>>
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 6e783aedc02e45f8fc688d54b4021dc0dbfab5a4..4c3b85711ae6516d7f5ef4bde5d010ab33249192 100644
--- a/src/uncategorized/reFSAcquisition.tw
+++ b/src/uncategorized/reFSAcquisition.tw
@@ -32,7 +32,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(5,15)>>
 <<set $activeSlave.preg = random(15,30)>>
@@ -57,7 +58,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(5,15)>>
 <<set $activeSlave.lactation = 1>>
@@ -111,7 +113,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-80,-60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.trust = random(-45,-25)>>
 <<set $activeSlave.devotion = random(-75,-65)>>
 <<set $activeSlave.anus = random(1,2)>>
@@ -126,7 +129,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-70,-60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.trust = random(-25,-15)>>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.anus = random(1,2)>>
@@ -139,7 +143,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(15,20)>>
 <<set $activeSlave.trust = random(0,10)>>
 <<set $activeSlave.anus = random(1,2)>>
@@ -156,7 +161,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(15,20)>>
 <<set $activeSlave.trust = random(0,10)>>
 <<set $activeSlave.anus = random(1,2)>>
@@ -174,7 +180,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-45,-25)>>
 <<set $activeSlave.preg = random(20,40)>>
@@ -197,7 +204,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-45,-25)>>
 <<set $activeSlave.preg = random(20,40)>>
@@ -218,7 +226,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(40,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.intelligence = random(51,95)>>
@@ -236,7 +245,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(40,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $slaveCost = slaveCost($activeSlave)>>
@@ -262,7 +272,8 @@
 <<set $activeSlave.faceImplant += 40>>
 <<set $activeSlave.devotion = random(-45,-25)>>
 <<set $activeSlave.trust = random(-45,-25)>>
-<<set $activeSlave.health = random(20,40)>>
+<<set $activeSlave.health.condition = random(20,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.vagina = 2>>
 <<set $activeSlave.weight = 0>>
@@ -302,7 +313,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-40,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.vagina = 2>>
 <<set $activeSlave.weight = 0>>
@@ -331,7 +343,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.weight = random(-10,90)>>
 <<set $activeSlave.behavioralFlaw = "odd">>
 <<set $activeSlave.canRecruit = 0>>
@@ -357,7 +370,8 @@
 <<set $activeSlave.intelligence = -100>>
 <<set $activeSlave.devotion = random(20,40)>>
 <<set $activeSlave.trust = random(0,50)>>
-<<set $activeSlave.health = random(-60,-20)>>
+<<set $activeSlave.health.condition = random(-60,-20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.weight = random(-40,0)>>
 <<set $activeSlave.energy = 100>>
 <<set $activeSlave.attrXX = 100>>
@@ -384,7 +398,8 @@
 <<set $activeSlave.trust = random(25,65)>>
 <<set $activeSlave.intelligence = random(75,100)>>
 <<set $activeSlave.intelligenceImplant = 15>>
-<<set $activeSlave.health = random(20,40)>>
+<<set $activeSlave.health.condition = random(20,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.vagina = 2>>
 <<set $activeSlave.weight = random(-40,10)>>
@@ -419,7 +434,8 @@
 <<set $activeSlave.trust = random(60,80)>>
 <<set $activeSlave.intelligence = 100>>
 <<set $activeSlave.intelligenceImplant = 30>>
-<<set $activeSlave.health = random(40,60)>>
+<<set $activeSlave.health.condition = random(40,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 2>>
 <<if $activeSlave.vagina >= 0>>
 	<<set $activeSlave.vagina = 2>>
@@ -449,7 +465,8 @@
 <</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)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(-15,15)>>
 <<set $slaveCost = slaveCost($activeSlave)>>
@@ -466,7 +483,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(-15,15)>>
 <<set $slaveCost = slaveCost($activeSlave)>>
@@ -479,7 +497,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-40,30)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(10,15)>>
 <<set $activeSlave.trust = random(-55,-75)>>
 /*
@@ -503,7 +522,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-40,30)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(10,15)>>
 <<set $activeSlave.trust = random(-55,-75)>>
 <<set $activeSlave.intelligence = random(-95,-51)>>
@@ -525,7 +545,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(40,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.muscles = 20>>
@@ -563,7 +584,8 @@
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.career = setup.educatedCareers.random()>>
-<<set $activeSlave.health = random(-60,-50)>>
+<<set $activeSlave.health.condition = random(-60,-50)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.intelligence = random(51,95)>>
 <<set $activeSlave.intelligenceImplant = 15>>
 <<set $activeSlave.teeth = "normal">>
@@ -623,7 +645,8 @@
 <<set $activeSlave.faceShape = "sensual">>
 <<set $activeSlave.devotion = random(40,65)>>
 <<set $activeSlave.trust = random(45,65)>>
-<<set $activeSlave.health = random(20,40)>>
+<<set $activeSlave.health.condition = random(20,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.vagina = 2>>
 <<set $activeSlave.weight = random(-20,20)>>
@@ -693,7 +716,8 @@
 <<set $activeSlave.faceImplant += 40>>
 <<set $activeSlave.devotion = random(-100,-75)>>
 <<set $activeSlave.trust = random(-45,-25)>>
-<<set $activeSlave.health = random(-80,-70)>>
+<<set $activeSlave.health.condition = random(-80,-70)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.pubicHStyle = "waxed">>
 <<set $activeSlave.underArmHStyle = "waxed">>
 <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "odd")>>
@@ -722,7 +746,8 @@
 <<set $activeSlave.faceImplant += 40>>
 <<set $activeSlave.devotion = random(-100,-75)>>
 <<set $activeSlave.trust = random(-45,-25)>>
-<<set $activeSlave.health = random(-80,-70)>>
+<<set $activeSlave.health.condition = random(-80,-70)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.pubicHStyle = "waxed">>
 <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "odd")>>
 <<set $slaveCost = slaveCost($activeSlave)>>
@@ -746,7 +771,8 @@
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.career = setup.educatedCareers.random()>>
-<<set $activeSlave.health = random(-60,-50)>>
+<<set $activeSlave.health.condition = random(-60,-50)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.intelligence = random(51,95)>>
 <<set $activeSlave.intelligenceImplant = 15>>
 <<set $activeSlave.teeth = "normal">>
@@ -771,7 +797,8 @@
 <<set $activeSlave.lips = 0>>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(-60,-50)>>
+<<set $activeSlave.health.condition = random(-60,-50)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<if $activeSlave.physicalAge >= 12>>
 	<<set $activeSlave.teeth = "normal">>
 <</if>>
@@ -794,7 +821,8 @@
 <<set $activeSlave.lips = 35>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(-15,15)>>
-<<set $activeSlave.health = random(-60,-50)>>
+<<set $activeSlave.health.condition = random(-60,-50)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.intelligence = random(0,90)>>
 <<set $activeSlave.pubicHStyle = "waxed">>
 <<set $activeSlave.underArmHStyle = "waxed">>
@@ -820,7 +848,8 @@
 <<set $activeSlave.lips = 35>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(-15,15)>>
-<<set $activeSlave.health = random(-60,-50)>>
+<<set $activeSlave.health.condition = random(-60,-50)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.intelligence = random(0,90)>>
 <<set $activeSlave.pubicHStyle = "waxed">>
 <<set $slaveCost = slaveCost($activeSlave)>>
@@ -834,7 +863,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(20,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.muscles = 100>>
 <<set $activeSlave.addict = 1>>
 <<set $activeSlave.devotion = random(0,15)>>
@@ -851,7 +881,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(20,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.muscles = 100>>
 <<set $activeSlave.addict = 1>>
 <<set $activeSlave.devotion = random(0,15)>>
@@ -867,7 +898,8 @@
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave()>>
 <<set $activeSlave.origin = "$He offered $himself for enslavement out of religious conviction.">>
-<<set $activeSlave.health = random(10,30)>>
+<<set $activeSlave.health.condition = random(10,30)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = -100>>
 <<set $activeSlave.trust = -100>>
 <<set $activeSlave.behavioralFlaw = "devout">>
@@ -882,7 +914,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-10,10)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(-15,15)>>
 <<set $activeSlave.trust = random(60,75)>>
 <<if $activeSlave.anus > 0>>
@@ -914,7 +947,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-40,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(35,45)>>
 <<set $activeSlave.trust = random(20,25)>>
 <<if $activeSlave.vagina > -1>>
@@ -954,7 +988,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(0,10)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(0,15)>>
 <<set $activeSlave.trust = random(10,25)>>
 <<set $activeSlave.behavioralFlaw = "none">>
@@ -986,7 +1021,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(40,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(25,35)>>
 <<set $activeSlave.trust = random(20,25)>>
 <<set $activeSlave.vagina = 0>>
@@ -1011,7 +1047,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(40,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(25,35)>>
 <<set $activeSlave.trust = random(20,25)>>
 <<set $activeSlave.vagina = 2>>
@@ -1037,7 +1074,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(20,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(-100,-90)>>
 <<set $activeSlave.trust = random(-100,-90)>>
 <<set $activeSlave.vagina = 0>>
@@ -1054,7 +1092,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(0,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.anus = random(1,2)>>
@@ -1080,7 +1119,8 @@
 <<set $activeSlave.devotion = random(-15,-5)>>
 <<set $activeSlave.trust = random(5,15)>>
 <<set $activeSlave.career = "a student">>
-<<set $activeSlave.health = random(-10,10)>>
+<<set $activeSlave.health.condition = random(-10,10)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(-20,0)>>
 <<set $activeSlave.anus = 0>>
 <<if $activeSlave.vagina != -1>><<set $activeSlave.vagina = 0>><</if>>
@@ -1106,7 +1146,8 @@
 <<set $activeSlave.devotion = random(25,50)>>
 <<set $activeSlave.trust = random(25,50)>>
 <<set $activeSlave.career = "a merchant">>
-<<set $activeSlave.health = random(-20,20)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(-20,0)>>
 <<set $activeSlave.anus = 0>>
 <<if $activeSlave.vagina != -1>><<set $activeSlave.vagina = 0>><</if>>
@@ -1140,7 +1181,8 @@
 <<set $activeSlave.devotion = random(-15,-5)>>
 <<set $activeSlave.trust = random(5,15)>>
 <<set $activeSlave.career = "a student">>
-<<set $activeSlave.health = random(-20,0)>>
+<<set $activeSlave.health.condition = random(-20,0)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(-60,10)>>
 <<set $activeSlave.weight = random(20,100)>>
 <<set $activeSlave.vagina = 0>>
@@ -1170,7 +1212,8 @@
 <<set $activeSlave.devotion = random(30,35)>>
 <<set $activeSlave.trust = random(30,35)>>
 <<set $activeSlave.career = "a professor">>
-<<set $activeSlave.health = random(10,30)>>
+<<set $activeSlave.health.condition = random(10,30)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(15,100)>>
 <<set $activeSlave.skill.oral = 35>>
 <<set $activeSlave.skill.anal = 15>>
@@ -1195,7 +1238,8 @@
 <<set $activeSlave.devotion = random(30,35)>>
 <<set $activeSlave.trust = random(30,35)>>
 <<set $activeSlave.career = "a businesswoman">>
-<<set $activeSlave.health = random(10,30)>>
+<<set $activeSlave.health.condition = random(10,30)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<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..853bcf155b0146941c459d355c64d8d72ce55536 100644
--- a/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw
+++ b/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw
@@ -17,7 +17,8 @@
 <<set $activeSlave.visualAge = $activeSlave.actualAge>>
 <<set $activeSlave.physicalAge = $activeSlave.actualAge>>
 <<set $activeSlave.ovaryAge = $activeSlave.actualAge>>
-<<set $activeSlave.health = random(-20,0)>>
+<<set $activeSlave.health.condition = random(-20,0)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<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 aac45fc372e911b7c795b44b6c391d8095d39f89..db6000d66ba655dbc7878c51f6528fd61d183756 100644
--- a/src/uncategorized/reMalefactor.tw
+++ b/src/uncategorized/reMalefactor.tw
@@ -12,7 +12,8 @@
 <<set $activeSlave.devotion = random(-75,-60)>>
 <<set $activeSlave.trust = random(-15,0)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(-40,-20)>>
+<<set $activeSlave.health.condition = random(-40,-20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.addict = 30>>
 <<set $activeSlave.anus = 3>>
 <<if $activeSlave.dick == 0>>
@@ -41,7 +42,8 @@
 <<set $activeSlave.devotion = random(-75,-60)>>
 <<set $activeSlave.trust = random(-15,0)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(-80,-70)>>
+<<set $activeSlave.health.condition = random(-80,-70)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.heels = 1>>
 <<set $activeSlave.boobs += 100*random(12,32)>>
 <<set $activeSlave.butt += random(2,4)>>
@@ -74,7 +76,8 @@
 <<set $activeSlave.devotion = random(-75,-50)>>
 <<set $activeSlave.trust = random(-75,-60)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(20,40)>>
+<<set $activeSlave.health.condition = random(20,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.weight = random(40,80)>>
 <<set $activeSlave.accent = 3>>
 <<set $activeSlave.boobs += 200>>
@@ -106,7 +109,8 @@
 <<set $activeSlave.devotion = random(-15,0)>>
 <<set $activeSlave.trust = random(-75,-60)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(-80,-70)>>
+<<set $activeSlave.health.condition = random(-80,-70)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.weight = -100>>
 <<set $activeSlave.accent = 3>>
 <<set $activeSlave.boobs = 0>>
@@ -154,7 +158,8 @@
 <<set $activeSlave.boobsImplant = 400>>
 <<set $activeSlave.butt += 2>>
 <<set $activeSlave.buttImplant = 2>>
-<<set $activeSlave.health = random(20,40)>>
+<<set $activeSlave.health.condition = random(20,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<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 +180,8 @@
 <<set $activeSlave.devotion = random(-75,-60)>>
 <<set $activeSlave.trust = random(-15,0)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(-40,-20)>>
+<<set $activeSlave.health.condition = random(-40,-20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 2>>
 <<if $activeSlave.dick == 0>>
 	<<set $activeSlave.balls = 0>>
@@ -217,7 +223,8 @@
 <<set $activeSlave.devotion = random(-75,-60)>>
 <<set $activeSlave.trust = random(-15,0)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(0,20)>>
+<<set $activeSlave.health.condition = random(0,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 0>>
 <<set $activeSlave.balls = random(2,4)>>
 <<set $activeSlave.skill.oral = 0>>
@@ -257,7 +264,8 @@
 <<set $activeSlave.waist = random(-30,-10)>>
 <<set $activeSlave.boobs = random(4,5)*100>>
 <<set $activeSlave.boobShape = "perky">>
-<<set $activeSlave.health = random(-20,10)>>
+<<set $activeSlave.health.condition = random(-20,10)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.sexualFlaw = "hates penetration">>
 <<set $activeSlave.behavioralFlaw = "shamefast">>
 <<set $activeSlave.accent = 0>>
@@ -282,7 +290,8 @@
 <<set $activeSlave.skill.whoring = 0>>
 <<set $activeSlave.skill.combat = 1>>
 <<set $activeSlave.anus = 0>>
-<<set $activeSlave.health = random(60,80)>>
+<<set $activeSlave.health.condition = random(60,80)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.behavioralFlaw = "arrogant">>
 <<set $activeSlave.sexualFlaw = "hates men">>
 <<set $activeSlave.hStyle = "shaved into a mohawk">>
@@ -304,7 +313,8 @@
 <<set $activeSlave.devotion = random(-75,-50)>>
 <<set $activeSlave.trust = random(-75,-50)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
-<<set $activeSlave.health = random(-40,-20)>>
+<<set $activeSlave.health.condition = random(-40,-20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.intelligence = random(51,95)>>
 <<set $activeSlave.intelligenceImplant = 15>>
 <<if $arcologies[0].FSSupremacistLawME == 1>>
@@ -411,7 +421,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 +531,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 +564,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..5bb0836dbe995cb21e20e1d701a28ca083b3069c 100644
--- a/src/uncategorized/reMilfTourist.tw
+++ b/src/uncategorized/reMilfTourist.tw
@@ -20,7 +20,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(10,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.contradiction - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<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..da3fe35e0ae7900e1fe77ffc439601574395b165 100644
--- a/src/uncategorized/rePokerNight.tw
+++ b/src/uncategorized/rePokerNight.tw
@@ -75,7 +75,8 @@ 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)>>
+					<<set $activeSlave.health.condition = random(60,80)>>
+					<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 					<<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 dcdc9b4786cbad1f2e07d856de493b6f6a10cc02..f238a3ba8b8ff600fda5858165d68f5c3d782e45 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -40,7 +40,8 @@
 <<set $activeSlave.career = "a party girl">>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(0,20)>>
+<<set $activeSlave.health.condition = random(0,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 0>>
 <<set $activeSlave.vagina = 1>>
 <<set $activeSlave.skill.vaginal = 15>>
@@ -75,7 +76,8 @@
 <<set $activeSlave.career = "a party girl">>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(0,20)>>
+<<set $activeSlave.health.condition = random(0,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 0>>
 <<set $activeSlave.skill.oral = 15>>
 <<set $activeSlave.skill.anal = 0>>
@@ -105,7 +107,8 @@
 <<set $activeSlave.career = "a prostitute">>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(-40,-20)>>
+<<set $activeSlave.health.condition = random(-40,-20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 2>>
 <<set $activeSlave.vagina = 2>>
 <<set $activeSlave.skill.vaginal = 35>>
@@ -202,7 +205,8 @@
 <<run SetBellySize($activeSlave)>>
 <<set $activeSlave.fetish = "none">>
 <<set $activeSlave.fetishKnown = 0>>
-<<set $activeSlave.health = random(-40,-20)>>
+<<set $activeSlave.health.condition = random(-40,-20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 
 <<case "blind homeless">>
 
@@ -238,7 +242,8 @@
 <<set $activeSlave.weight = -100>>
 <<set $activeSlave.fetish = "none">>
 <<set $activeSlave.fetishKnown = 0>>
-<<set $activeSlave.health = random(-60,-20)>>
+<<set $activeSlave.health.condition = random(-60,-20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 
 <<case "paternalist swan song">>
 
@@ -256,7 +261,8 @@
 <<set $activeSlave.career = "a musician">>
 <<set $activeSlave.devotion = random(30,100)>>
 <<set $activeSlave.trust = random(30,100)>>
-<<set $activeSlave.health = random(0,100)>>
+<<set $activeSlave.health.condition = random(0,100)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 0>>
 <<set $activeSlave.vagina = 1>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -298,7 +304,8 @@
 <<set $activeSlave.face = 15>>
 <<set $activeSlave.fetish = "none">>
 <<set $activeSlave.fetishKnown = 0>>
-<<set $activeSlave.health = random(-80,-60)>>
+<<set $activeSlave.health.condition = random(-70,-60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 
 <<case "tg addict">>
 
@@ -336,7 +343,8 @@
 <<set $activeSlave.career = "a slave">>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(50,60)>>
+<<set $activeSlave.health.condition = random(50,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.weight = 0>>
 <<set $activeSlave.lips = 35>>
 <<set $activeSlave.face = 15>>
@@ -367,7 +375,8 @@
 <<set $activeSlave.career = "a slave">>
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
-<<set $activeSlave.health = random(50,60)>>
+<<set $activeSlave.health.condition = random(50,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.weight = 0>>
 <<set $activeSlave.face = 15>>
 <<set $activeSlave.boobs = random(5,6)*100>>
@@ -404,7 +413,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(0,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.anus = 1>>
 <<set $activeSlave.skill.anal = 15>>
 <<set $activeSlave.skill.oral = 15>>
@@ -430,7 +440,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(0,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(0,20)>>
 <<set $activeSlave.anus = 1>>
 <<set $activeSlave.skill.anal = 0>>
@@ -460,7 +471,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(0,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.voice = 1>>
 <<set $activeSlave.dick = random(1,2)>>
 <<set $activeSlave.balls = random(1,2)>>
@@ -502,7 +514,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(20,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = random(0,15)>>
 <<set $activeSlave.skill.anal = 0>>
@@ -538,7 +551,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(20,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.faceImplant = 15>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -577,7 +591,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-20,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(80,100)>>
 <<set $activeSlave.faceShape = "sensual">>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -631,7 +646,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(10,30)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.faceImplant = 0>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -671,7 +687,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(10,30)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.faceImplant = 15>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -712,7 +729,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(10,30)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.faceImplant = 15>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -748,7 +766,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(0,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = Math.clamp($activeSlave.face+20,-100,100)>>
 <<set $activeSlave.faceImplant = 15>>
 <<set $activeSlave.skill.anal = 0>>
@@ -781,7 +800,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-50,-30)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(0,20)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 15>>
@@ -821,7 +841,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-50,-30)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(0,20)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 15>>
@@ -867,7 +888,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-50,-30)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(0,20)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 15>>
@@ -913,7 +935,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(25,100)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 0>>
@@ -959,7 +982,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = random(50,100)>>
 <<set $activeSlave.skill.anal = random(50,100)>>
@@ -1006,7 +1030,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,50)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.shoulders = random(1,2)>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = 0>>
@@ -1051,7 +1076,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = random(0,15)>>
@@ -1099,7 +1125,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = random(0,15)>>
@@ -1136,7 +1163,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(0,60)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 15>>
@@ -1172,7 +1200,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(0,60)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 0>>
@@ -1213,7 +1242,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(-30,30)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 15>>
@@ -1262,7 +1292,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(-30,30)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 35>>
@@ -1300,7 +1331,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(-30,30)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 15>>
@@ -1338,7 +1370,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(10,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(-30,30)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 15>>
@@ -1374,7 +1407,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(10,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,60)>>
 <<if $activeSlave.faceShape == "masculine">>
 	<<set $activeSlave.faceShape = "cute">>
@@ -1418,7 +1452,8 @@
 <<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>>
+<<set $activeSlave.health.condition = 20>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,60)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 0>>
@@ -1467,7 +1502,8 @@
 <<set $activeSlave.face = 20>>
 <<set $activeSlave.fetish = "none">>
 <<set $activeSlave.fetishKnown = 0>>
-<<set $activeSlave.health = random(-80,-60)>>
+<<set $activeSlave.health.condition = random(-70,-60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.intelligence = random(-50,0)>>
 <<set $activeSlave.intelligenceImplant = 0>>
 <<set $activeSlave.career = setup.uneducatedCareers.random()>>
@@ -1482,7 +1518,8 @@
 <<set $activeSlave.origin = "$He sold $himself into slavery to spite $his father.">>
 <<set $activeSlave.devotion = 20>>
 <<set $activeSlave.trust = 0>>
-<<set $activeSlave.health = 80>>
+<<set $activeSlave.health.condition = 80>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(15,70)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 0>>
@@ -1534,7 +1571,8 @@
 <<set $activeSlave.devotion = random(25,45)>>
 <<set $activeSlave.trust = random(25,45)>>
 <<set $activeSlave.career = "an artist">>
-<<set $activeSlave.health = random(-60,-50)>>
+<<set $activeSlave.health.condition = random(-60,-50)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.intelligence = random(16,50)>>
 <<set $activeSlave.skill.entertainment = 40>>
 <<set $activeSlave.intelligenceImplant = 0>>
@@ -1551,7 +1589,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(30,60)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(0,60)>>
 <<set $activeSlave.skill.vaginal = 15>>
 <<set $activeSlave.skill.anal = 25>>
@@ -1588,7 +1627,8 @@
 <<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>>
+<<set $activeSlave.health.condition -= 50>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 
 <<case "wandering homeless">>
 
@@ -1601,7 +1641,8 @@
 <<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>>
+<<set $activeSlave.health.condition = 50>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.weight = -70>>
 <<set $activeSlave.hColor = "silver">>
 <<set $activeSlave.pubicHColor = "silver">>
@@ -1645,7 +1686,8 @@
 <<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>>
+<<set $activeSlave.health.condition = -90>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.weight = random(-100, -50)>>
 <<set $activeSlave.hips = -1>>
 <<set $activeSlave.boobs += random(3,6)*100>>
@@ -1673,7 +1715,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(-35,-10)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.devotion = random(35,45)>>
 <<set $activeSlave.trust = random(15,25)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
@@ -1719,7 +1762,8 @@
 <<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>>
+<<set $activeSlave.health.condition = -70>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.muscles = random(-80, 0)>>
 <<set $activeSlave.weight = random(-80, -60)>>
 <<set $activeSlave.waist = random(-40, -20)>>
@@ -1789,7 +1833,8 @@
 <<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>>
+<<set $activeSlave.health.condition = 100>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.weight = random(-11 -30)>>
 <<set $activeSlave.waist = random(-11, -40)>>
 <<set $activeSlave.skill.combat = 1>>
@@ -1832,7 +1877,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(60,100)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,90)>>
 <<set $activeSlave.skill.vaginal = 0>>
 <<set $activeSlave.skill.anal = 0>>
@@ -1876,7 +1922,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(100,100)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.face = random(20,90)>>
 <<set $activeSlave.boobs = random(4,7)*300>>
 <<set $activeSlave.vagina = 10>>
@@ -1919,7 +1966,8 @@
 <<set $activeSlave.teeth = "normal">>
 <<set $activeSlave.devotion = random(-100,-90)>>
 <<set $activeSlave.trust = random(25,85)>>
-<<set $activeSlave.health = random(0,20)>>
+<<set $activeSlave.health.condition = random(0,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.weight = random(-10,10)>>
 <<set $activeSlave.muscles = random(10,40)>>
 <<set $activeSlave.anus = 0>>
@@ -1948,7 +1996,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(0,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.skill.vaginal = 30>>
 <<set $activeSlave.skill.anal = 0>>
 <<set $activeSlave.skill.oral = 50>>
@@ -1979,7 +2028,8 @@
 <<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)>>
+<<set $activeSlave.health.condition = random(0,20)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.skill.vaginal = 30>>
 <<set $activeSlave.skill.anal = 15>>
 <<set $activeSlave.skill.oral = 50>>
@@ -2775,7 +2825,8 @@ 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)>>
+				<<set $activeSlave.health.condition = random(0,20)>>
+				<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 				<<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 239aa809df5c1e976ee5c7bad5a796eae8241b18..1887d16e56ba6008ea0a2776bd3b57dcb1bb98b4 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.condition = random(20,40)>>
+<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>>
 <<set $activeSlave.minorInjury = 0>>
 <<set $activeSlave.eyewear = "none">>
 <<set $activeSlave.earwear = "none">>
diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw
index 3d9e8a53d76c95f72a1dea8bc6934addeedabd17..636bb983164ee0f376163e4784a66f52428b5e0d 100644
--- a/src/uncategorized/remoteSurgery.tw
+++ b/src/uncategorized/remoteSurgery.tw
@@ -19,7 +19,7 @@
 
 <h1>The Remote Surgery</h1>
 
-//$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>>//
 <br><br>
 
 /* 000-250-006 */
@@ -92,27 +92,27 @@ $His $activeSlave.faceShape face is
 	<</if>>//
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 	<<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"]]
 	<<if ($activeSlave.ageImplant > 1)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		//$He's had a multiple facelifts and other cosmetic procedures in an effort to preserve $his youth.//
@@ -122,7 +122,7 @@ $His $activeSlave.faceShape face is
 	<<elseif ($activeSlave.physicalAge >= 25) && ($activeSlave.visualAge >= 25)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		//$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>>
 <</if>>
 
@@ -137,11 +137,11 @@ $His $activeSlave.faceShape face is
 	$He has working
 	<<if $activeSlave.eyes == -1>>
 		eyes, but is nearsighted.
-		[[Correct eyesight|Surgery Degradation][$activeSlave.eyes = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "eyeFix"]]
+		[[Correct eyesight|Surgery Degradation][$activeSlave.eyes = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 10), $surgeryType = "eyeFix"]]
 	<<elseif $activeSlave.eyes == 1>>
 		eyes and good vision.
 		<<if ($seeExtreme == 1) && $activeSlave.indentureRestrictions < 1>>
-			[[Blur vision|Surgery Degradation][$activeSlave.eyes = -1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "eyeBlur"]]
+			[[Blur vision|Surgery Degradation][$activeSlave.eyes = -1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 10), $surgeryType = "eyeBlur"]]
 		<</if>>
 	<</if>>
 <</if>>
@@ -150,14 +150,14 @@ $His $activeSlave.faceShape face is
 	<<if $activeSlave.indentureRestrictions < 1>>
 		<<if $activeSlave.eyes > -3>>
 			<<if $activeSlave.eyes > -2>>
-				| [[Blind|Surgery Degradation][$activeSlave.eyes = -2,$activeSlave.eyeColor = "dulled " + $activeSlave.origEye,$activeSlave.eyeColor = $activeSlave.origEye,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "blind"]]
+				| [[Blind|Surgery Degradation][$activeSlave.eyes = -2,$activeSlave.eyeColor = "dulled " + $activeSlave.origEye,$activeSlave.eyeColor = $activeSlave.origEye,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 10),$surgeryType = "blind"]]
 			<</if>>
-			| [[Remove eyes|Surgery Degradation][cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "remove eyes", surgeryAmp($activeSlave, "right eye"), surgeryAmp($activeSlave, "left eye")]]
+			| [[Remove eyes|Surgery Degradation][cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20), $surgeryType = "remove eyes", surgeryAmp($activeSlave, "right eye"), surgeryAmp($activeSlave, "left eye")]]
 			/* eyes are set in Surgery Degradation */
 			<<if (canSee($activeSlave))>>//This will greatly restrict $him//<</if>>
 		<<else>>
 			<<if isProstheticAvailable($activeSlave, "ocular")>>
-				| [["Give " + $him + " ocular implants"|Surgery Degradation][$activeSlave.eyesImplant = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "ocular implant"]]
+				| [["Give " + $him + " ocular implants"|Surgery Degradation][$activeSlave.eyesImplant = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20), $surgeryType = "ocular implant"]]
 			<</if>>
 		<</if>>
 	<</if>>
@@ -170,7 +170,7 @@ $He has
 	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">>
@@ -187,7 +187,7 @@ $He has
 	//$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>>
@@ -199,14 +199,14 @@ $He has
 		<</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>>
@@ -235,29 +235,29 @@ $He has
 		//$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>>
 			<br>
 			<<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>>
@@ -275,12 +275,12 @@ $He has
 	<<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>>
@@ -288,10 +288,10 @@ $He has
 <<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>>
@@ -311,22 +311,22 @@ $He has <<if $activeSlave.horn == "none">>no horns<<else>>$activeSlave.horn<</if
 <<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>>
 
@@ -357,9 +357,9 @@ $He has
 	//$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>>
@@ -379,51 +379,51 @@ $He has
 	$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>>
 
@@ -449,19 +449,19 @@ $He has
 <<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>>
 
@@ -477,14 +477,14 @@ $He has
 <</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>>
 
@@ -492,11 +492,11 @@ $He has
 <<if $activeSlave.scar["left cheek"]>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	$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>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	$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>>
 
 <br><br>
@@ -573,16 +573,16 @@ $He has
 			//$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>>
@@ -598,7 +598,7 @@ $He has
 		//$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//
@@ -607,7 +607,7 @@ $He has
 			<<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>>
@@ -624,24 +624,24 @@ $He has
 <<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>>
 
@@ -655,7 +655,7 @@ $He has
 <</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>>
@@ -672,14 +672,14 @@ Work on $his midriff:
 <<elseif $activeSlave.weight > 30>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<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>>
 
@@ -696,12 +696,12 @@ $He has
 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>>
 
@@ -762,33 +762,33 @@ $He's
 <<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 */
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-			[[Install cervix micropump filter|Surgery Degradation][$activeSlave.cervixImplant = ($activeSlave.cervixImplant==0?1:3), $activeSlave.health -= 5, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "cervixPump"]]<br>
+			[[Install cervix micropump filter|Surgery Degradation][$activeSlave.cervixImplant = ($activeSlave.cervixImplant==0?1:3), healthDamage($activeSlave, 5), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "cervixPump"]]<br>
 			//Will allow $his belly implant to slowly swell as people cum in $his vagina//
 		<</if>>
 		<<if $activeSlave.cervixImplant != 2 && $activeSlave.cervixImplant != 3 && $cervixImplants == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-			[[Install rectal micropump filter|Surgery Degradation][$activeSlave.cervixImplant = ($activeSlave.cervixImplant==0?2:3), $activeSlave.health -= 20, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "cervixPumpA"]]<br>
+			[[Install rectal micropump filter|Surgery Degradation][$activeSlave.cervixImplant = ($activeSlave.cervixImplant==0?2:3), healthDamage($activeSlave, 20), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "cervixPumpA"]]<br>
 			//Will allow $his belly implant to slowly swell as people cum in $his anus//
 		<</if>>
 	<</if>>
@@ -805,7 +805,7 @@ $He's
 	<<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>>
@@ -817,7 +817,7 @@ $He's
 	<<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>>
 
@@ -827,7 +827,7 @@ $He's
 		$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>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
@@ -835,7 +835,7 @@ $He's
 		$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>>
 
@@ -845,8 +845,8 @@ $He's
 		$He has an unsightly c-section scar.
 		<<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">>
+			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 10)>>
+			<<set $surgeryType = "bellyscar">>
 			<<goto "Surgery Degradation">>
 		<</link>>
 	<</if>>
@@ -915,13 +915,13 @@ Work on $his sex:
 <</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>>
 <<if $activeSlave.dick == 0>>
@@ -938,19 +938,19 @@ Work on $his sex:
 	<</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>>
@@ -976,10 +976,10 @@ Work on $his sex:
 
 <<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)>>
@@ -994,21 +994,21 @@ Work on $his sex:
 		<<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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 
@@ -1018,14 +1018,14 @@ Work on $his sex:
 			<<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>>
@@ -1037,12 +1037,12 @@ Work on $his sex:
 		<<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.
 				<<if $activeSlave.broodmother == 1 && $activeSlave.broodmotherFetuses == 1>> /*hack can be applied only one time, for type 1 broodmothers, and only if implant already present*/
 					<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-					[[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>>
 					<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 					The implant firmware has already been adjusted.
@@ -1052,7 +1052,7 @@ Work on $his sex:
 			//$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>>
@@ -1112,10 +1112,10 @@ Work on $his sex:
 
 <<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)]]
@@ -1123,10 +1123,10 @@ Work on $his sex:
 	<<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>>
@@ -1134,23 +1134,23 @@ Work on $his sex:
 
 <<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>>
 
 <<if ($activeSlave.vagina > 3)>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	$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)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		$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)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		$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>>
 
@@ -1167,12 +1167,12 @@ Work on $his sex:
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		<<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>>
@@ -1186,7 +1186,7 @@ Work on $his sex:
 		<<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)>>
@@ -1197,18 +1197,18 @@ Work on $his sex:
 	<<if ($activeSlave.vasectomy == 1)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		$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>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		<<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>>
@@ -1220,11 +1220,11 @@ Work on $his sex:
 	<<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>>
@@ -1234,13 +1234,13 @@ Work on $his sex:
 		<</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>>
@@ -1264,16 +1264,16 @@ $He has
 <<if ($activeSlave.anus > 3)>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	$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)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		$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)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		$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>>
 
@@ -1284,14 +1284,14 @@ $He has
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<if ($activeSlave.indentureRestrictions >= 1)>>
 		//Modification at a genetic level clearly violates $his indenture contract//
-	<<elseif $activeSlave.health < 0>>
+	<<elseif $activeSlave.health.health < 0>>
 		//$He's too unhealthy to undergo gene therapy//
 	<<else>>
 		Available treatments:
 		<<if $arcologies[0].childhoodFertilityInducedNCSResearch == 1>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
 			<<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>>
@@ -1299,183 +1299,183 @@ $He has
 		<<if $RapidCellGrowthFormula == 1>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
 			<<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>>
 		<</if>>
 		<<if $activeSlave.geneticQuirks.albinism == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.dwarfism == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.gigantism == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.pFace == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.uFace == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.hyperFertility == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.fertility == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.superfetation == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.gigantomastia >= 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.macromastia >= 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.rearLipedema == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.wellHung == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.wGain == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.wLoss == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.mGain == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 		<<if $activeSlave.geneticQuirks.mLoss == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[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>>
 	<</if>>
 	<br><br>
@@ -1513,40 +1513,40 @@ Alter $his race:
 <<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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = 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), $activeSlave.eyeColor = randomRaceEye($activeSlave.race), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), healthDamage($activeSlave, 20),$surgeryType = "race"]]
 	<</if>>
 <<else>>
 	//$His indenture forbids elective surgery//
@@ -1588,19 +1588,19 @@ Work on $him structurally:
 	<</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>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
@@ -1641,21 +1641,21 @@ Work on $him structurally:
 	<</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>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
@@ -1671,19 +1671,19 @@ Work on $him structurally:
 	<</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>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
@@ -1694,11 +1694,11 @@ Work on $him structurally:
 	<</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>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 <</if>>
@@ -1769,7 +1769,7 @@ Work on $him structurally:
 			<<set _atleastOne++>>
 		<</if>>
 		<<if _atleastOne>>
-			<<set $activeSlave.health -= _atleastOne * 10, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+			<<run healthDamage($activeSlave, _atleastOne * 10), cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
 			<<if !hasAnyArms($activeSlave)>>
 				<<set $activeSlave.rules.release = "restrictive">>
 			<</if>>
@@ -1784,13 +1784,13 @@ Work on $him structurally:
 
 <<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>>
 
 <br>&nbsp;&nbsp;&nbsp;&nbsp;
@@ -1798,7 +1798,7 @@ Work on $him structurally:
 	$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>>
@@ -1833,7 +1833,7 @@ Work on $him structurally:
 	<</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>>