diff --git a/src/facilities/farmyard/farmyard.tw b/src/facilities/farmyard/farmyard.tw
index e846a39c53768301a21f0c817532a5bb1d4388fc..72e11bd8d06d8b9fb3f3596c467c52a7850ddf5d 100644
--- a/src/facilities/farmyard/farmyard.tw
+++ b/src/facilities/farmyard/farmyard.tw
@@ -311,11 +311,11 @@ $farmyardNameCaps is an oasis of growth in the midst of the jungle of steel and
 		<<elseif _CL <= 3>>
 			a couple different
 			<<for _c = 0; _c < _CL; _c++>>	/* FIXME: this does not work */
-			<<if $canines[_c].species != "dog">>
-				<<set _onlyDogs = 0>>
-			<<else>>
-				<<set _onlyDogs = 1>>
-			<</if>>
+				<<if $canines[_c].species != "dog">>
+					<<set _onlyDogs = 0>>
+				<<else>>
+					<<set _onlyDogs = 1>>
+				<</if>>
 			<</for>>
 			<<if _onlyDogs == 0>>
 				types of canines.
@@ -379,7 +379,7 @@ $farmyardNameCaps is an oasis of growth in the midst of the jungle of steel and
 		<</if>>
 	<</if>>
 	<<if $rep > 15000>>
-	<br>
+		<br>
 		[[Upgrade cages|Farmyard][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "farmyard"), $farmyardCages = 2]]
 		//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>> and allows to keep exotic felines//
 	<</if>>
@@ -392,11 +392,11 @@ $farmyardNameCaps is an oasis of growth in the midst of the jungle of steel and
 		<<elseif _FL <= 3>>
 			a couple different
 			<<for _f = 0; _f < _FL; _f++>>	/* FIXME: this does not work */
-			<<if $felines[_f].species != "cat">>
-				<<set _onlyCats = 0>>
-			<<else>>
-				<<set _onlyCats = 1>>
-			<</if>>
+				<<if $felines[_f].species != "cat">>
+					<<set _onlyCats = 0>>
+				<<else>>
+					<<set _onlyCats = 1>>
+				<</if>>
 			<</for>>
 			<<if _onlyCats == 0>>
 				types of felines.
diff --git a/src/js/slaveGenerationJS.js b/src/js/slaveGenerationJS.js
index f7fa84384cb8ba62a9ed189512cb90181ea7f6ae..5df0c67dffb8c41d57398a7a570cff594b4c4268 100644
--- a/src/js/slaveGenerationJS.js
+++ b/src/js/slaveGenerationJS.js
@@ -228,10 +228,22 @@ window.nationalityToAccent = /** @param {App.Entity.SlaveState} slave */ functio
 			}
 			break;
 		case "Brazilian":
-			slave.accent = (V.language === "Portuguese") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
+			if (V.language === "Portuguese") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else if (V.language === "Spanish") {
+				slave.accent = jsEither([0, 1, 2, 2, 2, 3, 3]);
+			} else {
+				slave.accent = naturalAccent;
+			}
 			break;
 		case "British":
-			slave.accent = (V.language === "English") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
+			if (V.language === "English") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else if (V.language === "Hindi" && slave.race === "indo-aryan") {
+				slave.accent = jsEither([0, 1, 2, 2, 2, 3, 3]);
+			} else {
+				slave.accent = naturalAccent;
+			}
 			break;
 		case "Bruneian":
 			if (V.language === "Malay") {
@@ -484,7 +496,15 @@ window.nationalityToAccent = /** @param {App.Entity.SlaveState} slave */ functio
 			slave.accent = (V.language === "French") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
 			break;
 		case "French Polynesian":
-			slave.accent = (V.language === "French") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
+			if (V.language === "Tahitian") {
+				slave.accent = jsEither([0, 0, 0, 0, 0, 0, 1]);
+			} else if (V.language === "French") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else if (V.language === "Chinese") {
+				slave.accent = jsEither([0, 1, 2, 2, 2, 3, 3]);
+			} else {
+				slave.accent = naturalAccent;
+			}
 			break;
 		case "Gabonese":
 			slave.accent = (V.language === "French") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
@@ -545,7 +565,13 @@ window.nationalityToAccent = /** @param {App.Entity.SlaveState} slave */ functio
 			slave.accent = (V.language === "Spanish") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
 			break;
 		case "Hungarian":
-			slave.accent = naturalAccent;
+			if (V.language === "German") {
+				slave.accent = jsEither([0, 1, 2, 2, 2, 3, 3]);
+			} else if (V.language === "English") {
+				slave.accent = jsEither([0, 1, 2, 2, 2, 3, 3]);
+			} else {
+				slave.accent = naturalAccent;
+			}
 			break;
 		case "I-Kiribati":
 			if (V.language === "Gilbertese") {
@@ -609,6 +635,8 @@ window.nationalityToAccent = /** @param {App.Entity.SlaveState} slave */ functio
 				slave.accent = jsEither([0, 0, 0, 0, 0, 0, 1]);
 			} else if (V.language === "Arabic") {
 				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else if (V.language === "Yiddish") {
+				slave.accent = jsEither([0, 1, 2, 2, 2, 3, 3]);
 			} else {
 				slave.accent = naturalAccent;
 			}
@@ -650,7 +678,13 @@ window.nationalityToAccent = /** @param {App.Entity.SlaveState} slave */ functio
 			}
 			break;
 		case "Kurdish":
-			slave.accent = (V.language === "Arabic") ? jsEither([0, 1, 2, 2, 2, 3, 3]) : naturalAccent;
+			if (V.language === "Arabic") {
+				slave.accent = jsEither([0, 1, 2, 2, 2, 3, 3]);
+			} else if (V.language === "Turkish") {
+				slave.accent = jsEither([0, 1, 2, 2, 2, 3, 3]);
+			} else {
+				slave.accent = naturalAccent;
+			}
 			break;
 		case "Kuwaiti":
 			slave.accent = (V.language === "Arabic") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
@@ -786,7 +820,17 @@ window.nationalityToAccent = /** @param {App.Entity.SlaveState} slave */ functio
 			slave.accent = (V.language === "English") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
 			break;
 		case "Mozambican":
-			slave.accent = (V.language === "Portuguese") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
+			if (V.language === "Portuguese") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else if (V.language === "Makhuwa") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else if (V.language === "Sena") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else if (V.language === "Swahili") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else {
+				slave.accent = naturalAccent;
+			}
 			break;
 		case "Namibian":
 			if (V.language === "English") {
@@ -825,7 +869,13 @@ window.nationalityToAccent = /** @param {App.Entity.SlaveState} slave */ functio
 			}
 			break;
 		case "a New Zealander":
-			slave.accent = (V.language === "English") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
+			if (V.language === "English") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else if (V.language === "Māori" && slave.race === "pacific islander") {
+				slave.accent = jsEither([0, 1, 2, 2, 2, 3, 3]);
+			} else {
+				slave.accent = naturalAccent;
+			}
 			break;
 		case "Ni-Vanuatu":
 			if (V.language === "French") {
@@ -1006,6 +1056,8 @@ window.nationalityToAccent = /** @param {App.Entity.SlaveState} slave */ functio
 				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
 			} else if (V.language === "Afrikaans") {
 				slave.accent = jsEither([0, 0, 0, 0, 0, 0, 1]);
+			} else if (V.language === "Dutch") {
+				slave.accent = jsEither([0, 1, 2, 2, 2, 3, 3]);
 			} else {
 				slave.accent = naturalAccent;
 			}
@@ -1187,7 +1239,17 @@ window.nationalityToAccent = /** @param {App.Entity.SlaveState} slave */ functio
 			slave.accent = (V.language === "English") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
 			break;
 		case "Zimbabwean":
-			slave.accent = (V.language === "English" && slave.race === "white") ? jsEither([0, 1, 1, 1, 1, 2]) : naturalAccent;
+			if (V.language === "Shona") {
+				slave.accent = jsEither([0, 0, 0, 0, 0, 0, 1]);
+			} else if (V.language === "Ndebele") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else if (V.language === "Chewa") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else if (V.language === "English") {
+				slave.accent = jsEither([0, 1, 1, 1, 1, 2]);
+			} else {
+				slave.accent = naturalAccent;
+			}
 			break;
 		case "Ancient Chinese Revivalist":
 			slave.accent = (V.language === "Chinese") ? jsEither([0, 0, 0, 0, 0, 0, 1]) : naturalAccent;
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index ff6927fabb6bb0a19b657405b60db13727cf13e1..1509c96a2d2a47c4121f44848695c3c8b3709da2 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -10092,6 +10092,13 @@ $He has
 				//WIP//
 			<<elseif $activeSlave.belly >= 750000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's monolithic <<print $activeSlave.inflationType>>-filled belly bulges tremendously out of $his open tunic and undershirt.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $his monolithic <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $his monolithic <<print $activeSlave.inflationType>>-filled belly.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's monolithic implant-filled belly bulges tremendously out of $his open tunic and undershirt.
@@ -10111,6 +10118,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 600000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's titanic <<print $activeSlave.inflationType>>-filled belly hangs heavily out of $his open tunic and undershirt.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $his titanic <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $his titanic <<print $activeSlave.inflationType>>-filled belly.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's titanic implant-filled belly hangs heavily out of $his open tunic and undershirt.
@@ -10130,6 +10144,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 450000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's gigantic <<print $activeSlave.inflationType>>-filled belly hangs heavily out of $his open tunic and undershirt.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $his gigantic <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $his gigantic <<print $activeSlave.inflationType>>-filled belly.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's gigantic implant-filled belly hangs heavily out of $his open tunic and undershirt.
@@ -10149,6 +10170,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 300000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's massive <<print $activeSlave.inflationType>>-filled belly hangs out $his open tunic and undershirt.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $his massive <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $his massive <<print $activeSlave.inflationType>>-filled belly.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's massive implant-filled belly hangs out $his open tunic and undershirt.
@@ -10168,6 +10196,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 150000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's giant <<print $activeSlave.inflationType>>-filled belly hangs out $his open tunic and undershirt.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $his giant <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $his giant <<print $activeSlave.inflationType>>-filled belly.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's giant implant-filled belly hangs out $his open tunic and undershirt.
@@ -10187,6 +10222,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 120000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's giant <<print $activeSlave.inflationType>>-filled belly parts $his massive tits.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since $his giant <<print $activeSlave.inflationType>>-filled belly has triumphed over its buttons and has joined $his breasts in dominating $his tunic.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since $his giant <<print $activeSlave.inflationType>>-filled belly has triumphed over $his buttons.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's giant implant-filled belly parts $his massive tits.
@@ -10206,6 +10248,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 45000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's huge <<print $activeSlave.inflationType>>-filled belly is barely obscured by $his massive tits.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since $his huge <<print $activeSlave.inflationType>>-filled belly has triumphed over its buttons and has joined $his breasts in dominating $his tunic.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since $his huge <<print $activeSlave.inflationType>>-filled belly has triumphed over $his buttons.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's huge implant-filled belly is barely obscured by $his massive tits.
@@ -10225,6 +10274,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 30000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's huge <<print $activeSlave.inflationType>>-filled belly is barely obscured by $his massive tits.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt barely closes as it struggles to contain $his huge <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic lies half open, since $his huge <<print $activeSlave.inflationType>>-filled belly has triumphed over $his uniform's buttons.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's huge implant-filled belly is barely obscured by $his massive tits.
@@ -10260,6 +10316,13 @@ $He has
 						$activeSlave.slaveName's huge pregnant belly threatens to pop the buttons off $his uniform's jacket.
 					<</if>>
 				<<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's huge <<print $activeSlave.inflationType>>-filled belly is barely obscured by $his massive tits.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt strains to contain $his huge <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's huge <<print $activeSlave.inflationType>>-filled belly threatens to pop the buttons off $his uniform's jacket.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's huge implant-filled belly is barely obscured by $his massive tits.
@@ -10433,6 +10496,13 @@ $He has
 				//WIP//
 			<<elseif $activeSlave.belly >= 750000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's monolithic <<print $activeSlave.inflationType>>-filled belly bulges tremendously out of $his open tunic and undershirt.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $his monolithic <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $his monolithic <<print $activeSlave.inflationType>>-filled belly.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's monolithic implant-filled belly bulges tremendously out of $his open tunic and undershirt.
@@ -10452,6 +10522,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 600000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's titanic <<print $activeSlave.inflationType>>-filled belly hangs heavily out of $his open tunic and undershirt.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $his titanic <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $his titanic <<print $activeSlave.inflationType>>-filled belly.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's titanic implant-filled belly hangs heavily out of $his open tunic and undershirt.
@@ -10471,6 +10548,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 450000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's gigantic <<print $activeSlave.inflationType>>-filled belly hangs heavily out of $his open tunic and undershirt.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $his gigantic <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $his gigantic <<print $activeSlave.inflationType>>-filled belly.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's gigantic implant-filled belly hangs heavily out of $his open tunic and undershirt.
@@ -10490,6 +10574,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 300000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's massive <<print $activeSlave.inflationType>>-filled belly hangs out $his open tunic and undershirt.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $his massive <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $his massive <<print $activeSlave.inflationType>>-filled belly.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's massive implant-filled belly hangs out $his open tunic and undershirt.
@@ -10509,6 +10600,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 150000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's giant <<print $activeSlave.inflationType>>-filled belly hangs out $his open tunic and undershirt.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since there is no chance of closing the buttons over $his giant <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since there is no chance of closing the buttons over $his giant <<print $activeSlave.inflationType>>-filled belly.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's giant implant-filled belly hangs out $his open tunic and undershirt.
@@ -10528,6 +10626,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 120000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's giant <<print $activeSlave.inflationType>>-filled belly parts $his massive tits.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since $his giant <<print $activeSlave.inflationType>>-filled belly has triumphed over its buttons and has joined $his breasts in dominating $his tunic.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since $his giant <<print $activeSlave.inflationType>>-filled belly has triumphed over $his buttons.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's giant implant-filled belly parts $his massive tits.
@@ -10547,6 +10652,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 45000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's huge <<print $activeSlave.inflationType>>-filled belly is barely obscured by $his massive tits.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt lies half open, since $his huge <<print $activeSlave.inflationType>>-filled belly has triumphed over its buttons and has joined $his breasts in dominating $his tunic.
+					<<else>>
+						$activeSlave.slaveName's tunic and undershirt lie half open, since $his huge <<print $activeSlave.inflationType>>-filled belly has triumphed over $his buttons.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's huge implant-filled belly is barely obscured by $his massive tits.
@@ -10566,6 +10678,13 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 30000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's huge <<print $activeSlave.inflationType>>-filled belly is barely obscured by $his massive tits.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt barely closes as it struggles to contain $his huge <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's tunic lies half open, since $his huge <<print $activeSlave.inflationType>>-filled belly has triumphed over $his uniform's buttons.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's huge implant-filled belly is barely obscured by $his massive tits.
@@ -10601,6 +10720,13 @@ $He has
 						$activeSlave.slaveName's huge pregnant belly threatens to pop the buttons off $his uniform's jacket.
 					<</if>>
 				<<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					<<if ($activeSlave.boobs > 12000)>>
+						$activeSlave.slaveName's huge <<print $activeSlave.inflationType>>-filled belly is barely obscured by $his massive tits.
+					<<elseif ($activeSlave.boobs > 4000)>>
+						$activeSlave.slaveName's undershirt strains to contain $his huge <<print $activeSlave.inflationType>>-filled belly.
+					<<else>>
+						$activeSlave.slaveName's huge <<print $activeSlave.inflationType>>-filled belly threatens to pop the buttons off $his uniform's jacket.
+					<</if>>
 				<<elseif $activeSlave.bellyImplant > 0>>
 					<<if ($activeSlave.boobs > 12000)>>
 						$activeSlave.slaveName's huge implant-filled belly is barely obscured by $his massive tits.
@@ -11740,6 +11866,7 @@ $He has
 				//WIP//
 			<<elseif $activeSlave.belly >= 750000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such a dangerously gravid $girl. It tightly clings to $his monolithic <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such a dangerously gravid $girl. It tightly clings to $his monolithic implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11747,6 +11874,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 600000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such an absurdly gravid $girl. It tightly clings to $his titanic <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such an absurdly gravid $girl. It tightly clings to $his titanic implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11754,6 +11882,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 450000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such a massively gravid $girl. It tightly clings to $his gigantic <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such a massively gravid $girl. It tightly clings to $his gigantic implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11761,6 +11890,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 300000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his massive <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his massive implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11768,6 +11898,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 120000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his giant <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his giant implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11775,6 +11906,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 30000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such a gravid $girl. It tightly clings to $his huge <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such a gravid $girl. It tightly clings to $his huge implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11786,6 +11918,7 @@ $He has
 				<<if $activeSlave.bellyAccessory == "a huge empathy belly">>
 					$activeSlave.slaveName's dress tightly clings to $his huge pregnant belly and frequently rides up far enough to show off $his privates.
 				<<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress tightly clings to $his huge <<print $activeSlave.inflationType>>-filled belly and frequently rides up far enough to show off $his privates.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress tightly clings to $his huge implant-filled belly and frequently rides up far enough to show off $his privates.
 				<<else>>
@@ -11945,6 +12078,7 @@ $He has
 				//WIP//
 			<<elseif $activeSlave.belly >= 750000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such a dangerously gravid $girl. It tightly clings to $his monolithic <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such a dangerously gravid $girl. It tightly clings to $his monolithic implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11952,6 +12086,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 600000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such an absurdly gravid $girl. It tightly clings to $his titanic <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such an absurdly gravid $girl. It tightly clings to $his titanic implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11959,6 +12094,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 450000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such a massively gravid $girl. It tightly clings to $his gigantic <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such a massively gravid $girl. It tightly clings to $his gigantic implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11966,6 +12102,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 300000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his massive <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his massive implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11973,6 +12110,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 120000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his giant <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his giant implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11980,6 +12118,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 30000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress is specially tailored to fit such a gravid $girl. It tightly clings to $his huge <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress is specially tailored to fit such a gravid $girl. It tightly clings to $his huge implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -11991,6 +12130,7 @@ $He has
 				<<if $activeSlave.bellyAccessory == "a huge empathy belly">>
 					$activeSlave.slaveName's dress tightly clings to $his huge pregnant belly and frequently rides up far enough to show off $his privates.
 				<<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's dress tightly clings to $his huge <<print $activeSlave.inflationType>>-filled belly and frequently rides up far enough to show off $his privates.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's dress tightly clings to $his huge implant-filled belly and frequently rides up far enough to show off $his privates.
 				<<else>>
@@ -12042,6 +12182,7 @@ $He has
 		<<case "battlearmor">>
 			<<if $activeSlave.belly >= 1000000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					Traditional battle armor would be useless on $activeSlave.slaveName's unfathomable, hyper-swollen, <<print $activeSlave.inflationType>>-filled belly. Instead, $he wears armor more suited to protecting an industrial tanker truck rather than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from $his dangerously pressurized <<print $activeSlave.inflationType>> and special hookups to optimize the value of mobility aids.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					Traditional battle armor would be useless on $activeSlave.slaveName's unfathomable, hyper-swollen, implant-filled belly. Instead, $he wears armor more suited to protecting an industrial tanker truck rather than a human being, complete with an internal mechanical frame designed to draw the shock of physical blows away from $his dangerously pressurized implant and special hookups to optimize the value of mobility aids.
 				<<else>>
@@ -12049,6 +12190,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 750000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's armor is specially tailored to fit such a dangerously gravid $girl. It tightly clings to $his monolithic <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's armor is specially tailored to fit such a dangerously gravid $girl. It tightly clings to $his monolithic implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -12056,6 +12198,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 600000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's armor is specially tailored to fit such an absurdly gravid $girl. It tightly clings to $his titanic <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's armor is specially tailored to fit such an absurdly gravid $girl. It tightly clings to $his titanic implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -12063,6 +12206,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 450000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's armor is specially tailored to fit such a massively gravid $girl. It tightly clings to $his gigantic <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's armor is specially tailored to fit such a massively gravid $girl. It tightly clings to $his gigantic implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -12070,6 +12214,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 300000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's armor is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his massive <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's armor is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his massive implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -12077,6 +12222,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 120000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's armor is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his giant <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's armor is specially tailored to fit such a hugely gravid $girl. It tightly clings to $his giant implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -12084,6 +12230,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 30000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's armor is specially tailored to fit such a gravid $girl. It tightly clings to $his huge <<print $activeSlave.inflationType>>-filled belly and draws the eye right to $his protruding navel.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's armor is specially tailored to fit such a gravid $girl. It tightly clings to $his huge implant-filled belly and draws the eye right to $his protruding navel.
 				<<else>>
@@ -12095,6 +12242,7 @@ $He has
 				<<if $activeSlave.bellyAccessory == "a huge empathy belly">>
 					$activeSlave.slaveName's armor tightly clings to $his huge pregnant belly and frequently rides up far enough to show off $his privates.
 				<<elseif $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName's armor tightly clings to $his huge <<print $activeSlave.inflationType>>-filled belly and frequently rides up far enough to show off $his privates.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName's armor tightly clings to $his huge implant-filled belly and frequently rides up far enough to show off $his privates.
 				<<else>>
@@ -12376,6 +12524,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 300000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName has given up trying to tie $his apron's strings, allowing the frilly garment to idly rest upon $his massive <<print $activeSlave.inflationType>>-filled belly.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName has given up trying to tie $his apron's strings, allowing the frilly garment to idly rest upon $his massive implant-filled belly.
 				<<else>>
@@ -12383,6 +12532,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 120000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName has given up trying to tie $his apron's strings, allowing the frilly garment to idly rest upon $his giant <<print $activeSlave.inflationType>>-filled belly.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName has given up trying to tie $his apron's strings, allowing the frilly garment to idly rest upon $his giant implant-filled belly.
 				<<else>>
@@ -12390,6 +12540,7 @@ $He has
 				<</if>>
 			<<elseif $activeSlave.belly >= 30000>>
 				<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
+					$activeSlave.slaveName has given up trying to tie $his apron's strings, allowing the frilly garment to idly rest upon $his titanic <<print $activeSlave.inflationType>>-filled belly.
 				<<elseif $activeSlave.bellyImplant > 0>>
 					$activeSlave.slaveName has given up trying to tie $his apron's strings, allowing the frilly garment to idly rest upon $his titanic implant-filled belly.
 				<<else>>