diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw
index 6c13d41abf5df704f15aae55cc076a47afe03713..da050bfcb82964b6dad2124e1049c0747b99f201 100644
--- a/src/events/intro/introSummary.tw
+++ b/src/events/intro/introSummary.tw
@@ -1146,7 +1146,7 @@ __''Player Character''__
 			big <<if $PC.boobsImplant == 1>>fake <</if>>breasts.
 		<<elseif $PC.boobsBonus == 2>>
 			huge <<if $PC.boobsImplant == 1>>fake <</if>>breasts.
-		<<elseif $PC.boobsBonus == 3>>
+		<<elseif $PC.boobsBonus >= 3>>
 			giant<<if $PC.boobsImplant == 1>>, fake<</if>> cow tits.
 		<<elseif $PC.boobsBonus == -1>>
 			unremarkable breasts.
diff --git a/src/facilities/nursery/childInteract.tw b/src/facilities/nursery/childInteract.tw
index 7cd25dad1f9de1abe18986d1233498a21d2529eb..6d5364c2c05d05923c137b5f381fb342de96e3fd 100644
--- a/src/facilities/nursery/childInteract.tw
+++ b/src/facilities/nursery/childInteract.tw
@@ -204,19 +204,20 @@
 			<<if $activeChild.sisters > 0>>
 				<<set $relation = 0>>
 				<<for $i = 0; $i < _SL; $i++>>
+					<<setLocalPronouns $slaves[$i] 2>>
 					<<if areSisters($activeChild, $slaves[$i]) > 0 && !isSlaveAvailable($slaves[$i])>>
 						<<set $relation++>>
 					<</if>>
 				<</for>>
 				<<if $relation == $activeChild.sisters>>
 					<<if $activeChild.sisters == 1>>
-						//$His sister is unavailable//
+						//$His _sister2 is unavailable//
 					<<else>>
 						//$His sisters are unavailable//
 					<</if>>
 				<<else>>
 					<<if $activeChild.sisters == 1>>
-						| <<link "Fuck $him with $his sister">><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "sister">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
+						| <<link "Fuck $him with $his _sister2">><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "sister">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<<else>>
 						| <<link "Fuck $him with one of $his sisters">><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "sister">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<</if>>
@@ -225,13 +226,14 @@
 		<<else>>
 			<<if ($activeChild.relation != 0)>>
 				<<set _assayedSlave = getSlave($activeChild.relationTarget)>>
+				<<setLocalPronouns _assayedSlave 2>>
 				<<if isSlaveAvailable(_assayedSlave)>>
 					<<if ($activeChild.relation == "mother")>>
-						| <<link "Fuck $him with $his daughter">><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
+						| <<link "Fuck $him with $his _daughter2">><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<<elseif ($activeChild.relation == "daughter")>>
 						| <<link "Fuck $him with $his mother">><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<<elseif ($activeChild.relation == "sister")>>
-						| <<link "Fuck $him with $his sister">><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
+						| <<link "Fuck $him with $his _sister2">><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<<elseif ($activeChild.relation == "twin")>>
 						| <<link "Fuck $him with $his twin">><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<</if>>
@@ -244,6 +246,7 @@
 	<<if ($activeChild.relationship > 0)>>
 		<<set _si = $slaveIndices[$activeChild.relationshipTarget]>>
 		<<if isSlaveAvailable($slaves[_si])>>
+			<<setLocalPronouns $slaves[_si] 2>>
 			<<if ($activeChild.relationship == 1)>>
 				| <<link `"Fuck $him with $his friend <<= SlaveFullName($slaves[_si])>>"`>><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "relationship">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 			<<elseif ($activeChild.relationship == 2)>>
@@ -253,7 +256,7 @@
 			<<elseif ($activeChild.relationship == 4)>>
 				| <<link `"Fuck $him with $his lover <<= SlaveFullName($slaves[_si])>>"`>><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "relationship">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 			<<else>>
-				| <<link `"Fuck $him with $his slave wife <<= SlaveFullName($slaves[_si])>>"`>><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "relationship">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
+				| <<link `"Fuck $him with $his slave _wife2 <<= SlaveFullName($slaves[_si])>>"`>><<replace "#miniscene">><<set $childSex = 1>><<set $partner = "relationship">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 			<</if>>
 		<</if>>
 	<</if>>
diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js
index 5a95d5dd3551654761893e3f887fa6546897269e..867b672af09568dcc29de76aa9e1761adfe962fc 100644
--- a/src/js/descriptionWidgets.js
+++ b/src/js/descriptionWidgets.js
@@ -504,6 +504,14 @@ App.Desc.ageAndHealth = function(slave) {
 						r += `barely seventy. `;
 					} else if (slave.visualAge < 80) {
 						r += `still in ${his} seventies. `;
+					} else if (slave.visualAge < 85) {
+						r += `barely eighty. `;
+					} else if (slave.visualAge < 90) {
+						r += `still in ${his} eighties. `;
+					} else if (slave.visualAge < 95) {
+						r += `barely ninety. `;
+					} else if (slave.visualAge < 100) {
+						r += `still in ${his} nineties. `;
 					} else {
 						r += `a younger ${slave.visualAge}. `;
 					}
@@ -536,6 +544,12 @@ App.Desc.ageAndHealth = function(slave) {
 						r += `just over seventy. `;
 					} else if (slave.visualAge < 80) {
 						r += `nearly eighty. `;
+					} else if (slave.visualAge < 85) {
+						r += `just over eighty. `;
+					} else if (slave.visualAge < 90) {
+						r += `nearly ninety. `;
+					} else if (slave.visualAge < 95) {
+						r += `just over ninety. `;
 					} else {
 						r += `an ancient ${slave.visualAge}. `;
 					}
diff --git a/src/js/extendedFamilyModeJS.js b/src/js/extendedFamilyModeJS.js
index ddf4573c3be77eb338916fa2f474a81d2fcdf103..35da96dafb9ea09f2591d5bfb0ac1f1ce55baf26 100644
--- a/src/js/extendedFamilyModeJS.js
+++ b/src/js/extendedFamilyModeJS.js
@@ -12,20 +12,50 @@ window.isParentP = function isParentP(daughter, parent) {
 	return isMotherP(daughter, parent) || isFatherP(daughter, parent);
 };
 
+window.isGrandmotherP = function isGrandmotherP(granddaughter, grandmother) {
+	let father = getSlave(granddaughter.father);
+	let mother = getSlave(granddaughter.mother);
+	if ((mother.mother === grandmother.ID) || (father.mother === grandmother.ID)) {
+		return true;
+	}
+	return false;
+};
+
+window.isGrandfatherP = function isGrandfatherP(granddaughter, grandfather) {
+	let father = getSlave(granddaughter.father);
+	let mother = getSlave(granddaughter.mother);
+	if ((mother.father === grandfather.ID) || (father.father === grandfather.ID)) {
+		return true;
+	}
+	return false;
+};
+
+window.isGrandparentP = function isGrandparentP(granddaughter, grandparent) {
+	return isGrandmotherP(daughter, parent) || isGrandfatherP(daughter, parent);
+};
+
 window.sameDad = function(slave1, slave2) {
-	if ((slave1.father === slave2.father) && (slave1.father !== 0 && slave1.father !== -2)) {
+	if ((slave1.father === slave2.father) && (specificDad(slave1))) {
 		return true;
 	}
 	return false;
 };
 
 window.sameMom = function(slave1, slave2) {
-	if ((slave1.mother === slave2.mother) && (slave1.mother !== 0 && slave1.mother !== -2)) {
+	if ((slave1.mother === slave2.mother) && (specificMom(slave1))) {
 		return true;
 	}
 	return false;
 };
 
+window.specificDad = function(slave) {
+	return (slave.father !== 0 && slave.father !== -2 && slave.father !== -4 && slave.father !== -5 && slave.father !== -6 && slave.father !== -7 && slave.father !== -8 && slave.father !== -9);
+};
+
+window.specificMom = function(slave) {
+	return (slave.mother !== 0 && slave.mother !== -2 && slave.mother !== -4 && slave.mother !== -5 && slave.mother !== -6 && slave.mother !== -7 && slave.mother !== -8 && slave.mother !== -9);
+};
+
 /**
  * @param {App.Entity.SlaveState} niece
  * @param {App.Entity.SlaveState} aunt
@@ -39,13 +69,11 @@ window.isAunt = function(niece, aunt) {
 	if (!niece || !aunt || (niece.ID === aunt.ID)) {
 		return false;
 	}
-
-	let mother;
-	let father;
-
-	if ((mother = getSlave(niece.mother)) && (mother.ID !== aunt.ID) && !sameTParent(mother, aunt) && sameMom(mother, aunt) && sameDad(mother, aunt)) {
+	let father = getSlave(niece.father);
+	let mother = getSlave(niece.mother);
+	if ((mother.ID !== aunt.ID) && !sameTParent(mother, aunt) && sameMom(mother, aunt) && sameDad(mother, aunt)) {
 		return true;
-	} else if ((father = getSlave(niece.father)) && (father.ID !== aunt.ID) && !sameTParent(father, aunt) && sameMom(father, aunt) && sameDad(father, aunt)) {
+	} else if ((father.ID !== aunt.ID) && !sameTParent(father, aunt) && sameMom(father, aunt) && sameDad(father, aunt)) {
 		return true;
 	}
 
@@ -56,9 +84,9 @@ window.isAunt = function(niece, aunt) {
 window.sameTParent = function(slave1, slave2) {
 	if (slave1.mother === -1 && slave1.father === -1 && slave2.mother === -1 && slave2.father === -1) {
 		return 1;
-	} else if (slave1.mother === slave2.father && slave1.father === slave2.mother && slave1.mother !== 0 && slave1.mother !== -2 && slave1.father !== 0 && slave1.father !== -2 && slave1.mother !== slave1.father) {
+	} else if (slave1.mother === slave2.father && slave1.father === slave2.mother && specificMom(slave1) && specificDad(slave1)) {
 		return 2;
-	} else if ((slave1.mother === slave2.father || slave1.father === slave2.mother) && slave1.mother !== 0 && slave1.mother !== -2 && slave2.mother !== 0 && slave2.mother !== -2 && slave1.mother !== slave1.father) {
+	} else if ((slave1.mother === slave2.father || slave1.father === slave2.mother) && specificMom(slave1) && specificMom(slave2) && slave1.mother !== slave1.father) {
 		return 3;
 	}
 	return 0;
@@ -93,7 +121,7 @@ window.areTwins = function(slave1, slave2) {
 window.areSisters = function(slave1, slave2) {
 	if (slave1.ID === slave2.ID) {
 		return 0; // you are not your own sister
-	} else if (((slave1.father === 0) || (slave1.father === -2)) && ((slave1.mother === 0) || (slave1.mother === -2))) {
+	} else if (!specificDad(slave1) && !specificMom(slave1)) {
 		return 0; // not related
 	} else {
 		if (!sameDad(slave1, slave2) && sameMom(slave1, slave2)) {
diff --git a/src/npc/fPCImpreg.tw b/src/npc/fPCImpreg.tw
index 4425c140df1e0bc6b0080861583e80e3408420fe..ec38d088d3078158f54e87f7bc5b3cf86e1c2686 100644
--- a/src/npc/fPCImpreg.tw
+++ b/src/npc/fPCImpreg.tw
@@ -65,7 +65,7 @@ You call $him over so you can
 <</if>>
 
 <<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($activeSlave.vagina == 0 || ($activeSlave.anus == 0 && $activeSlave.mpreg == 1))>>
-	$He cries with joy and presents $his virgin <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> for fertilization. $He sobs with happiness when $he feels your hot seed<<if $PC.balls == 3>> filling $him until $his belly is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, knowing that $his first time will always be special to $him. $He spends the rest of the day cherishing $his _belly stomach. This new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> has been broken in, and there's a good chance $he's <<if _superfetation == 1>>got another bun in the oven<<else>>pregnant<</if>>.@@
+	$He cries with joy and presents $his virgin <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> for fertilization. $He sobs with happiness when $he feels your hot seed<<if $PC.balls >= 3>> filling $him until $his belly is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, knowing that $his first time will always be special to $him. $He spends the rest of the day cherishing $his _belly stomach. This new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> has been broken in, and there's a good chance $he's <<if _superfetation == 1>>got another bun in the oven<<else>>pregnant<</if>>.@@
 	<<if $activeSlave.mpreg == 1>>
 		<<set $activeSlave.anus = 1>>
 	<<else>>
@@ -73,10 +73,10 @@ You call $him over so you can
 	<</if>>
 	<<set $activeSlave.devotion += 15>>
 <<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-	$He cries with joy and presents $his fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> for breeding. $He sobs with happiness when $he feels your hot seed<<if $PC.balls == 3>> filling $him until $his belly is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>. $He spends the rest of the day considering $his own _belly stomach with pride. This new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@
+	$He cries with joy and presents $his fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> for breeding. $He sobs with happiness when $he feels your hot seed<<if $PC.balls >= 3>> filling $him until $his belly is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>. $He spends the rest of the day considering $his own _belly stomach with pride. This new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@
 	<<set $activeSlave.devotion += 10>>
 <<elseif ($activeSlave.devotion > 20) && ($activeSlave.vagina == 0 || ($activeSlave.anus == 0 && $activeSlave.mpreg == 1))>>
-	$He accepts your orders without comment and presents $his virgin <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> for fertilization. $He gasps in shock when $he feels your hot seed<<if $PC.balls == 3>> filling $him until $his belly is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>. $He spends the rest of the day struggling with roiling emotions. Since $he is already well broken<<if _superfetation == 1>> and pregnant<</if>>, this new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> has been broken in, and there's a good chance $he's <<if _superfetation == 1>>got another bun in the oven<<else>>pregnant<</if>>.@@
+	$He accepts your orders without comment and presents $his virgin <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> for fertilization. $He gasps in shock when $he feels your hot seed<<if $PC.balls >= 3>> filling $him until $his belly is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>. $He spends the rest of the day struggling with roiling emotions. Since $he is already well broken<<if _superfetation == 1>> and pregnant<</if>>, this new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> has been broken in, and there's a good chance $he's <<if _superfetation == 1>>got another bun in the oven<<else>>pregnant<</if>>.@@
 	<<if $activeSlave.mpreg == 1>>
 		<<set $activeSlave.anus = 1>>
 	<<else>>
@@ -112,19 +112,19 @@ You call $him over so you can
 		<<set $activeSlave.vagina = 1>>
 	<</if>>
 <<elseif ($activeSlave.amp == 1)>>
-	You have $his limbless torso set on the end of the couch, face-<<if _superfetation == 1>>up<<else>>down<</if>>, with $his hips up in the air. This way, you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>> you can manage. $He moans <<if _superfetation == 1>>openly<<else>>into the cushions<</if>>, knowing that when $he feels the hot flow of semen<<if $PC.balls == 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
+	You have $his limbless torso set on the end of the couch, face-<<if _superfetation == 1>>up<<else>>down<</if>>, with $his hips up in the air. This way, you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>> you can manage. $He moans <<if _superfetation == 1>>openly<<else>>into the cushions<</if>>, knowing that when $he feels the hot flow of semen<<if $PC.balls >= 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
 <<elseif tooBigBelly($activeSlave)>>
-	Since $he already has trouble moving with $his _belly belly, you just tip $him onto it; this leaves $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>> exposed and vulnerable. $He moans as $he clutches the sides of $his stomach, knowing that when $he feels the hot flow of semen<<if $PC.balls == 3>> filling $him until $his the pressure forces it to spray around your shaft<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably gotten <<if _superfetation == 1>> another bun added to the oven<<else>>pregnant<</if>>.
+	Since $he already has trouble moving with $his _belly belly, you just tip $him onto it; this leaves $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>> exposed and vulnerable. $He moans as $he clutches the sides of $his stomach, knowing that when $he feels the hot flow of semen<<if $PC.balls >= 3>> filling $him until $his the pressure forces it to spray around your shaft<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably gotten <<if _superfetation == 1>> another bun added to the oven<<else>>pregnant<</if>>.
 <<elseif tooFatSlave($activeSlave)>>
-	You set $him down on the couch, face-down, with $his hips up in the air. This way, $he's pinned in place by the weight of $his own body, and you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>; after you push into $his soft folds enough to reach it, of course. $He moans into the cushions, knowing that when $he feels the hot flow of semen<<if $PC.balls == 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
+	You set $him down on the couch, face-down, with $his hips up in the air. This way, $he's pinned in place by the weight of $his own body, and you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>; after you push into $his soft folds enough to reach it, of course. $He moans into the cushions, knowing that when $he feels the hot flow of semen<<if $PC.balls >= 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
 <<elseif tooBigBreasts($activeSlave)>>
-	You set $him down on the couch, face-down, with $his hips up in the air. This way, $he's pinned in place by the weight of $his ridiculous tits, and you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He moans into the cushions, knowing that when $he feels the hot flow of semen<<if $PC.balls == 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
+	You set $him down on the couch, face-down, with $his hips up in the air. This way, $he's pinned in place by the weight of $his ridiculous tits, and you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He moans into the cushions, knowing that when $he feels the hot flow of semen<<if $PC.balls >= 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
 <<elseif tooBigButt($activeSlave)>>
-	You set $him down on the couch, face-down, with $his hips up in the air. This way, $he's stuck under $his ridiculous ass, you get an amazingly soft rear to pound, and you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He moans into the cushions, knowing that when $he feels the hot flow of semen<<if $PC.balls == 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
+	You set $him down on the couch, face-down, with $his hips up in the air. This way, $he's stuck under $his ridiculous ass, you get an amazingly soft rear to pound, and you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He moans into the cushions, knowing that when $he feels the hot flow of semen<<if $PC.balls >= 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
 <<elseif tooBigDick($activeSlave)>>
-	You set $him down on the couch, face-down, with $his hips up in the air. This way, $he's anchored in place by the weight of $his ridiculous cock, and you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He moans into the cushions, knowing that when $he feels the hot flow of semen<<if $PC.balls == 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
+	You set $him down on the couch, face-down, with $his hips up in the air. This way, $he's anchored in place by the weight of $his ridiculous cock, and you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He moans into the cushions, knowing that when $he feels the hot flow of semen<<if $PC.balls >= 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
 <<elseif tooBigBalls($activeSlave)>>
-	You set $him down on the couch, face-down, with $his hips up in the air. This way, $he's anchored in place by the weight of $his ridiculous balls, and you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He moans into the cushions, knowing that when $he feels the hot flow of semen<<if $PC.balls == 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
+	You set $him down on the couch, face-down, with $his hips up in the air. This way, $he's anchored in place by the weight of $his ridiculous balls, and you get the greatest degree of penetration into $his fertile <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He moans into the cushions, knowing that when $he feels the hot flow of semen<<if $PC.balls >= 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>, $he has probably <<if _superfetation == 1>>got another bun in the oven<<else>>gotten pregnant<</if>>.
 <<elseif ($activeSlave.fetish == "submissive") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 	$He <<if $activeSlave.belly >= 10000>>waddles<<else>>comes<</if>> submissively over, smiling a little submissive smile, and spreads $himself for you.
 	<<if $activeSlave.belly < 5000>>
@@ -132,9 +132,9 @@ You call $him over so you can
 	<<else>>
 		You take $him from behind against your desk. $He steadies $himself as $he feels your hands roaming across $his _belly belly. As the sex reaches its climax, $his breaths grow short and $his moans passionate. $He pushed against you,
 	<</if>>
-	As the sex reaches its climax your semen<<if $PC.balls == 3>> fills $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pours into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pours into $him<<else>> jets into $his welcoming depths<</if>> as $he begs you to use $his unworthy body to make a new slave.
+	As the sex reaches its climax your semen<<if $PC.balls >= 3>> fills $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pours into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pours into $him<<else>> jets into $his welcoming depths<</if>> as $he begs you to use $his unworthy body to make a new slave.
 <<elseif $activeSlave.devotion < -20>>
-	$He tries to refuse, so you bend the disobedient slave over your desk and take $him hard from behind. $His breasts slide back and forth across the desk. You give $his buttocks some nice hard swats as you pound $him. $He grunts and moans but knows better than to try to get away. $He begs you not to cum inside $him, knowing $he's fertile, and sobs when $he feels you<<if $PC.balls == 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<<else>> blow your load<</if>> despite $his pleas.
+	$He tries to refuse, so you bend the disobedient slave over your desk and take $him hard from behind. $His breasts slide back and forth across the desk. You give $his buttocks some nice hard swats as you pound $him. $He grunts and moans but knows better than to try to get away. $He begs you not to cum inside $him, knowing $he's fertile, and sobs when $he feels you<<if $PC.balls >= 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<<else>> blow your load<</if>> despite $his pleas.
 <<elseif $activeSlave.devotion <= 20>>
 	$He obeys, lying on the couch next to your desk with $his legs spread. You kneel on the ground and enter $him, a hand on each of $his legs to give you purchase. The pounding is hard and fast, and $he gasps and whines.
 	<<if $activeSlave.belly >= 100000>>
@@ -142,14 +142,14 @@ You call $him over so you can
 	<<else>>
 		You reach a hand down to maul $his breasts.
 	<</if>>
-	$He begs you not to cum inside $him, knowing $he's fertile, but soon loses track of $his fears as $he enjoys $himself. $He bites $his lip and moans as $he climaxes. You fill $his squeezing fuckhole<<if $PC.balls == 3>> far beyond capacity<<elseif $PC.balls == 2>> beyond capacity<<elseif $PC.balls == 1>> to capacity<</if>> with your cum; $he realizes what you've done with a gasp and a worried look.
+	$He begs you not to cum inside $him, knowing $he's fertile, but soon loses track of $his fears as $he enjoys $himself. $He bites $his lip and moans as $he climaxes. You fill $his squeezing fuckhole<<if $PC.balls >= 3>> far beyond capacity<<elseif $PC.balls == 2>> beyond capacity<<elseif $PC.balls == 1>> to capacity<</if>> with your cum; $he realizes what you've done with a gasp and a worried look.
 <<else>>
 	<<if $activeSlave.belly < 5000>>
 		$He skips over smiling and gives you a quick kiss. You take $him on the couch next to your desk in the missionary position. $He hugs $his torso to you and $his breasts press against your chest; you can feel $his heart beating hard. As the sex reaches its climax, $his kisses grow urgent and passionate. $He clings to you,
 	<<else>>
 		$He waddles over smiling and leans in to give you a quick kiss. You take $him from behind against your desk. $He steadies $himself as $he feels your hands roaming across $his _belly belly. As the sex reaches its climax, $his breaths grow short and $his moans passionate. $He pushed against you,
 	<</if>>
-	your semen<<if $PC.balls == 3>> flowing into $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<<else>> jetting into $him<</if>> as $he rides the downslope of $his orgasm. $He kisses you and promises to do $his best to use $his womb to make <<if _superfetation == 1>>another<<else>>a<</if>> good slave for you.
+	your semen<<if $PC.balls >= 3>> flowing into $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<<else>> jetting into $him<</if>> as $he rides the downslope of $his orgasm. $He kisses you and promises to do $his best to use $his womb to make <<if _superfetation == 1>>another<<else>>a<</if>> good slave for you.
 <</if>>
 
 You repeat this ritual throughout the week, ensuring that $activeSlave.slaveName
diff --git a/src/pregmod/fSlaveSlaveDick.tw b/src/pregmod/fSlaveSlaveDick.tw
index 3f19eebf0a042391d783fc234133595361aceeda..ddac7b00a9708a615fc40f884688f4abc96f3de6 100644
--- a/src/pregmod/fSlaveSlaveDick.tw
+++ b/src/pregmod/fSlaveSlaveDick.tw
@@ -8,6 +8,7 @@
 
 __Select an eligible slave:__
 <<for _i = 0; _i < $slaves.length; _i++>>
+	<<setLocalPronouns $slaves[_i] 2>>
 	<<if ($slaves[_i].ID != $activeSlave.ID) && isSlaveAvailable($slaves[_i]) && canDoVaginal($slaves[_i]) && canWalk($slaves[_i])>> /* amp-amp scene is not written */
 		<<set _name = SlaveFullName($slaves[_i])>>
 		<br><<print "[[_name|FSlaveSlaveDick Consummate][$slaverapistx = $slaves[" + _i + "]]]">>
@@ -25,27 +26,19 @@ __Select an eligible slave:__
 			<</if>>
 			/* offspring test */
 			<<if ($slaves[_i].mother && $slaves[_i].mother == $activeSlave.ID)>>
-				@@.lightgreen;Daughter@@
+				@@.lightgreen;_Daughter2@@
 			<</if>>
 			<<if ($slaves[_i].father && $slaves[_i].father == $activeSlave.ID)>>
-				@@.lightgreen;Daughter@@
+				@@.lightgreen;_Daughter2@@
 			<</if>>
 			/* sibling test */
 			<<switch areSisters($activeSlave, $slaves[_i])>>
 			<<case 1>>
 				@@.lightgreen;Twin.@@
 			<<case 2>>
-				<<if ($slaves[_i].genes == "XX")>>
-					@@.lightgreen;Sister@@
-				<<else>>
-					@@.lightgreen;Brother@@
-				<</if>>
+				@@.lightgreen;_Sister2@@
 			<<case 3>>
-				<<if ($slaves[_i].genes == "XX")>>
-					@@.lightgreen;Half-Sister@@
-				<<else>>
-					@@.lightgreen;Half-Brother@@
-				<</if>>
+				@@.lightgreen;Half-<<= _Sister2>>@@
 			<</switch>>
 		<</if>> /* closes extended family mode */
 		<<set _capable = 1>>
diff --git a/src/pregmod/fSlaveSlaveVag.tw b/src/pregmod/fSlaveSlaveVag.tw
index 39cad9a73937d2186aa709c98a0ec6681c697e52..909705cadf55e8976d9de8cb37f01f6061ba9400 100644
--- a/src/pregmod/fSlaveSlaveVag.tw
+++ b/src/pregmod/fSlaveSlaveVag.tw
@@ -13,11 +13,41 @@ __Select an eligible slave:__
 <br>
 
 <<for _i = 0; _i < $slaves.length; _i++>>
+	<<setLocalPronouns $slaves[_i] 2>>
 	<<if (canPenetrate($slaves[_i])) || ($slaves[_i].clit >= 4)>>
 		<<if ($slaves[_i].ID != $activeSlave.ID)>>
 			<<set _name = SlaveFullName($slaves[_i])>>
 			<br><<print "[[_name|FSlaveSlaveVag Consummate][$slaverapistx = $slaves[" + _i + "]]]">>
-			<<set $eligibility = 1>>
+		<<if $slaves[_i].custom.label>> (@@.yellow;''<<print $slaves[_i].custom.label>>''@@)<</if>>
+		<<if (canImpreg($activeSlave, $slaves[_i]))>>
+			@@.green;Virile@@
+		<</if>>
+		<<if $familyTesting == 1 && totalRelatives($activeSlave) > 0>>
+			/* parental test */
+			<<if ($activeSlave.father && $slaves[_i].ID == $activeSlave.father)>>
+				@@.lightgreen;Father@@
+			<</if>>
+			<<if ($activeSlave.mother && $slaves[_i].ID == $activeSlave.mother)>>
+				@@.lightgreen;Mother@@
+			<</if>>
+			/* offspring test */
+			<<if ($slaves[_i].mother && $slaves[_i].mother == $activeSlave.ID)>>
+				@@.lightgreen;_Daughter2@@
+			<</if>>
+			<<if ($slaves[_i].father && $slaves[_i].father == $activeSlave.ID)>>
+				@@.lightgreen;_Daughter2@@
+			<</if>>
+			/* sibling test */
+			<<switch areSisters($activeSlave, $slaves[_i])>>
+			<<case 1>>
+				@@.lightgreen;Twin.@@
+			<<case 2>>
+				@@.lightgreen;_Sister2@@
+			<<case 3>>
+				@@.lightgreen;Half-<<= _Sister2>>@@
+			<</switch>>
+		<</if>> /* closes extended family mode */
+		<<set $eligibility = 1>>
 		<</if>>
 	<</if>>
 <</for>>
diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw
index d3afd193be23cd3f0a723adcd07d72ad2d1b590c..3f1d2bfc818d2e04b39d1309d9bc1d86b03367b5 100644
--- a/src/pregmod/pRaped.tw
+++ b/src/pregmod/pRaped.tw
@@ -215,7 +215,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 		Satisfied, $he pulls your cock out of its increasingly cramped confines. "Look at him grow, he knows what comes next..." $He teases as $he pushes you to the ground and climbs on top of you.
 		<br><br>
 		$He lines $himself up with the tip of your dick before taking its entire length into $himself. $He lets out a lust filled moan as $he begins to bounce on your traitorous member. You can do nothing to stop $him from riding you to climax, so you just enjoy the sight of $his breasts bouncing to $his pace. As you feel your orgasm approaching, you try to time it so you can slip out of $him just before you blow your load, but you have no such luck.
-		"You really think I'd let you spoil my plans?" $he asks as $he grinds against you, making sure you cum deep in $his pussy. $He leans back and massages $his <<if $PC.ballsImplant > 2>>taut <</if>>stomach, savoring the sensation of your seed seeping into $him. "That's it, make me a mommy." $He leans in close and you pop free of $his snatch. "Be a good boy and make this arcology a nice place for your bastard. I want to retire in luxury." $He blows you a kiss as $he stuffs a plug up $his vagina, redresses and heads on $his way. By the time you loosen your bindings, $he is long gone.
+		"You really think I'd let you spoil my plans?" $he asks as $he grinds against you, making sure you cum deep in $his pussy. $He leans back and massages $his <<if $PC.ballsImplant > 2>>taut <</if>>stomach, savoring the sensation of your seed seeping into $him. "That's it, make me a mommy." $He leans in close and you pop free of $his snatch. "Be a good _girlP and make this arcology a nice place for your bastard. I want to retire in luxury." $He blows you a kiss as $he stuffs a plug up $his vagina, redresses and heads on $his way. By the time you loosen your bindings, $he is long gone.
 		<br><br>
 		It would be prudent to up security in your arcology, that or take a guard along when you leave the penthouse. You can't allow such an indignity to happen again, nor do you need the stress of a bastard trying to seize control of your estate when you want to retire, but you wouldn't mind having your way with $him if you get the chance.
 	<</if>>
diff --git a/src/pregmod/pcSurgeryDegradation.tw b/src/pregmod/pcSurgeryDegradation.tw
index 373b7dc40c68c8ba5110c0657d1392c78ba3e436..c3794315e2bc1e7092bc05c45f3c1328599f959c 100644
--- a/src/pregmod/pcSurgeryDegradation.tw
+++ b/src/pregmod/pcSurgeryDegradation.tw
@@ -33,7 +33,7 @@
 	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, round <<if $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<else>>H-cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating _himselfU behind you and wrapping _hisU hands around to your heaving breasts. "We did everything we could to keep them looking natural, <<if $PC.boobsBonus == 2>>but you can definitely tell<<elseif $PC.boobsBonus == 1>>and I say we did a pretty good job<<else>>but the implants were way too big for that<</if>>." _HeU begins groping your breasts, feeling the implant within for any oddities. "I know you're still a little sore, but bear with it." _HeU moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>_HeU lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as _heU massages and teases your implant laden breasts. "Enjoying yourself are we? Let me finish you off." _HeU sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> _HeU states, while licking _hisU fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "breastEnlargement">>
-	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, soft <<if $PC.boobsBonus == 3>>H-cup<<elseif $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD-cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating _himselfU behind you and wrapping _hisU hands around to your heaving breasts. "We did everything we could to keep them perky, <<if $PC.boobsBonus == 3>>quite a feat given their size<<else>>not that hard given your natural perk<</if>>." _HeU begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." _HeU moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>_HeU lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as _heU massages and teases your fat tits. "Enjoying yourself are we? Let me finish you off." _HeU sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> _HeU states, while licking _hisU fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, soft <<if $PC.boobsBonus >= 3>>H-cup<<elseif $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD-cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating _himselfU behind you and wrapping _hisU hands around to your heaving breasts. "We did everything we could to keep them perky, <<if $PC.boobsBonus >= 3>>quite a feat given their size<<else>>not that hard given your natural perk<</if>>." _HeU begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." _HeU moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>_HeU lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as _heU massages and teases your fat tits. "Enjoying yourself are we? Let me finish you off." _HeU sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> _HeU states, while licking _hisU fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "flatChest">>
 	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice the absence of the usual weight on your chest. Pulling the covers off yourself, you observe your flat chest in the mirror-covered wall across from your bed. "So do you like it?", asks the surgeon's assistant, seating _himselfU behind you and wrapping _hisU hands around to your chest. "I honestly couldn't live without my pair." _HeU begins groping your chest, feeling for any oddities. "I know you're still a little sore, but bear with it." _HeU moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>_HeU lets out a surprised squeak when a gush of milk escapes your tits and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts still work, but it's still strange coming from such a flat chest."<</if>> You can't help but moan under your building arousal as _heU massages and teases your nipples. "Enjoying yourself are we? Let me finish you off." _HeU sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> _HeU states, while licking _hisU fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
@@ -48,10 +48,10 @@
 	After a few hours, you awaken in the recovery wing, face-down in a bed made to accommodate a person with your body type, with a sore ass. You push yourself up and look at the mass under the cover behind you that is your rear, taking note of how much smaller it is now than when you arrived. "So do you like it?", asks the surgeon's assistant, seating _himselfU beside you and bringing _hisU hands to your butt. "Size isn't everything in an ass, shape is important too, though I think you've got a good balance. We didn't need to do much reshaping." _HeU begins groping your bottom, feeling around for any oddities. "I know you're still a little sore, but bear with it. There, everything feels good, now rest up and you'll be set! Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Groggy, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "buttEnlargementImplant">>
-	After a few hours, you awaken in the recovery wing, face-down in a bed made to accommodate a person with your body type, with a sore ass. You push yourself up and look at the mass under the cover behind you that is your rear, taking note of how much bigger it is now than when you arrived. "So do you like it?", asks the surgeon's assistant, seating _himselfU beside you and bringing _hisU hands to your <<if $PC.butt == 3>>enormous<<elseif $PC.butt == 2>>huge<<else>>big<</if>> rounded butt. "Size isn't everything in an ass, shape is important too, though I think you've got a good balance. We didn't need to do much reshaping when we put in the implant." _HeU begins groping your bottom, feeling the silicone filled implant for any oddities. "I know you're still a little sore, but bear with it. There, everything feels good, now rest up and you'll be set! Though you may need some help righting yourself until you get used to its added weight. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Groggy, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	After a few hours, you awaken in the recovery wing, face-down in a bed made to accommodate a person with your body type, with a sore ass. You push yourself up and look at the mass under the cover behind you that is your rear, taking note of how much bigger it is now than when you arrived. "So do you like it?", asks the surgeon's assistant, seating _himselfU beside you and bringing _hisU hands to your <<if $PC.butt >= 3>>enormous<<elseif $PC.butt == 2>>huge<<else>>big<</if>> rounded butt. "Size isn't everything in an ass, shape is important too, though I think you've got a good balance. We didn't need to do much reshaping when we put in the implant." _HeU begins groping your bottom, feeling the silicone filled implant for any oddities. "I know you're still a little sore, but bear with it. There, everything feels good, now rest up and you'll be set! Though you may need some help righting yourself until you get used to its added weight. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Groggy, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "buttEnlargement">>
-	After a few hours, you awaken in the recovery wing, face-down in a bed made to accommodate a person with your body type, with a sore ass. You push yourself up and look at the mass under the cover behind you that is your rear, taking note of how much bigger it is now than when you arrived. "So do you like it?", asks the surgeon's assistant, seating _himselfU beside you and bringing _hisU hands to your <<if $PC.butt == 3>>enormous<<elseif $PC.butt == 2>>huge<<else>>big<</if>> soft butt. "Size isn't everything in an ass, shape is important too, though I think you've got a good balance. We didn't need to do much reshaping when we added the fat." _HeU begins groping your bottom, feeling around for any oddities. "So soft... I know you're still a little sore, but bear with it. There, everything feels good, now rest up and you'll be set! Though you may need some help righting yourself until you get used to its added weight. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Groggy, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	After a few hours, you awaken in the recovery wing, face-down in a bed made to accommodate a person with your body type, with a sore ass. You push yourself up and look at the mass under the cover behind you that is your rear, taking note of how much bigger it is now than when you arrived. "So do you like it?", asks the surgeon's assistant, seating _himselfU beside you and bringing _hisU hands to your <<if $PC.butt >= 3>>enormous<<elseif $PC.butt == 2>>huge<<else>>big<</if>> soft butt. "Size isn't everything in an ass, shape is important too, though I think you've got a good balance. We didn't need to do much reshaping when we added the fat." _HeU begins groping your bottom, feeling around for any oddities. "So soft... I know you're still a little sore, but bear with it. There, everything feels good, now rest up and you'll be set! Though you may need some help righting yourself until you get used to its added weight. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Groggy, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "ballEnlargement">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness <<if $PC.ballsImplant > 2>>and the sense that something massive is pushing your legs apart<<elseif $PC.ballsImplant == 2>>and tight feeling between your legs<<else>>between your legs<</if>>. You pull the covers off of yourself to catch sight of the result of the surgery and
@@ -144,7 +144,7 @@
 
 <<case "herm2female">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness between your legs. You pull the covers off of yourself to catch sight of the result of the surgery and
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		find that your enormous breasts make it difficult to get a good look so you settle for the mirror-covered wall across from your bed. Your penis is gone, leaving you with just a vagina. Given the soreness in your lower belly, your prostate and other male reproductive organs have been removed as well. You can't tell much more until you get a good feel of it.
 	<<else>>
 		find your penis and testicles removed, leaving you with just a vagina. Given the soreness in your lower belly, your prostate and other male reproductive organs have been removed as well.
@@ -153,7 +153,7 @@
 
 <<case "herm2male">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness between your legs. You pull the covers off of yourself to catch sight of the result of the surgery and
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		find that your enormous breasts make it difficult to get a good look so you settle for the mirror-covered wall across from your bed. Your pussy is gone, leaving you with just a cock and balls. Given the soreness in your lower belly, your womb and ovaries are gone too. You can't tell much more until you get a good feel of it.
 	<<else>>
 		find your pussy is gone, leaving you with just a cock and balls. Given the soreness in your lower belly, your womb and ovaries are gone too.
@@ -162,7 +162,7 @@
 
 <<case "herm2truefemale">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness between your legs and pain practically all over your body. You pull the covers off of yourself to catch sight of the result of the surgery and
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		find that your enormous breasts make it difficult to get a good look so you settle for the mirror-covered wall across from your bed. Your penis is gone, leaving you with just a vagina. Given the soreness in your lower belly, your prostate and other male reproductive organs have been removed as well. You can't tell much more until you get a good feel of it. Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you as a man anymore.
 	<<else>>
 		find your penis and testicles removed, leaving you with just a vagina. Given the soreness in your lower belly, your prostate and other male reproductive organs have been removed as well. You can't tell much more until you get a good feel of it, but you're too sore to try. Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you as a man anymore.
@@ -174,7 +174,7 @@
 
 <<case "male2female">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness between your legs and in your lower belly. You pull the covers off of yourself to catch sight of the result of the surgery and find
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		that your enormous breasts make it difficult to get a good look, so you settle for the mirror-covered wall across from your bed. Your dick is gone, along with the rest of your male reproductive organs, leaving you with a pussy, a new fertile set of ovaries, and a fresh womb. You can't tell much more until you get a good feel of it, but you're too sore to try.
 	<<else>>
 		your dick is gone, along with the rest of your male reproductive organs, leaving you with a pussy, a new fertile set of ovaries, and a fresh womb. You can't tell much more until you get a good feel of it, but you're too sore to try.
@@ -183,7 +183,7 @@
 
 <<case "male2herm">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness between your legs and in your lower belly. You pull the covers off of yourself to catch sight of the result of the surgery and find
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		that your enormous breasts make it difficult to get a good look so you settle for the mirror-covered wall across from your bed. You see<<if $PC.ballsImplant < 1>> your new pussy peeking from under your testicles<<else>> that your balls are big enough to completely obscure your new pussy<</if>>. Your lower belly is slightly larger too, likely from your new womb. You can't tell much more until you get a good feel of it, but you're too sore to try.
 	<<else>>
 		<<if $PC.ballsImplant < 1>>your new pussy peeking from under your testicles<<else>>that your balls are big enough to completely obscure your new pussy<</if>>. Your lower belly is slightly larger too, likely from your new womb. You can't tell much more until you get a good feel of it, but you're too sore to try.
@@ -192,7 +192,7 @@
 
 <<case "male2truefemale">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness between your legs and pain practically all over your body. You pull the covers off of yourself to catch sight of the result of the surgery and find
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		that your enormous breasts make it difficult to get a good look so you settle for the mirror-covered wall across from your bed. Your dick is gone, along with the rest of your male reproductive organs, leaving you with a pussy, a new fertile set of ovaries and a fresh womb. You can't tell much more until you get a good feel of it, but you're too sore to try. Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you as a man anymore.
 	<<else>>
 		your dick is gone, along with the rest of your male reproductive organs, leaving you with a pussy, a new fertile set of ovaries and a fresh womb. You can't tell much more until you get a good feel of it, but you're too sore to try.<<if $PC.boobs == 0>> You do take a moment to fondle your new C-cup breasts though; they feel nice.<</if>> Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you as a man anymore.
@@ -202,7 +202,7 @@
 
 <<case "male2hermfemale">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness between your legs and in your lower belly. You pull the covers off of yourself to catch sight of the result of the surgery and find
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		that your enormous breasts make it difficult to get a good look so you settle for the mirror-covered wall across from your bed. You see<<if $PC.ballsImplant < 1>> your new pussy peeking from under your testicles<<else>> that your balls are big enough to completely obscure your new pussy<</if>>. Your lower belly is slightly larger too, likely from your new womb. You can't tell much more until you get a good feel of it, but you're too sore to try. Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you as a man anymore.
 	<<else>>
 		<<if $PC.ballsImplant < 1>>your new pussy peeking from under your testicles<<else>>that your balls are big enough to completely obscure your new pussy<</if>>. Your lower belly is slightly larger too, likely from your new womb. You can't tell much more until you get a good feel of it, but you're too sore to try.<<if $PC.boobs == 0>> You do take a moment to fondle your new C-cup breasts though; they feel nice.<</if>> Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you as a man anymore.
@@ -212,7 +212,7 @@
 
 <<case "female2male">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness between your legs and in your lower belly. You pull the covers off of yourself to catch sight of the result of the surgery and find
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		that your enormous breasts make it difficult to get a good look so you settle for the mirror-covered wall across from your bed. Your pussy is gone, replaced with a cock and balls. Given the soreness in your lower belly, your womb and ovaries are gone too. You can't tell much more until you get a good feel of it, but you're too sore to try.
 	<<else>>
 		your pussy is gone, replaced with a cock and balls. Given the soreness in your lower belly, your womb and ovaries are gone too. You can't tell much more until you get a good feel of it, but you're too sore to try.
@@ -221,7 +221,7 @@
 
 <<case "female2herm">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness between your legs and in your lower belly. You pull the covers off of yourself to catch sight of the result of the surgery and find
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		that your enormous breasts make it difficult to get a good look so you settle for the mirror-covered wall across from your bed. You see your new cock and balls, as well as the bottom of your pussy, just barely peeking out from under them. Your lower belly pain is likely caused by the addition of a prostrate and other organs. You can't tell much more until you get a good feel of it, but you're too sore to try, though your new dick disagrees as it grows erect.
 	<<else>>
 		your new cock and balls, as well as the bottom of your pussy, just barely peeking out from under them. Your lower belly pain is likely caused by the addition of a prostrate and other organs. You can't tell much more until you get a good feel of it, but you're too sore to try, though your new dick disagrees as it grows erect.
@@ -236,7 +236,7 @@
 
 <<case "tummyTuck">>
 	After a few hours, you awaken in the recovery wing with a lingering soreness to your stomach. You pull the covers off of yourself to catch sight of the result of the surgery and
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		find that your enormous breasts make it difficult to get a good look. Spreading them apart, you find your belly has been restored almost perfectly to the way it was prior to your pregnancy.
 	<<else>>
 		find your belly has been restored almost perfectly to the way it was prior to your pregnancy.
@@ -245,7 +245,7 @@
 
 <<case "ovulationRestart">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness in your lower belly. You pull the covers off of yourself to catch sight of the result of the surgery and find
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		find that your enormous breasts make it difficult to get a good look. Spreading them apart, you find nothing but a pair of small, stitched incisions over your ovaries.
 	<<else>>
 		find nothing but a pair of small, stitched incisions over your ovaries.
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 1592619e73dce6f70e0d3cbffb8d54f9bd8d2fca..d514244ff59a3bb47e54afc12d31344703a6cf01 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -6900,10 +6900,12 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 				huge<<if $PC.boobsImplant == 1>> fake<</if>> breasts
 			<<elseif $PC.boobsBonus == 1>>
 				big<<if $PC.boobsImplant == 1>> firm<</if>> breasts
-			<<elseif $PC.boobsBonus == -0.5>>
-				breasts
 			<<elseif $PC.boobsBonus == -1>>
+				breasts
+			<<elseif $PC.boobsBonus == -2>>
 				average breasts
+			<<elseif $PC.boobsBonus == -3>>
+				small breasts
 			<<elseif $PC.boobs == 1>>
 				breasts
 			<<elseif $PC.title == 0>>
@@ -6940,9 +6942,11 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 				huge<<if $PC.boobsImplant == 1>> fake<</if>> breasts
 			<<elseif $PC.boobsBonus == 1>>
 				big<<if $PC.boobsImplant == 1>> firm<</if>> breasts
-			<<elseif $PC.boobsBonus == -0.5>>
-				breasts
 			<<elseif $PC.boobsBonus == -1>>
+				breasts
+			<<elseif $PC.boobsBonus == -2>>
+				average breasts
+			<<elseif $PC.boobsBonus == -3>>
 				average breasts
 			<<elseif $PC.boobs == 1>>
 				breasts
@@ -7335,7 +7339,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 				$he's shorter than you, so as you approach $he goes up on tiptoe to bring $his dick to just the right height for standing sex.
 			<</if>>
 			$He doesn't penetrate you right away, though; $he
-			<<if $PC.butt == 3>>
+			<<if $PC.butt >= 3>>
 				kneads your mass of assflesh
 			<<elseif $PC.butt == 2>>
 				hefts a huge buttock in each hand
@@ -13017,10 +13021,12 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 				huge<<if $PC.boobsImplant == 1>>, clearly fake<<else>>, heavy<</if>> breasts.
 			<<elseif $PC.boobsBonus == 1>>
 				big<<if $PC.boobsImplant == 1>>, perky<</if>> breasts.
-			<<elseif $PC.boobsBonus == -0.5>>
-				handfilling breasts
 			<<elseif $PC.boobsBonus == -1>>
+				handfilling breasts
+			<<elseif $PC.boobsBonus == -2>>
 				average breasts
+			<<elseif $PC.boobsBonus == -3>>
+				small breasts
 			<<elseif $PC.boobs == 1>>
 				generous breasts.
 			<</if>>
diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw
index d902b416c022017e1c1331ac440e90f2d558b4c8..328dd8e21cf909b8841dab3a9c8238f6391b3827 100644
--- a/src/uncategorized/RETS.tw
+++ b/src/uncategorized/RETS.tw
@@ -192,6 +192,7 @@
 <<set $activeSlave.clothes = _clothesTemp>>
 <<set $subSlave.clothes = _clothesTemp2>>
 
+<<setPlayerPronouns>>
 <<setAssistantPronouns>>
 <<setLocalPronouns $activeSlave>>
 <<setLocalPronouns $subSlave 2>>
@@ -580,7 +581,6 @@ $activeSlave.slaveName isn't fucking $subSlave.slaveName at all: $he's just <<if
 
 <<set $subSlave.counter.anal++, $analTotal++>>
 <<set _belly = bellyAdjective($subSlave)>>
-<<setPlayerPronouns>>
 You look in on your slaves as a group of them heads for bed. $subSlave.slaveName finds <<EventNameLink>> blocking the way to _hers2. Poor $subSlave.slaveName cringes at $activeSlave.slaveName's predatory expression, but the horny slave doesn't pounce at once. Instead, $he starts to walk around $subSlave.slaveName, whose $subSlave.skin body is nude for bed, groping and prodding _him2 as $subSlave.slaveName shivers with fear. Finally $activeSlave.slaveName sidles up behind $subSlave.slaveName<<if $activeSlave.belly >= 5000>>, until $his bulging belly pushes into $his back, before<</if>> snaking $his arms around $subSlave.slaveName's
 <<if $subSlave.bellyPreg >= 10000>>
 	pregnant
@@ -637,7 +637,6 @@ $activeSlave.slaveName chuckles into $subSlave.slaveName's ear, crooning,
 <<else>>
 	"You <<s>>tupid <<s>>lut. Too bad you never went to <<s>>chool, maybe you could have learned <<s>>omething and not ended up a<<s>> a fuck <<s>>lave."
 <</if>>
-<<setPlayerPronouns>>
 <<setSpokenPlayerPronouns $activeSlave>>
 $He grinds against the wilting $subSlave.slaveName, and then continues, "I felt your <<if ($subSlave.butt > 4)>>fat butt<<elseif ($subSlave.butt > 2)>>big butt<<else>>tiny little butt<</if>> clench ju<<s>>t now." $He gives $subSlave.slaveName's <<if ($subSlave.balls > 0 && $subSlave.scrotum > 0)>>balls a gentle squeeze<<elseif ($subSlave.dick > 0)>>dick a gentle tug<<elseif $subSlave.vagina == -1>>butthole a gentle massage<<else>>pussylips a gentle massage<</if>>. "<<HeP>> ha<<s>>n't fucked you back there yet, ha<<s>> <<heP>>? It'<<s>> going to hurt, you little bitch. <<HeP>>'<<s>> going to hold you down and <<sh>>ove <<hisP>> <<if $PC.dick == 1>>huge cockhead<<else>>bigge<<s>>t <<s>>trap-on<</if>> right up again<<s>>t thi<<s>> tight little hole." $He gropes the quivering slave's virgin anus, careful not to penetrate it. "You're going to do your be<<s>>t to relax like a good little _girl2. But it'<<s>> going to be so big. It'<<s>> going to burn. And then you're going to panic, and <<s>>truggle, and <<heP>>'<<s>> going to hold you down and rape your butt while you <<s>>cream and cry."
 <br><br>
@@ -1514,7 +1513,7 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p
 		big <<if $PC.boobsImplant == 1>>perky <</if>>breasts
 	<<elseif $PC.boobsBonus == 2>>
 		huge <<if $PC.boobsImplant == 1>>round <</if>>breasts
-	<<elseif $PC.boobsBonus == 3>>
+	<<elseif $PC.boobsBonus >= 3>>
 		giant <<if $PC.boobsImplant == 1>>fake breasts<<else>>cow tits<</if>>
 	<<elseif $PC.boobsBonus < 0>>
 		cute breasts
@@ -2152,9 +2151,9 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p
 	<<else>>
 		<<if $subSlave.anus == 1>>has a tight little ass, and<<elseif $subSlave.anus == 2>>is no anal virgin, but<<else>>has a very experienced asshole, but<</if>>
 	<</if>>
-	<<if $PC.dick>>you have a big dick<<else>>you use a formidable strap-on<</if>> and are ramming it into $subSlave.slaveName's fuckhole industriously. _He2 moans and writhes, being a good sex slave with your <<if $PC.dick>>hard shaft<<else>>instrument<</if>> sliding in and out of _him2, in and out of _him2. You plunder _him2 without restraint, bending to plant dominant kisses on _him2 panting mouth while you fuck _him2, and then straightening up again to grab and maul _his2 <<if $subSlave.boobsImplant > 0>>fake tits<<else>>$subSlave.boobShape boobs<</if>> with both hands. <<if $PC.dick>>When you're through, you thrust deep inside, blasting _his2 <<if _vaginal>>cervix<<else>>bowels<</if>> with a hot torrent of your semen<<if $PC.balls == 3>> until _his2 belly begins to visibly swell from your load<<elseif $PC.balls == 2>>, thoroughly filling _him2 with your massive load<</if>>.<<else>>Finally you orgasm, thrusting yourself hard against your strap-on harness, driving it as far inside your fucktoy as it'll go and holding it there as you shudder with climax.<</if>> Then you pull out and shove the @@.hotpink;dominated,@@ sweaty, fucked-out<<if $PC.dick>>, cum-dripping<</if>> $subSlave.slaveName towards the showers, giving _him2 a swat on the butt when _he2's slow to get moving. Then you turn to $activeSlave.slaveName.
+	<<if $PC.dick>>you have a big dick<<else>>you use a formidable strap-on<</if>> and are ramming it into $subSlave.slaveName's fuckhole industriously. _He2 moans and writhes, being a good sex slave with your <<if $PC.dick>>hard shaft<<else>>instrument<</if>> sliding in and out of _him2, in and out of _him2. You plunder _him2 without restraint, bending to plant dominant kisses on _him2 panting mouth while you fuck _him2, and then straightening up again to grab and maul _his2 <<if $subSlave.boobsImplant > 0>>fake tits<<else>>$subSlave.boobShape boobs<</if>> with both hands. <<if $PC.dick>>When you're through, you thrust deep inside, blasting _his2 <<if _vaginal>>cervix<<else>>bowels<</if>> with a hot torrent of your semen<<if $PC.balls >= 3>> until _his2 belly begins to visibly swell from your load<<elseif $PC.balls == 2>>, thoroughly filling _him2 with your massive load<</if>>.<<else>>Finally you orgasm, thrusting yourself hard against your strap-on harness, driving it as far inside your fucktoy as it'll go and holding it there as you shudder with climax.<</if>> Then you pull out and shove the @@.hotpink;dominated,@@ sweaty, fucked-out<<if $PC.dick>>, cum-dripping<</if>> $subSlave.slaveName towards the showers, giving _him2 a swat on the butt when _he2's slow to get moving. Then you turn to $activeSlave.slaveName.
 	<br><br>
-	$He's painfully aroused, of course. $He just got to watch a <<if $PC.title>>handsome guy fuck a<<else>>hot girl fuck another<</if>> hot girl<<if !_vaginal>>'s ass<</if>>, right in front of $him. And this while already laboring under a severe case of blue balls. "<<Master>>," $he <<say>>s nonspecifically. $He knows you did that in front of $him for $his benefit, at least partly, and $he wouldn't know what to make of it or how to respond, even if $he were in possession of $his faculties. Which $he isn't. All $his blood is very obviously located in <<if $activeSlave.vagina > -1>>$his lovely futanari hard-on<<else>>$his desperately erect penis<</if>>. You point to where $subSlave.slaveName just got fucked, and announce that $activeSlave.slaveName can get off if $he wants, but not by fucking $subSlave.slaveName. $He gets to come with <<if $PC.dick>>your cock<<else>>a strap-on<</if>> <<if canDoVaginal($activeSlave)>>fucking $him<<else>>up $his ass<</if>>.
+	$He's painfully aroused, of course. $He just got to watch a <<if $PC.title>>handsome guy fuck a<<else>>hot _girlP fuck another<</if>> hot _girl2<<if !_vaginal>>'s ass<</if>>, right in front of $him. And this while already laboring under a severe case of blue balls. "<<Master>>," $he <<say>>s nonspecifically. $He knows you did that in front of $him for $his benefit, at least partly, and $he wouldn't know what to make of it or how to respond, even if $he were in possession of $his faculties. Which $he isn't. All $his blood is very obviously located in <<if $activeSlave.vagina > -1>>$his lovely futanari hard-on<<else>>$his desperately erect penis<</if>>. You point to where $subSlave.slaveName just got fucked, and announce that $activeSlave.slaveName can get off if $he wants, but not by fucking $subSlave.slaveName. $He gets to come with <<if $PC.dick>>your cock<<else>>a strap-on<</if>> <<if canDoVaginal($activeSlave)>>fucking $him<<else>>up $his ass<</if>>.
 	<br><br>
 	$activeSlave.slaveName is familiar with your libido, but even so, $he's impressed. $He's also in dire need of relief, and at this point, $he's so horny that the prospect of any sex is attractive, even if it isn't the kind of sex $he was originally planning. So $he hops up eagerly enough and opens $his legs for you, $his erect member <<if $activeSlave.belly >= 10000>>uncomfortably trapped by $his <<if $activeSlave.bellyPreg >= 8000>>_belly pregnancy<<else>>_belly belly<</if>><<else>>sticking out forgotten<</if>> as $he <<if canDoVaginal($activeSlave)>>spreads $his pussy<<else>>offers you $his asshole<</if>>. You fuck it, even more roughly than you fucked $subSlave.slaveName's <<if _vaginal>>cunt<<else>>anus<</if>>, and since you've just climaxed recently, it's a while before you orgasm again. $activeSlave.slaveName cums long before you, spattering $himself messily, moaning "Oh, <<Master>>, ye<<s>>, oh fuck ye<<s>>, my <<if _vaginal>>pu<<ss>>y, my fucking pu<<ss>>y<<else>>a<<ss>>, my fucking a<<ss>>hole<</if>>" so @@.hotpink;whorishly@@ that there's no indication $he was ever even considering fucking anyone.
 	<<set $activeSlave.devotion += 3>>
diff --git a/src/uncategorized/masterSuiteReport.tw b/src/uncategorized/masterSuiteReport.tw
index 27c79cf879913c630f8e673bd8992cd3d1b338bf..b625903e3be3f4436523702834cce75fbed96f39 100644
--- a/src/uncategorized/masterSuiteReport.tw
+++ b/src/uncategorized/masterSuiteReport.tw
@@ -74,15 +74,15 @@
 			<<elseif $masterSuiteAverageEnergy > 60>>
 				high; there is strong competition for your favors whenever you enter your retreat.
 			<<else>>
-				relatively normal; the girls serve your pleasure before their own.
+				relatively normal; the slaves serve your pleasure before their own.
 			<</if>>
 		<<elseif $masterSuiteUpgradeLuxury == 2>>
 			<<if $masterSuiteAverageEnergy > 90>>
-				intense. Your girls spend almost all their time in the fuckpit, having sex in a big pile.
+				intense. Your slaves spend almost all their time in the fuckpit, having sex in a big pile.
 			<<elseif $masterSuiteAverageEnergy > 60>>
-				high; your girls spend much of their time in the fuckpit, having sex with each other.
+				high; your slaves spend much of their time in the fuckpit, having sex with each other.
 			<<else>>
-				relatively normal; the girls lounging in the fuckpit get each other off when they feel like it.
+				relatively normal; the slaves lounging in the fuckpit get each other off when they feel like it.
 			<</if>>
 			<<if _masterSuiteAverageCum > 4>>
 				Unless it's right after an automated cleaning, everything in the fuckpit is spattered with cum.
@@ -293,7 +293,7 @@
 				<<elseif (_masterSuiteAverageSadism < 50) && (_fetishChangeChance > random(0,50))>>
 					$He
 					<<if $slaves[$i].fetish == "sadist">>
-						@@.lightcoral;becomes more sadistic,@@ since there are so many girls in the fuckpit who will do anything for $him if $he'll only spank them.
+						@@.lightcoral;becomes more sadistic,@@ since there are so many sluts in the fuckpit who will do anything for $him if $he'll only spank them.
 						<<set $slaves[$i].fetishStrength += 4>>
 					<<else>>
 						@@.lightcoral;becomes a bit of a sadist@@ after $he notices that so many of $his fellow fucktoys cum harder if $he gives them a good slap.
diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw
index 33232b87299acfb5f3e5b0215c0844746db2f9d1..6d2c3289d9a2ef9dca7c1b6b6d5046c56dfe277d 100644
--- a/src/uncategorized/newSlaveIntro.tw
+++ b/src/uncategorized/newSlaveIntro.tw
@@ -239,7 +239,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 	<</if>>
 <</if>>
 
-<<if $PC.boobsBonus == 3>>
+<<if $PC.boobsBonus >= 3>>
 	<<if $activeSlave.fetish == "boobs">>
 		<<if $activeSlave.fetishKnown == 0>>
 			$He keeps stealing glances at your huge rack<<if canAchieveErection($activeSlave)>>, $his dick rapidly hardening<</if>>. You stretch, giving $him a fantastic view of your breasts, before circling around behind $him and cupping $his chest. Between your tits against $his back, and how teasingly big you are pretending $his breasts will be, $he can't contain $himself; $he cums from overstimulation, completely pinning $him @@.green;as a breast fetishist!@@
diff --git a/src/uncategorized/pMercenaryRomeo.tw b/src/uncategorized/pMercenaryRomeo.tw
index cd9e023d23e1de6b481d0d53c5fadd85249cb32c..32c095211a68286378f2111d5b72b3374ae782c7 100644
--- a/src/uncategorized/pMercenaryRomeo.tw
+++ b/src/uncategorized/pMercenaryRomeo.tw
@@ -28,6 +28,7 @@
 	<<set $slaveCost = 100*Math.trunc($slaveCost/100)>>
 	<<setLocalPronouns $activeSlave>>
 <</if>>
+<<setNonlocalPronouns $seeDicks>>
 
 One of your mercenaries requests an interview. He's a worn, grey-haired tank of a man, made bulkier still by heavy ceramic plate armor and lots of ammunition and gear. The murderous submachine gun favored for city fighting looks like a toy in his hands. But as he sits at your invitation and accepts a
 <<if $PC.refreshmentType == 0>>
@@ -45,7 +46,7 @@ One of your mercenaries requests an interview. He's a worn, grey-haired tank of
 <<elseif $PC.refreshmentType == 6>>
 	tab of $PC.refreshment
 <</if>>
-proffered by an attentive slave girl, he seems almost bashful.
+proffered by an attentive slave _girlU, he seems almost bashful.
 
 <br><br>
 
diff --git a/src/uncategorized/pRivalryHostage.tw b/src/uncategorized/pRivalryHostage.tw
index 3bcac2709558e758caf7d557eb2c097fee1fca44..b6c0cbbae05a31ad9bbf25aa555c72222cc60ec7 100644
--- a/src/uncategorized/pRivalryHostage.tw
+++ b/src/uncategorized/pRivalryHostage.tw
@@ -268,7 +268,7 @@ Only a few days into your inter-arcology war, you receive a video message from y
 <<case "medicine">>
 	career in medicine. $He was a surgical nurse, one of the best. $He was smart, pretty, and $he had sure hands. You were never that close,
 <<case "slaver">>
-	career as a slaver. $He was a guard in one of the slave receiving pens, and a notorious one, at that. Nobody was quite as eager to break in new girls as $he was. You were never that close,
+	career as a slaver. $He was a guard in one of the slave receiving pens, and a notorious one, at that. Nobody was quite as eager to break in new slaves as $he was. You were never that close,
 <<case "celebrity">>
 	time as a minor celebrity. $He was a pretty little groupie who flitted from entourage to entourage. You were never particularly close,
 <<case "arcology owner">>
diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw
index 82a7790994f0738747f11a0a0a839e7ebce3f21a..f45b194d8d7e0c5019a3a6deed492258f7819379 100644
--- a/src/uncategorized/ptWorkaround.tw
+++ b/src/uncategorized/ptWorkaround.tw
@@ -3,6 +3,7 @@
 &nbsp;&nbsp;&nbsp;&nbsp;
 <<set _ptwi = $personalAttention.findIndex(function(s) { return s.ID == $activeSlave.ID; })>>
 <<setLocalPronouns $activeSlave>>
+<<setPlayerPronouns>>
 <<if $personalAttention[_ptwi].trainingRegimen == "look after her">>
 	''You care for''
 <<else>>
@@ -457,7 +458,7 @@
 		$activeSlave.slaveName's mind is broken. $He is a boring slave to torture, though $his body will still occasionally react to intense pain. No matter what you try, nothing really reaches $his destroyed soul. The agonies do @@.red;affect $his health, leaving $him with a $activeSlave.minorInjury.@@
 	<<elseif ($activeSlave.devotion < -90)>>
 		<<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>>
-		Old traditions should not be forgotten. The scourge is the oldest slavebreaking tool known to man, and to slave girls who do not properly obey men. For the whole week, whenever $activeSlave.slaveName disobeys you or whenever the whim strikes, you bind $him securely and flog $him without mercy. You use a soft leather appliance and apply medical care afterward, so there will be no permanent scarring, but @@.red;$his health is affected and the beatings leave $him with a $activeSlave.minorInjury.@@ $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience.@@
+		Old traditions should not be forgotten. The scourge is the oldest slavebreaking tool known to man, and to slave <<= $girl>>s who do not properly obey _menP. For the whole week, whenever $activeSlave.slaveName disobeys you or whenever the whim strikes, you bind $him securely and flog $him without mercy. You use a soft leather appliance and apply medical care afterward, so there will be no permanent scarring, but @@.red;$his health is affected and the beatings leave $him with a $activeSlave.minorInjury.@@ $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience.@@
 	<<elseif ($activeSlave.devotion < -50) && canDoAnal($activeSlave)>>
 		<<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>>
 		$activeSlave.slaveName is willing to physically defend $himself against sexual abuse. Training $him out of this rebelliousness is a nice sexual change of pace. For the entire week, whenever $he commits some minor sin, you fight $him into a state of physical submission and then sodomize $him. This usually requires an extended beating to render $him quiescent, followed by holding $him down so that $his struggles do not dislodge your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> from $his delightfully spasming butthole. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress @@.red;affects $his health, leaving $him with a $activeSlave.minorInjury.@@
@@ -1063,7 +1064,7 @@
 	<</if>>
 	<<if $activeSlave.training < 100>> <<= IncreasePCSkills('slaving', 0.2)>> <<else>> <<= IncreasePCSkills('slaving', 0.5)>> <</if>>
 <<case "induce judgement">>
-	Since you've decided to make $him sexually judgemental, you keep $him in your office and fuck $him, <<if $PC.dick == 1>>praising $him whenever $he takes your big dick well<<else>>using a huge strap-on on $him and praising $him when $he takes it like a good girl<</if>>. You also judge others' endowments in $his presence.
+	Since you've decided to make $him sexually judgemental, you keep $him in your office and fuck $him, <<if $PC.dick == 1>>praising $him whenever $he takes your big dick well<<else>>using a huge strap-on on $him and praising $him when $he takes it like a good $girl<</if>>. You also judge others' endowments in $his presence.
 	<<InduceFlawLenityEffects>>
 	<<if $activeSlave.training < 100>>
 		$He writes this off as bravado, and will need more training.
diff --git a/src/uncategorized/reBrothelFunction.tw b/src/uncategorized/reBrothelFunction.tw
index 3a460d55efedcf6b21c2257b93b251d9ce2da0ea..abe071bb044de76dd023641f465d59c966f2674e 100644
--- a/src/uncategorized/reBrothelFunction.tw
+++ b/src/uncategorized/reBrothelFunction.tw
@@ -16,7 +16,7 @@ The last of these requests comes in the form of a letter, stamped with the heral
 <span id="result">
 <<link "Acquiesce to the arcology owner's request">>
 	<<replace "#result">>
-	Though you close down $brothelNameCaps for a day, it's far from a day off for your hard-working brothel girls. In the absence of the convenient center for the sale of sexual services that a brothel represents, you disperse them onto the streets to sell their bodies the old fashioned way. At the end of the day you receive a brief message of gratitude from your fellow arcology owner while your girls @@.hotpink;appreciate the opportunity to stretch their legs on the street@@ for a change of pace.
+	Though you close down $brothelNameCaps for a day, it's far from a day off for your hard-working brothel slaves. In the absence of the convenient center for the sale of sexual services that a brothel represents, you disperse them onto the streets to sell their bodies the old fashioned way. At the end of the day you receive a brief message of gratitude from your fellow arcology owner while your whores @@.hotpink;appreciate the opportunity to stretch their legs on the street@@ for a change of pace.
 	<<for $i = 0; $i < $slaves.length; $i++>>
 		<<if $slaves[$i].assignment == "work in the brothel">>
 			<<set $slaves[$i].devotion += 4>>
@@ -28,7 +28,7 @@ The last of these requests comes in the form of a letter, stamped with the heral
 <</link>> //This will earn you <<print cashFormat(10000)>>//
 <br><<link "Give this lady-killing rake a proper send off into retirement">>
 	<<replace "#result">>
-	Though a citizen he may be, this serial seducer may have more notches on his proverbial bedpost than even your oldest slaves. Though you are not present to view his mastery of the sexual craft first-hand, the dreamy fucked-out looks of exhaustion and gratified satisfaction painting every single one of your girls' faces at the end of the day speak volumes. Indeed, all of your brothel slaves with any room for improvement in their whoring skills @@.green;learn from his skillful coupling,@@ while even those with nothing to learn from him @@.hotpink;gain confidence@@ from the intensity of their sexual congress.
+	Though a citizen he may be, this serial seducer may have more notches on his proverbial bedpost than even your oldest slaves. Though you are not present to view his mastery of the sexual craft first-hand, the dreamy fucked-out looks of exhaustion and gratified satisfaction painting every single one of your slaves' faces at the end of the day speak volumes. Indeed, all of your brothel slaves with any room for improvement in their whoring skills @@.green;learn from his skillful coupling,@@ while even those with nothing to learn from him @@.hotpink;gain confidence@@ from the intensity of their sexual congress.
 	<<for $i = 0; $i < $slaves.length; $i++>>
 		<<if $slaves[$i].assignment == "work in the brothel">>
 			<<if $slaves[$i].skill.whoring < 100>>
diff --git a/src/uncategorized/reBusyBrothel.tw b/src/uncategorized/reBusyBrothel.tw
index 11bac6845f64388fde44372fdc93656a1971045c..a5d6ac95388e41d30b27380c0495b12f4eea46ed 100644
--- a/src/uncategorized/reBusyBrothel.tw
+++ b/src/uncategorized/reBusyBrothel.tw
@@ -14,7 +14,7 @@ Of course, $brothelName is the best establishment of its kind in the arcology. C
 <span id="result">
 <<link "Surprise the hardworking whores with a day of rest">>
 	<<replace "#result">>
-		The problem with assembly-line sex is that it has a tendency to destroy any sense of intimacy or fun. So, you make some simple preparations and close the brothel for a day, hiring some freelancers to cover. All your slave whores are allowed to sleep late, and then spend the day with you playing games and enjoying light amusements. The girls are surprised by your generosity, but they have fun. Many of the games are sexually themed. One day of giggling and squealing can't completely reverse the transactionalization of sex for them, but they @@.hotpink;appreciate the effort.@@
+		The problem with assembly-line sex is that it has a tendency to destroy any sense of intimacy or fun. So, you make some simple preparations and close the brothel for a day, hiring some freelancers to cover. All your slave whores are allowed to sleep late, and then spend the day with you playing games and enjoying light amusements. The slaves are surprised by your generosity, but they have fun. Many of the games are sexually themed. One day of giggling and squealing can't completely reverse the transactionalization of sex for them, but they @@.hotpink;appreciate the effort.@@
 		<<for $i = 0; $i < $BrothiIDs.length; $i++>>
 			<<set $slaves[$slaveIndices[$BrothiIDs[$i]]].devotion += 4>>
 			<<set $slaves[$slaveIndices[$BrothiIDs[$i]]].lastWeeksCashIncome += 250>>
diff --git a/src/uncategorized/reBusyMasterSuite.tw b/src/uncategorized/reBusyMasterSuite.tw
index 8efb33a6afb69b57930e6d5b75c4b087d4ec2076..69ee55c7ef8b041cc1848c017b506dab1908be41 100644
--- a/src/uncategorized/reBusyMasterSuite.tw
+++ b/src/uncategorized/reBusyMasterSuite.tw
@@ -223,7 +223,7 @@ who has paused $his thrusting to issue a peremptory order to the slaves to stay
 	<<else>>
 		trim
 	<</if>>
-	ass down near the foot of the bed. You climax, on occasion, but are enjoying yourself so immensely that you let the slaves continue the rotation until you're entirely spent, and they're entirely exhausted. You reach for a tablet to get some work done, in the center of a pile of sweaty, tired girls, all of whom are resting with at least one body part in contact with their @@.hotpink;beloved@@ <<= properMaster()>>.
+	ass down near the foot of the bed. You climax, on occasion, but are enjoying yourself so immensely that you let the slaves continue the rotation until you're entirely spent, and they're entirely exhausted. You reach for a tablet to get some work done, in the center of a pile of sweaty, tired slaves, all of whom are resting with at least one body part in contact with their @@.hotpink;beloved@@ <<= properMaster()>>.
 	<<for _reBMS = 0; _reBMS < $slaves.length; _reBMS++>>
 		<<if $slaves[_reBMS].ID == $Concubine.ID>>
 			<<set $slaves[_reBMS].trust += 5, $slaves[_reBMS].counter.oral++, $oralTotal++, $slaves[_reBMS].counter.penetrative++, $penetrativeTotal++>>
diff --git a/src/uncategorized/reFullBed.tw b/src/uncategorized/reFullBed.tw
index 6b040561bb64f7ce538849d3c69914a72e76de71..0fc2a11be874d4186ef8178eb374e1627ef75c24 100644
--- a/src/uncategorized/reFullBed.tw
+++ b/src/uncategorized/reFullBed.tw
@@ -57,7 +57,7 @@ Today was an unusually relaxing day, and you aren't particularly tired.
 			<<if $slaves[_bedSlaveOne].vagina == 0>>virgin <</if>>pussy.
 		<</if>>
 		Once the surprise wears off and the pleasure sets in, $he wraps $his arms around you and basks in your attention. Feeling left out, $slaves[_bedSlaveTwo].slaveName slides over to tease _his2 bucking bedmate. Drawing close to the moaning $girl, _he2 reaches for $his bouncing tits, only to cop a feel of your cock thrusting deep inside $him. _He2 watches, eyes wide with lust, at the bulge of your penis in $his lower belly. You make sure to give _him2 a show before you cum, thrusting hard and deep as you can. _He2 gasps at the sight and brings _his2 hand to the lump just in time to feel you ejaculate deep inside $slaves[_bedSlaveOne].slaveName.
-		<<if $PC.balls == 3>>
+		<<if $PC.balls >= 3>>
 			_He2 squeaks in shock as _he2 feels $slaves[_bedSlaveOne].slaveName's belly swell under _his2 hand with your massive load. _He2 quickly brings _his2 other hand to massage it as the orgasming cumballoon squirms in pleasure.
 		<<elseif $PC.balls == 2>>
 			_He2 squeaks in surprise as _he2 feels $slaves[_bedSlaveOne].slaveName's belly swell slightly under _his2 hand with your huge load.
@@ -70,7 +70,7 @@ Today was an unusually relaxing day, and you aren't particularly tired.
 		<<else>>
 			<<if $slaves[_bedSlaveTwo].vagina == 0>>once virgin <</if>>pussy
 		<</if>>
-		with your potent baby batter<<if $PC.balls == 3>> until _his2 stomach is distended and wobbling with cum<<elseif $PC.balls == 2>> until _his2 womb is stuffed with seed<</if>>. You switch off with the two of them, fucking them in turn, until both pass out with a hand on the other's <<if $PC.balls == 3>>massively bloated <<elseif $PC.balls == 2>>bloated <<elseif $PC.balls == 1>>swollen <</if>>belly and cum pooling from their thoroughly seeded holes. You slide back in between them for a well earned sleep<<if $PC.balls == 3>>, their middles resting on your own, their cum stuffed wombs a testament to your virility<<elseif $PC.balls == 2>>, their middles resting on your own, their cum filled wombs a testament to your virility<</if>>.
+		with your potent baby batter<<if $PC.balls >= 3>> until _his2 stomach is distended and wobbling with cum<<elseif $PC.balls == 2>> until _his2 womb is stuffed with seed<</if>>. You switch off with the two of them, fucking them in turn, until both pass out with a hand on the other's <<if $PC.balls >= 3>>massively bloated <<elseif $PC.balls == 2>>bloated <<elseif $PC.balls == 1>>swollen <</if>>belly and cum pooling from their thoroughly seeded holes. You slide back in between them for a well earned sleep<<if $PC.balls >= 3>>, their middles resting on your own, their cum stuffed wombs a testament to your virility<<elseif $PC.balls == 2>>, their middles resting on your own, their cum filled wombs a testament to your virility<</if>>.
 		<<set $slaves[_bedSlaveOne].devotion += 3, $slaves[_bedSlaveTwo].devotion += 3, $slaves[_bedSlaveOne].trust += 3, $slaves[_bedSlaveTwo].trust += 3>>
 		$slaves[_bedSlaveOne].slaveName is @@.hotpink;honored to bear your children@@ and @@.mediumaquamarine;snuggles even closer.@@
 		<<if $slaves[_bedSlaveOne].mpreg == 1>>
diff --git a/src/uncategorized/reputation.tw b/src/uncategorized/reputation.tw
index 692fb4b1e6a9e0af8f1dd03a521e2eb93f0665f1..c865d6d6a777c26479770d3423af0d0eeb5b1b85 100644
--- a/src/uncategorized/reputation.tw
+++ b/src/uncategorized/reputation.tw
@@ -271,11 +271,11 @@ On formal occasions, you are announced as $PCTitle.
 <</if>>
 
 <<if $arcologies[0].FSAssetExpansionist != "unset">>
-	<<if $PC.boobsBonus == 3>>
+	<<if $PC.boobsBonus >= 3>>
 		Society loves enormous breasts and you are no exception; your <<if $PC.boobsImplant == 1>>chest balloons<<else>>cow tits<</if>> @@.green;improve@@ your public image.
 		<<run repX(10, "PCappearance")>>
 	<</if>>
-	<<if $PC.butt == 3>>
+	<<if $PC.butt >= 3>>
 		Society loves big butts and you are no exception; your <<if $PC.buttImplant == 1>>inflated ass<<else>>fat ass<</if>> @@.green;improves@@ your public image.
 		<<run repX(10, "PCappearance")>>
 	<</if>>
@@ -288,7 +288,7 @@ On formal occasions, you are announced as $PCTitle.
 		Society finds big breasts unsightly and you are no exception; your <<if $PC.boobsImplant == 1>>chest balloons<<else>>fat tits<</if>> @@.red;harm@@ your public image.
 		<<run repX(forceNeg(10*$PC.boobsBonus), "PCappearance")>>
 	<</if>>
-	<<if $PC.butt == 3>>
+	<<if $PC.butt >= 3>>
 		Society finds big butts unsightly and you are no exception; your <<if $PC.buttImplant == 1>>inflated ass<<else>>fat ass<</if>> @@.red;harms@@ your public image.
 		<<run repX(forceNeg(10*$PC.butt), "PCappearance")>>
 	<</if>>
diff --git a/src/uncategorized/saPleaseYou.tw b/src/uncategorized/saPleaseYou.tw
index 4b8495b97bf1a85f8e246745631254b9d32a74a8..1374f0a92f181e0bbca0e8a29edd4de704b252de 100644
--- a/src/uncategorized/saPleaseYou.tw
+++ b/src/uncategorized/saPleaseYou.tw
@@ -548,7 +548,7 @@ serves you this week.
 					<<if $slaves[$i].fetishKnown == 1>>
 						$He @@.hotpink;quivers with ecstasy@@ just from the touch of your <<if $PC.title == 1>>strong<<else>>soft<</if>> hands against $his <<if $slaves[$i].boobs >= 300>>breasts<<else>>flat chest<</if>>.
 					<<else>>
-						$He @@.hotpink;seems to enjoy@@ having $his <<if $slaves[$i].boobs >= 300>>breasts<<else>>chest<</if>> fondled more than the average girl.
+						$He @@.hotpink;seems to enjoy@@ having $his <<if $slaves[$i].boobs >= 300>>breasts<<else>>chest<</if>> fondled more than the average $girl.
 					<</if>>
 					<<set $slaves[$i].devotion += 2>>
 				<<elseif _fetishChangeChance > random(0,100)>>
diff --git a/src/uncategorized/saServeYourOtherSlaves.tw b/src/uncategorized/saServeYourOtherSlaves.tw
index 9fbaaee5420df37826d6411e21500f3800638ce9..c2c83d04864160b0f4b55345db72ab800ac7e209 100644
--- a/src/uncategorized/saServeYourOtherSlaves.tw
+++ b/src/uncategorized/saServeYourOtherSlaves.tw
@@ -405,7 +405,7 @@ is serving ''$slaves[_dom].slaveName'' this week.
 	<<elseif ($slaves[$i].devotion <= 50)>>
 		Since $slaves[_dom].slaveName loves girls, $slaves[$i].slaveName finds $himself groped, fingered, and toyed with. $He spends the week accepting the attention of $slaves[_dom].slaveName's playful _domRace hands. They rove across $his _subRace body, eliciting embarrassed arousal. @@.hotpink;$slaves[_dom].slaveName enjoys having a nice little toy right at hand,@@ even if $he is a little hesitant.
 	<<else>>
-		Since $slaves[_dom].slaveName loves girls, $slaves[$i].slaveName finds $himself with a frank and open lover for the week. $He spends the week accepting the attention of $slaves[_dom].slaveName's adoring _domRace hands. They rove across $his _subRace body, knowing just where to touch and where to press. @@.hotpink;$slaves[_dom].slaveName enjoys having a compliant girlfriend,@@ and they spend as much time together as they can.
+		Since $slaves[_dom].slaveName loves girls, $slaves[$i].slaveName finds $himself with a frank and open lover for the week. $He spends the week accepting the attention of $slaves[_dom].slaveName's adoring _domRace hands. They rove across $his _subRace body, knowing just where to touch and where to press. @@.hotpink;$slaves[_dom].slaveName enjoys having a compliant <<= $girl>>friend,@@ and they spend as much time together as they can.
 	<</if>>
 	<<if canPenetrate($slaves[_dom])>>
 		<<set _fuckCount = random(9,12)>>
diff --git a/src/uncategorized/schoolroom.tw b/src/uncategorized/schoolroom.tw
index 67036468637189be350c4c764c19a0d99e5b89be..daa85c6167ed1bba34a187a31cd0ed78cba3c4bc 100644
--- a/src/uncategorized/schoolroom.tw
+++ b/src/uncategorized/schoolroom.tw
@@ -70,7 +70,7 @@ $schoolroomNameCaps is well-equipped, with wallscreens to display lessons. These
 <<if $schoolroomSlaves > 2>>
 	$schoolroomNameCaps is busy with slaves, repeating their lessons out loud to drill the instruction home. A few students are maintaining uncomfortable positions in the corner as punishment for poor work.
 <<elseif $schoolroomSlaves > 0>>
-	$schoolroomNameCaps is sparsely populated, the few students repeating their lessons out loud to drill the instruction home. One girl is maintaining an uncomfortable position in the corner as punishment for poor work.
+	$schoolroomNameCaps is sparsely populated, the few students repeating their lessons out loud to drill the instruction home. One slave is maintaining an uncomfortable position in the corner as punishment for poor work.
 <<elseif $Schoolteacher != 0>>
 	<<setLocalPronouns $Schoolteacher>>
 	$Schoolteacher.slaveName is alone in $schoolroomName, and has nothing to do but work on $his lesson plans.
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index fff029a1794223d102ecd38e5027cbc9e483046b..a0f6e5dde067fa4306137a361565e8d08923109d 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -1,4 +1,4 @@
-:: Slave Interact [nobr]
+:: Slave Interact [nobr]
 
 <<if $cheatMode == 1>>
 	<center>//[[Cheat Edit Slave|MOD_Edit Slave Cheat][$cheater = 1]] | [[Cheat Edit Slave Alternative|MOD_Edit Slave Cheat New][$cheater = 1]]//</center>
@@ -264,19 +264,20 @@
 			<<if $activeSlave.daughters > 0>>
 				<<set $relation = 0>>
 				<<for $i = 0; $i < _SL; $i++>>
+					<<setLocalPronouns $slaves[$i] 2>>
 					<<if ($activeSlave.ID == $slaves[$i].father || $activeSlave.ID == $slaves[$i].mother) && !isSlaveAvailable($slaves[$i])>>
 						<<set $relation++>>
 					<</if>>
 				<</for>>
 				<<if $relation == $activeSlave.daughters>>
 					<<if $activeSlave.daughters == 1>>
-						//$His daughter is unavailable//
+						//$His _daughter2 is unavailable//
 					<<else>>
 						//$His daughters are unavailable//
 					<</if>>
 				<<else>>
 					<<if $activeSlave.daughters == 1>>
-						| <<link "Fuck $him with $his daughter">><<replace "#miniscene">><<set $partner = "daughter">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
+						| <<link "Fuck $him with $his _daughter2">><<replace "#miniscene">><<set $partner = "daughter">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<<else>>
 						| <<link "Fuck $him with one of $his daughters">><<replace "#miniscene">><<set $partner = "daughter">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<</if>>
@@ -290,19 +291,20 @@
 			<<if $activeSlave.sisters > 0>>
 				<<set $relation = 0>>
 				<<for $i = 0; $i < _SL; $i++>>
+					<<setLocalPronouns $slaves[$i] 2>>
 					<<if areSisters($activeSlave, $slaves[$i]) > 0 && !isSlaveAvailable($slaves[$i])>>
 						<<set $relation++>>
 					<</if>>
 				<</for>>
 				<<if $relation == $activeSlave.sisters>>
 					<<if $activeSlave.sisters == 1>>
-						//$His sister is unavailable//
+						//$His _sister2 is unavailable//
 					<<else>>
 						//$His sisters are unavailable//
 					<</if>>
 				<<else>>
 					<<if $activeSlave.sisters == 1>>
-						| <<link "Fuck $him with $his sister">><<replace "#miniscene">><<set $partner = "sister">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
+						| <<link "Fuck $him with $his _sister2">><<replace "#miniscene">><<set $partner = "sister">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<<else>>
 						| <<link "Fuck $him with one of $his sisters">><<replace "#miniscene">><<set $partner = "sister">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<</if>>
@@ -316,13 +318,14 @@
 		<<else>>
 			<<if ($activeSlave.relation != 0)>>
 				<<set _assayedSlave = getSlave($activeSlave.relationTarget)>>
+				<<setLocalPronouns _assayedSlave 2>>
 				<<if isSlaveAvailable(_assayedSlave)>>
 					<<if ($activeSlave.relation == "mother")>>
-						| <<link "Fuck $him with $his daughter">><<replace "#miniscene">><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
+						| <<link "Fuck $him with $his _daughter2">><<replace "#miniscene">><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<<elseif ($activeSlave.relation == "daughter")>>
 						| <<link "Fuck $him with $his mother">><<replace "#miniscene">><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<<elseif ($activeSlave.relation == "sister")>>
-						| <<link "Fuck $him with $his sister">><<replace "#miniscene">><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
+						| <<link "Fuck $him with $his _sister2">><<replace "#miniscene">><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<<elseif ($activeSlave.relation == "twin")>>
 						| <<link "Fuck $him with $his twin">><<replace "#miniscene">><<set $partner = "relation">><<include "FRelation">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 					<</if>>
diff --git a/src/uncategorized/spa.tw b/src/uncategorized/spa.tw
index 07fa80ff4d453c67658abd2927f7b6a2f0fb480d..e65b5676b479b6a4d5b9a96b340cd66906b036a9 100644
--- a/src/uncategorized/spa.tw
+++ b/src/uncategorized/spa.tw
@@ -48,7 +48,7 @@ $spaNameCaps
 <<case "Maturity Preferentialist">>
 	is comfortable, but surprisingly businesslike. It's all about beautification here; there's a bewildering array of mud baths, resting pools, and massage setups, all designed to keep mature slaves looking their very best.
 <<case "Youth Preferentialist">>
-	is comfortable and fun. There are hot tubs and massage tables for slaves who feel like relaxing, but there's also a colder pool with pool toys for girls who want to play. It even has a small waterslide.
+	is comfortable and fun. There are hot tubs and massage tables for slaves who feel like relaxing, but there's also a colder pool with pool toys for slaves who want to play. It even has a small waterslide.
 <<case "Body Purist">>
 	is comfortable, with waterproof cushions lining the pools. Everything is designed for the slaves' comfort; there are even special mud baths to perfect skin clarity.
 <<case "Slimness Enthusiast">>
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 9d7bed77915722723799eb29222a23c642b6f0d3..3ff35c6e455a6140026344bd8fe14d29374bbc17 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -4487,7 +4487,7 @@ $He has
 			<<if $activeSlave.visualAge > 35>>
 				an amusing sight on such a mature $woman.
 			<<elseif ($activeSlave.visualAge > 14) && ($activeSlave.visualAge < 18)>>
-				a cute look on such a young girl.
+				a cute look on such a young $girl.
 			<<else>>
 				and occasionally looks preoccupied with discomfort as they straighten $his teeth.
 			<</if>>
@@ -4496,7 +4496,7 @@ $He has
 			<<if $activeSlave.visualAge > 35>>
 				an amusing sight on such a mature $woman.
 			<<elseif ($activeSlave.visualAge > 14) && ($activeSlave.visualAge < 18)>>
-				a cute look on such a young girl.
+				a cute look on such a young $girl.
 			<<else>>
 				just for appearances.
 			<</if>>