From 5d259e579bc19bb62e951a83578ad1be79a71cd1 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Fri, 24 Aug 2018 01:04:54 -0400
Subject: [PATCH] fixes, cleanup, and I don't even remember

---
 devNotes/VersionChangeLog-Premod+LoliMod.txt  |   10 +
 devNotes/twine JS.txt                         |    2 +-
 src/cheats/mod_EditSlaveCheat.tw              |    1 +
 .../mod_EditSlaveCheatDatatypeCleanup.tw      |    1 +
 .../mod_EditSlaveCheatDatatypeCleanupNew.tw   |    1 +
 src/cheats/mod_editSlaveCheatNew.tw           |    4 +-
 src/js/rulesAssistantOptions.tw               |    2 +-
 src/uncategorized/RESS.tw                     |    4 +-
 src/uncategorized/brothelReport.tw            |    2 +-
 src/uncategorized/remoteSurgery.tw            |   22 +-
 src/uncategorized/surgeryDegradation.tw       | 1844 +++++++++--------
 11 files changed, 999 insertions(+), 894 deletions(-)

diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 6c840942112..c9661ee72d9 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -1,11 +1,21 @@
 Pregmod 
 
+0.10.7.1-0.7.x
+
+8/24/2018
+
+	1
+	-applied MB checks to surgery degradation
+	-fixes
+	-race system overhaul
+
 0.10.7.1-0.6.x
 
 8/22/2018
 
 	10
 	-fixes
+	-lactation adaption and hormone levels added to cheat edit slave
 
 8/21/2018
 
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index c5b101a4aa9..6896829e130 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -15259,7 +15259,7 @@ window.rulesAssistantOptions = (function() {
 				["Schutzstaffel uniform (slutty)", "a slutty schutzstaffel uniform"],
 				["Succubus costume", "a succubus outfit"],
 				["Suit (nice)", "nice business sattire"],
-				["Suit (slutty", "slutty business attire"],
+				["Suit (slutty)", "slutty business attire"],
 				["Spats and tank top", "spats and a tank top"]
 			];
 			const fsnclothes = [
diff --git a/src/cheats/mod_EditSlaveCheat.tw b/src/cheats/mod_EditSlaveCheat.tw
index 72250ac3cca..316bd6c3214 100644
--- a/src/cheats/mod_EditSlaveCheat.tw
+++ b/src/cheats/mod_EditSlaveCheat.tw
@@ -586,6 +586,7 @@ Plush.
 <<radiobutton "$activeSlave.lactation" 1>> Natural
 <<radiobutton "$activeSlave.lactation" 2>> Artificial
 
+<br>
 ''Lactation Adaptation (0 to 100): $activeSlave.lactationAdaptation |''
 <<textbox "$activeSlave.lactationAdaptation" $activeSlave.lactationAdaptation>>
 
diff --git a/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw b/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw
index d15bc24c08d..c39fde35b7e 100644
--- a/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw
+++ b/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw
@@ -61,6 +61,7 @@
 <<set $activeSlave.attrXY = Number($activeSlave.attrXY) || 0>>
 <<set $activeSlave.attrXX = Number($activeSlave.attrXX) || 0>>
 <<set $activeSlave.energy = Number($activeSlave.energy) || 0>>
+<<set $activeSlave.lactationAdaptation = Number($activeSlave.lactationAdaptation) || 0>>
 <<set $activeSlave.preg = Number($activeSlave.preg) || 0>>
 <<set $activeSlave.pregSource = Number($activeSlave.pregSource) || 0>>
 <<set $activeSlave.pregType = Number($activeSlave.pregType) || 0>>
diff --git a/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw b/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw
index 1dc643e6624..5cccbfff938 100644
--- a/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw
+++ b/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw
@@ -64,6 +64,7 @@
 <<set $tempSlave.anus = Number($tempSlave.anus) || 0>>
 <<set $tempSlave.vagina = Number($tempSlave.vagina) || 0>>
 <<set $tempSlave.vaginaLube = Number($tempSlave.vaginaLube) || 0>>
+<<set $tempSlave.lactationAdaptation = Number($tempSlave.lactationAdaptation) || 0>>
 <<set $tempSlave.pubertyAgeXX = Number($tempSlave.pubertyAgeXX) || 13>>
 <<set $tempSlave.preg = Number($tempSlave.preg) || 0>>
 <<set $tempSlave.pregSource = Number($tempSlave.pregSource) || 0>>
diff --git a/src/cheats/mod_editSlaveCheatNew.tw b/src/cheats/mod_editSlaveCheatNew.tw
index 65a60f81c08..25f44f51879 100644
--- a/src/cheats/mod_editSlaveCheatNew.tw
+++ b/src/cheats/mod_editSlaveCheatNew.tw
@@ -2111,8 +2111,8 @@
 	<<radiobutton "$tempSlave.lactation" 2>> Artificial
 	<br>
 
-	''Lactation Adaptation (0 to 100): $activeSlave.lactationAdaptation |''
-	<<textbox "$activeSlave.lactationAdaptation" $activeSlave.lactationAdaptation>>
+	''Lactation Adaptation (0 to 100): $tempSlave.lactationAdaptation |''
+	<<textbox "$tempSlave.lactationAdaptation" $tempSlave.lactationAdaptation>>
 
 	<br><br>
 
diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw
index 3cd821a4733..b8defcd3d5c 100644
--- a/src/js/rulesAssistantOptions.tw
+++ b/src/js/rulesAssistantOptions.tw
@@ -1103,7 +1103,7 @@ window.rulesAssistantOptions = (function() {
 				["Schutzstaffel uniform (slutty)", "a slutty schutzstaffel uniform"],
 				["Succubus costume", "a succubus outfit"],
 				["Suit (nice)", "nice business sattire"],
-				["Suit (slutty", "slutty business attire"],
+				["Suit (slutty)", "slutty business attire"],
 				["Spats and tank top", "spats and a tank top"]
 			];
 			const fsnclothes = [
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index ec3d6e3165c..9b518b71bdd 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -6313,7 +6313,7 @@ $He cranes her neck, glancing over her shoulder to give you a pleading look.
 			<<= AnalVCheck()>>
 		<</if>>
 	<</if>>
-	The amount of air you can pull through the snorkel just isn't enough to facility the throes of your lovemaking, so by the time you're done, $he's so exhausted $he can barely float to the edge of the pool. Fortunately her lovely tits make for quite the floatation device, so you gently guide $him to the shallow end<<if $PC.dick || $activeSlave.balls>>, leaving a trail of cum in your wake<</if>>.
+	The amount of air you can pull through the snorkel just isn't enough to facilitate the throes of your lovemaking, so by the time you're done, $he's so exhausted $he can barely float to the edge of the pool. Fortunately her lovely tits make for quite the floatation device, so you gently guide $him to the shallow end<<if $PC.dick || $activeSlave.balls>>, leaving a trail of cum in your wake<</if>>.
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
@@ -19243,7 +19243,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<br><<link "Show $him that short girls are amusing in the arcade">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-		You inform $activeSlave.slaveName that short girls like her are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag her off to be installed in the arcade for a day, so that $he too may see the humor in having short girls serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although her head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of her toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Costumers are unable to fuck $his holes but readily delight in watching her squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking her face. Somewhere in the gruelling, 18-hour marathon of relentless throat fucking, her precarious position slips and her lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, her neck is held crooked at an unnatural angle by her restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short girl's place is as an @@.hotpink;amusing arcade hole@@. Though $he can't find the humor@@.gold;in such a terrible plight@@. Furthermore, her intense exertions during her stay @@.red;negatively effects $his health@@. Your other slaves take note of what you do to short girls who ask questions about their place in your penthouse.
+		You inform $activeSlave.slaveName that short girls like her are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag her off to be installed in the arcade for a day, so that $he too may see the humor in having short girls serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although her head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of her toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Customers are unable to fuck $his holes but readily delight in watching her squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking her face. Somewhere in the gruelling, 18-hour marathon of relentless throat fucking, her precarious position slips and her lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, her neck is held crooked at an unnatural angle by her restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short girl's place is as an @@.hotpink;amusing arcade hole@@. Though $he can't find the humor@@.gold;in such a terrible plight@@. Furthermore, her intense exertions during her stay @@.red;negatively effects $his health@@. Your other slaves take note of what you do to short girls who ask questions about their place in your penthouse.
 		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.oralCount += 55, $activeSlave.oralTotal += 55>>
 		<<set $activeSlave.publicCount += 55>>
 	<</replace>>
diff --git a/src/uncategorized/brothelReport.tw b/src/uncategorized/brothelReport.tw
index ee6d56c7d9e..799e17c33b7 100644
--- a/src/uncategorized/brothelReport.tw
+++ b/src/uncategorized/brothelReport.tw
@@ -113,7 +113,7 @@
 				<<set $slaves[_FLs].rivalry++, $Madam.rivalry++, $slaves[$i].rivalry++>>
 			<</if>>
 		<<elseif $Madam.relationshipTarget == $slaves[$i].ID>>
-			She dotes over her <<if $Madam.relationship == 1>>friend<<elseif $Madam.relationship == 2>>best friend<<elseif $Madam.relationship == 3>>friend with benefits<<elseif $Madam.relationship == 4>>lover<<elseif $Madam.relationship == 5>>slave wife<</if>>, $slaves[$i].slaveName, making sure she is safe, but unfortunately driving potential costumers away from her.
+			She dotes over her <<if $Madam.relationship == 1>>friend<<elseif $Madam.relationship == 2>>best friend<<elseif $Madam.relationship == 3>>friend with benefits<<elseif $Madam.relationship == 4>>lover<<elseif $Madam.relationship == 5>>slave wife<</if>>, $slaves[$i].slaveName, making sure she is safe, but unfortunately driving potential customers away from her.
 			<<set $slaves[$i].devotion++, $madamCashBonus -= 0.05>>
 		<<elseif $familyTesting == 1 && totalRelatives($slaves[$i]) > 0>>
 			<<if $slaves[$i].mother == $Madam.ID || $slaves[$i].father == $Madam.ID>>
diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw
index a62504a7c8e..96ca2c45b92 100644
--- a/src/uncategorized/remoteSurgery.tw
+++ b/src/uncategorized/remoteSurgery.tw
@@ -385,15 +385,15 @@ Work on her chest:
 <<if $activeSlave.boobsImplant != 0>>
 	<<if $activeSlave.boobsImplantType == 1 && $activeSlave.boobsImplant > 400>>
 		<<if $activeSlave.boobsImplant > 8000>>
-			| [[Drain 1000cc|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-1000),$activeSlave.boobsImplant = ($activeSlave.boobsImplant-1000),$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
+			| [[Drain 1000cc|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-1000),$activeSlave.boobsImplant = ($activeSlave.boobsImplant-1000), $activeSlave.health -= 5,$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
 		<<elseif $activeSlave.boobsImplant > 5000>>
-			| [[Drain 750cc|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-750),$activeSlave.boobsImplant = ($activeSlave.boobsImplant-750),$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
+			| [[Drain 750cc|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-750),$activeSlave.boobsImplant = ($activeSlave.boobsImplant-750), $activeSlave.health -= 5,$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
 		<<elseif $activeSlave.boobsImplant > 2000>>
-			| [[Drain 500cc|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-500),$activeSlave.boobsImplant = ($activeSlave.boobsImplant-500),$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
+			| [[Drain 500cc|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-500),$activeSlave.boobsImplant = ($activeSlave.boobsImplant-500), $activeSlave.health -= 5,$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
 		<<elseif $activeSlave.boobsImplant > 1000>>
-			| [[Drain 250cc|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-250),$activeSlave.boobsImplant = ($activeSlave.boobsImplant-250),$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
+			| [[Drain 250cc|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-250),$activeSlave.boobsImplant = ($activeSlave.boobsImplant-250), $activeSlave.health -= 5,$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
 		<<elseif $activeSlave.boobsImplant > 500>>
-			| [[Drain 100cc|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-100),$activeSlave.boobsImplant = ($activeSlave.boobsImplant-100),$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
+			| [[Drain 100cc|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-100),$activeSlave.boobsImplant = ($activeSlave.boobsImplant-100), $activeSlave.health -= 5,$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
 		<</if>>
 	<</if>>
 	| [[Remove breast implants|Surgery Degradation][$activeSlave.boobs = ($activeSlave.boobs-$activeSlave.boobsImplant),$activeSlave.boobsImplant = 0,$activeSlave.boobsImplantType = 0, $activeSlave.health -= 5,$cash -= $surgeryCost, $surgeryType = "boobsLoss"]]
@@ -619,15 +619,15 @@ $He's
 <</if>>
 <<if $activeSlave.bellyImplant > -1>>
 	<<if $activeSlave.indentureRestrictions < 2>>
-	| [[Drain implant|Surgery Degradation][$activeSlave.bellyImplant -= 200,$cash -= $surgeryCost, $surgeryType = "bellyDown"]]
+	| [[Drain implant|Surgery Degradation][$activeSlave.bellyImplant -= 200,$cash -= $surgeryCost, $activeSlave.health -= 5, $surgeryType = "bellyDown"]]
 	 <<if $activeSlave.bellyImplant >= 500>>
-		| [[Greatly drain implant|Surgery Degradation][$activeSlave.bellyImplant -= 500,$cash -= $surgeryCost, $surgeryType = "bellyDown"]]
+		| [[Greatly drain implant|Surgery Degradation][$activeSlave.bellyImplant -= 500, $activeSlave.health -= 5,$cash -= $surgeryCost, $surgeryType = "bellyDown"]]
 	 <</if>>
 	| [[Remove implant|Surgery Degradation][$activeSlave.bellyImplant = -1, $activeSlave.cervixImplant = 0, $cash -= $surgeryCost, $activeSlave.health -= 10, $surgeryType = "bellyOut"]]
 	<</if>>
 	<<if $activeSlave.cervixImplant != 1 && $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 = 1, $cash -= $surgeryCost, $surgeryType = "cervixPump"]]<br>
+		[[Install cervix micropump filter|Surgery Degradation][$activeSlave.cervixImplant = 1, $activeSlave.health -= 5, $cash -= $surgeryCost, $surgeryType = "cervixPump"]]<br>
 		//Will allow $his belly implant to slowly swell as people cum in $his vagina//
 	<</if>>
 <</if>>
@@ -696,14 +696,14 @@ $He's got a
 <<if $activeSlave.buttImplant != 0>>
 	<<if $activeSlave.indentureRestrictions < 2>>
 	<<if $activeSlave.buttImplantType == 1 && $activeSlave.buttImplant > 1>>
-	| [[Drain implants|Surgery Degradation][$activeSlave.butt = ($activeSlave.butt-1),$activeSlave.buttImplant = ($activeSlave.buttImplant-1),$cash -= $surgeryCost, $surgeryType = "buttLoss"]]
+	| [[Drain implants|Surgery Degradation][$activeSlave.butt = ($activeSlave.butt-1),$activeSlave.buttImplant = ($activeSlave.buttImplant-1), $activeSlave.health -= 5,$cash -= $surgeryCost, $surgeryType = "buttLoss"]]
 	<</if>>
-	| [[Remove implants|Surgery Degradation][$activeSlave.butt = ($activeSlave.butt-$activeSlave.buttImplant),$activeSlave.buttImplant = 0,$activeSlave.buttImplantType = 0,$cash -= $surgeryCost, $surgeryType = "buttLoss"]]
+	| [[Remove implants|Surgery Degradation][$activeSlave.butt = ($activeSlave.butt-$activeSlave.buttImplant),$activeSlave.buttImplant = 0, $activeSlave.health -= 10,$activeSlave.buttImplantType = 0,$cash -= $surgeryCost, $surgeryType = "buttLoss"]]
 	<</if>>
 <</if>>
 <<if ($activeSlave.butt > 1) && ($activeSlave.buttImplant == 0)>>
 	<<if $activeSlave.indentureRestrictions < 2>>
-	| [[Reduce ass|Surgery Degradation][$activeSlave.butt -= 1,$cash -= $surgeryCost, $surgeryType = "buttLoss"]]
+	| [[Reduce ass|Surgery Degradation][$activeSlave.butt -= 1, $activeSlave.health -= 10,$cash -= $surgeryCost, $surgeryType = "buttLoss"]]
 	<</if>>
 <</if>>
 
diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw
index c24215b5823..ca613611316 100644
--- a/src/uncategorized/surgeryDegradation.tw
+++ b/src/uncategorized/surgeryDegradation.tw
@@ -46,30 +46,26 @@
 			Without the tissue needed to support their unusual shape, $his fuckable nipples have reverted @@.orange;to being huge and protruding.@@
 			<<set $activeSlave.nipples = "huge">>
 		<</if>>
-		<<if ($activeSlave.sexualFlaw == "breast growth")>>
+		<<if $activeSlave.fetish == "mindbroken">>
+			 As with all invasive surgery @@.red;$his health has been affected.@@
+		<<elseif ($activeSlave.sexualFlaw == "breast growth")>>
 			<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. The immense bust $he managed to grow has been all but stripped from $him. $His face fills with disbelief as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with disbelief as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$His hands immediately dart to grope $his tits, but $he only ends up grabbing air. $His face twitches, $his mind unable to comprehend why this has happened to $him. $His hands fall to $his sides as $his will breaks.<<else>> $He tries to squirm, and finds $he is no longer pinned by $his tits. $His face twitches, $his mind unable to comprehend why this has happened to $him. $He sobs once as $his will to go on breaks apart.<</if>> $He loved $his enormous breasts, and now that they are gone, $he has nothing to live for. @@.red;Your apparent theft of $his obsession has broken $his mind@@. As with all invasive surgery @@.red;$his health has been affected.@@
-			<<set $activeSlave.trust = -50>>
-			<<set $activeSlave.devotion = -50>>
+			<<set $activeSlave.trust = -50, $activeSlave.devotion = -50>>
 			<<set $activeSlave.fetish = "mindbroken">>
 			<<set $activeSlave.fetishStrength = 10>>
-			<<set $activeSlave.sexualQuirk = "none">>
-			<<set $activeSlave.behavioralQuirk = "none">>
-			<<set $activeSlave.behavioralFlaw = "none">>
+			<<set $activeSlave.sexualQuirk = "none", $activeSlave.behavioralQuirk = "none", $activeSlave.behavioralFlaw = "none", $activeSlave.sexualFlaw = "none">>
 		<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($activeSlave.devotion < 20)>>
 			<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. $His once magnificent, immense bust has been all but stripped from $him. $His face fills with resentment as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with resentment as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He loved $his enormous breasts, and they were apparently swiped from off $his chest by the person $he was just beginning to entrust $himself to. @@.mediumorchid;$He sees this as a betrayal by you@@. As with all invasive surgery @@.red;$his health has been affected.@@ $He is now @@.gold;terribly afraid@@ that you may chose to steal something else $he loves, even though it was your intent to preserve them.
-			<<set $activeSlave.trust -= 40>>
-			<<set $activeSlave.devotion -= 20>>
+			<<set $activeSlave.trust -= 40, $activeSlave.devotion -= 20>>
 		<<elseif ($activeSlave.devotion > 50)>>
 			<<if $activeSlave.amp != 1>>$He hefts $his new, tiny breasts experimentally and turns to you with a smile to show off $his new, slimmer form, completely unaware this wasn't your intent. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel $his tiny breasts move and turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't bounce too much.<</if>> @@.hotpink;$He's happy with your changes to $his boobs@@ and @@.mediumaquamarine;thankful@@ that you'd consider $his health, well being and ability to fuck. As with all invasive surgery @@.red;$his health has been affected.@@
-			<<set $activeSlave.devotion += 4>>
-			<<set $activeSlave.trust += 4>>
+			<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
 		<<elseif ($activeSlave.devotion >= -20)>>
 			<<if canSee($activeSlave)>>$He eyes $his new, tiny breasts with appreciation<<else>>$He attempts to sway $his big tits experimentally, only to find $his chest barely moves at all<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, but both your and $him expected something other than this when $he was sent to the surgery. $He isn't much affected mentally. As with all invasive surgery @@.red;$his health has been affected.@@ $He is @@.mediumaquamarine;thankful@@ that you removed the literal weight off $his chest.
 			<<set $activeSlave.trust += 5>>
 		<<else>>
 			<<if canSee($activeSlave)>>$He eyes the sudden lack of $his former breasts with relief<<else>>The sudden lack of weight on $his chest fills $him with relief<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but $he breaths easier without the immense weight hanging from $him.<<else>>$He's still sore, so $he keeps $his torso still, but $he breaths easier without the immense weight hanging from $him.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every supposed whim. For now, @@.hotpink;$he seems appreciative of this literal weight lifted from $his chest@@ and @@.mediumaquamarine;is thankful for your consideration of $his health,@@ though it may be short lived. As with all invasive surgery @@.red;$his health has been affected.@@
-			<<set $activeSlave.trust += 10>>
-			<<set $activeSlave.devotion += 5>>
+			<<set $activeSlave.trust += 10, $activeSlave.devotion += 5>>
 		<</if>>
 	<<else>>
 		<<if ($activeSlave.areolae > 2)>>
@@ -83,19 +79,17 @@
 			Without the tissue needed to support their unusual shape, $his fuckable nipples have reverted @@.orange;to being huge and protruding.@@
 			<<set $activeSlave.nipples = "huge">>
 		<</if>>
-		<<if ($activeSlave.sexualFlaw == "breast growth")>>
+		<<if $activeSlave.fetish == "mindbroken">>
+			As with all invasive surgery @@.red;$his health has been affected.@@
+		<<elseif ($activeSlave.sexualFlaw == "breast growth")>>
 			<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. $His once glorious bust has been all but stripped from $him. $His face fills with disbelief as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with disbelief as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$His hands immediately dart to grope $his tits, but $he only ends up grabbing air. $His face twitches, $his mind unable to comprehend why this has happened to $him. $His hands fall to $his sides as $his will breaks.<<else>> $He tries to squirm, and finds $he is no longer pinned by $his tits. $His face twitches, $his mind unable to comprehend why this has happened to $him. $He sobs once as $his will to go on breaks apart.<</if>> $He loved $his huge breasts, and now that they are gone, $he has nothing to live for. @@.red;Your theft of $his obsession has broken $his mind@@. As with all invasive surgery @@.red;$his health has been affected.@@
-			<<set $activeSlave.trust = -50>>
-			<<set $activeSlave.devotion = -50>>
+			<<set $activeSlave.trust = -50, $activeSlave.devotion = -50>>
 			<<set $activeSlave.fetish = "mindbroken">>
 			<<set $activeSlave.fetishStrength = 10>>
-			<<set $activeSlave.sexualQuirk = "none">>
-			<<set $activeSlave.behavioralQuirk = "none">>
-			<<set $activeSlave.behavioralFlaw = "none">>
+			<<set $activeSlave.sexualQuirk = "none", $activeSlave.behavioralQuirk = "none", $activeSlave.behavioralFlaw = "none", $activeSlave.sexualFlaw = "none">>
 		<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($activeSlave.devotion < 20)>>
 			<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. $His once magnificent bust has been all but stripped from $him. $His face fills with resentment as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with resentment as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He loved $his huge breasts, and they were apparently swiped from off $his chest by the person $he was just beginning to entrust $himself to. @@.mediumorchid;$He sees this as a betrayal by you@@. As with all invasive surgery @@.red;$his health has been affected.@@ $He is now @@.gold;terribly afraid@@ that you may chose to steal something else $he loves, even though it was your intent to preserve them.
-			<<set $activeSlave.trust -= 40>>
-			<<set $activeSlave.devotion -= 20>>
+			<<set $activeSlave.trust -= 40, $activeSlave.devotion -= 20>>
 		<<elseif ($activeSlave.devotion > 50)>>
 			<<if $activeSlave.amp != 1>>$He hefts $his new, tiny breasts experimentally and turns to you with a smile to show off $his new, slimmer form, completely unaware this wasn't your intent. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel $his tiny breasts move and turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't bounce too much.<</if>> @@.hotpink;$He's happy with your changes to $his boobs.@@ As with all invasive surgery @@.red;$his health has been affected.@@
 			<<set $activeSlave.devotion += 4>>
@@ -104,8 +98,7 @@
 			<<set $activeSlave.trust -= 5>>
 		<<else>>
 			<<if canSee($activeSlave)>>$He eyes the sudden lack of $his former breasts with resentment<<else>>The sudden lack of weight on $his chest fills $him with resentment<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this apparent surgical theft as a cruel imposition@@. As with all invasive surgery @@.red;$his health has been affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
-			<<set $activeSlave.trust -= 10>>
-			<<set $activeSlave.devotion -= 5>>
+			<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 		<</if>>
 	<</if>>
 	<<set $activeSlave.boobs = 300, $activeSlave.breastMesh = 0, $activeSlave.health -= 30, $cash -= $surgeryCost>>
@@ -153,37 +146,37 @@ As the remote surgery's long recovery cycle completes,
 	<<if $familyTesting == 1>>
 		<<for $j = 0; $j < $slaves.length; $j++>>
 			<<if $activeSlave.mother == $slaves[$j].ID>>
-				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that her daughter is now a Fuckdoll.
+				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that $his daughter is now a Fuckdoll.
 				<<set $slaves[$j].devotion -= 40, $slaves[$j].trust -= 40>>
 			<</if>>
 			<<if $activeSlave.father == $slaves[$j].ID>>
-				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that her daughter is now a Fuckdoll.
+				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that $his daughter is now a Fuckdoll.
 				<<set $slaves[$j].devotion -= 40, $slaves[$j].trust -= 40>>
 			<</if>>
 			<<if $activeSlave.ID == $slaves[$j].father>>
-				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that her father is now a Fuckdoll.
+				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that $his father is now a Fuckdoll.
 				<<set $slaves[$j].devotion -= 40, $slaves[$j].trust -= 40>>
 			<</if>>
 			<<if $activeSlave.ID == $slaves[$j].mother>>
-				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that her mother is now a Fuckdoll.
+				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that $his mother is now a Fuckdoll.
 				<<set $slaves[$j].devotion -= 40, $slaves[$j].trust -= 40>>
 			<</if>>
 			<<switch areSisters($activeSlave, $slaves[$j])>>
 			<<case 1>>
-				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that her twin is now a Fuckdoll. Is $he next?
+				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that $his twin is now a Fuckdoll. Is $he next?
 				<<set $slaves[$j].devotion -= 50, $slaves[$j].trust -= 50>>
 			<<case 2>>
-				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that her sister is now a Fuckdoll.
+				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that $his sister is now a Fuckdoll.
 				<<set $slaves[$j].devotion -= 40, $slaves[$j].trust -= 40>>
 			<<case 3>>
-				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that her half-sister is now a Fuckdoll.
+				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that $his half-sister is now a Fuckdoll.
 				<<set $slaves[$j].devotion -= 30, $slaves[$j].trust -= 30>>
 			<</switch>>
 		<</for>>
 		<<if $activeSlave.relationship > 0>>
 			<<set $j = $slaveIndices[$activeSlave.relationshipTarget]>>
 			<<if def $j>>
-				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that her <<if $activeSlave.relationship > 4>>wife<<elseif $activeSlave.relationship > 3>>lover<<elseif $activeSlave.relationship > 2>>intimate friend<<elseif $activeSlave.relationship > 1>>best friend<<else>>friend<</if>> is now a Fuckdoll.
+				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that $his <<if $activeSlave.relationship > 4>>wife<<elseif $activeSlave.relationship > 3>>lover<<elseif $activeSlave.relationship > 2>>intimate friend<<elseif $activeSlave.relationship > 1>>best friend<<else>>friend<</if>> is now a Fuckdoll.
 				<<set $slaves[$j].devotion -= $activeSlave.relationship*10>>
 				<<set $slaves[$j].trust -= $activeSlave.relationship*10>>
 				<<set $slaves[$j].relationship = 0>>
@@ -196,7 +189,7 @@ As the remote surgery's long recovery cycle completes,
 		<<if $activeSlave.relation != 0>>
 			<<set $j = $slaveIndices[$activeSlave.relationTarget]>>
 			<<if def $j>>
-				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that her $activeSlave.relation is now a Fuckdoll.
+				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that $his $activeSlave.relation is now a Fuckdoll.
 				<<set $slaves[$j].devotion -= 40>>
 				<<set $slaves[$j].trust -= 40>>
 			<</if>>
@@ -204,7 +197,7 @@ As the remote surgery's long recovery cycle completes,
 		<<if $activeSlave.relationship > 0>>
 			<<set $j = $slaveIndices[$activeSlave.relationshipTarget]>>
 			<<if def $j>>
-				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that her <<if $activeSlave.relationshipTarget == $activeSlave.relationTarget>>$activeSlave.relation and<</if>> <<if $activeSlave.relationship > 4>>wife<<elseif $activeSlave.relationship > 3>>lover<<elseif $activeSlave.relationship > 2>>intimate friend<<elseif $activeSlave.relationship > 1>>best friend<<else>>friend<</if>> is now a Fuckdoll.
+				$slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when she finds out that $his <<if $activeSlave.relationshipTarget == $activeSlave.relationTarget>>$activeSlave.relation and<</if>> <<if $activeSlave.relationship > 4>>wife<<elseif $activeSlave.relationship > 3>>lover<<elseif $activeSlave.relationship > 2>>intimate friend<<elseif $activeSlave.relationship > 1>>best friend<<else>>friend<</if>> is now a Fuckdoll.
 				<<set $slaves[$j].devotion -= $activeSlave.relationship*10>>
 				<<set $slaves[$j].trust -= $activeSlave.relationship*10>>
 				<<set $slaves[$j].relationship = 0>>
@@ -260,54 +253,57 @@ As the remote surgery's long recovery cycle completes,
 
 <<case "mindbreak">>
 	$His gaze is placid and empty. <<if canSee($activeSlave)>>$He looks at<<elseif canHear($activeSlave)>>You cough, causing $him to turn to face<<else>>$He does not respond to your touch, so you turn $his head to face<</if>> you, and there is nothing there: no recognition, no fear, no love. Nothing. @@.red;$He will forget this in a few hours. $He will forget everything in a few hours.@@
-	<<set $activeSlave.sexualFlaw = "none">>
-	<<set $activeSlave.behavioralFlaw = "none">>
+	<<set $activeSlave.sexualFlaw = "none", $activeSlave.behavioralFlaw = "none">>
 
 <<case "unblind">>
 	The eye surgery is @@.red;invasive@@ and $he spends some time in the autosurgery recovering. As soon as $he is allowed to open $his eyes and look around, $his gaze flicks from object to object with manic speed as $he processes $his new vision. Seeing the world as it is is a gift that those who do not need it cannot properly understand.
-	<<set $activeSlave.devotion += 25>>
-	<<set $activeSlave.trust += 25>>
-	<<if ($activeSlave.devotion > 50)>>
-		$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too. $He never realized just how good you looked, and now $he can't get your image out of $his mind.
-		<<if $activeSlave.relationship == 0>><<set $activeSlave.relationship = -2>><</if>>
-	<<elseif ($activeSlave.devotion > 20)>>
-		$He accepted you as $his owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
-	<<else>>
-		$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<set $activeSlave.devotion += 25, $activeSlave.trust += 25>>
+		<<if ($activeSlave.devotion > 50)>>
+			$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too. $He never realized just how good you looked, and now $he can't get your image out of $his mind.
+			<<if $activeSlave.relationship == 0>><<set $activeSlave.relationship = -2>><</if>>
+		<<elseif ($activeSlave.devotion > 20)>>
+			$He accepted you as $his owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
+		<<else>>
+			$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+		<</if>>
 	<</if>>
 
 <<case "blind">>
 	The laser eye surgery is brief, with @@.red;nothing more than minor health effects.@@ As soon as $he is allowed to open $his eyes and look around, $he begins to glance back and forth frantically, not immediately understanding that this darkness is $his new reality.
-	<<if ($activeSlave.devotion > 50)>>
-		When $he finally figures it out, $he begins to weep, not understanding why it's necessary that $he be unable to see. After a short cry that trails off into a few sniffles, $he carries on.
-	<<elseif ($activeSlave.devotion > 20)>>
-		When $he finally figures it out, $he begins to bawl, not understanding what $he did to earn this. After a short expurgation of @@.gold;grief and terror,@@ $he takes a deep breath and visibly suppresses $his emotions.
-		<<set $activeSlave.trust -= 20>>
-	<<else>>
-		When $he realizes what's happened, $his face @@.mediumorchid;clouds with rage.@@ Reflexively, $he begins to peer around, looking for the source of $his woes. $He finally understands the true use of blindness when $he realizes $he won't be able to tell where you are, where anyone is, or even where $he is. $His well being is now firmly in the hands of someone $he distrusts. $He begins to @@.gold;shake with fear.@@
-		<<set $activeSlave.trust -= 8>>
-		<<set $activeSlave.devotion -= 8>>
-	<</if>>
-
-<<case "remove eyes">>
-	Surgery doesn't take long, but since it was invasive there are @@.red;moderate health consequences.@@ As anesthesia wears off $he tries to open $his eyes and finds $he is unable to.
-	<<if $activeSlave.eyes != -2>>
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
 		<<if ($activeSlave.devotion > 50)>>
-			When $he realizes why, $he begins to weep, not understanding what $he did to deserve this. After a short cry that trails off into a few sniffles, $he carries on.
+			When $he finally figures it out, $he begins to weep, not understanding why it's necessary that $he be unable to see. After a short cry that trails off into a few sniffles, $he carries on.
 		<<elseif ($activeSlave.devotion > 20)>>
-			When $he realizes why, $he begins to bawl, not understanding what $he did to earn this. After a short expurgation of @@.gold;grief and terror,@@ $he takes a deep breath and visibly suppresses $his emotions.
+			When $he finally figures it out, $he begins to bawl, not understanding what $he did to earn this. After a short expurgation of @@.gold;grief and terror,@@ $he takes a deep breath and visibly suppresses $his emotions.
 			<<set $activeSlave.trust -= 20>>
 		<<else>>
-			When $he realizes what's happened, $his face @@.mediumorchid;clouds with rage.@@ Reflexively, $he swings $his head around, looking for the source of $his woes. $He finally understands the true use of blindness when $he realizes $he won't be able to tell where you are, where anyone is, or even where $he is. $His well being is now firmly in the hands of someone $he distrusts. $He begins to @@.gold;shake with fear.@@
-			<<set $activeSlave.trust -= 8>>
-			<<set $activeSlave.devotion -= 8>>
+			When $he realizes what's happened, $his face @@.mediumorchid;clouds with rage.@@ Reflexively, $he begins to peer around, looking for the source of $his woes. $He finally understands the true use of blindness when $he realizes $he won't be able to tell where you are, where anyone is, or even where $he is. $His well being is now firmly in the hands of someone $he distrusts. $He begins to @@.gold;shake with fear.@@
+			<<set $activeSlave.trust -= 8, $activeSlave.devotion -= 8>>
 		<</if>>
-	<<else>>
-		<<if ($activeSlave.devotion > 50)>>
-			When $he realizes why, $he seems surprised since $he doesn't see the point of such procedure. As $he was already blind, $his mental state remains unaffected.
+	<</if>>
+
+<<case "remove eyes">>
+	Surgery doesn't take long, but since it was invasive there are @@.red;moderate health consequences.@@ As anesthesia wears off $he tries to open $his eyes and finds $he is unable to.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.eyes != -2>>
+			<<if ($activeSlave.devotion > 50)>>
+				When $he realizes why, $he begins to weep, not understanding what $he did to deserve this. After a short cry that trails off into a few sniffles, $he carries on.
+			<<elseif ($activeSlave.devotion > 20)>>
+				When $he realizes why, $he begins to bawl, not understanding what $he did to earn this. After a short expurgation of @@.gold;grief and terror,@@ $he takes a deep breath and visibly suppresses $his emotions.
+				<<set $activeSlave.trust -= 20>>
+			<<else>>
+				When $he realizes what's happened, $his face @@.mediumorchid;clouds with rage.@@ Reflexively, $he swings $his head around, looking for the source of $his woes. $He finally understands the true use of blindness when $he realizes $he won't be able to tell where you are, where anyone is, or even where $he is. $His well being is now firmly in the hands of someone $he distrusts. $He begins to @@.gold;shake with fear.@@
+				<<set $activeSlave.trust -= 8>>
+				<<set $activeSlave.devotion -= 8>>
+			<</if>>
 		<<else>>
-			$His face twists in distaste. Such pointless and invasive procedure drives home just how @@.gold;expendable@@ $he is to you.
-			<<set $activeSlave.devotion -= 5>>
+			<<if ($activeSlave.devotion > 50)>>
+				When $he realizes why, $he seems surprised since $he doesn't see the point of such procedure. As $he was already blind, $his mental state remains unaffected.
+			<<else>>
+				$His face twists in distaste. Such pointless and invasive procedure drives home just how @@.gold;expendable@@ $he is to you.
+				<<set $activeSlave.devotion -= 5>>
+			<</if>>
 		<</if>>
 	<</if>>
 	<<set $activeSlave.eyes = -3>>
@@ -315,27 +311,30 @@ As the remote surgery's long recovery cycle completes,
 <<case "ocular implant">>
 	<<if $activeSlave.eyes <= -2>>
 		The implant surgery is @@.red;invasive@@ and $he spends some time in the autosurgery recovering. As soon as $he is allowed to open $his eyes and look around, $his gaze flicks from object to object with manic speed as $his new eyes deliver nearly overwhelming amount of visual information. Seeing the world as it is is a gift that those who do not need it cannot properly understand.
-		<<set $activeSlave.devotion += 25>>
-		<<set $activeSlave.trust += 25>>
-		<<if ($activeSlave.devotion > 50)>>
-			$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too. $He never realized just how good you looked, and now $he can't get your image out of $his mind.
-			<<if $activeSlave.relationship == 0>><<set $activeSlave.relationship = -2>><</if>>
-		<<elseif ($activeSlave.devotion > 20)>>
-			$He accepted you as $his owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
-		<<else>>
-			$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+		<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+			<<set $activeSlave.devotion += 25, $activeSlave.trust += 25>>
+			<<if ($activeSlave.devotion > 50)>>
+				$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too. $He never realized just how good you looked, and now $he can't get your image out of $his mind.
+				<<if $activeSlave.relationship == 0>><<set $activeSlave.relationship = -2>><</if>>
+			<<elseif ($activeSlave.devotion > 20)>>
+				$He accepted you as $his owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
+			<<else>>
+				$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+			<</if>>
 		<</if>>
 	<<else>>
 		The implant surgery is @@.red;invasive@@ and $he spends some time in the autosurgery recovering. When $he is allowed to open $his eyes the amount of visual information makes $him reel.
-		<<if ($activeSlave.devotion > 50)>>
-			$He is @@.hotpink;grateful@@ for $his improved vision, and knowing how much you invested in $him makes $him @@.mediumaquamarine;trust you more@@ as well.
-			<<set $activeSlave.devotion += 10; $activeSlave.trust += 10>>
-		<<elseif ($activeSlave.devotion > 20)>>
-			$He has mixed feelings about $his new eyes, but $he's @@.mediumaquamarine;aware@@ how valuable such implants are, and $he already @@.hotpink;accepted@@ that you have complete control over $his body.
-			<<set $activeSlave.devotion += 5; $activeSlave.trust += 10>>
-		<<else>>
-			$He is @@.gold;disturbed@@ that you replaced $his eyes with artificial ones and afraid of increased control over $him that such device grants.
-			<<set $activeSlave.devotion -= 5>>
+		<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+			<<if ($activeSlave.devotion > 50)>>
+				$He is @@.hotpink;grateful@@ for $his improved vision, and knowing how much you invested in $him makes $him @@.mediumaquamarine;trust you more@@ as well.
+				<<set $activeSlave.devotion += 10; $activeSlave.trust += 10>>
+			<<elseif ($activeSlave.devotion > 20)>>
+				$He has mixed feelings about $his new eyes, but $he's @@.mediumaquamarine;aware@@ how valuable such implants are, and $he already @@.hotpink;accepted@@ that you have complete control over $his body.
+				<<set $activeSlave.devotion += 5; $activeSlave.trust += 10>>
+			<<else>>
+				$He is @@.gold;disturbed@@ that you replaced $his eyes with artificial ones and afraid of increased control over $him that such device grants.
+				<<set $activeSlave.devotion -= 5>>
+			<</if>>
 		<</if>>
 	<</if>>
 	<<set $activeSlave.eyes = 1>>
@@ -345,54 +344,59 @@ As the remote surgery's long recovery cycle completes,
 	
 <<case "undeafen">>
 	The inner ear surgery is @@.red;invasive@@ and $he spends some time in the autosurgery recovering. As soon as the bandages around $his ears are removed, $his head tilts towards any source of sound with manic speed as $he processes $his new hearing. Hearing the world as it is is a gift that those who do not need it cannot properly understand.
-	<<set $activeSlave.devotion += 25>>
-	<<set $activeSlave.trust += 25>>
-	<<if ($activeSlave.devotion > 50)>>
-		$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too. $He never realized just how nice your voice was, and now $he can't get your words out of $his mind.
-		<<if $activeSlave.relationship == 0>><<set $activeSlave.relationship = -2>><</if>>
-	<<elseif ($activeSlave.devotion > 20)>>
-		$He accepted you as $his owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
-	<<else>>
-		$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<set $activeSlave.devotion += 25, $activeSlave.trust += 25>>
+		<<if ($activeSlave.devotion > 50)>>
+			$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too. $He never realized just how nice your voice was, and now $he can't get your words out of $his mind.
+			<<if $activeSlave.relationship == 0>><<set $activeSlave.relationship = -2>><</if>>
+		<<elseif ($activeSlave.devotion > 20)>>
+			$He accepted you as $his owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
+		<<else>>
+			$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+		<</if>>
 	<</if>>
 
 <<case "deafen">>
 	The inner ear surgery is brief, with @@.red;nothing more than minor health effects.@@ As soon as the bandages around $his ears are removed, $he begins to twist and turn $his head frantically, not immediately understanding that this silence is $his new reality.
-	<<if ($activeSlave.devotion > 50)>>
-		When $he finally figures it out, $he begins to weep, not understanding why it's necessary that $he be unable to hear. After a short cry that trails off into a few sniffles, $he carries on.
-	<<elseif ($activeSlave.devotion > 20)>>
-		When $he finally figures it out, $he begins to bawl, not understanding what $he did to earn this. After a short expurgation of @@.gold;grief and terror,@@ $he takes a deep breath and visibly suppresses $his emotions.
-		<<set $activeSlave.trust -= 20>>
-	<<else>>
-		When $he realizes what's happened, $his face @@.mediumorchid;clouds with rage.@@ $He begins to peer around, looking for the source of $his woes. $He finally understands the true use of deafness when $he realizes $he won't be able to easily tell where you are, or anyone else is for that matter. $His well being is now firmly in the hands of someone $he distrusts. $He begins to @@.gold;shake with fear.@@
-		<<set $activeSlave.trust -= 8>>
-		<<set $activeSlave.devotion -= 8>>
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if ($activeSlave.devotion > 50)>>
+			When $he finally figures it out, $he begins to weep, not understanding why it's necessary that $he be unable to hear. After a short cry that trails off into a few sniffles, $he carries on.
+		<<elseif ($activeSlave.devotion > 20)>>
+			When $he finally figures it out, $he begins to bawl, not understanding what $he did to earn this. After a short expurgation of @@.gold;grief and terror,@@ $he takes a deep breath and visibly suppresses $his emotions.
+			<<set $activeSlave.trust -= 20>>
+		<<else>>
+			When $he realizes what's happened, $his face @@.mediumorchid;clouds with rage.@@ $He begins to peer around, looking for the source of $his woes. $He finally understands the true use of deafness when $he realizes $he won't be able to easily tell where you are, or anyone else is for that matter. $His well being is now firmly in the hands of someone $he distrusts. $He begins to @@.gold;shake with fear.@@
+			<<set $activeSlave.trust -= 8, $activeSlave.devotion -= 8>>
+		<</if>>
 	<</if>>
 
 <<case "cochlear implant">>
 	<<if $activeSlave.hears <= -2>>
 		The implant surgery is @@.red;invasive@@ and $he spends some time in the autosurgery recovering. As soon as the bandages around $his ears are removed, $his head tilts towards any source of sound with manic speed as $he processes a nearly overwhelming amount of auditory information. Hearing the world as it is is a gift that those who do not need it cannot properly understand.
-		<<set $activeSlave.devotion += 25>>
-		<<set $activeSlave.trust += 25>>
-		<<if ($activeSlave.devotion > 50)>>
-			$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too. $He never realized just how nice your voice was, and now $he can't get your words out of $his mind.
-			<<if $activeSlave.relationship == 0>><<set $activeSlave.relationship = -2>><</if>>
-		<<elseif ($activeSlave.devotion > 20)>>
-			$He accepted you as $his owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
-		<<else>>
-			$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+		<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+			<<set $activeSlave.devotion += 25, $activeSlave.trust += 25>>
+			<<if ($activeSlave.devotion > 50)>>
+				$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too. $He never realized just how nice your voice was, and now $he can't get your words out of $his mind.
+				<<if $activeSlave.relationship == 0>><<set $activeSlave.relationship = -2>><</if>>
+			<<elseif ($activeSlave.devotion > 20)>>
+				$He accepted you as $his owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
+			<<else>>
+				$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+			<</if>>
 		<</if>>
 	<<else>>
 		The implant surgery is @@.red;invasive@@ and $he spends some time in the autosurgery recovering. When the bandages around $his ears are removed the amount of auditory information makes $him reel.
-		<<if ($activeSlave.devotion > 50)>>
-			$He is @@.hotpink;grateful,@@ for $his improved hearing, and knowing how much you invested in $him makes $him @@.mediumaquamarine;trust you more@@ as well.
-			<<set $activeSlave.devotion += 10; $activeSlave.trust += 10>>
-		<<elseif ($activeSlave.devotion > 20)>>
-			$He has mixed feelings about $his new implant, but $he's @@.mediumaquamarine;aware@@ how valuable such implants are, and $he already @@.hotpink;accepted@@ that you have complete control over $his body.
-			<<set $activeSlave.devotion += 5; $activeSlave.trust += 10>>
-		<<else>>
-			$He is @@.gold;disturbed@@ that you've placed something mechanical in $his head and afraid of increased control over $him that such device grants.
-			<<set $activeSlave.devotion -= 5>>
+		<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+			<<if ($activeSlave.devotion > 50)>>
+				$He is @@.hotpink;grateful,@@ for $his improved hearing, and knowing how much you invested in $him makes $him @@.mediumaquamarine;trust you more@@ as well.
+				<<set $activeSlave.devotion += 10, $activeSlave.trust += 10>>
+			<<elseif ($activeSlave.devotion > 20)>>
+				$He has mixed feelings about $his new implant, but $he's @@.mediumaquamarine;aware@@ how valuable such implants are, and $he already @@.hotpink;accepted@@ that you have complete control over $his body.
+				<<set $activeSlave.devotion += 5, $activeSlave.trust += 10>>
+			<<else>>
+				$He is @@.gold;disturbed@@ that you've placed something mechanical in $his head and afraid of increased control over $him that such device grants.
+				<<set $activeSlave.devotion -= 5>>
+			<</if>>
 		<</if>>
 	<</if>>
 	<<set $activeSlave.hears = 0>>
@@ -401,33 +405,30 @@ As the remote surgery's long recovery cycle completes,
 	The implant surgery is @@.red;invasive@@ and $he spends some time in the autosurgery recovering. As soon as the bandages around $his ears are removed, $he initially believes nothing has changed, but soon discovers $his hearing is no longer technologically enhanced.
 
 <<case "boobs">>
-	<<if ($activeSlave.areolae < 2)>>
-	<<if (random(1,100) > 70)>>
+	<<if ($activeSlave.areolae < 2) && (random(1,100) > 70)>>
 		The increase in breast size @@.lime;stretches and broadens $his areolae.@@
 		<<set $activeSlave.areolae += 1>>
 	<</if>>
-	<</if>>
 	<<if ($activeSlave.nipples == "puffy")>>
-	<<if (random(1,100) > 70)>>
-		The breast surgery is invasive, and when $his nipples heal, @@.orange;they're a bit more normal.@@
-		<<set $activeSlave.nipples = "cute">>
-	<</if>>
+		<<if (random(1,100) > 70)>>
+			The breast surgery is invasive, and when $his nipples heal, @@.orange;they're a bit more normal.@@
+			<<set $activeSlave.nipples = "cute">>
+		<</if>>
 	<<elseif ($activeSlave.nipples == "huge")>>
-	<<if (random(1,100) > 90)>>
-		The breast surgery is invasive, and when $his nipples heal, @@.orange;they're a bit smaller.@@
-		<<set $activeSlave.nipples = "puffy">>
-	<</if>>
+		<<if (random(1,100) > 90)>>
+			The breast surgery is invasive, and when $his nipples heal, @@.orange;they're a bit smaller.@@
+			<<set $activeSlave.nipples = "puffy">>
+		<</if>>
 	<</if>>
-	<<if ($activeSlave.boobShape != 0)>>
-	<<if (random(1,100) > 50)>>
+	<<if ($activeSlave.boobShape != 0) && (random(1,100) > 50)>>
 		The natural shape of $his breasts has been eliminated by the cosmetic surgery, @@.lime;rendering $his boobs pretty and rounded.@@
 		<<set $activeSlave.boobShape = "normal">>
 	<</if>>
-	<</if>>
-	<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He shows little reaction to the new weight on $his chest. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 		<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's playing with $his new assets.<<else>>$He's barely out of the surgery before $he's rubbing $his new assets against anything $he can reach.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as $his primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 4>>
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 50)>>
 		<<if $activeSlave.amp != 1>>$He hefts $his new breasts experimentally and turns to you with a smile to show them off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel $his new breasts move and turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't move too much, but $he wiggles $himself a little to make them bounce for you.<</if>> @@.hotpink;$He's happy with your changes to $his boobs.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
@@ -436,25 +437,25 @@ As the remote surgery's long recovery cycle completes,
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
 		<<if canSee($activeSlave)>>$He eyes $his new breasts<<else>>The new weight on $his chest fills $him<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view these fake breasts as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "preg">>
-	<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-		$He leaves the surgery with a certain warmth in $his lower abdomen, $he knows that $he has been impregnated. $He is @@.hotpink; filled with joy@@ about being swollen with life and gleefully rubs $his soon to be huge belly. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 10>>
+	$He leaves the surgery with a certain warmth in $his lower abdomen, $he knows that $he has been impregnated.
+	<<if $activeSlave.fetish == "mindbroken">>
+		As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+		$He is @@.hotpink; filled with joy@@ about being swollen with life and gleefully rubs $his soon to be huge belly. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 10>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He leaves the surgery with a certain warmth in $his lower abdomen, $he knows that $he has been impregnated. $He's @@.hotpink;grateful@@ that you think $his offspring are valuable, and a little nervous about how $he'll perform as a breeder. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He's @@.hotpink;grateful@@ that you think $his offspring are valuable, and a little nervous about how $he'll perform as a breeder. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He leaves the surgery with a certain warmth in $his lower abdomen, $he knows that $he has been impregnated. $He understands the realities of $his life as a slave, so it isn't much of a shock. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and how big $he will get.
+		$He understands the realities of $his life as a slave, so it isn't much of a shock. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and how big $he will get.
 		<<set $activeSlave.trust -= 10>>
 	<<else>>
-		$He leaves the surgery with a certain warmth in $his lower abdomen, $he knows that $he has been impregnated. $He does not understand the realities of $his life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ that you have forced $him to be a broodmother. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and $his rapidly filling womb.
-		<<set $activeSlave.trust -= 15>>
-		<<set $activeSlave.devotion -= 15>>
+		$He does not understand the realities of $his life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ that you have forced $him to be a broodmother. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and $his rapidly filling womb.
+		<<set $activeSlave.trust -= 15, $activeSlave.devotion -= 15>>
 	<</if>>
 	<<if $PC.dick == 1>>
 		<span id="seed">
@@ -471,20 +472,21 @@ As the remote surgery's long recovery cycle completes,
 	<</if>>
 
 <<case "pregRemove">>
-	<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-		$He leaves the surgery with a certain soreness and minor pain in $his lower abdomen, $he knows that $his days as broodmother is finished. $He is @@.red; filled with despair@@ about missing being swollen with life and rubs $his flat belly with sorrow. Only one fact slightly soothes $him and allows $him to remain sane - at least $he will not become infertile and still can get pregnant naturally. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 30>>
+	$He leaves the surgery with a certain soreness and minor pain in $his lower abdomen, $he knows that $his days as broodmother are finished.
+	<<if $activeSlave.fetish == "mindbroken">>
+		As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+		$He is @@.red; filled with despair@@ about missing being swollen with life and rubs $his flat belly with sorrow. Only one fact slightly soothes $him and allows $him to remain sane - at least $he will not become infertile and still can get pregnant naturally. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 30>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He leaves the surgery with a certain soreness and minor pain in $his lower abdomen, $he knows that $his days as broodmother is finished. $He's @@.hotpink;grateful@@ that you allowed $his body to be free of constant pregnancy stress, and a little nervous about if you will appreciate $him enough without such dedication. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He's @@.hotpink;grateful@@ that you allowed $his body to be free of constant pregnancy stress, and a little nervous about if you will appreciate $him enough without such dedication. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He leaves the surgery with a certain soreness and minor pain in $his lower abdomen, $he knows that $his days as broodmother is finished. $He understands the realities of $his life as a slave, so it isn't much of a shock. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He understands the realities of $his life as a slave, so it isn't much of a shock. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 10>>
 	<<else>>
-		$He leaves the surgery with a certain soreness and minor pain in $his lower abdomen, $he knows that $his days as broodmother is finished. $He does not understand the realities of $his life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ that you can change $his body so radically just at your will. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and $his now empty womb.
-		<<set $activeSlave.trust -= 15>>
-		<<set $activeSlave.devotion -= 15>>
+		$He does not understand the realities of $his life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ that you can change $his body so radically just at your will. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and $his now empty womb.
+		<<set $activeSlave.trust -= 15, $activeSlave.devotion -= 15>>
 	<</if>>
 
 <<case "insemination">>
@@ -494,7 +496,9 @@ As the remote surgery's long recovery cycle completes,
 	<<set $activeSlave.pregKnown = 1>>
 	<<set $activeSlave.pregSource = $impregnatrix.ID>>
 	<<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, 1)>>
-	<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with a certain warmth in $his lower abdomen, $he knows that $he has been impregnated.
+	<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 		<<if canSee($activeSlave)>>
 			Since the surgery required only a local anesthetic, $he remained fully aware throughout the procedure. From the selection of the sperm, to its introduction to $his waiting egg<<if $activeSlave.pregType > 1>>s<</if>>, $he was eagerly watching.
 		<<else>>
@@ -530,7 +534,7 @@ As the remote surgery's long recovery cycle completes,
 
 
 <<case "freshOvaries">>
-	<<if $activeSlave.ovaryAge >= 45>>
+	<<if $activeSlave.ovaryAge >= 45 && $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
 		<<if (($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)) || $activeSlave.origin == "$He sold $himself to you in the hope of someday bearing children.">>
 			$He leaves the surgery with nothing but a nonspecific ache, yet a familiar warmth, in $his lower abdomen, but $he knows enough about surgery and sex slaves to know that it means $he now has a chance to get pregnant once more. $He is @@.hotpink;filled with joy@@ whenever $he thinks about the fact that $he'll have the chance to feel a life growing within $him again. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
 			<<set $activeSlave.trust += 4, $activeSlave.devotion += 5>>
@@ -545,59 +549,62 @@ As the remote surgery's long recovery cycle completes,
 			<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 		<</if>>
 	<<else>>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen; it won't be clear to $him that menopause is an even more distant event now. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen; it won't be clear to $him that menopause is not a concern for now. As with all surgery @@.red;$his health has been slightly affected.@@
 	<</if>>
 
 <<case "mpreg">>
-	<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-		$He leaves the surgery with a certain fullness in $his lower abdomen, $he knows that $he can now get pregnant. $He is @@.hotpink; filled with joy@@ about the possibility of becoming pregnant and gleefully rubs $his softer belly. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 10>>
+	$He leaves the surgery with a certain fullness in $his lower abdomen, $he knows that, despite lacking female reproductive organs, $he can now become pregnant.
+	<<if $activeSlave.fetish == "mindbroken">>
+		As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+		$He is @@.hotpink; filled with joy@@ about the possibility of becoming pregnant and gleefully rubs $his softer belly. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 10>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He leaves the surgery with a certain fullness in $his lower abdomen, $he knows that, despite lacking female reproductive organs, $he can now become pregnant. $He's @@.hotpink;grateful@@ that you think $his offspring are valuable enough to give $him this gift, and a little nervous about how $he'll perform as a mother. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He's @@.hotpink;grateful@@ that you think $his offspring are valuable enough to give $him this gift, and a little nervous about how $he'll perform as a mother. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He leaves the surgery with a certain fullness in $his lower abdomen, $he knows that, despite lacking female reproductive organs, $he can now become pregnant. $He understands the realities of $his life as a slave, so it isn't much of a shock. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and $his inevitable pregnancy.
+		$He understands the realities of $his life as a slave, so it isn't much of a shock. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and $his inevitable pregnancy.
 		<<set $activeSlave.trust -= 10>>
 	<<else>>
-		$He leaves the surgery with a certain fullness in $his lower abdomen, $he knows that, despite lacking female reproductive organs, $he can now become pregnant. $He does not understand the realities of $his life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ that you have forced $him to become fertile in such an unnatural way. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and $his inevitable pregnancy.
-		<<set $activeSlave.trust -= 15>>
-		<<set $activeSlave.devotion -= 15>>
+		$He does not understand the realities of $his life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ that you have forced $him to become fertile in such an unnatural way. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and $his inevitable pregnancy.
+		<<set $activeSlave.trust -= 15, $activeSlave.devotion -= 15>>
 	<</if>>
 
 <<case "mpreg removed">>
-	$He notices quickly that her stomach is slightly flatter than before. $He ponders this change for a moment, unsure of what to think of this occurrence. As with all surgery @@.red;$his health has been slightly affected.@@
+	$He notices quickly that $his stomach is slightly flatter than before. $He ponders this change for a moment, unsure of what to think of this occurrence. As with all surgery @@.red;$his health has been slightly affected.@@
 
 <<case "nippleCunts">>
-	<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-		<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's experimentally probing her new nipples despite the pain.<<else>>$He's barely out of the surgery before $he's rubbing her new nipples against anything $he can reach, despite the pain.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as her primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He shows no reaction to $his altered nipples. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+		<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's experimentally probing $his new nipples despite the pain.<<else>>$He's barely out of the surgery before $he's rubbing $his new nipples against anything $he can reach, despite the pain.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as $his primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		<<if $activeSlave.amp != 1>>$He runs a finger into her new nipples experimentally and turns to you with a smile to show them off. $He's still sore, so $he doesn't touch them much, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel the new nipples capping $his tits turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't move too violently, but $he wiggles $himself a little to show off.<</if>> @@.hotpink;$He's happy with your changes to $his nipples.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		<<if $activeSlave.amp != 1>>$He runs a finger into $his new nipples experimentally and turns to you with a smile to show them off. $He's still sore, so $he doesn't touch them much, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel the new nipples capping $his tits turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't move too violently, but $he wiggles $himself a little to show off.<</if>> @@.hotpink;$He's happy with your changes to $his nipples.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		<<if canSee($activeSlave)>>$He eyes her new nipples skeptically<<else>>The cool air flowing over her new nipples draws a skeptical expression to her face<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his body still.<</if>> $He's come to terms with the fact that $he's a slave, so $he isn't much affected mentally despite the surprise of having $his nipples reshaped; $he may reconsider once $he realizes just what they are now capable of. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		<<if canSee($activeSlave)>>$He eyes $his new nipples skeptically<<else>>The cool air flowing over $his new nipples draws a skeptical expression to $his face<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his body still.<</if>> $He's come to terms with the fact that $he's a slave, so $he isn't much affected mentally despite the surprise of having $his nipples reshaped; $he may reconsider once $he realizes just what they are now capable of. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		<<if canSee($activeSlave)>>$He eyes her new nipples<<else>>The feel of the air running over her new nipples fills her<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his body still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim; a notion that is likely only going to strengthen once $he realizes just how fuckable $his tits have become. For now, @@.mediumorchid;$he seems to view her altered nipples as a cruel imposition.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
+		<<if canSee($activeSlave)>>$He eyes $his new nipples<<else>>The feel of the air running over $his new nipples fills $him<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his body still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim; a notion that is likely only going to strengthen once $he realizes just how fuckable $his tits have become. For now, @@.mediumorchid;$he seems to view $his altered nipples as a cruel imposition.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "areolae">>
-	<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He shows little reaction to $his altered nipples. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 		<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's playing with $his new nipples despite the pain.<<else>>$He's barely out of the surgery before $he's rubbing $his new nipples against anything $he can reach, despite the pain.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as $his primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 4>>
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 50)>>
 		<<if $activeSlave.amp != 1>>$He runs a finger over $his new nipples experimentally and turns to you with a smile to show them off. $He's still sore, so $he doesn't touch them much, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel the new nipples capping $his tits turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't move too violently, but $he wiggles $himself a little to show off.<</if>> @@.hotpink;$He's happy with your changes to $his nipples.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		<<if canSee($activeSlave)>>$He eyes her new nipples skeptically<<else>>The cool air flowing over her new nipples draws a skeptical expression to her face<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his body still.<</if>> $He's come to terms with the fact that $he's a slave, so $he isn't much affected mentally despite the surprise of having $his nipples reshaped. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		<<if canSee($activeSlave)>>$He eyes $his new nipples skeptically<<else>>The cool air flowing over $his new nipples draws a skeptical expression to $his face<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his body still.<</if>> $He's come to terms with the fact that $he's a slave, so $he isn't much affected mentally despite the surprise of having $his nipples reshaped. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		<<if canSee($activeSlave)>>$He eyes $his new nipples<<else>>The feel of the air running over $his new nipples fills $him<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his body still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view her altered nipples as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		<<if canSee($activeSlave)>>$He eyes $his new nipples<<else>>The feel of the air running over $his new nipples fills $him<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his body still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view $his altered nipples as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "boobsLoss">>
@@ -612,7 +619,9 @@ As the remote surgery's long recovery cycle completes,
 		Without the tissue needed to support their unusual shape, $his fuckable nipples have reverted @@.orange;to being huge and protruding.@@
 		<<set $activeSlave.nipples = "huge">>
 	<</if>>
-	<<if ($activeSlave.devotion > 50)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He shows little awareness that $his breasts are smaller. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
 		<<if $activeSlave.amp != 1>>$He hefts $his new, sleeker breasts experimentally and turns to you with a smile to show off $his new, slimmer form. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel $his smaller breasts move and turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't bounce too much.<</if>> @@.hotpink;$He's happy with your changes to $his boobs.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
@@ -640,30 +649,26 @@ As the remote surgery's long recovery cycle completes,
 		Without the tissue needed to support their unusual shape, $his fuckable nipples have reverted @@.orange;to being huge and protruding.@@
 		<<set $activeSlave.nipples = "huge">>
 	<</if>>
-	<<if ($activeSlave.sexualFlaw == "breast growth")>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He shows little awareness that $his breasts are gone, despite such a massive change. As with all invasive surgery @@.red;$his health has been affected.@@
+	<<elseif ($activeSlave.sexualFlaw == "breast growth")>>
 		<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. The immense bust $he managed to grow has been all but stripped from $him. $His face fills with disbelief as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with disbelief as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$His hands immediately dart to grope $his tits, but $he only ends up grabbing air. $His face twitches, $his mind unable to comprehend why this has happened to $him. $His hands fall to $his sides as $his will breaks.<<else>> $He tries to squirm, and finds $he is no longer pinned by $his tits. $His face twitches, $his mind unable to comprehend why this has happened to $him. $He sobs once as $his will to go on breaks apart.<</if>> $He loved $his enormous breasts, and now that they are gone, $he has nothing to live for. @@.red;Your theft of $his obsession has broken $his mind@@. As with all invasive surgery @@.red;$his health has been affected.@@
-		<<set $activeSlave.trust = -50>>
-		<<set $activeSlave.devotion = -50>>
+		<<set $activeSlave.trust = -50, $activeSlave.devotion = -50>>
 		<<set $activeSlave.fetish = "mindbroken">>
 		<<set $activeSlave.fetishStrength = 10>>
-		<<set $activeSlave.sexualQuirk = "none">>
-		<<set $activeSlave.behavioralQuirk = "none">>
-		<<set $activeSlave.behavioralFlaw = "none">>
+		<<set $activeSlave.sexualQuirk = "none", $activeSlave.behavioralQuirk = "none", $activeSlave.behavioralFlaw = "none", $activeSlave.sexualFlaw = "none">>
 	<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($activeSlave.devotion < 20)>>
 		<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. $His once magnificent, immense bust has been all but stripped from $him. $His face fills with resentment as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with resentment as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He loved $his enormous breasts, and they were swiped from off $his chest by the person $he was just beginning to entrust $himself to. @@.mediumorchid;$He sees this as a betrayal by you@@. As with all invasive surgery @@.red;$his health has been affected.@@ $He is now @@.gold;terribly afraid@@ that you may chose to steal something else $he loves.
-		<<set $activeSlave.trust -= 40>>
-		<<set $activeSlave.devotion -= 20>>
+		<<set $activeSlave.trust -= 40, $activeSlave.devotion -= 20>>
 	<<elseif ($activeSlave.devotion > 50)>>
 		<<if $activeSlave.amp != 1>>$He hefts $his new, tiny breasts experimentally and turns to you with a smile to show off $his new, slimmer form. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel $his tiny breasts move and turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't bounce too much.<</if>> @@.hotpink;$He's happy with your changes to $his boobs@@ and @@.mediumaquamarine;thankful@@ that you'd consider $his health, well being and ability to fuck. As with all invasive surgery @@.red;$his health has been affected.@@
-		<<set $activeSlave.devotion += 4>>
-		<<set $activeSlave.trust += 4>>
+		<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
 		<<if canSee($activeSlave)>>$He eyes $his new, tiny breasts with appreciation<<else>>$He attempts to sway $his big tits experimentally, only to find $his chest barely moves at all<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, but $he expected something other than this when $he was sent to the surgery. $He isn't much affected mentally. As with all invasive surgery @@.red;$his health has been affected.@@ $He is @@.mediumaquamarine;thankful@@ that you removed the literal weight off $his chest.
 		<<set $activeSlave.trust += 5>>
 	<<else>>
 		<<if canSee($activeSlave)>>$He eyes the sudden lack of $his former breasts with relief<<else>>The sudden lack of weight on $his chest fills $him with relief<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but $he breaths easier without the immense weight hanging from $him.<<else>>$He's still sore, so $he keeps $his torso still, but $he breaths easier without the immense weight hanging from $him.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.hotpink;$he seems appreciative of this literal weight lifted from $his chest@@ and @@.mediumaquamarine;is thankful for your consideration of $his health@@. As with all invasive surgery @@.red;$his health has been affected.@@
-		<<set $activeSlave.trust += 10>>
-		<<set $activeSlave.devotion += 5>>
+		<<set $activeSlave.trust += 10, $activeSlave.devotion += 5>>
 	<</if>>
 
 <<case "mastectomy">>
@@ -679,108 +684,108 @@ As the remote surgery's long recovery cycle completes,
 		The breast reduction surgery also @@.orange;slightly reduces $his massive nipples.@@
 		<<set $activeSlave.nipples = "puffy">>
 	<<elseif $activeSlave.nipples == "fuckable">>
-		Without the tissue needed to support their unusual shape, her fuckable nipples have reverted @@.orange;to being huge and protruding.@@
+		Without the tissue needed to support their unusual shape, $his fuckable nipples have reverted @@.orange;to being huge and protruding.@@
 		<<set $activeSlave.nipples = "huge">>
 	<</if>>
-	<<if ($activeSlave.sexualFlaw == "breast growth")>>
-		<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. $His once glorious bust has been all but stripped from $him. $His face fills with disbelief as $his flatness dawns on her<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with disbelief as $his flatness dawns on her<</if>>. <<if $activeSlave.amp != 1>>$His hands immediately dart to grope $his tits, but $he only ends up grabbing air. $His face twitches, her mind unable to comprehend why this has happened to $him. $His hands fall to her sides as her will breaks.<<else>> $He tries to squirm, and finds $he is no longer pinned by $his tits. $His face twitches, her mind unable to comprehend why this has happened to $him. $He sobs once as her will to go on breaks apart.<</if>> $He loved $his huge breasts, and now that they are gone, $he has nothing to live for. @@.red;Your theft of $his obsession has broken her mind@@. As with all invasive surgery @@.red;$his health has been affected.@@
-		<<set $activeSlave.trust = -50>>
-		<<set $activeSlave.devotion = -50>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He shows little awareness that $his breasts are gone. As with all invasive surgery @@.red;$his health has been affected.@@
+	<<elseif ($activeSlave.sexualFlaw == "breast growth")>>
+		<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. $His once glorious bust has been all but stripped from $him. $His face fills with disbelief as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with disbelief as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$His hands immediately dart to grope $his tits, but $he only ends up grabbing air. $His face twitches, $his mind unable to comprehend why this has happened to $him. $His hands fall to $his sides as $his will breaks.<<else>> $He tries to squirm, and finds $he is no longer pinned by $his tits. $His face twitches, $his mind unable to comprehend why this has happened to $him. $He sobs once as $his will to go on breaks apart.<</if>> $He loved $his huge breasts, and now that they are gone, $he has nothing to live for. @@.red;Your theft of $his obsession has broken $his mind@@. As with all invasive surgery @@.red;$his health has been affected.@@
+		<<set $activeSlave.trust = -50, $activeSlave.devotion = -50>>
 		<<set $activeSlave.fetish = "mindbroken">>
 		<<set $activeSlave.fetishStrength = 10>>
-		<<set $activeSlave.sexualQuirk = "none">>
-		<<set $activeSlave.behavioralQuirk = "none">>
-		<<set $activeSlave.behavioralFlaw = "none">>
+		<<set $activeSlave.sexualQuirk = "none", $activeSlave.behavioralQuirk = "none", $activeSlave.behavioralFlaw = "none", $activeSlave.sexualFlaw = "none">>
 	<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($activeSlave.devotion < 20)>>
-		<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. $His once magnificent bust has been all but stripped from $him. $His face fills with resentment as $his flatness dawns on her<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with resentment as $his flatness dawns on her<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<</if>> $He loved $his huge breasts, and they were swiped from off $his chest by the person $he was just beginning to entrust $himself to. @@.mediumorchid;$He sees this as a betrayal by you@@. As with all invasive surgery @@.red;$his health has been affected.@@ $He is now @@.gold;terribly afraid@@ that you may chose to steal something else $he loves.
-		<<set $activeSlave.trust -= 40>>
-		<<set $activeSlave.devotion -= 20>>
+		<<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. $His once magnificent bust has been all but stripped from $him. $His face fills with resentment as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with resentment as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He loved $his huge breasts, and they were swiped from off $his chest by the person $he was just beginning to entrust $himself to. @@.mediumorchid;$He sees this as a betrayal by you@@. As with all invasive surgery @@.red;$his health has been affected.@@ $He is now @@.gold;terribly afraid@@ that you may chose to steal something else $he loves.
+		<<set $activeSlave.trust -= 40, $activeSlave.devotion -= 20>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		<<if $activeSlave.amp != 1>>$He hefts her new, tiny breasts experimentally and turns to you with a smile to show off her new, slimmer form. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel her tiny breasts move and turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't bounce too much.<</if>> @@.hotpink;$He's happy with your changes to $his boobs.@@ As with all invasive surgery @@.red;$his health has been affected.@@
+		<<if $activeSlave.amp != 1>>$He hefts $his new, tiny breasts experimentally and turns to you with a smile to show off $his new, slimmer form. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel $his tiny breasts move and turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't bounce too much.<</if>> @@.hotpink;$He's happy with your changes to $his boobs.@@ As with all invasive surgery @@.red;$his health has been affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		<<if canSee($activeSlave)>>$He eyes her new, tiny breasts skeptically<<else>>$He attempts to sway her big tits experimentally, only to find $his chest barely moves at all<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, but $he expected something other than this when $he was sent to the surgery. $He isn't much affected mentally. As with all invasive surgery @@.red;$his health has been affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		<<if canSee($activeSlave)>>$He eyes $his new, tiny breasts skeptically<<else>>$He attempts to sway $his big tits experimentally, only to find $his chest barely moves at all<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, but $he expected something other than this when $he was sent to the surgery. $He isn't much affected mentally. As with all invasive surgery @@.red;$his health has been affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		<<if canSee($activeSlave)>>$He eyes the sudden lack of her former breasts with resentment<<else>>The sudden lack of weight on $his chest fills $him with resentment<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this surgical theft as a cruel imposition@@. As with all invasive surgery @@.red;$his health has been affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		<<if canSee($activeSlave)>>$He eyes the sudden lack of $his former breasts with resentment<<else>>The sudden lack of weight on $his chest fills $him with resentment<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this surgical theft as a cruel imposition@@. As with all invasive surgery @@.red;$his health has been affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "breastShapePreservation">>
 	$He notices almost immediately the immense soreness in $his breasts. $He can't find anything off about them, but $he knows you did something to them. As with all surgery @@.red;$his health has been slightly affected.@@
 
 <<case "breastLift">>
-	<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-		<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's playing with her new, perkier breasts despite the pain.<<else>>$He's barely out of the surgery before $he's rubbing her new, perkier breasts against anything $he can reach, despite the pain.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as her primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 4>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		The changes to $his breasts are lost on $him. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+		<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's playing with $his new, perkier breasts despite the pain.<<else>>$He's barely out of the surgery before $he's rubbing $his new, perkier breasts against anything $he can reach, despite the pain.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as $his primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		<<if $activeSlave.amp != 1>>$He runs her hands over her perkier breasts experimentally and turns to you with a smile to show them off. $He's still sore, so $he doesn't touch them much, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel her perkier tits move before $he turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't move too violently, but $he wiggles $himself a little to show off.<</if>> @@.hotpink;$He's thrilled that you firmed up $his breasts.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		<<if $activeSlave.amp != 1>>$He runs $his hands over $his perkier breasts experimentally and turns to you with a smile to show them off. $He's still sore, so $he doesn't touch them much, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel $his perkier tits move before $he turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't move too violently, but $he wiggles $himself a little to show off.<</if>> @@.hotpink;$He's thrilled that you firmed up $his breasts.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
 		<<if canSee($activeSlave)>>$He eyes $his new, perkier breasts skeptically<<else>>The cool air flowing over the new location of $his nipples draws a skeptical expression to $his face<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his body still.<</if>> $He's come to terms with the fact that $he's a slave, but $he is @@.hotpink;quite happy@@ you'd take the time to make $his breasts prettier. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body and that this may be only the beginning of extensive breast surgery.
-		<<set $activeSlave.devotion += 3>>
-		<<set $activeSlave.trust -= 5>>
+		<<set $activeSlave.devotion += 3, $activeSlave.trust -= 5>>
 	<<else>>
 		<<if canSee($activeSlave)>>$He eyes $his new, perkier breasts<<else>>The feel of the air running over the new location of $his nipples fills $him<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his body still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. Oddly, @@.hotpink;$he seems to like that $his breasts are no longer saggy@@ despite $his immediate reaction. As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body and fears that this is only the beginning of $his breast surgeries.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion += 2>>
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion += 2>>
 	<</if>>
 
 <<case "breastReconstruction">>
-	<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		The changes to $his breasts are lost on $him. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 		<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's playing with $his new, <<print $activeSlave.boobShape>> breasts despite the pain.<<else>>$He's barely out of the surgery before $he's rubbing $his new, <<print $activeSlave.boobShape>> breasts against anything $he can reach, despite the pain.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as $his primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 4>>
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		<<if $activeSlave.amp != 1>>$He runs her hands over her <<print $activeSlave.boobShape>> breasts experimentally and turns to you with a smile to show them off. $He's still sore, so $he doesn't touch them much, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel her <<print $activeSlave.boobShape>> tits move before $he turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't move too violently, but $he wiggles $himself a little to show off.<</if>> @@.hotpink;$He's happy with your changes to $his breasts.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		<<if $activeSlave.amp != 1>>$He runs $his hands over $his <<print $activeSlave.boobShape>> breasts experimentally and turns to you with a smile to show them off. $He's still sore, so $he doesn't touch them much, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel $his <<print $activeSlave.boobShape>> tits move before $he turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't move too violently, but $he wiggles $himself a little to show off.<</if>> @@.hotpink;$He's happy with your changes to $his breasts.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		<<if canSee($activeSlave)>>$He eyes her new, <<print $activeSlave.boobShape>> breasts skeptically<<else>>The cool air flowing over the new location of $his nipples draws a skeptical expression to her face<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his body still.<</if>> $He's come to terms with the fact that $he's a slave, so $he isn't much affected mentally despite the surprise of having $his breasts reshaped. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		<<if canSee($activeSlave)>>$He eyes $his new, <<print $activeSlave.boobShape>> breasts skeptically<<else>>The cool air flowing over the new location of $his nipples draws a skeptical expression to $his face<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his body still.<</if>> $He's come to terms with the fact that $he's a slave, so $he isn't much affected mentally despite the surprise of having $his breasts reshaped. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		<<if canSee($activeSlave)>>$He eyes her new, <<print $activeSlave.boobShape>> breasts<<else>>The feel of the air running over the new location of $his nipples fills her<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his body still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view her altered breasts as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
+		<<if canSee($activeSlave)>>$He eyes $his new, <<print $activeSlave.boobShape>> breasts<<else>>The feel of the air running over the new location of $his nipples fills $him<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his body still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view $his altered breasts as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 10>>
 	<</if>>
 
 <<case "lactation">>
-	<<if ($activeSlave.devotion > 50)>>
-		<<if $activeSlave.amp != 1>>$He hefts her swollen breasts experimentally and turns to you with a smile to show them off. As $he does, a drop of milk drips from a nipple and $he gasps in surprise. $He's shocked, but after tasting her own milk experimentally $he <<if canSee($activeSlave)>>looks<<else>>smiles<</if>> at you shyly and gently teases some more milk out of $himself. The resulting stream of cream is bountiful and $he giggles happily.<<else>>As you carry her out of the surgery, droplets of milk begin to bud from $his nipples, and $he giggles giddily.<</if>> @@.hotpink;$He's happy with your changes to $his boobs.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He notices almost immediately that $his breasts feel fuller, gasping as milk begins to leak from $his nipples. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		<<if $activeSlave.amp != 1>>$He hefts $his swollen breasts experimentally and turns to you with a smile to show them off. As $he does, a drop of milk drips from a nipple and $he gasps in surprise. $He's shocked, but after tasting $his own milk experimentally $he <<if canSee($activeSlave)>>looks<<else>>smiles<</if>> at you shyly and gently teases some more milk out of $himself. The resulting stream of cream is bountiful and $he giggles happily.<<else>>As you carry $him out of the surgery, droplets of milk begin to bud from $his nipples, and $he giggles giddily.<</if>> @@.hotpink;$He's happy with your changes to $his boobs.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		<<if $activeSlave.amp != 1>><<if canSee($activeSlave)>>$He eyes her swollen breasts skeptically<<else>>$He is skeptical of the how swollen $his breasts feel<</if>>. $He's still sore, so $he doesn't touch them. Even so, a drop of milk drips from a nipple and $he gasps in surprise. $He's shocked, but after a few experimental pokes and rubs at $himself $he seems to understand that $he's a lactation slave now, and that's how it is.<<else>>As you carry her out of the surgery, droplets of milk begin to bud from $his nipples. $He's shocked, but $he seems to understand that $he's a lactation slave now, and that's how it is.<</if>> $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		<<if $activeSlave.amp != 1>><<if canSee($activeSlave)>>$He eyes $his swollen breasts skeptically<<else>>$He is skeptical of the how swollen $his breasts feel<</if>>. $He's still sore, so $he doesn't touch them. Even so, a drop of milk drips from a nipple and $he gasps in surprise. $He's shocked, but after a few experimental pokes and rubs at $himself $he seems to understand that $he's a lactation slave now, and that's how it is.<<else>>As you carry $him out of the surgery, droplets of milk begin to bud from $his nipples. $He's shocked, but $he seems to understand that $he's a lactation slave now, and that's how it is.<</if>> $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		<<if canSee($activeSlave)>>$He eyes her swollen breasts<<else>>As $he feels the fullness in $his breasts, her face fills<</if>> with resentment. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. When $he finally figures out $he's lactating, $he breaks down in rage and unhappiness, dripping milk and bitter tears. For now, @@.mediumorchid;$he seems to view being a lactation slave as a cruel hardship.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		<<if canSee($activeSlave)>>$He eyes $his swollen breasts<<else>>As $he feels the fullness in $his breasts, $his face fills<</if>> with resentment. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. When $he finally figures out $he's lactating, $he breaks down in rage and unhappiness, dripping milk and bitter tears. For now, @@.mediumorchid;$he seems to view being a lactation slave as a cruel hardship.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "endlac">>
-	$He notices almost immediately that the soreness that used to tell her $he needed to be milked has gone. $He bounces $his breasts idly; it looks like $he doesn't know what to think about having her lactation dry up. As with all surgery @@.red;$his health has been slightly affected.@@
+	$He notices almost immediately that the soreness that used to tell $him $he needed to be milked has gone. $He bounces $his breasts idly; it looks like $he doesn't know what to think about having $his lactation dry up. As with all surgery @@.red;$his health has been slightly affected.@@
 	<<if $activeSlave.assignment == "get milked">>
 		@@.yellow;$His assignment has defaulted to rest.@@
 		<<= removeJob($activeSlave, $activeSlave.assignment)>>
 	<</if>>
 
 <<case "precum">>
-	$His groin is a little sore, and $he examines it closely, but $he can't find much difference. Near the end of her close inspection of her own private parts, though, $he happens to stimulate $himself, unintentionally, and just a little. That's enough. $He begins to leak precum, and it doesn't stop until her confusion snuffs out the slight arousal that got it started.
-	<<if $activeSlave.devotion > 50>>
-		@@.hotpink;$He's delighted.@@ $He's such a good sex slave that the lewdness of making extra fluid when $he's ready to fuck is exciting to $him. That, and extra lubrication is always welcome.
-		<<if $activeSlave.dick > 2>>One of the first things $he tries is guiding her flaccid dick back to apply some to her asspussy. It works, to her naughty satisfaction.<</if>>
-		<<set $activeSlave.devotion += 4>>
-	<<elseif $activeSlave.devotion >= -20>>
-		$He obviously doesn't know what to think at first. $He does her best not to make a mess, and is mostly successful, but $he's realizing that this is going to be somewhat inconvenient. Still, having such a lewd change made to $his body affects her feelings towards you; $he is @@.gold;sensibly fearful@@ of your total power over $him.
-		<<set $activeSlave.trust -= 5>>
-	<<else>>
-		$He feared the worst when $he realized that something had been done to her down there, and $he's initially relieved to find that $he's intact and apparently functional. But $he's been invaded in an extremely personal way, and @@.mediumorchid;resents having you tamper with her private parts.@@ Furthermore, $he is @@.gold;sensibly fearful@@ of your total power over $him.
-		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
+	$His groin is a little sore, and $he examines it closely, but $he can't find much difference. Near the end of $his close inspection of $his own private parts, though, $he happens to stimulate $himself, unintentionally, and just a little. That's enough. $He begins to leak precum, and it doesn't stop until $his confusion snuffs out the slight arousal that got it started.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion > 50>>
+			@@.hotpink;$He's delighted.@@ $He's such a good sex slave that the lewdness of making extra fluid when $he's ready to fuck is exciting to $him. That, and extra lubrication is always welcome.
+			<<if $activeSlave.dick > 2>>One of the first things $he tries is guiding $his flaccid dick back to apply some to $his asspussy. It works, to $his naughty satisfaction.<</if>>
+			<<set $activeSlave.devotion += 4>>
+		<<elseif $activeSlave.devotion >= -20>>
+			$He obviously doesn't know what to think at first. $He does $his best not to make a mess, and is mostly successful, but $he's realizing that this is going to be somewhat inconvenient. Still, having such a lewd change made to $his body affects $his feelings towards you; $he is @@.gold;sensibly fearful@@ of your total power over $him.
+			<<set $activeSlave.trust -= 5>>
+		<<else>>
+			$He feared the worst when $he realized that something had been done to $him down there, and $he's initially relieved to find that $he's intact and apparently functional. But $he's been invaded in an extremely personal way, and @@.mediumorchid;resents having you tamper with $his private parts.@@ Furthermore, $he is @@.gold;sensibly fearful@@ of your total power over $him.
+			<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
+		<</if>>
 	<</if>>
 	As with all surgery @@.red;$his health has been slightly affected.@@
 
 <<case "endprecum">>
-	$His groin is a little sore, and $he examines it closely, but $he can't find much difference. $His generous production of precum won't tail off for some time, until the slow-release drugs are completely flushed from her system. Even then, the only real change for her will be a little less inconvenience. As with all surgery @@.red;$his health has been slightly affected.@@
+	$His groin is a little sore, and $he examines it closely, but $he can't find much difference. $His generous production of precum won't tail off for some time, until the slow-release drugs are completely flushed from $his system. Even then, the only real change for $him will be a little less inconvenience. As with all surgery @@.red;$his health has been slightly affected.@@
 
 <<case "vasectomy">>
 	$His groin is a little sore, and $he examines it closely, but $he can't find much difference. $He likely won't realize what happened, but may piece things together when $he realizes the girls $he fucks never get pregnant. As with all surgery @@.red;$his health has been slightly affected.@@
@@ -789,98 +794,111 @@ As the remote surgery's long recovery cycle completes,
 	$His groin is a little sore, and $he examines it closely, but $he can't find much difference. $He likely won't ever realize what happened until $he gets a girl pregnant. As with all surgery @@.red;$his health has been slightly affected.@@
 	
 <<case "ejaculation">>
-	$His groin is a little sore, and $he examines it closely, finding it slightly swollen. Near the end of her close inspection of her own private parts, though, $he happens to stimulate $himself, unintentionally, and just a little. That's enough. $He begins to leak excessive precum, as usual, but a distinct pressure begins building in her loins. $He groans as the swelling rises before bucking and orgasming uncontrollably, coating $himself and the bed in a layer of fluid.
-	<<if $activeSlave.devotion > 50>>
-		@@.hotpink;$He's delighted.@@ $He's such a good sex slave that the lewdness of extra large ejaculations is exciting to $him. That, and the extra length of her climax wasn't bad either.
-		<<set $activeSlave.devotion += 4>>
-	<<elseif $activeSlave.devotion >= -20>>
-		$He obviously doesn't know what to think at first. Just brushing her private parts resulted in a huge mess, a somewhat exciting prospect, but $he's realizing that this is going to be rather inconvenient, if not moist. Still, having such a lewd change made to $his body affects her feelings towards you; $he is @@.gold;sensibly fearful@@ of your total power over $him.
-		<<set $activeSlave.trust -= 5>>
-	<<else>>
-		$He feared the worst when $he realized that something had been done to her down there, and $he's initially relieved to find that $he's intact and apparently functional. But $he's been invaded in an extremely personal way, and @@.mediumorchid;resents having you tamper with her private parts.@@ Furthermore, $he is @@.gold;sensibly fearful@@ of your total power over $him.
-		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
+	$His groin is a little sore, and $he examines it closely, finding it slightly swollen. Near the end of $his close inspection of $his own private parts, though, $he happens to stimulate $himself, unintentionally, and just a little. That's enough. $He begins to leak excessive precum, as usual, but a distinct pressure begins building in $his loins. $He groans as the swelling rises before bucking and orgasming uncontrollably, coating $himself and the bed in a layer of fluid.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion > 50>>
+			@@.hotpink;$He's delighted.@@ $He's such a good sex slave that the lewdness of extra large ejaculations is exciting to $him. That, and the extra length of $his climax wasn't bad either.
+			<<set $activeSlave.devotion += 4>>
+		<<elseif $activeSlave.devotion >= -20>>
+			$He obviously doesn't know what to think at first. Just brushing $his private parts resulted in a huge mess, a somewhat exciting prospect, but $he's realizing that this is going to be rather inconvenient, if not moist. Still, having such a lewd change made to $his body affects $his feelings towards you; $he is @@.gold;sensibly fearful@@ of your total power over $him.
+			<<set $activeSlave.trust -= 5>>
+		<<else>>
+			$He feared the worst when $he realized that something had been done to $him down there, and $he's initially relieved to find that $he's intact and apparently functional. But $he's been invaded in an extremely personal way, and @@.mediumorchid;resents having you tamper with $his private parts.@@ Furthermore, $he is @@.gold;sensibly fearful@@ of your total power over $him.
+			<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
+		<</if>>
 	<</if>>
 	As with all surgery @@.red;$his health has been slightly affected.@@
 
 <<case "endejac">>
-	$His groin is a little sore, and $he examines it closely, but $he can't find much difference other than the swelling in $his crotch has gone down. $He'll realize later when her next ejaculation is rather underwhelming from what $he has become accustomed to. As with all surgery @@.red;$his health has been slightly affected.@@
+	$His groin is a little sore, and $he examines it closely, but $he can't find much difference other than the swelling in $his crotch has gone down. $He'll realize later when $his next ejaculation is rather underwhelming from what $he has become accustomed to. As with all surgery @@.red;$his health has been slightly affected.@@
 
 <<case "scarRemov">>
-	Even though removing scars is a trivial process, @@.red;$his health has been slightly affected@@. When $he exits the room, $he feels that most of her skin is numb, and $he is @@.hotpink;happy@@ when $he finds her scars have been removed.
-	<<set $activeSlave.devotion += 2>>
+	Even though removing scars is a trivial process, @@.red;$his health has been slightly affected@@.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		When $he exits the room, $he feels that most of $his skin is numb, and $he is @@.hotpink;happy@@ when $he finds $his scars have been removed.
+		<<set $activeSlave.devotion += 2>>
+	<</if>>
 
 <<case "scarFear">>
-	Even though creating an artificial scar is a trivial process, @@.red;$his health has been slightly affected@@. When $he exits the room, $he feels that her face is numb, 
-	<<if $activeSlave.ID == $Bodyguard.ID>>
-		<<if canSee($activeSlave)>>throwing a glance at the mirror, $he frightens $himself<<else>> upon hearing of her new scar<</if>>, but is @@.hotpink;happier@@ with her new look and @@.mediumaquamarine;more confident@@ that $he's the girl for the job.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
-	<<elseif $activeSlave.devotion > 20>>
-		and <<if canSee($activeSlave)>>looking at the mirror<<else>>being informed of her new look<</if>>, $he is both @@.gold;quite frightened@@ by her new face, yet @@.hotpink;hopeful@@ you'll be happy with her new look.
-		<<set $activeSlave.devotion += 2>>
-		<<set $activeSlave.trust -= 2>>
-	<<else>>
-		and, when <<if canSee($activeSlave)>>$he looks at $himself in the mirror<<else>>is informed of her new look<</if>>, $he is @@.mediumorchid;disgusted@@ by the @@.gold;awful scar@@ $he now bears.
-		<<set $activeSlave.devotion -= 10>>
-		<<set $activeSlave.trust -= 10>>
+	Even though creating an artificial scar is a trivial process, @@.red;$his health has been slightly affected@@.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		When $he exits the room, $he feels that $his face is numb, 
+		<<if $activeSlave.ID == $Bodyguard.ID>>
+			<<if canSee($activeSlave)>>throwing a glance at the mirror, $he frightens $himself<<else>> upon hearing of $his new scar<</if>>, but is @@.hotpink;happier@@ with $his new look and @@.mediumaquamarine;more confident@@ that $he's the girl for the job.
+			<<set $activeSlave.devotion += 5>>
+			<<set $activeSlave.trust += 5>>
+		<<elseif $activeSlave.devotion > 20>>
+			and <<if canSee($activeSlave)>>looking at the mirror<<else>>being informed of $his new look<</if>>, $he is both @@.gold;quite frightened@@ by $his new face, yet @@.hotpink;hopeful@@ you'll be happy with $his new look.
+			<<set $activeSlave.devotion += 2>>
+			<<set $activeSlave.trust -= 2>>
+		<<else>>
+			and, when <<if canSee($activeSlave)>>$he looks at $himself in the mirror<<else>>is informed of $his new look<</if>>, $he is @@.mediumorchid;disgusted@@ by the @@.gold;awful scar@@ $he now bears.
+			<<set $activeSlave.devotion -= 10>>
+			<<set $activeSlave.trust -= 10>>
+		<</if>>
 	<</if>>
 
 <<case "scarExo">>
-	Even though creating an artificial scar is a trivial process, @@.red;$his health has been slightly affected@@. When $he exits the room, $he feels that her face is numb, 
-	<<if $activeSlave.devotion > 50>>
-		$he <<if canSee($activeSlave)>>throws a glance at the mirror<<else>>listens closely to your description<</if>>, and seems to be @@.hotpink;in awe@@ of how much her face has been beautified by a small scar.
-		<<set $activeSlave.devotion += 5>>
-	<<elseif $activeSlave.devotion > 20>>
-		and when $he <<if canSee($activeSlave)>>looks at the mirror<<else>>listens to your description<</if>>, $he seems @@.hotpink;pleased@@ with her new exotic scar.
-		<<set $activeSlave.devotion += 5>>
-	<<else>>
-		and, <<if canSee($activeSlave)>>looking at $himself in the mirror<<else>>listening to the description of her new look<</if>>, $he seems @@.hotpink;thankful@@ for the distinguishing scar, but @@.gold;scared@@ that it might only be some way to brand $him.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust -= 5>>
+	Even though creating an artificial scar is a trivial process, @@.red;$his health has been slightly affected@@.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		When $he exits the room, $he feels that $his face is numb, 
+		<<if $activeSlave.devotion > 50>>
+			$he <<if canSee($activeSlave)>>throws a glance at the mirror<<else>>listens closely to your description<</if>>, and seems to be @@.hotpink;in awe@@ of how much $his face has been beautified by a small scar.
+			<<set $activeSlave.devotion += 5>>
+		<<elseif $activeSlave.devotion > 20>>
+			and when $he <<if canSee($activeSlave)>>looks at the mirror<<else>>listens to your description<</if>>, $he seems @@.hotpink;pleased@@ with $his new exotic scar.
+			<<set $activeSlave.devotion += 5>>
+		<<else>>
+			and, <<if canSee($activeSlave)>>looking at $himself in the mirror<<else>>listening to the description of $his new look<</if>>, $he seems @@.hotpink;thankful@@ for the distinguishing scar, but @@.gold;scared@@ that it might only be some way to brand $him.
+			<<set $activeSlave.devotion += 5>>
+			<<set $activeSlave.trust -= 5>>
+		<</if>>
 	<</if>>
 
 <<case "butt">>
-	<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-		$He gently flexes her sore buttocks with a sigh of pleasure. $He's @@.hotpink;deliriously happy@@ to have a bigger butt, since $he confidently expects that this will mean more cocks being shoved up $his asshole. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 4>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He doesn't notice that $his butt has gotten larger. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+		$He gently flexes $his sore buttocks with a sigh of pleasure. $He's @@.hotpink;deliriously happy@@ to have a bigger butt, since $he confidently expects that this will mean more cocks being shoved up $his asshole. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He rubs her new butt experimentally and turns to you with a smile to show it off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see it from all angles. @@.hotpink;$He's happy with your changes to $his ass.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		$He rubs $his new butt experimentally and turns to you with a smile to show it off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see it from all angles. @@.hotpink;$He's happy with your changes to $his ass.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		<<if canSee($activeSlave)>>$He eyes her new butt<<else>>$He shifts her new butt<</if>> skeptically. $He's still sore, so $he doesn't touch it. $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		<<if canSee($activeSlave)>>$He eyes $his new butt<<else>>$He shifts $his new butt<</if>> skeptically. $He's still sore, so $he doesn't touch it. $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		<<if canSee($activeSlave)>>$He eyes her new butt<<else>>The new weight in her backside fills her<</if>> with resentment. $He's still sore, so $he doesn't touch them, but $he glares daggers. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this fake ass as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		<<if canSee($activeSlave)>>$He eyes $his new butt<<else>>The new weight in $his backside fills $him<</if>> with resentment. $He's still sore, so $he doesn't touch them, but $he glares daggers. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this fake ass as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "buttLoss">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He <<if canSee($activeSlave)>>twists to view<<else>>$He jiggles<</if>> her new, sleeker derriere and turns to you with a smile and a flirty little roll of her hips. $He's still sore, so $he doesn't bounce her tighter buttocks for you, but $he seems happy all the same. @@.hotpink;$He's happy with your changes to $his buttocks.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He doesn't notice that $his butt has gotten smaller. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He <<if canSee($activeSlave)>>twists to view<<else>>$He jiggles<</if>> $his new, sleeker derriere and turns to you with a smile and a flirty little roll of $his hips. $He's still sore, so $he doesn't bounce $his tighter buttocks for you, but $he seems happy all the same. @@.hotpink;$He's happy with your changes to $his buttocks.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He <<if canSee($activeSlave)>>twists to view<<else>>jiggles<</if>> her new, sleeker derriere skeptically. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, but $he expected something other than this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He <<if canSee($activeSlave)>>twists to view<<else>>jiggles<</if>> $his new, sleeker derriere skeptically. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, but $he expected something other than this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		$He shifts her diminished ass with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this surgical ass theft as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		$He shifts $his diminished ass with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this surgical ass theft as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "face">>
 	<<FaceIncrease $activeSlave 20>>
-	<<if ($activeSlave.devotion > 50)>>
-		$He <<if canSee($activeSlave)>>examines her new self in the mirror with approval. $He doesn't recognize $himself quite yet, but s<<else>>listens closely to the description of her new face. S<</if>>he hopes you'll like her new face better and use her more frequently as a result. @@.hotpink;$He's happy with your changes to her face.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He doesn't notice the improvements to $his face, but $he's not the one looking at it. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He <<if canSee($activeSlave)>>examines $his new self in the mirror with approval. $He doesn't recognize $himself quite yet, but s<<else>>listens closely to the description of $his new face. S<</if>>he hopes you'll like $his new face better and use $him more frequently as a result. @@.hotpink;$He's happy with your changes to $his face.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He <<if canSee($activeSlave)>>examines her new self in the mirror with hesitation. $He doesn't recognize $himself quite yet, but s<<else>>listens closely to the description of her new face. S<</if>>he hopes you'll like her new face better and treat her more kindly as a result. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He <<if canSee($activeSlave)>>examines $his new self in the mirror with hesitation. $He doesn't recognize $himself quite yet, but s<<else>>listens closely to the description of $his new face. S<</if>>he hopes you'll like $his new face better and treat $him more kindly as a result. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		$He <<if canSee($activeSlave)>>examines her new self in the mirror with revulsion. $He doesn't recognize $himself quite yet, which s<<else>>listens closely to the description of her new face, which s<</if>>he hates, though $he hopes you'll like her new face better and punish her less cruelly as a result. For now, @@.mediumorchid;$he seems to view this fake face as a cruel imposition.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		$He <<if canSee($activeSlave)>>examines $his new self in the mirror with revulsion. $He doesn't recognize $himself quite yet, which s<<else>>listens closely to the description of $his new face, which s<</if>>he hates, though $he hopes you'll like $his new face better and punish $him less cruelly as a result. For now, @@.mediumorchid;$he seems to view this fake face as a cruel imposition.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "age">>
@@ -895,102 +913,115 @@ As the remote surgery's long recovery cycle completes,
 	<<else>>
 		<<set $activeSlave.visualAge -= 5>>
 	<</if>>
-	<<if ($activeSlave.devotion > 50)>>
-		$He <<if canSee($activeSlave)>>examines her younger self in the mirror with approval. S<<else>>listens closely to the description of her new younger self with approval. S<</if>>he doesn't recognize her youthful yet artificial appearance yet, but $he resolves to back her new appearance up with youthful energy and cheer. @@.hotpink;$He's very happy you used surgery to reverse her apparent aging.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He doesn't notice the improvements to $his face, but $he's not the one looking at it. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He <<if canSee($activeSlave)>>examines $his younger self in the mirror with approval. S<<else>>listens closely to the description of $his new younger self with approval. S<</if>>he doesn't recognize $his youthful yet artificial appearance yet, but $he resolves to back $his new appearance up with youthful energy and cheer. @@.hotpink;$He's very happy you used surgery to reverse $his apparent aging.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 10>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He <<if canSee($activeSlave)>>examines youthful yet artificial appearance in the mirror<<else>>listens to the description of her youthful yet artificial appearance<</if>> with hesitation. The cosmetic surgery is extremely well done, and $he eventually decides that being subjected to surgery without her consent is @@.hotpink;acceptable,@@ if it's being used to make her look so young and pretty. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He <<if canSee($activeSlave)>>examines youthful yet artificial appearance in the mirror<<else>>listens to the description of $his youthful yet artificial appearance<</if>> with hesitation. The cosmetic surgery is extremely well done, and $he eventually decides that being subjected to surgery without $his consent is @@.hotpink;acceptable,@@ if it's being used to make $him look so young and pretty. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<else>>
-		$He <<if canSee($activeSlave)>>examines her youthful yet artificial appearance in the mirror<<else>>listens to the description of her youthful yet artificial appearance<</if>> with confusion. The cosmetic surgery is extremely well done, and $he eventually decides that being subjected to surgery without her consent isn't worth fighting against, if it's being used to make her look younger. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He <<if canSee($activeSlave)>>examines $his youthful yet artificial appearance in the mirror<<else>>listens to the description of $his youthful yet artificial appearance<</if>> with confusion. The cosmetic surgery is extremely well done, and $he eventually decides that being subjected to surgery without $his consent isn't worth fighting against, if it's being used to make $him look younger. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<</if>>
 
 <<case "eyeFix">>
-	The laser eye surgery is brief, with @@.red;nothing more than minor health effects.@@ As soon as $he is allowed to open $his eyes and look around, her gaze flicks from object to object with manic speed as $he processes her newly clear vision. Seeing the world as it is without glasses or contact lenses is a gift that those who do not need it cannot properly understand.
-	<<set $activeSlave.devotion += 5>>
-	<<set $activeSlave.trust += 5>>
-	<<if ($activeSlave.devotion > 50)>>
-		$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
-	<<elseif ($activeSlave.devotion >= -20)>>
-		$He accepted you as her owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
-	<<else>>
-		$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+	The laser eye surgery is brief, with @@.red;nothing more than minor health effects.@@ As soon as $he is allowed to open $his eyes and look around, $his gaze flicks from object to object with manic speed as $he processes $his newly clear vision. Seeing the world as it is without glasses or contact lenses is a gift that those who do not need it cannot properly understand.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<<if ($activeSlave.devotion > 50)>>
+			$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
+		<<elseif ($activeSlave.devotion >= -20)>>
+			$He accepted you as $his owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
+		<<else>>
+			$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+		<</if>>
 	<</if>>
 
 <<case "eyeBlur">>
-	The laser eye surgery is brief, with @@.red;nothing more than minor health effects.@@ As soon as $he is allowed to open $his eyes and look around, $he begins to glance back and forth frantically, not immediately understanding that this blurred world is her new reality.
-	<<if ($activeSlave.devotion > 50)>>
-		When $he finally figures it out, $he begins to weep, not understanding why it's necessary that $he not be able to see clearly. After a short cry that trails off into a few sniffles, $he carries on.
-	<<elseif ($activeSlave.devotion > 20)>>
-		When $he finally figures it out, $he begins to bawl, not understanding what $he did to earn this. After a short expurgation of @@.gold;grief and terror,@@ $he takes a deep breath and visibly suppresses her emotions.
-		<<set $activeSlave.trust -= 5>>
-	<<else>>
-		When $he realizes what's happened, her face @@.mediumorchid;clouds with rage.@@ Reflexively, $he begins to peer around, looking for the source of her woes. $He finally understands the true import of blurred vision when $he has trouble telling if anyone's close, and begins to @@.gold;shake with fear.@@
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+	The laser eye surgery is brief, with @@.red;nothing more than minor health effects.@@ As soon as $he is allowed to open $his eyes and look around, $he begins to glance back and forth frantically, not immediately understanding that this blurred world is $his new reality.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if ($activeSlave.devotion > 50)>>
+			When $he finally figures it out, $he begins to weep, not understanding why it's necessary that $he not be able to see clearly. After a short cry that trails off into a few sniffles, $he carries on.
+		<<elseif ($activeSlave.devotion > 20)>>
+			When $he finally figures it out, $he begins to bawl, not understanding what $he did to earn this. After a short expurgation of @@.gold;grief and terror,@@ $he takes a deep breath and visibly suppresses $his emotions.
+			<<set $activeSlave.trust -= 5>>
+		<<else>>
+			When $he realizes what's happened, $his face @@.mediumorchid;clouds with rage.@@ Reflexively, $he begins to peer around, looking for the source of $his woes. $He finally understands the true import of blurred vision when $he has trouble telling if anyone's close, and begins to @@.gold;shake with fear.@@
+			<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
+		<</if>>
 	<</if>>
 	
 <<case "earFix">>
-	The inner ear surgery is brief, with @@.red;nothing more than minor health effects.@@ As soon as $he is allowed to open $his eyes and look around, her gaze flicks from object to object with manic speed as $he processes her newly clear vision. Hearing the world as it is without hearing aids is a gift that those who do not need it cannot properly understand.
-	<<set $activeSlave.devotion += 5>>
-	<<set $activeSlave.trust += 5>>
-	<<if ($activeSlave.devotion > 50)>>
-		$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
-	<<elseif ($activeSlave.devotion >= -20)>>
-		$He accepted you as her owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
-	<<else>>
-		$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
-	<</if>>
+	The inner ear surgery is brief, with @@.red;nothing more than minor health effects.@@ As soon as $he is allowed to open $his eyes and look around, $his gaze flicks from object to object with manic speed as $he processes $his newly clear vision. Hearing the world as it is without hearing aids is a gift that those who do not need it cannot properly understand.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<<if ($activeSlave.devotion > 50)>>
+			$He loved you before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
+		<<elseif ($activeSlave.devotion >= -20)>>
+			$He accepted you as $his owner before, but $he's @@.hotpink;very grateful,@@ and @@.mediumaquamarine;more trusting,@@ too.
+		<<else>>
+			$He hardly knows what to make of this wonderful present from someone $he hates, and struggles with suspicion that the gift conceals some sort of snare. After a while, though, $he accepts that you @@.hotpink;truly did help $him,@@ and @@.mediumaquamarine;might be trustworthy.@@
+		<</if>>
+	<</if>>
 
 <<case "earMuffle">>
-	The inner ear surgery is brief, with @@.red;nothing more than minor health effects.@@ As soon as $he is allowed to open $his eyes and look around, $he begins to glance back and forth frantically, not immediately understanding that this muffled world is her new reality.
-	<<if ($activeSlave.devotion > 50)>>
-		When $he finally figures it out, $he begins to weep, not understanding why it's necessary that $he not be able to see clearly. After a short cry that trails off into a few sniffles, $he carries on.
-	<<elseif ($activeSlave.devotion > 20)>>
-		When $he finally figures it out, $he begins to bawl, not understanding what $he did to earn this. After a short expurgation of @@.gold;grief and terror,@@ $he takes a deep breath and visibly suppresses her emotions.
-		<<set $activeSlave.trust -= 5>>
-	<<else>>
-		When $he realizes what's happened, her face @@.mediumorchid;clouds with rage.@@ Reflexively, $he begins to peer around, looking for the source of her woes. $He finally understands the true import of blurred vision when $he has trouble telling if anyone's close, and begins to @@.gold;shake with fear.@@
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+	The inner ear surgery is brief, with @@.red;nothing more than minor health effects.@@ As soon as $he is allowed to open $his eyes and look around, $he begins to glance back and forth frantically, not immediately understanding that this muffled world is $his new reality.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if ($activeSlave.devotion > 50)>>
+			When $he finally figures it out, $he begins to weep, not understanding why it's necessary that $he not be able to see clearly. After a short cry that trails off into a few sniffles, $he carries on.
+		<<elseif ($activeSlave.devotion > 20)>>
+			When $he finally figures it out, $he begins to bawl, not understanding what $he did to earn this. After a short expurgation of @@.gold;grief and terror,@@ $he takes a deep breath and visibly suppresses $his emotions.
+			<<set $activeSlave.trust -= 5>>
+		<<else>>
+			When $he realizes what's happened, $his face @@.mediumorchid;clouds with rage.@@ Reflexively, $he begins to peer around, looking for the source of $his woes. $He finally understands the true import of blurred vision when $he has trouble telling if anyone's close, and begins to @@.gold;shake with fear.@@
+			<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
+		<</if>>
 	<</if>>
 
 <<case "race">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He <<if canSee($activeSlave)>>examines her new self in the mirror<<else>>listens to the description of her new self<</if>> with approval. $He doesn't recognize $himself quite yet, but $he hopes you'll like her new appearance better and use her more frequently as a result. @@.hotpink;$He's happy with your changes to her racial appearance.@@ As with all invasive surgery @@.red;$his health has been affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		<<if canSee($activeSlave)>>
+			$He pauses when $he sees the changes to $his body, unable to comprehend them.
+		<<else>>
+			$He can't discern the changes to $his race and likely never will.
+		<</if>>
+		As with all invasive surgery @@.red;$his health has been affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He <<if canSee($activeSlave)>>examines $his new self in the mirror<<elseif canHear($activeSlave)>>listens to the description of $his new self<<else>>gets a feel for the changes to $his body<</if>> with approval. <<if ($activeSlave.race == $activeSlave.origRace)>>$He recognizes $himself as $he was, and<<else>>$He doesn't recognize $himself quite yet, but<</if>> $he hopes you'll like $his new appearance better and use $him more frequently as a result. @@.hotpink;$He's happy with your changes to $his racial appearance.@@ As with all invasive surgery @@.red;$his health has been affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He <<if canSee($activeSlave)>>examines her new self in the mirror<<else>>listens to the description of her new self<</if>> with hesitation. $He doesn't recognize $himself quite yet, but $he hopes you'll like her new appearance better and treat her more kindly as a result. As with all invasive surgery @@.red;$his health has been affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He <<if canSee($activeSlave)>>examines $his new self in the mirror<<elseif canHear($activeSlave)>>listens to the description of $his new self<<else>>gets a feel for the changes to $his body<</if>> with hesitation. <<if ($activeSlave.race == $activeSlave.origRace)>>$He recognizes $himself as $he was, and<<else>>$He doesn't recognize $himself quite yet, but<</if>> $he hopes you'll like $his new appearance better and treat $him more kindly as a result. As with all invasive surgery @@.red;$his health has been affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		$He <<if canSee($activeSlave)>>examines her new self in the mirror<<else>>listens to the description of her new self<</if>> with revulsion. $He doesn't recognize $himself quite yet, which $he hates, though $he hopes you'll like her new appearance better and punish her less cruelly as a result. For now, @@.mediumorchid;$he seems to view this fake racial appearance as a cruel imposition.@@ As with all invasive surgery @@.red;$his health has been affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		$He <<if canSee($activeSlave)>>examines $his new self in the mirror<<elseif canHear($activeSlave)>>listens to the description of $his new self<<else>>gets a feel for the changes to $his body<</if>> with revulsion. <<if ($activeSlave.race == $activeSlave.origRace)>>$He recognizes $himself as $he was, which $he loves, and<<else>>$He doesn't recognize $himself quite yet, which $he hates, though<</if>> $he hopes you'll like $his new appearance better and punish $him less cruelly as a result. For now, @@.mediumorchid;$he seems to view this <<if ($activeSlave.race != $activeSlave.origRace)>>fake<</if>> racial appearance as a cruel imposition.@@ As with all invasive surgery @@.red;$his health has been affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
-
+	
 <<case "lips">>
-	<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-		$He licks her new lips experimentally but doesn't lose much time before turning to you with her mouth open and ready. $He's still sore, so $he's careful, but $he runs her wet tongue over her lips, already panting at the thought of sucking dick. If $he had much in the way of oral skills, @@.red;they've likely suffered.@@ @@.hotpink;$He's happy with your changes to her lips,@@ so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 4>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He vaguely realizes $his mouth doesn't move as well as it used to. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+		$He licks $his new lips experimentally but doesn't lose much time before turning to you with $his mouth open and ready. $He's still sore, so $he's careful, but $he runs $his wet tongue over $his lips, already panting at the thought of sucking dick. If $he had much in the way of oral skills, @@.red;they've likely suffered.@@ @@.hotpink;$He's happy with your changes to $his lips,@@ so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 		<<if $activeSlave.oralSkill > 10>>
 			<<set $activeSlave.oralSkill -= 10>>
 		<</if>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He puckers her new lips experimentally and turns to you with a smile to show them off. $He's still sore, so $he's careful as $he blows you an awkward kiss. If $he had much in the way of oral skills, @@.red;they've likely suffered.@@ @@.hotpink;$He's happy with your changes to her lips.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		$He puckers $his new lips experimentally and turns to you with a smile to show them off. $He's still sore, so $he's careful as $he blows you an awkward kiss. If $he had much in the way of oral skills, @@.red;they've likely suffered.@@ @@.hotpink;$He's happy with your changes to $his lips.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 		<<if $activeSlave.oralSkill > 10>>
 			<<set $activeSlave.oralSkill -= 10>>
 		<</if>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He <<if canSee($activeSlave)>>eyes<<else>>puckers<</if>> her new lips skeptically. $He's still sore, so $he doesn't touch them. $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally, @@.red;but if $he had much in the way of oral skills, they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He <<if canSee($activeSlave)>>eyes<<else>>puckers<</if>> $his new lips skeptically. $He's still sore, so $he doesn't touch them. $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally, @@.red;but if $he had much in the way of oral skills, they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 		<<if $activeSlave.oralSkill > 10>>
 			<<set $activeSlave.oralSkill -= 10>>
 		<</if>>
 	<<else>>
-		$He <<if canSee($activeSlave)>>eyes<<else>>puckers<</if>> her new lips with resentment. $He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. If $he had much in the way of oral skills, @@.red;they've likely suffered.@@ For now, @@.mediumorchid;$he seems to view these fake lips as a cruel imposition.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		$He <<if canSee($activeSlave)>>eyes<<else>>puckers<</if>> $his new lips with resentment. $He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. If $he had much in the way of oral skills, @@.red;they've likely suffered.@@ For now, @@.mediumorchid;$he seems to view these fake lips as a cruel imposition.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 10>>
 		<<set $activeSlave.devotion -= 5>>
 		<<if $activeSlave.oralSkill > 10>>
@@ -999,25 +1030,26 @@ As the remote surgery's long recovery cycle completes,
 	<</if>>
 
 <<case "liposuction">>
-	<<if ($activeSlave.behavioralFlaw == "anorexic")>>
-		<<if canSee($activeSlave)>>$He looks over her new thin figure experimentally<<else>>$He shifts her weight experimentally<</if>> and turns to you with a smile to show it off. As an anorexic @@.hotpink;$he thinks you have brought her closer to the true ideal.@@ As with all surgeries, @@.red;$his health has been affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He notices that $he is quite lighter than $he used to be. As with all surgeries, @@.red;$his health has been affected.@@
+	<<elseif ($activeSlave.behavioralFlaw == "anorexic")>>
+		<<if canSee($activeSlave)>>$He looks over $his new thin figure experimentally<<else>>$He shifts $his weight experimentally<</if>> and turns to you with a smile to show it off. As an anorexic @@.hotpink;$he thinks you have brought $him closer to the true ideal.@@ As with all surgeries, @@.red;$his health has been affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		<<if canSee($activeSlave)>>$He looks over her new thin figure experimentally<<else>>$He shifts her weight experimentally<</if>> and turns to you with a smile to show it off. $He's still sore, so $he doesn't bend or flirt, but $he turns around to let you see it from all angles. @@.hotpink;$He's happy with your changes to $his body.@@ As with all surgery @@.red;$his health has been affected.@@
+		<<if canSee($activeSlave)>>$He looks over $his new thin figure experimentally<<else>>$He shifts $his weight experimentally<</if>> and turns to you with a smile to show it off. $He's still sore, so $he doesn't bend or flirt, but $he turns around to let you see it from all angles. @@.hotpink;$He's happy with your changes to $his body.@@ As with all surgery @@.red;$his health has been affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He <<if canSee($activeSlave)>>eyes her new thin figure<<else>>shifts her weight<</if>> skeptically. $He's still sore, so $he doesn't bend or touch $himself. $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He <<if canSee($activeSlave)>>eyes $his new thin figure<<else>>shifts $his weight<</if>> skeptically. $He's still sore, so $he doesn't bend or touch $himself. $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		<<if canSee($activeSlave)>>$He eyes her new thin figure<<else>>How light $he feels fills her<</if>> with resentment. $He's still sore, so $he doesn't bend or touch $himself, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this model figure as a cruel imposition@@. As with all surgery @@.red;$his health has been affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		<<if canSee($activeSlave)>>$He eyes $his new thin figure<<else>>How light $he feels fills $him<</if>> with resentment. $He's still sore, so $he doesn't bend or touch $himself, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this model figure as a cruel imposition@@. As with all surgery @@.red;$his health has been affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 	<<if $activeSlave.weight > 190 && $activeSlave.bellySag < 10>>
-		Due to the tremendous amount of fat removed from her midsection, it sags terribly after the surgery.
+		Due to the tremendous amount of fat removed from $his midsection, it sags terribly after the surgery.
 		<<set $activeSlave.bellySag = 10>>
 	<<elseif $activeSlave.weight > 130 && $activeSlave.bellySag < 5>>
-		Due to the large amount of fat removed from her midsection, it droops noticeably after the surgery.
+		Due to the large amount of fat removed from $his midsection, it droops noticeably after the surgery.
 		<<set $activeSlave.bellySag = 5>>
 	<</if>>
 	<<set $activeSlave.weight = 0>>
@@ -1026,9 +1058,11 @@ As the remote surgery's long recovery cycle completes,
 	<<set $activeSlave.boobs += ($boobFat*100), $activeSlave.butt += ($buttFat)>>
 	<<set $activeSlave.boobs = Math.clamp($activeSlave.boobs, 0, 50000)>>
 	<<set $activeSlave.butt = Math.clamp($activeSlave.butt, 0, 20)>>
-	<<if ($activeSlave.behavioralFlaw == "anorexic")>>
-		<<if canSee($activeSlave)>>$He looks over her new thin figure experimentally<<else>>$He shifts her weight experimentally<</if>> and turns to you with a smile to show it off.
-		As an anorexic @@.hotpink;$he thinks you have brought her closer to the true ideal.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He notices that $his weight is slightly off, almost as if it were someplace else. As with all surgeries, @@.red;$his health has been affected.@@
+	<<elseif ($activeSlave.behavioralFlaw == "anorexic")>>
+		<<if canSee($activeSlave)>>$He looks over $his new thin figure experimentally<<else>>$He shifts $his weight experimentally<</if>> and turns to you with a smile to show it off.
+		As an anorexic @@.hotpink;$he thinks you have brought $him closer to the true ideal.@@
 		<<if $boobFat > 0>>
 			<<if ($activeSlave.areolae < 2)>>
 				<<if (random(1,100) > 70)>>
@@ -1037,24 +1071,24 @@ As the remote surgery's long recovery cycle completes,
 				<</if>>
 			<</if>>
 			<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's playing with her new assets.<<else>>$He's barely out of the surgery before $he's rubbing her new assets against anything $he can reach.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as her primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body.
+				<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's playing with $his new assets.<<else>>$He's barely out of the surgery before $he's rubbing $his new assets against anything $he can reach.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as $his primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body.
 				<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 			<<else>>
-				<<if $activeSlave.amp != 1>>$He hefts her new breasts experimentally and turns to you to show them off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel her new breasts move and turns $his torso to you to show them off. $He's still sore, so $he doesn't move too much, but $he wiggles $himself a little to make them bounce for you.<</if>> $He isn't too fond of her fat being moved to $his breasts instead of removed completely, but it's a small price to pay to not be a blimp.
+				<<if $activeSlave.amp != 1>>$He hefts $his new breasts experimentally and turns to you to show them off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel $his new breasts move and turns $his torso to you to show them off. $He's still sore, so $he doesn't move too much, but $he wiggles $himself a little to make them bounce for you.<</if>> $He isn't too fond of $his fat being moved to $his breasts instead of removed completely, but it's a small price to pay to not be a blimp.
 			<</if>>
 		<</if>>
 		<<if $buttFat > 0>>
 			<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				$He gently flexes her sore buttocks with a sigh of pleasure. $He's @@.hotpink;deliriously happy@@ to have a bigger butt, since $he confidently expects that this will mean more cocks being shoved up $his asshole. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body.
+				$He gently flexes $his sore buttocks with a sigh of pleasure. $He's @@.hotpink;deliriously happy@@ to have a bigger butt, since $he confidently expects that this will mean more cocks being shoved up $his asshole. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body.
 				<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 			<<elseif ($activeSlave.devotion > 50)>>
-				$He rubs her new butt experimentally and turns to you to show it off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see it from all angles. $He isn't too keen on the idea of her fat being moved to $his butt instead of removed completely, but $he accepts that it isn't hanging from her front any longer.
+				$He rubs $his new butt experimentally and turns to you to show it off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see it from all angles. $He isn't too keen on the idea of $his fat being moved to $his butt instead of removed completely, but $he accepts that it isn't hanging from $his front any longer.
 			<</if>>
 		<</if>>
 		As with all surgeries, @@.red;$his health has been affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		<<if canSee($activeSlave)>>$He looks over her new thin figure experimentally<<else>>$He shifts her weight experimentally<</if>> and turns to you with a smile to show it off. $He's still sore, so $he doesn't bend or flirt, but $he turns around to let you see it from all angles. @@.hotpink;$He's happy with your changes to $his body.@@
+		<<if canSee($activeSlave)>>$He looks over $his new thin figure experimentally<<else>>$He shifts $his weight experimentally<</if>> and turns to you with a smile to show it off. $He's still sore, so $he doesn't bend or flirt, but $he turns around to let you see it from all angles. @@.hotpink;$He's happy with your changes to $his body.@@
 		<<if $boobFat > 0>>
 			<<if ($activeSlave.areolae < 2)>>
 				<<if (random(1,100) > 70)>>
@@ -1063,18 +1097,18 @@ As the remote surgery's long recovery cycle completes,
 				<</if>>
 			<</if>>
 			<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's playing with her new assets.<<else>>$He's barely out of the surgery before $he's rubbing her new assets against anything $he can reach.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as her primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body.
+				<<if $activeSlave.amp != 1>>$He's barely out of the surgery before $he's playing with $his new assets.<<else>>$He's barely out of the surgery before $he's rubbing $his new assets against anything $he can reach.<</if>> $He's @@.hotpink;deliriously happy@@ with your changes to what $he thinks of as $his primary sexual organs, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body.
 				<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 			<<elseif ($activeSlave.devotion > 50)>>
-				<<if $activeSlave.amp != 1>>$He hefts her new breasts experimentally and turns to you with a smile to show them off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel her new breasts move and turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't move too much, but $he wiggles $himself a little to make them bounce for you.<</if>>
+				<<if $activeSlave.amp != 1>>$He hefts $his new breasts experimentally and turns to you with a smile to show them off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see them from all angles.<<else>>$He bounces a little to feel $his new breasts move and turns $his torso to you with a smile to show them off. $He's still sore, so $he doesn't move too much, but $he wiggles $himself a little to make them bounce for you.<</if>>
 			<</if>>
 		<</if>>
 		<<if $buttFat > 0>>
 			<<if ($activeSlave.devotion > 20) && ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				$He gently flexes her sore buttocks with a sigh of pleasure. $He's @@.hotpink;deliriously happy@@ to have a bigger butt, since $he confidently expects that this will mean more cocks being shoved up $his asshole. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body.
+				$He gently flexes $his sore buttocks with a sigh of pleasure. $He's @@.hotpink;deliriously happy@@ to have a bigger butt, since $he confidently expects that this will mean more cocks being shoved up $his asshole. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body.
 				<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
 			<<elseif ($activeSlave.devotion > 50)>>
-				$He rubs her new butt experimentally and turns to you with a smile to show it off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see it from all angles.
+				$He rubs $his new butt experimentally and turns to you with a smile to show it off. $He's still sore, so $he doesn't bounce or squeeze, but $he turns from side to side to let you see it from all angles.
 			<</if>>
 		<</if>>
 		As with all surgery @@.red;$his health has been affected.@@
@@ -1087,12 +1121,12 @@ As the remote surgery's long recovery cycle completes,
 					<<set $activeSlave.areolae += 1>>
 				<</if>>
 			<</if>>
-			<<if canSee($activeSlave)>>$He eyes her new breasts<<else>>$He shifts them<</if>> skeptically. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his torso still.<</if>>
+			<<if canSee($activeSlave)>>$He eyes $his new breasts<<else>>$He shifts them<</if>> skeptically. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them.<<else>>$He's still sore, so $he keeps $his torso still.<</if>>
 		<</if>>
 		<<if $buttFat > 0>>
-			<<if canSee($activeSlave)>>$He eyes her new butt<<else>>$He shifts her new butt<</if>> skeptically. $He's still sore, so $he doesn't touch it.
+			<<if canSee($activeSlave)>>$He eyes $his new butt<<else>>$He shifts $his new butt<</if>> skeptically. $He's still sore, so $he doesn't touch it.
 		<</if>>
-		$He <<if canSee($activeSlave)>>eyes her new thin figure<<else>>shifts her weight<</if>> skeptically. $He's still sore, so $he doesn't bend or touch $himself. $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He <<if canSee($activeSlave)>>eyes $his new thin figure<<else>>shifts $his weight<</if>> skeptically. $He's still sore, so $he doesn't bend or touch $himself. $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
 		<<if $boobFat > 0>>
@@ -1102,131 +1136,138 @@ As the remote surgery's long recovery cycle completes,
 					<<set $activeSlave.areolae += 1>>
 				<</if>>
 			<</if>>
-			<<if canSee($activeSlave)>>$He eyes her new breasts<<else>>The new weight on $his chest fills her<</if>> with resentment.
+			<<if canSee($activeSlave)>>$He eyes $his new breasts<<else>>The new weight on $his chest fills $him<</if>> with resentment.
 		<</if>>
 		<<if $buttFat > 0>>
-			<<if canSee($activeSlave)>>$He eyes her new butt<<else>>The new weight in her backside fills her<</if>> with resentment.
+			<<if canSee($activeSlave)>>$He eyes $his new butt<<else>>The new weight in $his backside fills $him<</if>> with resentment.
 		<</if>>
-		<<if canSee($activeSlave)>>$He eyes her new thin figure<<else>>How light $he feels fills her<</if>> with resentment. $He's still sore, so $he doesn't bend or touch $himself, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this model figure as a cruel imposition@@. As with all surgery @@.red;$his health has been affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<if canSee($activeSlave)>>$He eyes $his new thin figure<<else>>How light $he feels fills $him<</if>> with resentment. $He's still sore, so $he doesn't bend or touch $himself, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this model figure as a cruel imposition@@. As with all surgery @@.red;$his health has been affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 15, $activeSlave.devotion -= 5>>
 	<</if>>
 	<<if $activeSlave.weight > 190 && $activeSlave.bellySag < 10>>
-		Due to the tremendous amount of fat removed from her midsection, it sags terribly after the surgery.
+		Due to the tremendous amount of fat removed from $his midsection, it sags terribly after the surgery.
 		<<set $activeSlave.bellySag = 10>>
 	<<elseif $activeSlave.weight > 130 && $activeSlave.bellySag < 5>>
-		Due to the large amount of fat removed from her midsection, it droops noticeably after the surgery.
+		Due to the large amount of fat removed from $his midsection, it droops noticeably after the surgery.
 		<<set $activeSlave.bellySag = 5>>
 	<</if>>
 	<<set $activeSlave.weight = 0, $boobFat = 0, $buttFat = 0, $availabeFat = 0>>
 	
 <<case "lipo">>
-	<<if ($activeSlave.behavioralFlaw == "anorexic")>>
-		<<if canSee($activeSlave)>>$He looks over her new waist experimentally<<else>>$He shifts her weight experimentally<</if>> and turns to you with a smile to show it off. As an anorexic @@.hotpink;$he thinks you have brought her closer to the true ideal.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		While $he notices how sore $his waist is, $he fails to find the reason why. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.behavioralFlaw == "anorexic")>>
+		<<if canSee($activeSlave)>>$He looks over $his new waist experimentally<<else>>$He shifts $his weight experimentally<</if>> and turns to you with a smile to show it off. As an anorexic @@.hotpink;$he thinks you have brought $him closer to the true ideal.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		<<if canSee($activeSlave)>>$He looks over $his new waist experimentally<<else>>$He shifts her weight experimentally<</if>> and turns to you with a smile to show it off. $He's still sore, so $he doesn't bend or flirt, but $he turns around to let you see it from all angles. @@.hotpink;$He's happy with your changes to her waist.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		<<if canSee($activeSlave)>>$He looks over $his new waist experimentally<<else>>$He shifts $his weight experimentally<</if>> and turns to you with a smile to show it off. $He's still sore, so $he doesn't bend or flirt, but $he turns around to let you see it from all angles. @@.hotpink;$He's happy with your changes to $his waist.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He <<if canSee($activeSlave)>>eyes her new waist<<else>>shifts her weight<</if>> skeptically. $He's still sore, so $he doesn't bend or touch $himself. $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He <<if canSee($activeSlave)>>eyes $his new waist<<else>>shifts $his weight<</if>> skeptically. $He's still sore, so $he doesn't bend or touch $himself. $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		<<if canSee($activeSlave)>>$He eyes her new waist<<else>>How light $he feels fills her<</if>> with resentment. $He's still sore, so $he doesn't bend or touch $himself, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this fake figure as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		<<if canSee($activeSlave)>>$He eyes $his new waist<<else>>How light $he feels fills $him<</if>> with resentment. $He's still sore, so $he doesn't bend or touch $himself, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>. $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this fake figure as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "ribs">>
-	<<if ($activeSlave.behavioralFlaw == "anorexic")>>
-		$He's desperately stiff and sore. It takes a good while for $him to figure out what has happened, but eventually her careful investigations discern that the cause of her extremely narrow waist is that her ribcage has been shortened. $He gasps with shock, and when $he <<if canSee($activeSlave)>>looks at you, you see awe in $his eyes<<else>>turns to face you, you see awe on her face<</if>>. As an anorexic @@.hotpink;$he thinks you have brought her closer to the true ideal.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He's desperately stiff and sore. It takes a good while for $him to figure out what has happened, but eventually $his careful investigations discern that the cause is $his new extremely narrow waist. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.behavioralFlaw == "anorexic")>>
+		$He's desperately stiff and sore. It takes a good while for $him to figure out what has happened, but eventually $his careful investigations discern that the cause of $his extremely narrow waist is that $his ribcage has been shortened. $He gasps with shock, and when $he <<if canSee($activeSlave)>>looks at you, you see awe in $his eyes<<else>>turns to face you, you see awe on $his face<</if>>. As an anorexic @@.hotpink;$he thinks you have brought $him closer to the true ideal.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He's desperately stiff and sore. It takes a good while for $him to figure out what has happened, but eventually her careful investigations discern that the cause of her extremely narrow waist is that her ribcage has been shortened. $He gasps with shock, and when $he <<if canSee($activeSlave)>>looks at you, you see awe and fear in $his eyes<<else>>turns to you, you see awe and fear on her face<</if>>. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		$He's desperately stiff and sore. It takes a good while for $him to figure out what has happened, but eventually $his careful investigations discern that the cause of $his extremely narrow waist is that $his ribcage has been shortened. $He gasps with shock, and when $he <<if canSee($activeSlave)>>looks at you, you see awe and fear in $his eyes<<else>>turns to you, you see awe and fear on $his face<</if>>. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
-		$He's desperately stiff and sore. It takes a good while for $him to figure out what has happened, but eventually her careful investigations discern that the cause of her extremely narrow waist is that her ribcage has been shortened. $He gasps with shock, but eventually her shoulders slump and $he tries to carry on. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		$He's desperately stiff and sore. It takes a good while for $him to figure out what has happened, but eventually $his careful investigations discern that the cause of $his extremely narrow waist is that $his ribcage has been shortened. $He gasps with shock, but eventually $his shoulders slump and $he tries to carry on. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<else>>
-		$He's desperately stiff and sore. It takes a good while for $him to figure out what has happened, but eventually her careful investigations discern that the cause of her extremely narrow waist is that her ribcage has been shortened. $He gasps with shock, wobbles a little, gasps with pain at the soreness as $he does, and then manages to hold $himself upright and still as $he sobs. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		$He's desperately stiff and sore. It takes a good while for $him to figure out what has happened, but eventually $his careful investigations discern that the cause of $his extremely narrow waist is that $his ribcage has been shortened. $He gasps with shock, wobbles a little, gasps with pain at the soreness as $he does, and then manages to hold $himself upright and still as $he sobs. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "mtf">>
-	<<if ($activeSlave.devotion > 50)>>
-		Of course, $he already realized while exiting that her genitalia was completely reshaped. As a shemale slave $he knew this day might come, and her face is a strange mix of hope, happiness, satisfaction, and the tiniest tinge of soul-crushing sadness as $he <<if canSee($activeSlave)>>views<<else>>feels<</if>> the vagina that has replaced $his penis. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		Surprisingly, $he already realized while exiting that $his genitalia was completely reshaped. The reasons why are lost to $him, though. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		Of course, $he already realized while exiting that $his genitalia was completely reshaped. As a shemale slave $he knew this day might come, and $his face is a strange mix of hope, happiness, satisfaction, and the tiniest tinge of soul-crushing sadness as $he <<if canSee($activeSlave)>>views<<else>>feels<</if>> the vagina that has replaced $his penis. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
-		Of course, $he already realized while exiting that her genitalia was completely reshaped. As a shemale slave $he knew this day might come, and her face is a strange mix of fear, hope, and resignation as $he <<if canSee($activeSlave)>>views<<else>>feels<</if>> the vagina that has replaced $his penis. Eventually her shoulders slump and $he tries to carry on. @@.mediumorchid;$He will struggle with feelings of confusion and loss.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		Of course, $he already realized while exiting that $his genitalia was completely reshaped. As a shemale slave $he knew this day might come, and $his face is a strange mix of fear, hope, and resignation as $he <<if canSee($activeSlave)>>views<<else>>feels<</if>> the vagina that has replaced $his penis. Eventually $his shoulders slump and $he tries to carry on. @@.mediumorchid;$He will struggle with feelings of confusion and loss.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<<else>>
-		Of course, $he already realized while exiting that her genitalia was completely reshaped. As a shemale slave $he knew this day might come, but expectations and the reality are two different things. $He's beside $himself, weeping gently. $He absently moves a hand to where $his penis would have been and snatches it away with a sob. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;cripplingly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 20>>
-		<<set $activeSlave.devotion -= 20>>
+		Of course, $he already realized while exiting that $his genitalia was completely reshaped. As a shemale slave $he knew this day might come, but expectations and the reality are two different things. $He's beside $himself, weeping gently. $He absently moves a hand to where $his penis would have been and snatches it away with a sob. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;cripplingly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 20>>
 	<</if>>
 
 <<case "herm">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He already realized while exiting that her genitalia has been heavily augmented. $He's almost beside $himself with joy: $he now has three holes for her beloved Master to fuck, and he even allowed $him to retain $his dick! @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		Surprisingly, $he already realized while exiting that $his genitalia has been heavily augmented. The reasons why are lost to $him, though. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He already realized while exiting that $his genitalia has been heavily augmented. $He's almost beside $himself with joy: $he now has three holes for $his beloved <<= WrittenMaster($activeSlave)>> to fuck, and he even allowed $him to retain $his dick! @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 10>>
 	<<elseif ($activeSlave.devotion > 20)>>
-		$He already realized while exiting that her genitalia has been heavily augmented. $His efforts to cope with this radical development are palpable. $He retains $his penis, to her considerable surprise; and $he also has a pussy. $He hardly knows what to think or who to be. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		$He already realized while exiting that $his genitalia has been heavily augmented. $His efforts to cope with this radical development are palpable. $He retains $his penis, to $his considerable surprise; and $he also has a pussy. $He hardly knows what to think or who to be. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<else>>
-		$He already realized while exiting that her genitalia has been heavily augmented. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ $He is not as angry as $he might otherwise have been, since you left her $his dick, but $he has a hole where there was none before. $He views it with hatred and revulsion. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		$He already realized while exiting that $his genitalia has been heavily augmented. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ $He is not as angry as $he might otherwise have been, since you left $him $his dick, but $he has a hole where there was none before. $He views it with hatred and revulsion. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "geld">>
-	<<if ($activeSlave.devotion > 50)>>
-		Of course, $he already realized while exiting that $his scrotum was gone. $He was already accepting of her role as an effectively female slave, a receptacle for cock, and $he now understands that you no longer think it will ever again be necessary for $him to cum. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		Surprisingly, $he already realized while exiting that $his scrotum was gone. The reasons why are lost to $him, though. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		Of course, $he already realized while exiting that $his scrotum was gone. $He was already accepting of $his role as an effectively female slave, a receptacle for cock, and $he now understands that you no longer think it will ever again be necessary for $him to cum. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
-		Of course, $he already realized while exiting that $his scrotum was gone. $He was already struggling to accept her role as a female slave, a receptacle for cock, and $he now understands it better. $He has not yet accepted that $he will never again fuck, though, that her future is nothing but getting fucked. @@.mediumorchid;$He will struggle with feelings of confusion and loss.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		Of course, $he already realized while exiting that $his scrotum was gone. $He was already struggling to accept $his role as a female slave, a receptacle for cock, and $he now understands it better. $He has not yet accepted that $he will never again fuck, though, that $his future is nothing but getting fucked. @@.mediumorchid;$He will struggle with feelings of confusion and loss.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<<else>>
-		Of course, $he already realized while exiting that $his scrotum was gone. $He cannot accept that it is no longer her role to fuck holes, but rather to provide a hole for others to fuck.<<if $activeSlave.amp != 1>> $He absently moves a hand to where $his balls would have been and snatches it away with a sob.<</if>> @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;cripplingly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 20>>
-		<<set $activeSlave.devotion -= 20>>
+		Of course, $he already realized while exiting that $his scrotum was gone. $He cannot accept that it is no longer $his role to fuck holes, but rather to provide a hole for others to fuck.<<if $activeSlave.amp != 1>> $He absently moves a hand to where $his balls would have been and snatches it away with a sob.<</if>> @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;cripplingly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 20>>
 	<</if>>
 
 <<case "prostate">>
-	It's not immediately apparent to her what kind of surgery $he received, since all $he's left with is a terrible nonspecific ache in her lower parts. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
-	<<if ($activeSlave.devotion > 50)>>
-		<<if $activeSlave.anus == 0>>
-			Since $he's still an anal virgin, $he doesn't have any immediate way to discover what's been taken from $him. Thus, $he carries on, accepting what you did to her out of simple ignorance.
-		<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")>>
-			$He realizes that her prostate's gone the first time $he takes it up the butt, though. The incorrigible buttslut is crushed, but $he's devoted to you, so $he resolves to carry on regardless. If anything, $he does her best to push $himself to @@.coral;consider other kinks,@@ now that a hard anal pounding isn't as fun for her as it once was.
-			<<set $activeSlave.fetishStrength -= 40>>
-		<<else>>
-			$He realizes that her prostate's gone the first time $he takes it up the butt, though. @@.hotpink;Awed by your permeating control over $him,@@ even down to her internal organs, $he accepts that you've decided to make buttsex less fun for $him.
-			<<set $activeSlave.devotion += 4>>
-		<</if>>
-	<<elseif ($activeSlave.devotion > 20)>>
-		<<if $activeSlave.anus == 0>>
-			Since $he's still an anal virgin, $he doesn't have any immediate way to discover what's been taken from $him. Not knowing what you did, @@.gold;$he's afraid,@@ realizing that you can toy with her internal makeup at a whim.
-			<<set $activeSlave.trust -= 5>>
-		<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")>>
-			$He realizes that her prostate's gone the first time $he takes it up the butt, though. The buttslut is crushed, and @@.mediumorchid;infuriated,@@ because in effect you've taken her favorite pastime away from $him. For now, $he defiantly does her best to keep orgasming to anal, but it remains to be seen whether $he can maintain her enthusiasm.
-			<<set $activeSlave.devotion -= 10>>
+	It's not immediately apparent to $him what kind of surgery $he received, since all $he's left with is a terrible nonspecific ache in $his lower parts. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if ($activeSlave.devotion > 50)>>
+			<<if $activeSlave.anus == 0>>
+				Since $he's still an anal virgin, $he doesn't have any immediate way to discover what's been taken from $him. Thus, $he carries on, accepting what you did to $him out of simple ignorance.
+			<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")>>
+				$He realizes that $his prostate's gone the first time $he takes it up the butt, though. The incorrigible buttslut is crushed, but $he's devoted to you, so $he resolves to carry on regardless. If anything, $he does $his best to push $himself to @@.coral;consider other kinks,@@ now that a hard anal pounding isn't as fun for $him as it once was.
+				<<set $activeSlave.fetishStrength -= 40>>
+			<<else>>
+				$He realizes that $his prostate's gone the first time $he takes it up the butt, though. @@.hotpink;Awed by your permeating control over $him,@@ even down to $his internal organs, $he accepts that you've decided to make buttsex less fun for $him.
+				<<set $activeSlave.devotion += 4>>
+			<</if>>
+		<<elseif ($activeSlave.devotion > 20)>>
+			<<if $activeSlave.anus == 0>>
+				Since $he's still an anal virgin, $he doesn't have any immediate way to discover what's been taken from $him. Not knowing what you did, @@.gold;$he's afraid,@@ realizing that you can toy with $his internal makeup at a whim.
+				<<set $activeSlave.trust -= 5>>
+			<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")>>
+				$He realizes that $his prostate's gone the first time $he takes it up the butt, though. The buttslut is crushed, and @@.mediumorchid;infuriated,@@ because in effect you've taken $his favorite pastime away from $him. For now, $he defiantly does $his best to keep orgasming to anal, but it remains to be seen whether $he can maintain $his enthusiasm.
+				<<set $activeSlave.devotion -= 10>>
+			<<else>>
+				$He realizes that $his prostate's gone the first time $he takes it up the butt, though. $He wasn't attached to it in a particular way, but it was part of $his body, and now it's gone. @@.gold;It frightens $him@@ to be reduced in this way, and $he wonders what it means that you apparently want $him to enjoy being assfucked less.
+				<<set $activeSlave.trust -= 5>>
+			<</if>>
 		<<else>>
-			$He realizes that her prostate's gone the first time $he takes it up the butt, though. $He wasn't attached to it in a particular way, but it was part of $his body, and now it's gone. @@.gold;It frightens her@@ to be reduced in this way, and $he wonders what it means that you apparently want $him to enjoy being assfucked less.
-			<<set $activeSlave.trust -= 5>>
+			$He doesn't have to know exactly what you did, though, to be @@.gold;mortified@@ and @@.mediumorchid;infuriated@@ by your messing around inside $his body. $He hasn't yet learned to accept that you control $him completely, down to the arrangement and even presence of $his internal organs.
+			<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 		<</if>>
-	<<else>>
-		$He doesn't have to know exactly what you did, though, to be @@.gold;mortified@@ and @@.mediumorchid;infuriated@@ by your messing around inside $his body. $He hasn't yet learned to accept that you control her completely, down to the arrangement and even presence of her internal organs.
-		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "chop">>
-	<<if $activeSlave.vagina == -1>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		Surprisingly, $he already realized while exiting that $his genitalia was completely reshaped. The reasons why are lost to $him, though.
+	<<elseif $activeSlave.vagina == -1>>
 		Of course, $he already realized while exiting that something very dear to $him has been taken away.
 		<<if ($activeSlave.devotion > 50) && ($activeSlave.sexualFlaw == "self hating")>>
-			Strong emotions play out on $his face as $he experiences a watershed in her life of sexual slavery, perhaps the most radical one $he'll ever experience. $He loves you with all her being, and truly hates $himself. $He finds $himself in an emotional place where $he's willing to accept having had you cut $his dick off. $He knows $he's a worthless piece of trash, and realizes that if you feel like trimming useless bits off $him, that's your prerogative. In moments, $he's confirmed in @@.hotpink;total, final, fanatical submission to your will.@@ It's almost frightening.
+			Strong emotions play out on $his face as $he experiences a watershed in $his life of sexual slavery, perhaps the most radical one $he'll ever experience. $He loves you with all $his being, and truly hates $himself. $He finds $himself in an emotional place where $he's willing to accept having had you cut $his dick off. $He knows $he's a worthless piece of trash, and realizes that if you feel like trimming useless bits off $him, that's your prerogative. In moments, $he's confirmed in @@.hotpink;total, final, fanatical submission to your will.@@ It's almost frightening.
 			<<set $activeSlave.devotion += 50>>
 		<<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetishknown == 1) && ($activeSlave.fetishStrength > 95) && ($activeSlave.fetish == "buttslut")>>
-			$He's such a complete buttslut, though, that $he finds $he doesn't really care. $He never really paid much attention to her own dick; for $him, sex is about the phalli that get rammed up $his ass. And you didn't take that from $him. If anything, $he's @@.mediumaquamarine;reassured@@ by the implicit promise that $he'll never be anything but a butthole slut, and of course is forced even further into @@.hotpink;submission to your will.@@
+			$He's such a complete buttslut, though, that $he finds $he doesn't really care. $He never really paid much attention to $his own dick; for $him, sex is about the phalli that get rammed up $his ass. And you didn't take that from $him. If anything, $he's @@.mediumaquamarine;reassured@@ by the implicit promise that $he'll never be anything but a butthole slut, and of course is forced even further into @@.hotpink;submission to your will.@@
 			<<set $activeSlave.devotion += 8, $activeSlave.trust += 8>>
 		<<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetishknown == 1) && ($activeSlave.fetishStrength > 95) && ($activeSlave.fetish == "cumslut")>>
 			$He's such an oral slut, though, that $he finds $he doesn't really care. $He never really paid much attention to $his dick; for $him, sex is about what $he gets to suck. As far as $he's concerned, you've simply confirmed that $his most important hole is the one in $his face. If anything, $he's @@.mediumaquamarine;reassured@@ by the implicit promise that $he'll never be anything more than a nice inviting facepussy, and of course, $he's forced even further into @@.hotpink;submission to your will.@@
@@ -1253,33 +1294,33 @@ As the remote surgery's long recovery cycle completes,
 			<<set $activeSlave.devotion += 4>>
 		<<elseif $activeSlave.devotion > 20>>
 			and $his face is a strange mix of fear, hope, and resignation as $he <<if canSee($activeSlave)>>views<<else>>feels<</if>> the vagina that is all that remains of $his once-unique hermaphroditic genitalia. Eventually $his shoulders slump and $he tries to carry on. @@.mediumorchid;$He will struggle with feelings of confusion and loss.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-			<<set $activeSlave.trust -= 10>>
-			<<set $activeSlave.devotion -= 5>>
+			<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 		<<else>>
 			but expectations and the reality are two different things. $He's beside $himself, weeping gently.<<if $activeSlave.amp != 1>> $He absently moves a hand to where $his penis would have been and snatches it away with a sob.<</if>> @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ $He is @@.gold;cripplingly afraid@@ of your total power over $his body.
-			<<set $activeSlave.trust -= 20>>
-			<<set $activeSlave.devotion -= 20>>
+			<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 20>>
 		<</if>>
 	<</if>>
 	Naturally, @@.red;$his health has been greatly affected@@ by such serious surgery.
 	<<set $activeSlave.dickAccessory = "none">>
 
 <<case "relocate">>
+	<<if $activeSlave.fetish == "mindbroken">>
+		When $he begins surgical recovery, $his groin hurts quite a lot, and $he can't quite tell what's going on down there. Since the surgery was invasive, @@.red;$his health has been seriously affected.@@
 	<<if ($activeSlave.devotion > 50)>>
 		When $he begins surgical recovery, $his groin hurts quite a lot, and $he can't quite tell what's going on down there. However, $he was able to follow enough of the surgery to understand that $he still has $his balls, even if they're no longer visible. $He's eager to <<if canSee($activeSlave)>>see, and when $he's recovered enough, $he's pleased by the sight<<else>>feel, and when $he's recovered enough, $he's pleased by the sensation<</if>> of the smooth skin beneath $his still-functional cock. @@.hotpink;$He has become more submissive due to your reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been seriously affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
 		When $he begins surgical recovery, $his groin hurts quite a lot, and $he can't quite tell what's going on down there. However, $he was able to follow enough of the surgery to understand that $he still has $his balls, even if they're no longer visible. $He's relieved $he hasn't been gelded, but $he's still quite horrified. @@.mediumorchid;$He blames you for changing $him so radically.@@ Since the surgery was invasive, @@.red;$his health has been seriously affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<<else>>
 		When $he begins surgical recovery, $his groin hurts quite a lot, and $he can't quite tell what's going on down there. $He spends a long time in terror, wondering whether $he's been gelded, but $he eventually realizes that $his balls have merely been relocated. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been seriously affected.@@ $He is @@.gold;very afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 20>>
-		<<set $activeSlave.devotion -= 20>>
+		<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 20>>
 	<</if>>
 
 <<case "vaginaRemoval">>
-	<<if $activeSlave.dick == 0>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		Surprisingly, $he already realized while exiting that $his genitalia was completely reshaped. The reasons why are lost to $him, though.
+	<<elseif $activeSlave.dick == 0>>
 		Of course, $he already realized while exiting that something very dear to $him has been taken away.
 		<<if ($activeSlave.devotion > 50) && ($activeSlave.sexualFlaw == "self hating")>>
 			Strong emotions play out on $his face as $he experiences a watershed in $his life of sexual slavery, perhaps the most radical one $he'll ever experience. $He loves you with all $his being, and truly hates $himself. $He finds $himself in an emotional place where $he's willing to accept having $his womanhood torn out. $He knows $he's a worthless piece of trash, and realizes that if you feel like removing the parts of $his body that can feel sexual pleasure, that's your prerogative. In moments, $he's confirmed in @@.hotpink;total, final, fanatical submission to your will.@@ It's almost frightening.
@@ -1294,24 +1335,24 @@ As the remote surgery's long recovery cycle completes,
 			$He's such a total submissive, though, that $he accepts even this. Having $his womanhood torn out, greatly curtailing $his physical ability to enjoy sex, is perhaps the final step in sexual slavery, and $he's a little awed by it. If anything, $he's @@.mediumaquamarine;reassured@@ by the implicit promise that $his body exists for the degrading sexual gratification of others, and of course, $he's forced even further into @@.hotpink;submission to your will.@@
 			<<set $activeSlave.devotion += 8, $activeSlave.trust += 8>>
 		<<elseif $activeSlave.devotion > 95>>
-			Doubt, fear, and even nausea play across $his face, but $he's so worshipful of you that $he masters them all, accepting that this is your will. There's surprisingly little mental effect on $him. The horror of having her womanhood torn out is so strong that it breaks through to $him, and the only way $he can find to deal with it is to think about it as little as possible. $He falls back on worshipful duty.
+			Doubt, fear, and even nausea play across $his face, but $he's so worshipful of you that $he masters them all, accepting that this is your will. There's surprisingly little mental effect on $him. The horror of having $his womanhood torn out is so strong that it breaks through to $him, and the only way $he can find to deal with it is to think about it as little as possible. $He falls back on worshipful duty.
 		<<elseif $activeSlave.devotion > 50>>
-			$He's devoted to you, but doubt and fear play across her face as $he comes to terms with what's happened. $He does not see how having her womanhood torn out will improve her sexual slavery. $He does not rage or scream, but $he does cry, @@.mediumorchid;sadly wondering@@ whether $he's valuable to you at all, or if $he's just a surgical plaything to be degraded. $He's @@.gold;very frightened@@ that you'll cut up more of $him.
+			$He's devoted to you, but doubt and fear play across $his face as $he comes to terms with what's happened. $He does not see how having $his womanhood torn out will improve $his sexual slavery. $He does not rage or scream, but $he does cry, @@.mediumorchid;sadly wondering@@ whether $he's valuable to you at all, or if $he's just a surgical plaything to be degraded. $He's @@.gold;very frightened@@ that you'll cut up more of $him.
 			<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 		<<elseif $activeSlave.devotion > 20>>
-			$He's properly broken to slavery, but this is much too far. Having her womanhood torn out cuts straight through her conditioning, and tears roll down her face as the horrible permanence of what's happened to her really sinks in. @@.mediumorchid;Open anger@@ begins to become apparent through her tears; $he thought that her obedience merited better than this, and $he's @@.gold;extremely terrified@@ to find that despite being a decent slave, $he remains a surgical playground.
+			$He's properly broken to slavery, but this is much too far. Having $his womanhood torn out cuts straight through $his conditioning, and tears roll down $his face as the horrible permanence of what's happened to $him really sinks in. @@.mediumorchid;Open anger@@ begins to become apparent through $his tears; $he thought that $his obedience merited better than this, and $he's @@.gold;extremely terrified@@ to find that despite being a decent slave, $he remains a surgical playground.
 			<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 20>>
 		<<else>>
-			$He's horrified almost beyond the ability of her mind to comprehend. $His face takes on a blank look as $he goes into shock. There's no screaming and no tears, not yet; it will take her time to process what's happened to $him. Without a doubt, $he'll be absolutely filled by @@.mediumorchid;rage@@ and @@.gold;terror.@@
+			$He's horrified almost beyond the ability of $his mind to comprehend. $His face takes on a blank look as $he goes into shock. There's no screaming and no tears, not yet; it will take $him time to process what's happened to $him. Without a doubt, $he'll be absolutely filled by @@.mediumorchid;rage@@ and @@.gold;terror.@@
 			<<set $activeSlave.trust -= 40, $activeSlave.devotion -= 40>>
 		<</if>>
 	<<else>>
-		Of course, $he already realized while exiting that her genitalia has been radically simplified. As a herm slave $he knew this day might come,
+		Of course, $he already realized while exiting that $his genitalia has been radically simplified. As a herm slave $he knew this day might come,
 		<<if ($activeSlave.devotion > 50)>>
-			and her face is a strange mix of hope, happiness, satisfaction, and the tiniest tinge of soul-crushing sadness as $he <<if canSee($activeSlave)>>views<<else>>feels<</if>> the cock that is all that remains of her once-unique hermaphroditic genitalia. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+			and $his face is a strange mix of hope, happiness, satisfaction, and the tiniest tinge of soul-crushing sadness as $he <<if canSee($activeSlave)>>views<<else>>feels<</if>> the cock that is all that remains of $his once-unique hermaphroditic genitalia. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 			<<set $activeSlave.devotion += 4>>
 		<<elseif ($activeSlave.devotion > 20)>>
-			and her face is a strange mix of fear, hope, and resignation as $he <<if canSee($activeSlave)>>views<<else>>feels<</if>> the cock that is all that remains of her once-unique hermaphroditic genitalia. Eventually her shoulders slump and $he tries to carry on. @@.mediumorchid;$He will struggle with feelings of confusion and loss.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+			and $his face is a strange mix of fear, hope, and resignation as $he <<if canSee($activeSlave)>>views<<else>>feels<</if>> the cock that is all that remains of $his once-unique hermaphroditic genitalia. Eventually $his shoulders slump and $he tries to carry on. @@.mediumorchid;$He will struggle with feelings of confusion and loss.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
 			<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 		<<else>>
 			but expectations and the reality are two different things. $He's beside $himself, weeping gently.<<if $activeSlave.amp != 1>> $He absently moves a hand to where $his pussy would have been and snatches it away with a sob.<</if>> @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ $He is @@.gold;cripplingly afraid@@ of your total power over $his body.
@@ -1322,7 +1363,9 @@ As the remote surgery's long recovery cycle completes,
 	<<set $activeSlave.vaginalAccessory = "none">>
 
 <<case "braces">>
-	<<if ($activeSlave.teeth == "straightening braces")>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He is quite quick to realize $his teeth now have something on them. What its purpose is is beyond $him, though.
+	<<elseif ($activeSlave.teeth == "straightening braces")>>
 		Quite aware that $his crooked, aching teeth are now in braces,
 		<<if ($activeSlave.devotion > 50)>>
 			$He smiles tentatively at <<if canSee($activeSlave)>>$himself in the mirror<<else>>you<</if>>. $He's experiencing considerable discomfort, but $he knows it will @@.hotpink;make $him prettier for you,@@ and resolves to do $his best to put up with it.
@@ -1333,8 +1376,6 @@ As the remote surgery's long recovery cycle completes,
 		<<else>>
 			$He pulls $his lips back to <<if canSee($activeSlave)>>check them out<<else>>feel them<</if>>. $He's experiencing considerable discomfort, and $his feelings are mixed. $He knows that straightening teeth is expensive, and in different circumstances $he would probably be glad to be given free braces. However, $he's very aware that $he's being beautified because $he's a sex slave.
 		<</if>>
-		Though unpleasant, orthodontia isn't particularly harmful; $his health is unaffected.
-
 	<<elseif ($activeSlave.teeth == "cosmetic braces")>>
 		Quite aware that $his aching teeth are now in braces,
 		<<if ($activeSlave.devotion > 50)>>
@@ -1345,246 +1386,268 @@ As the remote surgery's long recovery cycle completes,
 			$he pulls $his lips back to <<if canSee($activeSlave)>>check them out<<else>>feel them<</if>>. $His teeth are already straight, limiting the discomfort but confusing $him greatly. $He's not a little relieved that the autosurgery's attention to $his mouth only left $him with pointless braces, and is only @@.mediumorchid;mildly angered@@ by the strange intrusion.
 			<<set $activeSlave.devotion -= 2>>
 		<</if>>
-		Though unpleasant, orthodontia isn't particularly harmful; $his health is unaffected.
 	<</if>>
+	Though unpleasant, orthodontia isn't particularly harmful; $his health is unaffected.
 
 <<case "removeBraces">>
-	Quite aware that $his teeth are now free of $his braces,
-	<<if ($activeSlave.devotion > 50)>>
-		$he smiles tentatively <<if canSee($activeSlave)>>at $himself in the mirror<<else>>and runs $his tongue across $his teeth<</if>> only to find they are as crooked as ever. $He immediately shuts $his mouth, @@.mediumorchid;$his opinion of you souring,@@ and carries on as if you had never put them on $him in the first place.
-		<<set $activeSlave.devotion -= 4>>
-	<<elseif ($activeSlave.devotion > 20)>>
-		$he pulls $his lips back to <<if canSee($activeSlave)>>check them out<<else>>feel them<</if>> only to find they are as crooked as ever. $He immediately shuts $his mouth, @@.mediumorchid;$his opinion of you souring,@@ and carries on as if you had never put them on $him in the first place.
-		<<set $activeSlave.devotion -= 2>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He is quite quick to realize $his teeth are missing something.
 	<<else>>
-		$he pulls $his lips back to <<if canSee($activeSlave)>>check them out<<else>>feel them<</if>>. $He knows that straightening teeth is expensive and sighs, feeling that $he's @@.mediumorchid;not worth the expense.@@ No matter what $he thought of you, $he felt $he would at least benefit from having nice teeth, and now it's clear to $him: @@.gold;You don't care.@@
-		<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
+		Quite aware that $his teeth are now free of $his braces,
+		<<if ($activeSlave.devotion > 50)>>
+			$he smiles tentatively <<if canSee($activeSlave)>>at $himself in the mirror<<else>>and runs $his tongue across $his teeth<</if>> only to find they are as crooked as ever. $He immediately shuts $his mouth, @@.mediumorchid;$his opinion of you souring,@@ and carries on as if you had never put them on $him in the first place.
+			<<set $activeSlave.devotion -= 4>>
+		<<elseif ($activeSlave.devotion > 20)>>
+			$he pulls $his lips back to <<if canSee($activeSlave)>>check them out<<else>>feel them<</if>> only to find they are as crooked as ever. $He immediately shuts $his mouth, @@.mediumorchid;$his opinion of you souring,@@ and carries on as if you had never put them on $him in the first place.
+			<<set $activeSlave.devotion -= 2>>
+		<<else>>
+			$he pulls $his lips back to <<if canSee($activeSlave)>>check them out<<else>>feel them<</if>>. $He knows that straightening teeth is expensive and sighs, feeling that $he's @@.mediumorchid;not worth the expense.@@ No matter what $he thought of you, $he felt $he would at least benefit from having nice teeth, and now it's clear to $him: @@.gold;You don't care.@@
+			<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
+		<</if>>
 	<</if>>
 	Though unpleasant, orthodontia isn't particularly harmful; $his health is unaffected.
 
 
 <<case "teeth">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He clearly feels quite normal except for a vague ache around her jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in $his mouth to realize that $he is wearing prosthetic teeth that $he can remove. $He gasps with shock, but figures out the idea quickly enough by experimentally <<if $activeSlave.amp != 1>>sucking on two fingers.<<else>>simulating oral sex with $his own tongue.<</if>> @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He clearly feels quite normal except for a vague ache around $his jaw, yet fails to understand $his teeth are now fake. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He clearly feels quite normal except for a vague ache around $his jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in $his mouth to realize that $he is wearing prosthetic teeth that $he can remove. $He gasps with shock, but figures out the idea quickly enough by experimentally <<if $activeSlave.amp != 1>>sucking on two fingers.<<else>>simulating oral sex with $his own tongue.<</if>> @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
-		$He clearly feels quite normal except for a vague ache around her jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in her mouth to realize that $he is wearing prosthetic teeth that $he can remove. $He gasps with shock, but eventually her shoulders slump and $he tries to carry on. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		$He clearly feels quite normal except for a vague ache around $his jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in $his mouth to realize that $he is wearing prosthetic teeth that $he can remove. $He gasps with shock, but eventually $his shoulders slump and $he tries to carry on. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<else>>
-		$He clearly feels quite normal except for a vague ache around her jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in her mouth to realize that $he is wearing prosthetic teeth that $he can remove. $He gasps with shock, gags, spits out the prosthetics, <<if canSee($activeSlave)>>looks at $himself in the mirror<<else>>runs her tongue across her empty gums<</if>>, and sobs. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		$He clearly feels quite normal except for a vague ache around $his jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in $his mouth to realize that $he is wearing prosthetic teeth that $he can remove. $He gasps with shock, gags, spits out the prosthetics, <<if canSee($activeSlave)>>looks at $himself in the mirror<<else>>runs $his tongue across $his empty gums<</if>>, and sobs. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "sharp">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He clearly feels quite normal except for a vague ache around her jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in her mouth to realize that $he now has teeth fit for a carnivore. $He seems doubtful, but then works up her courage and bares them <<if canSee($activeSlave)>>at a mirror<<else>> so you may see<</if>>. $He menaces <<if canSee($activeSlave)>>$himself<</if>> for a while before laughing quietly. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He clearly feels quite normal except for a vague ache around $his jaw, yet fails to understand that $his teeth have changed shape. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He clearly feels quite normal except for a vague ache around $his jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in $his mouth to realize that $he now has teeth fit for a carnivore. $He seems doubtful, but then works up $his courage and bares them <<if canSee($activeSlave)>>at a mirror<<else>> so you may see<</if>>. $He menaces <<if canSee($activeSlave)>>$himself<</if>> for a while before laughing quietly. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
-		$He clearly feels quite normal except for a vague ache around her jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in her mouth to realize that he now has teeth fit for a carnivore. $He gasps with shock, but eventually her shoulders slump and $he tries to carry on. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		$He clearly feels quite normal except for a vague ache around $his jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in $his mouth to realize that he now has teeth fit for a carnivore. $He gasps with shock, but eventually $his shoulders slump and $he tries to carry on. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<else>>
-		$He clearly feels quite normal except for a vague ache around her jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in her mouth to realize that he now has teeth fit for a carnivore. $He gasps with shock, accidentally gets her tongue in the way in her anguish, bites $himself, and starts gagging and spitting blood. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		$He clearly feels quite normal except for a vague ache around $his jaw. It takes a good while for $him to figure out what has happened, but eventually $he gets enough sensation in $his mouth to realize that he now has teeth fit for a carnivore. $He gasps with shock, accidentally gets $his tongue in the way in $his anguish, bites $himself, and starts gagging and spitting blood. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "oral">>
-	$He clearly feels quite normal except for a vague ache around her jaw. $He <<if canSee($activeSlave)>>checks $himself in the mirror<<else>>runs her tongue over her teeth<</if>> repeatedly before accepting that nothing too unusual has happened, and that $he now appears to have a fully functional set of normal teeth. Though $he's surprised that nothing outlandish has been done, $he carries on as usual. Since the surgery was moderately invasive, @@.red;$his health has been somewhat affected.@@
+	$He clearly feels quite normal except for a vague ache around $his jaw. $He <<if canSee($activeSlave)>>checks $himself in the mirror<<else>>runs $his tongue over $his teeth<</if>> repeatedly before accepting that nothing too unusual has happened, and that $he now appears to have a fully functional set of normal teeth. Though $he's surprised that nothing outlandish has been done, $he carries on as usual. Since the surgery was moderately invasive, @@.red;$his health has been somewhat affected.@@
 
 <<case "mute">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He clearly feels quite normal except for a vague ache around her larynx. It takes a good while for $him to figure out what has happened, but eventually $he tries to speak and makes no sound. $He panics, but manages to control $himself at length and begins to think. <<if canSee($activeSlave)>>Seeing<<else>>Finding<</if>> you, $he tries to ask you for instruction and realizes $he cannot. <<if $activeSlave.amp != 1>>After more thought, $he simply gets on $his knees facing away from you and spreads $his buttocks to offer $himself to you.<<else>>After more thought, $he simply rolls over facing away from you and winks $his asshole to offer $himself to you.<</if>> @@.hotpink;$He has become more submissive due to your radical reshaping of $his being.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He clearly feels quite normal except for a vague ache around $his larynx. It takes a good while for $him to figure out what has happened, but eventually $he tries to speak and makes no sound. $He simply keeps trying for some time before accepting this is how things are. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He clearly feels quite normal except for a vague ache around $his larynx. It takes a good while for $him to figure out what has happened, but eventually $he tries to speak and makes no sound. $He panics, but manages to control $himself at length and begins to think. <<if canSee($activeSlave)>>Seeing<<else>>Finding<</if>> you, $he tries to ask you for instruction and realizes $he cannot. <<if $activeSlave.amp != 1>>After more thought, $he simply gets on $his knees facing away from you and spreads $his buttocks to offer $himself to you.<<else>>After more thought, $he simply rolls over facing away from you and winks $his asshole to offer $himself to you.<</if>> @@.hotpink;$He has become more submissive due to your radical reshaping of $his being.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
 		$He clearly feels quite normal except for a vague ache around $his larynx. It takes a good while for $him to figure out what has happened, but eventually $he tries to speak and makes no sound. $He panics, trying to scream or protest but only managing to cry. Eventually $he pulls $himself together. @@.mediumorchid;$He will struggle with $his medically created disability.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<<else>>
 		$He clearly feels quite normal except for a vague ache around $his larynx. It takes a good while for $him to figure out what has happened, but eventually $he tries to speak and makes no sound. $He panics, trying to scream or protest but only managing to cry. As long as $he remains unbent to your will, $he will have a constant, inescapable reminder of who and what you are. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;cripplingly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 20>>
-		<<set $activeSlave.devotion -= 50>>
+		<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 50>>
 	<</if>>
 
 <<case "electrolarynx">>
-	<<if $activeSlave.eyes <= -2>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		Before surgery, $he was warned repeatedly not to try talking for a while, but $he fails to recall that. $He doesn't notice any difference.
+	<<elseif $activeSlave.voice == 0>>
 		<<if ($activeSlave.devotion > 50)>>
-			The autosurgery instructed $him in no uncertain terms not to speak during recovery, so $he knows that $his voice has been restored. When you come in to check on her late in the process, though, $he does $his best to communicate adoration with $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> alone. Finally, the accelerated healing process reaches the time when $he's to test $his new vocal organs. $He <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you shyly, and <<if $activeSlave.amp != 1>>meekly beckons to you from where $he's still<<else>>meekly mouths a request that you come over to where $he's<</if>> restrained by the autosurgery. When you're near, $he clears her sore throat gingerly and then whispers, "@@.hotpink;I love you,@@ <<Master>>" @@.mediumaquamarine;$He is far more trusting of your plans for $him in the future.@@
-			<<set $activeSlave.trust += 5>>
-			<<set $activeSlave.devotion += 5>>
+			The autosurgery instructed $him in no uncertain terms not to speak during recovery, so $he knows that $his voice has been restored. When you come in to check on $him late in the process, though, $he does $his best to communicate adoration with $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> alone. Finally, the accelerated healing process reaches the time when $he's to test $his new vocal organs. $He <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you shyly, and <<if $activeSlave.amp != 1>>meekly beckons to you from where $he's still<<else>>meekly mouths a request that you come over to where $he's<</if>> restrained by the autosurgery. When you're near, $he clears $his sore throat gingerly and then whispers, "@@.hotpink;I love you,@@ <<Master>>" @@.mediumaquamarine;$He is far more trusting of your plans for $him in the future.@@
+			<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 		<<elseif ($activeSlave.devotion >= -20)>>
-			The autosurgery instructed her in no uncertain terms not to speak during recovery, so $he knows that her voice has been restored. When you come in to check on her late in the process, though, $he does her best to communicate gratitude with her <<if canSee($activeSlave)>>eyes<<else>>face<</if>> alone. Finally, the accelerated healing process reaches the time when $he's to test her new vocal organs. $He <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you shyly, and hesitantly <<if $activeSlave.amp != 1>>beckons to you from where $he's still<<else>>mouths a request that you come over to where $he's<</if>> restrained by the autosurgery. When you're near, $he clears $his sore throat gingerly and then whispers, "Thank you, <<Master>>." @@.hotpink;$He has a much higher regard for you@@ due to this display of care for $him.
+			The autosurgery instructed $him in no uncertain terms not to speak during recovery, so $he knows that $his voice has been restored. When you come in to check on $him late in the process, though, $he does $his best to communicate gratitude with $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> alone. Finally, the accelerated healing process reaches the time when $he's to test $his new vocal organs. $He <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you shyly, and hesitantly <<if $activeSlave.amp != 1>>beckons to you from where $he's still<<else>>mouths a request that you come over to where $he's<</if>> restrained by the autosurgery. When you're near, $he clears $his sore throat gingerly and then whispers, "Thank you, <<Master>>." @@.hotpink;$He has a much higher regard for you@@ due to this display of care for $him.
 			<<set $activeSlave.devotion += 10>>
 		<<else>>
-			The autosurgery instructed $him in no uncertain terms not to speak during recovery, so $he knows that her voice has been restored. When you come in to check on her late in the process, though, $he <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you for a long moment before turning away from you, towards the wall, and beginning to cry quietly. It seems $he's surprised that you would do this for $him, and does not understand how to deal with the situation. In any case, @@.hotpink;$he hates you far less@@ than $he once did.
+			The autosurgery instructed $him in no uncertain terms not to speak during recovery, so $he knows that $his voice has been restored. When you come in to check on $him late in the process, though, $he <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you for a long moment before turning away from you, towards the wall, and beginning to cry quietly. It seems $he's surprised that you would do this for $him, and does not understand how to deal with the situation. In any case, @@.hotpink;$he hates you far less@@ than $he once did.
 		<<set $activeSlave.devotion += 10>>
 		<</if>>
 	<<else>>
 		<<if ($activeSlave.devotion > 50)>>
-			Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, her voice is raspy and weak, but it gains strength gradually. While $he first believes nothing has changed, <<if canHear($activeSlave)>>$he soon notices a slight synthetic tone to $his voice and realizes $he has been given a mechanical larynx<<else>>the autosurgery informs $him in no uncertain terms that $he has implanted with a mechanical larynx<</if>>. $He is @@.hotpink;appreciative@@ of $his new implant, and knowing how much you invested in $him makes $him @@.mediumaquamarine;trust you more@@ as well.
+			Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, $his voice is raspy and weak, but it gains strength gradually. While $he first believes nothing has changed, <<if canHear($activeSlave)>>$he soon notices a slight synthetic tone to $his voice and realizes $he has been given a mechanical larynx<<else>>the autosurgery informs $him in no uncertain terms that $he has implanted with a mechanical larynx<</if>>. $He is @@.hotpink;appreciative@@ of $his new implant, and knowing how much you invested in $him makes $him @@.mediumaquamarine;trust you more@@ as well.
 			<<set $activeSlave.devotion += 10; $activeSlave.trust += 10>>
 		<<elseif ($activeSlave.devotion > 20)>>
-			Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, her voice is raspy and weak, but it gains strength gradually. While $he first believes nothing has changed, <<if canHear($activeSlave)>>$he soon notices a slight synthetic tone to $his voice and realizes $he has been given a mechanical larynx<<else>>the autosurgery informs $him in no uncertain terms that $he has implanted with a mechanical larynx<</if>>. $He has mixed feelings about this development, but $he's @@.mediumaquamarine;aware@@ how valuable such implants are, and $he already @@.hotpink;accepted@@ that you have complete control over $his body.
-			<<set $activeSlave.devotion += 5; $activeSlave.trust += 10>>
+			Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, $his voice is raspy and weak, but it gains strength gradually. While $he first believes nothing has changed, <<if canHear($activeSlave)>>$he soon notices a slight synthetic tone to $his voice and realizes $he has been given a mechanical larynx<<else>>the autosurgery informs $him in no uncertain terms that $he has implanted with a mechanical larynx<</if>>. $He has mixed feelings about this development, but $he's @@.mediumaquamarine;aware@@ how valuable such implants are, and $he already @@.hotpink;accepted@@ that you have complete control over $his body.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 10>>
 		<<else>>
-			Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, her voice is raspy and weak, but it gains strength gradually. While $he first believes nothing has changed, <<if canHear($activeSlave)>>$he soon notices a slight synthetic tone to $his voice and realizes $he has been given a mechanical larynx<<else>>the autosurgery informs $him in no uncertain terms that $he has implanted with a mechanical larynx<</if>>. $He is @@.gold;disturbed@@ that you replaced $his larynx with an artificial one and afraid of increased control over $him that such device grants.
+			Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, $his voice is raspy and weak, but it gains strength gradually. While $he first believes nothing has changed, <<if canHear($activeSlave)>>$he soon notices a slight synthetic tone to $his voice and realizes $he has been given a mechanical larynx<<else>>the autosurgery informs $him in no uncertain terms that $he has implanted with a mechanical larynx<</if>>. $He is @@.gold;disturbed@@ that you replaced $his larynx with an artificial one and afraid of increased control over $him that such device grants.
 			<<set $activeSlave.devotion -= 5>>
 		<</if>>
 	<</if>>
+	As with all surgery @@.red;$his health has been slightly affected.@@
 
 <<case "restoreVoice">>
-	<<if ($activeSlave.devotion > 50)>>
-		The autosurgery instructed $him in no uncertain terms not to speak during recovery, so $he knows that $his voice has been restored. When you come in to check on $him late in the process, though, $he does $his best to communicate adoration with $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> alone. Finally, the accelerated healing process reaches the time when $he's to test $his new vocal organs. $He <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you shyly, and <<if $activeSlave.amp != 1>>meekly beckons to you from where $he's still<<else>>meekly mouths a request that you come over to where $he's<</if>> restrained by the autosurgery. When you're near, $he clears her sore throat gingerly and then whispers, "@@.hotpink;I love you,@@ <<Master>>" @@.mediumaquamarine;$He is far more trusting of your plans for $him in the future.@@ As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 5>>
-		<<set $activeSlave.devotion += 5>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		The autosurgery instructed $him in no uncertain terms not to speak during recovery, but $he fails to recall that. $He doesn't any effort to speak either, though.
+	<<elseif ($activeSlave.devotion > 50)>>
+		The autosurgery instructed $him in no uncertain terms not to speak during recovery, so $he knows that $his voice has been restored. When you come in to check on $him late in the process, though, $he does $his best to communicate adoration with $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> alone. Finally, the accelerated healing process reaches the time when $he's to test $his new vocal organs. $He <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you shyly, and <<if $activeSlave.amp != 1>>meekly beckons to you from where $he's still<<else>>meekly mouths a request that you come over to where $he's<</if>> restrained by the autosurgery. When you're near, $he clears $his sore throat gingerly and then whispers, "@@.hotpink;I love you,@@ <<Master>>" @@.mediumaquamarine;$He is far more trusting of your plans for $him in the future.@@
+		<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		The autosurgery instructed her in no uncertain terms not to speak during recovery, so $he knows that her voice has been restored. When you come in to check on $him late in the process, though, $he does her best to communicate gratitude with her <<if canSee($activeSlave)>>eyes<<else>>face<</if>> alone. Finally, the accelerated healing process reaches the time when $he's to test her new vocal organs. $He <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you shyly, and hesitantly <<if $activeSlave.amp != 1>>beckons to you from where $he's still<<else>>mouths a request that you come over to where $he's<</if>> restrained by the autosurgery. When you're near, $he clears her sore throat gingerly and then whispers, "Thank you, <<Master>>." @@.hotpink;$He has a much higher regard for you@@ due to this display of care for $him. As with all surgery @@.red;$his health has been slightly affected.@@
+		The autosurgery instructed $him in no uncertain terms not to speak during recovery, so $he knows that $his voice has been restored. When you come in to check on $him late in the process, though, $he does $his best to communicate gratitude with $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> alone. Finally, the accelerated healing process reaches the time when $he's to test $his new vocal organs. $He <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you shyly, and hesitantly <<if $activeSlave.amp != 1>>beckons to you from where $he's still<<else>>mouths a request that you come over to where $he's<</if>> restrained by the autosurgery. When you're near, $he clears $his sore throat gingerly and then whispers, "Thank you, <<Master>>." @@.hotpink;$He has a much higher regard for you@@ due to this display of care for $him.
 		<<set $activeSlave.devotion += 10>>
 	<<else>>
-		The autosurgery instructed her in no uncertain terms not to speak during recovery, so $he knows that her voice has been restored. When you come in to check on her late in the process, though, $he <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you for a long moment before turning away from you, towards the wall, and beginning to cry quietly. It seems $he's surprised that you would do this for $him, and does not understand how to deal with the situation. In any case, @@.hotpink;$he hates you far less@@ than $he once did. As with all surgery @@.red;$his health has been slightly affected.@@
+		The autosurgery instructed $him in no uncertain terms not to speak during recovery, so $he knows that $his voice has been restored. When you come in to check on $him late in the process, though, $he <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you for a long moment before turning away from you, towards the wall, and beginning to cry quietly. It seems $he's surprised that you would do this for $him, and does not understand how to deal with the situation. In any case, @@.hotpink;$he hates you far less@@ than $he once did.
 		<<set $activeSlave.devotion += 10>>
 	<</if>>
+	As with all surgery @@.red;$his health has been slightly affected.@@
 
 <<case "voice">>
-	<<if ($activeSlave.devotion > 50)>>
-		Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, her voice is raspy and weak, but it gains strength gradually. It comes out <<if $activeSlave.voice == 3>>far <</if>>higher and more girly than it was before, and $he laughs at $himself as $he gets used to it. @@.hotpink;$He has become more submissive,@@ since this helps $him to think of $himself as a <<if $activeSlave.voice == 3>>bimbo slut<<elseif $activeSlave.voice == 2>>real woman<</if>>. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		The autosurgery instructed $him in no uncertain terms not to speak during recovery, but $he fails to recall that. $He doesn't notice anything different. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, $his voice is raspy and weak, but it gains strength gradually. It comes out <<if $activeSlave.voice == 3>>far <</if>>higher and more girly than it was before, and $he laughs at $himself as $he gets used to it. @@.hotpink;$He has become more submissive,@@ since this helps $him to think of $himself as a <<if $activeSlave.voice == 3>>bimbo slut<<elseif $activeSlave.voice == 2>>real woman<</if>>. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
-		Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, her voice is raspy and weak, but it gains strength gradually. It comes out <<if $activeSlave.voice == 3>>far <</if>> higher and more girly than it was before, and $he laughs grimly at $himself as $he gets used to it. $He carries on regardless, accepting it as one more thing to learn to accept. As with all surgery @@.red;$his health has been slightly affected.@@
+		Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, $his voice is raspy and weak, but it gains strength gradually. It comes out <<if $activeSlave.voice == 3>>far <</if>> higher and more girly than it was before, and $he laughs grimly at $himself as $he gets used to it. $He carries on regardless, accepting it as one more thing to learn to accept. As with all surgery @@.red;$his health has been slightly affected.@@
 	<<else>>
-		Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, her voice is raspy and weak, but it gains strength gradually. It comes out <<if $activeSlave.voice == 3>>far <</if>> higher and more girly than it was before. For now, @@.mediumorchid;$he feels this <<if $activeSlave.voice == 3>>bimbo<<elseif $activeSlave.voice == 2>>feminine<</if>> voice is not $hers, a cruel mockery.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, $his voice is raspy and weak, but it gains strength gradually. It comes out <<if $activeSlave.voice == 3>>far <</if>> higher and more girly than it was before. For now, @@.mediumorchid;$he feels this <<if $activeSlave.voice == 3>>bimbo<<elseif $activeSlave.voice == 2>>feminine<</if>> voice is not $hers, a cruel mockery.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "voice2">>
-	<<if ($activeSlave.devotion > 50)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		The autosurgery instructed $him in no uncertain terms not to speak during recovery, but $he fails to recall that. $He doesn't notice anything different. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
 		Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, $his voice is raspy and weak, but it gains strength gradually. It comes out <<if $activeSlave.voice == 1>>far <</if>> lower and more manly than it was before, and $he laughs at $himself as $he gets used to it. @@.hotpink;$He has become more dominant,@@ since this allows $him to think of $himself as <<if $activeSlave.voice == 1>>an action movie hero<<elseif $activeSlave.voice == 2>>a mature career woman<</if>>. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
 		Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, $his voice is raspy and weak, but it gains strength gradually. It comes out <<if $activeSlave.voice == 1>>far <</if>> lower and more manly than it was before, and $he laughs grimly at $himself as $he gets used to it. $He carries on regardless, accepting it as one more thing to learn to accept. As with all surgery @@.red;$his health has been slightly affected.@@
 	<<else>>
 		Before surgery, $he was warned repeatedly not to try talking for a while, and $he obeys. When $he finally does, $his voice is raspy and weak, but it gains strength gradually. It comes out <<if $activeSlave.voice == 1>>far <</if>> lower and more manly than it was before. For now, @@.mediumorchid;$he feels this <<if $activeSlave.voice == 1>>gravelly<<elseif $activeSlave.voice == 2>>subdued<</if>> voice is not $hers, a cruel mockery.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "height">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He exits the surgery very cautiously, since $he's terribly sore and isn't yet used to the novel lengths of the legs $he walks on. $He'll be clumsy and hesitant for some time, but $he's happy with her new body. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He exits the surgery very slowly, since $he's terribly sore and isn't yet used to the novel lengths of the legs $he walks on. $He'll be clumsy for some time. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He exits the surgery very cautiously, since $he's terribly sore and isn't yet used to the novel lengths of the legs $he walks on. $He'll be clumsy and hesitant for some time, but $he's happy with $his new body. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
-		$He exits the surgery very cautiously, since $he's terribly sore and isn't yet used to the novel lengths of the legs $he walks on. $He'll be clumsy and hesitant for some time, but $he's accepted her new body. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		$He exits the surgery very cautiously, since $he's terribly sore and isn't yet used to the novel lengths of the legs $he walks on. $He'll be clumsy and hesitant for some time, but $he's accepted $his new body. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<else>>
 		$He exits the surgery very cautiously, since $he's terribly sore and isn't yet used to the novel lengths of the legs $he walks on. $He'll be clumsy and hesitant for some time, and $he refuses to accept that this new body is really what $he's been condemned to. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "circumcision">>
 	<<if ($activeSlave.dick > 0)>>
-		<<if ($activeSlave.devotion > 50)>>
+		<<if $activeSlave.fetish == "mindbroken">>
+			$He exits the surgery gingerly, since $he can feel that something was done to $his dick. Since it is still there, $he doesn't understand what changed. Circumcision of an adult is not a trivial procedure, so @@.red;$his health has been slightly affected.@@
+		<<elseif ($activeSlave.devotion > 50)>>
 			$He exits the surgery gingerly, since $he can feel that something was done to $his dick. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, @@.hotpink;$he's very happy you'd take an interest in $his penis,@@ and looks forward to having a slightly easier time keeping $himself clean through $his life as a sex slave. Circumcision of an adult is not a trivial procedure, so @@.red;$his health has been slightly affected.@@
 			<<set $activeSlave.devotion += 4>>
 		<<elseif ($activeSlave.devotion > 20)>>
 			$He exits the surgery gingerly, since $he can feel that something was done to $his dick. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, $he's flooded with relief. $He's so elated that $he hasn't been severely damaged that $he doesn't mind your taking surgical control of $his member. Circumcision of an adult is not a trivial procedure, so @@.red;$his health has been slightly affected.@@
 		<<else>>
-			$He exits the surgery gingerly, since $he can feel that something was done to $his dick. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, $he's flooded with relief, since $he was afraid that you'd done something far more terrible. Once $he has time to think about it, though, $he's somewhat @@.mediumorchid;resentful,@@ since $he naturally feels a certain proprietary interest in her own penis. Circumcision of an adult is not a trivial procedure, so @@.red;$his health has been slightly affected.@@
+			$He exits the surgery gingerly, since $he can feel that something was done to $his dick. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, $he's flooded with relief, since $he was afraid that you'd done something far more terrible. Once $he has time to think about it, though, $he's somewhat @@.mediumorchid;resentful,@@ since $he naturally feels a certain proprietary interest in $his own penis. Circumcision of an adult is not a trivial procedure, so @@.red;$his health has been slightly affected.@@
 			<<set $activeSlave.devotion -= 5>>
 		<</if>>
 	<<else>>
-		<<if ($activeSlave.devotion > 50)>>
-			$He exits the surgery gingerly, since $he can feel that $his crotch was operated on. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, @@.hotpink;$he's very happy you'd take an interest in her sex,@@ and looks forward to having a slightly easier time keeping $himself clean through her life as a sex slave. @@.red;$His health has been slightly affected.@@
+		<<if $activeSlave.fetish == "mindbroken">>
+			$He exits the surgery gingerly, since $he can feel that something was done to $his crotch. Since everything is still there, $he doesn't understand what changed. @@.red;$His health has been slightly affected.@@
+		<<elseif ($activeSlave.devotion > 50)>>
+			$He exits the surgery gingerly, since $he can feel that $his crotch was operated on. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, @@.hotpink;$he's very happy you'd take an interest in $his sex,@@ and looks forward to having a slightly easier time keeping $himself clean through $his life as a sex slave. @@.red;$His health has been slightly affected.@@
 			<<set $activeSlave.devotion += 4>>
 		<<elseif ($activeSlave.devotion > 20)>>
 			$He exits the surgery gingerly, since $he can feel that $his crotch was operated on. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, $he's flooded with relief. $He's so elated that $he hasn't been severely damaged that $he doesn't mind minor surgical alteration. @@.red;$His health has been slightly affected.@@
 		<<else>>
-			$He exits the surgery gingerly, since $he can feel that $his crotch was operated on. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, $he's flooded with relief, since $he was afraid that you'd done something far more terrible. Once $he has time to think about it, though, $he's somewhat @@.mediumorchid;resentful,@@ since $he naturally feels a certain proprietary interest in her sex. @@.red;$His health has been slightly affected.@@
+			$He exits the surgery gingerly, since $he can feel that $his crotch was operated on. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, $he's flooded with relief, since $he was afraid that you'd done something far more terrible. Once $he has time to think about it, though, $he's somewhat @@.mediumorchid;resentful,@@ since $he naturally feels a certain proprietary interest in $his sex. @@.red;$His health has been slightly affected.@@
 			<<set $activeSlave.devotion -= 5>>
 		<</if>>
 	<</if>>
 
 <<case "hips">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He exits the surgery very cautiously, since $he's still in considerable pain and isn't yet used to the way her pelvis now fits together with the rest of $his body. $He'll be clumsy and hesitant for some time, but $he's happy with her new hips. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He exits the surgery very slowly, since $he's still in considerable pain and isn't yet used to the way $his pelvis now fits together with the rest of $his body. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He exits the surgery very cautiously, since $he's still in considerable pain and isn't yet used to the way $his pelvis now fits together with the rest of $his body. $He'll be clumsy and hesitant for some time, but $he's happy with $his new hips. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
-		$He exits the surgery very cautiously, since $he's still in considerable pain and isn't yet used to the way her pelvis now fits together with the rest of $his body. $He'll be clumsy and hesitant for some time, but $he's accepted her new hips. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		$He exits the surgery very cautiously, since $he's still in considerable pain and isn't yet used to the way $his pelvis now fits together with the rest of $his body. $He'll be clumsy and hesitant for some time, but $he's accepted $his new hips. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<else>>
-		$He exits the surgery very cautiously, since $he's still in considerable pain and isn't yet used to the way her pelvis now fits together with the rest of $his body. $He'll be clumsy and hesitant for some time, and $he refuses to accept that you are both willing and able to reshape her down to her very bones. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		$He exits the surgery very cautiously, since $he's still in considerable pain and isn't yet used to the way $his pelvis now fits together with the rest of $his body. $He'll be clumsy and hesitant for some time, and $he refuses to accept that you are both willing and able to reshape $him down to $his very bones. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "shoulders">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He exits the surgery gingerly, since the changes of proportion in her upper body have seriously affected her sense of balance, albeit temporarily. $He'll be clumsy and hesitant for some time, but $he's happy with her new shoulders. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He exits the surgery gingerly, since the changes of proportion in $his upper body have seriously affected $his sense of balance. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He exits the surgery gingerly, since the changes of proportion in $his upper body have seriously affected $his sense of balance, albeit temporarily. $He'll be clumsy and hesitant for some time, but $he's happy with $his new shoulders. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
-		$He exits the surgery gingerly, since the changes of proportion in her upper body have seriously affected her sense of balance, albeit temporarily. $He'll be clumsy and hesitant for some time, but $he's accepted her new shoulders. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		$He exits the surgery gingerly, since the changes of proportion in $his upper body have seriously affected $his sense of balance, albeit temporarily. $He'll be clumsy and hesitant for some time, but $he's accepted $his new shoulders. $He isn't much affected mentally. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<else>>
-		$He exits the surgery gingerly, since the changes of proportion in her upper body have seriously affected her sense of balance, albeit temporarily. $He'll be clumsy and hesitant for some time, and $he refuses to accept that you are both willing and able to reshape $him down to her very bones. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		$He exits the surgery gingerly, since the changes of proportion in $his upper body have seriously affected $his sense of balance, albeit temporarily. $He'll be clumsy and hesitant for some time, and $he refuses to accept that you are both willing and able to reshape $him down to $his very bones. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "heels">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He exits the surgery on all fours, unable to stand due to the changes to $his legs. $He finds a whorish pair of heels waiting for $him and eagerly puts them on, gingerly standing to find that $he can indeed walk comfortably while wearing them. $He struts back and forth experimentally and then offers <<if canSee($activeSlave)>>the mirror<<else>>you<</if>> $his asshole to check to see that her ability to take a standing buttfuck hasn't been affected. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He exits the surgery on all fours, unable to stand due to the changes to $his legs. A whorish pair of heels are slipped onto $him and $he is forced to $his feet to show that $he can indeed walk comfortably while wearing them. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He exits the surgery on all fours, unable to stand due to the changes to $his legs. $He finds a whorish pair of heels waiting for $him and eagerly puts them on, gingerly standing to find that $he can indeed walk comfortably while wearing them. $He struts back and forth experimentally and then offers <<if canSee($activeSlave)>>the mirror<<else>>you<</if>> $his asshole to check to see that $his ability to take a standing buttfuck hasn't been affected. @@.hotpink;$He has become more submissive due to your radical reshaping of $his body.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion > 20)>>
 		$He exits the surgery on all fours, unable to stand due to the changes to $his legs. $He finds a whorish pair of heels waiting for $him and obediently puts them on, gingerly standing to find that $he can indeed walk comfortably while wearing them. After a while $he realizes that $he'll never walk without looking like a stripper again, but $he accepts it. $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@
 	<<else>>
-		$He exits the surgery on all fours, unable to stand due to the changes to $his legs. $He finds a whorish pair of heels waiting for $him, but obstinately ignores them. After some time, $he realizes that the situation isn't changing and puts them on, gingerly standing to find that $he can indeed walk comfortably while wearing them. $His <<if canSee($activeSlave)>>eyes are<<else>>face is<</if>> filled with hatred when $he <<if canSee($activeSlave)>>sees her new and permanent appearance in the mirror<<else>>discovers this is the only way $he'll be able to stand now<</if>>. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		$He exits the surgery on all fours, unable to stand due to the changes to $his legs. $He finds a whorish pair of heels waiting for $him, but obstinately ignores them. After some time, $he realizes that the situation isn't changing and puts them on, gingerly standing to find that $he can indeed walk comfortably while wearing them. $His <<if canSee($activeSlave)>>eyes are<<else>>face is<</if>> filled with hatred when $he <<if canSee($activeSlave)>>sees $his new and permanent appearance in the mirror<<else>>discovers this is the only way $he'll be able to stand now<</if>>. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "heelsRestoration">>
-	<<if ($activeSlave.devotion >= -20)>>
-		$He exits the surgery on her own two feet. $He's still sore, but the modern surgery is fast and effective, and $he can use her restored legs immediately. $He gingerly stands on one foot, then the other; and even takes a few little hops. $He's grinning like a fool the whole time. @@.hotpink;$He has become more obedient due to gratitude.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He exits the surgery on $his own two feet. $He's still sore, but the modern surgery is fast and effective, and $he can use $his restored legs immediately. $He gingerly stands on one foot, then the other; and even takes a few little hops. $He obviously confused, but will get used to it soon enough. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion >= -20)>>
+		$He exits the surgery on $his own two feet. $He's still sore, but the modern surgery is fast and effective, and $he can use $his restored legs immediately. $He gingerly stands on one foot, then the other; and even takes a few little hops. $He's grinning like a fool the whole time. @@.hotpink;$He has become more obedient due to gratitude.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<else>>
-		$He exits the surgery on her own two feet. $He's still sore, but the modern surgery is fast and effective, and $he can use her restored legs immediately. $He gingerly stands on one foot, then the other; and even takes a few little hops. $He obviously confused, finding it surprising that you would go to the expense and trouble of repairing $him. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He exits the surgery on $his own two feet. $He's still sore, but the modern surgery is fast and effective, and $he can use $his restored legs immediately. $He gingerly stands on one foot, then the other; and even takes a few little hops. $He obviously confused, finding it surprising that you would go to the expense and trouble of repairing $him. As with all surgery @@.red;$his health has been slightly affected.@@
 	<</if>>
 
 <<case "amp">>
-	<<if ($activeSlave.devotion > 50)>>
-		Of course, $he could not walk out of the surgery; you carried $him. $He knows what a slave's life is, but $he did not really expect that it would ever come to this for $him. After a long, silent <<if canSee($activeSlave)>>stare at<<else>>consideration of<</if>> her limbless torso, $he squares her shoulders and visibly resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		Of course, $he could not walk out of the surgery; you carried $him. $He squirms the entire time trying to move the arms and legs $he now lacks. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		Of course, $he could not walk out of the surgery; you carried $him. $He knows what a slave's life is, but $he did not really expect that it would ever come to this for $him. After a long, silent <<if canSee($activeSlave)>>stare at<<else>>consideration of<</if>> $his limbless torso, $he squares $his shoulders and visibly resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<elseif ($activeSlave.devotion > 20)>>
-		Of course, $he could not walk out of the surgery; you carried $him. Despite her obedience, $he cries softly the whole time, shoulder and hip stumps moving occasionally as $he reflexively tries to stand - to walk - to touch $himself - to gesture - all things that $he will never do again. @@.mediumorchid;$He will struggle greatly with her medically created disability.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;cripplingly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 20>>
-		<<set $activeSlave.devotion -= 20>>
+		Of course, $he could not walk out of the surgery; you carried $him. Despite $his obedience, $he cries softly the whole time, shoulder and hip stumps moving occasionally as $he reflexively tries to stand - to walk - to touch $himself - to gesture - all things that $he will never do again. @@.mediumorchid;$He will struggle greatly with $his medically created disability.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;cripplingly afraid@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 20>>
 	<<else>>
-		Of course, $he could not walk out of the surgery; you carried $him. You had a good idea what her reaction would be, so <<if ($activeSlave.teeth == "removable")>>you removed her teeth<<else>>$he's muzzled<</if>> to prevent $him from trying to bite. $He sobs convulsively, and her <<if canSee($activeSlave)>>eyes dart desperately from side to side through her tears, hopelessly imploring the mirror to show her something other than this<<else>>stumps twitch pathetically with her desperate efforts to move $his limbs, to prove there is something other than this<</if>>. Anything other than this. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terrified to the point of insanity@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 50>>
-		<<set $activeSlave.devotion -= 50>>
+		Of course, $he could not walk out of the surgery; you carried $him. You had a good idea what $his reaction would be, so <<if ($activeSlave.teeth == "removable")>>you removed $his teeth<<else>>$he's muzzled<</if>> to prevent $him from trying to bite. $He sobs convulsively, and $his <<if canSee($activeSlave)>>eyes dart desperately from side to side through $his tears, hopelessly imploring the mirror to show $him something other than this<<else>>stumps twitch pathetically with $his desperate efforts to move $his limbs, to prove there is something other than this<</if>>. Anything other than this. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terrified to the point of insanity@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 50>>
 	<</if>>
 	
 <<case "ampInterface">>
-	<<if ($activeSlave.devotion > 50)>>
-		Of course, $he could not walk out of the surgery; you carried $him. $He knows what a slave's life is, but $he did not really expect that it would ever come to this for $him. Anesthesia has yet to completely wear off so it takes $him a while to notice ports in her stumps. When $he does, $he visibly relaxes, realizing $he may yet walk again. $He squares her shoulders and visibly resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		Of course, $he could not walk out of the surgery; you carried $him. $He squirms the entire time trying to move the arms and legs $he now lacks, never noticing the ports in $his stumps. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		Of course, $he could not walk out of the surgery; you carried $him. $He knows what a slave's life is, but $he did not really expect that it would ever come to this for $him. Anesthesia has yet to completely wear off so it takes $him a while to notice ports in $his stumps. When $he does, $he visibly relaxes, realizing $he may yet walk again. $He squares $his shoulders and visibly resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<elseif ($activeSlave.devotion > 20)>>
-		Of course, $he could not walk out of the surgery; you carried $him. Despite her obedience, $he cries softly the whole time, shoulder and hip stumps moving occasionally as $he reflexively tries to stand - to walk - to touch $himself - to gesture - all things that $he will never do again. $He slightly calms down when $he <<if canSee($activeSlave)>>sees<<else>>feels<</if>> ports installed in her stumps and realizes her immobility may not be permanent. Even so, $he is still @@.gold;terrified@@ of your total power over $his body. @@.mediumorchid;$He will struggle greatly with $his medically created disability.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		Of course, $he could not walk out of the surgery; you carried $him. Despite $his obedience, $he cries softly the whole time, shoulder and hip stumps moving occasionally as $he reflexively tries to stand - to walk - to touch $himself - to gesture - all things that $he will never do again. $He slightly calms down when $he <<if canSee($activeSlave)>>sees<<else>>feels<</if>> ports installed in $his stumps and realizes $his immobility may not be permanent. Even so, $he is still @@.gold;terrified@@ of your total power over $his body. @@.mediumorchid;$He will struggle greatly with $his medically created disability.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<<else>>
-		Of course, $he could not walk out of the surgery; you carried $him. You had a good idea what her reaction would be, so <<if ($activeSlave.teeth == "removable")>>you removed her teeth<<else>>$he's muzzled<</if>> to prevent $him from trying to bite. $He sobs convulsively, and <<if canSee($activeSlave)>>seeing<<else>>noticing<</if>> ports installed in her stumps does little to stop her tears. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terrified to the point of insanity@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 40>>
-		<<set $activeSlave.devotion -= 40>>
+		Of course, $he could not walk out of the surgery; you carried $him. You had a good idea what $his reaction would be, so <<if ($activeSlave.teeth == "removable")>>you removed $his teeth<<else>>$he's muzzled<</if>> to prevent $him from trying to bite. $He sobs convulsively, and <<if canSee($activeSlave)>>seeing<<else>>noticing<</if>> ports installed in $his stumps does little to stop $his tears. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terrified to the point of insanity@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 40, $activeSlave.devotion -= 40>>
 	<</if>>
 
 <<case "prostheticInterface">>
-	When $he is carried out of surgery $he <<if canSee($activeSlave)>>cranes her neck to better see the ports<<else>>wiggles her stumps trying to feel the ports<</if>> installed in her stumps. Recovery will be @@.red;significant,@@ since the surgical implantation of anchor points for the limbs themselves and the installation of nerve impulse detectors constituted major surgery.
-	<<if $activeSlave.devotion > 20>>
-		Nevertheless, $he's @@.hotpink;overwhelmed with gratitude,@@ and thanks you profusely the first chance $he gets. $He follows the acclimation program diligently, doing her best to learn how to be a good slave despite, or sometimes even because of, her disability. $He @@.mediumaquamarine;places more trust in you,@@ too, since you obviously have her best interests at heart.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
-	<<elseif $activeSlave.devotion >= -20>>
-		$He's @@.hotpink;overwhelmed with gratitude,@@ in part because $he didn't think you'd do something like this for $him. $He thanks you profusely the first chance $he gets, and follows the acclimation program diligently, trying to deserve the expense you went to. $He @@.mediumaquamarine;places more trust in you,@@ too, since you seem to have a plan for $him.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
-	<<else>>
-		Despite $his hatred of you, $he can't help but @@.mediumaquamarine;trust you a bit more,@@ since you clearly have a plan that involves putting a good deal of value into $him. Your goals might not be hers, but at least $he has an indication that you're not toying with $him.
-		<<set $activeSlave.trust += 5>>
+	When $he is carried out of surgery $he <<if canSee($activeSlave)>>cranes $his neck to better see the ports<<else>>wiggles $his stumps trying to feel the ports<</if>> installed in $his stumps. Recovery will be @@.red;significant,@@ since the surgical implantation of anchor points for the limbs themselves and the installation of nerve impulse detectors constituted major surgery.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion > 20>>
+			Nevertheless, $he's @@.hotpink;overwhelmed with gratitude,@@ and thanks you profusely the first chance $he gets. $He follows the acclimation program diligently, doing $his best to learn how to be a good slave despite, or sometimes even because of, $his disability. $He @@.mediumaquamarine;places more trust in you,@@ too, since you obviously have $his best interests at heart.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<<elseif $activeSlave.devotion >= -20>>
+			$He's @@.hotpink;overwhelmed with gratitude,@@ in part because $he didn't think you'd do something like this for $him. $He thanks you profusely the first chance $he gets, and follows the acclimation program diligently, trying to deserve the expense you went to. $He @@.mediumaquamarine;places more trust in you,@@ too, since you seem to have a plan for $him.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<<else>>
+			Despite $his hatred of you, $he can't help but @@.mediumaquamarine;trust you a bit more,@@ since you clearly have a plan that involves putting a good deal of value into $him. Your goals might not be hers, but at least $he has an indication that you're not toying with $him.
+			<<set $activeSlave.trust += 5>>
+		<</if>>
 	<</if>>
 
 <<case "amp1">>
@@ -1606,149 +1669,157 @@ As the remote surgery's long recovery cycle completes,
 	<</if>>
 
 <<case "amp2">>
-	<<if ($activeSlave.devotion > 50)>>
-		Of course, $he could not walk out of the surgery; you carried $him. $He knows what a slave's life is, but $he did not really expect that it would ever come to this for $him. Anesthesia has yet to completely wear off so it takes $him a while to notice ports in her stumps. When $he does, $he visibly relaxes, realizing $he may yet walk again. $He squares her shoulders and visibly resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		Of course, $he could not walk out of the surgery; you carried $him. $He squirms the entire time trying to move the arms and legs $he now lacks, never noticing the ports in $his stumps. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		Of course, $he could not walk out of the surgery; you carried $him. $He knows what a slave's life is, but $he did not really expect that it would ever come to this for $him. Anesthesia has yet to completely wear off so it takes $him a while to notice ports in $his stumps. When $he does, $he visibly relaxes, realizing $he may yet walk again. $He squares $his shoulders and visibly resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<elseif ($activeSlave.devotion > 20)>>
-		Of course, $he could not walk out of the surgery; you carried $him. Despite her obedience, $he cries softly the whole time, shoulder and hip stumps moving occasionally as $he reflexively tries to stand - to walk - to touch $himself - to gesture - all things that $he will never do again. $He slightly calms down when $he <<if canSee($activeSlave)>>sees<<else>>feels<</if>> ports installed in her stumps and realizes her immobility is not permanent. Even so, $he is still @@.gold;terrified@@ of your total power over $his body. @@.mediumorchid;$He will struggle greatly with her medically created disability.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 10>>
+		Of course, $he could not walk out of the surgery; you carried $him. Despite $his obedience, $he cries softly the whole time, shoulder and hip stumps moving occasionally as $he reflexively tries to stand - to walk - to touch $himself - to gesture - all things that $he will never do again. $He slightly calms down when $he <<if canSee($activeSlave)>>sees<<else>>feels<</if>> ports installed in $his stumps and realizes $his immobility is not permanent. Even so, $he is still @@.gold;terrified@@ of your total power over $his body. @@.mediumorchid;$He will struggle greatly with $his medically created disability.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<<else>>
-		Of course, $he could not walk out of the surgery; you carried $him. You had a good idea what $his reaction would be, so <<if ($activeSlave.teeth == "removable")>>you removed $his teeth<<else>>$he's muzzled<</if>> to prevent $him from trying to bite. $He sobs convulsively, and $his <<if canSee($activeSlave)>>eyes dart desperately from side to side through her tears, hopelessly imploring the mirror to show her something other than this<<else>>stumps twitch pathetically with her desperate efforts to move $his limbs, to prove there is something other than this<</if>>. Anything other than this. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terrified to the point of insanity@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 50>>
-		<<set $activeSlave.devotion -= 50>>
+		Of course, $he could not walk out of the surgery; you carried $him. You had a good idea what $his reaction would be, so <<if ($activeSlave.teeth == "removable")>>you removed $his teeth<<else>>$he's muzzled<</if>> to prevent $him from trying to bite. $He sobs convulsively, and $his <<if canSee($activeSlave)>>eyes dart desperately from side to side through $his tears, hopelessly imploring the mirror to show $him something other than this<<else>>stumps twitch pathetically with $his desperate efforts to move $his limbs, to prove there is something other than this<</if>>. Anything other than this. @@.mediumorchid;The surgical invasion has filled $him with horror and anger.@@ Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ $He is @@.gold;terrified to the point of insanity@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 50>>
 	<</if>>
 
 <<case "PLimb interface1">>
-	When $he is carried out of surgery $he <<if canSee($activeSlave)>>cranes her neck to better see the ports<<else>>wiggles her stumps trying to feel the ports<</if>> installed in her stumps. Recovery will be @@.red;significant,@@ since the surgical implantation of anchor points for the limbs themselves and the installation of nerve impulse detectors constituted major surgery.
-	<<if $activeSlave.devotion > 20>>
-		Nevertheless, $he's @@.hotpink;overwhelmed with gratitude,@@ and thanks you profusely the first chance $he gets. $He follows the acclimation program diligently, doing $his best to learn how to be a good slave despite, or sometimes even because of, $his disability. $He @@.mediumaquamarine;places more trust in you,@@ too, since you obviously have $his best interests at heart.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
-	<<elseif $activeSlave.devotion >= -20>>
-		$He's @@.hotpink;overwhelmed with gratitude,@@ in part because $he didn't think you'd do something like this for $him. $He thanks you profusely the first chance $he gets, and follows the acclimation program diligently, trying to deserve the expense you went to. $He @@.mediumaquamarine;places more trust in you,@@ too, since you seem to have a plan for $him.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
-	<<else>>
-		Despite $his hatred of you, $he can't help but @@.mediumaquamarine;trust you a bit more,@@ since you clearly have a plan that involves putting a good deal of value into $him. Your goals might not be hers, but at least $he has an indication that you're not toying with $him.
-		<<set $activeSlave.trust += 5>>
+	When $he is carried out of surgery $he <<if canSee($activeSlave)>>cranes $his neck to better see the ports<<else>>wiggles $his stumps trying to feel the ports<</if>> installed in $his stumps. Recovery will be @@.red;significant,@@ since the surgical implantation of anchor points for the limbs themselves and the installation of nerve impulse detectors constituted major surgery.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion > 20>>
+			Nevertheless, $he's @@.hotpink;overwhelmed with gratitude,@@ and thanks you profusely the first chance $he gets. $He follows the acclimation program diligently, doing $his best to learn how to be a good slave despite, or sometimes even because of, $his disability. $He @@.mediumaquamarine;places more trust in you,@@ too, since you obviously have $his best interests at heart.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<<elseif $activeSlave.devotion >= -20>>
+			$He's @@.hotpink;overwhelmed with gratitude,@@ in part because $he didn't think you'd do something like this for $him. $He thanks you profusely the first chance $he gets, and follows the acclimation program diligently, trying to deserve the expense you went to. $He @@.mediumaquamarine;places more trust in you,@@ too, since you seem to have a plan for $him.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<<else>>
+			Despite $his hatred of you, $he can't help but @@.mediumaquamarine;trust you a bit more,@@ since you clearly have a plan that involves putting a good deal of value into $him. Your goals might not be hers, but at least $he has an indication that you're not toying with $him.
+			<<set $activeSlave.trust += 5>>
+		<</if>>
 	<</if>>
 
 <<case "PLimb interface2">>
 	When $he is carried out of surgery $he <<if canSee($activeSlave)>>cranes $his neck to better see the ports<<else>>wiggles $his stumps trying to feel the ports<</if>> installed in $his stumps. $His stumps twitch slightly as the software begins configuring. Recovery will be @@.red;significant,@@ since the surgical implantation of anchor points for the limbs themselves and the installation of nerve bridges constituted major surgery.
-	<<if $activeSlave.devotion > 20>>
-		Nevertheless, $he's @@.hotpink;overwhelmed with gratitude,@@ and thanks you profusely the first chance $he gets. $He follows the acclimation program diligently, doing $his best to learn how to be a good slave despite, or sometimes even because of, $his disability. $He @@.mediumaquamarine;places more trust in you,@@ too, since you obviously have her best interests at heart.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
-	<<elseif $activeSlave.devotion >= -20>>
-		$He's @@.hotpink;overwhelmed with gratitude,@@ in part because $he didn't think you'd do something like this for $him. $He thanks you profusely the first chance $he gets, and follows the acclimation program diligently, trying to deserve the expense you went to. $He @@.mediumaquamarine;places more trust in you,@@ too, since you seem to have a plan for $him.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion > 20>>
+			Nevertheless, $he's @@.hotpink;overwhelmed with gratitude,@@ and thanks you profusely the first chance $he gets. $He follows the acclimation program diligently, doing $his best to learn how to be a good slave despite, or sometimes even because of, $his disability. $He @@.mediumaquamarine;places more trust in you,@@ too, since you obviously have $his best interests at heart.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<<elseif $activeSlave.devotion >= -20>>
+			$He's @@.hotpink;overwhelmed with gratitude,@@ in part because $he didn't think you'd do something like this for $him. $He thanks you profusely the first chance $he gets, and follows the acclimation program diligently, trying to deserve the expense you went to. $He @@.mediumaquamarine;places more trust in you,@@ too, since you seem to have a plan for $him.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
 		<<else>>
-		Despite $his hatred of you, $he can't help but @@.mediumaquamarine;trust you a bit more,@@ since you clearly have a plan that involves putting a good deal of value into $him. Your goals might not be hers, but at least $he has an indication that you're not toying with $him.
-		<<set $activeSlave.trust += 5>>
+			Despite $his hatred of you, $he can't help but @@.mediumaquamarine;trust you a bit more,@@ since you clearly have a plan that involves putting a good deal of value into $him. Your goals might not be hers, but at least $he has an indication that you're not toying with $him.
+			<<set $activeSlave.trust += 5>>
+		<</if>>
 	<</if>>
 
 <<case "PLimb interface3">>
-	When $he is carried out of surgery $he <<if canSee($activeSlave)>>cranes her neck to better see the ports<<else>>wiggles her stumps trying to feel the ports<</if>> installed in her stumps. $His stumps twitch slightly as the software begins configuring. Since $he already had anchors installed in previous surgery this procedure was less invasive and thus @@.red;$his health has been only slightly affected@@.
-	<<if $activeSlave.devotion > 20>>
-		$He is @@.hotpink;overjoyed@@ when $he finds out this upgrade will allow $him to //feel// with $his limbs again and thanks you profusely the first chance $he gets. $He @@.mediumaquamarine;places more trust in you,@@ too, since you obviously have her best interests at heart.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
-	<<elseif $activeSlave.devotion >= -20>>
-		$He's @@.hotpink;overwhelmed with joy and gratitude,@@ when $he finds out this upgrade will allow $him to //feel// with $his limbs again, in part because $he didn't think you'd do something like this for $him. $He thanks you profusely the first chance $he gets and is determined to prove $himself worthy of the expense you went to for $him. $He @@.mediumaquamarine;places more trust in you,@@ too, since you seem to have a plan for $him.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
-		<<else>>
-		Despite $his hatred of you, $he can't help but feel some @@.mediumaquamarine;trust@@ and @@.hotpink;gratitude,@@ towards you, since you clearly have a plan that involves putting a good deal of value into $him. Your goals might not be hers, but at least $he has an indication that you're not toying with $him.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
+	When $he is carried out of surgery $he <<if canSee($activeSlave)>>cranes $his neck to better see the ports<<else>>wiggles $his stumps trying to feel the ports<</if>> installed in $his stumps. $His stumps twitch slightly as the software begins configuring. Since $he already had anchors installed in previous surgery this procedure was less invasive and thus @@.red;$his health has been only slightly affected@@.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion > 20>>
+			$He is @@.hotpink;overjoyed@@ when $he finds out this upgrade will allow $him to //feel// with $his limbs again and thanks you profusely the first chance $he gets. $He @@.mediumaquamarine;places more trust in you,@@ too, since you obviously have $his best interests at heart.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<<elseif $activeSlave.devotion >= -20>>
+			$He's @@.hotpink;overwhelmed with joy and gratitude,@@ when $he finds out this upgrade will allow $him to //feel// with $his limbs again, in part because $he didn't think you'd do something like this for $him. $He thanks you profusely the first chance $he gets and is determined to prove $himself worthy of the expense you went to for $him. $He @@.mediumaquamarine;places more trust in you,@@ too, since you seem to have a plan for $him.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+			<<else>>
+			Despite $his hatred of you, $he can't help but feel some @@.mediumaquamarine;trust@@ and @@.hotpink;gratitude,@@ towards you, since you clearly have a plan that involves putting a good deal of value into $him. Your goals might not be hers, but at least $he has an indication that you're not toying with $him.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<</if>>
 	<</if>>
 
 <<case "basicPLimbs">>
-	$He exits the surgery hesitantly, the software of her prosthetic limbs and the wetware of her brain working together to figure out how to walk together under the tutelage of a prescribed tutorial. Recovery will be @@.red;significant,@@ since the surgical implantation of anchor points for the limbs themselves and the installation of nerve impulse detectors constituted major surgery.
-	<<if $activeSlave.devotion > 20>>
-		Nevertheless, $he's @@.hotpink;overwhelmed with gratitude,@@ and thanks you profusely the first chance $he gets. $He follows the acclimation program diligently, doing her best to learn how to be a good slave despite, or sometimes even because of, her artificial arms and legs. $He @@.mediumaquamarine;places more trust in you,@@ too, since you obviously have her best interests at heart.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
-	<<elseif $activeSlave.devotion >= -20>>
-		$He's @@.hotpink;overwhelmed with gratitude,@@ in part because $he didn't think you'd do something like this for $him. $He thanks you profusely the first chance $he gets, and follows the acclimation program diligently, trying to deserve the expense you went to. $He @@.mediumaquamarine;places more trust in you,@@ too, since you seem to have a plan for $him.
-		<<set $activeSlave.devotion += 5>>
-		<<set $activeSlave.trust += 5>>
-	<<else>>
-		Despite $his hatred of you, $he can't help but @@.mediumaquamarine;trust you a bit more,@@ since you clearly have a plan that involves putting a good deal of value into $him. Your goals might not be hers, but at least $he has an indication that you're not toying with $him.
-		<<set $activeSlave.trust += 5>>
+	$He exits the surgery hesitantly, the software of $his prosthetic limbs and the wetware of $his brain working together to figure out how to walk together under the tutelage of a prescribed tutorial. Recovery will be @@.red;significant,@@ since the surgical implantation of anchor points for the limbs themselves and the installation of nerve impulse detectors constituted major surgery.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion > 20>>
+			Nevertheless, $he's @@.hotpink;overwhelmed with gratitude,@@ and thanks you profusely the first chance $he gets. $He follows the acclimation program diligently, doing $his best to learn how to be a good slave despite, or sometimes even because of, $his artificial arms and legs. $He @@.mediumaquamarine;places more trust in you,@@ too, since you obviously have $his best interests at heart.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<<elseif $activeSlave.devotion >= -20>>
+			$He's @@.hotpink;overwhelmed with gratitude,@@ in part because $he didn't think you'd do something like this for $him. $He thanks you profusely the first chance $he gets, and follows the acclimation program diligently, trying to deserve the expense you went to. $He @@.mediumaquamarine;places more trust in you,@@ too, since you seem to have a plan for $him.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+		<<else>>
+			Despite $his hatred of you, $he can't help but @@.mediumaquamarine;trust you a bit more,@@ since you clearly have a plan that involves putting a good deal of value into $him. Your goals might not be hers, but at least $he has an indication that you're not toying with $him.
+			<<set $activeSlave.trust += 5>>
+		<</if>>
 	<</if>>
 
 <<case "sexPLimbs">>
 	$His Limb upgrades took place in the surgery, since its manipulators are well suited to delicate work on circuitry and ceramics as well as on flesh. $He exits the surgery experimenting with $his new arms and legs.
-	<<if $activeSlave.devotion <= 20>>
-		$He rapidly discovers that $his fingertips are now vibrators, and then makes a mess when $he figures out that $his hands can dispense lube without figuring out how to make them stop dispensing lube. $He's frustrated and @@.gold;frightened,@@ realizing that even $his prosthetics are now customized to suit $his purpose as a human sex toy. $He knew $he was a toy before, but somehow, being a literal vibrator is a bit much for $him.
-		<<set $activeSlave.trust -= 5>>
-	<<elseif $activeSlave.energy > 95>>
-		Since $he's a nympho, $he discovers $his new sexual functions in a hurry. They trigger in part is based on arousal, and $he's never not aroused, so they activate one by one as $he leaves the surgery. The vibration, lube, and other dirty functions surprise $him, and it takes $him a moment to realize what's going on, but $he begins to breathe hard when $he understands. $He runs off to try them out, and @@.hotpink;thanks you profusely,@@ if tiredly, the next time $he sees you.
-		<<set $activeSlave.devotion += 5>>
-	<<else>>
-		$He discovers $his sexy new functions one by one. The vibration, lube, and other dirty functions surprise $him, and it takes $him a moment to realize what's going on, but $he begins to shake with amusement when $he understands. $He heads off to try them out, and @@.hotpink;thanks you politely@@ the next time $he sees you.
-		<<set $activeSlave.devotion += 3>>
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion <= 20>>
+			$He rapidly discovers that $his fingertips are now vibrators, and then makes a mess when $he figures out that $his hands can dispense lube without figuring out how to make them stop dispensing lube. $He's frustrated and @@.gold;frightened,@@ realizing that even $his prosthetics are now customized to suit $his purpose as a human sex toy. $He knew $he was a toy before, but somehow, being a literal vibrator is a bit much for $him.
+			<<set $activeSlave.trust -= 5>>
+		<<elseif $activeSlave.energy > 95>>
+			Since $he's a nympho, $he discovers $his new sexual functions in a hurry. They trigger in part is based on arousal, and $he's never not aroused, so they activate one by one as $he leaves the surgery. The vibration, lube, and other dirty functions surprise $him, and it takes $him a moment to realize what's going on, but $he begins to breathe hard when $he understands. $He runs off to try them out, and @@.hotpink;thanks you profusely,@@ if tiredly, the next time $he sees you.
+			<<set $activeSlave.devotion += 5>>
+		<<else>>
+			$He discovers $his sexy new functions one by one. The vibration, lube, and other dirty functions surprise $him, and it takes $him a moment to realize what's going on, but $he begins to shake with amusement when $he understands. $He heads off to try them out, and @@.hotpink;thanks you politely@@ the next time $he sees you.
+			<<set $activeSlave.devotion += 3>>
+		<</if>>
 	<</if>>
 
 <<case "beautyPLimbs">>
 	$His Limb upgrades took place in the surgery, since its manipulators are well suited to delicate work on circuitry and ceramics as well as on flesh. $He exits the surgery <<if canSee($activeSlave)>>marvelling at the beautiful, natural appearance of $his new arms and legs<<else>>thanking you for $his new arms and legs, unaware of how natural they look<</if>>.
-	<<if $activeSlave.devotion <= 20>>
-		$He's @@.mediumaquamarine;more willing to trust you@@ after this. If $he doubts that you have some sort of long term plan for $him, all $he has to do is <<if canSee($activeSlave)>>look down and examine<<else>>feel<</if>> $his elegant, natural prosthetics, which are often mistaken for the genuine article. Even $he makes the mistake at times as $he gets used to them.
-		<<set $activeSlave.trust += 5>>
-	<<elseif $activeSlave.entertainSkill >= 100>>
-		Since $he's a masterful entertainer, $he knows multiple styles of dance, though $his straightforward modern prosthetics never allowed $him to be anything more than a mechanically competent dancer. $He finds that $he has far better balance now, in addition to looking more natural. Before long, $he goes //en pointe// and holds the position, before collapsing in a heap. It soon becomes apparent that this wasn't due to clumsiness: $he's sobbing so hard $he can barely breathe. $He @@.hotpink;thanks you profusely@@ the next time $he sees you, eyes still puffy with tears of joy.
-		<<set $activeSlave.devotion += 5>>
-	<<else>>
-		When $he first <<if canSee($activeSlave)>>catches sight of $himself in a mirror<<else>>runs a new finger over $his natural feeling skin<</if>>, $he begins to cry. Terribly complex emotions war across $his face: gratitude, joy, regret, and something undefinable. Blinking, $he uses newly elegant fingertips to trace the scarcely visible seams where $his artificial and natural skin meet. $He @@.hotpink;thanks you profusely@@ the next time $he sees you, eyes still puffy with tears.
-		<<set $activeSlave.devotion += 3>>
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion <= 20>>
+			$He's @@.mediumaquamarine;more willing to trust you@@ after this. If $he doubts that you have some sort of long term plan for $him, all $he has to do is <<if canSee($activeSlave)>>look down and examine<<else>>feel<</if>> $his elegant, natural prosthetics, which are often mistaken for the genuine article. Even $he makes the mistake at times as $he gets used to them.
+			<<set $activeSlave.trust += 5>>
+		<<elseif $activeSlave.entertainSkill >= 100>>
+			Since $he's a masterful entertainer, $he knows multiple styles of dance, though $his straightforward modern prosthetics never allowed $him to be anything more than a mechanically competent dancer. $He finds that $he has far better balance now, in addition to looking more natural. Before long, $he goes //en pointe// and holds the position, before collapsing in a heap. It soon becomes apparent that this wasn't due to clumsiness: $he's sobbing so hard $he can barely breathe. $He @@.hotpink;thanks you profusely@@ the next time $he sees you, eyes still puffy with tears of joy.
+			<<set $activeSlave.devotion += 5>>
+		<<else>>
+			When $he first <<if canSee($activeSlave)>>catches sight of $himself in a mirror<<else>>runs a new finger over $his natural feeling skin<</if>>, $he begins to cry. Terribly complex emotions war across $his face: gratitude, joy, regret, and something undefinable. Blinking, $he uses newly elegant fingertips to trace the scarcely visible seams where $his artificial and natural skin meet. $He @@.hotpink;thanks you profusely@@ the next time $he sees you, eyes still puffy with tears.
+			<<set $activeSlave.devotion += 3>>
+		<</if>>
 	<</if>>
 
 <<case "combatPLimbs">>
 	$His Limb upgrades took place in the surgery, since its manipulators are well suited to delicate work on circuitry and ceramics as well as on flesh. $He exits the surgery wondering at the bulky <<if canSee($activeSlave)>>appearance<<else>>weight<</if>> of $his reinforced arms and legs.
-	<<if $activeSlave.devotion <= 20>>
-		$He's @@.gold;frightened,@@ once $he discovers what $he can do, and what $he is. $His integral weapons are locked out by the arcology systems, for now, but $he quickly realizes what they are. $He is not, to say the least, thrilled by the revelation that $he is now a living weapon, and is kept awake by thoughts of what you might be planning for $him.
-		<<set $activeSlave.trust -= 5>>
-	<<elseif ($activeSlave.combatSkill == 1) && ($activeSlave.devotion > 75)>>
-		$He leaves the surgery with a purpose, $his footsteps a bit heavier than before. $He heads down to the armory's range, still naked, and when $he gets there, $he places $his dominant hand over $his thigh on that side. It folds open, revealing a handgun, which $he draws and empties into a <<if canSee($activeSlave)>>target<<else>>beeping target<</if>>; as $he fires the last rounds, $he uses $his off hand to reach down to that thigh, which folds open and reveals spare magazines. $He @@.hotpink;thanks you profusely@@ the next time $he sees you. $He knows that $his prosthetics are a wash, at best, in terms of actual combat effectiveness; they'll never match the reliability and dexterity of the genuine article. But $he thinks they are //cool.//
-		<<set $activeSlave.devotion += 5>>
-	<<else>>
-		$He has mixed feelings about what $he soon discovers. $He's a living weapon now, and has to live with the constant knowledge that $he can incapacitate or kill with nothing more than what's contained within $his arms and legs. $He's @@.hotpink;touched,@@ though, by the tremendous trust this shows. $He knows that the arcology would instantly lock out $his weapons if $he were to misbehave, but $he's still affected.
-		<<set $activeSlave.devotion += 3>>
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion <= 20>>
+			$He's @@.gold;frightened,@@ once $he discovers what $he can do, and what $he is. $His integral weapons are locked out by the arcology systems, for now, but $he quickly realizes what they are. $He is not, to say the least, thrilled by the revelation that $he is now a living weapon, and is kept awake by thoughts of what you might be planning for $him.
+			<<set $activeSlave.trust -= 5>>
+		<<elseif ($activeSlave.combatSkill == 1) && ($activeSlave.devotion > 75)>>
+			$He leaves the surgery with a purpose, $his footsteps a bit heavier than before. $He heads down to the armory's range, still naked, and when $he gets there, $he places $his dominant hand over $his thigh on that side. It folds open, revealing a handgun, which $he draws and empties into a <<if canSee($activeSlave)>>target<<else>>beeping target<</if>>; as $he fires the last rounds, $he uses $his off hand to reach down to that thigh, which folds open and reveals spare magazines. $He @@.hotpink;thanks you profusely@@ the next time $he sees you. $He knows that $his prosthetics are a wash, at best, in terms of actual combat effectiveness; they'll never match the reliability and dexterity of the genuine article. But $he thinks they are //cool.//
+			<<set $activeSlave.devotion += 5>>
+		<<else>>
+			$He has mixed feelings about what $he soon discovers. $He's a living weapon now, and has to live with the constant knowledge that $he can incapacitate or kill with nothing more than what's contained within $his arms and legs. $He's @@.hotpink;touched,@@ though, by the tremendous trust this shows. $He knows that the arcology would instantly lock out $his weapons if $he were to misbehave, but $he's still affected.
+			<<set $activeSlave.devotion += 3>>
+		<</if>>
 	<</if>>
 
 <<case "cyberPLimbs">>
 	$His Limb upgrades were performed in the surgery, since its manipulators are well suited to delicate work on their circuitry as well as on flesh. $He exits the surgery marvelling <<if canSee($activeSlave)>>at the shiny artificial skin of $his new arms and legs<<else>>at the feel of the artificial skin of $his new arms and legs under $his new fingers<</if>>.
-	<<if $activeSlave.devotion <= 20>>
-		$He's @@.gold;frightened,@@ once $he discovers what $he can do, and what $he is. $His cybernetic limbs are restricted by the arcology systems, for now, but $he quickly realizes what they are. $He is not, to say the least, thrilled by the revelation that $he is now a living weapon, and is kept awake by thoughts of what you might be planning for $him.
-		<<set $activeSlave.trust -= 5>>
-	<<elseif ($activeSlave.combatSkill == 1) && ($activeSlave.devotion > 75)>>
-		$He leaves the surgery with a purpose, $his footsteps a bit heavier than before. $He heads down to the armory's range, still naked, and when $he gets there, $he places $his dominant hand over $his thigh on that side. It folds open, revealing a handgun, which $he draws and empties into a <<if canSee($activeSlave)>>target<<else>>beeping target<</if>>; as $he fires the last rounds, $he uses $his off hand to reach down to that thigh, which folds open and reveals spare magazines. $He @@.hotpink;thanks you profusely@@ the next time $he sees you. $He knows that $his prosthetics will enhance $his combat effectiveness and $he thinks they are //cool.//
-		<<set $activeSlave.devotion += 5>>
-	<<else>>
-		$He has mixed feelings about what $he soon discovers. $He's a living weapon now, and has to live with the constant knowledge that $he can incapacitate or kill with nothing more than $his arms and legs themselves. $He's @@.hotpink;touched,@@ though, by the tremendous trust this shows. $He knows that the arcology would instantly lock out $his limbs if $he were to misbehave, but $he's still affected.
-		<<set $activeSlave.devotion += 3>>
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if $activeSlave.devotion <= 20>>
+			$He's @@.gold;frightened,@@ once $he discovers what $he can do, and what $he is. $His cybernetic limbs are restricted by the arcology systems, for now, but $he quickly realizes what they are. $He is not, to say the least, thrilled by the revelation that $he is now a living weapon, and is kept awake by thoughts of what you might be planning for $him.
+			<<set $activeSlave.trust -= 5>>
+		<<elseif ($activeSlave.combatSkill == 1) && ($activeSlave.devotion > 75)>>
+			$He leaves the surgery with a purpose, $his footsteps a bit heavier than before. $He heads down to the armory's range, still naked, and when $he gets there, $he places $his dominant hand over $his thigh on that side. It folds open, revealing a handgun, which $he draws and empties into a <<if canSee($activeSlave)>>target<<else>>beeping target<</if>>; as $he fires the last rounds, $he uses $his off hand to reach down to that thigh, which folds open and reveals spare magazines. $He @@.hotpink;thanks you profusely@@ the next time $he sees you. $He knows that $his prosthetics will enhance $his combat effectiveness and $he thinks they are //cool.//
+			<<set $activeSlave.devotion += 5>>
+		<<else>>
+			$He has mixed feelings about what $he soon discovers. $He's a living weapon now, and has to live with the constant knowledge that $he can incapacitate or kill with nothing more than $his arms and legs themselves. $He's @@.hotpink;touched,@@ though, by the tremendous trust this shows. $He knows that the arcology would instantly lock out $his limbs if $he were to misbehave, but $he's still affected.
+			<<set $activeSlave.devotion += 3>>
+		<</if>>
 	<</if>>
 
 <<case "removeLimbs">>
-	<<if ($activeSlave.devotion > 50)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		Of course, $he could not walk out of the surgery; you carried $him. $He squirms the entire time trying to move the arms and legs that $he used to have. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
 		Of course, $he could not walk out of the surgery; you carried $him. $He knows what a slave's life is, but $he did not really expect $his artificial limbs would be removed again so suddenly. After a long, silent <<if canSee($activeSlave)>>stare at<<else>>consideration of<</if>> $his limbless torso, $he squares $his shoulders and visibly resolves to carry on being a good slave as best $he can. As $he was already amputated, there was no lasting effect. As with all surgery @@.red;$his health has been slightly affected.@@
 	<<elseif ($activeSlave.devotion > 20)>>
 		Of course, $he could not walk out of the surgery; you carried $him. Despite $his obedience, $he cries softly the whole time, shoulder and hip stumps moving occasionally as $he reflexively tries to stand - to walk - to touch $himself - to gesture - all things that $he had to learn to do again. Your removal of $his prosthetic limbs has caused @@.mediumorchid;$his devotion to drop@@ and @@.gold;$his trust to drop.@@ As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<<else>>
 		Of course, $he could not walk out of the surgery; you carried $him. It seems that $his mistrust of you was well founded and this removal of $his artificial limbs has caused @@.mediumorchid;$his devotion to drop@@ and @@.gold;$his trust to drop.@@ As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "ster">>
-	<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but lacks the mental faculties to know that $he'll never have a child now. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he knows enough about surgery and sex slaves to know that it means $he'll never have a child. $He is @@.mediumorchid;filled with grief@@ whenever $he thinks about the fact that feeling a life growing within $him is now, finally and forever, beyond $him. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 20>>
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 20>>
 	<<elseif ($activeSlave.energy > 95)>>
 		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he knows enough about surgery and sex slaves to know that it means $he'll never have to worry about a pussyfuck getting $him pregnant again. As far as $he's concerned, easier, less worrisome vaginal intercourse is a @@.hotpink;good thing;@@ one less thing to keep in mind when a guy blows his load inside $him. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
@@ -1760,15 +1831,15 @@ As the remote surgery's long recovery cycle completes,
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
 		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he knows enough about surgery and sex slaves to know that it means $he'll never get pregnant. $He does not understand the realities of $his life as a slave at a core level, so despite the fact that $he was never going to have a family, fertile or not, $he's @@.mediumorchid;resentful@@ of the surgical invasion. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "fert">>
-	<<if (($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)) || $activeSlave.origin == "$He sold $himself to you in the hope of someday bearing children.">>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but lacks the mental faculties to realize that $he now has a chance to get pregnant. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif (($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)) || $activeSlave.origin == "$He sold $himself to you in the hope of someday bearing children.">>
 		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he knows enough about surgery and sex slaves to know that it means $he now has a chance to get pregnant. $He is @@.hotpink;filled with joy@@ whenever $he thinks about the fact that feeling a life growing within $him is now, at last, a possibility. $He's so pleased that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 5>>
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 5>>
 	<<elseif ($activeSlave.devotion > 50)>>
 		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he knows enough about surgery and sex slaves to know that it means $he now has a chance to get pregnant. $He's @@.hotpink;grateful@@ that you think $him worthy of breeding, and even a little nervous about how $he'll perform as a breeder. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
@@ -1777,155 +1848,155 @@ As the remote surgery's long recovery cycle completes,
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
 		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he knows enough about surgery and sex slaves to know that it means $he may now be impregnated. $He does not understand the realities of $his life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ at the potential that $he'll be bred. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "addOvaries">>
-	<<if (($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)) || $activeSlave.origin == "$He sold $himself to you in the hope of someday bearing children.">>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he now has a chance to get pregnant. $He is filled with joy whenever $he thinks about the fact that feeling a life growing within her is now, at last, a possibility. $He now places @@.mediumaquamarine;total faith@@ in your plans for $his body and @@.hotpink;adores you@@ for giving $him a gift $he once thought impossible. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 10>>
-		<<set $activeSlave.devotion += 10>>
-		<<set $activeSlave.devotion += 20>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but lacks the mental faculties to realize that $he now has a chance to get pregnant. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif (($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)) || $activeSlave.origin == "$He sold $himself to you in the hope of someday bearing children.">>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he now has a chance to get pregnant. $He is filled with joy whenever $he thinks about the fact that feeling a life growing within $him is now, at last, a possibility. $He now places @@.mediumaquamarine;total faith@@ in your plans for $his body and @@.hotpink;adores you@@ for giving $him a gift $he once thought impossible. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust += 10, $activeSlave.devotion += 10>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman. $He is @@.mediumaquamarine;tremendously impressed@@ that you would devote such immense resources to altering $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for her future. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 5>>
-		<<set $activeSlave.devotion += 5>>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman. $He is @@.mediumaquamarine;tremendously impressed@@ that you would devote such immense resources to altering $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, so much so that $he is now more willing to @@.hotpink;submit to your plans@@ for her future. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion += 5>>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, so much so that $he is now more willing to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>>
 	<<else>>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, and @@.mediumorchid;furious@@ at her lack of control over her own person. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, and @@.mediumorchid;furious@@ at $his lack of control over $his own person. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "addTesticles">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anaesthetics lifts and feeling returns to her lower half. As a devoted slave, $he knew the essentials of the surgery before it was performed, so $he's excited to <<if canSee($activeSlave)>>see<<else>>feel<</if>> the results. $He is @@.mediumaquamarine;tremendously impressed@@ that you would devote such immense resources to altering $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for her future.
+	<<if $activeSlave.fetish == "mindbroken">>
+		It's not immediately apparent to $him what kind of surgery $he received, since all $he's left with is a nonspecific ache in $his abdomen. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anaesthetics lifts and feeling returns to $his lower half. As a devoted slave, $he knew the essentials of the surgery before it was performed, so $he's excited to <<if canSee($activeSlave)>>see<<else>>feel<</if>> the results. $He is @@.mediumaquamarine;tremendously impressed@@ that you would devote such immense resources to altering $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for $his future.
 		<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		It's not immediately apparent to her what kind of surgery $he received, since all $he's left with is a nonspecific ache in $his abdomen. As with all surgery @@.red;$his health has been slightly affected.@@
+		It's not immediately apparent to $him what kind of surgery $he received, since all $he's left with is a nonspecific ache in $his abdomen. As with all surgery @@.red;$his health has been slightly affected.@@
 	<<else>>
-		It's not immediately apparent to her what kind of surgery $he received, since all $he's left with is a nonspecific ache in $his abdomen. As with all surgery @@.red;$his health has been slightly affected.@@ $He doesn't have to know exactly what you did, though, to be @@.gold;mortified@@ and @@.mediumorchid;infuriated@@ by your messing around inside $his body. $He hasn't yet learned to accept that you control her completely, down to the arrangement and even presence of her internal organs.
+		It's not immediately apparent to $him what kind of surgery $he received, since all $he's left with is a nonspecific ache in $his abdomen. As with all surgery @@.red;$his health has been slightly affected.@@ $He doesn't have to know exactly what you did, though, to be @@.gold;mortified@@ and @@.mediumorchid;infuriated@@ by your messing around inside $his body. $He hasn't yet learned to accept that you control $him completely, down to the arrangement and even presence of $his internal organs.
 		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "addProstate">>
-	It's not immediately apparent to her what kind of surgery $he received, since all $he's left with is a terrible nonspecific ache in her lower parts. As with all surgery @@.red;$his health has been slightly affected.@@
-	<<if ($activeSlave.devotion > 50)>>
-		<<if $activeSlave.anus == 0>>
-			Since $he's still an anal virgin, $he's denied the most obvious way of discovering what's been added to $him. The revelation is deferred until the next time $he orgasms:
-		<<elseif canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-			The next time $he's penetrated, though, it's obvious:
-		<<elseif canPenetrate($activeSlave)>>
-			The next time $he uses $his cock, though, it's obvious:
-		<<else>>
-			The next time $he climaxes, though, it's obvious:
-		<</if>>
-		$he's shocked by the astounding volume of her<<if $activeSlave.dick == 0>> squirting female<</if>> ejaculation, since her new organ is of course hooked into her urethra and does its duty whenever $he climaxes<<if $activeSlave.balls == 0>> despite her lack of testicles to add actual semen to her copious emissions<</if>>.
-		<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")>>
-			$He was already an anal slut, but $he can now experience anal pleasure along an entirely new dimension. $He's @@.hotpink;extremely grateful,@@ and @@.lightsalmon;a more eager buttslut than ever.@@
-			<<set $activeSlave.devotion += 5, $activeSlave.fetishStrength = Math.clamp($activeSlave.fetishStrength+20,0,100)>>
+	It's not immediately apparent to $him what kind of surgery $he received, since all $he's left with is a terrible nonspecific ache in $his lower parts. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<<if ($activeSlave.devotion > 50)>>
+			<<if $activeSlave.anus == 0>>
+				Since $he's still an anal virgin, $he's denied the most obvious way of discovering what's been added to $him. The revelation is deferred until the next time $he orgasms:
+			<<elseif canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+				The next time $he's penetrated, though, it's obvious:
+			<<elseif canPenetrate($activeSlave)>>
+				The next time $he uses $his cock, though, it's obvious:
+			<<else>>
+				The next time $he climaxes, though, it's obvious:
+			<</if>>
+			$he's shocked by the astounding volume of $his<<if $activeSlave.dick == 0>> squirting female<</if>> ejaculation, since $his new organ is of course hooked into $his urethra and does its duty whenever $he climaxes<<if $activeSlave.balls == 0>> despite $his lack of testicles to add actual semen to $his copious emissions<</if>>.
+			<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")>>
+				$He was already an anal slut, but $he can now experience anal pleasure along an entirely new dimension. $He's @@.hotpink;extremely grateful,@@ and @@.lightsalmon;a more eager buttslut than ever.@@
+				<<set $activeSlave.devotion += 5, $activeSlave.fetishStrength = Math.clamp($activeSlave.fetishStrength+20,0,100)>>
+			<<else>>
+				As a sex slave, $he has of course heard of the pleasure of prostate stimulation,<<if $activeSlave.genes == "XY">> not to mention having once had one $himself,<</if>> and $he's @@.hotpink;duly grateful@@ that you've altered $him in a way that will make sexual duties more enjoyable.
+			<</if>>
+			<<set $activeSlave.devotion += 5>>
+		<<elseif ($activeSlave.devotion > 20)>>
+			The next time $he orgasms, $he's shocked by the astounding volume of $his<<if $activeSlave.dick == 0>> squirting female<</if>> ejaculation, since $his new organ is of course hooked into $his urethra and does its duty whenever $he climaxes<<if $activeSlave.balls == 0>> despite $his lack of testicles to add actual semen to $his copious emissions<</if>>. $His main reaction is confusion; this alteration is pretty far outside any of the more conventional surgeries slaves might expect to receive, and $his mixed feeling tend to cancel each other out.
 		<<else>>
-			As a sex slave, $he has of course heard of the pleasure of prostate stimulation,<<if $activeSlave.genes == "XY">> not to mention having once had one $himself,<</if>> and $he's @@.hotpink;duly grateful@@ that you've altered her in a way that will make sexual duties more enjoyable.
+			$He doesn't have to know exactly what you did, though, to be @@.gold;mortified@@ and @@.mediumorchid;infuriated@@ by your messing around inside $his body. $He hasn't yet learned to accept that you control $him completely, down to the arrangement and even presence of $his internal organs.
+			<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 		<</if>>
-		<<set $activeSlave.devotion += 5>>
-	<<elseif ($activeSlave.devotion > 20)>>
-		The next time $he orgasms, $he's shocked by the astounding volume of her<<if $activeSlave.dick == 0>> squirting female<</if>> ejaculation, since her new organ is of course hooked into her urethra and does its duty whenever $he climaxes<<if $activeSlave.balls == 0>> despite her lack of testicles to add actual semen to her copious emissions<</if>>. $His main reaction is confusion; this alteration is pretty far outside any of the more conventional surgeries slaves might expect to receive, and her mixed feeling tend to cancel each other out.
-	<<else>>
-		$He doesn't have to know exactly what you did, though, to be @@.gold;mortified@@ and @@.mediumorchid;infuriated@@ by your messing around inside $his body. $He hasn't yet learned to accept that you control her completely, down to the arrangement and even presence of her internal organs.
-		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
 	<</if>>
 
 <<case "addDick">>
-	<<if ($activeSlave.devotion > 50)>>
-		The surgery is invasive, and $he spends some time in the autosurgery, slowly recovering. As feeling slowly returns to the lower half of $his body and her thoughts coalesce against the dissipating fog of surgical pharmacology, $he strains to focus on $his groin<<if canSee($activeSlave)>>, visible in a ceiling mirror above her<</if>>. As a devoted slave, $he knew the essentials of the surgery before it was performed, so $he's excited to <<if canSee($activeSlave)>>see<<else>>feel<</if>> the result. $His eyes open wide as $he takes in the new member between $his legs. Suddenly, it twitches for the first time. The mixed pain of the terribly sore area and pleasure of new sensations floods $him, and $he jerks against the surgical restraints, gasping for breath. $He is @@.mediumaquamarine;tremendously impressed@@ that you would devote such immense resources to altering $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for her future. @@.red;$His health has been severely affected@@ by the intrusive surgery.
-		<<set $activeSlave.trust += 5>>
-		<<set $activeSlave.devotion += 5>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		The surgery is invasive, and $he spends some time in the autosurgery, slowly recovering. As feeling slowly returns to the lower half of $his body and $his thoughts coalesce against the dissipating fog of surgical pharmacology, $he strains to focus on $his groin<<if canSee($activeSlave)>>, visible in a ceiling mirror above $him<</if>>. $His eyes open wide as $he takes in the new member between $his legs. Suddenly, it twitches for the first time. The mixed pain of the terribly sore area and pleasure of new sensations floods $him, and $he jerks against the surgical restraints, gasping for breath. @@.red;$His health has been severely affected@@ by the intrusive surgery.
+	<<elseif ($activeSlave.devotion > 50)>>
+		The surgery is invasive, and $he spends some time in the autosurgery, slowly recovering. As feeling slowly returns to the lower half of $his body and $his thoughts coalesce against the dissipating fog of surgical pharmacology, $he strains to focus on $his groin<<if canSee($activeSlave)>>, visible in a ceiling mirror above $him<</if>>. As a devoted slave, $he knew the essentials of the surgery before it was performed, so $he's excited to <<if canSee($activeSlave)>>see<<else>>feel<</if>> the result. $His eyes open wide as $he takes in the new member between $his legs. Suddenly, it twitches for the first time. The mixed pain of the terribly sore area and pleasure of new sensations floods $him, and $he jerks against the surgical restraints, gasping for breath. $He is @@.mediumaquamarine;tremendously impressed@@ that you would devote such immense resources to altering $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for $his future. @@.red;$His health has been severely affected@@ by the intrusive surgery.
+		<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		The surgery is invasive, and $he spends some time in the autosurgery, slowly recovering. As feeling slowly returns to the lower half of $his body and her thoughts coalesce against the dissipating fog of surgical pharmacology, $he focuses on $his groin<<if canSee($activeSlave)>>, visible in a ceiling mirror above her<</if>>. $He slowly becomes aware of the soft new member resting between $his legs. $He has a penis. The thought process is visible on her face as the fact sinks in. $He has a penis! Unsure what to make of this unbelievable development, $he <<if canSee($activeSlave)>>turns her gaze away from the mirror and<</if>> shuts $his eyes tightly. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, so much so that $he is now more willing to @@.hotpink;submit to your plans@@ for her future. @@.red;$His health has been severely affected@@ by the intrusive surgery.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion += 5>>
+		The surgery is invasive, and $he spends some time in the autosurgery, slowly recovering. As feeling slowly returns to the lower half of $his body and $his thoughts coalesce against the dissipating fog of surgical pharmacology, $he focuses on $his groin<<if canSee($activeSlave)>>, visible in a ceiling mirror above $him<</if>>. $He slowly becomes aware of the soft new member resting between $his legs. $He has a penis. The thought process is visible on $his face as the fact sinks in. $He has a penis! Unsure what to make of this unbelievable development, $he <<if canSee($activeSlave)>>turns $his gaze away from the mirror and<</if>> shuts $his eyes tightly. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, so much so that $he is now more willing to @@.hotpink;submit to your plans@@ for $his future. @@.red;$His health has been severely affected@@ by the intrusive surgery.
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>>
 	<<else>>
-		The surgery is invasive, and $he spends some time in the autosurgery, slowly recovering. As feeling slowly returns to the lower half of $his body and her thoughts coalesce against the dissipating fog of surgical pharmacology, $he focuses on $his groin<<if canSee($activeSlave)>>, visible in a ceiling mirror above her<</if>>. $He slowly becomes aware of the soft new member resting between $his legs. $He has a penis. The thought process is visible on her face as the fact sinks in. $He has a penis! <<if $activeSlave.voice == 0>>$He tries to scream, but as a mute all $he can manage is pathetic, silent thrashing against the surgical restraints.<<else>>A huge scream rises out of $him, going on and on, until $he pauses to gasp for breath so $he can go on screaming.<</if>> $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, and @@.mediumorchid;furious@@ at her lack of control over her own person. @@.red;$His health has been severely affected@@ by the intrusive surgery.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		The surgery is invasive, and $he spends some time in the autosurgery, slowly recovering. As feeling slowly returns to the lower half of $his body and $his thoughts coalesce against the dissipating fog of surgical pharmacology, $he focuses on $his groin<<if canSee($activeSlave)>>, visible in a ceiling mirror above $him<</if>>. $He slowly becomes aware of the soft new member resting between $his legs. $He has a penis. The thought process is visible on $his face as the fact sinks in. $He has a penis! <<if $activeSlave.voice == 0>>$He tries to scream, but as a mute all $he can manage is pathetic, silent thrashing against the surgical restraints.<<else>>A huge scream rises out of $him, going on and on, until $he pauses to gasp for breath so $he can go on screaming.<</if>> $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, and @@.mediumorchid;furious@@ at $his lack of control over $his own person. @@.red;$His health has been severely affected@@ by the intrusive surgery.
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "addBalls">>
-	<<if ($activeSlave.devotion > 50)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anaesthetics lifts and feeling returns to $his lower half. $His new testicles are small, and $his scrotum is scarcely visible under $his dick, but its impact becomes immediately clear. $He slowly achieves an excruciatingly painful erection, panting with the pain as $his very sore member becomes hard. The terrible overstimulation brings a spurt of cum jetting out of $his cockhead. As the agony melts away, $he struggles to understand what just happened. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
 		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anaesthetics lifts and feeling returns to $his lower half. As a devoted slave, $he knew the essentials of the surgery before it was performed, so $he's excited to <<if canSee($activeSlave)>>see<<else>>feel<</if>> the result. $His new testicles are small, and $his scrotum is scarcely visible under $his dick, but its impact becomes immediately clear. $He slowly achieves an excruciatingly painful erection, panting with the pain as $his very sore member becomes hard. The terrible overstimulation brings a spurt of cum jetting out of $his cockhead. As the agony melts away, $he begins to giggle. $He is @@.mediumaquamarine;tremendously impressed@@ that you would devote such immense resources to altering $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 5>>
-		<<set $activeSlave.devotion += 5>>
+		<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anaesthetics lifts and feeling returns to $his lower half. $He cannot quite feel what has happened to $him yet, but $he does not have long to wait. $His new testicles are small, and $his scrotum is scarcely visible under $his dick, but its impact becomes immediately clear. $He slowly achieves an excruciatingly painful erection, panting with the pain as her very sore member becomes hard. The terrible overstimulation brings a spurt of cum jetting out of $his cockhead. As the agony melts away, the rush of new hormones clashes with her already roiling emotions, and $he begins to sob. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, so much so that $he is now more willing to @@.hotpink;submit to your plans@@ for her future. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion += 5>>
+		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anaesthetics lifts and feeling returns to $his lower half. $He cannot quite feel what has happened to $him yet, but $he does not have long to wait. $His new testicles are small, and $his scrotum is scarcely visible under $his dick, but its impact becomes immediately clear. $He slowly achieves an excruciatingly painful erection, panting with the pain as $his very sore member becomes hard. The terrible overstimulation brings a spurt of cum jetting out of $his cockhead. As the agony melts away, the rush of new hormones clashes with $his already roiling emotions, and $he begins to sob. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, so much so that $he is now more willing to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>>
 	<<else>>
-		The autosurgery allows $him to recover for a while. Once it's safe, though, it's time to test the function of $his new organs by seeing if they permit $him to achieve erection. The surgery slowly inserts a dildo into $his anus; the slave is so fuzzy from the surgery and accompanying drugs that it takes a while for the machine assfuck to register. Gradually, though, $his new dick becomes hard. Horrified, $he cannot take her <<if canSee($activeSlave)>>eyes off her own reflection in the ceiling mirror<<else>>mind off her soft cock<</if>> as it bobs and waves with the sodomy. A delayed reaction sets in as the soreness of surgical recovery competes with the stimulation: <<if $activeSlave.voice == 0>>$he tries to scream, but only manages to gasp repeatedly<<else>>$he howls with pain and terror<</if>> as the dildo forces a weak prostate orgasm. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, and @@.mediumorchid;furious@@ at her lack of control over her own person. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		The autosurgery allows $him to recover for a while. Once it's safe, though, it's time to test the function of $his new organs by seeing if they permit $him to achieve erection. The surgery slowly inserts a dildo into $his anus; the slave is so fuzzy from the surgery and accompanying drugs that it takes a while for the machine assfuck to register. Gradually, though, $his new dick becomes hard. Horrified, $he cannot take $his <<if canSee($activeSlave)>>eyes off $his own reflection in the ceiling mirror<<else>>mind off $his soft cock<</if>> as it bobs and waves with the sodomy. A delayed reaction sets in as the soreness of surgical recovery competes with the stimulation: <<if $activeSlave.voice == 0>>$he tries to scream, but only manages to gasp repeatedly<<else>>$he howls with pain and terror<</if>> as the dildo forces a weak prostate orgasm. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, and @@.mediumorchid;furious@@ at $his lack of control over $his own person. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "addScrotum">>
-	$He leaves the surgery gingerly, knowing $he's had surgery on her junk. Taking the first opportunity to <<if canSee($activeSlave)>>look at $his crotch in a mirror<<else>>feel $his crotch<</if>>, $he's
-	<<if $activeSlave.devotion > 50>>
-		overjoyed to find that $he has a ballsack. $He very obviously starts to think about how it will affect her various functions as a sex slave. First, $he flexes her kegel muscles, <<if canSee($activeSlave)>>watching raptly as<<else>>giggling as $he feels<</if>> her testicles move within the new pouch of soft skin beneath $his cock. Then $he starts to bounce and hump a little, this way and that, experimenting with how they move as $he performs fucking motions. $He's @@.mediumaquamarine;looking forward@@ to having fun with this latest alteration of $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for her future.
-		<<set $activeSlave.trust += 5>>
-		<<set $activeSlave.devotion += 5>>
+	$He leaves the surgery gingerly, knowing $he's had surgery on $his junk. Taking the first opportunity to <<if canSee($activeSlave)>>look at $his crotch in a mirror<<else>>feel $his crotch<</if>>, $he's
+	<<if $activeSlave.fetish == "mindbroken">>
+		confused to find something new dangling there.
+	<<elseif $activeSlave.devotion > 50>>
+		overjoyed to find that $he has a ballsack. $He very obviously starts to think about how it will affect $his various functions as a sex slave. First, $he flexes $his kegel muscles, <<if canSee($activeSlave)>>watching raptly as<<else>>giggling as $he feels<</if>> $his testicles move within the new pouch of soft skin beneath $his cock. Then $he starts to bounce and hump a little, this way and that, experimenting with how they move as $he performs fucking motions. $He's @@.mediumaquamarine;looking forward@@ to having fun with this latest alteration of $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for $his future.
+		<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 	<<elseif $activeSlave.devotion >= -20>>
-		shocked to find that $he has a ballsack. $He flexes her kegel muscles, mostly for lack of anything better to try, <<if canSee($activeSlave)>>watching raptly as<<else>>thinking deeply as<</if>> her testicles move within the new pouch of soft skin beneath $his cock. <<if canSee($activeSlave)>>Staring at the sight<<else>>Transfixed on the motion<</if>> with obviously mixed feelings, $he struggles for a while before bursting into girlish tears from the sheer ambivalence. $He's @@.gold;frightened of your ability to modify $him,@@ and is more willing than ever to @@.hotpink;submit to your plans@@ for her future.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion += 5>>
+		shocked to find that $he has a ballsack. $He flexes $his kegel muscles, mostly for lack of anything better to try, <<if canSee($activeSlave)>>watching raptly as<<else>>thinking deeply as<</if>> $his testicles move within the new pouch of soft skin beneath $his cock. <<if canSee($activeSlave)>>Staring at the sight<<else>>Transfixed on the motion<</if>> with obviously mixed feelings, $he struggles for a while before bursting into girlish tears from the sheer ambivalence. $He's @@.gold;frightened of your ability to modify $him,@@ and is more willing than ever to @@.hotpink;submit to your plans@@ for $his future.
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>>
 	<<else>>
-		shocked and appalled to find that $he has a ballsack. $He <<if canSee($activeSlave)>>stares at her newly visible<<else>>feels her new<</if>> balls in horror; it's obvious $he thought they were out of sight, and out of mind. $He checks $himself over carefully, and then bursts into tears, seemingly feeling that even if $he has a ballsack, $his cock is still a slave's bitchclit, and $his asshole is still a slut's asspussy. $He's @@.gold;frightened of your ability to modify $him,@@ and @@.mediumorchid;resentful@@ of how you use it.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		shocked and appalled to find that $he has a ballsack. $He <<if canSee($activeSlave)>>stares at $his newly visible<<else>>feels $his new<</if>> balls in horror; it's obvious $he thought they were out of sight, and out of mind. $He checks $himself over carefully, and then bursts into tears, seemingly feeling that even if $he has a ballsack, $his cock is still a slave's bitchclit, and $his asshole is still a slut's asspussy. $He's @@.gold;frightened of your ability to modify $him,@@ and @@.mediumorchid;resentful@@ of how you use it.
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 	As with all surgery @@.red;$his health has been slightly affected.@@
 
 <<case "addForeskin">>
 	<<if $activeSlave.dick > 0>>
-		$He leaves the surgery gingerly, knowing $he's had surgery on $his dick. Taking the first opportunity to check out her member<<if canSee($activeSlave)>> in a mirror<</if>>, $he's
-		<<if $activeSlave.devotion > 50>>
-			titillated to find that $he has a foreskin. $He examines it <<if canSee($activeSlave)>>carefully and then touches it, <</if>>very gently. $He's very sore, obviously, but the sudden sensation is almost too much for $him. $His resolution to investigate her remodeled dick, but later, is almost visible. It's obvious that $he can hardly wait, @@.mediumaquamarine;anticipating@@ all the new sensations that this new and very sensitive patch of skin can offer $him. $He's @@.hotpink;grateful@@ to you for improving $his dick.
-			<<set $activeSlave.trust += 5>>
-			<<set $activeSlave.devotion += 5>>
+		$He leaves the surgery gingerly, knowing $he's had surgery on $his dick. Taking the first opportunity to check out $his member<<if canSee($activeSlave)>> in a mirror<</if>>, $he's
+		<<if $activeSlave.fetish == "mindbroken">>
+			confused to find nothing has really changed.
+		<<elseif $activeSlave.devotion > 50>>
+			titillated to find that $he has a foreskin. $He examines it <<if canSee($activeSlave)>>carefully and then touches it, <</if>>very gently. $He's very sore, obviously, but the sudden sensation is almost too much for $him. $His resolution to investigate $his remodeled dick, but later, is almost visible. It's obvious that $he can hardly wait, @@.mediumaquamarine;anticipating@@ all the new sensations that this new and very sensitive patch of skin can offer $him. $He's @@.hotpink;grateful@@ to you for improving $his dick.
+			<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 		<<elseif $activeSlave.devotion >= -20>>
-			quite surprised, and a little relieved, to find that $he has a foreskin. $He examines it <<if canSee($activeSlave)>>carefully and then touches it, <</if>>very gently. $He's very sore, obviously, but the sudden sensation is almost too much for $him. $He seems to have been worried that something more dramatic than a reversal of circumcision had been done to $him, but her chief reaction is @@.hotpink;mystified submission@@ to you afterward. Your total power over $his body has been made clear to her in a way that provokes confusion, not fear.
+			quite surprised, and a little relieved, to find that $he has a foreskin. $He examines it <<if canSee($activeSlave)>>carefully and then touches it, <</if>>very gently. $He's very sore, obviously, but the sudden sensation is almost too much for $him. $He seems to have been worried that something more dramatic than a reversal of circumcision had been done to $him, but $his chief reaction is @@.hotpink;mystified submission@@ to you afterward. Your total power over $his body has been made clear to $him in a way that provokes confusion, not fear.
 			<<set $activeSlave.devotion += 5>>
 		<<else>>
-			shocked to find that $he has a foreskin. $He's not exactly resentful of you for doing this, since whatever her feelings about circumcision might be, it's very far from what $he feared might be done to $his dick. $His reaction is dominated by @@.gold;fear of the unknown,@@ since $he's now wondering whether $he has any ability to predict your actions at all. Whatever her mental model of you was before this, it probably didn't include you restoring her foreskin.
+			shocked to find that $he has a foreskin. $He's not exactly resentful of you for doing this, since whatever $his feelings about circumcision might be, it's very far from what $he feared might be done to $his dick. $His reaction is dominated by @@.gold;fear of the unknown,@@ since $he's now wondering whether $he has any ability to predict your actions at all. Whatever $his mental model of you was before this, it probably didn't include you restoring $his foreskin.
 			<<set $activeSlave.trust -= 5>>
 		<</if>>
 	<<else>>
-		$He leaves the surgery gingerly, knowing $he's had surgery on her genitals. Taking the first opportunity to check out $his crotch<<if canSee($activeSlave)>> in a mirror<</if>>, $he's
-		<<if $activeSlave.devotion > 50>>
-			titillated to find that her clitoris has a hood. $He examines it <<if canSee($activeSlave)>>carefully and then touches it, <</if>>very gently. $He's very sore, obviously, but the sudden sensation is almost too much for $him. $His resolution to investigate her remodeled clit, but later, is almost visible. It's obvious that $he can hardly wait, @@.mediumaquamarine;anticipating@@ all the new sensations that this new patch of skin can offer $him. $He's @@.hotpink;grateful@@ to you for improving $his pussy.
-			<<set $activeSlave.trust += 5>>
-			<<set $activeSlave.devotion += 5>>
+		$He leaves the surgery gingerly, knowing $he's had surgery on $his genitals. Taking the first opportunity to check out $his crotch<<if canSee($activeSlave)>> in a mirror<</if>>, $he's
+		<<if $activeSlave.fetish == "mindbroken">>
+			confused to find that $his clitoris is missing.
+		<<elseif $activeSlave.devotion > 50>>
+			titillated to find that $his clitoris has a hood. $He examines it <<if canSee($activeSlave)>>carefully and then touches it, <</if>>very gently. $He's very sore, obviously, but the sudden sensation is almost too much for $him. $His resolution to investigate $his remodeled clit, but later, is almost visible. It's obvious that $he can hardly wait, @@.mediumaquamarine;anticipating@@ all the new sensations that this new patch of skin can offer $him. $He's @@.hotpink;grateful@@ to you for improving $his pussy.
+			<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 		<<elseif $activeSlave.devotion >= -20>>
-			quite surprised, and a little relieved, to find that $he has clit has a hood. $He examines it <<if canSee($activeSlave)>>carefully and then touches it, <</if>>very gently. $He's very sore, obviously, but the sudden sensation is almost too much for $him. $He seems to have been worried that something more dramatic than a reversal of circumcision had been done to $him, but her chief reaction is @@.hotpink;mystified submission@@ to you afterward. Your total power over $his body has been made clear to her in a way that provokes confusion, not fear.
+			quite surprised, and a little relieved, to find that $he has clit has a hood. $He examines it <<if canSee($activeSlave)>>carefully and then touches it, <</if>>very gently. $He's very sore, obviously, but the sudden sensation is almost too much for $him. $He seems to have been worried that something more dramatic than a reversal of circumcision had been done to $him, but $his chief reaction is @@.hotpink;mystified submission@@ to you afterward. Your total power over $his body has been made clear to $him in a way that provokes confusion, not fear.
 			<<set $activeSlave.devotion += 5>>
 		<<else>>
-			shocked to find that her clitoris has a hood. $He's not exactly resentful of you for doing this, since whatever her feelings about circumcision might be, it's very far from what $he feared might be done to her clit. $His reaction is dominated by @@.gold;fear of the unknown,@@ since $he's now wondering whether $he has any ability to predict your actions at all. Whatever her mental model of you was before this, it probably didn't include you restoring her clitoral hood.
+			shocked to find that $his clitoris has a hood. $He's not exactly resentful of you for doing this, since whatever $his feelings about circumcision might be, it's very far from what $he feared might be done to $his clit. $His reaction is dominated by @@.gold;fear of the unknown,@@ since $he's now wondering whether $he has any ability to predict your actions at all. Whatever $his mental model of you was before this, it probably didn't include you restoring $his clitoral hood.
 			<<set $activeSlave.trust -= 5>>
 		<</if>>
 	<</if>>
 	As with all surgery @@.red;$his health has been slightly affected.@@
 
 <<case "anus">>
-	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with a terribly sore rear end and little desire to mess with it. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 		$He leaves the surgery with a terribly sore rear end. $He is @@.hotpink;filled with joy@@ at the prospect of having a tight butt all over again, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. If $he had much in the way of anal skills, @@.red;they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 10>>
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 10>>
 		<<if $activeSlave.analSkill > 10>>
 			<<set $activeSlave.analSkill -= 10>>
 		<</if>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He leaves the surgery with a terribly sore rear end. $He's a bit anxious at the prospect of the pain having to get back to a loose asshole the hard way, but $he's @@.hotpink;happy@@ that you think her worth the effort of surgical improvement. If $he had much in the way of anal skills, @@.red;they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		$He leaves the surgery with a terribly sore rear end. $He's a bit anxious at the prospect of the pain having to get back to a loose asshole the hard way, but $he's @@.hotpink;happy@@ that you think $him worth the effort of surgical improvement. If $he had much in the way of anal skills, @@.red;they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 		<<if $activeSlave.analSkill > 10>>
 			<<set $activeSlave.analSkill -= 10>>
@@ -1937,17 +2008,18 @@ As the remote surgery's long recovery cycle completes,
 			<<set $activeSlave.analSkill -= 10>>
 		<</if>>
 	<<else>>
-		$He leaves the surgery with a terribly sore rear end. $He's @@.mediumorchid;horrified@@ at surgical alteration of her rear end, and knows that this means that $he'll have to take the pain of sodomy in a tight ass all over again. If $he had much in the way of anal skills, @@.red;they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over her most intimate parts.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		$He leaves the surgery with a terribly sore rear end. $He's @@.mediumorchid;horrified@@ at surgical alteration of $his rear end, and knows that this means that $he'll have to take the pain of sodomy in a tight ass all over again. If $he had much in the way of anal skills, @@.red;they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his most intimate parts.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 		<<if $activeSlave.analSkill > 10>>
 			<<set $activeSlave.analSkill -= 10>>
 		<</if>>
 	<</if>>
 
 <<case "labiaplasty">>
-	<<if ($activeSlave.energy > 95)>>
-		$He leaves the surgery with a terribly sore pussy. $He is @@.hotpink;filled with joy@@ at the thought that $his pussy will now be more appealing to <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>her master<<else>>her mistress<</if>>; $he's already anticipating recovering enough to feel your cockhead pressing past her new lips, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with a terribly sore pussy and little desire to mess with it. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.energy > 95)>>
+		$He leaves the surgery with a terribly sore pussy. $He is @@.hotpink;filled with joy@@ at the thought that $his pussy will now be more appealing to $his <<= WrittenMaster($activeSlave)>>; $he's already anticipating recovering enough to feel your cockhead pressing past $his new lips, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.trust += 4>>
 		<<set $activeSlave.devotion += 10>>
 	<<elseif ($activeSlave.devotion > 50)>>
@@ -1957,63 +2029,64 @@ As the remote surgery's long recovery cycle completes,
 		$He leaves the surgery with a terribly sore pussy. $He's somewhat revolted by the surgery, but as far as $he's concerned, the short recovery period will mean a time during which $he can be sure no one will use $his pussy. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		$He leaves the surgery with a terribly sore pussy. $He's @@.mediumorchid;horrified@@ at surgical alteration of her womanhood; this is probably more of an invasion than $he could readily imagine before today. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over her most intimate parts.
+		$He leaves the surgery with a terribly sore pussy. $He's @@.mediumorchid;horrified@@ at surgical alteration of $his womanhood; this is probably more of an invasion than $he could readily imagine before today. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his most intimate parts.
 		<<set $activeSlave.trust -= 10>>
 		<<set $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "clitoral reduction">>
-	<<if ($activeSlave.energy > 95)>>
-		$He leaves the surgery with a terribly sore pussy. $He is @@.hotpink;filled with joy@@ at the thought that $his pussy will now be more appealing to <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>her master<<else>>her mistress<</if>>; her sensitivity has been reduced, @@.red;reducing her sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 10>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with a terribly sore pussy and little desire to mess with it. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.energy > 95)>>
+		$He leaves the surgery with a terribly sore pussy. $He is @@.hotpink;filled with joy@@ at the thought that $his pussy will now be more appealing to $his <<= WrittenMaster($activeSlave)>>; $his sensitivity has been reduced, @@.red;reducing $his sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 10>>
 		<<set $activeSlave.energy -= 5>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He leaves the surgery with a terribly sore pussy. $He's @@.hotpink;happy@@ that you think $his pussy worth the effort of surgical improvement, although her sensitivity has been reduced, @@.red;reducing her sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		$He leaves the surgery with a terribly sore pussy. $He's @@.hotpink;happy@@ that you think $his pussy worth the effort of surgical improvement, although $his sensitivity has been reduced, @@.red;reducing $his sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 		<<set $activeSlave.energy -= 5>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He leaves the surgery with a terribly sore pussy. $He's somewhat revolted by the surgery, but as far as $he's concerned, the short recovery period will mean a time during which $he can be sure no one will use $his pussy. The reduced sensitivity has @@.red;noticeably reduced her sex drive.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He leaves the surgery with a terribly sore pussy. $He's somewhat revolted by the surgery, but as far as $he's concerned, the short recovery period will mean a time during which $he can be sure no one will use $his pussy. The reduced sensitivity has @@.red;noticeably reduced $his sex drive.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 		<<set $activeSlave.energy -= 10>>
 	<<else>>
-		$He leaves the surgery with a terribly sore pussy. $He's @@.mediumorchid;horrified@@ at surgical alteration of her womanhood; this is probably more of an invasion than $he could readily imagine before today and @@.red;her sex drive takes a heavy hit.@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over her most intimate parts.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		$He leaves the surgery with a terribly sore pussy. $He's @@.mediumorchid;horrified@@ at surgical alteration of $his womanhood; this is probably more of an invasion than $he could readily imagine before today and @@.red;$his sex drive takes a heavy hit.@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his most intimate parts.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 		<<set $activeSlave.energy -= 20>>
 	<</if>>
 
 <<case "clitoral enlargement">>
-	<<if ($activeSlave.energy > 95)>>
-		$He leaves the surgery with a terribly sore pussy. $He is @@.hotpink;filled with joy@@ at the thought that $his pussy will now be more appealing to <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>her master<<else>>her mistress<</if>>; her sensitivity has been increased, @@.green;raising her sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 10>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with a terribly sore pussy and little desire to mess with it. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.energy > 95)>>
+		$He leaves the surgery with a terribly sore pussy. $He is @@.hotpink;filled with joy@@ at the thought that $his pussy will now be more appealing to $his <<= WrittenMaster($activeSlave)>>; $his sensitivity has been increased, @@.green;raising $his sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 10>>
 		<<set $activeSlave.energy += 1>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He leaves the surgery with a terribly sore pussy. $He's @@.hotpink;happy@@ that you think $his pussy worth the effort of surgical improvement; her sensitivity has been increased, @@.green;raising her sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		$He leaves the surgery with a terribly sore pussy. $He's @@.hotpink;happy@@ that you think $his pussy worth the effort of surgical improvement; $his sensitivity has been increased, @@.green;raising $his sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 		<<set $activeSlave.energy += 1>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He leaves the surgery with a terribly sore pussy. $He's somewhat revolted by the surgery, but as far as $he's concerned, the short recovery period will mean a time during which $he can be sure no one will use $his pussy. $His sensitivity has been increased, @@.green;raising her sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He leaves the surgery with a terribly sore pussy. $He's somewhat revolted by the surgery, but as far as $he's concerned, the short recovery period will mean a time during which $he can be sure no one will use $his pussy. $His sensitivity has been increased, @@.green;raising $his sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 		<<set $activeSlave.energy += 1>>
 	<<else>>
-		$He leaves the surgery with a terribly sore pussy. $He's @@.mediumorchid;horrified@@ at surgical alteration of her womanhood; this is probably more of an invasion than $he could readily imagine before today. $His sensitivity has been increased, @@.green;raising her sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over her most intimate parts.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		$He leaves the surgery with a terribly sore pussy. $He's @@.mediumorchid;horrified@@ at surgical alteration of $his womanhood; this is probably more of an invasion than $he could readily imagine before today. $His sensitivity has been increased, @@.green;raising $his sex drive slightly.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his most intimate parts.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 		<<set $activeSlave.energy += 1>>
 	<</if>>
 
 <<case "vagina">>
-	<<if ($activeSlave.energy > 95)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with a terribly sore pussy and little desire to mess with it. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.energy > 95)>>
 		$He leaves the surgery with a terribly sore pussy. $He is @@.hotpink;filled with joy@@ at the prospect of having a tight cunt again, so much so that $he now @@.mediumaquamarine;trusts@@ your plans for $his body. If $he had much in the way of vanilla sex skills, @@.red;they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust += 4>>
-		<<set $activeSlave.devotion += 10>>
+		<<set $activeSlave.trust += 4, $activeSlave.devotion += 10>>
 		<<if $activeSlave.vaginalSkill > 10>>
 			<<set $activeSlave.vaginalSkill -= 10>>
 		<</if>>
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He leaves the surgery with a terribly sore pussy. $He's @@.hotpink;happy@@ that you think her worth the effort of surgical improvement, and a little excited to feel like $he's a girl again. If $he had much in the way of vanilla sex skills, @@.red;they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		$He leaves the surgery with a terribly sore pussy. $He's @@.hotpink;happy@@ that you think $him worth the effort of surgical improvement, and a little excited to feel like $he's a girl again. If $he had much in the way of vanilla sex skills, @@.red;they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 		<<if $activeSlave.vaginalSkill > 10>>
 			<<set $activeSlave.vaginalSkill -= 10>>
@@ -2025,37 +2098,49 @@ As the remote surgery's long recovery cycle completes,
 			<<set $activeSlave.vaginalSkill -= 10>>
 		<</if>>
 	<<else>>
-		$He leaves the surgery with a terribly sore pussy. $He's @@.mediumorchid;horrified@@ at surgical alteration of her womanhood; this is probably more of an invasion than $he could readily imagine before today. If $he had much in the way of vanilla sex skills, @@.red;they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over her most intimate parts.
-		<<set $activeSlave.trust -= 10>>
-		<<set $activeSlave.devotion -= 5>>
+		$He leaves the surgery with a terribly sore pussy. $He's @@.mediumorchid;horrified@@ at surgical alteration of $his womanhood; this is probably more of an invasion than $he could readily imagine before today. If $he had much in the way of vanilla sex skills, @@.red;they've likely suffered.@@ As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;terribly afraid@@ of your total power over $his most intimate parts.
+		<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 		<<if $activeSlave.vaginalSkill > 10>>
 			<<set $activeSlave.vaginalSkill -= 10>>
 		<</if>>
 	<</if>>
 
 <<case "bellyscar">>
-	$He leaves the surgery with a soreness on $his lower abdomen, and is @@.hotpink;pleased@@ to find her c-section scar has been surgically removed. $He's happy that $he'll be able to show off her <<if $activeSlave.weight > 95>>big soft belly<<elseif $activeSlave.weight > 30>>soft belly<<elseif $activeSlave.muscles > 30>>muscular belly<<elseif $activeSlave.muscles > 5>>firm, ripped belly <<else>>firm, flat belly<</if>> without being self conscious about her scar. As with all surgery @@.red;$his health has been slightly affected.@@
-	<<set $activeSlave.devotion += 2>>
+	$He leaves the surgery with a soreness on $his lower abdomen, 
+	<<if $activeSlave.fetish == "mindbroken">>
+		and finds $his c-section scar has been surgically removed. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<else>>
+		and is @@.hotpink;pleased@@ to find $his c-section scar has been surgically removed. $He's happy that $he'll be able to show off $his <<if $activeSlave.weight > 95>>big soft belly<<elseif $activeSlave.weight > 30>>soft belly<<elseif $activeSlave.muscles > 30>>muscular belly<<elseif $activeSlave.muscles > 5>>firm, ripped belly <<else>>firm, flat belly<</if>> without being self conscious about $his scar. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<set $activeSlave.devotion += 2>>
+	<</if>>
 
 <<case "tummyTuck">>
-	$He leaves the surgery with a soreness on $his lower abdomen, and is @@.hotpink;pleased@@ to find it's no longer saggy. $He's happy that $he'll be able to show off her <<if $activeSlave.weight > 95>>big soft belly<<if $activeSlave.weight > 130>>, for awhile at least,<</if>><<elseif $activeSlave.weight > 30>>soft belly<<elseif $activeSlave.muscles > 30>>muscular belly<<elseif $activeSlave.muscles > 5>>once again firm, ripped belly <<else>>once again firm, flat belly<</if>> without being self conscious about it. As with all surgery @@.red;$his health has been affected.@@
-	<<set $activeSlave.devotion += 2>>
+	$He leaves the surgery with a soreness on $his lower abdomen, 
+	<<if $activeSlave.fetish == "mindbroken">>
+		and finds $his belly isn't so saggy anymore. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<else>>
+		and is @@.hotpink;pleased@@ to find it's no longer saggy. $He's happy that $he'll be able to show off $his <<if $activeSlave.weight > 95>>big soft belly<<if $activeSlave.weight > 130>>, for awhile at least,<</if>><<elseif $activeSlave.weight > 30>>soft belly<<elseif $activeSlave.muscles > 30>>muscular belly<<elseif $activeSlave.muscles > 5>>once again firm, ripped belly <<else>>once again firm, flat belly<</if>> without being self conscious about it. As with all surgery @@.red;$his health has been affected.@@
+		<<set $activeSlave.devotion += 2>>
+	<</if>>
 	
 <<case "bellyIn">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, and as such, knows you put something into her womb. $He is @@.hotpink;curious@@ about the details of the implant, and eagerly awaits to see the end result. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen that $he can not figure out the source of. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, and as such, knows you put something into $his womb. $He is @@.hotpink;curious@@ about the details of the implant, and eagerly awaits to see the end result. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He leaves the surgery with nothing but a nonspecific ache and slight weight in $his lower abdomen, and as such, knows you put something into her womb. $He understands the realities of her life as a slave, but $he is still surprised at what now resides in her womb. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He leaves the surgery with nothing but a nonspecific ache and slight weight in $his lower abdomen, and as such, knows you put something into $his womb. $He understands the realities of $his life as a slave, but $he is still surprised at what now resides in $his womb. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he knows enough about surgery and sex slaves to believe that $he has been impregnated. $He does not understand the realities of her life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ at the potential that $he's been bred. Even after what has been implanted into her womb is explained to $him, $he is no less defiant; though $he is relieved that $he isn't pregnant. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he knows enough about surgery and sex slaves to believe that $he has been impregnated. $He does not understand the realities of $his life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ at the potential that $he's been bred. Even after what has been implanted into $his womb is explained to $him, $he is no less defiant; though $he is relieved that $he isn't pregnant. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 
 <<case "cervixPump">>
-	<<if ($activeSlave.devotion > 50)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen and vagina that $he can not figure out the source of. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
 		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen and vagina, and as such, knows you put something into $his cervix. $He is @@.hotpink;curious@@ about the details of the implant, and eagerly awaits to see the end result. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
@@ -2063,19 +2148,20 @@ As the remote surgery's long recovery cycle completes,
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
 		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen and vagina, but $he knows enough about surgery and sex slaves to believe that $he has modified in $his most private place. $He does not understand the realities of $his life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ at the potential that $he's been subject of such modifications. Even after what has been implanted into $his womb is explained to $him, $he is no less defiant; though $he is relieved that it isn't some permanent mutilation, $he only feels dirty and humiliated when $he thinks of vaginal sex slowly rounding $his middle. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 	
 <<case "bellyInMale">>
-	<<if ($activeSlave.devotion > 50)>>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, and as such, knows you put something into $his body. $He is @@.hotpink;curious@@ about the details of the implant, and eagerly awaits to see the end result. As her surgery was very invasive @@.red;$his health has been greatly impacted.@@
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen that $he can not figure out the source of. As $his surgery was very invasive @@.red;$his health has been greatly impacted.@@
+	<<elseif ($activeSlave.devotion > 50)>>
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, and as such, knows you put something into $his body. $He is @@.hotpink;curious@@ about the details of the implant, and eagerly awaits to see the end result. As $his surgery was very invasive @@.red;$his health has been greatly impacted.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He leaves the surgery with nothing but a nonspecific ache and slight weight in $his lower abdomen, and as such, knows you put something into $his body. $He understands the realities of her life as a slave, but $he is still surprised at what now resides in her middle. As her surgery was very invasive @@.red;$his health has been greatly impacted.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He leaves the surgery with nothing but a nonspecific ache and slight weight in $his lower abdomen, and as such, knows you put something into $his body. $He understands the realities of $his life as a slave, but $he is still surprised at what now resides in $his middle. As $his surgery was very invasive @@.red;$his health has been greatly impacted.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 	<<else>>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, and as such, knows you put something into $his body. $He does not understand the realities of her life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ at your treatment of $his body. As her surgery was very invasive @@.red;$his health has been greatly impacted.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, and as such, knows you put something into $his body. $He does not understand the realities of $his life as a slave at a core level, so $he's @@.mediumorchid;terrified and angry@@ at your treatment of $his body. As $his surgery was very invasive @@.red;$his health has been greatly impacted.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 		<<set $activeSlave.trust -= 5>>
 		<<set $activeSlave.devotion -= 5>>
 	<</if>>
@@ -2086,44 +2172,46 @@ As the remote surgery's long recovery cycle completes,
 		$His bellybutton has become an outie from the size of the implant within $him.
 	<</if>>
 	<<if $activeSlave.bellyPain == 1>>
-		<<if ($activeSlave.devotion > 50)>>
-			<<if $activeSlave.amp != 1>>$He runs her fingers over her expanded belly experimentally and turns to you with a smile to show it off. $He's still sore, so $he doesn't bounce or stretch, but $he turns from side to side to let you see it from all angles.<<else>>$He bounces a little to feel the weight in her expanded middle and turns $his torso to you with a smile to show it off. $He's still sore, so $he doesn't move too much, but $he wiggles $himself a little to make it move for you.<</if>> @@.hotpink;$He's happy with your changes to $his body.@@ As with all surgery @@.red;$his health has been slightly affected.@@
+		<<if $activeSlave.fetish == "mindbroken">>
+			<<if canSee($activeSlave)>>$He eyes $his expanded belly<<else>>$He shifts $his expanded belly<</if>> skeptically. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He doesn't understand why it has gotten larger either. As with all surgery @@.red;$his health has been slightly affected.@@
+		<<elseif ($activeSlave.devotion > 50)>>
+			<<if $activeSlave.amp != 1>>$He runs $his fingers over $his expanded belly experimentally and turns to you with a smile to show it off. $He's still sore, so $he doesn't bounce or stretch, but $he turns from side to side to let you see it from all angles.<<else>>$He bounces a little to feel the weight in $his expanded middle and turns $his torso to you with a smile to show it off. $He's still sore, so $he doesn't move too much, but $he wiggles $himself a little to make it move for you.<</if>> @@.hotpink;$He's happy with your changes to $his body.@@ As with all surgery @@.red;$his health has been slightly affected.@@
 			<<set $activeSlave.devotion += 4>>
 		<<elseif ($activeSlave.devotion >= -20)>>
-			<<if canSee($activeSlave)>>$He eyes her expanded belly<<else>>$He shifts her expanded belly<</if>> skeptically. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+			<<if canSee($activeSlave)>>$He eyes $his expanded belly<<else>>$He shifts $his expanded belly<</if>> skeptically. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 			<<set $activeSlave.trust -= 5>>
 		<<else>>
-			<<if canSee($activeSlave)>>$He eyes her expanded belly<<else>>The new weight on $his midriff fills her<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this rounded belly as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
-			<<set $activeSlave.trust -= 10>>
-			<<set $activeSlave.devotion -= 5>>
+			<<if canSee($activeSlave)>>$He eyes $his expanded belly<<else>>The new weight on $his midriff fills $him<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this rounded belly as a cruel imposition@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
+			<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 5>>
 		<</if>>
 	<<elseif $activeSlave.bellyPain == 2>>
-		<<if ($activeSlave.devotion > 50)>>
-			<<if $activeSlave.amp != 1>>$He gingerly runs her fingers over her painfully expanded belly and turns to you to show it off. $He's extremely sore, so $he doesn't bounce or stretch, but $he tries to turn from side to side to let you see it from all angles.<<else>>$He is so sore, $he doesn't dare move the weight in her expanded middle, but $he turns $his torso to you to show it off. $He stomachs the pain and wiggles $himself a little to make it move for you.<</if>> @@.hotpink;$He's certain $he'll be happy with your changes to $his body@@ once the pain subsides. Since $his body has been pushed beyond its limits, @@.red;$his health has been notably affected.@@
+		<<if $activeSlave.fetish == "mindbroken">>
+			<<if canSee($activeSlave)>>$He eyes $his painfully expanded belly<<else>>$He shifts $his painfully expanded belly<</if>> skeptically. <<if $activeSlave.amp != 1>>$He's extremely sore, so $he doesn't touch it.<<else>>$He's still extremely sore, so $he keeps $his torso still.<</if>> $He can't understand how it has grown so much so fast. Since $his body has been pushed beyond its limits, @@.red;$his health has been notably affected.@@
+		<<elseif ($activeSlave.devotion > 50)>>
+			<<if $activeSlave.amp != 1>>$He gingerly runs $his fingers over $his painfully expanded belly and turns to you to show it off. $He's extremely sore, so $he doesn't bounce or stretch, but $he tries to turn from side to side to let you see it from all angles.<<else>>$He is so sore, $he doesn't dare move the weight in $his expanded middle, but $he turns $his torso to you to show it off. $He stomachs the pain and wiggles $himself a little to make it move for you.<</if>> @@.hotpink;$He's certain $he'll be happy with your changes to $his body@@ once the pain subsides. Since $his body has been pushed beyond its limits, @@.red;$his health has been notably affected.@@
 			<<set $activeSlave.devotion += 2>>
 		<<elseif ($activeSlave.devotion >= -20)>>
-			<<if canSee($activeSlave)>>$He eyes her painfully expanded belly<<else>>$He shifts her painfully expanded belly<</if>> skeptically. <<if $activeSlave.amp != 1>>$He's extremely sore, so $he doesn't touch it.<<else>>$He's still extremely sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. Since $his body has been pushed beyond its limits, @@.red;$his health has been notably affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
+			<<if canSee($activeSlave)>>$He eyes $his painfully expanded belly<<else>>$He shifts $his painfully expanded belly<</if>> skeptically. <<if $activeSlave.amp != 1>>$He's extremely sore, so $he doesn't touch it.<<else>>$He's still extremely sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, so $he expected something like this when $he was sent to the surgery. $He isn't much affected mentally. Since $his body has been pushed beyond its limits, @@.red;$his health has been notably affected.@@ $He is @@.gold;sensibly fearful@@ of your total power over $his body.
 			<<set $activeSlave.trust -= 7>>
 		<<else>>
-			<<if canSee($activeSlave)>>$He eyes her painfully expanded belly<<else>>The new, painful weight on $his midriff fills her<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still extremely sore, so $he doesn't touch it, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<<else>>$He's still extremely sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this rounded belly as a terribly cruel imposition@@. Since $his body has been pushed beyond its limits, @@.red;$his health has been notably affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
-			<<set $activeSlave.trust -= 12>>
-			<<set $activeSlave.devotion -= 7>>
+			<<if canSee($activeSlave)>>$He eyes $his painfully expanded belly<<else>>The new, painful weight on $his midriff fills $him<</if>> with resentment. <<if $activeSlave.amp != 1>>$He's still extremely sore, so $he doesn't touch it, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<<else>>$He's still extremely sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>$his face contorts with distaste<</if>>.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.mediumorchid;$he seems to view this rounded belly as a terribly cruel imposition@@. Since $his body has been pushed beyond its limits, @@.red;$his health has been notably affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
+			<<set $activeSlave.trust -= 12, $activeSlave.devotion -= 7>>
 		<</if>>
 	<</if>>
 	
 <<case "bellyDown">>
 	<<if $activeSlave.bellyImplant < 0>><<set $activeSlave.bellyImplant = 0>><</if>><<run SetBellySize($activeSlave)>>
-	<<if ($activeSlave.devotion > 50)>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		<<if canSee($activeSlave)>>$He eyes $his lighter belly with appreciation<<else>>$He attempts to shift $himself, only to find $his middle is not as heavy as before<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He can't why it is smaller now. As with all surgery @@.red;$his health has been slightly affected.@@
+	<<elseif ($activeSlave.devotion > 50)>>
 		<<if $activeSlave.amp != 1>>$He hefts $his lighter belly experimentally and turns to you with a smile to show off $his new, slimmer form. $He's still sore, so $he doesn't bounce or stretch, but $he turns from side to side to let you see it from all angles.<<else>>$He bounces a little to feel the change in weight within $his middle and turns $his torso to you with a smile to show is off. $He's still sore, so $he doesn't bounce too much.<</if>> @@.hotpink;$He's happy with your changes to $his body@@ and @@.mediumaquamarine;trusts@@ that your looking out for $his ability to serve you. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.devotion += 3>>
-		<<set $activeSlave.trust += 3>>
+		<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
 	<<elseif ($activeSlave.devotion >= -20)>>
 		<<if canSee($activeSlave)>>$He eyes $his lighter belly with appreciation<<else>>$He attempts to shift $himself, only to find $his middle is not as heavy as before<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it.<<else>>$He's still sore, so $he keeps $his torso still.<</if>> $He's come to terms with the fact that $he's a slave, but $he expected something other than this when $he was sent to the surgery. $He isn't much affected mentally. As with all surgery @@.red;$his health has been slightly affected.@@ $He is @@.mediumaquamarine;thankful@@ that you removed some weight off $his body.
 		<<set $activeSlave.trust += 2>>
 	<<else>>
-		<<if canSee($activeSlave)>>$He eyes $his lighter belly with relief<<else>>$He attempts to shift $himself, only to find her middle is not as heavy as before<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it, but $he breathes easier without the extra weight in $him.<<else>>$He's still sore, so $he keeps $his torso still, but $he breaths easier without the extra weight in $him.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.hotpink;$he seems appreciative of this literal weight lifted from $him@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
-		<<set $activeSlave.devotion += 1>>
-		<<set $activeSlave.trust -= 10>>
+		<<if canSee($activeSlave)>>$He eyes $his lighter belly with relief<<else>>$He attempts to shift $himself, only to find $his middle is not as heavy as before<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch it, but $he breathes easier without the extra weight in $him.<<else>>$He's still sore, so $he keeps $his torso still, but $he breaths easier without the extra weight in $him.<</if>> $He still thinks of $himself as a person, so $he isn't used to the idea of being surgically altered to suit your every whim. For now, @@.hotpink;$he seems appreciative of this literal weight lifted from $him@@. As with all surgery @@.red;$his health has been slightly affected.@@ $He is now @@.gold;terribly afraid@@ of your total power over $his body.
+		<<set $activeSlave.devotion += 1, $activeSlave.trust -= 10>>
 	<</if>>
 	
 <<case "bellyOut">>
@@ -2133,45 +2221,47 @@ As the remote surgery's long recovery cycle completes,
 <<case "body hair removal">>
 	<<if $activeSlave.underArmHStyle != "hairless">><<set $activeSlave.underArmHStyle = "bald">><</if>>
 	<<if $activeSlave.pubicHStyle != "hairless">><<set $activeSlave.pubicHStyle = "bald">><</if>>
-	When $he <<if $activeSlave.amp == 1>>is carried<<else>>walks<</if>> out of the surgery $he feels the breeze on $his skin and realizes that <<if $activeSlave.origHColor != "bald">>all hair below $his neck is missing<<else>>$he is now completely hairless<</if>>.<br>
-	<<if $activeSlave.devotion > 50>>
-		$He is @@.hotpink;happy@@ with how smooth $his body has become and is already @@.mediumaquamarine;wondering@@ what new kinky things you have planned for $him.
-		<<set $activeSlave.trust += 5>>
-		<<set $activeSlave.devotion += 5>>
-	<<elseif $activeSlave.devotion >= -20>>
-		$His new lack of body hair doesn't bother $him much, since it just means $he needs to spend less time getting rid of any unseemly hairs.
-		<<set $activeSlave.trust += 5>>
-	<<else>>
-		$He is @@.mediumorchid;sad@@ and @@.gold;frightened@@ that you would force this on $him.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
+	When $he <<if $activeSlave.amp == 1>>is carried<<else>>walks<</if>> out of the surgery $he feels the breeze on $his skin and realizes that <<if $activeSlave.origHColor != "bald">>all hair below $his neck is missing<<else>>$he is now completely hairless<</if>>.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<br>
+		<<if $activeSlave.devotion > 50>>
+			$He is @@.hotpink;happy@@ with how smooth $his body has become and is already @@.mediumaquamarine;wondering@@ what new kinky things you have planned for $him.
+			<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
+		<<elseif $activeSlave.devotion >= -20>>
+			$His new lack of body hair doesn't bother $him much, since it just means $he needs to spend less time getting rid of any unseemly hairs.
+			<<set $activeSlave.trust += 5>>
+		<<else>>
+			$He is @@.mediumorchid;sad@@ and @@.gold;frightened@@ that you would force this on $him.
+			<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
+		<</if>>
 	<</if>>
 	<br><br>As this was a non-invasive procedure $his health was not affected.
 
 <<case "hair removal">>
 	<<set $activeSlave.hStyle = "bald">>
-	When $he <<if $activeSlave.amp == 1>>is carried<<else>>walks<</if>> out of the surgery $he immediately notices the chill on $his head and realizes that $he is bald.<br>
-	<<if $activeSlave.devotion > 50>>
-		<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 50)>>
-			$He is @@.hotpink;turned on@@ by how humiliating this is for $him and @@.mediumaquamarine;can't wait@@ for the next time you decide to show $him off.
-			<<set $activeSlave.trust += 5>>
-			<<set $activeSlave.devotion += 5>>
-		<<else>>
-			$He is very devoted to you so $his new condition doesn't affect $his as much as it would other slaves.
-		<</if>>
-	<<elseif $activeSlave.devotion >= -20>>
-		<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 50)>>
-			$He is both @@.hotpink;turned on@@ and @@.gold;horrified@@ by this humiliation.
-			<<set $activeSlave.trust -= 5>>
-			<<set $activeSlave.devotion += 5>>
+	When $he <<if $activeSlave.amp == 1>>is carried<<else>>walks<</if>> out of the surgery $he immediately notices the chill on $his head and realizes that $he is bald.
+	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
+		<br>
+		<<if $activeSlave.devotion > 50>>
+			<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 50)>>
+				$He is @@.hotpink;turned on@@ by how humiliating this is for $him and @@.mediumaquamarine;can't wait@@ for the next time you decide to show $him off.
+				<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
+			<<else>>
+				$He is very devoted to you so $his new condition doesn't affect $his as much as it would other slaves.
+			<</if>>
+		<<elseif $activeSlave.devotion >= -20>>
+			<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 50)>>
+				$He is both @@.hotpink;turned on@@ and @@.gold;horrified@@ by this humiliation.
+				<<set $activeSlave.trust -= 5>>
+				<<set $activeSlave.devotion += 5>>
+			<<else>>
+				$He thought $he was used to slavery but this is @@.gold;too much@@.
+				<<set $activeSlave.trust -= 5>>
+			<</if>>
 		<<else>>
-			$He thought $he was used to slavery but this is @@.gold;too much@@.
-			<<set $activeSlave.trust -= 5>>
+			$He is @@.gold;horrified@@ and @@.mediumorchid;angry@@ at this new humiliation.
+			<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 		<</if>>
-	<<else>>
-		$He is @@.gold;horrified@@ and @@.mediumorchid;angry@@ at this new humiliation.
-		<<set $activeSlave.trust -= 5>>
-		<<set $activeSlave.devotion -= 5>>
 	<</if>>
 	<br><br>As this was a non-invasive procedure $his health was not affected.
 
@@ -2322,7 +2412,9 @@ As the remote surgery's long recovery cycle completes,
 	<br><br>
 	You explain that $he's never going to grow older and $he'll stay younger. You sit back and let $him absorb that data for a moment.
 	<br><br>
-	<<if $activeSlave.devotion > 20>>
+	<<if $activeSlave.fetish == "mindbroken">>
+		$He doesn't seem to comprehend what this means for $him.
+	<<elseif $activeSlave.devotion > 20>>
 		$He is @@.hotpink;happy@@ with how young $his body has become<<if $activeSlave.visualAge > 26>>and is excited about the process continuing<</if>>. $He is already @@.mediumaquamarine;wondering@@ what new kinky things you have planned for $him.
 		<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 		<<if $activeSlave.visualAge > 26>><<set $activeSlave.devotion += 5>><</if>>
-- 
GitLab