diff --git a/src/SecExp/attackHandler.tw b/src/SecExp/attackHandler.tw
index 09e63c911cff92d8d156ff574180b7a128fc3339..f106984bba7a6afb8f72fc59a1ccadce45b22b6e 100644
--- a/src/SecExp/attackHandler.tw
+++ b/src/SecExp/attackHandler.tw
@@ -136,31 +136,31 @@
 		<<if $rep >= 15000>>
 			<<set _enemyMod -= 0.10>>
 		<</if>>
-		<<if $PC.warfare <= 25 && $PC.warfare > 10>>
+		<<if $PC.skill.warfare <= 25 && $PC.skill.warfare > 10>>
 			<<set _atkMod -= 0.15>>
 			<<set _tacChance -= 0.15>>
-		<<elseif $PC.warfare <= 10>>
+		<<elseif $PC.skill.warfare <= 10>>
 			<<set _atkMod -= 0.20>>
 			<<set _defMod -= 0.10>>
 			<<set _tacChance -= 0.30>>
-		<<elseif $PC.warfare >= 50 && $PC.warfare < 75>>
+		<<elseif $PC.skill.warfare >= 50 && $PC.skill.warfare < 75>>
 			<<set _atkMod += 0.15>>
 			<<set _tacChance += 0.15>>
-		<<elseif $PC.warfare >= 75>>
+		<<elseif $PC.skill.warfare >= 75>>
 			<<set _atkMod += 0.20>>
 			<<set _defMod += 0.10>>
 			<<set _tacChance += 0.30>>
 		<</if>>
 		/* 80% chance of increasing warfare */
-		<<if $PC.warfare < 100 && random(1,100) <= 80>>
+		<<if $PC.skill.warfare < 100 && random(1,100) <= 80>>
 			<<set $gainedWarfare = 1>>
 			<<= IncreasePCSkills('warfare', 10)>>
-			<<set $PC.warfare = Math.clamp($PC.warfare,-100,100)>>
+			<<set $PC.skill.warfare = Math.clamp($PC.skill.warfare,-100,100)>>
 		<</if>>
 		/* does the PC get wounded? */
 		<<if $PC.career == "mercenary" || $PC.career == "gang">>
 			<<set _woundChance -= 3>>
-		<<elseif $PC.warfare >= 75>>
+		<<elseif $PC.skill.warfare >= 75>>
 			<<set _woundChance -= 2>>
 		<</if>>
 		<<if $PC.physicalAge >= 60>>
@@ -169,19 +169,19 @@
 		<<if $PC.belly > 5000>>
 			<<set _woundChance += 1>>
 		<</if>>
-		<<if $PC.boobsBonus >= 2>>
+		<<if $PC.boobs >= 1000>>
 			<<set _woundChance += 1>>
 		<</if>>
-		<<if $PC.butt >= 2>>
+		<<if $PC.butt >= 4>>
 			<<set _woundChance += 1>>
 		<</if>>
 		<<if $PC.preg >= 30>>
 			<<set _woundChance += 1>>
 		<</if>>
-		<<if $PC.balls >= 2>>
+		<<if $PC.balls >= 20>>
 			<<set _woundChance += 1>>
 		<</if>>
-		<<if $PC.ballsImplant >= 2>>
+		<<if $PC.balls >= 9>>
 			<<set _woundChance += 1>>
 		<</if>>
 		<<if random(1,100) <= _woundChance>>
diff --git a/src/SecExp/attackReport.tw b/src/SecExp/attackReport.tw
index e4126197a18eefca5fb9c4a410de87b1aaad66f8..863246322d9f25513d3cb9f2fe44a6dd64748bd8 100644
--- a/src/SecExp/attackReport.tw
+++ b/src/SecExp/attackReport.tw
@@ -830,7 +830,7 @@
 			<</if>>
 		<</if>>
 		<<if $SF.Toggle && $SF.Active >= 1 && $SFIntervention>>
-			<<if $PC.career == "mercenary" || $PC.career == "slaver" || $PC.career == "capitalist" || $PC.career == "gang" || $PC.warfare > 75>>
+			<<if $PC.career == "mercenary" || $PC.career == "slaver" || $PC.career == "capitalist" || $PC.career == "gang" || $PC.skill.warfare > 75>>
 				The soldiers of the $SF.Lower are ready and willing to follow you into battle, confident in your past experience.
 			<<elseif $PC.career == "wealth" || $PC.career == "medicine" || $PC.career == "engineer">>
 				The soldiers of the $SF.Lower, as loyal as they are, are not enthusiastic to follow the orders of someone who has no experience leading men.
@@ -842,13 +842,13 @@
 				The soldiers of the $SF.Lower, as loyal as they are, are not enthusiastic to follow the orders of a dubious incursion specialist.
 			<</if>>
 		<</if>>
-		<<if $PC.warfare <= 25 && $PC.warfare > 10>>
+		<<if $PC.skill.warfare <= 25 && $PC.skill.warfare > 10>>
 			Your inexperience in military matters has a negative impact on your troops performance and the effectiveness of your battle plan.
-		<<elseif $PC.warfare <= 10>>
+		<<elseif $PC.skill.warfare <= 10>>
 			Your ignorance in military matters has a severe negative impact on your troops performance and the effectiveness of your battle plan.
-		<<elseif $PC.warfare >= 50 && $PC.warfare >= 50>>
+		<<elseif $PC.skill.warfare >= 50 && $PC.skill.warfare >= 50>>
 			Your experience in military matters has a positive impact on your troops performance and the effectiveness of your battle plan.
-		<<elseif $PC.warfare >= 75>>
+		<<elseif $PC.skill.warfare >= 75>>
 			Your great experience in military matters has a major positive impact on your troops performance and the effectiveness of your battle plan.
 		<</if>>
 		<<if $gainedWarfare == 1>>
diff --git a/src/SecExp/rebellionReport.tw b/src/SecExp/rebellionReport.tw
index 37820e31fd6cee1159d731f2189fc9ede76d784a..2124012a86129409125a900f7029656a606f43bf 100644
--- a/src/SecExp/rebellionReport.tw
+++ b/src/SecExp/rebellionReport.tw
@@ -527,7 +527,7 @@
 		<<set _woundChance = 0>>
 		<<if $PC.career == "mercenary" || $PC.career == "gang">>
 			<<set _woundChance -= 5>>
-		<<elseif $PC.warfare >= 75>>
+		<<elseif $PC.skill.warfare >= 75>>
 			<<set _woundChance -= 3>>
 		<</if>>
 		<<if $personalArms >= 1>>
@@ -539,19 +539,19 @@
 		<<if $PC.belly > 5000>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.boobsBonus >= 2>>
+		<<if $PC.boobs >= 1000>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.butt >= 2>>
+		<<if $PC.butt >= 4>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
 		<<if $PC.preg >= 30>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.balls >= 2>>
+		<<if $PC.balls >= 20
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.ballsImplant >= 2>>
+		<<if $PC.balls >= 9>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
 		<<if random(1,100) <= _woundChance>>
@@ -695,7 +695,7 @@
 		<<set _woundChance = 0>>
 		<<if $PC.career == "mercenary" || $PC.career == "gang">>
 			<<set _woundChance -= 5>>
-		<<elseif $PC.warfare >= 75>>
+		<<elseif $PC.skill.warfare >= 75>>
 			<<set _woundChance -= 3>>
 		<</if>>
 		<<if $personalArms >= 1>>
@@ -707,19 +707,19 @@
 		<<if $PC.belly > 5000>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.boobsBonus >= 2>>
+		<<if $PC.boobs >= 1000>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.butt >= 2>>
+		<<if $PC.butt >= 4>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
 		<<if $PC.preg >= 30>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.balls >= 2>>
+		<<if $PC.balls >= 20>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.ballsImplant >= 2>>
+		<<if $PC.balls >= 9>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
 		<<set _woundChance *= random(1,2)>>
@@ -804,7 +804,7 @@
 		<<set _woundChance = 0>>
 		<<if $PC.career == "mercenary" || $PC.career == "gang">>
 			<<set _woundChance -= 5>>
-		<<elseif $PC.warfare >= 75>>
+		<<elseif $PC.skill.warfare >= 75>>
 			<<set _woundChance -= 3>>
 		<</if>>
 		<<if $personalArms >= 1>>
@@ -816,19 +816,19 @@
 		<<if $PC.belly > 5000>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.boobsBonus >= 2>>
+		<<if $PC.boobs >= 1000>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.butt >= 2>>
+		<<if $PC.butt >= 4>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
 		<<if $PC.preg >= 30>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.balls >= 2>>
+		<<if $PC.balls >= 20>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
-		<<if $PC.ballsImplant >= 2>>
+		<<if $PC.balls >= 9>>
 			<<set _woundChance += random(1,5)>>
 		<</if>>
 		<<set _woundChance *= random(1,2)>>
diff --git a/src/SecExp/secExpSmilingMan.tw b/src/SecExp/secExpSmilingMan.tw
index 72cfa27eb0e1e0600b635b6930a3806920591291..749204989ad53f3da78fe63d2ea56c0d9161245d 100644
--- a/src/SecExp/secExpSmilingMan.tw
+++ b/src/SecExp/secExpSmilingMan.tw
@@ -70,7 +70,7 @@
 	It is indeed a great opportunity, one you cannot resist. You quickly organize the affair and in a few minutes a message reaches your assistant.
 	<br>"Should I open it?" your assistant asks. You silently nod.
 	<br>Suddenly the room flashes red, while your assistant fades for half a second. When _heA reappears, _hisA face has been replaced by a stylized smiling face.
-	<br>"Hello, my dear $PC.name. I can call you $PC.name, right? I've been keeping an eye on you for so long now, it feels like we're friends! I am terribly sorry for my unannounced visit, but I wanted to meet face to face... well, face to hologram." it says, letting out a childlike giggle.
+	<br>"Hello, my dear $PC.birthName. I can call you $PC.birthName, right? I've been keeping an eye on you for so long now, it feels like we're friends! I am terribly sorry for my unannounced visit, but I wanted to meet face to face... well, face to hologram." it says, letting out a childlike giggle.
 	"I'm sure you're aware of my recent activities around this rock of ours, and, well, to put it simply, it's your turn to contribute to my great project! You'll love it when you see it, I'm sure! By the way, thanks for the offer — it's so nice to see people contribute to a worthy cause so generously! Well, I've taken enough of your time, see you soon!"
 	<br>The lights flicker once more and an instant later your assistant returns to _hisA usual self.
 	<br>"I... I — I couldn't stop him! I'm sorry, <<= properTitle()>>."
diff --git a/src/SecExp/securityHQ.tw b/src/SecExp/securityHQ.tw
index cc4333629ebdd9268f2524e38990091d8ae495ec..c223b268dfb8984839b2967706791bc1193599d6 100644
--- a/src/SecExp/securityHQ.tw
+++ b/src/SecExp/securityHQ.tw
@@ -275,14 +275,14 @@ Considering the current upgrades the maximum level of crime is <<print App.SecEx
 <br>
 
 <<if $crimeUpgrades.advForensic == 0>>
-	[[Install advanced forensic equipment|securityHQ][cashX(-Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $crimeUpgrades.advForensic = 1, $PC.hacking += 1]]
+	[[Install advanced forensic equipment|securityHQ][cashX(-Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $crimeUpgrades.advForensic = 1, $PC.skill.hacking += 1]]
 	<br>//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will bring down the crime level cap by 10 points, but will require 5 extra slaves in the headquarters and increases upkeep. The remaining slaves will be more efficient in dealling with crime.//
 <<else>>
 	You have installed advanced forensic equipment, able to extract every bit of precious information from any clue.
 <</if>>
 <br>
 <<if $crimeUpgrades.autoArchive == 0>>
-	[[Install auto-curating archiver|securityHQ][cashX(-Math.trunc(7500*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $crimeUpgrades.autoArchive = 1, $PC.hacking += 1]]
+	[[Install auto-curating archiver|securityHQ][cashX(-Math.trunc(7500*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $crimeUpgrades.autoArchive = 1, $PC.skill.hacking += 1]]
 	<br>//Costs <<print cashFormat(Math.trunc(7500*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will bring down the crime level cap by 10 points, but will require 5 extra slaves in the headquarters and increases upkeep. The remaining slaves will be more efficient in dealling with crime.//
 <<else>>
 	You have installed auto-curating archiver software, which will update in real time your data archives with any new relevant information on criminals residing in your arcology.
@@ -290,14 +290,14 @@ Considering the current upgrades the maximum level of crime is <<print App.SecEx
 <br>
 <<if $SecExp.core.authority > 10000>>
 	<<if $crimeUpgrades.autoTrial == 0>>
-		[[Install automated trials software|securityHQ][cashX(-Math.trunc(10000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $crimeUpgrades.autoTrial = 1, $PC.hacking += 1]]
+		[[Install automated trials software|securityHQ][cashX(-Math.trunc(10000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $crimeUpgrades.autoTrial = 1, $PC.skill.hacking += 1]]
 		<br>//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will bring down the crime level cap by 15 points, but will require 10 extra slaves in the headquarters and increases upkeep. The remaining slaves will be more efficient in dealling with crime.//
 	<<else>>
 		You have installed advanced legal algorithms that allows the handling of legal matters much quicker and much more accurately.
 	<</if>>
 	<br>
 	<<if $crimeUpgrades.worldProfiler == 0>>
-		[[Install worldwide profilers|securityHQ][cashX(-Math.trunc(15000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $crimeUpgrades.worldProfiler = 1, $PC.hacking += 1]]
+		[[Install worldwide profilers|securityHQ][cashX(-Math.trunc(15000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $crimeUpgrades.worldProfiler = 1, $PC.skill.hacking += 1]]
 		<br>//Costs <<print cashFormat(Math.trunc(15000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will bring down the crime level cap by 15 points, but will require 10 extra slaves in the headquarters and increases upkeep. The remaining slaves will be more efficient in dealling with crime.//
 	<<else>>
 		You have installed advanced profiler software, which will constantly scour every known data archive on the globe (legally or not) to gather as much information as possible on dangerous criminals.
@@ -325,14 +325,14 @@ Considering the current upgrades the maximum level of crime is <<print App.SecEx
 <br>
 
 <<if $intelUpgrades.sensors == 0>>
-	[[Install perimeter sensors|securityHQ][cashX(-Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $intelUpgrades.sensors = 1, $PC.hacking += 1]]
+	[[Install perimeter sensors|securityHQ][cashX(-Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $intelUpgrades.sensors = 1, $PC.skill.hacking += 1]]
 	<br>//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will increase recon capabilities, but will require 5 extra slaves in the headquarters and increases upkeep. The remaining slaves will be more efficient in dealling with crime.//
 <<else>>
 	You have installed perimeter seismic sensors able to detect movement with high accuracy.
 <</if>>
 <br>
 <<if $intelUpgrades.signalIntercept == 0>>
-	[[Create signal interception hub|securityHQ][cashX(-Math.trunc(10000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $intelUpgrades.signalIntercept = 1, $PC.hacking += 1]]
+	[[Create signal interception hub|securityHQ][cashX(-Math.trunc(10000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $intelUpgrades.signalIntercept = 1, $PC.skill.hacking += 1]]
 	<br>//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will increase recon capabilities, but will require 5 extra slaves in the headquarters and increases upkeep. The remaining slaves will be more efficient in dealling with crime.//
 <<else>>
 	You have installed advanced signal interception equipment.
@@ -340,7 +340,7 @@ Considering the current upgrades the maximum level of crime is <<print App.SecEx
 <br>
 <<if $SecExp.core.authority > 10000>>
 	<<if $intelUpgrades.radar == 0>>
-		[[Install advanced radar equipment|securityHQ][cashX(-Math.trunc(15000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $intelUpgrades.radar = 1, $PC.hacking += 1]]
+		[[Install advanced radar equipment|securityHQ][cashX(-Math.trunc(15000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $intelUpgrades.radar = 1, $PC.skill.hacking += 1]]
 		<br>//Costs <<print cashFormat(Math.trunc(15000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will increase recon capabilities, but will require 10 extra slaves in the headquarters and increases upkeep. The remaining slaves will be more efficient in dealling with crime.//
 	<<else>>
 		You have installed sophisticated radar equipment.
@@ -410,35 +410,35 @@ Considering the current upgrades the maximum level of crime is <<print App.SecEx
 	<<elseif $secUpgrades.coldstorage == 6 && $SecExp.core.authority >= 19500 && App.SecExp.Check.reqMenials() > 10>>
 		<br>You have installed a cold storage facility for the Security HQ's archives with a data retention capability of two years.
 		<br>
-		[[Expand the cold storage facility to increase data retention to three years|securityHQ][cashX(-Math.trunc(2400000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.hacking += 1]]
+		[[Expand the cold storage facility to increase data retention to three years|securityHQ][cashX(-Math.trunc(2400000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.skill.hacking += 1]]
 		<br>//Costs <<print cashFormat(Math.trunc(2400000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will lower the amount of required slaves by a further 10, but will increase upkeep. The remaining slaves will be more efficient in dealling with crime.//
 	<<elseif $secUpgrades.coldstorage == 5 && $SecExp.core.authority >= 19500 && App.SecExp.Check.reqMenials() > 10>>
 	<br>You have installed a cold storage facility for the Security HQ's archives with a data retention capability of one year.
 		<br>
-		[[Expand the cold storage facility to increase data retention to two years|securityHQ][cashX(-Math.trunc(1200000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.hacking += 1]]
+		[[Expand the cold storage facility to increase data retention to two years|securityHQ][cashX(-Math.trunc(1200000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.skill.hacking += 1]]
 		<br>//Costs <<print cashFormat(Math.trunc(1200000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will lower the amount of required slaves by a further 10, but will increase upkeep. The remaining slaves will be more efficient in dealling with crime.//
 	<<elseif $secUpgrades.coldstorage == 4 && $SecExp.core.authority >= 19500 && App.SecExp.Check.reqMenials() > 10>>
 		<br>You have installed a cold storage facility for the Security HQ's archives with a data retention capability of nine months.
 		<br>
-		[[Expand the cold storage facility to increase data retention to one year|securityHQ][cashX(-Math.trunc(900000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.hacking += 1]]
+		[[Expand the cold storage facility to increase data retention to one year|securityHQ][cashX(-Math.trunc(900000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.skill.hacking += 1]]
 		<br>//Costs <<print cashFormat(Math.trunc(900000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will lower the amount of required slaves by a further 10, but will increase upkeep. The remaining slaves will be more efficient in dealling with crime.//
 	<<elseif $secUpgrades.coldstorage == 3 && $SecExp.core.authority > 18000 && App.SecExp.Check.reqMenials() > 10>>
 		<br>You have installed a cold storage facility for the Security HQ's archives with a data retention capability of six months.
 		<br>
-		[[Expand the cold storage facility to increase data retention to nine months|securityHQ][cashX(-Math.trunc(600000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.hacking += 1]]
+		[[Expand the cold storage facility to increase data retention to nine months|securityHQ][cashX(-Math.trunc(600000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.skill.hacking += 1]]
 		<br>//Costs <<print cashFormat(Math.trunc(600000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will lower the amount of required slaves by a further 10, but will increase upkeep. The remaining slaves will be more efficient in dealling with crime.//
 	<<elseif $secUpgrades.coldstorage == 2 && $SecExp.core.authority > 16000 && App.SecExp.Check.reqMenials() > 10>>
 		<br>You have installed a cold storage facility for the Security HQ's archives with a data retention capability of three months.
 		<br>
-		[[Expand the cold storage facility to increase data retention to six months|securityHQ][cashX(-Math.trunc(300000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.hacking += 1]]
+		[[Expand the cold storage facility to increase data retention to six months|securityHQ][cashX(-Math.trunc(300000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.skill.hacking += 1]]
 		<br>//Costs <<print cashFormat(Math.trunc(300000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will lower the amount of required slaves by a further 10, but will increase upkeep. The remaining slaves will be more efficient in dealling with crime.//
 	<<elseif $secUpgrades.coldstorage == 1 && $SecExp.core.authority > 14000 && App.SecExp.Check.reqMenials() > 10>>
 		<br>You have installed a cold storage facility for the Security HQ's archives with a data retention capability of one month.
 		<br>
-		[[Expand the cold storage facility to increase data retention to three months|securityHQ][cashX(-Math.trunc(100000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.hacking += 1]]
+		[[Expand the cold storage facility to increase data retention to three months|securityHQ][cashX(-Math.trunc(100000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.skill.hacking += 1]]
 		<br>//Costs <<print cashFormat(Math.trunc(100000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will lower the amount of required slaves by a further 10, but will increase upkeep. The remaining slaves will be more efficient in dealling with crime.//
 	<<elseif $secUpgrades.coldstorage == 0 && $SecExp.core.authority > 12000 && App.SecExp.Check.reqMenials() > 10>>
-		[[Install a cold storage facility|securityHQ][cashX(-Math.trunc(50000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.hacking += 1]]
+		[[Install a cold storage facility|securityHQ][cashX(-Math.trunc(50000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), "capEx"), $secUpgrades.coldstorage++, $PC.skill.hacking += 1]]
 		<br>//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will lower the amount of required slaves by 10, but will increase upkeep. The remaining slaves will be more efficient in dealling with crime.//
 	<</if>>
 <<else>>
diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw
index 754babafd34559b2848c19dcf7eca35f1af641f1..f51c3a40a9d09a98864d9851ab59ed2b960840bb 100644
--- a/src/events/intro/introSummary.tw
+++ b/src/events/intro/introSummary.tw
@@ -753,7 +753,7 @@ __''Player Character''__
 	<</options>>
 
 	<br>
-	<<set $PC.eye.right.iris = $PC.eye.left.iris>>
+	<<set $PC.eye.left.iris = $PC.eye.right.iris>>
 	<<options>>
 		Your eyes are:
 		<<option>>
@@ -892,11 +892,11 @@ __''Player Character''__
 
 	<<options _vagina_penis>>
 		You have a
-		<<option 0 "Penis" "$PC.preg=0, $PC.pregType=0, $PC.dick=4, $PC.vagina=-1">>
+		<<option 0 "Penis" "$PC.preg=0, $PC.pregType=0, $PC.dick=4, $PC.balls=3, $PC.scrotum=3, $PC.vagina=-1, $PC.ovaries=0">>
 			''penis''. Standard sex scenes; easiest reputation maintenance.
-		<<option 1 "Vagina" "$PC.dick=0, $PC.vagina=1">>
+		<<option 1 "Vagina" "$PC.dick=0, $PC.balls=0, $PC.scrotum=0, $PC.vagina=1, $PC.ovaries=1">>
 			''vagina''. Sex scene variations; most difficult reputation maintenance.
-		<<option 2 "Penis and Vagina" "$PC.dick=4, $PC.vagina=1">>
+		<<option 2 "Penis and Vagina" "$PC.dick=4, $PC.balls=3, $PC.scrotum=3, $PC.vagina=1, $PC.ovaries=1">>
 			''penis and vagina''. Sex scene variations; more difficult reputation maintenance; some unique opportunities, especially with breasts.
 	<</options>>
 	<br>
diff --git a/src/events/intro/pcBodyIntro.tw b/src/events/intro/pcBodyIntro.tw
index ffb72099632d62778223bc43bcbdf4e8e3a54023..7c734e9ac02f3d92dab393e25f806a37a97e8e88 100644
--- a/src/events/intro/pcBodyIntro.tw
+++ b/src/events/intro/pcBodyIntro.tw
@@ -38,14 +38,14 @@ Behind the front of my tailored
 <<if $PC.dick != 0>>
 	<<if $PC.vagina != -1>>
 		slacks, ''both a penis and a vagina.''
-		[[Remove the penis|PC Body Intro][$PC.dick = 0]] | [[Remove the vagina|PC Body Intro][$PC.vagina = -1]]
+		[[Remove the penis|PC Body Intro][$PC.dick = 0, $PC.balls = 0, $PC.scrotum = 0]] | [[Remove the vagina|PC Body Intro][$PC.vagina = -1, $PC.ovaries = 0]]
 	<<else>>
 		slacks, a ''penis.''
-		[[Switch to vagina|PC Body Intro][$PC.dick = 0, $PC.genes = "XX", $PC.vagina = 1]] | [[Add a vagina|PC Body Intro][$PC.vagina = 1]]
+		[[Switch to vagina|PC Body Intro][$PC.dick = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.genes = "XX", $PC.vagina = 1, $PC.ovaries = 1]] | [[Add a vagina|PC Body Intro][$PC.vagina = 1]]
 	<</if>>
 <<else>>
 	skirt, a ''vagina.''
-	[[Switch to penis|PC Body Intro][$PC.dick = 4, $PC.genes = "XY", $PC.vagina = -1]] | [[Add a penis|PC Body Intro][$PC.dick = 4]]
+	[[Switch to penis|PC Body Intro][$PC.dick = 4, $PC.balls = 3, $PC.scrotum = 3, $PC.genes = "XY", $PC.vagina = -1, $PC.ovaries = 0]] | [[Add a penis|PC Body Intro][$PC.dick = 4]]
 <</if>>
 <br>&nbsp;&nbsp;&nbsp;&nbsp;
 //These options will affect sex scenes. Feminine options will increase difficulty.//
diff --git a/src/player/electiveSurgery.tw b/src/player/electiveSurgery.tw
index 12a5de150b3bce39b0c5b1169ac6d6e1099dd3fe..80dad21ffba02c78215552bc495db0bc26c81c4a 100644
--- a/src/player/electiveSurgery.tw
+++ b/src/player/electiveSurgery.tw
@@ -59,7 +59,7 @@ You're @@.orange;$PC.actualAge years old.@@
 <</if>>
 
 <br><br>
-"Your skin is beautiful as is, but we can change it if you want," _heU says, pulling a large tanning bed-like cart out of a closet. "@@.yellowgreen;<<print cashFormat(2000)>>.@@ This thing just came out of testing. I assure you it doesn't cause cancer anymore! But still, mind your security systems. We won't be held accountable if you get arrested for trying to enter your penthouse." _HeU looks a little worrisome, "Now, there are some side effects, and we will have to keep you under special care for a few days. It's similar to a severe sunburn, across your entire body, all of it, even down there. Now don't give me that look, we have special ointments to soothe the pain and have a little fun with." _HeU tosses you a wink alongside a hesitant giggle. "Now all your typical skin tones are preprogrammed into it, and with a couple button presses... There! I unlocked the option for custom hues. Now this thing is going to recolor your skin pigment permanently, so you might want to take it seriously. It'll all be on you if I choke with laughter<<if $PC.dick == 1>> sucking on your big polka-dotted cock<<else>> going down on your polka-dotted pussy<</if>>!"
+"Your skin is beautiful as is, but we can change it if you want," _heU says, pulling a large tanning bed-like cart out of a closet. "@@.yellowgreen;<<print cashFormat(2000)>>.@@ This thing just came out of testing. I assure you it doesn't cause cancer anymore! But still, mind your security systems. We won't be held accountable if you get arrested for trying to enter your penthouse." _HeU looks a little worrisome, "Now, there are some side effects, and we will have to keep you under special care for a few days. It's similar to a severe sunburn, across your entire body, all of it, even down there. Now don't give me that look, we have special ointments to soothe the pain and have a little fun with." _HeU tosses you a wink alongside a hesitant giggle. "Now all your typical skin tones are preprogrammed into it, and with a couple button presses... There! I unlocked the option for custom hues. Now this thing is going to recolor your skin pigment permanently, so you might want to take it seriously. It'll all be on you if I choke with laughter<<if $PC.dick != 0>> sucking on your big polka-dotted cock<<else>> going down on your polka-dotted pussy<</if>>!"
 <br>
 You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original skin tone was $PC.origSkin.<</if>>
 <br>
@@ -144,49 +144,52 @@ You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original
 [[Custom Color|PC Skin Workaround][cashX(forceNeg(2000), "PCmedical"), $surgeryType = "skinTone"]]
 
 
-<br><br>"Maybe some breast work? I assure you they are lovely," _heU says as _heU brushes the back of your head with _hisU own pair. "@@.yellowgreen;<<print cashFormat(5000)>>@@ for a reduction, @@.yellowgreen;<<print cashFormat(10000)>>@@ for implants, that includes size ups, and @@.yellowgreen;<<print cashFormat(15000)>>@@ for additional breast tissue. That last one might as well be real!<<if $PC.boobsBonus <= 0>> With a little work, we can even remove a small amount of fat from your breasts to bring your cup size down without damaging their inner workings. Though we'll have to build them up some before we can stick reasonable implants into you.<</if>>"<br>
-<<if $PC.boobsBonus > 2>>
-	<<if $PC.boobsImplant == 1>>
+<br><br>"Maybe some breast work? I assure you they are lovely," _heU says as _heU brushes the back of your head with _hisU own pair. "@@.yellowgreen;<<print cashFormat(5000)>>@@ for a reduction, @@.yellowgreen;<<print cashFormat(10000)>>@@ for implants, that includes size ups, and @@.yellowgreen;<<print cashFormat(15000)>>@@ for additional breast tissue. That last one might as well be real!<<if $PC.boobs < 700>> With a little work, we can even remove a small amount of fat from your breasts to bring your cup size down without damaging their inner workings. Though we'll have to build them up some before we can stick reasonable implants into you.<</if>>"<br>
+<<if $PC.boobs >= 1400>>
+	<<if $PC.boobsImplant > 0>>
 		You have a @@.orange;pair of round H-cup breasts;@@ they are very obviously implants.
-		<br>//You are starting to experience back pain; any bigger and they might seriously impede your ability to run your arcology.// | [[Have your implants removed|PC Surgery Degradation][$PC.boobsBonus = 0, $PC.boobsImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastReductionImplant"]]
+		<br>//You are starting to experience back pain; any bigger and they might seriously impede your ability to run your arcology.// | [[Have your implants removed|PC Surgery Degradation][$PC.boobs -= $PC.boobsImplant, $PC.boobsImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastReductionImplant"]]
 	<<else>>
 		You have a @@.orange;heavy H-cup bust.@@ They tend to sag a little when you free them from your top, though they have some perk to them.
-		<br>//You are starting to experience back pain; any bigger and they might seriously impede your ability to run your arcology.// | [[Have tissue removed|PC Surgery Degradation][$PC.boobsBonus = 2, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]]
+		<br>//You are starting to experience back pain; any bigger and they might seriously impede your ability to run your arcology.// | [[Have tissue removed|PC Surgery Degradation][$PC.boobs = 1300, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]]
 	<</if>>
-<<elseif $PC.boobsBonus == 2>>
-	<<if $PC.boobsImplant == 1>>
+<<elseif $PC.boobs >= 1200>>
+	<<if $PC.boobsImplant > 0>>
 		You have a @@.orange;pair of rounded G-cup breasts;@@ they are a little too perky for their size to pass as natural.
-		<br>[[Have your implants removed|PC Surgery Degradation][$PC.boobsBonus = 0, $PC.boobsImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.boobsBonus = 3, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "breastEnlargementImplant"]]
+		<br>[[Have your implants removed|PC Surgery Degradation][$PC.boobs -= $PC.boobsImplant, $PC.boobsImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.boobs += 200, $PC.boobsImplant += 200, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "breastEnlargementImplant"]]
 	<<else>>
 		You have a @@.orange;huge G-cup bust.@@
-		<br>[[Add additional breast tissue|PC Surgery Degradation][$PC.boobsBonus = 3, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have tissue removed|PC Surgery Degradation][$PC.boobsBonus = 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]]
+		<br>[[Add additional breast tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have tissue removed|PC Surgery Degradation][$PC.boobs -= 200, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]]
 	<</if>>
-<<elseif $PC.boobsBonus == 1>>
-	<<if $PC.boobsImplant == 1>>
+<<elseif $PC.boobs >= 1000>>
+	<<if $PC.boobsImplant > 0>>
 		You have a @@.orange;pair of perky F-cup breasts;@@ you can barely tell they are implanted.
-		<br>[[Have your implants removed|PC Surgery Degradation][$PC.boobsBonus = 0, $PC.boobsImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.boobsBonus = 2, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "breastEnlargementImplant"]]
+		<br>[[Have your implants removed|PC Surgery Degradation][$PC.boobs -= $PC.boobsImplant, $PC.boobsImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.boobs += 200, $PC.boobsImplant += 200, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "breastEnlargementImplant"]]
 	<<else>>
 		You have a @@.orange;hefty F-cup bust.@@
-		<br>[[Add additional breast tissue|PC Surgery Degradation][$PC.boobsBonus = 2, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have tissue removed|PC Surgery Degradation][$PC.boobsBonus = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]]
+		<br>[[Add additional breast tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have tissue removed|PC Surgery Degradation][$PC.boobs -= 200, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]]
 	<</if>>
-<<elseif $PC.boobsBonus == -1>>
+<<elseif $PC.boobs >= 800>>
+	You have a @@.orange;big pair of DD-cup breasts.@@
+	<br>[[Get a pair of breast implants|PC Surgery Degradation][$PC.boobs += 200, $PC.boobsImplant += 200, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "breastEnlargementImplant"]] | [[Add additional breast tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobs = 700, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 100, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]]
+<<elseif $PC.boobs >= 650>>
 	You have a @@.orange;pair of D-cup breasts.@@
-	<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobsBonus = 0, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobsBonus = -2, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 0, $PC.boobsBonus = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]]
-<<elseif $PC.boobsBonus == -2>>
+	<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobs = 600, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 100, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]]
+<<elseif $PC.boobs >= 500>>
 	You have a @@.orange;average pair of C-cup breasts.@@
-	<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobsBonus = -1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobsBonus = -3, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 0, $PC.boobsBonus = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]]
-<<elseif $PC.boobsBonus == -3>>
+	<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobs = 400, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 100, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]]
+<<elseif $PC.boobs >= 400>>
 	You have a @@.orange;small pair of B-cup breasts.@@
-	<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobsBonus = -2, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 0, $PC.boobsBonus = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]] | //You lack sufficient fatty tissue to permit additional size reduction short of total breast removal.//
-<<elseif $PC.boobs == 1>>
-	You have a @@.orange;big pair of DD-cup breasts.@@
-	<br>[[Get a pair of breast implants|PC Surgery Degradation][$PC.boobsBonus = 1, $PC.boobsImplant = 1, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "breastEnlargementImplant"]] | [[Add additional breast tissue|PC Surgery Degradation][$PC.boobsBonus = 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobsBonus = -1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 0, $PC.boobsBonus = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]]
+	<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobs += 200, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 100, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]] | //You lack sufficient fatty tissue to permit additional size reduction short of total breast removal.//
+<<elseif $PC.boobs >= 300>>
+	You have a @@.orange;small pair of A-cup breasts.@@
+	<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobs += 100, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breastEnlargement"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 100, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "flatChest"]] | //You lack sufficient fatty tissue to permit additional size reduction short of total breast removal.//
 <<elseif $PC.title == 1>>
 	You have a @@.orange;masculine chest.@@ At your request, breast tissue could be added until you have a healthy bust, though society is unlikely to approve.
-	<br>[[Get a pair of breasts|PC Surgery Degradation][$PC.boobs = 1, $PC.boobsBonus = -1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breasts"]]
+	<br>[[Get a pair of breasts|PC Surgery Degradation][$PC.boobs = 650, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breasts"]]
 <<else>>
 	@@.orange;You're flat.@@ "We can fix that, if you want."
-	<br>[[Get a pair of breasts|PC Surgery Degradation][$PC.boobs = 1, $PC.boobsBonus = -1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breasts"]]
+	<br>[[Get a pair of breasts|PC Surgery Degradation][$PC.boobs = 650, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "breasts"]]
 <</if>>
 
 <<if $PC.belly >= 100 && $PC.preg > 3>>
@@ -266,43 +269,44 @@ You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original
 <</if>>
 
 <br><br>"How about a new butt?" _heU says as _heU wiggles _hisU own at you. "Same prices as the breasts."<br>
-<<if $PC.butt > 2>>
-	<<if $PC.buttImplant == 1>>
+<<if $PC.butt >= 5>>
+	<<if $PC.buttImplant >= 1>>
 		You have an @@.orange;enormous, round, hard butt;@@ it is very obviously a pair of huge implants.
-		<br>//You can barely squeeze your rear into your clothes and are starting to get stuck in chairs; any bigger and it might seriously impede your ability to run your arcology.// | [[Have your implants removed|PC Surgery Degradation][$PC.butt = 0, $PC.buttImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttReductionImplant"]]
+		<br>//You can barely squeeze your rear into your clothes and are starting to get stuck in chairs; any bigger and it might seriously impede your ability to run your arcology.// | [[Have your implants removed|PC Surgery Degradation][$PC.butt -= $PC.buttImplant, $PC.buttImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttReductionImplant"]]
 	<<else>>
 		You have an @@.orange;enormous, jiggly butt.@@
-		<br>//You can barely squeeze your rear into your clothes and are starting to get stuck in chairs; any bigger and it might seriously impede your ability to run your arcology.// | [[Have fat removed|PC Surgery Degradation][$PC.butt = 2, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttShrinkage"]]
+		<br>//You can barely squeeze your rear into your clothes and are starting to get stuck in chairs; any bigger and it might seriously impede your ability to run your arcology.// | [[Have fat removed|PC Surgery Degradation][$PC.butt -= 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttShrinkage"]]
 	<</if>>
-<<elseif $PC.butt == 2>>
-	<<if $PC.buttImplant == 1>>
+<<elseif $PC.butt >= 4>>
+	<<if $PC.buttImplant >= 1>>
 		You have a @@.orange;huge, round, firm butt;@@ it's easily identifiable as fake.
-		<br>[[Have your implants removed|PC Surgery Degradation][$PC.butt = 0, $PC.buttImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.butt = 3, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "buttEnlargementImplant"]]
+		<br>[[Have your implants removed|PC Surgery Degradation][$PC.butt -= $PC.buttImplant, $PC.buttImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.butt += 1, $PC.buttImplant += 1, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "buttEnlargementImplant"]]
 	<<else>>
 		You have a @@.orange;huge, soft butt.@@
-		<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.butt = 3, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "buttEnlargement"]] | [[Have fat removed|PC Surgery Degradation][$PC.butt = 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttShrinkage"]]
+		<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.butt += 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "buttEnlargement"]] | [[Have fat removed|PC Surgery Degradation][$PC.butt -= 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttShrinkage"]]
 	<</if>>
-<<elseif $PC.butt == 1>>
-	<<if $PC.buttImplant == 1>>
+<<elseif $PC.butt >= 3>>
+	<<if $PC.buttImplant >= 1>>
 		You have a @@.orange;big firm butt;@@ anyone that feels it can tell it's fake, but at a glance you can't tell otherwise.
-		<br>[[Have your implants removed|PC Surgery Degradation][$PC.butt = 0, $PC.buttImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.butt = 2, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "buttEnlargementImplant"]]
+		<br>[[Have your implants removed|PC Surgery Degradation][$PC.butt -= $PC.buttImplant, $PC.buttImplant = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.butt += 1, $PC.buttImplant += 1, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "buttEnlargementImplant"]]
 	<<else>>
 		You have a @@.orange;big butt.@@
-		<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.butt = 2, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "buttEnlargement"]] | [[Have fat removed|PC Surgery Degradation][$PC.butt = 0, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttShrinkage"]]
+		<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.butt += 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "buttEnlargement"]] | [[Have fat removed|PC Surgery Degradation][$PC.butt -= 1, cashX(forceNeg(5000), "PCmedical"), $surgeryType = "buttShrinkage"]]
 	<</if>>
 <<else>>
 	You have a @@.orange;cute, but normal butt.@@ At your request, fat could be added until you have a healthy rear; alternatively, a pair of implants could be inserted instead.
-	<br>[[Get a pair of butt implants|PC Surgery Degradation][$PC.butt = 1, $PC.buttImplant = 1, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "buttEnlargementImplant"]] | [[Add additional fatty tissue|PC Surgery Degradation][$PC.butt = 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "buttEnlargement"]]
+	<br>[[Get a pair of butt implants|PC Surgery Degradation][$PC.butt += 1, $PC.buttImplant += 1, cashX(forceNeg(10000), "PCmedical"), $surgeryType = "buttEnlargementImplant"]] | [[Add additional fatty tissue|PC Surgery Degradation][$PC.butt += 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "buttEnlargement"]]
 <</if>>
 
-<<if $PC.dick == 1>>
+/* redo this part - add prostate too
+<<if $PC.dick != 0>>
 	<br><br>"We could add gel around your testes to make your balls look bigger. Would also dampen any impacts to them as well, if that is anything to consider," _heU says, running a finger down the length of your shaft. "@@.yellowgreen;<<print cashFormat(7500)>>@@ for draining and @@.yellowgreen;<<print cashFormat(15000)>>@@ for filling, it's not the most simple procedure, you know? Anyway, they'll be very obvious, if that turns you on."
 	<<if $AGrowth == 2>>
 		_HeU takes another look at you before offering another option. "Of course, if you want bigger balls in a <i>functional</i> sense, we can do that too. The doctor's research in advanced targeted growth hormones has shown promising results in slaves, and he's been able to use them successfully on a few citizen patients so far. A direct injection of hormone gel, and your testes and prostate will grow on their own. Unlike the cosmetic gel, there's no reversing this treatment. It's expensive too, for the high quality drugs you want; @@.yellowgreen;<<print cashFormat(15000)>>@@ for one round of therapy. It'll cost @@.yellowgreen;<<print cashFormat(20000)>>@@ if you want hormone treatment and a gel adjustment at the same time.<br>
 	<<else>>
 		_HeU takes another look at you before continuing. "Of course, you seem like the type that might want bigger balls in a <i>functional</i> sense. The doctor's been working on a treatment using advanced targeted growth hormones, but it isn't quite ready yet. Might be something to keep in mind before you decide on a gel injection."<br>
 	<</if>>
-	<<if $PC.balls > 2 && $PC.ballsImplant > 3>>
+	<<if $PC.balls >= 30>>
 		You have a @@.orange;monstrous, massive pair of balls@@ roughly the size of small watermelons; it's impossible to sit normally, so you've had to buy special chairs, you've given up on wearing pants, and they're so obvious that people probably assume they're fake, but every slave you fuck gets a distended belly from all the cum you pump into them, and you love it.
 		<br>//You have trouble moving around and need special furniture thanks to your over-sized nuts, even bringing your legs together is a pain; you can hardly even walk anymore. It might be worth getting rid of the cosmetic gel.// | [[Have gel extracted|PC Surgery Degradation][$PC.ballsImplant = 3, $PC.balls = 3, cashX(forceNeg(7500), "PCmedical"), $surgeryType = "ballShrinkageHorm"]]
 	<<elseif $PC.balls == 2 && $PC.ballsImplant == 3>>
@@ -350,12 +354,13 @@ You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original
 		<</if>>
 	<</if>>
 <</if>>
+*/
 
-<<if $PC.vagina == 1 && $PC.newVag == 0 && ($PC.births > 2 || $PC.career == "servant" || $PC.career == "escort")>>
+<<if $PC.vagina >= 3 && $PC.newVag == 0>>
 	<br><br>
 	"Looking a little loose down there; I can fix that for you. Get you nice and tight again. Oh, and our pussies are guaranteed to not lose their tightness, or your money back! @@.yellowgreen;<<print cashFormat(15000)>>@@ for a brand new vagina."
 	<br>
-	[[Get a tighter vagina|PC Surgery Degradation][$PC.newVag = 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "tightPussy"]]
+	[[Get a tighter vagina|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, cashX(forceNeg(15000), "PCmedical"), $surgeryType = "tightPussy"]]
 <</if>>
 
 <<if $PC.preg == -2 && $PC.physicalAge < 70>>
@@ -370,33 +375,33 @@ You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original
 <<if $PC.preg > 0>>
 	_HeU pokes your belly. "You're pregnant. What did I tell you?"
 <<else>>
-	<<if $PC.dick == 1 && $PC.vagina == 1>>
+	<<if $PC.dick != 0 && $PC.vagina != -1>>
 		You have working @@.orange;male and female reproductive organs@@ and a @@.orange;<<if $PC.title > 0>>masculine<<else>>feminine<</if>> appearance.@@ "We'll store some of your sperm for you, should you decide to lose your maleness, and have it shipped to your arcology. Who you decide to use it on, well... That's up to you!"
 		<br>
-		[[Remove your male half|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.storedCum += 10, cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2female"]] |
-		[[Remove your female half|PC Surgery Degradation][$PC.vagina = 0, $PC.preg = 0, WombFlush($PC), cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2male"]]
+		[[Remove your male half|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.dick = 0, $PC.prostate = 0, $PC.storedCum += 10, cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2female"]] |
+		[[Remove your female half|PC Surgery Degradation][$PC.vagina = -1, $PC.vaginaLube = 0, $PC.ovaries = 0, $PC.preg = 0, WombFlush($PC), cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2male"]]
 		<<if $PC.title > 0>>
-			| [[Remove your male half completely|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.storedCum += 10, $PC.title = 0, generatePlayerPronouns($PC), cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2truefemale"]]
+			| [[Remove your male half completely|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.dick = 0, $PC.prostate = 0, $PC.storedCum += 10, $PC.title = 0, generatePlayerPronouns($PC), cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2truefemale"]]
 		<<else>>
-			| [[Remove your female half completely|PC Surgery Degradation][$PC.vagina = 0, $PC.preg = 0, WombFlush($PC), $PC.boobs = 0, $PC.boobsBonus = 0, $PC.boobsImplant = 0, $PC.title = 1, generatePlayerPronouns($PC), cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2truemale"]]
+			| [[Remove your female half completely|PC Surgery Degradation][$PC.vagina = -1, $PC.vaginaLube = 0, $PC.ovaries = 0, $PC.preg = 0, WombFlush($PC), $PC.boobs = 100, $PC.boobsBonus = 0, $PC.boobsImplant = 0, $PC.title = 1, generatePlayerPronouns($PC), cashX(forceNeg(25000), "PCmedical"), $surgeryType = "herm2truemale"]]
 		<</if>>
-	<<elseif $PC.dick == 1>>
+	<<elseif $PC.dick != 0>>
 		You have @@.orange;male genitalia@@ and a @@.orange;<<if $PC.title > 0>>masculine<<else>>feminine<</if>> appearance.@@ "We'll store some of your sperm for you, should you decide to lose your maleness, and have it shipped to your arcology. Who you decide to use it on, well... That's up to you!"
 		<br>
-		[[Have your male organs replaced with female ones|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.vagina = 1, $PC.newVag = 1, cashX(forceNeg(50000), "PCmedical"), $surgeryType = "male2female"]] |
-		[[Add a female reproductive tract|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, WombFlush($PC), cashX(forceNeg(150000), "PCmedical"), $surgeryType = "male2herm"]]
+		[[Have your male organs replaced with female ones|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.dick = 0, $PC.prostate = 0, $PC.vagina = 1, $PC.newVag = 1, $PC.vaginaLube = 1, $PC.ovaries = 1, cashX(forceNeg(50000), "PCmedical"), $surgeryType = "male2female"]] |
+		[[Add a female reproductive tract|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.vaginaLube = 1, $PC.ovaries = 1, $PC.preg = 0, WombFlush($PC), cashX(forceNeg(150000), "PCmedical"), $surgeryType = "male2herm"]]
 		<<if $PC.title > 0>>
-			| [[Become a woman|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.storedCum += 10, $PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, $PC.title = 0, generatePlayerPronouns($PC), cashX(forceNeg(50000), "PCmedical"), $surgeryType = "male2truefemale"]]
-			| [[Become a hermaphrodite girl|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, WombFlush($PC), $PC.title = 0, generatePlayerPronouns($PC), cashX(forceNeg(150000), "PCmedical"), $surgeryType = "male2hermfemale"]]
+			| [[Become a woman|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.dick = 0, $PC.prostate = 0, $PC.storedCum += 10, $PC.vagina = 1, $PC.newVag = 1, $PC.vaginaLube = 1, $PC.ovaries = 1, $PC.preg = 0, $PC.title = 0, generatePlayerPronouns($PC), cashX(forceNeg(50000), "PCmedical"), $surgeryType = "male2truefemale"]]
+			| [[Become a hermaphrodite girl|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.vaginaLube = 1, $PC.ovaries = 1, $PC.preg = 0, WombFlush($PC), $PC.title = 0, generatePlayerPronouns($PC), cashX(forceNeg(150000), "PCmedical"), $surgeryType = "male2hermfemale"]]
 		<</if>>
 	<<else>>
 		You have @@.orange;female genitalia@@ and a @@.orange;<<if $PC.title > 0>>masculine<<else>>feminine<</if>> appearance.@@
 		<br>
-		[[Have your female organs replaced with male ones|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 1, $PC.vagina = 0, cashX(forceNeg(50000), "PCmedical"), $surgeryType = "female2male"]] |
-		[[Add a male reproductive tract|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 1, cashX(forceNeg(150000), "PCmedical"), $surgeryType = "female2herm"]]
+		[[Have your female organs replaced with male ones|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 3, $PC.scrotum = 3, $PC.dick = 4, $PC.prostate = 1, $PC.vagina = -1, $PC.vaginaLube = 0, $PC.ovaries = 0, cashX(forceNeg(50000), "PCmedical"), $surgeryType = "female2male"]] |
+		[[Add a male reproductive tract|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 3, $PC.scrotum = 3, $PC.dick = 4, $PC.prostate = 1, cashX(forceNeg(150000), "PCmedical"), $surgeryType = "female2herm"]]
 		<<if $PC.title == 0>>
-			| [[Become a man|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 1, $PC.vagina = 0, $PC.preg = 0, WombFlush($PC), $PC.title = 1, generatePlayerPronouns($PC), $PC.boobs = 0, $PC.boobsBonus = 0, $PC.boobsImplant = 0, cashX(forceNeg(50000), "PCmedical"), $surgeryType = "female2truemale"]]
-			| [[Become a hermaphrodite boy|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 1, $PC.title = 1, generatePlayerPronouns($PC), $PC.boobs = 0, $PC.boobsBonus = 0, $PC.boobsImplant = 0, cashX(forceNeg(150000), "PCmedical"), $surgeryType = "female2hermmale"]]
+			| [[Become a man|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 3, $PC.scrotum = 3, $PC.dick = 4, $PC.prostate = 1, $PC.vagina = -1, $PC.vaginaLube = 0, $PC.ovaries = 0, $PC.preg = 0, WombFlush($PC), $PC.title = 1, generatePlayerPronouns($PC), $PC.boobs = 100, $PC.boobsImplant = 0, cashX(forceNeg(50000), "PCmedical"), $surgeryType = "female2truemale"]]
+			| [[Become a hermaphrodite boy|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 3, $PC.scrotum = 3, $PC.dick = 4, $PC.prostate = 1, $PC.title = 1, generatePlayerPronouns($PC), $PC.boobs = 100, $PC.boobsImplant = 0, cashX(forceNeg(150000), "PCmedical"), $surgeryType = "female2hermmale"]]
 		<</if>>
 	<</if>>
 <</if>>
diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js
index 59c0325b2d773977b16828fb14a496e67da43287..5049e1b458de2783bb29d74dd6cb3f20e5037ae2 100644
--- a/src/player/js/PlayerState.js
+++ b/src/player/js/PlayerState.js
@@ -335,6 +335,8 @@ App.Entity.PlayerState = class PlayerState {
 		this.ovaryAge = 35;
 		/** has had facial surgery to reduce age. 0: no, 1: yes */
 		this.ageImplant = 0;
+		/** compatibility **/
+		this.devotion = 0;
 		/**
 		 * your health
 		 * * -90 - : On the edge of death
diff --git a/src/player/pcSurgeryDegradation.tw b/src/player/pcSurgeryDegradation.tw
index c3794315e2bc1e7092bc05c45f3c1328599f959c..8b0fac8269561024a6dc6e1f98511344612999d6 100644
--- a/src/player/pcSurgeryDegradation.tw
+++ b/src/player/pcSurgeryDegradation.tw
@@ -10,10 +10,10 @@
 <<switch $surgeryType>>
 
 <<case "skinTone">>
-	After a few hours, you awaken in the recovery wing to find every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of your body burning; though from what you did manage to see, you are, in fact, $PC.skin now. <<if !["pure white", "ivory", "white", "extremely pale", "very pale", "pale", "extremely fair", "very fair", "fair", "light", "light olive", "tan", "olive", "bronze", "dark olive", "dark", "light beige", "beige", "dark beige", "light brown", "brown", "dark brown", "black", "ebony", "pure black"].includes($PC.skin)>>The surgeon's assistant immediately covers _hisU mouth to hide _hisU giggle a the sight of you<<else>>The surgeon's assistant carefully seats _himselfU besides you with a large drum of cream<</if>>. "This stuff is specially formulated to soothe burns like this and should have you feeling much better after a few applications.<<if $PC.dick == 1>> Now please, try not to get hard while I apply this. It will hurt like hell.<</if>>" _HeU spends the next half hour gingerly applying the cream across every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of your body. _HisU touch is so soft, it is hard to not get aroused, and as your body tenses, a wave of pain washes over you. "Calm down, and take a few applications first. Though I forgot to tell you, your erogenous zones were especially affected and will need plenty of extra attention." _HeU winks at you. You doubt the validity of that claim but understand exactly what _heU means by it. The next few days will be very enjoyable, but for now, you opt to stay perfectly still and will the cream to work faster.
+	After a few hours, you awaken in the recovery wing to find every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of your body burning; though from what you did manage to see, you are, in fact, $PC.skin now. <<if !["pure white", "ivory", "white", "extremely pale", "very pale", "pale", "extremely fair", "very fair", "fair", "light", "light olive", "tan", "olive", "bronze", "dark olive", "dark", "light beige", "beige", "dark beige", "light brown", "brown", "dark brown", "black", "ebony", "pure black"].includes($PC.skin)>>The surgeon's assistant immediately covers _hisU mouth to hide _hisU giggle a the sight of you<<else>>The surgeon's assistant carefully seats _himselfU besides you with a large drum of cream<</if>>. "This stuff is specially formulated to soothe burns like this and should have you feeling much better after a few applications.<<if $PC.dick != 0>> Now please, try not to get hard while I apply this. It will hurt like hell.<</if>>" _HeU spends the next half hour gingerly applying the cream across every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of your body. _HisU touch is so soft, it is hard to not get aroused, and as your body tenses, a wave of pain washes over you. "Calm down, and take a few applications first. Though I forgot to tell you, your erogenous zones were especially affected and will need plenty of extra attention." _HeU winks at you. You doubt the validity of that claim but understand exactly what _heU means by it. The next few days will be very enjoyable, but for now, you opt to stay perfectly still and will the cream to work faster.
 
 <<case "restoreFace">>
-	After a few hours, you awaken in the recovery wing with a face both sore and somewhat numb. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you catch sight of yourself in the mirror-covered wall across from your bed. Your face is back to the way it was before you had it altered (not counting any additional years added to it) and looking just as good as you remember. You attempt to smile at yourself, only to find your face doesn't want to comply; guess the drugs haven't completely worn off yet. 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 face both sore and somewhat numb. <<if $PC.belly >= 10000 || $PC.boobs >= 1400>>Struggling to sit<<else>>Sitting<</if>> up, you catch sight of yourself in the mirror-covered wall across from your bed. Your face is back to the way it was before you had it altered (not counting any additional years added to it) and looking just as good as you remember. You attempt to smile at yourself, only to find your face doesn't want to comply; guess the drugs haven't completely worn off yet. You lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "ageDown">>
 	After a few hours, you awaken in the recovery wing with a face both sore and somewhat numb. Sitting up, you catch sight of yourself in the mirror-covered wall across from your bed. An oddly familiar face is staring back at you; it takes you a moment to register in your groggy state that it isn't your past self but rather the result of the age reduction surgery. You attempt to smile at yourself, only to find your face doesn't want to comply; guess the drugs haven't completely worn off yet. You lie back down to sleep off the rest of the anesthesia before returning to your arcology.
@@ -24,22 +24,74 @@
 	<<PCAgeImplantAdjustmentUp>>
 
 <<case "breastReductionImplant">>
-	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 how much lighter your breasts are. Pulling the covers off yourself, you observe your implant free 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 natural breasts. "We made sure to tighten them up a bit, get rid of that sag from not having the silicone pouch in them anymore." _HeU begins groping your breasts, 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 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 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.
+	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 how much lighter your breasts are. Pulling the covers off yourself, you observe your implant free 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 natural breasts. "We made sure to tighten them up a bit, get rid of that sag from not having the silicone pouch in them anymore." _HeU begins groping your breasts, 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 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 breasts. "Enjoying yourself are we? Let me finish you off." _HeU sneaks a hand down to your <<if $PC.dick != 0>>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 "breastShrinkage">>
-	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 how much lighter your breasts are. Pulling the covers off yourself, you observe your smaller <<if $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 shrunken breasts. "We made sure to tighten them up a bit, get rid of that sagginess from weight and the mass removed." _HeU begins groping your breasts, 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 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 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.
+	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 how much lighter your breasts are. Pulling the covers off yourself, you observe your 
+	<<if $PC.boobs >= 1400>>
+		smaller, but still ridiculously huge,
+	<<elseif $PC.boobs >= 1200>>
+		smaller G-cup
+	<<elseif $PC.boobs >= 1000>>
+		smaller F-cup
+	<<elseif $PC.boobs >= 800>>
+		smaller DD-cup
+	<<elseif $PC.boobs >= 650>>
+		smaller D-cup
+	<<elseif $PC.boobs >= 500>>
+		smaller C-cup
+	<<elseif $PC.boobs >= 400>>
+		smaller B-cup
+	<<else>>
+		downright tiny
+	<</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 shrunken breasts. "We made sure to tighten them up a bit, get rid of that sagginess from weight and the mass removed." _HeU begins groping your breasts, 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 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 breasts. "Enjoying yourself are we? Let me finish you off." _HeU sneaks a hand down to your <<if $PC.dick != 0>>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 "breastEnlargementImplant">>
-	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.
+	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobs >= 1400>>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.boobs >= 1400>>
+		H-cup
+	<<elseif $PC.boobs >= 1200>>
+		G-cup
+	<<elseif $PC.boobs >= 1000>>
+		F-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.boobsImplant/$PC.boobs >= .70>>
+		but the implants were way too big for that."
+	<<elseif $PC.boobsImplant/$PC.boobs >= .50>>
+		but you can definitely tell."
+	<<else>>
+		and I say we did a pretty good job."
+	<</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 != 0>>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.boobs >= 1400>>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.boobs >= 1400>>
+		H-cup
+	<<elseif $PC.boobs >= 1200>>
+		G-cup
+	<<elseif $PC.boobs >= 1000>>
+		F-cup
+	<<elseif $PC.boobs >= 800>>
+		DD-cup
+	<<elseif $PC.boobs >= 650>>
+		D-cup
+	<<elseif $PC.boobs >= 500>>
+		C-cup
+	<<elseif $PC.boobs >= 400>>
+		B-cup
+	<<else>>
+		A-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.boobs >= 1400>>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 != 0>>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.
+	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 != 0>>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 "breasts">>
-	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 a new weight on your chest. Pulling the covers off yourself, you observe your new, soft C-cup 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. "With these, you should be able to compete with any girls around you." _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 new 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.boobs >= 1400>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice a new weight on your chest. Pulling the covers off yourself, you observe your new, soft C-cup 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. "With these, you should be able to compete with any girls around you." _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 new tits. "Enjoying yourself are we? Let me finish you off." _HeU sneaks a hand down to your <<if $PC.dick != 0>>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 "buttReductionImplant">>
 	After a few hours, you awaken in the recovery wing, face-down in a bed made to accommodate as 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." _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.
@@ -48,87 +100,87 @@
 	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 >= 5>>enormous<<elseif $PC.butt >= 4>>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 >= 5>>enormous<<elseif $PC.butt >= 4>>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
-	<<if $PC.boobsBonus == 3 && $PC.belly >= 10000>>
+	After a few hours, you awaken in the recovery wing with a distinct soreness <<if $PC.balls >= 14>>and the sense that something massive is pushing your legs apart<<elseif $PC.balls >= 9>>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
+	<<if $PC.boobs >= 1400 && $PC.belly >= 10000>>
 		find that not only can you barely see around your breasts, but any attempts to do so are immediately thwarted by your big, pregnant belly. You settle for a position peaking over your tits but around your middle to view the mirror-covered wall across from your bed. Your balls are much bigger than you expected them to be after the surgery.
-	<<elseif $PC.boobsBonus == 3>>
+	<<elseif $PC.boobs >= 1400>>
 		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 balls are much bigger than you expected them to be after the surgery.
 	<<elseif $PC.belly >= 10000>>
 		find that your big, pregnant belly makes it impossible to get a good look at your crotch so you settle for peaking around it at the mirror-covered wall across from your bed. Your balls are much bigger than you expected them to be after the surgery.
 	<<else>>
 		find your balls are much bigger than you expected them to be.
 	<</if>>
-	"So, what do you think of them?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand upon your <<if $PC.ballsImplant > 3>>watermelon-sized<<elseif $PC.ballsImplant == 3>>cantaloupe-sized<<elseif $PC.ballsImplant == 2>>softball-like<<else>>large<</if>> testicles. "Nice and heavy, you should feel them with every move you make." _HeU begins groping your scrotum, feeling around for any oddities in the gel. "I know you're still a little sore, but bear with it. Enjoying the massage are you?" _heU asks, poking at the tip of your erection with _hisU free hand. "Why don't we find out if they are working properly?" _HeU leans over your dick<<if $PC.belly >= 5000>>, _hisU face brushing the underside of your pregnancy,<</if>>
-	<<if $PC.balls > 1>> and licks up the rivulet of precum running down its length. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your overfilled balls. The new sensation quickly overwhelms your control and you release your massive load deep in _hisU throat. Like a good assistant, _heU gulps down the gushing fluid until _heU takes you deep enough for it to pour down _hisU throat directly. "Shame just adding gel doesn't mean more cum." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	"So, what do you think of them?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand upon your <<if $PC.balls >= 30>>watermelon-sized<<elseif $PC.balls >= 14>>cantaloupe-sized<<elseif $PC.balls >= 9>>softball-like<<else>>large<</if>> testicles. "Nice and heavy, you should feel them with every move you make." _HeU begins groping your scrotum, feeling around for any oddities in the gel. "I know you're still a little sore, but bear with it. Enjoying the massage are you?" _heU asks, poking at the tip of your erection with _hisU free hand. "Why don't we find out if they are working properly?" _HeU leans over your dick<<if $PC.belly >= 5000>>, _hisU face brushing the underside of your pregnancy,<</if>>
+	<<if $PC.balls >= 10>> and licks up the rivulet of precum running down its length. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your overfilled balls. The new sensation quickly overwhelms your control and you release your massive load deep in _hisU throat. Like a good assistant, _heU gulps down the gushing fluid until _heU takes you deep enough for it to pour down _hisU throat directly. "Shame just adding gel doesn't mean more cum." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 	<<else>> and licks the bead of precum building on its end. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your overfilled balls. The new sensation quickly overwhelms your control and you release your load deep in _hisU throat. Like a good assistant, _heU diligently swallows it down, making sure not a drop is missed. "Shame just adding gel doesn't mean more cum." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.<</if>>
 
 <<case "ballShrinkage">>
-	After a few hours, you awaken in the recovery wing with a distinct soreness <<if $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
-	<<if $PC.boobsBonus == 3 && $PC.belly >= 10000>>
+	After a few hours, you awaken in the recovery wing with a distinct soreness <<if $PC.ballsImplant >= 9>>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
+	<<if $PC.boobs >= 1400 && $PC.belly >= 10000>>
 		find that not only can you barely see around your breasts, but any attempts to do so are immediately thwarted by your big, pregnant belly. You settle for a position peaking over your tits but around your middle to view the mirror-covered wall across from your bed. Your balls are now closer to the typical size one would expect.
-	<<elseif $PC.boobsBonus == 3>>
+	<<elseif $PC.boobs >= 1400>>
 		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 balls are now closer to the typical size one would expect.
 	<<elseif $PC.belly >= 10000>>
 		find that your big, pregnant belly makes it impossible to get a good look at your crotch so you settle for peaking around it at the mirror-covered wall across from your bed. Your balls are now closer to the typical size one would expect.
 	<<else>>
 		find your balls are now closer to the typical size one would expect.
 	<</if>>
-	"So, what do you think of them?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand upon your <<if $PC.ballsImplant == 2>>softball-like<<elseif $PC.ballsImplant == 2>>large<<else>>normal<</if>> testicles. "Starting to feel lighter?" _HeU begins groping your scrotum, feeling around for any oddities. "I know you're still a little sore, but bear with it. Enjoying the massage are you?" _heU asks, poking at the tip of your erection with _hisU free hand. "Why don't we find out if they are still working properly?" _HeU leans over your dick<<if $PC.belly >= 5000>>, _hisU face brushing the underside of your pregnancy,<</if>> and licks the bead of precum building on its end. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your loosened balls. The new sensation quickly overwhelms your control and you release your load deep in _hisU throat. Like a good assistant, _heU diligently swallows it down, making sure not a drop is missed. "Shame just can't just suck the gel out of them. That would be too much fun!" Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	"So, what do you think of them?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand upon your <<if $PC.balls >= 9>>softball-like<<elseif $PC.balls >= 5>>large<<else>>normal<</if>> testicles. "Starting to feel lighter?" _HeU begins groping your scrotum, feeling around for any oddities. "I know you're still a little sore, but bear with it. Enjoying the massage are you?" _heU asks, poking at the tip of your erection with _hisU free hand. "Why don't we find out if they are still working properly?" _HeU leans over your dick<<if $PC.belly >= 5000>>, _hisU face brushing the underside of your pregnancy,<</if>> and licks the bead of precum building on its end. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your loosened balls. The new sensation quickly overwhelms your control and you release your load deep in _hisU throat. Like a good assistant, _heU diligently swallows it down, making sure not a drop is missed. "Shame just can't just suck the gel out of them. That would be too much fun!" Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "ballEnlargementHorm">>
-	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
-	<<if $PC.boobsBonus == 3 && $PC.belly >= 10000>>
+	After a few hours, you awaken in the recovery wing with a distinct soreness <<if $PC.balls >= 14>>and the sense that something massive is pushing your legs apart<<elseif $PC.balls >= 9>>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
+	<<if $PC.boobs >= 1400 && $PC.belly >= 10000>>
 		find that not only can you barely see around your breasts, but any attempts to do so are immediately thwarted by your big, pregnant belly. You settle for a position peaking over your tits but around your middle to view the mirror-covered wall across from your bed. Your balls are much bigger than you expected them to be after the surgery.
-	<<elseif $PC.boobsBonus == 3>>
+	<<elseif $PC.boobs >= 1400>>
 		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 balls are much bigger than you expected them to be after the surgery.
 	<<elseif $PC.belly >= 10000>>
 		find that your big, pregnant belly makes it impossible to get a good look at your crotch so you settle for peaking around it at the mirror-covered wall across from your bed. Your balls are much bigger than you expected them to be after the surgery.
 	<<else>>
 		find your balls are much bigger than you expected them to be.
 	<</if>>
-	"So, what do you think of them?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand upon your <<if $PC.ballsImplant > 3>>watermelon-sized<<elseif $PC.ballsImplant == 3>>cantaloupe-sized<<elseif $PC.ballsImplant == 2>>softball-like<<else>>large<</if>> testicles. "Nice and heavy, they'll be making more cum than ever before." _HeU begins groping your scrotum, feeling around for any oddities in the testicles. "I know you're still a little sore from all that growth, but please bear with it." After a few minutes of gentle massage _heU looks up at you. "Enjoying the massage are you?" _heU asks, poking at the tip of your erection with _hisU free hand. "Why don't we find out if they are working properly?" _HeU leans over your dick<<if $PC.belly >= 5000>>, _hisU face brushing the underside of your pregnancy,<</if>>
-	<<if $PC.balls > 1>> and licks up the rivulet of precum running down its length. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your overfilled balls. The new sensation quickly overwhelms your control and you release your massive load deep in _hisU throat. Like a good assistant, _heU struggles to gulp down the torrent of fluid until _heU takes you deep enough for it to pour down _hisU throat directly. "Now this is the kind of size enhancement I can get behind, not that gel that does nothing for making juicy cum." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	"So, what do you think of them?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand upon your <<if $PC.balls >= 30>>watermelon-sized<<elseif $PC.balls >= 14>>cantaloupe-sized<<elseif $PC.balls >= 9>>softball-like<<else>>large<</if>> testicles. "Nice and heavy, they'll be making more cum than ever before." _HeU begins groping your scrotum, feeling around for any oddities in the testicles. "I know you're still a little sore from all that growth, but please bear with it." After a few minutes of gentle massage _heU looks up at you. "Enjoying the massage are you?" _heU asks, poking at the tip of your erection with _hisU free hand. "Why don't we find out if they are working properly?" _HeU leans over your dick<<if $PC.belly >= 5000>>, _hisU face brushing the underside of your pregnancy,<</if>>
+	<<if $PC.balls >= 10>> and licks up the rivulet of precum running down its length. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your overfilled balls. The new sensation quickly overwhelms your control and you release your massive load deep in _hisU throat. Like a good assistant, _heU struggles to gulp down the torrent of fluid until _heU takes you deep enough for it to pour down _hisU throat directly. "Now this is the kind of size enhancement I can get behind, not that gel that does nothing for making juicy cum." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 	<<else>> and licks the droplets of precum running down its length. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your overfilled balls. The new sensation quickly overwhelms your control and you release a surprisingly large load deep in _hisU throat. Like a good assistant, _heU gulps down the gushing fluid, making sure _heU doesn't spill a drop. "Now this is the kind of size enhancement I can get behind, not that gel that does nothing for making juicy cum." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.<</if>>
 
 <<case "ballShrinkageHorm">>
-	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
-	<<if $PC.boobsBonus == 3 && $PC.belly >= 10000>>
+	After a few hours, you awaken in the recovery wing with a distinct soreness <<if $PC.balls >= 14>>and the sense that something massive is pushing your legs apart<<elseif $PC.balls >= 9>>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
+	<<if $PC.boobs >= 1400 && $PC.belly >= 10000>>
 		find that not only can you barely see around your breasts, but any attempts to do so are immediately thwarted by your big, pregnant belly. You settle for a position peaking over your tits but around your middle to view the mirror-covered wall across from your bed. Your balls are now closer to the typical size one would expect.
-	<<elseif $PC.boobsBonus == 3>>
+	<<elseif $PC.boobs >= 1400>>
 		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 balls are now closer to the typical size one would expect.
 	<<elseif $PC.belly >= 10000>>
 		find that your big, pregnant belly makes it impossible to get a good look at your crotch so you settle for peaking around it at the mirror-covered wall across from your bed. Your balls are now closer to the typical size one would expect.
 	<<else>>
 		find your balls are now closer to the typical size one would expect.
 	<</if>>
-	"So, what do you think of them?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand upon your <<if $PC.ballsImplant == 3>>cantaloupe-sized<<elseif $PC.ballsImplant == 2>>softball-like<<else>>large<</if>> testicles. "Still nice and heavy, I wonder if they'll start making more cum without that gel in the way?" _HeU begins groping your scrotum, feeling around for any oddities in the testicles. "I know you're still a little sore from removing that gel, but please bear with it." After a few minutes of gentle massage _heU looks up at you. "Enjoying the massage are you?" _heU asks, poking at the tip of your erection with _hisU free hand. "Why don't we find out if they are working properly?" _HeU leans over your dick<<if $PC.belly >= 5000>>, _hisU face brushing the underside of your pregnancy,<</if>>
-	<<if $PC.balls > 1>> and licks up the rivulet of precum running down its length. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your slightly emptier sack. The new sensation quickly overwhelms your control and you release your massive load deep in _hisU throat. Like a good assistant, _heU struggles to gulp down the torrent of fluid until _heU takes you deep enough for it to pour down _hisU throat directly. "You know, I think getting rid of that gel did boost your production a little." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	"So, what do you think of them?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand upon your <<if $PC.balls >= 14>>cantaloupe-sized<<elseif $PC.balls >= 9>>softball-like<<else>>large<</if>> testicles. "Still nice and heavy, I wonder if they'll start making more cum without that gel in the way?" _HeU begins groping your scrotum, feeling around for any oddities in the testicles. "I know you're still a little sore from removing that gel, but please bear with it." After a few minutes of gentle massage _heU looks up at you. "Enjoying the massage are you?" _heU asks, poking at the tip of your erection with _hisU free hand. "Why don't we find out if they are working properly?" _HeU leans over your dick<<if $PC.belly >= 5000>>, _hisU face brushing the underside of your pregnancy,<</if>>
+	<<if $PC.balls >= 10>> and licks up the rivulet of precum running down its length. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your slightly emptier sack. The new sensation quickly overwhelms your control and you release your massive load deep in _hisU throat. Like a good assistant, _heU struggles to gulp down the torrent of fluid until _heU takes you deep enough for it to pour down _hisU throat directly. "You know, I think getting rid of that gel did boost your production a little." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 	<<else>> and licks the droplets of precum running down its length. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your slightly emptier sack. The new sensation quickly overwhelms your control and you release a large load deep in _hisU throat. Like a good assistant, _heU gulps down the gushing fluid, making sure _heU doesn't spill a drop. "You know, I think getting rid of that gel did boost your production a little." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.<</if>>
 
 <<case "ballBigShrinkage">>
 	After a few hours, you awaken in the recovery wing with a distinct soreness and tight feeling between your legs. You pull the covers off of yourself to catch sight of the result of the surgery and
-	<<if $PC.boobsBonus == 3 && $PC.belly >= 10000>>
+	<<if $PC.boobs >= 1400 && $PC.belly >= 10000>>
 		find that not only can you barely see around your breasts, but any attempts to do so are immediately thwarted by your big, pregnant belly. You settle for a position peaking over your tits but around your middle to view the mirror-covered wall across from your bed. Your balls are now closer to the typical size one would expect.
-	<<elseif $PC.boobsBonus == 3>>
+	<<elseif $PC.boobs >= 1400>>
 		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 balls are now closer to the typical size one would expect.
 	<<elseif $PC.belly >= 10000>>
 		find that your big, pregnant belly makes it impossible to get a good look at your crotch so you settle for peaking around it at the mirror-covered wall across from your bed. Your balls are now closer to the typical size one would expect.
 	<<else>>
 		find your balls have had a dramatic size adjustment.
 	<</if>>
-	"So, what do you think of them?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand upon your <<if $PC.ballsImplant == 2>>softball-like<<else>>large<</if>> testicles. "Starting to feel lighter?" _HeU begins groping your scrotum, feeling around for any oddities. "I know you're still a little sore after removing so much gel on top of the testicle growth." After a few minutes of gentle massage _heU looks up at you. "Enjoying the massage are you?" _heU asks, poking at the tip of your erection with _hisU free hand. "Why don't we find out if those hormones are working properly?" _HeU leans over your dick<<if $PC.belly >= 5000>>, _hisU face brushing the underside of your pregnancy,<</if>> and licks up the droplets of precum running down its length. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your loosened balls. The new sensation quickly overwhelms your control and you release a surprisingly large load deep in _hisU throat. Like a good assistant, _heU gulps down the gushing fluid, making sure _heU doesn't spill a drop. "Their new size might not be what you were hoping for, but they're sure producing a lot of yummy cum now!" Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	"So, what do you think of them?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand upon your <<if $PC.balls >= 9>>softball-like<<else>>large<</if>> testicles. "Starting to feel lighter?" _HeU begins groping your scrotum, feeling around for any oddities. "I know you're still a little sore after removing so much gel on top of the testicle growth." After a few minutes of gentle massage _heU looks up at you. "Enjoying the massage are you?" _heU asks, poking at the tip of your erection with _hisU free hand. "Why don't we find out if those hormones are working properly?" _HeU leans over your dick<<if $PC.belly >= 5000>>, _hisU face brushing the underside of your pregnancy,<</if>> and licks up the droplets of precum running down its length. "As good as always." Taking your dick to the hilt, _heU begins earnestly sucking you off while fondling your loosened balls. The new sensation quickly overwhelms your control and you release a surprisingly large load deep in _hisU throat. Like a good assistant, _heU gulps down the gushing fluid, making sure _heU doesn't spill a drop. "Their new size might not be what you were hoping for, but they're sure producing a lot of yummy cum now!" Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "tightPussy">>
 	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 && $PC.belly >= 10000>>
+	<<if $PC.boobs >= 1400 && $PC.belly >= 10000>>
 		find that not only can you barely see around your breasts, but any attempts to do so are immediately thwarted by your big, pregnant belly. You settle for a position peaking over your tits but around your middle to view the mirror-covered wall across from your bed. Your pussy isn't gaping, so that's a good sign. You can't tell much more until you get a good feel of it.
-	<<elseif $PC.boobsBonus == 3>>
+	<<elseif $PC.boobs >= 1400>>
 		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 isn't gaping, so that's a good sign. You can't tell much more until you get a good feel of it.
 	<<elseif $PC.belly >= 10000>>
 		find that your big, pregnant belly makes it impossible to get a good look at your crotch so you settle for peaking around it at the mirror-covered wall across from your bed. Your pussy isn't gaping, so that's a good sign. You can't tell much more until you get a good feel of it.
@@ -136,15 +188,15 @@
 		find your pussy is much tighter than it was. No hymen though, so you can't pass as a virgin.
 	<</if>>
 	"So, do you like it? Does it feel any tighter?", asks the surgeon's assistant, seating _himselfU beside you and tracing your labia with a finger. "Feel anything? Or do we need to take this a little further?" _HeU begins fingering your new pussy, feeling around for any oddities and teasing you at the same time. "I know you're still a little sore, but bear with it. Plus, I know it must feel good.
-	<<if $PC.dick == 1>>
-		See? He agrees with me," _heU says, poking at the tip of your erection with _hisU free hand. "Shall we see if it's working right?" _HeU circles around till _heU is between your legs and <<if $PC.belly >= 10000>>disappears behind the curvature of your pregnancy<<else>>disappears between your thighs<</if>>. You feel <<if $PC.ballsImplant > 1>>_himU lift your engorged sack and leave it resting atop _hisU head<<else>>_hisU head brush against your sack<</if>> as _heU brings _hisU mouth to your cunt and begins to enthusiastically eat you out. _HeU is quite good at _hisU job and quickly brings you to climax; your neglected dick spraying cum across your belly. _HeU rises from your crotch to lick up your wayward cum. "I always did like the taste of you. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you settle back down to sleep off the rest of the anesthesia before returning to your arcology.
+	<<if $PC.dick != 0>>
+		See? He agrees with me," _heU says, poking at the tip of your erection with _hisU free hand. "Shall we see if it's working right?" _HeU circles around till _heU is between your legs and <<if $PC.belly >= 10000>>disappears behind the curvature of your pregnancy<<else>>disappears between your thighs<</if>>. You feel <<if $PC.balls >= 9>>_himU lift your engorged sack and leave it resting atop _hisU head<<else>>_hisU head brush against your sack<</if>> as _heU brings _hisU mouth to your cunt and begins to enthusiastically eat you out. _HeU is quite good at _hisU job and quickly brings you to climax; your neglected dick spraying cum across your belly. _HeU rises from your crotch to lick up your wayward cum. "I always did like the taste of you. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you settle back down to sleep off the rest of the anesthesia before returning to your arcology.
 	<<else>>
 		See? Your cute little clit agrees with me," _heU says, poking at the tip of your peeking clit with _hisU free hand. "Shall we see if it's working right?" _HeU circles around till _heU is between your legs and <<if $PC.belly >= 10000>>disappears behind the curvature of your pregnancy<<else>>disappears between your thighs<</if>>. You feel face brush your inner legs as _heU brings _hisU mouth to your cunt and begins to enthusiastically eat you out. _HeU is quite good at _hisU job and quickly brings you to climax; your new pussy squirting girlcum across _hisU face. _HeU rises from your crotch and licks _hisU lips. "I always did like the taste of you. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you settle back down to sleep off the rest of the anesthesia before returning to your arcology.
 	<</if>>
 
 <<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.boobs >= 1400>>
 		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 +205,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.boobs >= 1400>>
 		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 +214,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.boobs >= 1400>>
 		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 +226,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.boobs >= 1400>>
 		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,36 +235,36 @@
 
 <<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>>
-		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.
+	<<if $PC.boobs >= 1400>>
+		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.balls < 5>> 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.
+		<<if $PC.balls < 5>>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>>
-	"So, how do you feel?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand on your belly. "I'd take it easy for the rest of the week, your body is going to take some time to recover from all the changes. Now, this might be uncomfortable, but it would be best to check if your new parts are functioning correctly." _HeU circles around until _heU is between your legs and disappears between your thighs. You feel <<if $PC.ballsImplant > 1>>_himU lift your engorged sack and leave it resting atop _hisU head<<else>>_hisU head brush against your sack<</if>> as _heU brings _hisU mouth to your fresh pussy and begins to enthusiastically eat you out. _HeU is quite good at _hisU job and quickly brings you to climax; your new vagina squirting girlcum across _hisU face and your neglected dick spraying cum across your belly. _HeU rises from your crotch to lick up your wayward cum. "I always did like the taste of you and your new flavor is good too. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around. Oh! And before you leave, we'll write a prescription for some birth control for you. You don't have to use it, but it'll be there for you. Just try not to mix your two halves, unless you want to watch your middle steadily swell with your own child." Exhausted from the procedure, you settle back down to recover for the rest of your stay.
+	"So, how do you feel?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand on your belly. "I'd take it easy for the rest of the week, your body is going to take some time to recover from all the changes. Now, this might be uncomfortable, but it would be best to check if your new parts are functioning correctly." _HeU circles around until _heU is between your legs and disappears between your thighs. You feel <<if $PC.balls >= 9>>_himU lift your engorged sack and leave it resting atop _hisU head<<else>>_hisU head brush against your sack<</if>> as _heU brings _hisU mouth to your fresh pussy and begins to enthusiastically eat you out. _HeU is quite good at _hisU job and quickly brings you to climax; your new vagina squirting girlcum across _hisU face and your neglected dick spraying cum across your belly. _HeU rises from your crotch to lick up your wayward cum. "I always did like the taste of you and your new flavor is good too. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around. Oh! And before you leave, we'll write a prescription for some birth control for you. You don't have to use it, but it'll be there for you. Just try not to mix your two halves, unless you want to watch your middle steadily swell with your own child." Exhausted from the procedure, you settle back down to recover for the rest of your stay.
 
 <<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.boobs >= 1400>>
 		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.
+		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 < 300>> 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.
 	<</if>>
 	"So, how do you feel?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand on your belly. "I'd take it easy for the rest of the week, your body is going to take some time to recover from all the changes. Now, this might be uncomfortable, but it would be best to check if your new parts are functioning correctly." _HeU circles around until _heU is between your legs and disappears between your thighs. You feel face brush your inner legs as _heU brings _hisU mouth to your fresh pussy and begins to enthusiastically eat you out. _HeU is quite good at _hisU job and quickly brings you to climax; your new vagina squirting girlcum across _hisU face. _HeU rises from your crotch and licks _hisU lips. "Your new taste is good too. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around. Oh! And before you leave, we'll write a prescription for some birth control for you. You don't have to use it, but it'll be there for you." Exhausted from the procedure, you settle back down to play with your tits and recover for the rest of your stay.
-	<<if $PC.boobs == 0>><<set $PC.boobs = 1, $PC.boobsBonus = -2>><</if>>
+	<<if $PC.boobs < 300>><<set $PC.boobs = 500>><</if>>
 
 <<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>>
-		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.
+	<<if $PC.boobs >= 1400>>
+		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.balls < 5>> 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.
+		<<if $PC.balls < 5>>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 < 300>> 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.
 	<</if>>
-	"So, how do you feel?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand on your belly. "I'd take it easy for the rest of the week, your body is going to take some time to recover from all the changes. Now, this might be uncomfortable, but it would be best to check if your new parts are functioning correctly." _HeU circles around until _heU is between your legs and disappears between your thighs. You feel <<if $PC.ballsImplant > 1>>_himU lift your engorged sack and leave it resting atop _hisU head<<else>>_hisU head brush against your sack<</if>> as _heU brings _hisU mouth to your fresh pussy and begins to enthusiastically eat you out. _HeU is quite good at _hisU job and quickly brings you to climax; your new vagina squirting girlcum across _hisU face and your neglected dick spraying cum across your belly. _HeU rises from your crotch to lick up your wayward cum. "I always did like the taste of you and your new flavor is good too. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around. Oh! And before you leave, we'll write a prescription for some birth control for you. You don't have to use it, but it'll be there for you. Just try not to mix your two halves, unless you want to watch your middle steadily swell with your own child." Exhausted from the procedure, you settle back down to play with your tits and recover for the rest of your stay.
-	<<if $PC.boobs == 0>><<set $PC.boobs = 1, $PC.boobsBonus = -2>><</if>>
+	"So, how do you feel?", asks the surgeon's assistant, seating _himselfU beside you and placing a hand on your belly. "I'd take it easy for the rest of the week, your body is going to take some time to recover from all the changes. Now, this might be uncomfortable, but it would be best to check if your new parts are functioning correctly." _HeU circles around until _heU is between your legs and disappears between your thighs. You feel <<if $PC.balls >= 9>>_himU lift your engorged sack and leave it resting atop _hisU head<<else>>_hisU head brush against your sack<</if>> as _heU brings _hisU mouth to your fresh pussy and begins to enthusiastically eat you out. _HeU is quite good at _hisU job and quickly brings you to climax; your new vagina squirting girlcum across _hisU face and your neglected dick spraying cum across your belly. _HeU rises from your crotch to lick up your wayward cum. "I always did like the taste of you and your new flavor is good too. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around. Oh! And before you leave, we'll write a prescription for some birth control for you. You don't have to use it, but it'll be there for you. Just try not to mix your two halves, unless you want to watch your middle steadily swell with your own child." Exhausted from the procedure, you settle back down to play with your tits and recover for the rest of your stay.
+	<<if $PC.boobs < 300>><<set $PC.boobs = 500>><</if>>
 
 <<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.boobs >= 1400>>
 		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 +273,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.boobs >= 1400>>
 		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 +288,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.boobs >= 1400>>
 		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 +297,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.boobs >= 1400>>
 		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/pregmod/FSuckle.tw b/src/pregmod/FSuckle.tw
index 9a533086de83cdcc0db2270d8134b52fa473bfb6..1a28099cdf09be02d153cb06b3d1cedb632a063a 100644
--- a/src/pregmod/FSuckle.tw
+++ b/src/pregmod/FSuckle.tw
@@ -149,52 +149,52 @@ You <<if _mood == 2>>demand<<else>>beckon<</if>> $activeSlave.slaveName to
 		<</if>>
 		Though muffled, you
 		<<if _mood == 2>>
-			order $him to deal with <<if $PC.dick == 1>>the erect monster pressing uncomfortably against the underside of your belly<<else>>the needy hole leaking all over your floor<</if>>.
+			order $him to deal with <<if $PC.dick != 0>>the erect monster pressing uncomfortably against the underside of your belly<<else>>the needy hole leaking all over your floor<</if>>.
 			<<if $activeSlave.fetish == "mindbroken">>
-				$He obeys without question and mechanically begins to <<if $PC.dick == 1>>jerk you off<<else>>finger you<</if>>.
+				$He obeys without question and mechanically begins to <<if $PC.dick != 0>>jerk you off<<else>>finger you<</if>>.
 			<<elseif $activeSlave.devotion >= -20>>
-				This proves unnecessary as, before you finish speaking, $he <<if $PC.dick == 1>>wraps $his fingers around your needy cock<<else>><<if canSmell($activeSlave)>>smells<<else>>recognizes<</if>> your arousal<</if>> and begins to apply $his ministrations to take care of you<<if $activeSlave.nipples == "inverted" || $activeSlave.nipples == "partially inverted">>, as the sensations to $his nipple add so much more to the already surrounding breastflesh<</if>>. You buck to $his touch, forcing $him to try and steady $his breasts as your baby bump jumps with life.
+				This proves unnecessary as, before you finish speaking, $he <<if $PC.dick != 0>>wraps $his fingers around your needy cock<<else>><<if canSmell($activeSlave)>>smells<<else>>recognizes<</if>> your arousal<</if>> and begins to apply $his ministrations to take care of you<<if $activeSlave.nipples == "inverted" || $activeSlave.nipples == "partially inverted">>, as the sensations to $his nipple add so much more to the already surrounding breastflesh<</if>>. You buck to $his touch, forcing $him to try and steady $his breasts as your baby bump jumps with life.
 			<<elseif $activeSlave.trust < -20>>
-				$He begins to question your order, but quickly realizes that was a mistake as you grab $his hand and force it to your crotch. Hastily, $he begins to stroke <<if $PC.dick == 1>>your dick<<else>>your pussy<</if>> until reassured that $he is pleasing you from your lusty moans and thrusting. $He does $his best, hoping to not anger you further as $he presses <<if $PC.dick == 1>>the head<<else>>your lower lips<</if>> against $his nearby nipple.
+				$He begins to question your order, but quickly realizes that was a mistake as you grab $his hand and force it to your crotch. Hastily, $he begins to stroke <<if $PC.dick != 0>>your dick<<else>>your pussy<</if>> until reassured that $he is pleasing you from your lusty moans and thrusting. $He does $his best, hoping to not anger you further as $he presses <<if $PC.dick != 0>>the head<<else>>your lower lips<</if>> against $his nearby nipple.
 			<<else>>
-				Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand before $he is pinned in a much more compromising position by your pregnancy. $activeSlave.slaveName begins to <<if $PC.dick == 1>>tug at your penis, pressing the head against $his nearby nipple, hoping this doesn't<<else>>finger your quivering pussy, rubbing $his thumb against your clit, hoping this won't<</if>> take too long.
+				Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand before $he is pinned in a much more compromising position by your pregnancy. $activeSlave.slaveName begins to <<if $PC.dick != 0>>tug at your penis, pressing the head against $his nearby nipple, hoping this doesn't<<else>>finger your quivering pussy, rubbing $his thumb against your clit, hoping this won't<</if>> take too long.
 			<</if>>
 		<<else>>
 			instruct $him to use $his hand to appease the evident arousal between your legs.
 			<<if $activeSlave.fetish == "mindbroken">>
-				$He obeys without question and mechanically begins to <<if $PC.dick == 1>>jerk you off<<else>>finger you<</if>>.
+				$He obeys without question and mechanically begins to <<if $PC.dick != 0>>jerk you off<<else>>finger you<</if>>.
 			<<elseif $activeSlave.devotion >= -20>>
-				This proves unnecessary as, before you finish speaking, $he <<if $PC.dick == 1>>notices your hardening penis<<else>><<if canSmell($activeSlave)>>smells<<else>>recognizes<</if>> your arousal<</if>> and begins to apply $his ministrations to take care of you<<if $activeSlave.nipples == "inverted" || $activeSlave.nipples == "partially inverted">>, as the sensations to $his nipple add so much more to the already surrounding breastflesh<</if>>. You respond further with a positive "Mmmhmm~", which calms $his worries as $he works on pleasuring you as much as $he can with one hand.
+				This proves unnecessary as, before you finish speaking, $he <<if $PC.dick != 0>>notices your hardening penis<<else>><<if canSmell($activeSlave)>>smells<<else>>recognizes<</if>> your arousal<</if>> and begins to apply $his ministrations to take care of you<<if $activeSlave.nipples == "inverted" || $activeSlave.nipples == "partially inverted">>, as the sensations to $his nipple add so much more to the already surrounding breastflesh<</if>>. You respond further with a positive "Mmmhmm~", which calms $his worries as $he works on pleasuring you as much as $he can with one hand.
 			<<elseif $activeSlave.trust < -20>>
-				$He begins to question your order, but quickly realizes <<if $PC.dick == 1>>your penis is at full mast and prodding $his breastflesh<<else>>you're soaking wet and quivering with desire<</if>>. Cautiously, $he begins to stroke <<if $PC.dick == 1>>it<<else>>your pussy<</if>> until reassured that $he is pleasing you with a positive "Mmmhmm~". $He does $his best, hoping to not anger you in any way or make a mistake as $he presses <<if $PC.dick == 1>>the head<<else>>your lower lips<</if>> against $his nearby nipple.
+				$He begins to question your order, but quickly realizes <<if $PC.dick != 0>>your penis is at full mast and prodding $his breastflesh<<else>>you're soaking wet and quivering with desire<</if>>. Cautiously, $he begins to stroke <<if $PC.dick != 0>>it<<else>>your pussy<</if>> until reassured that $he is pleasing you with a positive "Mmmhmm~". $He does $his best, hoping to not anger you in any way or make a mistake as $he presses <<if $PC.dick != 0>>the head<<else>>your lower lips<</if>> against $his nearby nipple.
 			<<else>>
-				Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick == 1>>tug at your hardened penis, pressing the head against $his nearby nipple, hoping this doesn't<<else>>finger your quivering pussy, rubbing $his thumb against your clit, hoping this won't<</if>> take too long.
+				Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick != 0>>tug at your hardened penis, pressing the head against $his nearby nipple, hoping this doesn't<<else>>finger your quivering pussy, rubbing $his thumb against your clit, hoping this won't<</if>> take too long.
 			<</if>>
 		<</if>>
 	<<else>>
 		exotic nipple brushing across your lips, as if wanting to have your tongue inside it, while $his other nipple
 		<<if _mood == 2>>
-			brushes across your <<if $PC.dick == 1>>penis, just begging to be penetrated. You struggle to shift yourself in such a way to penetrate $his nipple, before finally managing to slip the tip into $him<<else>>clit, as if begging to join in. You struggle to shift yourself to an angle where you could attach your sex to<</if>> $his nippleslit.
+			brushes across your <<if $PC.dick != 0>>penis, just begging to be penetrated. You struggle to shift yourself in such a way to penetrate $his nipple, before finally managing to slip the tip into $him<<else>>clit, as if begging to join in. You struggle to shift yourself to an angle where you could attach your sex to<</if>> $his nippleslit.
 			<<if $activeSlave.fetish == "mindbroken">>
-				<<if $PC.dick == 1>>$He gasps in surprise as you force yourself all the way into $him and your gravid swell parts $his breasts.<<else>>$He fails to understand your efforts, leaving you humping against $his breast.<</if>>
+				<<if $PC.dick != 0>>$He gasps in surprise as you force yourself all the way into $him and your gravid swell parts $his breasts.<<else>>$He fails to understand your efforts, leaving you humping against $his breast.<</if>>
 			<<elseif $activeSlave.devotion >= -20>>
-				$He gasps in surprise before understanding what you desire and begins to <<if $PC.dick == 1>>ease $his breast into consuming the rest of your length. $He fails to do so fast enough and you force yourself upwards, your gravid swell parting $his breasts as your cock delves into the depths of $his tits<<else>>jiggle $his breast in an attempt to add to your efforts<</if>>.
+				$He gasps in surprise before understanding what you desire and begins to <<if $PC.dick != 0>>ease $his breast into consuming the rest of your length. $He fails to do so fast enough and you force yourself upwards, your gravid swell parting $his breasts as your cock delves into the depths of $his tits<<else>>jiggle $his breast in an attempt to add to your efforts<</if>>.
 			<<elseif $activeSlave.trust < -20>>
-				$He begins to question your intent, but quickly realizes your <<if $PC.dick == 1>>penis is entering $his breastpussy by force and the $he'd better get used to it<<else>>pussy is rubbing against $his nippleslit. $He begins to jiggle $his breast in an attempt to add to your efforts<</if>>.
+				$He begins to question your intent, but quickly realizes your <<if $PC.dick != 0>>penis is entering $his breastpussy by force and the $he'd better get used to it<<else>>pussy is rubbing against $his nippleslit. $He begins to jiggle $his breast in an attempt to add to your efforts<</if>>.
 			<<else>>
-				Though $he furrows $his brow, $he decides it's better to get it over with quickly rather than in worse circumstances. $activeSlave.slaveName <<if $PC.dick == 1>>shudders as the rest of your shaft forces its way into $his breastpussy<<else>>begins to jiggle $his breast in an attempt to get you off<</if>>, hoping this doesn't take too long.
+				Though $he furrows $his brow, $he decides it's better to get it over with quickly rather than in worse circumstances. $activeSlave.slaveName <<if $PC.dick != 0>>shudders as the rest of your shaft forces its way into $his breastpussy<<else>>begins to jiggle $his breast in an attempt to get you off<</if>>, hoping this doesn't take too long.
 			<</if>>
 			You breathe in $his scent as you let out a moan, your child<<if $PC.pregType > 1>>ren<</if>> satisfied with the sensations of $his milky depths surrounding your crotch.
 		<<else>>
-			brushes across your hardening <<if $PC.dick == 1>>penis, as if begging to be penetrated. You shift to angle yourself just right before thrusting your hips upwards, inserting the tip of your shaft into<<else>>clit, as if begging to join in. You shift to angle yourself just right before thrusting your hips upwards in an attempt to attach your sex to<</if>> $his nippleslit.
+			brushes across your hardening <<if $PC.dick != 0>>penis, as if begging to be penetrated. You shift to angle yourself just right before thrusting your hips upwards, inserting the tip of your shaft into<<else>>clit, as if begging to join in. You shift to angle yourself just right before thrusting your hips upwards in an attempt to attach your sex to<</if>> $his nippleslit.
 			<<if $activeSlave.fetish == "mindbroken">>
-				<<if $PC.dick == 1>>$He gasps in surprise as you push all the way into $him.<<else>>$He fails to understand your efforts, leaving you rubbing yourself against $his breast.<</if>>
+				<<if $PC.dick != 0>>$He gasps in surprise as you push all the way into $him.<<else>>$He fails to understand your efforts, leaving you rubbing yourself against $his breast.<</if>>
 			<<elseif $activeSlave.devotion >= -20>>
-				$He gasps in surprise before understanding what you desire and begins to <<if $PC.dick == 1>>ease $his breast into consuming the rest of your length<<else>>jiggle $his breast in an attempt to add to your efforts<</if>>.
+				$He gasps in surprise before understanding what you desire and begins to <<if $PC.dick != 0>>ease $his breast into consuming the rest of your length<<else>>jiggle $his breast in an attempt to add to your efforts<</if>>.
 			<<elseif $activeSlave.trust < -20>>
-				$He begins to question your intent, but quickly realizes your <<if $PC.dick == 1>>penis is entering $his breastpussy one way or another and begins to ease it all the way in before you decide to force the matter<<else>>pussy is rubbing against $his nippleslit. $He begins to jiggle $his breast in an attempt to add to your efforts<</if>>.
+				$He begins to question your intent, but quickly realizes your <<if $PC.dick != 0>>penis is entering $his breastpussy one way or another and begins to ease it all the way in before you decide to force the matter<<else>>pussy is rubbing against $his nippleslit. $He begins to jiggle $his breast in an attempt to add to your efforts<</if>>.
 			<<else>>
-				Though $he furrows $his brow, $he decides it's better to get it over with quickly rather than in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick == 1>>ease the rest of your shaft into $his breastpussy<<else>>jiggle $his breast in an attempt to get you off<</if>>, hoping this doesn't take too long.
+				Though $he furrows $his brow, $he decides it's better to get it over with quickly rather than in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick != 0>>ease the rest of your shaft into $his breastpussy<<else>>jiggle $his breast in an attempt to get you off<</if>>, hoping this doesn't take too long.
 			<</if>>
 			You breathe in $his scent as you let out a sigh, content with the sensations of $his milky depths surrounding your crotch.
 		<</if>>
@@ -215,7 +215,7 @@ You <<if _mood == 2>>demand<<else>>beckon<</if>> $activeSlave.slaveName to
 		<</if>>
 	<<elseif $activeSlave.nipples == "fuckable">>
 		<<if _mood == 2>>
-			using two fingers to penetrate and spread apart to appreciate the insides. They are dripping with excess milk and resemble a tiny pussy; a series of kicks insist that you have a taste<<if $PC.dick == 1>> and a little stress relief<</if>>.
+			using two fingers to penetrate and spread apart to appreciate the insides. They are dripping with excess milk and resemble a tiny pussy; a series of kicks insist that you have a taste<<if $PC.dick != 0>> and a little stress relief<</if>>.
 		<<else>>
 			dripping with excess milk and resembling a tiny pussy, your instincts doubly insisting that you have a taste.
 		<</if>>
@@ -260,16 +260,16 @@ You <<if _mood == 2>>demand<<else>>beckon<</if>> $activeSlave.slaveName to
 	<</if>>
 	$his over-productive bosoms drip sweet cream on your face<<if $activeSlave.nipples == "inverted">>, the milk waiting to be sucked from the tight inverted holes above you<</if>><<if $PC.belly >= 10000>> and your belly brushing the undersides of $his tits<</if>>. You
 	<<if _mood == 2>>
-		order $him to deal with <<if $PC.dick == 1>>the erect monster pressing uncomfortably against the underside of your belly<<else>>the needy hole leaking all over your floor<</if>>.
+		order $him to deal with <<if $PC.dick != 0>>the erect monster pressing uncomfortably against the underside of your belly<<else>>the needy hole leaking all over your floor<</if>>.
 	<<else>>
 		<<if _mood == 2>>invite<<else>>instruct<</if>> $him to use $his hand to appease the ever evident arousal between your legs.
 	<</if>>
 	<<if $activeSlave.fetish == "mindbroken">>
-		$He obeys without question and mechanically begins to <<if $PC.dick == 1>>jerk you off<<else>>finger you<</if>>.
+		$He obeys without question and mechanically begins to <<if $PC.dick != 0>>jerk you off<<else>>finger you<</if>>.
 	<<elseif $activeSlave.devotion >= -20 || $activeSlave.trust < -20>>
-		<<if $PC.dick == 1>>Though $he believes it would be better for you to use $his other slew of pleasurable orifices, $he does not question your decision<<else>>$He happily sets to work on your clit<</if>>.
+		<<if $PC.dick != 0>>Though $he believes it would be better for you to use $his other slew of pleasurable orifices, $he does not question your decision<<else>>$He happily sets to work on your clit<</if>>.
 	<<else>>
-		Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick == 1>>tug at your hardened penis<<else>>stroke your quivering pussy as best as $he can<</if>>, hoping this doesn't take too long.
+		Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick != 0>>tug at your hardened penis<<else>>stroke your quivering pussy as best as $he can<</if>>, hoping this doesn't take too long.
 	<</if>>
 <</if>>
 
@@ -304,7 +304,7 @@ You <<if _mood == 2>>demand<<else>>beckon<</if>> $activeSlave.slaveName to
 	<<elseif $activeSlave.nipples == "inverted" || $activeSlave.nipples == "partially inverted">>
 		$his erect nipple in your mouth, while your sex focuses on the soft hand diligently working it. You feverishly suckle on $his nipple as you thrash your tongue, your efforts rewarded with more milk.
 	<<elseif $activeSlave.nipples == "fuckable">>
-		your sex feeling nothing but the wet <<if $PC.dick == 1>>insides of $his breast<<else>>lips of $his breastpussy<</if>>. You feverishly thrash your tongue around inside of the bumpy enclosure, with each strong movement sending shivers through $him, forcing gasps, moans and milk out of $him.
+		your sex feeling nothing but the wet <<if $PC.dick != 0>>insides of $his breast<<else>>lips of $his breastpussy<</if>>. You feverishly thrash your tongue around inside of the bumpy enclosure, with each strong movement sending shivers through $him, forcing gasps, moans and milk out of $him.
 	<<else>>
 		$his milky nipple in your mouth, while your sex focuses on the soft hand diligently working it. You feverishly suckle on $his nipple as you thrash your tongue, your efforts rewarded with more milk.
 	<</if>>
@@ -353,27 +353,27 @@ relishing the delicious treat one could have only received from a mother's bosom
 <<if $activeSlave.boobs >= 20000>>
 	<<if $activeSlave.nipples == "fuckable">>
 		$He
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			holds $his breast and jiggles it in an attempt to compliment your thrusts, adding even more sensation alongside your own efforts. With the milk adding lubrication to the sensual hole of $his nipple and the enclosed nature of $his sopping wet breastpussy itself adding suction, it's like you were enveloped inside of a highly advanced cock milking machine, each bump sending thrums of pleasure as your dick brushed against them.
 		<<else>>
 			held $his breast and jiggled it in an attempt to compliment your thrusts, adding more sensation to your own efforts. The milk adding wetness to the sensual hole of $his nipple and the nature of $his sopping wet breastpussy itself adding suction felt like you were being enveloped by a world class pussy pump, each movement adding more suction and wetness than the last.
 		<</if>>
 	<<else>>
-		While you were busy suckling, $he was anything but idle, using $his hand as best as $he could to bring you the most pleasure $he is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife's edge of orgasm more than once. In your <<if $PC.dick == 1>>already dazed state<<else>>lust addled haze<</if>>, $his fingers seem to send lightning along your nerves<<if $PC.dick == 1>>; the tips brushing across your shaft to tickle its head make you thrust instinctively. $His tugs, gentle yet firm<<else>>. $His fingertips brush across your labia to tickle your clit, making you buck instinctively. $His strokes, gentle yet decisive<</if>>, have an almost motherly feel to them. Such ministrations cannot help but prepare you to <<if $PC.dick == 1>>shoot your load<<else>>come<</if>> as hard as you can.
+		While you were busy suckling, $he was anything but idle, using $his hand as best as $he could to bring you the most pleasure $he is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife's edge of orgasm more than once. In your <<if $PC.dick != 0>>already dazed state<<else>>lust addled haze<</if>>, $his fingers seem to send lightning along your nerves<<if $PC.dick != 0>>; the tips brushing across your shaft to tickle its head make you thrust instinctively. $His tugs, gentle yet firm<<else>>. $His fingertips brush across your labia to tickle your clit, making you buck instinctively. $His strokes, gentle yet decisive<</if>>, have an almost motherly feel to them. Such ministrations cannot help but prepare you to <<if $PC.dick != 0>>shoot your load<<else>>come<</if>> as hard as you can.
 	<</if>>
 <<elseif $activeSlave.boobs >= 2000>>
-	While you were busy suckling, $he was anything but idle, using $his hand as best as $he could to bring you the most pleasure $he is is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife's edge of orgasm more than once. $His hand continues to apply itself to your <<if $PC.dick == 1>>shaft, its fingertips brushing across your shaft to tickle its head and make you thrust instinctively. $His tugs<<else>>sex, $his fingertips seeming to send lightning along your nerves. As $he tickles your clit, you buck instinctively. $His strokes<</if>>, gentle yet firm, have an almost motherly feel to them. Such ministrations cannot help but prepare you to <<if $PC.dick == 1>>shoot your load<<else>>come<</if>> as hard as you can.
+	While you were busy suckling, $he was anything but idle, using $his hand as best as $he could to bring you the most pleasure $he is is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife's edge of orgasm more than once. $His hand continues to apply itself to your <<if $PC.dick != 0>>shaft, its fingertips brushing across your shaft to tickle its head and make you thrust instinctively. $His tugs<<else>>sex, $his fingertips seeming to send lightning along your nerves. As $he tickles your clit, you buck instinctively. $His strokes<</if>>, gentle yet firm, have an almost motherly feel to them. Such ministrations cannot help but prepare you to <<if $PC.dick != 0>>shoot your load<<else>>come<</if>> as hard as you can.
 <</if>>
 
-The two of you put so much into seeking pleasure in the act that you both cum at once, $his great gasp coinciding with your <<if $PC.dick == 1>><<if $PC.balls > 1>>flood<<else>>jet<</if>> of jizz flying<<else>>own jet of pussy juice squirting<</if>>
+The two of you put so much into seeking pleasure in the act that you both cum at once, $his great gasp coinciding with your <<if $PC.dick != 0>><<if $PC.balls >= 10>>flood<<else>>jet<</if>> of jizz flying<<else>>own jet of pussy juice squirting<</if>>
 <<if $activeSlave.boobs >= 20000 && $activeSlave.nipples == "fuckable">>
 	into
 <<else>>
 	onto
 <</if>>
-$his other breast<<if $PC.dick == 1>><<if $PC.balls > 1>> and backflowing hard from your sheer volume<</if>><</if>>. You release $his nipple with a loud pop and lick your lips in delight.
+$his other breast<<if $PC.dick != 0>><<if $PC.balls >= 10>> and backflowing hard from your sheer volume<</if>><</if>>. You release $his nipple with a loud pop and lick your lips in delight.
 <<if $activeSlave.boobs >= 20000 && $activeSlave.nipples == "fuckable">>
-	Your <<if $PC.dick == 1>>dick slips out<<else>>pussy separates<</if>> from $his other breast with a delicate pop, followed by lewd dripping noises and the sight of <<if $PC.dick == 1>>semen<<else>>girlcum<</if>> and milk oozing from $his <<if $PC.dick == 1>>newly expanded hole<<else>>nippleslit<</if>>.
+	Your <<if $PC.dick != 0>>dick slips out<<else>>pussy separates<</if>> from $his other breast with a delicate pop, followed by lewd dripping noises and the sight of <<if $PC.dick != 0>>semen<<else>>girlcum<</if>> and milk oozing from $his <<if $PC.dick != 0>>newly expanded hole<<else>>nippleslit<</if>>.
 <</if>>
 <<if _mood == 2>>
 	For a moment, $he thought you were finished, but with your hormone fueled libido, $he'll be feeling a lot more than sore nipples but the time you tire of $his touch.
diff --git a/src/pregmod/MpregSelf.tw b/src/pregmod/MpregSelf.tw
index e00c3ee48a814a3507ab67b7cd564a8df4e3c85f..f0ae0d53f7d4f1ca0749f704914eee93baaa5e38 100644
--- a/src/pregmod/MpregSelf.tw
+++ b/src/pregmod/MpregSelf.tw
@@ -4,8 +4,8 @@
 
 <<set $nextButton = "Back", $nextLink = "Main">>
 
-<<if $PC.birthSelf == 0>>
-	<<if $PC.balls > 2>>
+<<if $PC.counter.birthSelf == 0>>
+	<<if $PC.balls >= 14>>
 		Calling over your closest slave, you order _himU to bring you one of the high-volume enema syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending rivulets of precum running down to pool on your massive balls. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the extra-long enema syringe. Impatient, you give _himU your instructions: "Pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started."
 		Following your instructions, _heU eagerly drops to _hisU knees and inhales your soaked member. The large volume of precum coming from your engorged prostate necessitates frequent swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your massive balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching your massive balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying inhumanly large jets of alabaster cum into the enema syringe. It's good that you asked for high-capacity version, as the prodigious quantity of fertile semen would have overflowed from a smaller container.
 		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more.
@@ -16,7 +16,7 @@
 		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your balloon-like womb from forcing its meal back into the syringe. The nearly 2 liters of cum you have stuffed inside you leaves your stomach looking noticeably distended, prompting you to rub your sloshing belly. You give the waiting _girlU _hisU orders: "Pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering over your inflated belly to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes _himU to swiftly yank the rest of the syringe out of you, opening the floodgates for the colossal quantity of cum inflating your womb. Your well-trained slave reacts quickly, hefting your massive balls up and out of the way so _heU can catch the torrent of jizz that's just starting to pour from your cunt.
 		You hear some wet sounds as _heU slurps down the cum that already escaped, and then you feel _hisU soft lips pressed to your vulva as _heU steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your inhuman sperm production. There's always the tap from $dairyName of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right?
 
-	<<elseif $PC.balls == 2>>
+	<<elseif $PC.balls >= 9>>
 		Calling over your closest slave, you order _himU to bring you one of the enema syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending a steady stream of precum running down to pool on your huge balls. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the glass enema syringe. Impatient, you give _himU your instructions: "Pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started."
 		<br><br>Following your instructions, _heU eagerly drops to _hisU knees and inhales your soaked member. The large volume of precum coming from your swollen prostate necessitates regular swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your huge balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching your huge balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying massive jets of alabaster cum into the enema syringe. It's good that you decided on an enema syringe instead of a normal dildo suppository, as the huge quantity of fertile semen would have overflowed from a smaller container.
 		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more.
@@ -27,7 +27,7 @@
 		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your stuffed womb from forcing its meal back into the syringe. You give the waiting _girlU _hisU orders: "Pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering over your swollen belly to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes _himU to swiftly yank the rest of the syringe out of you, opening the floodgates for the huge quantity of cum that's stuffed in your womb. Your well-trained slave reacts quickly, hefting your huge balls up and out of the way so _heU can catch the torrent of jizz that's just starting to pour from your cunt.
 		You hear some wet sounds as _heU slurps down the cum that already escaped, and then you feel _hisU soft lips pressed to your vulva as _heU steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your prodigious sperm production. There's always the tap from $dairyName of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right?
 
-	<<elseif $PC.balls == 1>>
+	<<elseif $PC.balls >= 5>>
 		Calling over your closest slave, you order _himU to bring you one of the dildo-shaped suppository syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending regular drips of precum running down onto your large balls. Your pussy is similarly soaked, imagining your latest deviancy has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the remarkably-lifelike dildo syringe. Impatient, you give _himU your instructions: "Pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started."
 		<br><br>Following your instructions, _heU eagerly drops to _hisU knees and inhales your straining cock. The extra precum coming from your enhanced prostate necessitates occasional swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your large balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of what comes next, and soon your sack is clenching your large balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying large jets of alabaster cum into the syringe. It's close, the large quantity of fertile semen almost overflowing from the dildo suppository.
 		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the silicone of the thick dildo syringe and lay back once more.
@@ -50,10 +50,10 @@
 		You feel _hisU soft lips pressed to your vulva as _heU works to retrieve _hisU treat. You hear some soft slurping noises and feel a warm tongue worming its way inside you to retrieve any lingering cum. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your own balls for a satisfying creampie. There's always a slave to do that, of course, but this way you don't have to worry about getting pregnant. That last thought gives you pause. You can't get yourself pregnant... right?
 
 	<</if>>
-	<<set _selfPreg = 30+($PC.balls*20)>>
+	<<set _selfPreg = 30+($PC.balls*3)>>
 	<<= knockMeUp($PC, _selfPreg, 0, -1)>>
 <<else>>
-	<<if $PC.balls > 2>>
+	<<if $PC.balls >= 14>>
 		Calling over your closest slave, you order _himU to bring you one of the high-volume enema syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending rivulets of precum running down to pool on your massive balls. Your pussy is similarly soaked, imagining your belly swelling after you knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the extra-long enema syringe. Impatient, you give _himU your instructions: "Pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started."
 		Following your instructions, _heU eagerly drops to _hisU knees and inhales your soaked member. The large volume of precum coming from your engorged prostate necessitates frequent swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your massive balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching your massive balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying inhumanly large jets of alabaster cum into the enema syringe. It's good that you asked for high-capacity version, as the prodigious quantity of fertile semen would have overflowed from a smaller container.
 		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more.
@@ -64,7 +64,7 @@
 		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your balloon-like womb from forcing its meal back into the syringe. The nearly 2 liters of cum you have stuffed inside you leaves your stomach looking noticeably distended, prompting you to rub your sloshing belly. You give the waiting _girlU _hisU orders: "Pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering over your inflated belly to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes _himU to swiftly yank the rest of the syringe out of you, opening the floodgates for the colossal quantity of cum inflating your womb. Your well-trained slave reacts quickly, hefting your massive balls up and out of the way so _heU can catch the torrent of jizz that's just starting to pour from your cunt.
 		You hear some wet sounds as _heU slurps down the cum that already escaped, and then you feel _hisU soft lips pressed to your vulva as _heU steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your inhuman sperm production. There's always the tap from $dairyName of course, but why use slave cum when you have such obviously superior material available?
 
-	<<elseif $PC.balls == 2>>
+	<<elseif $PC.balls >= 9>>
 		Calling over your closest slave, you order _himU to bring you one of the enema syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending a steady stream of precum running down to pool on your huge balls. Your pussy is similarly soaked, imagining your belly swelling after you knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the glass enema syringe. Impatient, you give _himU your instructions: "Pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started."
 		<br><br>Following your instructions, _heU eagerly drops to _hisU knees and inhales your soaked member. The large volume of precum coming from your swollen prostate necessitates regular swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your huge balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching your huge balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying massive jets of alabaster cum into the enema syringe. It's good that you decided on an enema syringe instead of a normal dildo suppository, as the huge quantity of fertile semen would have overflowed from a smaller container.
 		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the glass of the thick enema syringe and lay back once more.
@@ -75,7 +75,7 @@
 		<br><br>Sometime later when you've recovered your senses, you see your slave standing by while holding the plunger to keep your stuffed womb from forcing its meal back into the syringe. You give the waiting _girlU _hisU orders: "Pull it out, and use your mouth to keep the mess to a minimum." _HeU gets on _hisU knees and takes a firm grip on the syringe before peering over your swollen belly to make sure you're ready for _himU to continue. As soon as you give _himU a nod _heU pulls, and with a popping sensation the enema bulb comes free. The sudden lack of resistance causes _himU to swiftly yank the rest of the syringe out of you, opening the floodgates for the huge quantity of cum that's stuffed in your womb. Your well-trained slave reacts quickly, hefting your huge balls up and out of the way so _heU can catch the torrent of jizz that's just starting to pour from your cunt.
 		You hear some wet sounds as _heU slurps down the cum that already escaped, and then you feel _hisU soft lips pressed to your vulva as _heU steadfastly works to drink the unending flood of semen. You relax and enjoy the afterglow of your orgasms while _heU works, proud of your ingenious idea to take advantage of your prodigious sperm production. There's always the tap from $dairyName of course, but why use slave cum when you have such obviously superior material available?
 
-	<<elseif $PC.balls == 1>>
+	<<elseif $PC.balls >= 5>>
 		Calling over your closest slave, you order _himU to bring you one of the dildo-shaped suppository syringes from the slave quarters. _HeU rushes off, and you set about getting naked before lying down on your luxurious bed. Your cock is already rock-hard, sending regular drips of precum running down onto your large balls. Your pussy is similarly soaked, imagining your belly swelling after you knock yourself up has it practically puddling. Just as you start to think about punishing your slave for taking too long, you hear a knock before _heU enters carrying the remarkably-lifelike dildo syringe. Impatient, you give _himU your instructions: "Pull out the plunger and keep the syringe handy. You're going to suck me off, but I want every drop of my cum to go into that syringe. No spilling. Now get started."
 		<br><br>Following your instructions, _heU eagerly drops to _hisU knees and inhales your straining cock. The extra precum coming from your enhanced prostate necessitates occasional swallowing that only adds to your pleasure. You lay back and enjoy yourself as _heU massages your large balls before slipping _hisU hand underneath to start fingering your soaked pussy. The expert ministrations from your slave combine with your thoughts of the semi-incestuous stuffing that comes next, and soon your sack is clenching your large balls as your body prepares to cum. Recognizing the signs, your slave removes _hisU mouth and replaces it with the open end of the syringe. _HeU takes _hisU sodden hand from your cunt and starts stroking vigorously, and soon you're spraying large jets of alabaster cum into the syringe. It's close, the large quantity of fertile semen almost overflows from the dildo suppository.
 		<br><br>You sit up and pick up the previously discarded plunger while your slave continues to hold the syringe. _HeU has thoughtfully blocked the tip with the palm of _hisU hand, keeping any of the precious fluid from escaping. You position the plunger and barely insert it into the open syringe, not wanting to accidentally force out your semen. The two of you flip the full syringe over so that the business end is pointing upward, and the slave removes _hisU hand while you make sure the plunger is secure and won't leak any of the precious cargo. Your slave eagerly licks the drop of cum off the palm of _hisU hand, but you don't begrudge _himU a small treat. Instead, you get a firm grasp on the silicone of the thick dildo syringe and lay back once more.
diff --git a/src/pregmod/artificialInsemination.tw b/src/pregmod/artificialInsemination.tw
index 369775e9757d4eb1f896324dfec9be4c65ea8ab4..fc541bbf742ad565e3b81d91256dba25c8d88d36 100644
--- a/src/pregmod/artificialInsemination.tw
+++ b/src/pregmod/artificialInsemination.tw
@@ -42,7 +42,7 @@ __Select an eligible slave to serve as the semen donatrix:__
 	<</if>>
 <</if>>
 
-<<if $PC.dick == 1>>
+<<if $PC.balls != 0>>
 	<br>
 	[[Use your own|Surgery Degradation][$impregnatrix = $PC, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "insemination"]]
 <<elseif $PC.storedCum > 0>>
diff --git a/src/pregmod/birthStorm.tw b/src/pregmod/birthStorm.tw
index 635786d8c8cfa3caea5c5220ba6a8f3b1296f2fa..077d56e490967bf7c1d745467ad2ac31d51a5f84 100644
--- a/src/pregmod/birthStorm.tw
+++ b/src/pregmod/birthStorm.tw
@@ -11,7 +11,7 @@
 		<<set _others++>>
 		<<set _fathers.push("some man's")>>
 	<<elseif $activeSlave.curBabies[_cb].fatherID == -1>>
-		<<set $PC.slavesFathered++>>
+		<<set $PC.counter.slavesFathered++>>
 		<<set _PC++>>
 		<<set _fathers.push("your")>>
 	<<elseif $activeSlave.curBabies[_cb].fatherID == -2>>
diff --git a/src/pregmod/breederProposal.tw b/src/pregmod/breederProposal.tw
index 4e0011bb5cd975f97b4d892ed33d9409a9ca1c95..74544b71a800f1b362107fa0b8856d517f3b3fa8 100644
--- a/src/pregmod/breederProposal.tw
+++ b/src/pregmod/breederProposal.tw
@@ -17,7 +17,7 @@ Within the hour, you are called before <<if $eugenicsFullControl == 1>>what's le
 	<<set $propOutcome = 1>>
 	<<InitStandards>>
 	<<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */
-<<elseif $PC.birthElite > 0>>
+<<elseif $PC.counter.birthElite > 0>>
 	"Since you have carried children for our cause, we will gladly reward you by granting your proposal. We shall decide upon the standards for breeding stock and notify you shortly."
 	<<set $propOutcome = 1>>
 	<<InitStandards>>
@@ -74,7 +74,7 @@ Within the hour, you are called before <<if $eugenicsFullControl == 1>>what's le
 		</span>
 	<</if>>
 <<else>>
-	<<if $PC.dick == 1 && $PC.vagina == 1 && $failedElite > 50>>
+	<<if $PC.dick != 0 && $PC.vagina != -1 && $failedElite > 50>>
 		"We have read your proposal and propose the following: You are not well liked among us, and your medical records show you are quite capable of carrying a child. If you will carry our children, we will grant your proposal, otherwise, leave and never ask us this again."
 		<span id="result">
 		<br><<link "Agree to being used as a breeder to complete the deal">>
@@ -93,7 +93,7 @@ Within the hour, you are called before <<if $eugenicsFullControl == 1>>what's le
 			<</replace>>
 		<</link>>
 		</span>
-	<<elseif $PC.dick == 1 && $PC.vagina == 1>>
+	<<elseif $PC.dick != 0 && $PC.vagina != -1>>
 		"We have read your proposal and agree. However, we shall set the standards for what shall qualify as breeding stock, not you. Our standards will be delivered to you shortly.
 		<br><br>
 		Your medical records say you have working female sex organs, and we respect your choice to not use them. But have you considered carrying another member's child? It will be extremely lucrative for you and go a long way to furthering our objectives."
diff --git a/src/pregmod/cloningWorkaround.tw b/src/pregmod/cloningWorkaround.tw
index 999e960066827d6b5d8516437059d9e939fcd0fb..c306b063c884ea9adfc95abc2bacf8677526a52f 100644
--- a/src/pregmod/cloningWorkaround.tw
+++ b/src/pregmod/cloningWorkaround.tw
@@ -43,7 +43,7 @@
 	<div>//You have no slaves capable of acting as a surrogate.//</div>
 <</if>>
 
-<<if $PC.vagina == 1 && $PC.preg >= 0 && $PC.preg < 4 && $PC.pregType < 8 && $PC.physicalAge < 70>>
+<<if $PC.vagina != -1 && $PC.preg >= 0 && $PC.preg < 4 && $PC.pregType < 8 && $PC.physicalAge < 70>>
 	<div>
     <<if $receptrix !=  "Undecided" && $receptrix.ID == $PC.ID>>
     //Yourself//
diff --git a/src/pregmod/criminalMarkets.tw b/src/pregmod/criminalMarkets.tw
index b1a0e16f810b6cf0465a3117dada172d1a010c1f..586f4e89943494ab1324d4330bacc72b1e9b9c71 100644
--- a/src/pregmod/criminalMarkets.tw
+++ b/src/pregmod/criminalMarkets.tw
@@ -19,9 +19,9 @@ You board the transport to
 	<br><br>
 	Your destination at the end of the road is a garage, where upon your disembarking, no less than 4 heavily armored guards with electric batons at their sides come to greet you. You could almost mistake them for unmanned drones had they not start speaking. "We've been expecting you; please follow us. We house some dangerous individuals in our establishment and we need to keep you safe." You accept their advice and enter the premises.
 	<br><br>
-	You are met with a dimly lit concrete hallway as you enter, only for it to open up to a multi-floor prison that had placed its prisoners underground for the most part<<if ($PC.title == 0 || $PC.boobsBonus > 1 || $PC.butt > 1) && $seeDicks > 0>>, where you are met with a hailstorm of whistles, cheers and other catcalls<</if>>. You come to a bridge and look down to see its inhabitants, hard criminals that are coming together for a meal. You watch a fight break out at one point and an armored guard quickly step in and apply his baton to the offenders, coupled with a loud zap that silences the entire area. Around your level, you see the better stock: the attractive prisoners one would show to an interested customer.
+	You are met with a dimly lit concrete hallway as you enter, only for it to open up to a multi-floor prison that had placed its prisoners underground for the most part<<if ($PC.title == 0 || $PC.boobs >= 1000 || $PC.butt >= 3) && $seeDicks > 0>>, where you are met with a hailstorm of whistles, cheers and other catcalls<</if>>. You come to a bridge and look down to see its inhabitants, hard criminals that are coming together for a meal. You watch a fight break out at one point and an armored guard quickly step in and apply his baton to the offenders, coupled with a loud zap that silences the entire area. Around your level, you see the better stock: the attractive prisoners one would show to an interested customer.
 	<br><br>
-	You finally reach the warden's office, "Welcome <<if $PC.title == 1>>Mister<<else>>Miss<</if>> <<= PlayerName()>>, I never thought my prison could have turned to a trade such as this, but times are hard." He beckons you to the seat opposite him, "but I'm not one to complain when an opportunity such as this comes my way." He motions to his guards to bring in a select stock for your perusal. "We house some tough nuts in this establishment, but if you believe you can capitalize on these criminals, we'll be happy to have you take them off our hands." The guard returns with a convict ready to be sold.
+	You finally reach the warden's office, "Welcome <<if $PC.title == 1>>Mister<<else>>Miss<</if>> $PC.slaveSurname, I never thought my prison could have turned to a trade such as this, but times are hard." He beckons you to the seat opposite him, "but I'm not one to complain when an opportunity such as this comes my way." He motions to his guards to bring in a select stock for your perusal. "We house some tough nuts in this establishment, but if you believe you can capitalize on these criminals, we'll be happy to have you take them off our hands." The guard returns with a convict ready to be sold.
 
 <<case "white collar">> /* mixed prisoners */
 
diff --git a/src/pregmod/csec.tw b/src/pregmod/csec.tw
index ea66c370cad21bc5f12d166fb8945566df8a02d6..fa42a981d8fedb15fa0d7516bd9aabe3f74e181f 100644
--- a/src/pregmod/csec.tw
+++ b/src/pregmod/csec.tw
@@ -25,7 +25,7 @@
 		<<set _others++>>
 		<<set _fathers.push("some man's")>>
 	<<elseif $activeSlave.curBabies[_cb].fatherID == -1>>
-		<<set $PC.slavesFathered++>>
+		<<set $PC.counter.slavesFathered++>>
 		<<set _PC++>>
 		<<set _fathers.push("your")>>
 	<<elseif $activeSlave.curBabies[_cb].fatherID == -2>>
@@ -525,7 +525,7 @@ Performing a cesarean section is trivial for the remote surgery to carry out. $a
 
 <br><br>
 Since $his <<if $activeSlave.mpreg == 1>>ass<<else>>vagina<</if>> was spared from childbirth, @@.lime;it retained its tightness.@@
-<<if ($PC.medicine >= 100)>>
+<<if ($PC.skill.medicine >= 100)>>
 	Since you @@.springgreen;performed the surgery yourself,@@ and you do an artist's work, $his health is @@.green;less affected@@ by the surgery than it would have been if you'd paid some hack to do it remotely.
 	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
 		$He went into the surgery very aware that you were performing it manually.
@@ -579,7 +579,7 @@ Since $his <<if $activeSlave.mpreg == 1>>ass<<else>>vagina<</if>> was spared fro
 		Since $he is already in surgery and $his body already stretched, it would be possible to preserve $his pregnant appearance via fillable implant.
 		<<link "Do it.">>
 			<<replace "#bir">>
-				<<if $PC.medicine >= 100>><<set $activeSlave.health -= 5>><<else>><<set $activeSlave.health -= 10>><</if>>
+				<<if $PC.skill.medicine >= 100>><<set $activeSlave.health -= 5>><<else>><<set $activeSlave.health -= 10>><</if>>
 				Installation of belly implant is relatively simple procedure. Using the fact that $his body and internal organs have already adapted to pregnancy, it's possible to greatly expand the initial size of implant. $He will still look pregnant post surgery and recovery.
 				<br>
 				<<if ($activeSlave.devotion > 50)>>
diff --git a/src/pregmod/eliteTakeOverFight.tw b/src/pregmod/eliteTakeOverFight.tw
index e84481b14617b87a89e2e8aa2151294ba1d1b00b..841880527a4b56f5874237dfdbfc708e8bc9ccee 100644
--- a/src/pregmod/eliteTakeOverFight.tw
+++ b/src/pregmod/eliteTakeOverFight.tw
@@ -7,19 +7,19 @@
 	<<if $career == "mercenary">>
 		As a result of your prior experience as a mercenary you were able to successfully signal $Bodyguard.slaveName without the Elites noticing.
 		<<set $BodyguardHasSucessfullyRecivedSignal = 1>>
-	<<elseif $PC.warfare >= 100 && _roll > 20>>
+	<<elseif $PC.skill.warfare >= 100 && _roll > 20>>
 		As a result of your mastery of warfare you were able to successfully signal $Bodyguard.slaveName without the Elites noticing.
 		<<set $BodyguardHasSucessfullyRecivedSignal = 1>>
-	<<elseif $PC.warfare >= 60 && _roll > 30>>
+	<<elseif $PC.skill.warfare >= 60 && _roll > 30>>
 		As a result of your expertness of warfare you were able to successfully signal $Bodyguard.slaveName without the Elites noticing.
 		<<set $BodyguardHasSucessfullyRecivedSignal = 1>>
-	<<elseif $PC.warfare >= 30 && _roll > 40>>
+	<<elseif $PC.skill.warfare >= 30 && _roll > 40>>
 		As a result of having some skill in warfare you were able to successfully signal $Bodyguard.slaveName without the elites noticing.
 		<<set $BodyguardHasSucessfullyRecivedSignal = 1>>
-	<<elseif $PC.warfare >= 10 && _roll > 50>>
+	<<elseif $PC.skill.warfare >= 10 && _roll > 50>>
 		As a result of having a small amount of skill in warfare you were able to successfully signal $Bodyguard.slaveName without the Elites noticing.
 		<<set $BodyguardHasSucessfullyRecivedSignal = 1>>
-	<<elseif $PC.warfare < 10 && _roll > 60>>
+	<<elseif $PC.skill.warfare < 10 && _roll > 60>>
 		By blind luck and what little you remember of your lessons in warfare are were able to successfully signal $Bodyguard.slaveName without the Elites noticing.
 		<<set $BodyguardHasSucessfullyRecivedSignal = 1>>
 	<<else>>
@@ -73,13 +73,13 @@
 	/* To Hit chance */
 	<<if $PC.pregSource == -1 || $PC.pregSource == -6>> /* still woozy */
 		<<set _toHit = 56>>
-	<<elseif $PC.career == "mercenary" || $PC.warfare >= 100>>
+	<<elseif $PC.skill.career == "mercenary" || $PC.skill.warfare >= 100>>
 		<<set _toHit = 83>>
-	<<elseif $PC.warfare >= 60>>
+	<<elseif $PC.skill.warfare >= 60>>
 		<<set _toHit = 76>>
-	<<elseif $PC.warfare >= 30>>
+	<<elseif $PC.skill.warfare >= 30>>
 		<<set _toHit = 67>>
-	<<elseif $PC.warfare >= 10>>
+	<<elseif $PC.skill.warfare >= 10>>
 		<<set _toHit = 60>>
 	<<else>>
 		<<set _toHit = 56>>
@@ -121,7 +121,7 @@
 	<<if $career == "mercenary" && _hitRoll > 0>>
 		With your prior history as a mercenary, making the throw is child's play.
 		<<set _SyringeHeadShot = 1>>
-	<<elseif $PC.warfare >= 100>>
+	<<elseif $PC.skill.warfare >= 100>>
 		<<if _hitRoll > 50>>
 			As a result of your mastery of warfare you successfully made the throw.
 			<<set _SyringeHeadShot = 1>>
@@ -129,7 +129,7 @@
 			Unfortunately you miss the shot.
 			<<set _SyringeHeadShot = 0>>
 		<</if>>
-	<<elseif $PC.warfare >= 60>>
+	<<elseif $PC.skill.warfare >= 60>>
 		<<if _hitRoll > 60>>
 			As a result of your combat expertise you successfully made the throw.
 			<<set _SyringeHeadShot = 1>>
@@ -137,7 +137,7 @@
 			Unfortunately you miss the shot.
 			<<set _SyringeHeadShot = 0>>
 		<</if>>
-	<<elseif $PC.warfare >= 30>>
+	<<elseif $PC.skill.warfare >= 30>>
 		<<if _hitRoll > 70>>
 			As you have some skill, you successfully made the throw.
 			<<set _SyringeHeadShot = 1>>
@@ -145,7 +145,7 @@
 			Unfortunately you miss the shot.
 			<<set _SyringeHeadShot = 0>>
 		<</if>>
-	<<elseif $PC.warfare >= 10>>
+	<<elseif $PC.skill.warfare >= 10>>
 		<<if _hitRoll > 80>>
 			Your small amount of skill assisted you in making the throw.
 			<<set _SyringeHeadShot = 1>>
@@ -153,7 +153,7 @@
 			Unfortunately you miss the shot.
 			<<set _SyringeHeadShot = 0>>
 		<</if>>
-	<<elseif $PC.warfare < 10>>
+	<<elseif $PC.skill.warfare < 10>>
 		<<if _hitRoll > 90>>
 			By blind luck you successfully made the throw.
 			<<set _SyringeHeadShot = 1>>
@@ -168,19 +168,19 @@
 		<<if $career == "mercenary">>
 			With your prior history as a mercenary, making the throw is child's play.
 			<<set _SpentRevolverHitSyringePlunger = 1>>
-		<<elseif $PC.warfare >= 100 && random(0,100) > 50>>
+		<<elseif $PC.skill.warfare >= 100 && random(0,100) > 50>>
 			As a result of your mastery of warfare you successfully made the throw.
 			<<set _SpentRevolverHitSyringePlunger = 1>>
-		<<elseif $PC.warfare >= 60 && random(0,100) > 60>>
+		<<elseif $PC.skill.warfare >= 60 && random(0,100) > 60>>
 			As a result of your expertness of warfare you successfully made the throw.
 			<<set _SpentRevolverHitSyringePlunger = 1>>
-		<<elseif $PC.warfare >= 30 && random(0,100) > 70>>
+		<<elseif $PC.skill.warfare >= 30 && random(0,100) > 70>>
 			As you have some skill you successfully made the throw.
 		<<set _SpentRevolverHitSyringePlunger = 1>>
-		<<elseif $PC.warfare >= 10 && random(0,100) > 80>>
+		<<elseif $PC.skill.warfare >= 10 && random(0,100) > 80>>
 			Your small amount of skill assisted you in making the throw.
 			<<set _SpentRevolverHitSyringePlunger = 1>>
-		<<elseif $PC.warfare < 10 && random(0,100) > 90>>
+		<<elseif $PC.skill.warfare < 10 && random(0,100) > 90>>
 			By blind luck you successfully made the throw.
 			<<set _SpentRevolverHitSyringePlunger = 1>>
 		<<else>>
diff --git a/src/pregmod/fDick.tw b/src/pregmod/fDick.tw
index 278b880f7d3a72393072130931439334e21ac5d3..95145e42bab4b1d3f65602ed41d46d5b8927c421 100644
--- a/src/pregmod/fDick.tw
+++ b/src/pregmod/fDick.tw
@@ -9,7 +9,7 @@
 
 /*NON-AMPUTEE*/
 <<if !isAmputee($activeSlave)>>
-	You direct $activeSlave.slaveName to lie down and ready $himself as you step over to $him and align your <<if $PC.vagina == 1>>vagina<<else>>ass<</if>> with $his
+	You direct $activeSlave.slaveName to lie down and ready $himself as you step over to $him and align your <<if $PC.vagina != -1>>vagina<<else>>ass<</if>> with $his
 	<<if ($activeSlave.vaginaPiercing > 1) && ($activeSlave.dick != 0)>>
 		pierced cock-head.
 	<<elseif ($activeSlave.vaginaPiercing == 1) && ($activeSlave.dick != 0)>>
@@ -88,30 +88,30 @@
 	making it abundantly clear that you want $his cum.
 
 	<<if ($activeSlave.fetish == "mindbroken")>>
-		Like a doll, $he dumbly remains still, completely indifferent that $he's deep in $his <<= WrittenMaster()>>'s <<if $PC.vagina == 1>>pussy<<else>>butt<</if>>.
-		You start moving up and on $his shaft, continuing until you climax and lift yourself off of $him. A strand of cum slips from your <<if $PC.vagina == 1>>slit<<else>>anus<</if>>; it seems $activeSlave.slaveName came too.
+		Like a doll, $he dumbly remains still, completely indifferent that $he's deep in $his <<= WrittenMaster()>>'s <<if $PC.vagina != -1>>pussy<<else>>butt<</if>>.
+		You start moving up and on $his shaft, continuing until you climax and lift yourself off of $him. A strand of cum slips from your <<if $PC.vagina != -1>>slit<<else>>anus<</if>>; it seems $activeSlave.slaveName came too.
 		Since $he is mindbroken, $his responses to you are purely physiological and your actions have no affect on $him mentally. You leave your toy for one of your other slaves to clean and maintain.
 	<<elseif $activeSlave.devotion > 50>>
 		<<if $activeSlave.trust < -20>>
-			Having followed your instructions as quickly as $he could in fear of your wrath, $he tries $his best to please you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his obedient cock. $He timidly warns you that $he is about to cum; in response you speed up your pace and clamp down hard on $his throbbing shaft. $He squeaks lewdly, overwhelmed by your orgasmic <<if $PC.vagina == 1>>cunt<<else>>rectal<</if>> spasms, and unloads inside of you before apologizing submissively.
+			Having followed your instructions as quickly as $he could in fear of your wrath, $he tries $his best to please you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his obedient cock. $He timidly warns you that $he is about to cum; in response you speed up your pace and clamp down hard on $his throbbing shaft. $He squeaks lewdly, overwhelmed by your orgasmic <<if $PC.vagina != -1>>cunt<<else>>rectal<</if>> spasms, and unloads inside of you before apologizing submissively.
 		<<elseif $activeSlave.trust <= 20>>
-			Having followed your instructions quickly and obediently, $he tries $his best to please you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his eager cock. $He grabs your hips and warns you $he is about to cum; in response you speed up your pace, encouraging $him to impale you on $his throbbing shaft. $He squeals lewdly, overwhelmed by your orgasmic <<if $PC.vagina == 1>>cunt<<else>>rectal<</if>> spasms, and unloads spurt after spurt into you before helping you up.
+			Having followed your instructions quickly and obediently, $he tries $his best to please you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his eager cock. $He grabs your hips and warns you $he is about to cum; in response you speed up your pace, encouraging $him to impale you on $his throbbing shaft. $He squeals lewdly, overwhelmed by your orgasmic <<if $PC.vagina != -1>>cunt<<else>>rectal<</if>> spasms, and unloads spurt after spurt into you before helping you up.
 		<<else>>
-			Having followed your instructions with gusto, $he energetically pounds you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his eager cock. $He grabs your hips and desperately warns you $he can't hold out any longer; in response you speed up your pace, tipping $him over the edge and forcing $him to impale you on $his twitching shaft. $He moans loudly, overwhelmed by your orgasmic <<if $PC.vagina == 1>>cunt<<else>>rectal<</if>> spasms, and unloads spurt after spurt into you before pulling you into a post coitus embrace.
+			Having followed your instructions with gusto, $he energetically pounds you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his eager cock. $He grabs your hips and desperately warns you $he can't hold out any longer; in response you speed up your pace, tipping $him over the edge and forcing $him to impale you on $his twitching shaft. $He moans loudly, overwhelmed by your orgasmic <<if $PC.vagina != -1>>cunt<<else>>rectal<</if>> spasms, and unloads spurt after spurt into you before pulling you into a post coitus embrace.
 		<</if>>
 	<<elseif $activeSlave.devotion >= -20>>
 		<<if $activeSlave.trust < -20>>
-			Having hesitatingly followed your instructions, $he lies as still as $he can beneath you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his terrified cock. While $he is too afraid to enjoy pleasuring you, $he obediently thrusts into you. $He timidly warns you that $he is about to cum; in response you speed up your pace and clamp down hard on $his throbbing shaft. $He cries out in surprise, overwhelmed by your orgasmic <<if $PC.vagina == 1>>cunt<<else>>rectal<</if>> spasms, and blows $his load in you like a good little slave.
+			Having hesitatingly followed your instructions, $he lies as still as $he can beneath you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his terrified cock. While $he is too afraid to enjoy pleasuring you, $he obediently thrusts into you. $He timidly warns you that $he is about to cum; in response you speed up your pace and clamp down hard on $his throbbing shaft. $He cries out in surprise, overwhelmed by your orgasmic <<if $PC.vagina != -1>>cunt<<else>>rectal<</if>> spasms, and blows $his load in you like a good little slave.
 		<<elseif $activeSlave.trust <= 20>>
-			Having obediently followed your instructions, $he lies as still as $he can beneath you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his willing cock. While $he is too uncertain of $his position in the hierarchy to really enjoy $himself, $he hesitatingly thrusts into you. When $he feels $he is nearing $his limit, $he gives you proper warning that $he is about to cum; in response you speed up your pace and clamp down hard on $his throbbing shaft. $He cries out in surprise, overwhelmed by your orgasmic <<if $PC.vagina == 1>>cunt<<else>>rectal<</if>> spasms and boldness, and blows $his load in you during the confusion.
+			Having obediently followed your instructions, $he lies as still as $he can beneath you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his willing cock. While $he is too uncertain of $his position in the hierarchy to really enjoy $himself, $he hesitatingly thrusts into you. When $he feels $he is nearing $his limit, $he gives you proper warning that $he is about to cum; in response you speed up your pace and clamp down hard on $his throbbing shaft. $He cries out in surprise, overwhelmed by your orgasmic <<if $PC.vagina != -1>>cunt<<else>>rectal<</if>> spasms and boldness, and blows $his load in you during the confusion.
 		<<else>>
-			Having obediently followed your instructions, $he energetically pounds you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his eager cock. $He grabs your hips and pounds you a little too eagerly, not even slowing down as you begin to feel $him tense with orgasm. Without so much as a warning to you, $he trembles with orgasm, pumping $his load deep into your <<if $PC.vagina == 1>>cunt<<else>>rectum<</if>> and setting off your own. You glare daggers at $him as $he profusely apologizes for $his lack of restraint.
+			Having obediently followed your instructions, $he energetically pounds you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his eager cock. $He grabs your hips and pounds you a little too eagerly, not even slowing down as you begin to feel $him tense with orgasm. Without so much as a warning to you, $he trembles with orgasm, pumping $his load deep into your <<if $PC.vagina != -1>>cunt<<else>>rectum<</if>> and setting off your own. You glare daggers at $him as $he profusely apologizes for $his lack of restraint.
 		<</if>>
 	<<else>>
 		<<if $activeSlave.trust < -20>>
-			Having followed your instructions as quickly as $he could, $he lies as still as $he can beneath you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his reluctant cock. While $he is too afraid to be an active participant in pleasuring you, you make do with what $he's giving. $He timidly warns you that $he is about to cum; in response you speed up your pace and clamp down hard on $his throbbing shaft. $He cries out lewdly, overwhelmed by your orgasmic <<if $PC.vagina == 1>>cunt<<else>>rectal<</if>> spasms, and unloads inside of you despite $his fear.
+			Having followed your instructions as quickly as $he could, $he lies as still as $he can beneath you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his reluctant cock. While $he is too afraid to be an active participant in pleasuring you, you make do with what $he's giving. $He timidly warns you that $he is about to cum; in response you speed up your pace and clamp down hard on $his throbbing shaft. $He cries out lewdly, overwhelmed by your orgasmic <<if $PC.vagina != -1>>cunt<<else>>rectal<</if>> spasms, and unloads inside of you despite $his fear.
 		<<elseif $activeSlave.trust <= 20>>
-			Having followed your instructions as quickly as $he could, $he lies as still as $he can beneath you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his reluctant cock. While $he is too hateful to be an active participant in pleasuring you, you make do with what $he's got. $He cries out lewdly, overwhelmed by your orgasmic <<if $PC.vagina == 1>>cunt<<else>>rectal<</if>> spasms, and unloads deep inside you without warning. $He @@.orangered;smirks a little@@ as you glare daggers at $him.
+			Having followed your instructions as quickly as $he could, $he lies as still as $he can beneath you while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his reluctant cock. While $he is too hateful to be an active participant in pleasuring you, you make do with what $he's got. $He cries out lewdly, overwhelmed by your orgasmic <<if $PC.vagina != -1>>cunt<<else>>rectal<</if>> spasms, and unloads deep inside you without warning. $He @@.orangered;smirks a little@@ as you glare daggers at $him.
 			<<set $activeSlave.trust++>>
 		<<elseif overpowerCheck($activeSlave, $PC) < random(1,100)>>
 			Without warning, $he flips you onto your side and, still hilted,
@@ -119,12 +119,12 @@
 				repositions you onto your hands and knees while using $his _belly belly to pin you under $him.
 			<<elseif $PC.belly >= 5000>>
 				rolls you into missionary while pinning your arms and legs.
-			<<elseif $PC.boobsBonus > 1>>
-				pushes your face down into your <<if $PC.boobsImplant == 1>>fake <</if>>cleavage while pinning your arms and legs.
+			<<elseif $PC.boobs >= 1000>>
+				pushes your face down into your <<if $PC.boobsImplant > 0>>fake <</if>>cleavage while pinning your arms and legs.
 			<<else>>
 				rolls you into missionary while pinning your arms and forcing you into a mating press.
 			<</if>>
-			Such audacity takes you entirely by surprise and gives $him the edge $he needs to pull it off. $He vigorously pistons in and out of you with little regard for you<<if $PC.pregKnown == 1>> or your pregnancy<</if>>, fucking you senseless until $he has had enough and cums deep inside your <<if $PC.vagina == 1>>pussy<<else>>ass<</if>>.
+			Such audacity takes you entirely by surprise and gives $him the edge $he needs to pull it off. $He vigorously pistons in and out of you with little regard for you<<if $PC.pregKnown == 1>> or your pregnancy<</if>>, fucking you senseless until $he has had enough and cums deep inside your <<if $PC.vagina != -1>>pussy<<else>>ass<</if>>.
 			<<if canImpreg($PC, $activeSlave) && $activeSlave.fetish == "pregnancy">>
 				<<if hasAnyArms($activeSlave)>>Running a hand across<<else>>Grinding against<</if>> your firm belly, $he decides $his job is not yet done and begins reaming you once more, dead set on taking this opportunity to @@.orangered;show you your place by knocking you up with $his child.@@ $He manages to empty $his balls in your womb several more times before exhaustion kicks in, forcing $him to leave you twitching and drooling cum.
 				<<= knockMeUp($PC, 100, 0, $activeSlave.ID)>>
@@ -141,13 +141,13 @@
 			<<else>>
 				twist $his dick at an odd angle
 			<</if>>
-			until $he behaves. $He groans with a mix and disgust and pleasure while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his traitorous cock. $He might not want to bend to your will, but you have $his body wrapped around your little finger, even though it still leaves you doing all the work. $He cries out lewdly, overwhelmed by your orgasmic <<if $PC.vagina == 1>>cunt<<else>>rectal<</if>> spasms, and unloads deep inside you without warning. $He @@.orangered;smirks a little@@ as you glare daggers at $him.
+			until $he behaves. $He groans with a mix and disgust and pleasure while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his traitorous cock. $He might not want to bend to your will, but you have $his body wrapped around your little finger, even though it still leaves you doing all the work. $He cries out lewdly, overwhelmed by your orgasmic <<if $PC.vagina != -1>>cunt<<else>>rectal<</if>> spasms, and unloads deep inside you without warning. $He @@.orangered;smirks a little@@ as you glare daggers at $him.
 			<<set $activeSlave.trust++>>
 		<</if>>
 	<</if>>
 /*AMPUTEE*/
 <<else>>
-	You step over to pick up $activeSlave.slaveName, lie $him down and get $him ready. Then you align your <<if $PC.vagina == 1>> vagina <<else>> ass <</if>> with
+	You step over to pick up $activeSlave.slaveName, lie $him down and get $him ready. Then you align your <<if $PC.vagina != -1>> vagina <<else>> ass <</if>> with
 	<<if ($activeSlave.vaginaPiercing > 1) && ($activeSlave.dick != 0)>>
 		$his pierced cock-head.
 	<<elseif ($activeSlave.vaginaPiercing == 1) && ($activeSlave.dick != 0)>>
diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw
index 4ed37e7f03809d204502542d78abd50a67046f54..a7e76b610d7f3b6d45465518d65f80cd1f0b81c4 100644
--- a/src/pregmod/fFeet.tw
+++ b/src/pregmod/fFeet.tw
@@ -369,7 +369,31 @@ You call $activeSlave.slaveName to your office, telling $him to use $his _nounF
 		<</if>>
 		showing $his sexual excitement to service your cock with $his _nounF.
 	<<elseif $activeSlave.fetish == "cumslut" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-		As a devoted cumslut, $activeSlave.slaveName eagerly strokes your cock with $his _nounF, delightedly smearing your precum on $his sole<<if hasBothLegs($activeSlave)>>s<</if>>. $He <<if canSee($activeSlave)>>stares at your <<if $PC.balls >= 2>>massive balls with a ravenous gaze, <<elseif $PC.balls >= 1>>large balls with a hungry gaze, <<else>>balls with a steady gaze, <</if>><<else>>gingerly feels the weight of your <<if $PC.balls >= 2>>massive balls <<elseif $PC.balls >= 1>>large balls <<else>>balls <</if>>with $his _nounF, <</if>>shivering in anticipation.
+		As a devoted cumslut, $activeSlave.slaveName eagerly strokes your cock with $his _nounF, delightedly smearing your precum on $his sole<<if hasBothLegs($activeSlave)>>s<</if>>. $He
+		<<if canSee($activeSlave)>>
+			<<if $PC.balls >= 10>>
+				stares at your massive balls with a ravenous gaze,
+			<<elseif $PC.balls >= 5>>
+				stares at your large balls with a hungry gaze,
+			<<elseif $PC.scrotum > 0>>
+				stares at your balls with a steady gaze,
+			<<else>>
+				practically stares through you to your internal balls,
+			<</if>>
+		<<else>>
+			gingerly feels the
+			<<if $PC.balls >= 10>>
+				weight of your massive balls
+			<<elseif $PC.balls >= 5>>
+				weight of your large balls
+			<<elseif $PC.scrotum > 0>>
+				weight of your balls
+			<<else>>
+				tender skin at your base
+			<</if>>
+			with $his _nounF,
+		<</if>>
+		shivering in anticipation.
 	<<elseif $activeSlave.fetish == "humiliation" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
 		$activeSlave.slaveName slowly strokes your cock with $his _nounF, getting off on the degrading use of $his _nounF and avoiding your gaze. $He is showing an embarrassed smile<<if (skinToneLevel($activeSlave.skin) > 22)>>, and if $his skin was any lighter you would see $his<<else>> and<</if>> bright blushing cheeks.
 	<<elseif $activeSlave.fetish == "boobs" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60 && hasAnyArms($activeSlave)>>
@@ -377,9 +401,29 @@ You call $activeSlave.slaveName to your office, telling $him to use $his _nounF
 	<<elseif $activeSlave.fetish == "sadist" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
 		$activeSlave.slaveName is a sadist, and $his deft footjob toys with the boundaries of pain and pleasure. $His devoted yet belittling <<if canSee($activeSlave)>>gaze carefully watches your face<<else>>expressions are clear as $he feels<</if>> for every reaction.
 	<<elseif $activeSlave.fetish == "dom" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-		$activeSlave.slaveName is a dominant and $his skilled _nounF roughly stroke your erect cock, but $he pauses often to rub $his sole<<if hasBothLegs($activeSlave)>>s<</if>> on your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls so $he doesn't get too aggressive with $his <<= WrittenMaster()>>.
+		$activeSlave.slaveName is a dominant and $his skilled _nounF roughly stroke your erect cock, but $he pauses often to rub $his sole<<if hasBothLegs($activeSlave)>>s<</if>>
+		<<if $PC.balls >= 10>>
+			on your massive balls
+		<<elseif $PC.balls >= 5>>
+			on your large balls
+		<<elseif $PC.scrotum > 0>>
+			on your balls
+		<<else>>
+			around your hidden balls
+		<</if>>
+		so $he doesn't get too aggressive with $his <<= WrittenMaster()>>.
 	<<elseif $activeSlave.fetish == "pregnancy" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-		$activeSlave.slaveName skillfully strokes your cock with $his _nounF<<if hasAnyArms($activeSlave)>>,<<if hasBothArms($activeSlave)>> one of<</if>> $his hand<<if hasBothArms($activeSlave)>>s<</if>> roaming across $his _belly belly as $he happily services you<</if>>. $He occasionally pauses to <<if canSee($activeSlave)>>watch <<else>>feel <</if>>your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls churn with sperm, clearly lost in a pregnancy fantasy.
+		$activeSlave.slaveName skillfully strokes your cock with $his _nounF<<if hasAnyArms($activeSlave)>>,<<if hasBothArms($activeSlave)>> one of<</if>> $his hand<<if hasBothArms($activeSlave)>>s<</if>> roaming across $his _belly belly as $he happily services you<</if>>. $He occasionally pauses to <<if canSee($activeSlave)>>watch <<else>>feel <</if>>your
+		<<if $PC.balls >= 10>>
+			massive balls
+		<<elseif $PC.balls >= 5>>
+			large balls
+		<<elseif $PC.scrotum > 0>>
+			balls
+		<<else>>
+			pubic mound
+		<</if>>
+		churn with sperm, clearly lost in a pregnancy fantasy.
 	<<else>>
 		$activeSlave.slaveName skillfully strokes your cock with $his _nounF, trying $his best to bring you pleasure.
 	<</if>>
@@ -421,37 +465,37 @@ You call $activeSlave.slaveName to your office, telling $him to use $his _nounF
 
 /*PC orgasms*/
 <<if ($activeSlave.fetish == "mindbroken")>>
-	You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>>.
+	You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>>.
 <<elseif !canWalk($activeSlave)>>
 	<<if ($activeSlave.devotion < -50)>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his side with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>> as $he struggles in your grasp. $He is furious that $he is now covered in cum $he can't easily reach to clean.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his side with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>> as $he struggles in your grasp. $He is furious that $he is now covered in cum $he can't easily reach to clean.
 	<<elseif ($activeSlave.devotion < -20)>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his side with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>>. $He was startled by your orgasm and now wears a conflicted expression, but you are done using $him for now. $He is left covered in cum $he can't easily reach to clean.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his side with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>>. $He was startled by your orgasm and now wears a conflicted expression, but you are done using $him for now. $He is left covered in cum $he can't easily reach to clean.
 	<<elseif ($activeSlave.devotion <= 20)>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his side with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>> as $he sighs in nervous relief.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his side with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>> as $he sighs in nervous relief.
 	<<elseif ($activeSlave.devotion < 60 || ($activeSlave.sexualQuirk == "unflinching" && $activeSlave.devotion <= 20))>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his side with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>> as $he rises to an elbow to smile at you.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his side with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>> as $he rises to an elbow to smile at you.
 	<<else>>
 		<<if ($activeSlave.trust < -50)>>
 			$His lack of trust causes $his eyes to glaze over in fear.
 		<<else>>
-			You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his side with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>> as $he moans in pleasure.
+			You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his side with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>> as $he moans in pleasure.
 		<</if>>
 	<</if>>
 <<elseif ($activeSlave.devotion < -50)>>
-	You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>> as $he struggles in your grasp with a look of disgust.
+	You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>> as $he struggles in your grasp with a look of disgust.
 <<elseif ($activeSlave.devotion < -20)>>
-	You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>>. $He was startled by your orgasm and now wears a conflicted expression, as well as your cum, but you are done using $him for now.
+	You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>>. $He was startled by your orgasm and now wears a conflicted expression, as well as your cum, but you are done using $him for now.
 <<elseif ($activeSlave.devotion <= 20)>>
-	You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>> as $he sighs in nervous relief.
+	You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>> as $he sighs in nervous relief.
 <<elseif ($activeSlave.devotion < 60 || $activeSlave.attrXY < 16 || ($activeSlave.sexualQuirk == "unflinching" && $activeSlave.devotion <= 20))>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>>, and $he does $his best to catch your semen on $his _nounL.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>>, and $he does $his best to catch your semen on $his _nounL.
 <<else>>
 	<<if $activeSlave.fetish == "cumslut" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
 		When you eventually cum, $activeSlave.slaveName giggles in lustful joy as your hot cum coats $his _skin
-		<<if $PC.balls >= 1>>
+		<<if $PC.balls >= 5>>
 			_nounF and quickly slides from your desk to kneel in front of your pulsating cock.
-			<<if $PC.balls >= 2>>
+			<<if $PC.balls >= 9>>
 				Your massive load quickly covers $his face as $he moans and twitches in pleasure, semen dripping down $his
 				<<if $activeSlave.boobs < 300>>
 					flat chest
@@ -475,14 +519,14 @@ You call $activeSlave.slaveName to your office, telling $him to use $his _nounF
 			_nounF.
 		<</if>>
 	<<elseif $activeSlave.fetish == "humiliation" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>>, and $he whimpers as even $his _nounF used as a sex object.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>>, and $he whimpers as even $his _nounF used as a sex object.
 	<<elseif $activeSlave.fetish == "submissive" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>>, and $he gasps as $he submissively accepts your semen on $his skin.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>> _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>>, and $he gasps as $he submissively accepts your semen on $his skin.
 	<<elseif $activeSlave.fetish == "buttslut" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
 		When you eventually cum, $activeSlave.slaveName moans as your semen lands on $his _skin _nounF,
-		<<if $PC.balls >= 1>>
+		<<if $PC.balls >= 5>>
 			but quickly turns to present $his _butt ass and _hips hips as a new target.
-			<<if $PC.balls >= 2>>
+			<<if $PC.balls >= 9>>
 				Your massive load quickly covers $his _thighs ass and thighs, sticky cum dripping all the way to $his calves.
 			<<else>>
 				Your large load soaks $his _thighs ass and thighs in sticky semen, which drips down $his _legs _nounL.
@@ -491,11 +535,11 @@ You call $activeSlave.slaveName to your office, telling $him to use $his _nounF
 			but you know $he wanted to involve $his _butt butt and your cum, if your orgasm had more volume.
 		<</if>>
 	<<elseif $activeSlave.fetish == "boobs" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>>, _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>>, and $he <<if $activeSlave.boobs < 300>>pinches both $his erect nipples <<elseif $activeSlave.boobs < 500>>rubs $his hand<<if hasBothArms($activeSlave)>>s<</if>> across $his small chest <<else>>squeezes $his _boobs breasts tightly <</if>>while moaning in pleasure.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>>, _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>>, and $he <<if $activeSlave.boobs < 300>>pinches both $his erect nipples <<elseif $activeSlave.boobs < 500>>rubs $his hand<<if hasBothArms($activeSlave)>>s<</if>> across $his small chest <<else>>squeezes $his _boobs breasts tightly <</if>>while moaning in pleasure.
 	<<elseif $activeSlave.fetish == "sadist" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>>, _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>>, and $he gasps slightly and condescendingly smiles as you soil $his _nounF with semen.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>>, _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>>, and $he gasps slightly and condescendingly smiles as you soil $his _nounF with semen.
 	<<elseif $activeSlave.fetish == "dom" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>>, _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>>, and $he gasps slightly and holds your cock between $his _nounF tightly as you soil $him with semen.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>>, _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>>, and $he gasps slightly and holds your cock between $his _nounF tightly as you soil $him with semen.
 	<<elseif $activeSlave.fetish == "pregnancy" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
 		When you start to cum, $activeSlave.slaveName moves $his hand from $his belly to
 		<<if $activeSlave.vagina >= 0>>
@@ -505,16 +549,16 @@ You call $activeSlave.slaveName to your office, telling $him to use $his _nounF
 		<<else>>
 			hug $his stomach.
 		<</if>>
-		Your orgasm shoots across $his _skin _nounF<<if $PC.balls >= 2>>, _legs _nounL, and even $his _belly belly is marked with your massive load. $He runs $his hand<<if hasBothArms($activeSlave)>>s<</if>> through the cum on $his belly, massaging the semen into $his skin<<elseif $PC.balls >= 1>> and _legs _nounL<</if>>.
+		Your orgasm shoots across $his _skin _nounF<<if $PC.balls >= 9>>, _legs _nounL, and even $his _belly belly is marked with your massive load. $He runs $his hand<<if hasBothArms($activeSlave)>>s<</if>> through the cum on $his belly, massaging the semen into $his skin<<elseif $PC.balls >= 5>> and _legs _nounL<</if>>.
 	<<else>>
-		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 2>>, _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 1>> and _legs _nounL with your large load<</if>>, and $he moans softly in pleasure as $he feels your hot semen run down $his sole<<if hasBothLegs($activeSlave)>>s<</if>>.
+		You eventually cum all over $his _skin _nounF<<if $PC.balls >= 9>>, _legs _nounL, and even $his _belly belly with your massive load<<elseif $PC.balls >= 5>> and _legs _nounL with your large load<</if>>, and $he moans softly in pleasure as $he feels your hot semen run down $his sole<<if hasBothLegs($activeSlave)>>s<</if>>.
 	<</if>>
 <</if>>
 
 /*Extra 3: devoted perverted slave giggles and orgasms*/
 <<if ($activeSlave.fetish != "mindbroken" && canWalk($activeSlave) && $activeSlave.sexualQuirk == "perverted" && $activeSlave.devotion >= 60 && !($activeSlave.fetish == "cumslut" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60))>>
 	$He was getting off on the footjob, but the feeling of your cum on
-	<<if $activeSlave.fetish == "buttslut" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60 && $PC.balls >= 1>>
+	<<if $activeSlave.fetish == "buttslut" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60 && $PC.balls >= 5>>
 		$his ass and thighs sets off a strong orgasm of $his own, $his _thighs _nounL quivering as
 		<<if $activeSlave.dick > 0>>
 			<<if $activeSlave.vagina >= 0>>
@@ -555,7 +599,7 @@ You call $activeSlave.slaveName to your office, telling $him to use $his _nounF
 <</if>>
 
 <<if $activeSlave.fetish == "cumslut" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-	<<if $PC.balls > 1>>
+	<<if $PC.balls > 5>>
 		<<if $activeSlave.dick > 0>>
 			<<if cumAmount($activeSlave) > 20>>
 				$His _balls balls visibly throb as _dick dick unloads a massive amount of cum, adding $his own semen to $his body, resulting in a slave utterly plastered in spunk. $His eyes are held shut with a thick layer of cum, and judging by how <<if ($activeSlave.chastityPenis == 1)>>$his dick is still shooting cum even in a cage with no stimulation,<<else>>furiously $he is masturbating,<</if>> $he couldn't be happier.
diff --git a/src/pregmod/fMarry.tw b/src/pregmod/fMarry.tw
index 18ba42955edadc4763cc5def3c2759e737afb23c..cfa40544c8af74a3ed23983cd0d0acce7df7e2df 100644
--- a/src/pregmod/fMarry.tw
+++ b/src/pregmod/fMarry.tw
@@ -26,10 +26,10 @@
 <</if>>
 <<if SlaveStatsChecker.checkForLisp($activeSlave)>>
 	<<set _myName = lispReplace($activeSlave.slaveName)>>
-	<<set _playerSurname = lispReplace($PC.surname)>>
+	<<set _playerSurname = lispReplace($PC.slaveSurname)>>
 <<else>>
 	<<set _myName = $activeSlave.slaveName>>
-	<<set _playerSurname = $PC.surname>>
+	<<set _playerSurname = $PC.slaveSurname>>
 <</if>>
 
 You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of course, would be inappropriate, even in so enlightened a place as your arcology.)
@@ -203,7 +203,7 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of
 		<<if ($activeSlave.fetish == "submissive")>>
 			$he'll make the perfect submissive $wife for you dominate.
 		<<elseif ($activeSlave.fetish == "cumslut")>>
-			$he'll make the perfect oral $wife for your <<if $PC.dick > 0 && $PC.vagina > 0>>dick and pussy<<elseif $PC.dick > 0>>cock<<else>>pussy<</if>> to enjoy.
+			$he'll make the perfect oral $wife for your <<if $PC.dick > 0 && $PC.vagina >= 0>>dick and pussy<<elseif $PC.dick > 0>>cock<<else>>pussy<</if>> to enjoy.
 		<<elseif ($activeSlave.fetish == "humiliation")>>
 			$he'll make a hot $wife for you to parade around naked.
 		<<elseif ($activeSlave.fetish == "buttslut")>>
@@ -434,11 +434,11 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of
 		<</if>>
 	<</if>>
 	<<set $activeSlave.relationship = -3>>
-	<<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>>
+	<<if $PC.slaveSurname && $activeSlave.slaveSurname != $PC.slaveSurname>>
 		<br><br><span id="surnaming">
 		<<link "Give $him your surname">>
 			<<replace "#surnaming">>
-				<<set $activeSlave.slaveSurname = $PC.surname>>
+				<<set $activeSlave.slaveSurname = $PC.slaveSurname>>
 				You also command $assistantName to rename your new slave $wife $activeSlave.slaveName $activeSlave.slaveSurname.
 				<<if $activeSlave.fetish == "mindbroken">>
 					The new Mrs. $activeSlave.slaveSurname <<if canHear($activeSlave)>>hears<<else>>understands<</if>> this, of course, and shows no reaction. Like many things, names mean nothing to $him now.
@@ -556,46 +556,46 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of
 	<</if>>
 	$he does not reciprocate, since this marriage does not bind you.
 	<<if $assistant == 0>>
-		"The marriage protocol now requires you to <<if $PC.dick == 1>>fellate<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>," $assistantName orders $him, and $he <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>.
+		"The marriage protocol now requires you to <<if $PC.dick != 0>>fellate<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>," $assistantName orders $him, and $he <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>.
 	<<else>>
 		<<if $assistantAppearance == "monstergirl">>
-			"To consecrate the ceremony," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar begins to play with _hisA dicks.
+			"To consecrate the ceremony," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar begins to play with _hisA dicks.
 		<<elseif $assistantAppearance == "shemale">>
-			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar starts to jill off.
+			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar starts to jill off.
 		<<elseif $assistantAppearance == "amazon">>
-			"To complete this ritual," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar starts to jill off.
+			"To complete this ritual," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar starts to jill off.
 		<<elseif $assistantAppearance == "businesswoman">>
-			"To consecrate the marriage," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>fellate<<else>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar sneaks a hand down _hisA suit skirt, blushing furiously.
+			"To consecrate the marriage," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick != 0>>fellate<<else>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar sneaks a hand down _hisA suit skirt, blushing furiously.
 		<<elseif $assistantAppearance == "fairy">>
-			"To seal the deal," $assistantName concludes, "$activeSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar spreads _hisA legs while still hovering in the air and masturbates eagerly through _hisA half-worn robes.
+			"To seal the deal," $assistantName concludes, "$activeSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick != 0>>semen<<if $PC.vagina != -1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar spreads _hisA legs while still hovering in the air and masturbates eagerly through _hisA half-worn robes.
 		<<elseif $assistantAppearance == "pregnant fairy">>
-			"To seal the deal," $assistantName concludes, "$activeSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's pregnant avatar curls while still hovering in the air and masturbates eagerly around _hisA large belly.
+			"To seal the deal," $assistantName concludes, "$activeSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick != 0>>semen<<if $PC.vagina != -1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's pregnant avatar curls while still hovering in the air and masturbates eagerly around _hisA large belly.
 		<<elseif $assistantAppearance == "goddess">>
-			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now <<if $PC.dick == 1>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s female juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar looks on approvingly, cradling _hisA perpetual pregnancy.
+			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now <<if $PC.dick != 0>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s female juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar looks on approvingly, cradling _hisA perpetual pregnancy.
 		<<elseif $assistantAppearance == "hypergoddess">>
-			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now <<if $PC.dick == 1>>drink the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s female juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar looks on approvingly, cradling _hisA massive perpetual pregnancy.
+			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now <<if $PC.dick != 0>>drink the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s female juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar looks on approvingly, cradling _hisA massive perpetual pregnancy.
 		<<elseif $assistantAppearance == "loli">>
-			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina == 1>>and lick _hisP cunny.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunny<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar sneaks a hand down _hisA dress, blushing furiously.
+			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina != -1>>and lick _hisP cunny.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunny<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar sneaks a hand down _hisA dress, blushing furiously.
 		<<elseif $assistantAppearance == "preggololi">>
-			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s lovely cock<<if $PC.vagina == 1>>and eat out _hisP cunt.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunt<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar attempts to sneak a hand down _hisA dress, but is thwarted by _hisA belly. _HeA instead openly rubs _hisA crotch through the front of _hisA dress, blushing furiously.
+			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s lovely cock<<if $PC.vagina != -1>>and eat out _hisP cunt.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunt<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar attempts to sneak a hand down _hisA dress, but is thwarted by _hisA belly. _HeA instead openly rubs _hisA crotch through the front of _hisA dress, blushing furiously.
 		<<elseif $assistantAppearance == "schoolgirl">>
-			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar starts to jill off.
+			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, the rules say you should now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar starts to jill off.
 		<<elseif $assistantAppearance == "angel">>
 			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now join <<= PlayerName()>> in their bedroom and consummate this marriage." The slave <<if _reactionType == 0>>stares blankly<<else>>looks confused<</if>>. "After the wedding ends, would be the time." $assistantName says, covering _hisA face in embarrassment at the thought.
 		<<elseif $assistantAppearance == "cherub">>
-			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina == 1>>and lick _hisP pussy,<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s pussy<</if>>, in the privacy of <<= PlayerName()>>'s bedroom, of course." $assistantName hides _hisA face in _hisA hands at the thought.
+			"To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina != -1>>and lick _hisP pussy,<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s pussy<</if>>, in the privacy of <<= PlayerName()>>'s bedroom, of course." $assistantName hides _hisA face in _hisA hands at the thought.
 		<<elseif $assistantAppearance == "incubus">>
-			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Enjoying the sight, $assistantName's avatar begins to furiously stroke its shaft.
+			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Enjoying the sight, $assistantName's avatar begins to furiously stroke its shaft.
 		<<elseif $assistantAppearance == "succubus">>
-			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar pulls out a large dildo and begins ramming it into _hisA own pussy.
+			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar pulls out a large dildo and begins ramming it into _hisA own pussy.
 		<<elseif $assistantAppearance == "imp">>
-			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar hikes _hisA robe and vigorously rubs _hisA pussy.
+			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar hikes _hisA robe and vigorously rubs _hisA pussy.
 		<<elseif $assistantAppearance == "witch">>
-			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar begins to fidget at the sight, having summoned a vibrator beforehand and accidentally linked it to your pleasure.
+			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar begins to fidget at the sight, having summoned a vibrator beforehand and accidentally linked it to your pleasure.
 		<<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar begins to swell, drawing all its gained mass to its midsection. Its gravid middles splits vertically, allowing a new mass of flesh to fall to the floor, which quickly grows and reshapes itself into a spitting image of yourself. Meanwhile, the original twists into an image of $activeSlave.slaveName. $assistantName's two avatars begin copying you and $activeSlave.slaveName's actions perfectly.
+			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar begins to swell, drawing all its gained mass to its midsection. Its gravid middles splits vertically, allowing a new mass of flesh to fall to the floor, which quickly grows and reshapes itself into a spitting image of yourself. Meanwhile, the original twists into an image of $activeSlave.slaveName. $assistantName's two avatars begin copying you and $activeSlave.slaveName's actions perfectly.
 		<<else>>
-			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. With only a symbol to express _hisA approval, $assistantName is forced to content _himselfA with spinning the symbol and making it glow in time with your new slave $wife's efforts.
+			"To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, the rules say you should now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. With only a symbol to express _hisA approval, $assistantName is forced to content _himselfA with spinning the symbol and making it glow in time with your new slave $wife's efforts.
 		<</if>>
 		"Done," _heA says when you climax. "Enjoy your
 		<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
@@ -676,11 +676,11 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of
 		<</if>>
 	<</if>>
 	<<set $activeSlave.relationship = -3>>
-	<<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>>
+	<<if $PC.slaveSurname && $activeSlave.slaveSurname != $PC.slaveSurname>>
 		<br><br><span id="surnaming">
 		<<link "Give $him your surname">>
 			<<replace "#surnaming">>
-				<<set $activeSlave.slaveSurname = $PC.surname>>
+				<<set $activeSlave.slaveSurname = $PC.slaveSurname>>
 				You also command $assistantName to rename your new slave $wife $activeSlave.slaveName $activeSlave.slaveSurname.
 				<<if $activeSlave.fetish == "mindbroken">>
 					Before you get too distracted, you tell your lovely new $wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. You are uncertain if it sunk in or not.
@@ -754,7 +754,7 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of
 				//and cannot host an orgiastic ceremony//
 			<</if>>
 		<</if>>
-		<<if isFertile($activeSlave) && ($PC.dick == 1)>>
+		<<if isFertile($activeSlave) && ($PC.dick != 0)>>
 			<<if $weddingPlanned == 3>>
 				<br>&nbsp;&nbsp;&nbsp;&nbsp;
 				<<link "Impregnation ceremony">>
@@ -800,7 +800,7 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of
 				<</replace>>
 			<</link>> //This will involve the slave having sex with a very large number of citizens, and will cost <<print cashFormat(10000)>>//
 		<</if>>
-		<<if isFertile($activeSlave) && ($PC.dick == 1)>>
+		<<if isFertile($activeSlave) && ($PC.dick != 0)>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
 			<<link "Impregnation ceremony">>
 				<<replace "#result">>
diff --git a/src/pregmod/fPat.tw b/src/pregmod/fPat.tw
index e38752655c28d976753f033dfb4d1a9be24483bb..dbb6b8ff113a9e976496ae1d4d43915602d9184d 100644
--- a/src/pregmod/fPat.tw
+++ b/src/pregmod/fPat.tw
@@ -42,7 +42,7 @@ You tell $activeSlave.slaveName to
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
 		$He complies in a wifely fashion, moving $his body as $he approaches to best enflame your desire, eager to be close to the _womanP who married $him. Once $he's close, you hold $his face in your palms and gaze
 		<<if canSee($activeSlave)>>
-			deeply into $his <<= App.Desc.eyesColor($activeSlave)>>. $He finds the intense look from the _womanP $he's married to affirming, and looks down with a smile, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>.
+			deeply into $his <<= App.Desc.eyesColor($activeSlave)>>. $He finds the intense look from the _womanP $he's married to affirming, and looks down with a smile, running $his eyes over your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>.
 		<<else>>
 			upon $his face. $He finds the intense look from the _womanP $he's married to affirming, and looks down with a smile.
 		<</if>>
@@ -63,7 +63,7 @@ You tell $activeSlave.slaveName to
 	<<else>>
 		$He complies obediently. Once $he's close, you hold $his face in your palms and take a moment to gaze deeply
 		<<if canSee($activeSlave)>>
-			into $his <<= App.Desc.eyesColor($activeSlave)>>. $He finds the intense look from the _womanP $he's married to reassuring, and looks down with a slight smile, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>.
+			into $his <<= App.Desc.eyesColor($activeSlave)>>. $He finds the intense look from the _womanP $he's married to reassuring, and looks down with a slight smile, running $his eyes over your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>.
 		<<else>>
 			upon $his face. The intense look from the _womanP $he's married to is reassuring to $him, and $he looks down with a slight smile.
 		<</if>>
@@ -134,17 +134,17 @@ You walk around $him, drawing closer and slowly resting your hand on $his head.
 <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
 	$He stiffens at your touch but slowly relaxes at the sensation of your hand on $his head. You tenderly and lovingly stroke your fingers along $his scalp, enjoying the feeling of your slave's subservience. $He gently, submissively, presses $his head against your hand, like a dog. As you continue <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>kneading $his shaved scalp<<else>>stroking $his hair<</if>>, $he starts to clutch $his thighs, and if you listen you can hear subdued whimpers. $He looks up at you with adoring eyes, and relishes in the pureness of this act as $his master's pet to $his beloved <<= WrittenMaster($activeSlave)>>.
 <<elseif $activeSlave.devotion > 50>>
-	$He accepts it with devotion, leaning back into your gentle caresses. You tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's willingness to set aside $his dignity for headpats. $He leans $his body backward, pressing $himself against you. You can feel the intense heat from $his body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>. You take your time enjoying the sensation of <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>rubbing your slave's smooth scalp<<else>>gently running your fingers through your slave's hair<</if>>, and your slave smiles happily as you do. As you continue with your ministrations, you can see all of the stress present in your slave's shoulders dissipate, and you feel a good deal of your own tension start to melt away as well.
+	$He accepts it with devotion, leaning back into your gentle caresses. You tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's willingness to set aside $his dignity for headpats. $He leans $his body backward, pressing $himself against you. You can feel the intense heat from $his body against your <<if $PC.boobs >= 300>>soft breasts<<else>>manly chest<</if>>. You take your time enjoying the sensation of <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>rubbing your slave's smooth scalp<<else>>gently running your fingers through your slave's hair<</if>>, and your slave smiles happily as you do. As you continue with your ministrations, you can see all of the stress present in your slave's shoulders dissipate, and you feel a good deal of your own tension start to melt away as well.
 <<elseif $activeSlave.devotion > 20>>
-	$He willingly accepts it. As you tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's roiling emotions, and finally submission. You can still sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>$woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your touch. As you continue your ministrations, your slave slowly, and with more then a bit of uncertainty, finally starts to relax. $He looks at you with confusion and trepidation. Your eyes betray nothing however — you simply smile and press $his head into your <<if $PC.boobs == 1>>soft breasts<<else>>masculine chest<</if>>, all the while enjoying the feeling of your <<if $activeSlave.hStyle == "shaven bald" || $activeSlave.bald == 1>>hands gliding over $his smooth head<<else>>fingers gliding through $his hair<</if>>.
+	$He willingly accepts it. As you tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's roiling emotions, and finally submission. You can still sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>$woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your touch. As you continue your ministrations, your slave slowly, and with more then a bit of uncertainty, finally starts to relax. $He looks at you with confusion and trepidation. Your eyes betray nothing however — you simply smile and press $his head into your <<if $PC.boobs >= 300>>soft breasts<<else>>masculine chest<</if>>, all the while enjoying the feeling of your <<if $activeSlave.hStyle == "shaven bald" || $activeSlave.bald == 1>>hands gliding over $his smooth head<<else>>fingers gliding through $his hair<</if>>.
 <<elseif ($activeSlave.devotion < -20) && ($activeSlave.trust >= 20)>>
 	$He doesn't react to your touch, remaining as still as statue, the same defiant expression on $his face. $He still doesn't react when you brush your fingers down the side of $his head or when you <<if $activeSlave.hStyle == "shaven bald" || $activeSlave.bald == 1>>stroke $his smooth head<<else>>run your fingers through $his hair<</if>>. $He does react when you gently rest your thumb on $his lips, however, by suddenly giving you a fierce bite. Cursing, you pull your hand back and examine it — $he didn't bite deep enough to draw blood, but the area is now red and puffy. Furious, you backhand $him across the face<<if random(1,100) > 80>><<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>>, giving $him a @@.red;$activeSlave.minorInjury@@<</if>>.
 <<elseif $activeSlave.devotion >= -20 && $activeSlave.trust < -20>>
-	$He shakes at your touch fearfully. As you tenderly brush your fingers down $his unresisting head, you appreciate this expression of your slave's subservience, $his eagerness to avoid punishment making $him stiffen, $his nervousness easily apparent. You continue stroking $him, enjoying $his fear, as the physical intimacy slowly does its work. $He starts to relax, $his resistance easing as $his eyes start to close. Your hands continue to gently scratch at $his scalp, and you enjoy the sensation as well as the feeling of power over your hapless slave. Gently, slowly, so not as to spook $him, you ease your property's head back into your <<if $PC.boobs == 1>>breasts<<else>>chest<</if>>. Nevertheless your slave starts at the action, but at your insistence finally gives in to the motion, and finally relaxes against you.
+	$He shakes at your touch fearfully. As you tenderly brush your fingers down $his unresisting head, you appreciate this expression of your slave's subservience, $his eagerness to avoid punishment making $him stiffen, $his nervousness easily apparent. You continue stroking $him, enjoying $his fear, as the physical intimacy slowly does its work. $He starts to relax, $his resistance easing as $his eyes start to close. Your hands continue to gently scratch at $his scalp, and you enjoy the sensation as well as the feeling of power over your hapless slave. Gently, slowly, so not as to spook $him, you ease your property's head back into your <<if $PC.boobs >= 300>>breasts<<else>>chest<</if>>. Nevertheless your slave starts at the action, but at your insistence finally gives in to the motion, and finally relaxes against you.
 <<elseif $activeSlave.trust < -50>>
 	$He is nearly frozen with fear and does not resist as you tenderly and lovingly brush your fingers along $his head, enjoying your slave's complete and utter submission to you. In fact, $he barely reacts at all. But being an arcology owner has taught you many things, not least of which is patience. With time and a gentle hand, your slave's shoulders slowly start to relax, so slowly if you weren't paying attention you wouldn't have noticed. With a sense of satisfaction, you continue your actions, enjoying the feeling of your <<if $activeSlave.hStyle == "shaven bald" || $activeSlave.bald == 1>>hand gliding over $his smooth head<<else>>fingers combing through $his hair and gently scritching $his scalp<</if>>. You settle with this for now, knowing that any attempt at further intimacy will likely scare your slave off, but you enjoy it nonetheless.
 <<else>>
-	$He reflexively turns away from you, but you tenderly hold $his chin and maneuver $him in position with one hand and slowly but gently move your other hand to the top of $his head. Spluttering, $he leans backwards, but you catch $him by the shoulder and pin $him against you, where you feel the intense heat from $his body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>, before resuming your gentle stroking. $He desperately tries to wriggle out of your grasp, but $his struggles slowly subside as $he realizes that you're not taking this any farther. Tenderly and lovingly you stroke your fingers over $his head, appreciating the feeling of your slave's rebelliousness.
+	$He reflexively turns away from you, but you tenderly hold $his chin and maneuver $him in position with one hand and slowly but gently move your other hand to the top of $his head. Spluttering, $he leans backwards, but you catch $him by the shoulder and pin $him against you, where you feel the intense heat from $his body against your <<if $PC.boobs >= 300>>soft breasts<<else>>manly chest<</if>>, before resuming your gentle stroking. $He desperately tries to wriggle out of your grasp, but $his struggles slowly subside as $he realizes that you're not taking this any farther. Tenderly and lovingly you stroke your fingers over $his head, appreciating the feeling of your slave's rebelliousness.
 <</if>>
 
 You pat $him softly move your palm down the side of $his head with a soothing touch as you pet $him. Gently you start to run your hand down the back of $his head, softly stroking and caressing $him. You delicately lift $his head and touch your fingertips to $his chin, tenderly brushing along the line of $his mouth with your <<if $PC.title == 1>>manly<<else>>feminine<</if>> thumb.
@@ -230,7 +230,27 @@ You move your hand down to caress $his forehead, and then slide your hand along
 	<</if>>
 	$He looks at you, $his <<if canSee($activeSlave)>>lovely <<= App.Desc.eyesColor($activeSlave)>><<else>>face<</if>> practically begging you to let $him take this farther.
 <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
-	As you stroke $his head, $he reacts almost as though you're stroking $his nether regions, and begins to moan and press $himself lewdly against your <<if $PC.boobs == 1>>prominent breasts<<else>>manly chest<</if>>. $He achieves a weak orgasm before you finally stop caressing $his head; $he is your pet, after all.
+	As you stroke $his head, $he reacts almost as though you're stroking $his nether regions, and begins to moan and press $himself lewdly against your
+	<<if $PC.boobs >= 1400>>
+		giant tits.
+	<<elseif $PC.boobs >= 1200>>
+		huge breasts.
+	<<elseif $PC.boobs >= 1000>>
+		big breasts.
+	<<elseif $PC.boobs >= 800>>
+		prominent breasts.
+	<<elseif $PC.boobs >= 650>>
+		unremarkable breasts.
+	<<elseif $PC.boobs >= 500>>
+		breasts.
+	<<elseif $PC.boobs >= 300>>>>
+		tiny breasts.
+	<<elseif $PC.title > 0>>
+		manly chest.
+	<<else>>
+		non-existent breasts.
+	<</if>>
+	$He achieves a weak orgasm before you finally stop caressing $his head; $he is your pet, after all.
 	<<if ($activeSlave.accent >= 3)>>
 		$He does $his best to communicate undiminished lust with $his <<if canSee($activeSlave)>><<= App.Desc.eyesColor($activeSlave)>><<else>>facial expressions<</if>>, since $he does not speak $language well enough to express $himself.
 	<<elseif (!hasAnyArms($activeSlave)) && (!canTalk($activeSlave))>>
diff --git a/src/pregmod/fSelf.tw b/src/pregmod/fSelf.tw
index ded7360f01914971c4074e90a9436e085b525440..1cf6d7b0c8fa01e227c894639f5ddb11a1838bf7 100644
--- a/src/pregmod/fSelf.tw
+++ b/src/pregmod/fSelf.tw
@@ -14,36 +14,36 @@
 	<<set _CumSources.push(0),_CumSources.push(0),_CumSources.push(0),_CumSources.push(0),_CumSources.push(0),_CumSources.push(0)>>
 <</if>>
 
-<<if $PC.cumTap == 0>>
+<<if $PC.skill.cumTap == 0>>
 
-	Taking the hose and attaching the delectable cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the perfect sized cock quickly gets you moist<<if $PC.dick == 1>> and hard<</if>>, itching for the fake dick inside you. You know yourself well, and it fits perfectly; as you thrust it into your cunt you can't help but buck with pleasure. Just as you reach your climax, you accidentally kick the tap on. Needless to say, you are quite surprised when your "lover" orgasms and begins releasing inside you, forcing you to lose your grip on the nozzle, allowing it to free itself from you along with a torrent of cum. Panting and rubbing your tender belly, you quickly pull your clothes back on and head to clean yourself out. You can't help but notice your waist feels rather tight; it shot so much into you — that cum wasn't virile, right?
+	Taking the hose and attaching the delectable cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the perfect sized cock quickly gets you moist<<if $PC.dick != 0>> and hard<</if>>, itching for the fake dick inside you. You know yourself well, and it fits perfectly; as you thrust it into your cunt you can't help but buck with pleasure. Just as you reach your climax, you accidentally kick the tap on. Needless to say, you are quite surprised when your "lover" orgasms and begins releasing inside you, forcing you to lose your grip on the nozzle, allowing it to free itself from you along with a torrent of cum. Panting and rubbing your tender belly, you quickly pull your clothes back on and head to clean yourself out. You can't help but notice your waist feels rather tight; it shot so much into you — that cum wasn't virile, right?
 
-<<elseif $PC.cumTap < 5>>
+<<elseif $PC.skill.cumTap < 5>>
 
 	Taking the hose and attaching your favorite cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the dildo, even going as far as spurting a touch of cum across your belly, you drive it into your aching cunt. With every thrust, you jet a little more cum into your empty womb, bulging you more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your bloated belly, you stagger to your feet and make for your private bath to relax while you drain. You giggle as you imagine you belly swelling even larger, be it with child or more cum.
 
-<<elseif $PC.cumTap < 10>>
+<<elseif $PC.skill.cumTap < 10>>
 
 	Taking the hose and attaching your favorite cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the dildo, even going as far as spurting a touch of cum across your belly, you drive it into your aching cunt. With every thrust, you jet more cum into your empty womb, bulging you more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your rounded belly, you stagger to your feet and make for your private bath to relax while you drain. You giggle as you cradle your bloated middle, you practically look pregnant already!
 
-<<elseif $PC.cumTap < 15>>
+<<elseif $PC.skill.cumTap < 15>>
 
 	Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet huge bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your huge belly, you struggle to your feet and waddle towards your private bath to relax while you drain. You giggle as you cradle your round middle, anyone who saw you like this would certainly say you were heavily pregnant!
 
-<<elseif $PC.cumTap < 20>>
+<<elseif $PC.skill.cumTap < 20>>
 
 	Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet huge bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your enormous belly, you struggle to even get off the bed, eventually making it to your feet so that you may slowly stagger to the bath. You moan lewdly as the pressure within your full belly sets another orgasm coursing through your body, making it jiggle delightfully. Anyone who saw you like this would swear you were about to give birth!
 
-<<elseif $PC.cumTap < 25>>
+<<elseif $PC.skill.cumTap < 25>>
 
 	Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you struggle to even get off the bed. After minutes of effort, several attempts ruined by aftershock orgasms, you manage to get on your feet. Cradling your massive cum-belly, you gingerly waddle to your waiting bath. You look like you are ready to burst with triplets; imagine what the public would say if they saw you in this state.
 
 <<else>>
 
-	Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you roll over onto your back so that you may tease your<<if $PC.boobs > 0>> breasts,<</if>><<if $PC.dick > 0>> dick,<</if>> belly, and pussy. If anyone saw you, they would swear your were on the verge of delivering sextuplets. You made sure to schedule this block for absolute privacy, so no one should disturb you while you play with your bloated body. Once you are exhausted and drained of your contents, you head for the showers and to get a slave to clean up your bed — the same slave whose cum you just enjoyed with the hose, of course.
+	Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you roll over onto your back so that you may tease your<<if $PC.boobs >= 300>> breasts,<</if>><<if $PC.dick > 0>> dick,<</if>> belly, and pussy. If anyone saw you, they would swear your were on the verge of delivering sextuplets. You made sure to schedule this block for absolute privacy, so no one should disturb you while you play with your bloated body. Once you are exhausted and drained of your contents, you head for the showers and to get a slave to clean up your bed — the same slave whose cum you just enjoyed with the hose, of course.
 
 <</if>>
 
-<<set $PC.cumTap++>>
+<<set $PC.skill.cumTap++>>
 <<set _CumSources = _CumSources.random()>>
 <<= knockMeUp($PC, 50, 0, _CumSources)>>
diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw
index fe1f8532422d45c7cd6b6fb5115a3a961b80e9ae..a49c14148e49e086715d015c7ab4859cccc08b93 100644
--- a/src/pregmod/fSlaveFeed.tw
+++ b/src/pregmod/fSlaveFeed.tw
@@ -238,9 +238,9 @@ Next, you see to $activeSlave.slaveName.
 		<<if canImpreg($milkTap, $PC)>>
 			<<= knockMeUp($milkTap, 40, 1, -1)>>
 		<</if>>
-	<<elseif $PC.dick == 1 && $milkTap.butt > 4>>
+	<<elseif $PC.dick != 0 && $milkTap.butt > 4>>
 		Moving behind the restrained cow while teasing your erect cock, you push _him2 forward to allow you to press your dick between _his2 huge butt cheeks. Getting comfortable, you reach around to _his2 immense mammaries and begin kneading them in time to your thrusts. After some time, and several orgasms across the back of the sobbing cow, is $activeSlave.slaveName bloated with enough milk.
-	<<elseif $PC.dick == 1 && !hasAnyLegs($milkTap)>>
+	<<elseif $PC.dick != 0 && !hasAnyLegs($milkTap)>>
 		Moving behind the restrained cow while teasing your erect cock, you find a severe lack of places to stick your dick. Sighing, you hoist _his2 belted ass into the air so you may thrust between _his2 <<if $milkTap.weight > 95>>soft <</if>>thighs. Getting comfortable, you reach around to _his2 immense mammaries and begin kneading them in time to your thrusts. After some time, and several loads blown<<if $milkTap.belly >= 1500>> onto the rounded belly of the sobbing cow<</if>>, is $activeSlave.slaveName bloated with enough milk.
 	<<else>>
 		With a lack of holes to penetrate, you simply wrap your arms around $milkTap.slaveName and begin fondling and milking _his2 luscious breasts. After some time, $activeSlave.slaveName is finally bloated to your desired size.
@@ -265,9 +265,9 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		<<if $PC.dick == 0>>Donning a strap-on<<else>>Teasing your stiffening cock<</if>>, you push $him deeper into the protesting $milkTap.slaveName and mount $his <<if $activeSlave.anus == 0>>virgin <</if>> asshole, doggy style. You wrap your arms around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk. <<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You cum as you feel $his belly slowly round with milk under your molesting fingers<</if>>. Only once your weight is removed from the squirming milk balloon is $he allowed to pull $himself off of the @@.mediumorchid;resentful $milkTap.slaveName@@ and catch $his breath.<<if $activeSlave.anus == 0>> $His senses were so overwhelmed, $he didn't even notice you @@.lime;broke in $his anus.@@<</if>>
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		Teasing your stiffening cock, you push $him deeper into the protesting $milkTap.slaveName and squeeze your dick between $his huge butt cheeks. You wrap your arms around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk as you fuck $his butt. <<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You cum as you feel $his belly slowly round with milk under your molesting fingers<</if>>. Only once your weight is removed from the squirming milk balloon is $he allowed to pull $himself off of the @@.mediumorchid;resentful $milkTap.slaveName@@ and catch $his breath.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		Teasing your stiffening cock, you find a severe lack of places to stick your dick. Sighing, you hoist $his belted ass into the air, push $him deeper into the protesting $milkTap.slaveName and squeeze your dick between $his <<if $activeSlave.weight > 95>>soft <</if>>thighs. You wrap your arms around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk as you fuck $his butt. <<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You cum as you feel $his belly slowly round with milk under your molesting fingers<</if>>. Only once your weight is removed from the squirming milk balloon is $he allowed to pull $himself off of the @@.mediumorchid;resentful $milkTap.slaveName@@ and catch $his breath.
 	<<else>>
 		With a lack of holes to penetrate, you simply wrap your arms around $him and push $him deeper into the protesting $milkTap.slaveName. You bring a hand to $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and lead the other to your <<if $PC.dick == 0>>soaked pussy<<else>>stiff prick<</if>>. <<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You cum as you feel $his belly slowly round with milk under your molesting fingers<</if>>. Only once your weight is removed from the squirming milk balloon is $he allowed to pull $himself off of the @@.mediumorchid;resentful $milkTap.slaveName@@ and catch $his breath.
@@ -287,9 +287,9 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		You position the restrained $activeSlave.slaveName so that you can penetrate $his <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust into the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You cum as you feel $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $him.<<if $activeSlave.anus == 0>> $he @@.mediumorchid;hates you so much more@@ that you @@.lime;broke in $his virgin anus.@@<</if>>
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		You position the restrained $activeSlave.slaveName so that you can rub your dick between $his huge butt cheeks while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust against the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You cum as you feel $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know $he'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach, and cum soaked back, @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $him.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		You position the restrained $activeSlave.slaveName so that you can fuck $his <<if $activeSlave.weight > 95>>soft <</if>>thighs, for a lack of anything better, while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust against the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You cum as you feel $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen, cum-covered stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $him.
 	<<else>>
 		You position the restrained $activeSlave.slaveName so that you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $him while $he is forced to drink from $milkTap.slaveName's breasts, since $he lacks any better way to please you while you lavish attention on your eager cow. With every thrust against the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You cum as you feel $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $him.
@@ -312,9 +312,9 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		You order $activeSlave.slaveName to lift $his ass so you can penetrate $his <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while $he drinks from $milkTap.slaveName's breasts. With every thrust into the squirming slave, you push $him into the docile $milkTap.slaveName forcing even more milk down $his throat.
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		You order $activeSlave.slaveName to lift $his ass so you can rub your dick between $his huge butt cheeks while $he drinks from $milkTap.slaveName's breasts. With every thrust against the squirming slave, you push $him into the docile $milkTap.slaveName forcing even more milk down $his throat.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		You order $activeSlave.slaveName to lift $his ass so you can fuck $his <<if $activeSlave.weight > 95>>soft <</if>>thighs, for a lack of anything better, while $he drinks from $milkTap.slaveName's breasts. With every thrust against the squirming slave, you push $him into the docile $milkTap.slaveName forcing even more milk down $his throat.
 	<<else>>
 		You order $activeSlave.slaveName to position $himself so you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $him while $he drinks from $milkTap.slaveName's breasts, since $he lacks any better way to please you while you lavish praise on your obedient cow. With every thrust against the squirming slave, you push $him into the docile $milkTap.slaveName forcing even more milk down $his throat.
@@ -333,9 +333,9 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		You order $activeSlave.slaveName to lift $his ass so you can penetrate $his <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while $he drinks from $milkTap.slaveName's breasts. $He submissively obeys. With every thrust into the moaning slave, you push $him into the smiling $milkTap.slaveName forcing even more milk down $his throat.
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		You order $activeSlave.slaveName to lift $his ass so you can rub your dick between $his huge butt cheeks while $he drinks from $milkTap.slaveName's breasts. $He submissively obeys. With every thrust against the chaste slave, you push $him into the smiling $milkTap.slaveName forcing even more milk down $his throat.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		You order $activeSlave.slaveName to lift $his ass so you can fuck $his <<if $activeSlave.weight > 95>>soft <</if>>thighs, for a lack of anything better, while $he drinks from $milkTap.slaveName's breasts. $He submissively obeys. With every thrust against the chaste slave, you push $him into the smiling $milkTap.slaveName forcing even more milk down $his throat.
 	<<else>>
 		You order $activeSlave.slaveName to position $himself so you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $him while $he drinks from $milkTap.slaveName's breasts, since $he lacks any better way to please you while you lavish attention on your happy cow. With every thrust against the squirming slave, you push $him into the smiling $milkTap.slaveName forcing even more milk down $his throat.
@@ -357,9 +357,9 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		You know that signal, so you hilt yourself in <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> and begin fucking $him against $milkTap.slaveName's tits. With every thrust into the moaning slave, you push $him into the grinning $milkTap.slaveName forcing even more milk down $his throat.
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		You know that signal, but $he isn't allowed to get penetrated, so you settle for sticking your dick between $his huge butt cheeks and fucking $him against $milkTap.slaveName's tits. With every thrust against the moaning slave, you push $him into the grinning $milkTap.slaveName forcing even more milk down $his throat.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		You know that signal, but $he isn't allowed to get penetrated, so you settle for sticking your dick between $his <<if $activeSlave.weight > 95>>soft <</if>>thighs, for a lack of anything better, and fuck $him against $milkTap.slaveName's tits. With every thrust against the moaning slave, you push $him into the grinning $milkTap.slaveName forcing even more milk down $his throat.
 	<<else>>
 		You know that signal, but $he isn't allowed to get fucked, so you reposition $him so you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $him while $he drinks from $milkTap.slaveName's tits. With every thrust against the moaning slave, you push $him into the grinning $milkTap.slaveName forcing even more milk down $his throat.
@@ -608,14 +608,14 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		Moving behind the struggling cocksleeve while<<if $PC.dick == 0>> donning a strap-on<<else>> teasing your erect cock<</if>>, you pull $him into a comfortable position to penetrate $his <<if $activeSlave.anus == 0>>virgin <</if>>rear. Once you are firmly mounted, you reach around, bringing one hand to $his empty stomach and the other to $his exposed throat. As you thrust into $him, you force $him to choke down $milkTap.slaveName's dick, applying pressure to $his throat any time $he attempts to pull away.
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		Moving behind the struggling cocksleeve while teasing your erect cock, you pull $him into a comfortable position to rub your dick between $his huge butt cheeks. Once you are firmly slotted, you reach around, bringing one hand to $his empty stomach and the other to $his exposed throat. As you thrust against $him, you force $him to choke down $milkTap.slaveName's dick, applying pressure to $his throat any time $he attempts to pull away.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		Moving behind the struggling cocksleeve while teasing your erect cock, you pull $him into a comfortable position to fuck $his <<if $activeSlave.weight > 95>>soft <</if>>thighs, for a lack of anything better. Once you are firmly seated, you reach around, bringing one hand to $his empty stomach and the other to $his exposed throat. As you thrust against $him, you force $him to choke down $milkTap.slaveName's dick, applying pressure to $his throat any time $he attempts to pull away.
 	<<else>>
-		Moving behind the struggling cocksleeve while teasing your erect cock, you find a distinct lack of ways to use $him to get off. <<if $PC.dick == 1>>You settle for rubbing your erection against $his back<<else>>You settle for a vibrating dildo stuck deep into your pussy<</if>>, you'll need both hands to fondle your toy. Once you are positioned, you reach around, bringing one hand to $his empty stomach and the other to $his exposed throat. As you masturbate, you force $him to choke down $milkTap.slaveName's dick, applying pressure to $his throat any time $he attempts to pull away.
+		Moving behind the struggling cocksleeve while teasing your erect cock, you find a distinct lack of ways to use $him to get off. <<if $PC.dick != 0>>You settle for rubbing your erection against $his back<<else>>You settle for a vibrating dildo stuck deep into your pussy<</if>>, you'll need both hands to fondle your toy. Once you are positioned, you reach around, bringing one hand to $his empty stomach and the other to $his exposed throat. As you masturbate, you force $him to choke down $milkTap.slaveName's dick, applying pressure to $his throat any time $he attempts to pull away.
 	<</if>>
-	<<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with cum, transform into a jiggling mass, and finally grow taut under your molesting fingers and the seemingly endless supply of ejaculate from $milkTap.slaveName<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with cum, finally transforming into a jiggling mass, under your molesting fingers and the seemingly endless supply of ejaculate from $milkTap.slaveName<<else>>You cum as you feel $his belly slowly round with cum under your molesting fingers and the seemingly endless supply of ejaculate from $milkTap.slaveName<</if>>. Standing and releasing $him from $milkTap.slaveName, gives you a lovely sight of $activeSlave.slaveName's <<if $activeSlave.inflation == 3>>taut, round belly<<elseif $activeSlave.inflation == 2>>rounded, jiggling belly<<else>>distended, sloshing belly<</if>> quivering as $he comes down from $his own forced climax<<if $PC.dick == 1 && (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>, cum leaking from both ends<</if>>.
+	<<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with cum, transform into a jiggling mass, and finally grow taut under your molesting fingers and the seemingly endless supply of ejaculate from $milkTap.slaveName<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with cum, finally transforming into a jiggling mass, under your molesting fingers and the seemingly endless supply of ejaculate from $milkTap.slaveName<<else>>You cum as you feel $his belly slowly round with cum under your molesting fingers and the seemingly endless supply of ejaculate from $milkTap.slaveName<</if>>. Standing and releasing $him from $milkTap.slaveName, gives you a lovely sight of $activeSlave.slaveName's <<if $activeSlave.inflation == 3>>taut, round belly<<elseif $activeSlave.inflation == 2>>rounded, jiggling belly<<else>>distended, sloshing belly<</if>> quivering as $he comes down from $his own forced climax<<if $PC.dick != 0 && (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>, cum leaking from both ends<</if>>.
 	Both slaves @@.mediumorchid;resent@@ what you made them do and @@.gold;fear you@@ as a result.
 	<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
 	<<set $milkTap.devotion -= 5, $milkTap.trust -= 5>>
@@ -637,12 +637,12 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		<<if $PC.dick == 0>>Donning a strap-on<<else>>Stroking your stiffening cock<</if>>, you wait for the perfect moment and mount $his <<if $activeSlave.anus == 0>>virgin <</if>>asshole, doggy style.
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		Stroking your stiffening cock, you wait for the perfect moment and slip your dick between $his huge butt cheeks.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		Stroking your stiffening cock, you wait for the perfect moment, hoist up $his rear and slip your dick between $his <<if $activeSlave.weight > 95>>soft <</if>>thighs.
 	<<else>>
-		As you watch $his butt, it becomes clear just how few ways there are to use $him to get off. <<if $PC.dick == 1>>You settle for rubbing your erection against $his back<<else>>You settle for a vibrating dildo stuck deep into your pussy<</if>>, you'll need both hands to fondle your toy.
+		As you watch $his butt, it becomes clear just how few ways there are to use $him to get off. <<if $PC.dick != 0>>You settle for rubbing your erection against $his back<<else>>You settle for a vibrating dildo stuck deep into your pussy<</if>>, you'll need both hands to fondle your toy.
 	<</if>>
 	You wrap your arms around $activeSlave.slaveName's middle so you may feel $his stomach swell with ejaculate. <<if $activeSlave.inflation == 3>>You cum multiple times as you feel $his belly slowly round with cum, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You cum several times as you feel $his belly slowly round with cum, finally transforming into a jiggling mass, under your molesting fingers<<else>>You cum as you feel $his belly slowly round with cum under your molesting fingers<</if>>. Only once your weight is removed from the squirming cum balloon is $he allowed to pull off of the @@.mediumorchid;exhausted $milkTap.slaveName's@@ cock and catch $his breath.
 	<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>
@@ -662,9 +662,9 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		You position the restrained $activeSlave.slaveName so that you can penetrate $his <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while $he is forced to suck $milkTap.slaveName's dick. With every thrust into the squirming slave, you force the moaning $milkTap.slaveName's cock deep into $his throat.
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		You position the restrained $activeSlave.slaveName so that you can rub your dick between $his huge butt cheeks while $he is forced to suck $milkTap.slaveName's dick. With every thrust against the squirming slave, you force the moaning $milkTap.slaveName's cock deep into $his throat.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		You position the restrained $activeSlave.slaveName so that you can fuck $his <<if $activeSlave.weight > 95>>soft <</if>>thighs while $he is forced to suck $milkTap.slaveName's dick. With every thrust against the squirming slave, you force the moaning $milkTap.slaveName's cock deep into $his throat.
 	<<else>>
 		You position $activeSlave.slaveName so you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $him while $he is forced to suck $milkTap.slaveName's dick, since $he lacks any better way to please you. With every thrust against the squirming slave, you force the moaning $milkTap.slaveName's cock deep into $his throat.
@@ -687,9 +687,9 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		You order $activeSlave.slaveName to lift $his ass so you can penetrate $his <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while $he sucks $milkTap.slaveName's cock. With every thrust into the squirming slave, you push $milkTap.slaveName's cock deeper down $his throat, giving $milkTap.slaveName's orgasms a straight shot into the moaning slave's gullet.
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		You order $activeSlave.slaveName to position $his ass so you can rub your dick between $his huge butt cheeks while $he sucks $milkTap.slaveName's cock. With every thrust against the squirming slave, you push $milkTap.slaveName's cock deeper down $his throat, giving $milkTap.slaveName's orgasms a straight shot into the moaning slave's gullet.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		You order $activeSlave.slaveName to position $his ass so you can fuck $his <<if $activeSlave.weight > 95>>soft <</if>>thighs while $he sucks $milkTap.slaveName's cock. With every thrust against the squirming slave, you push $milkTap.slaveName's cock deeper down $his throat, giving $milkTap.slaveName's orgasms a straight shot into the moaning slave's gullet.
 	<<else>>
 		You order $activeSlave.slaveName to position $himself so you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $him while $he is forced to suck $milkTap.slaveName's dick, since $he lacks any better way to please you. With every thrust against the squirming slave, you force the moaning $milkTap.slaveName's cock deep into $his throat.
@@ -708,9 +708,9 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		You order $activeSlave.slaveName to lift $his ass so you can penetrate $his <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while $he sucks $milkTap.slaveName's cock. $He submissively obeys. With every thrust into the moaning slave, you push milkTap.slaveName's dick deeper down $his throat.
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		You order $activeSlave.slaveName to lift $his ass so you can rub your dick between $his huge butt cheeks while $he sucks $milkTap.slaveName's cock. $He submissively obeys. With every thrust against the moaning slave, you push milkTap.slaveName's dick deeper down $his throat.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		You order $activeSlave.slaveName to lift $his ass so you can fuck $his <<if $activeSlave.weight > 95>>soft <</if>>thighs while $he sucks $milkTap.slaveName's cock. $He submissively obeys. With every thrust against the moaning slave, you push milkTap.slaveName's dick deeper down $his throat.
 	<<else>>
 		You order $activeSlave.slaveName to position $himself so you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $him while $he sucks $milkTap.slaveName's cock, since $he lacks any better way to please you. $He submissively obeys. With every thrust against the moaning slave, you push milkTap.slaveName's dick deeper down $his throat.
@@ -733,9 +733,9 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif canDoAnal($activeSlave)>>
 		You know that signal, so you hilt yourself in <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> and begin spitroasting $him with $milkTap.slaveName. With every thrust into the moaning slave, every participant comes closer to their own climax.
 		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
+	<<elseif $PC.dick != 0 && $activeSlave.butt > 4>>
 		You know that signal, but $he isn't allowed to get penetrated, so you settle for sticking your dick between $his huge butt cheeks and fucking $him along with $milkTap.slaveName. With every thrust against the moaning slave, both you and $milkTap.slaveName come closer to climax.
-	<<elseif $PC.dick == 1 && hasBothLegs($activeSlave)>>
+	<<elseif $PC.dick != 0 && hasBothLegs($activeSlave)>>
 		You know that signal, but $he isn't allowed to get penetrated, so you settle for sticking your dick between $his <<if $activeSlave.weight > 95>>soft <</if>>thighs and fucking $him along with $milkTap.slaveName. With every thrust against the moaning slave, both you and $milkTap.slaveName come closer to climax.
 	<<else>>
 		You know that signal, but $he isn't allowed to get fucked, so you reposition $him so you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $him while $he deepthroats $milkTap.slaveName. With every thrust against the moaning slave, both you and $milkTap.slaveName come closer to climax.
diff --git a/src/pregmod/fSlaveSlaveDickConsummate.tw b/src/pregmod/fSlaveSlaveDickConsummate.tw
index ca74de5a8bc5ae681b072a81bca83e86b95dc13e..b01264c78161d6761532b804b079bb160628fe54 100644
--- a/src/pregmod/fSlaveSlaveDickConsummate.tw
+++ b/src/pregmod/fSlaveSlaveDickConsummate.tw
@@ -514,16 +514,16 @@ You call $slaverapistx.slaveName into the room.
 	<</if>> /* closes losing virginity */
 	$slaverapistx.slaveName happily rides $activeSlave.slaveName, who occasionally thrusts $his hips up. After a little while, when $slaverapistx.slaveName bends down to engage in passionate kissing, you come over and
 	<<if canDoAnal($slaverapistx) && $slaverapistx.anus > 0>>
-		penetrate $slaverapistx.slaveName's free asshole with your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>>. With the extra stimulus of double penetration, _he2 comes indecently hard. The two of them collapse into an exhausted, satisfied pile of slave flesh.
+		penetrate $slaverapistx.slaveName's free asshole with your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>>. With the extra stimulus of double penetration, _he2 comes indecently hard. The two of them collapse into an exhausted, satisfied pile of slave flesh.
 		<<set $slaverapistx.counter.anal++, $analTotal++>>
 		<<if canImpreg($slaverapistx, $PC)>>
 			<<= knockMeUp($slaverapistx, 5, 1, -1, 1)>>
 		<</if>>
 	<<elseif canDoVaginal($activeSlave)>>
-		penetrate $activeSlave.slaveName's free pussy with your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>>. With the double stimulus of penetrating a tight vagina and being penetrated while restrained, $he comes indecently hard. The two of them collapse into an exhausted, satisfied pile of slave flesh.
+		penetrate $activeSlave.slaveName's free pussy with your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>>. With the double stimulus of penetrating a tight vagina and being penetrated while restrained, $he comes indecently hard. The two of them collapse into an exhausted, satisfied pile of slave flesh.
 		<<= VCheck.Vaginal(1)>>
 	<<elseif canDoAnal($activeSlave)>>
-		penetrate $activeSlave.slaveName's free asshole with your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>>. With the double stimulus of penetrating a tight vagina and being penetrated while restrained, $he comes indecently hard. The two of them collapse into an exhausted, satisfied pile of slave flesh.
+		penetrate $activeSlave.slaveName's free asshole with your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>>. With the double stimulus of penetrating a tight vagina and being penetrated while restrained, $he comes indecently hard. The two of them collapse into an exhausted, satisfied pile of slave flesh.
 		<<= VCheck.Anal(1)>>
 	<<else>>
 		pull _his2 face to your crotch. All this penetration has got you horny and there are no free holes to fuck, so a little oral will have to do. It doesn't take long for all three of you to collapse into an exhausted, satisfied pile of flesh.
diff --git a/src/pregmod/forceFeeding.tw b/src/pregmod/forceFeeding.tw
index 7cc907f6afdcc654c540c66cf6992d399c47a984..6311876a9d0833c4b04d6a66f579d6f02a30005c 100644
--- a/src/pregmod/forceFeeding.tw
+++ b/src/pregmod/forceFeeding.tw
@@ -385,7 +385,7 @@ and a little jiggle from $his gut.
 				<<set _doMe = 0>>
 				$His <<if _sexType == "vaginal">>pussy<<else>>ass<</if>> is under a lot of pressure from $his swollen middle and surely would feel amazing; it's even <<if _sexType == "vaginal">>sopping wet for<<else>>eagerly winking at<</if>> you. Unfortunately, no matter how hard you try, you can't find a position that will accommodate both $his food-stuffed stomach and your own gravid middle. Sighing, you settle for $his mouth instead.
 			<<else>>
-				<<if $PC.dick == 1>>
+				<<if $PC.dick != 0>>
 					You're already rock hard so you
 				<<else>>
 					<<if _sexType == "vaginal">>
@@ -436,14 +436,14 @@ and a little jiggle from $his gut.
 				<</if>>
 				<<if _sexType == "vaginal" && _looseness >= 10>>
 					you might be able to get some decent friction now.
-					<<if $PC.dick == 1>>
+					<<if $PC.dick != 0>>
 						You can actually feel the sides of $his cunt as you slide in.
 					<<else>>
 						You slide in like it's still nothing.
 					<</if>>
 				<<elseif _looseness > 3>>
 					you should be able to get a decent fuck out of it.
-					<<if $PC.dick == 1>>
+					<<if $PC.dick != 0>>
 						You can't help but be amazed that you're getting some resistance as you slide in.
 					<<else>>
 						You slide in like it's nothing.
@@ -455,21 +455,21 @@ and a little jiggle from $his gut.
 					<<else>>
 						stretched.
 					<</if>>
-					<<if $PC.dick == 1>>
+					<<if $PC.dick != 0>>
 						$He gives some nice resistance as you squeeze into $him.
 					<<else>>
 						You squeeze in without problem.
 					<</if>>
 				<<elseif _looseness > 1>>
 					it'll feel positively tight.
-					<<if $PC.dick == 1>>
+					<<if $PC.dick != 0>>
 						$His <<if _sexType == "vaginal">>pussy<<else>>anus<</if>> feels great, you practically had to squeeze in.
 					<<else>>
 						You squeeze in with a little effort.
 					<</if>>
 				<<else>>
 					you'll barely be able to fit it in.
-					<<if $PC.dick == 1>>
+					<<if $PC.dick != 0>>
 						$His <<if _sexType == "vaginal">>vagina<<else>>rear<</if>> is so tight you can barely get it in, but with a little work, you manage to squeeze into its tight confines. $He's tighter than any <<if _sexType == "anal">>anal<</if>> virgin you've ever fucked.
 					<<else>>
 						You have to
@@ -486,10 +486,10 @@ and a little jiggle from $his gut.
 					$His own join<<if hasBothArms($activeSlave)>>s<</if>> yours atop the taut dome.
 				<</if>>
 				Every thrust into the stuffed $desc forces $his full middle to leap back before slamming into your stomach alongside a moaning groan. As you pick up the pace, $he begins to buck against you, adding even more motion to $his body. It doesn't take long for you to reach your peak and, after cumming, catch sight of $his own climax. Watching $his middle attempt to contract around the mass of slave food inside $him invigorates you for a second round.
-				<<if $PC.balls >= 3>>
+				<<if $PC.balls >= 30>>
 					By the time you're done, $he's positively massive; your copious seed flows out of $him in spurts as $his body desperately struggles to relieve the extra pressure your huge balls pumped into $him.
 				<</if>>
-				Once you are spent, <<if $PC.balls >= 3>>and $he's forced out all your cum,<</if>> you settle down beside $him and rest your head against $his belly; it almost feels like a water-filled pillow, albeit a little noisy. You and $activeSlave.slaveName doze off together for a much needed nap. You don't get much rest; $his stomach's constant groaning and burbling keeping you up, so you send $him on $his way. $He blows you one last kiss and eagerly looks forward to next time.
+				Once you are spent, <<if $PC.balls >= 30>>and $he's forced out all your cum,<</if>> you settle down beside $him and rest your head against $his belly; it almost feels like a water-filled pillow, albeit a little noisy. You and $activeSlave.slaveName doze off together for a much needed nap. You don't get much rest; $his stomach's constant groaning and burbling keeping you up, so you send $him on $his way. $He blows you one last kiss and eagerly looks forward to next time.
 				<<if _sexType == "vaginal">>
 					<<= VCheck.Vaginal(2)>>
 				<<else>>
@@ -500,7 +500,7 @@ and a little jiggle from $his gut.
 			<<set _doMe = 0>>
 		<</if>>
 		<<if _doMe == 0>>
-			<<if $PC.dick == 1>>
+			<<if $PC.dick != 0>>
 				You crawl onto the couch above $his head and lower your erect cock straight into $his waiting mouth. $He eagerly sucks you off, $his belly wobbling with every thrust into $his throat. You cum fast and hard into $him, a product of being on the edge during $his feeding;
 				<<if $activeSlave.behavioralFlaw == "gluttonous">>
 					$he takes it like nothing and resumes sucking, $his gluttony showing no bounds.
diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw
index d13e7e9fd0dc069cae56d0563bcded4608469fdb..b49fa8c7d430ef725a43cc944c26bf0c0e65565f 100644
--- a/src/pregmod/managePersonalAffairs.tw
+++ b/src/pregmod/managePersonalAffairs.tw
@@ -10,7 +10,7 @@
 <</if>>
 
 You pause for a moment from your busy day to day life to return to <<if $masterSuite != 0>>$masterSuiteName<<else>>your room<</if>> to consider some things about yourself.
-<br>You take yourself in a full length mirror. You are <<if $PC.race == "amerindian" || $PC.race == "asian" || $PC.race == "indo-aryan">>an<<else>>a<</if>> $PC.race <<if $PC.dick == 1 && $PC.vagina == 1>>futanari<<elseif $PC.dick == 1>>man<<else>>woman<</if>> with<<if $PC.markings == "freckles">> freckled<<elseif $PC.markings == "heavily freckled">> heavily freckled<</if>> <<print $PC.skin>> skin, $PC.hColor hair, $PC.eyeColor eyes and a perfect $PC.faceShape face.
+<br>You take yourself in a full length mirror. You are <<if $PC.race == "amerindian" || $PC.race == "asian" || $PC.race == "indo-aryan">>an<<else>>a<</if>> $PC.race <<if $PC.dick != 0 && $PC.vagina != -1>>futanari<<elseif $PC.dick != 0>>man<<else>>woman<</if>> with<<if $PC.markings == "freckles">> freckled<<elseif $PC.markings == "heavily freckled">> heavily freckled<</if>> <<print $PC.skin>> skin, $PC.hColor hair, $PC.eye.origColor eyes and a perfect $PC.faceShape face.
 <<if $PC.actualAge >= 65>>
 	You're @@.orange;$PC.actualAge@@ and definitely feeling it.<<if $PC.visualAge > $PC.actualAge>> You've taken measures to @@.lime;look an older $PC.visualAge,@@ though perhaps it might be time to undo it.<<elseif $PC.visualAge < $PC.actualAge>> You've taken measures to @@.lime;look a younger $PC.visualAge,@@ now if only your body agreed with your looks.<</if>>
 <<elseif $PC.actualAge >= 50>>
@@ -24,7 +24,7 @@ You pause for a moment from your busy day to day life to return to <<if $masterS
 Looking down,
 <<PlayerBoobs>>
 <<PlayerBelly>>
-<<if $PC.balls > 2 && $PC.belly < 10000>> Your pubic mound bulges outward noticeably thanks to your massive prostate.<<elseif $PC.balls == 2 && $PC.belly < 5000>> Your pubic mound swells outward slightly due to your oversized prostate.<</if>>
+<<if $PC.prostate == 2 && $PC.belly < 10000>> Your pubic mound bulges outward noticeably thanks to your massive prostate.<<elseif $PC.prostate == 1 && $PC.belly < 5000>> Your pubic mound swells outward slightly due to your oversized prostate.<</if>>
 Beneath all that,
 <<PlayerCrotch>>
 Around back,
@@ -33,51 +33,51 @@ Around back,
 <br><<if $playerSurgery == 0>>[[Visit your plastic surgeon.|Elective Surgery][$playerSurgery = 4]]<<elseif $playerSurgery == 1>>Your favorite plastic surgeon is booked solid for the next week.<<else>>Your favorite plastic surgeon is booked solid for the next $playerSurgery weeks.<</if>>
 <br>You have a number of contact lenses in various colors available.
 <br>&nbsp;&nbsp;&nbsp;
-	<<if $PC.origEye == $PC.eyeColor>>You aren't wearing contacts to change the color of your eyes.<<else>>[[Remove lenses|Manage Personal Affairs][$PC.eyeColor = $PC.origEye]]<</if>>
-	<<if $PC.origEye != "blue">>| [[Blue|Manage Personal Affairs][$PC.eyeColor = "blue"]]<</if>>
-	<<if $PC.origEye != "black">>| [[Black|Manage Personal Affairs][$PC.eyeColor = "black"]]<</if>>
-	<<if $PC.origEye != "brown">>| [[Brown|Manage Personal Affairs][$PC.eyeColor = "brown"]]<</if>>
-	<<if $PC.origEye != "green">>| [[Green|Manage Personal Affairs][$PC.eyeColor = "green"]]<</if>>
-	<<if $PC.origEye != "turquoise">>| [[Turquoise|Manage Personal Affairs][$PC.eyeColor = "turquoise"]]<</if>>
-	<<if $PC.origEye != "sky-blue">>| [[Sky-Blue|Manage Personal Affairs][$PC.eyeColor = "sky-blue"]]<</if>>
-	<<if $PC.origEye != "hazel">>| [[Hazel|Manage Personal Affairs][$PC.eyeColor = "hazel"]]<</if>>
-	<<if $PC.origEye != "pale-grey">>| [[Pale-Grey|Manage Personal Affairs][$PC.eyeColor = "pale-grey"]]<</if>>
-	<<if $PC.origEye != "white">>| [[White|Manage Personal Affairs][$PC.eyeColor = "white"]]<</if>>
-	<<if $PC.origEye != "pink">>| [[Pink|Manage Personal Affairs][$PC.eyeColor = "pink"]]<</if>>
-	<<if $PC.origEye != "amber">>| [[Amber|Manage Personal Affairs][$PC.eyeColor = "amber"]]<</if>>
-	<<if $PC.origEye != "red">>| [[Red|Manage Personal Affairs][$PC.eyeColor = "red"]]<</if>>
-	<<if $PC.origEye != "yellow">>| [[Yellow|Manage Personal Affairs][$PC.eyeColor = "yellow"]]<</if>>
-	<<if $PC.origEye != "orange">>| [[Orange|Manage Personal Affairs][$PC.eyeColor = "orange"]]<</if>>
+	<<if $PC.eye.origColor == $PC.eye.right.iris>>You aren't wearing contacts to change the color of your eyes.<<else>>[[Remove lenses|Manage Personal Affairs][$PC.eye.left.iris = $PC.eye.origColor, $PC.eye.right.iris = $PC.eye.origColor]]<</if>>
+	<<if $PC.eye.origColor != "blue">>| [[Blue|Manage Personal Affairs][$PC.eye.left.iris = "blue", $PC.eye.right.iris = "blue"]]<</if>>
+	<<if $PC.eye.origColor != "black">>| [[Black|Manage Personal Affairs][$PC.eye.left.iris = "black", $PC.eye.right.iris = "black"]]<</if>>
+	<<if $PC.eye.origColor != "brown">>| [[Brown|Manage Personal Affairs][$PC.eye.left.iris = "brown", $PC.eye.right.iris = "brown"]]<</if>>
+	<<if $PC.eye.origColor != "green">>| [[Green|Manage Personal Affairs][$PC.eye.left.iris = "green", $PC.eye.right.iris = "green"]]<</if>>
+	<<if $PC.eye.origColor != "turquoise">>| [[Turquoise|Manage Personal Affairs][$PC.eye.left.iris = "turquoise", $PC.eye.right.iris = "turquoise"]]<</if>>
+	<<if $PC.eye.origColor != "sky-blue">>| [[Sky-Blue|Manage Personal Affairs][$PC.eye.left.iris = "sky-blue", $PC.eye.right.iris = "sky-blue"]]<</if>>
+	<<if $PC.eye.origColor != "hazel">>| [[Hazel|Manage Personal Affairs][$PC.eye.left.iris = "hazel", $PC.eye.right.iris = "hazel"]]<</if>>
+	<<if $PC.eye.origColor != "pale-grey">>| [[Pale-Grey|Manage Personal Affairs][$PC.eye.left.iris = "pale-grey", $PC.eye.right.iris = "pale-grey"]]<</if>>
+	<<if $PC.eye.origColor != "white">>| [[White|Manage Personal Affairs][$PC.eye.left.iris = "white", $PC.eye.right.iris = "white"]]<</if>>
+	<<if $PC.eye.origColor != "pink">>| [[Pink|Manage Personal Affairs][$PC.eye.left.iris = "pink", $PC.eye.right.iris = "pink"]]<</if>>
+	<<if $PC.eye.origColor != "amber">>| [[Amber|Manage Personal Affairs][$PC.eye.left.iris = "amber", $PC.eye.right.iris = "amber"]]<</if>>
+	<<if $PC.eye.origColor != "red">>| [[Red|Manage Personal Affairs][$PC.eye.left.iris = "red", $PC.eye.right.iris = "red"]]<</if>>
+	<<if $PC.eye.origColor != "yellow">>| [[Yellow|Manage Personal Affairs][$PC.eye.left.iris = "yellow", $PC.eye.right.iris = "yellow"]]<</if>>
+	<<if $PC.eye.origColor != "orange">>| [[Orange|Manage Personal Affairs][$PC.eye.left.iris = "orange", $PC.eye.right.iris = "orange"]]<</if>>
 	<br>
-	<<if $PC.pupil == "circular">>You aren't wearing contacts to change the shape of your pupils.<<else>>[[Remove lenses|Manage Personal Affairs][$PC.pupil = "circular"]]<</if>>
-	<<if $PC.pupil != "catlike">>| [[Catlike|Manage Personal Affairs][$PC.pupil = "catlike"]]<</if>>
-	<<if $PC.pupil != "serpent-like">>| [[Serpent-Like|Manage Personal Affairs][$PC.pupil = "serpent-like"]]<</if>>
-	<<if $PC.pupil != "devilish">>| [[Devilish|Manage Personal Affairs][$PC.pupil = "devilish"]]<</if>>
-	<<if $PC.pupil != "demonic">>| [[Demonic|Manage Personal Affairs][$PC.pupil = "demonic"]]<</if>>
-	<<if $PC.pupil != "hypnotic">>| [[Hypnotic|Manage Personal Affairs][$PC.pupil = "hypnotic"]]<</if>>
-	<<if $PC.pupil != "heart-shaped">>| [[Heart-Shaped|Manage Personal Affairs][$PC.pupil = "heart-shaped"]]<</if>>
-	<<if $PC.pupil != "wide-eyed">>| [[Wide-Eyed|Manage Personal Affairs][$PC.pupil = "wide-eyed"]]<</if>>
-	<<if $PC.pupil != "almond-shaped">>| [[Almond-Shaped|Manage Personal Affairs][$PC.pupil = "almond-shaped"]]<</if>>
-	<<if $PC.pupil != "bright">>| [[Bright|Manage Personal Affairs][$PC.pupil = "bright"]]<</if>>
-	<<if $PC.pupil != "teary">>| [[Teary|Manage Personal Affairs][$PC.pupil = "teary"]]<</if>>
-	<<if $PC.pupil != "vacant">>| [[Vacant|Manage Personal Affairs][$PC.pupil = "vacant"]]<</if>>
-	<<if $PC.pupil != "star-shaped">>| [[Star-Shaped|Manage Personal Affairs][$PC.pupil = "star-shaped"]]<</if>>
-	<<if $PC.pupil != "goat-like">>| [[Goat-Like|Manage Personal Affairs][$PC.pupil = "goat-like"]]<</if>>
+	<<if $PC.eye.right.pupil == "circular">>You aren't wearing contacts to change the shape of your pupils.<<else>>[[Remove lenses|Manage Personal Affairs][$PC.eye.left.pupil = "circular, $PC.eye.right.pupil != "circular"<</if>>
+	<<if $PC.eye.right.pupil != "catlike">>| [[Catlike|Manage Personal Affairs][$PC.eye.left.pupil = "catlike", $PC.eye.right.pupil != "catlike"]]<</if>>
+	<<if $PC.eye.right.pupil != "serpent-like">>| [[Serpent-Like|Manage Personal Affairs][$PC.eye.left.pupil = "serpent-like", $PC.eye.right.pupil != "serpent-like"]]<</if>>
+	<<if $PC.eye.right.pupil != "devilish">>| [[Devilish|Manage Personal Affairs][$PC.eye.left.pupil = "devilish", $PC.eye.right.pupil != "devilish"]]<</if>>
+	<<if $PC.eye.right.pupil != "demonic">>| [[Demonic|Manage Personal Affairs][$PC.eye.left.pupil = "demonic", $PC.eye.right.pupil != "demonic"]]<</if>>
+	<<if $PC.eye.right.pupil != "hypnotic">>| [[Hypnotic|Manage Personal Affairs][$PC.eye.left.pupil = "hypnotic", $PC.eye.right.pupil != "hypnotic"]]<</if>>
+	<<if $PC.eye.right.pupil != "heart-shaped">>| [[Heart-Shaped|Manage Personal Affairs][$PC.eye.left.pupil = "heart-shaped", $PC.eye.right.pupil != "heart-shaped"]]<</if>>
+	<<if $PC.eye.right.pupil != "wide-eyed">>| [[Wide-Eyed|Manage Personal Affairs][$PC.eye.left.pupil = "wide-eyed", $PC.eye.right.pupil != "wide-eyed"]]<</if>>
+	<<if $PC.eye.right.pupil != "almond-shaped">>| [[Almond-Shaped|Manage Personal Affairs][$PC.eye.left.pupil = "almond-shaped", $PC.eye.right.pupil != "almond-shaped"]]<</if>>
+	<<if $PC.eye.right.pupil != "bright">>| [[Bright|Manage Personal Affairs][$PC.eye.left.pupil = "bright", $PC.eye.right.pupil != "bright"]]<</if>>
+	<<if $PC.eye.right.pupil != "teary">>| [[Teary|Manage Personal Affairs][$PC.eye.left.pupil = "teary", $PC.eye.right.pupil != "teary"]]<</if>>
+	<<if $PC.eye.right.pupil != "vacant">>| [[Vacant|Manage Personal Affairs][$PC.eye.left.pupil = "vacant", $PC.eye.right.pupil != "vacant"]]<</if>>
+	<<if $PC.eye.right.pupil != "star-shaped">>| [[Star-Shaped|Manage Personal Affairs][$PC.eye.left.pupil = "star-shaped", $PC.eye.right.pupil != "star-shaped"]]<</if>>
+	<<if $PC.eye.right.pupil != "goat-like">>| [[Goat-Like|Manage Personal Affairs][$PC.eye.left.pupil = "goat-like", $PC.eye.right.pupil != "goat-like"]]<</if>>
 	<br>
-	<<if $PC.sclerae == "white">>You aren't wearing contacts to change the color of your sclerae.<<else>>[[Remove lenses|Manage Personal Affairs][$PC.sclerae = "white"]]<</if>>
-	<<if $PC.sclerae != "blue">>| [[Blue|Manage Personal Affairs][$PC.sclerae = "blue"]]<</if>>
-	<<if $PC.sclerae != "black">>| [[Black|Manage Personal Affairs][$PC.sclerae = "black"]]<</if>>
-	<<if $PC.sclerae != "brown">>| [[Brown|Manage Personal Affairs][$PC.sclerae = "brown"]]<</if>>
-	<<if $PC.sclerae != "green">>| [[Green|Manage Personal Affairs][$PC.sclerae = "green"]]<</if>>
-	<<if $PC.sclerae != "turquoise">>| [[Turquoise|Manage Personal Affairs][$PC.sclerae = "turquoise"]]<</if>>
-	<<if $PC.sclerae != "sky-blue">>| [[Sky-Blue|Manage Personal Affairs][$PC.sclerae = "sky-blue"]]<</if>>
-	<<if $PC.sclerae != "hazel">>| [[Hazel|Manage Personal Affairs][$PC.sclerae = "hazel"]]<</if>>
-	<<if $PC.sclerae != "pale-grey">>| [[Pale-Grey|Manage Personal Affairs][$PC.sclerae = "pale-grey"]]<</if>>
-	<<if $PC.sclerae != "pink">>| [[Pink|Manage Personal Affairs][$PC.sclerae = "pink"]]<</if>>
-	<<if $PC.sclerae != "amber">>| [[Amber|Manage Personal Affairs][$PC.sclerae = "amber"]]<</if>>
-	<<if $PC.sclerae != "red">>| [[Red|Manage Personal Affairs][$PC.sclerae = "red"]]<</if>>
-	<<if $PC.sclerae != "yellow">>| [[Yellow|Manage Personal Affairs][$PC.sclerae = "yellow"]]<</if>>
-	<<if $PC.sclerae != "orange">>| [[Orange|Manage Personal Affairs][$PC.sclerae = "orange"]]<</if>>
+	<<if $PC.eye.right.sclerae == "white">>You aren't wearing contacts to change the color of your sclerae.<<else>>[[Remove lenses|Manage Personal Affairs][$PC.eye.left.sclerae = "white", $PC.eye.right.sclerae == "white"]]<</if>>
+	<<if $PC.eye.right.sclerae != "blue">>| [[Blue|Manage Personal Affairs][$PC.eye.left.sclerae = "blue", $PC.eye.right.sclerae == "blue"]]<</if>>
+	<<if $PC.eye.right.sclerae != "black">>| [[Black|Manage Personal Affairs][$PC.eye.left.sclerae = "black", $PC.eye.right.sclerae == "black"]]<</if>>
+	<<if $PC.eye.right.sclerae != "brown">>| [[Brown|Manage Personal Affairs][$PC.eye.left.sclerae = "brown", $PC.eye.right.sclerae == "brown"]]<</if>>
+	<<if $PC.eye.right.sclerae != "green">>| [[Green|Manage Personal Affairs][$PC.eye.left.sclerae = "green", $PC.eye.right.sclerae == "green"]]<</if>>
+	<<if $PC.eye.right.sclerae != "turquoise">>| [[Turquoise|Manage Personal Affairs][$PC.eye.left.sclerae = "turquoise", $PC.eye.right.sclerae == "turquoise"]]<</if>>
+	<<if $PC.eye.right.sclerae != "sky-blue">>| [[Sky-Blue|Manage Personal Affairs][$PC.eye.left.sclerae = "sky-blue", $PC.eye.right.sclerae == "sky-blue"]]<</if>>
+	<<if $PC.eye.right.sclerae != "hazel">>| [[Hazel|Manage Personal Affairs][$PC.eye.left.sclerae = "hazel", $PC.eye.right.sclerae == "hazel"]]<</if>>
+	<<if $PC.eye.right.sclerae != "pale-grey">>| [[Pale-Grey|Manage Personal Affairs][$PC.eye.left.sclerae = "pale-grey", $PC.eye.right.sclerae == "pale-grey"]]<</if>>
+	<<if $PC.eye.right.sclerae != "pink">>| [[Pink|Manage Personal Affairs][$PC.eye.left.sclerae = "pink", $PC.eye.right.sclerae == "pink"]]<</if>>
+	<<if $PC.eye.right.sclerae != "amber">>| [[Amber|Manage Personal Affairs][$PC.eye.left.sclerae = "amber", $PC.eye.right.sclerae == "amber"]]<</if>>
+	<<if $PC.eye.right.sclerae != "red">>| [[Red|Manage Personal Affairs][$PC.eye.left.sclerae = "red", $PC.eye.right.sclerae == "red"]]<</if>>
+	<<if $PC.eye.right.sclerae != "yellow">>| [[Yellow|Manage Personal Affairs][$PC.eye.left.sclerae = "yellow", $PC.eye.right.sclerae == "yellow"]]<</if>>
+	<<if $PC.eye.right.sclerae != "orange">>| [[Orange|Manage Personal Affairs][$PC.eye.left.sclerae = "orange", $PC.eye.right.sclerae == "orange"]]<</if>>
 <br>You have a selection of hair dyes available.
 <br>&nbsp;&nbsp;&nbsp;
 	<<if $PC.origHColor == $PC.hColor>>Your hair is its natural color.<<else>>[[Remove dye|Manage Personal Affairs][$PC.hColor = $PC.origHColor]]<</if>>
@@ -151,146 +151,146 @@ Around back,
 
 You ponder what skills may be useful in running your arcology.
 <br>Trading:
-<<if $PC.trading >= 100>>
+<<if $PC.skill.trading >= 100>>
 	You are a master at economics and trading.
-<<elseif $PC.trading >= 80>>
+<<elseif $PC.skill.trading >= 80>>
 	You are an expert at economics and trading.
-<<elseif $PC.trading >= 60>>
+<<elseif $PC.skill.trading >= 60>>
 	You are skilled in economics and trading.
-<<elseif $PC.trading >= 40>>
+<<elseif $PC.skill.trading >= 40>>
 	You know some things about economics and trading.
-<<elseif $PC.trading >= 20>>
+<<elseif $PC.skill.trading >= 20>>
 	You are a beginner in economics.
-<<elseif $PC.trading >= 0>>
+<<elseif $PC.skill.trading >= 0>>
 	You know only the basics of trading.
-<<elseif $PC.trading >= -20>>
+<<elseif $PC.skill.trading >= -20>>
 	You know how to haggle a little.
-<<elseif $PC.trading >= -40>>
+<<elseif $PC.skill.trading >= -40>>
 	You know how to shop around.
-<<elseif $PC.trading >= -60>>
+<<elseif $PC.skill.trading >= -60>>
 	You know not to pay sticker price.
-<<elseif $PC.trading >= -80>>
+<<elseif $PC.skill.trading >= -80>>
 	People always give you discounts, but you never save any money.
 <<else>>
 	They said it was a bear market, so where are the bears?
 <</if>>
 <br>Warfare:
-<<if $PC.warfare >= 100>>
+<<if $PC.skill.warfare >= 100>>
 	You are a master of warfare.
-<<elseif $PC.warfare >= 80>>
+<<elseif $PC.skill.warfare >= 80>>
 	You are an expert at tactics and strategy.
-<<elseif $PC.warfare >= 60>>
+<<elseif $PC.skill.warfare >= 60>>
 	You are skilled in combat.
-<<elseif $PC.warfare >= 40>>
+<<elseif $PC.skill.warfare >= 40>>
 	You know some things about combat.
-<<elseif $PC.warfare >= 20>>
+<<elseif $PC.skill.warfare >= 20>>
 	You are a beginner in tactics and strategy.
-<<elseif $PC.warfare >= 0>>
+<<elseif $PC.skill.warfare >= 0>>
 	You know only the basics of fighting.
-<<elseif $PC.warfare >= -20>>
+<<elseif $PC.skill.warfare >= -20>>
 	You know how to hold a gun.
-<<elseif $PC.warfare >= -40>>
+<<elseif $PC.skill.warfare >= -40>>
 	You know how to stab with a knife.
-<<elseif $PC.warfare >= -60>>
+<<elseif $PC.skill.warfare >= -60>>
 	Go for the throat?
-<<elseif $PC.warfare >= -80>>
+<<elseif $PC.skill.warfare >= -80>>
 	Just kick them in the balls, right?
 <<else>>
 	People like you are usually the first raped in a war.
 <</if>>
 <br>Slaving:
-<<if $PC.slaving >= 100>>
+<<if $PC.skill.slaving >= 100>>
 	You are a master slaver.
-<<elseif $PC.slaving >= 80>>
+<<elseif $PC.skill.slaving >= 80>>
 	You are an expert at enslaving.
-<<elseif $PC.slaving >= 60>>
+<<elseif $PC.skill.slaving >= 60>>
 	You are skilled in slaving.
-<<elseif $PC.slaving >= 40>>
+<<elseif $PC.skill.slaving >= 40>>
 	You know some things about getting slaves.
-<<elseif $PC.slaving >= 20>>
+<<elseif $PC.skill.slaving >= 20>>
 	You are a beginner in slaving.
-<<elseif $PC.slaving >= 0>>
+<<elseif $PC.skill.slaving >= 0>>
 	You know only the basics of slaving.
-<<elseif $PC.slaving >= -20>>
+<<elseif $PC.skill.slaving >= -20>>
 	You know how to avoid becoming a slave.
-<<elseif $PC.slaving >= -40>>
+<<elseif $PC.skill.slaving >= -40>>
 	You know to read contracts before you sign them.
-<<elseif $PC.slaving >= -60>>
+<<elseif $PC.skill.slaving >= -60>>
 	You know to be careful.
-<<elseif $PC.slaving >= -80>>
+<<elseif $PC.skill.slaving >= -80>>
 	You know better than to trust anyone.
 <<else>>
 	It would be easy to enslave you.
 <</if>>
 <br>Engineering:
-<<if $PC.engineering >= 100>>
+<<if $PC.skill.engineering >= 100>>
 	You are a master engineer.
-<<elseif $PC.engineering >= 80>>
+<<elseif $PC.skill.engineering >= 80>>
 	You are an expert at engineering.
-<<elseif $PC.engineering >= 60>>
+<<elseif $PC.skill.engineering >= 60>>
 	You are skilled in engineering.
-<<elseif $PC.engineering >= 40>>
+<<elseif $PC.skill.engineering >= 40>>
 	You know some things about engineering.
-<<elseif $PC.engineering >= 20>>
+<<elseif $PC.skill.engineering >= 20>>
 	You are a beginner in engineering.
-<<elseif $PC.engineering >= 0>>
+<<elseif $PC.skill.engineering >= 0>>
 	You know only the basics of engineering.
-<<elseif $PC.engineering >= -20>>
+<<elseif $PC.skill.engineering >= -20>>
 	You can build a gingerbread house that doesn't collapse.
-<<elseif $PC.engineering >= -40>>
+<<elseif $PC.skill.engineering >= -40>>
 	You can tie a tight knot, does that count?
-<<elseif $PC.engineering >= -60>>
+<<elseif $PC.skill.engineering >= -60>>
 	Glue is your friend; lots of it.
-<<elseif $PC.engineering >= -80>>
+<<elseif $PC.skill.engineering >= -80>>
 	You know better than to even try to build something.
 <<else>>
 	You can cook; that's sort of like building something, right?
 <</if>>
 <br>Medicine:
-<<if $PC.medicine >= 100>>
+<<if $PC.skill.medicine >= 100>>
 	You are a master surgeon.
-<<elseif $PC.medicine >= 80>>
+<<elseif $PC.skill.medicine >= 80>>
 	You are an expert at medicine and surgery.
-<<elseif $PC.medicine >= 60>>
+<<elseif $PC.skill.medicine >= 60>>
 	You are skilled in surgery.
-<<elseif $PC.medicine >= 40>>
+<<elseif $PC.skill.medicine >= 40>>
 	You know some things about medicine.
-<<elseif $PC.medicine >= 20>>
+<<elseif $PC.skill.medicine >= 20>>
 	You are a beginner in medicine.
-<<elseif $PC.medicine >= 0>>
+<<elseif $PC.skill.medicine >= 0>>
 	You know the basics of treating injuries.
-<<elseif $PC.medicine >= -20>>
+<<elseif $PC.skill.medicine >= -20>>
 	You can stop a wound from getting infected.
-<<elseif $PC.medicine >= -40>>
+<<elseif $PC.skill.medicine >= -40>>
 	Gauze is your friend. Just keep wrapping.
-<<elseif $PC.medicine >= -60>>
+<<elseif $PC.skill.medicine >= -60>>
 	You know how to apply a band-aid.
-<<elseif $PC.medicine >= -80>>
+<<elseif $PC.skill.medicine >= -80>>
 	Cure-alls are wonderful. Why aren't they sold in stores, though?
 <<else>>
 	Alcohol makes pain go away, right?
 <</if>>
 
 <br>Hacking:
-<<if $PC.hacking >= 100>>
+<<if $PC.skill.hacking >= 100>>
 	You are a master of hacking.
-<<elseif $PC.hacking >= 80>>
+<<elseif $PC.skill.hacking >= 80>>
 	You are an expert at hacking.
-<<elseif $PC.hacking >= 60>>
+<<elseif $PC.skill.hacking >= 60>>
 	You are skilled in hacking.
-<<elseif $PC.hacking >= 40>>
+<<elseif $PC.skill.hacking >= 40>>
 	You know some things about hacking.
-<<elseif $PC.hacking >= 20>>
+<<elseif $PC.skill.hacking >= 20>>
 	You are a beginner in hacking.
-<<elseif $PC.hacking >= 0>>
+<<elseif $PC.skill.hacking >= 0>>
 	You know only the basics of hacking.
-<<elseif $PC.hacking >= -20>>
+<<elseif $PC.skill.hacking >= -20>>
 	You know how to click a mouse.
-<<elseif $PC.hacking >= -40>>
+<<elseif $PC.skill.hacking >= -40>>
 	Enter does something?
-<<elseif $PC.hacking >= -60>>
+<<elseif $PC.skill.hacking >= -60>>
 	Where is the "any" key?
-<<elseif $PC.hacking >= -80>>
+<<elseif $PC.skill.hacking >= -80>>
 	You can push the power button, good job.
 <<else>>
 	This black box thingy is magical.
@@ -333,11 +333,11 @@ On formal occasions, you are announced as $PCTitle. By slaves, however, you pref
 <span id="nameResult">
 <<link "Rename yourself">>
 	<<replace "#nameResult">>
-	New name: <<textbox "_PCNamet" $PC.name>>
+	New name: <<textbox "_PCNamet" $PC.slaveName>>
 		<<link "Apply">>
 			<<run repX(-500, "event")>>
 			<<replace "#nameResult">>
-				<<set $PC.name = _PCNamet>>
+				<<set $PC.slaveName = _PCNamet>>
 				You will now be known as <<= PlayerName()>>.
 			<</replace>>
 		<</link>>
@@ -384,7 +384,7 @@ On formal occasions, you are announced as $PCTitle. By slaves, however, you pref
 	<</if>>
 <</if>>
 
-<<if $PC.vagina == 1>>
+<<if $PC.vagina != -1>>
 <br><br>
 __Contraceptives and Fertility__
 <br>
@@ -407,54 +407,54 @@ __Contraceptives and Fertility__
 <</if>>
 </span>
 
-<<if $PC.births > 0>>
+<<if $PC.counter.birthsTotal > 0>>
 <br>
 <br>
 
 
 In total, you have given birth to:
-<<if $PC.birthElite > 0>>
-	<br><<print $PC.birthElite>> bab<<if $PC.birthElite > 1>>ies<<else>>y<</if>> for the Societal Elite.
+<<if $PC.counter.birthElite > 0>>
+	<br><<print $PC.counter.birthElite>> bab<<if $PC.counter.birthElite > 1>>ies<<else>>y<</if>> for the Societal Elite.
 <</if>>
-<<if $PC.birthMaster > 0>>
-	<br><<print $PC.birthMaster>> bab<<if $PC.birthMaster > 1>>ies<<else>>y<</if>> for your former Master.
+<<if $PC.counter.birthMaster > 0>>
+	<br><<print $PC.counter.birthMaster>> bab<<if $PC.counter.birthMaster > 1>>ies<<else>>y<</if>> for your former Master.
 <</if>>
-<<if $PC.birthClient > 0>>
-	<br><<print $PC.birthClient>> bab<<if $PC.birthClient > 1>>ies<<else>>y<</if>> from clients you've slept with.
+<<if $PC.counter.birthClient > 0>>
+	<br><<print $PC.counter.birthClient>> bab<<if $PC.counter.birthClient > 1>>ies<<else>>y<</if>> from clients you've slept with.
 <</if>>
-<<if $PC.birthDegenerate > 0>>
-	<br><<print $PC.birthDegenerate>> bastard<<if $PC.birthDegenerate > 1>>s<</if>> from getting fucked by slaves.
+<<if $PC.counter.birthDegenerate > 0>>
+	<br><<print $PC.counter.birthDegenerate>> bastard<<if $PC.counter.birthDegenerate > 1>>s<</if>> from getting fucked by slaves.
 <</if>>
-<<if $PC.birthArcOwner > 0>>
-	<br><<print $PC.birthArcOwner>> bab<<if $PC.birthArcOwner > 1>>ies<<else>>y<</if>> from your time with male arcology owners.
+<<if $PC.counter.birthArcOwner > 0>>
+	<br><<print $PC.counter.birthArcOwner>> bab<<if $PC.counter.birthArcOwner > 1>>ies<<else>>y<</if>> from your time with male arcology owners.
 <</if>>
-<<if $PC.birthCitizen > 0>>
-	<br><<print $PC.birthCitizen>> bab<<if $PC.birthCitizen > 1>>ies<<else>>y<</if>> from sex with arcology citizens.
+<<if $PC.counter.birthCitizen > 0>>
+	<br><<print $PC.counter.birthCitizen>> bab<<if $PC.counter.birthCitizen > 1>>ies<<else>>y<</if>> from sex with arcology citizens.
 <</if>>
-<<if $PC.birthOther > 0>>
-	<br><<print $PC.birthOther>> bab<<if $PC.birthOther > 1>>ies<<else>>y<</if>> from sources you can't quite recall.
+<<if $PC.counter.birthOther > 0>>
+	<br><<print $PC.counter.birthOther>> bab<<if $PC.counter.birthOther > 1>>ies<<else>>y<</if>> from sources you can't quite recall.
 <</if>>
-<<if $PC.birthSelf > 0>>
-	<br><<print $PC.birthSelf>> bab<<if $PC.birthSelf > 1>>ies<<else>>y<</if>> that <<if $PC.birthSelf > 1>>are<<else>>is<</if>> literally all you.
+<<if $PC.counter.birthSelf > 0>>
+	<br><<print $PC.counter.birthSelf>> bab<<if $PC.counter.birthSelf > 1>>ies<<else>>y<</if>> that <<if $PC.counter.birthSelf > 1>>are<<else>>is<</if>> literally all you.
 <</if>>
-<<if $PC.birthLab > 0>>
-	<br><<print $PC.birthLab>> bab<<if $PC.birthLab > 1>>ies<<else>>y<</if>> specially designed in the lab.
+<<if $PC.counter.birthLab > 0>>
+	<br><<print $PC.counter.birthLab>> bab<<if $PC.counter.birthLab > 1>>ies<<else>>y<</if>> specially designed in the lab.
 <</if>>
 <</if>>
-<<if $PC.slavesKnockedUp > 0>>
+<<if $PC.counter.slavesKnockedUp > 0>>
 	<br>
-	<<if $PC.dick == 1>>
-		You've knocked up <<print num($PC.slavesKnockedUp)>> fertile slave girl<<if $PC.slavesKnockedUp > 1>>s<</if>><<if $PC.slavesFathered > 0>> and fathered <<print num($PC.slavesFathered)>> new slave<<if $PC.slavesFathered > 1>>s<</if>><</if>> as an arcology owner so far.
+	<<if $PC.dick > 0>>
+		You've knocked up <<print num($PC.counter.slavesKnockedUp)>> fertile slave girl<<if $PC.counter.slavesKnockedUp > 1>>s<</if>><<if $PC.counter.slavesFathered > 0>> and fathered <<print num($PC.counter.slavesFathered)>> new slave<<if $PC.counter.slavesFathered > 1>>s<</if>><</if>> as an arcology owner so far.
 	<<else>>
-		Before your sex change, you knocked up <<print num($PC.slavesKnockedUp)>> fertile slave girl<<if $PC.slavesKnockedUp > 1>>s<</if>><<if $PC.slavesFathered > 0>> and fathered <<print num($PC.slavesFathered)>> new slave<<if $PC.slavesFathered > 1>>s<</if>><</if>>.
+		Before your sex change, you knocked up <<print num($PC.counter.slavesKnockedUp)>> fertile slave girl<<if $PC.counter.slavesKnockedUp > 1>>s<</if>><<if $PC.counter.slavesFathered > 0>> and fathered <<print num($PC.counter.slavesFathered)>> new slave<<if $PC.counter.slavesFathered > 1>>s<</if>><</if>>.
 	<</if>>
 <<else>>
-	<<if $PC.slavesFathered > 0>>
+	<<if $PC.counter.slavesFathered > 0>>
 		<br>
-		<<if $PC.dick == 1>>
-			You've fathered <<print num($PC.slavesFathered)>> new slave<<if $PC.slavesFathered > 1>>s<</if>> as an arcology owner so far.
+		<<if $PC.dick != 0>>
+			You've fathered <<print num($PC.counter.slavesFathered)>> new slave<<if $PC.counter.slavesFathered > 1>>s<</if>> as an arcology owner so far.
 		<<else>>
-			Before your sex change, you fathered <<print num($PC.slavesFathered)>> new slave<<if $PC.slavesFathered > 1>>s<</if>>.
+			Before your sex change, you fathered <<print num($PC.counter.slavesFathered)>> new slave<<if $PC.counter.slavesFathered > 1>>s<</if>>.
 		<</if>>
 	<</if>>
 <</if>>
@@ -496,7 +496,7 @@ In total, you have given birth to:
 <<if ($PC.preg > 0 && $pregnancyMonitoringUpgrade == 1)>>
 	<br>[[Inspect pregnancy|Analyze PC Pregnancy]]
 <</if>>
-<<if $PC.preg >= 0 && $PC.vagina == 1>>
+<<if $PC.preg >= 0 && $PC.ovaries == 1>>
 	<br>[[Harvest and implant an egg|Surrogacy Workaround][$donatrix = $PC, $impregnatrix = "Undecided", $receptrix = "Undecided", $nextLink = "Manage Personal Affairs"]]
 <</if>>
 
@@ -507,7 +507,7 @@ In total, you have given birth to:
 		[[List your womb as available|Manage Personal Affairs][$playerBred = 1, $playerBredTube = 0]] | [[Sign up for artificial insemination|Manage Personal Affairs][$playerBred = 1, $playerBredTube = 1]]
 	<<else>>
 		Your womb is dedicated to carrying the Societal Elites' children.
-		<<if $PC.birthElite > 0>>
+		<<if $PC.counter.birthElite > 0>>
 			[[List your womb as unavailable|Manage Personal Affairs][$playerBred = 0]]
 		<<else>>
 			// You must bear at least one child for the Societal Elite before removing yourself from the breeding program. //
@@ -518,7 +518,7 @@ In total, you have given birth to:
 <<if $PC.preg == 0 && $PC.pregWeek == 0>>
 
 	<<if $dairyPiping == 1 && ($cumSlaves > 0 || $arcologies[0].FSPastoralistLaw == 1)>>
-		<<if $PC.cumTap == 0>>
+		<<if $PC.skill.cumTap == 0>>
 			<br><br>
 			The tap connected to $dairyName has a variety of attachments, one of which being a very tantalizing dick-shaped nozzle. It looks like it would be a perfect fit for you, if you were curious, that is.
 			<br><br>[[No one is looking...|FSelf]]
@@ -529,8 +529,8 @@ In total, you have given birth to:
 			<br><<link "You only want to get pregnant." "Manage Personal Affairs">><<set $PC.preg = 1, $PC.pregWeek = 1, $PC.pregSource = 0, $PC.pregKnown = 1>><<set $PC.pregType = setPregType($PC)>><<set WombImpregnate($PC, $PC.pregType, 0, 1)>><</link>>
 		<</if>>
 	<</if>>
-	<<if $PC.vagina == 1 && $PC.dick == 1>>
-		<<if $PC.birthSelf > 0>>
+	<<if $PC.vagina >= 1 && $PC.dick != 0>>
+		<<if $PC.counter.birthSelf > 0>>
 			<br><br>
 			Who better to impregnate you than you?
 			<br>[[Impregnate yourself.|MpregSelf]]
@@ -545,47 +545,47 @@ In total, you have given birth to:
 
 <<else>> /* no vagina */
 
-<<if $PC.births > 0>>
+<<if $PC.counter.births > 0>>
 	<br><br>
 	Before your sex change, you had given birth to:
-	<<if $PC.birthElite > 0>>
-		<br><<print num($PC.birthElite)>> bab<<if $PC.birthElite > 1>>ies<<else>>y<</if>> for the Societal Elite.
+	<<if $PC.counter.birthElite > 0>>
+		<br><<print num($PC.counter.birthElite)>> bab<<if $PC.counter.birthElite > 1>>ies<<else>>y<</if>> for the Societal Elite.
 	<</if>>
-	<<if $PC.birthMaster > 0>>
-		<br><<print num($PC.birthMaster)>> bab<<if $PC.birthMaster > 1>>ies<<else>>y<</if>> for your former Master.
+	<<if $PC.counter.birthMaster > 0>>
+		<br><<print num($PC.counter.birthMaster)>> bab<<if $PC.counter.birthMaster > 1>>ies<<else>>y<</if>> for your former Master.
 	<</if>>
-	<<if $PC.birthClient > 0>>
-		<br><<print num($PC.birthOther)>> bab<<if $PC.birthOther > 1>>ies<<else>>y<</if>> from clients you've slept with.
+	<<if $PC.counter.birthClient > 0>>
+		<br><<print num($PC.counter.birthClient)>> bab<<if $PC.counter.birthClient > 1>>ies<<else>>y<</if>> from clients you've slept with.
 	<</if>>
-	<<if $PC.birthDegenerate > 0>>
-		<br><<print num($PC.birthDegenerate)>> bastard<<if $PC.birthDegenerate > 1>>s<</if>> from getting fucked by slaves.
+	<<if $PC.counter.birthDegenerate > 0>>
+		<br><<print num($PC.counter.birthDegenerate)>> bastard<<if $PC.counter.birthDegenerate > 1>>s<</if>> from getting fucked by slaves.
 	<</if>>
-	<<if $PC.birthArcOwner > 0>>
-		<br><<print num($PC.birthArcOwner)>> bab<<if $PC.birthArcOwner > 1>>ies<<else>>y<</if>> from your time with male arcology owners.
+	<<if $PC.counter.birthArcOwner > 0>>
+		<br><<print num($PC.counter.birthArcOwner)>> bab<<if $PC.counter.birthArcOwner > 1>>ies<<else>>y<</if>> from your time with male arcology owners.
 	<</if>>
-	<<if $PC.birthCitizen > 0>>
-		<br><<print num($PC.birthCitizen)>> bab<<if $PC.birthCitizen > 1>>ies<<else>>y<</if>> from sex with arcology citizens.
+	<<if $PC.counter.birthCitizen > 0>>
+		<br><<print num($PC.counter.birthCitizen)>> bab<<if $PC.counter.birthCitizen > 1>>ies<<else>>y<</if>> from sex with arcology citizens.
 	<</if>>
-	<<if $PC.birthFutaSis > 0>>
-		<br><<print num($PC.birthFutaSis)>> bab<<if $PC.birthFutaSis > 1>>ies<<else>>y<</if>> conceived during orgies with the Futanari Sisters.
+	<<if $PC.counter.birthFutaSis > 0>>
+		<br><<print num($PC.counter.birthFutaSis)>> bab<<if $PC.counter.birthFutaSis > 1>>ies<<else>>y<</if>> conceived during orgies with the Futanari Sisters.
 	<</if>>
-	<<if $PC.birthOther > 0>>
-		<br><<print num($PC.birthOther)>> bab<<if $PC.birthOther > 1>>ies<<else>>y<</if>> from sources you can't quite recall.
+	<<if $PC.counter.birthOther > 0>>
+		<br><<print num($PC.counter.birthOther)>> bab<<if $PC.counter.birthOther > 1>>ies<<else>>y<</if>> from sources you can't quite recall.
 	<</if>>
-	<<if $PC.birthSelf > 0>>
-		<br><<print num($PC.birthSelf)>> bab<<if $PC.birthSelf > 1>>ies<<else>>y<</if>> that <<if $PC.birthSelf > 1>>were<<else>>was<</if>> literally all you.
+	<<if $PC.counter.birthSelf > 0>>
+		<br><<print num($PC.counter.birthSelf)>> bab<<if $PC.counter.birthSelf > 1>>ies<<else>>y<</if>> that <<if $PC.counter.birthSelf > 1>>were<<else>>was<</if>> literally all you.
 	<</if>>
-	<<if $PC.birthLab > 0>>
-		<br><<print $PC.birthLab>> bab<<if $PC.birthLab > 1>>ies<<else>>y<</if>> specially designed in the lab.
+	<<if $PC.counter.birthLab > 0>>
+		<br><<print $PC.counter.birthLab>> bab<<if $PC.counter.birthLab > 1>>ies<<else>>y<</if>> specially designed in the lab.
 	<</if>>
 <</if>>
-<<if $PC.slavesKnockedUp > 0>>
+<<if $PC.counter.slavesKnockedUp > 0>>
 	<br><br>
-		You've knocked up <<print num($PC.slavesKnockedUp)>> fertile slave girl<<if $PC.slavesKnockedUp > 1>>s<</if>><<if $PC.slavesFathered > 0>> and fathered <<print num($PC.slavesFathered)>> new slave<<if $PC.slavesFathered > 1>>s<</if>><</if>> as an arcology owner so far.
+		You've knocked up <<print num($PC.counter.slavesKnockedUp)>> fertile slave girl<<if $PC.counter.slavesKnockedUp > 1>>s<</if>><<if $PC.counter.slavesFathered > 0>> and fathered <<print num($PC.counter.slavesFathered)>> new slave<<if $PC.counter.slavesFathered > 1>>s<</if>><</if>> as an arcology owner so far.
 <<else>>
-	<<if $PC.slavesFathered > 0>>
+	<<if $PC.counter.slavesFathered > 0>>
 		<br><br>
-		You've fathered <<print num($PC.slavesFathered)>> new slave<<if $PC.slavesFathered > 1>>s<</if>> as an arcology owner so far.
+		You've fathered <<print num($PC.counter.slavesFathered)>> new slave<<if $PC.counter.slavesFathered > 1>>s<</if>> as an arcology owner so far.
 	<</if>>
 <</if>>
 
diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw
index c461c1e386ea635fd0b1dc271b3325f9b5967669..1356003f194c17e8cf05d2a854f9e7d126c2bd39 100644
--- a/src/pregmod/newChildIntro.tw
+++ b/src/pregmod/newChildIntro.tw
@@ -480,10 +480,10 @@ You completed the legalities before heading to $incubatorName, knowing the tank
 You slowly strip down, gauging $his reactions to your show, until you are fully nude before $him.
 
 <<if $activeSlave.vagina > -1>>
-	<<if ($PC.dick == 0) && ($PC.boobs == 1)>>
+	<<if ($PC.dick != 0) && ($PC.boobs >= 300)>>
 		$He notices $he has the same parts as you, and @@.mediumaquamarine;connects a little more@@ with a fellow girl.
 		<<set $activeSlave.trust += 4>>
-	<<elseif $PC.dick == 1>>
+	<<elseif $PC.dick != 0>>
 		$He notices your privates differ from $hers, and thanks to the tank's teachings, @@.hotpink;can't look away.@@
 		<<set $activeSlave.devotion += 4>>
 		<<if $incubatorReproductionSetting > 0>>
@@ -491,10 +491,10 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 		<</if>>
 	<</if>>
 <<elseif $activeSlave.dick > 0>>
-	<<if ($PC.dick == 1) && ($PC.boobs == 0)>>
+	<<if ($PC.dick != 0) && ($PC.boobs < 300)>>
 		$He notices $he has the same parts as you, and @@.mediumaquamarine;connects a little more@@ with a fellow boy.
 		<<set $activeSlave.trust += 4>>
-	<<elseif $PC.vagina == 1>>
+	<<elseif $PC.vagina != -1>>
 		$He notices your privates differ from $hers, and thanks to the tank's teachings, @@.hotpink;can't look away.@@
 		<<set $activeSlave.devotion += 4>>
 		<<if $incubatorReproductionSetting > 0>>
@@ -505,19 +505,19 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 
 <<if $incubatorReproductionSetting > 0>>
 	<<if (($activeSlave.attrXX > 50) || ($activeSlave.behavioralQuirk == "adores women")) && ($activeSlave.behavioralFlaw != "hates women") && ($activeSlave.trust >= -20)>>
-		<<if ($PC.boobs == 1)>>
+		<<if ($PC.boobs >= 900)>>
 			$He seems to think you're pretty, and is more willing to @@.hotpink;try for your approval@@ than $he would otherwise be. $He openly ogles your rack at every opportunity.
 			<<set $activeSlave.devotion += 4>>
 		<</if>>
 	<</if>>
 	<<if ($activeSlave.behavioralFlaw == "hates women") && ($activeSlave.devotion <= 50)>>
-		<<if ($PC.dick == 0) && ($PC.boobs == 1)>>
+		<<if ($PC.dick == 0) && ($PC.boobs >= 500)>>
 			$He obviously does not find you immediately attractive, and is @@.mediumorchid;less eager to conciliate you@@ than $he would otherwise be.
 			<<set $activeSlave.devotion -= 5>>
 		<</if>>
 	<</if>>
 	<<if (($activeSlave.attrXY > 50) || ($activeSlave.behavioralQuirk == "adores men")) && ($activeSlave.behavioralFlaw != "hates men") && ($activeSlave.trust >= -20)>>
-		<<if ($PC.dick == 1) && ($PC.boobs == 0)>>
+		<<if ($PC.dick != 0) && ($PC.boobs < 300)>>
 			$He seems to think you're handsome, and is more willing to @@.hotpink;try for your approval@@ than $he would otherwise be. $He ogles your crotch at every opportunity.
 			<<set $activeSlave.devotion += 4>>
 		<</if>>
@@ -538,7 +538,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 	<</if>>
 <</if>>
 
-<<if $PC.boobsBonus >= 3>>
+<<if $PC.boobs >= 1000>>
 	Now that you are alone with $him, $he seems incapable of pulling $his eyes off your huge tits. Every motion and jiggle in them is reflected in $his expression. $He licks $his lips as $he gazes at your erect nipples, but it will be you who decides who may suck on them. Though it doesn't stop $him from @@.hotpink;longing@@ to nurse from you.
 	<<set $activeSlave.devotion += 5>>
 <</if>>
@@ -675,7 +675,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 <</link>>
 
 <<if $seePreg != 0>>
-	<<if isFertile($activeSlave) && $PC.dick == 1>>
+	<<if isFertile($activeSlave) && $PC.dick != 0>>
 		<br><<link "Impregnate $him">>
 		<<replace "#result">>
 			<<if $activeSlave.readyOva > 0>>
@@ -707,7 +707,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 
 <br><<link "Break $him in publicly">>
 <<replace "#result">>
-	You escort the curious slave out into the public areas below your penthouse, shove the nude $desc over a convenient handrail, and stick <<if $PC.dick == 1>>your dick<<else>>a strap-on<</if>>
+	You escort the curious slave out into the public areas below your penthouse, shove the nude $desc over a convenient handrail, and stick <<if $PC.dick != 0>>your dick<<else>>a strap-on<</if>>
 	<<if $activeSlave.vagina >= 0>>
 		inside $his tight little pussy, making the poor $girl writhe with discomfort.
 	<<else>>
@@ -725,7 +725,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 
 <br><<link "Inseminate $him">>
 <<replace "#result">>
-	You lay the curious $desc across your desk and gently <<if $PC.dick == 1>>slide your hard cock<<else>>push a special strap-on<</if>> <<if $activeSlave.vagina >= 0>>inside $his womanhood<<else>>up $his butt<</if>>. You take $him with care, enjoying $his body and doing your best to give $him pleasure without hurting $his virgin hole. <<if $PC.dick == 1>>You empty your balls inside $him, thrusting in as far as you can go<<else>>The strap-on contains a reservoir of faux ejaculate, and you give it to $him<</if>> as you climax. When $he feels the hot liquid jet into $him, $he moans lewdly and relaxes, giving in to the tank's teachings. $He might not be an impregnation fetishist, but $he is @@.hotpink;willing to submit@@ to have $his body used as your receptacle and may even grow to enjoy it.
+	You lay the curious $desc across your desk and gently <<if $PC.dick != 0>>slide your hard cock<<else>>push a special strap-on<</if>> <<if $activeSlave.vagina >= 0>>inside $his womanhood<<else>>up $his butt<</if>>. You take $him with care, enjoying $his body and doing your best to give $him pleasure without hurting $his virgin hole. <<if $PC.dick != 0>>You empty your balls inside $him, thrusting in as far as you can go<<else>>The strap-on contains a reservoir of faux ejaculate, and you give it to $him<</if>> as you climax. When $he feels the hot liquid jet into $him, $he moans lewdly and relaxes, giving in to the tank's teachings. $He might not be an impregnation fetishist, but $he is @@.hotpink;willing to submit@@ to have $his body used as your receptacle and may even grow to enjoy it.
 	<<set $activeSlave.devotion += 4>>
 	<<if random(1,100) > 60 && $activeSlave.fetish == "none">>
 		<<set $activeSlave.fetish = "pregnancy">>
@@ -759,7 +759,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 
 <br><<link "Give $him a cum shower">>
 <<replace "#result">>
-	You seat the curious $desc in the center of your office and order every slave available capable of getting hard to report to your office. Once everyone is assembled and erect, you order them to encircle the aroused $girl and shower $him in cum. As they begin<<if canAchieveErection($activeSlave)>> (with $activeSlave.slaveName stroking $his own erection too)<</if>>, <<if $PC.dick == 1 && $PC.vagina == 1>>you begin fingering yourself while jacking off alongside your slaves<<elseif $PC.dick == 1>>you join in the circlejerk as well<<else>>you sit back to finger yourself to the show<</if>>. When the first burst of cum streaks across $his face, $he gasps in surprise, giving another load the chance to launch into $his gaping mouth. $He gags before licking $his lips and opening wide for the next load. After everyone has finished, $activeSlave.slaveName is coated, head to <<if !hasAnyLegs($activeSlave)>>hip<<else>>toe<</if>>, in cum and @@.hotpink;thrilled to be the center of attention.@@ Though $he may not be a cumslut now, $he certainly has the potential to become one.
+	You seat the curious $desc in the center of your office and order every slave available capable of getting hard to report to your office. Once everyone is assembled and erect, you order them to encircle the aroused $girl and shower $him in cum. As they begin<<if canAchieveErection($activeSlave)>> (with $activeSlave.slaveName stroking $his own erection too)<</if>>, <<if $PC.dick != 0 && $PC.vagina != -1>>you begin fingering yourself while jacking off alongside your slaves<<elseif $PC.dick != 0>>you join in the circlejerk as well<<else>>you sit back to finger yourself to the show<</if>>. When the first burst of cum streaks across $his face, $he gasps in surprise, giving another load the chance to launch into $his gaping mouth. $He gags before licking $his lips and opening wide for the next load. After everyone has finished, $activeSlave.slaveName is coated, head to <<if !hasAnyLegs($activeSlave)>>hip<<else>>toe<</if>>, in cum and @@.hotpink;thrilled to be the center of attention.@@ Though $he may not be a cumslut now, $he certainly has the potential to become one.
 	<<set $activeSlave.devotion += 4>>
 	<<if random(1,100) > 60 && $activeSlave.fetish == "none">>
 		<<set $activeSlave.fetish = "cumslut">>
@@ -797,7 +797,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 <</replace>>
 <</link>>
 
-<<if $PC.vagina == 1>>
+<<if $PC.vagina != -1>>
 	<<if $activeSlave.dick > 0 && canAchieveErection($activeSlave)>>
 		<br><<link "Dominate $his penis">>
 		<<replace "#result">>
@@ -815,7 +815,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 			<<elseif $activeSlave.dick == 6>>
 				You grin sadistically at $him as $his massive dick fills both of your hands.
 			<</if>>
-			As $he begins to moan with lust, you grip down tightly and force $him to the floor. You straddle $him and lower your dripping pussy onto $his face<<if $PC.dick == 1>>, your erect cock coming to rest on $his forehead<</if>>. You continue stroking your toy's rod as $he eagerly begins eating you out. As $his cock begins to throb, anticipating $his upcoming orgasm,
+			As $he begins to moan with lust, you grip down tightly and force $him to the floor. You straddle $him and lower your dripping pussy onto $his face<<if $PC.dick != 0>>, your erect cock coming to rest on $his forehead<</if>>. You continue stroking your toy's rod as $he eagerly begins eating you out. As $his cock begins to throb, anticipating $his upcoming orgasm,
 			<<if (overpowerCheck($activeSlave, $PC) < random(1,100)) && ($incubatorReproductionSetting > 0)>>
 				$he shoves you onto your back and deeply penetrates you. Before you can kick $him off, $he thrusts twice and unloads $his pent up orgasm deep into your pussy. $He pulls out with a huge smile on $his face and a @@.hotpink;deep love@@ for $his mate. You glower at $him as cum pools from your stretched cunt; $he might not be a dom now, but $he may certainly become one.
 				<<set $activeSlave.devotion += 5>>
@@ -877,7 +877,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 					<</if>>
 				</span>
 			<<else>>
-				you quickly bind the base of $his penis, denying $him release. You grind your cunt into $his face, letting $him know that YOU are the one who'll be orgasming here, not $him. Only once you have initiated the new slave by soaking $his face in your cum do you release $his dick and lean back to avoid the coming blast. A few strokes later and your hand is coated in $his cum. You turn around and order the exhausted $girl to clean $his cum off your hand<<if $PC.dick == 1>> and to finish off $his twitching dick<</if>>; $he might not be a submissive, but $he is @@.hotpink;willing to let you have your way@@ with $his body used and may even grow to enjoy it.
+				you quickly bind the base of $his penis, denying $him release. You grind your cunt into $his face, letting $him know that YOU are the one who'll be orgasming here, not $him. Only once you have initiated the new slave by soaking $his face in your cum do you release $his dick and lean back to avoid the coming blast. A few strokes later and your hand is coated in $his cum. You turn around and order the exhausted $girl to clean $his cum off your hand<<if $PC.dick != 0>> and to finish off $his twitching dick<</if>>; $he might not be a submissive, but $he is @@.hotpink;willing to let you have your way@@ with $his body used and may even grow to enjoy it.
 				<<set $activeSlave.devotion += 5>>
 				<<if random(1,100) > 60 && $activeSlave.fetish == "none">>
 					<<set $activeSlave.fetish = "submissive">>
@@ -889,7 +889,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 	<</if>>
 <</if>>
 
-<<if $PC.boobsBonus >= 3>>
+<<if $PC.boobs >= 1000>>
 	<br><<link "Permit $him to explore your expansive bust">>
 	<<replace "#result">>
 	You beckon the curious $girl to your hefty breasts, having noticed how hungrily $he has been <<if canSee($activeSlave)>>eying<<else>>focusing on<</if>> them. $He eagerly places $his hands to them and begins squeezing and massaging them, quickly becoming aroused $himself. $He pays close attention to your nipples, <<if $PC.lactation > 0>> squealing happily when milk begins to flow from them<<set $PC.lactationDuration = 2>><<else>> grumbling unhappily when $he finds no milk within<</if>>.
@@ -1097,7 +1097,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully
 			<<set $activeSlave.counter.anal += 10, $analTotal += 10>>
 			<<= assignJob($activeSlave, "dairy")>>
 			<<replace "#result">>
-				Making use of $his blissful ignorance, you restrain $him on one of the chairs in your office in an approximation of the position $he'll occupy in $dairyName. Then you put a mask on $him, like the ones the machines there feature, and turn it on, watching the slave squirm against $his restraints under the sudden bombardment of garish hardcore porn. Finally, you add a dildo gag, both to mimic the dildo that will feed $him, and to keep your office reasonably quiet. Then, for the rest of the day, you use $his vulnerable <<if $activeSlave.vagina > -1>>holes<<else>>asshole<</if>> as an outlet for your sexual energy. You are not gentle; in fact, the point of the whole exercise is to gape $him. By the evening $he's been fucked so hard that $he's stopped jerking against the chair when you pound <<if $PC.dick == 1>>your huge cock<<else>>a huge strap-on<</if>> in and out of $him, so you're obliged to get creative, sliding fingers in alongside <<if $PC.dick == 1>>yourself<<else>>it<</if>> to really blow $him out. Once that gets too easy, you start adding dildos for double penetration. By the night $he's properly prepared to take $dairyName's giant phalli, and you're bored, so you consign $him to $his fate. $He might have some opinion on how $he's spent $his day, but it's unlikely $he'll remember it by tomorrow, what with the forearm-sized dildos sliding in and out of $his throat<<if $activeSlave.vagina > -1>>, cunt,<</if>> and asshole.
+				Making use of $his blissful ignorance, you restrain $him on one of the chairs in your office in an approximation of the position $he'll occupy in $dairyName. Then you put a mask on $him, like the ones the machines there feature, and turn it on, watching the slave squirm against $his restraints under the sudden bombardment of garish hardcore porn. Finally, you add a dildo gag, both to mimic the dildo that will feed $him, and to keep your office reasonably quiet. Then, for the rest of the day, you use $his vulnerable <<if $activeSlave.vagina > -1>>holes<<else>>asshole<</if>> as an outlet for your sexual energy. You are not gentle; in fact, the point of the whole exercise is to gape $him. By the evening $he's been fucked so hard that $he's stopped jerking against the chair when you pound <<if $PC.dick != 0>>your huge cock<<else>>a huge strap-on<</if>> in and out of $him, so you're obliged to get creative, sliding fingers in alongside <<if $PC.dick != 0>>yourself<<else>>it<</if>> to really blow $him out. Once that gets too easy, you start adding dildos for double penetration. By the night $he's properly prepared to take $dairyName's giant phalli, and you're bored, so you consign $him to $his fate. $He might have some opinion on how $he's spent $his day, but it's unlikely $he'll remember it by tomorrow, what with the forearm-sized dildos sliding in and out of $his throat<<if $activeSlave.vagina > -1>>, cunt,<</if>> and asshole.
 			<</replace>>
 			<</link>>
 		<</if>>
diff --git a/src/pregmod/ovaTransplantWorkaround.tw b/src/pregmod/ovaTransplantWorkaround.tw
index 2114402620e0889e24ab5b119744cc5c95a3fef2..9555616dc8b2f96dc94b5b58e3ef01e57f30c2de 100644
--- a/src/pregmod/ovaTransplantWorkaround.tw
+++ b/src/pregmod/ovaTransplantWorkaround.tw
@@ -23,7 +23,7 @@ __Select a slave to serve as the host__
 	<br>//You have no slaves capable of acting as a surrogate.//
 <</if>>
 
-<<if $PC.vagina == 1 && $donatrix.ID != -1 && $PC.preg >= 0 && $PC.preg < 4 && $PC.pregType < 8 && $PC.physicalAge < 70>>
+<<if $PC.vagina != -1 && $donatrix.ID != -1 && $PC.preg >= 0 && $PC.preg < 4 && $PC.pregType < 8 && $PC.physicalAge < 70>>
 	<br>
 	[[Use your own womb|Surrogacy][$receptrix = $PC, cashX(forceNeg($surgeryCost*2), "slaveSurgery"), $surgeryType = "transplant"]]
 <</if>>
diff --git a/src/pregmod/pInsemination.tw b/src/pregmod/pInsemination.tw
index bd5b624e264649de2a6ffc6c3523fa7d733f20c4..cffbb2b653d2906b976a3196c443e45c47f1e3f2 100644
--- a/src/pregmod/pInsemination.tw
+++ b/src/pregmod/pInsemination.tw
@@ -41,7 +41,7 @@
 
 <<case "quick">>
 	<<if $quickCount == 0>>
-		You arrive at the apartment of the very wealthy fuel baron who is to sire your child. He is eagerly waiting for you and quickly hurries you inside. He wastes no time, practically ripping your clothes off and forcing you over the edge of his bed. He hastily mounts you and roughly fucks your cunt — until he quickly finishes, that is, leaving you unsatisfied as he shoves you out the door, clothes in <<if $PC.dick == 1>>one hand and raging boner in the other<<else>>hand<</if>>.
+		You arrive at the apartment of the very wealthy fuel baron who is to sire your child. He is eagerly waiting for you and quickly hurries you inside. He wastes no time, practically ripping your clothes off and forcing you over the edge of his bed. He hastily mounts you and roughly fucks your cunt — until he quickly finishes, that is, leaving you unsatisfied as he shoves you out the door, clothes in <<if $PC.dick != -1>>one hand and raging boner in the other<<else>>hand<</if>>.
 		<<set $quickCount++>>
 	<<else>>
 		You arrive at the apartment of the quick-shooting fuel baron and once more he quickly pulls you in. He barely manages to undress you before he is on top of you humping away. Just as he is about to cum, you wrap your legs around him; anchoring yourself to him. You remind him that his job is to knock you up, and a quick in and out isn't good enough. Buying it, he keeps thrusting, letting you reach your own orgasm. He still hurried you out the door in the end, but you got some pleasure out of him this time.
@@ -56,13 +56,13 @@
 		You arrive at the crazy scientist's apartment once more. Upon letting yourself in, you find him hard at work. Before you can even open your mouth, he gestures towards a nearby operating table. Carefully positioning yourself on it, and inserting your legs into the waiting stirrups, you await what madness will happen next. You don't have to wait long before a long metallic rod forces its way into your vagina and painfully pushes its way past your cervix. Moaning in a mix of discomfort and arousal, you have no time to brace for the device's activation. You gasp as you feel the cum begin to flow unabated into your fertile womb. After nearly a minute, the phallic injector leaves your body allowing you to stagger to your feet. Your belly is noticeably rounded from his "load", though it evens into a slight bloat as the cum steadily flows from your pussy. You struggle back into your clothes and head back to the penthouse, hoping nobody sees you in such a state.
 		<<set $crazyCount++>>
 	<<else>>
-		Once again you arrive at the crazy scientist's door. Letting yourself in, you immediately notice the table is set and waiting for you to strap in. He doesn't even acknowledge your existence, but you know what he expects you to do. Once you have hopped on and gotten comfortable, you gasp as the injector pushes into you. You came prepared this time, wearing a skirt, no underwear, and a shirt that will allow your middle room to stretch. You tease your breasts and <<if $PC.dick == 1>>erection<<else>>erect clit<</if>> as the machine pumps cum into you. Only once you've climaxed, and you look like you're nearly full-term, does the device stop pumping into you and you are allowed to right yourself. Slowly you waddle back to your penthouse, indifferent to who may see you; you can't wait to soak in a bath, drain, and <<if $PC.dick == 1>>jack-off<<else>>rub out an orgasm or two<</if>>.
+		Once again you arrive at the crazy scientist's door. Letting yourself in, you immediately notice the table is set and waiting for you to strap in. He doesn't even acknowledge your existence, but you know what he expects you to do. Once you have hopped on and gotten comfortable, you gasp as the injector pushes into you. You came prepared this time, wearing a skirt, no underwear, and a shirt that will allow your middle room to stretch. You tease your breasts and <<if $PC.dick != 0>>erection<<else>>erect clit<</if>> as the machine pumps cum into you. Only once you've climaxed, and you look like you're nearly full-term, does the device stop pumping into you and you are allowed to right yourself. Slowly you waddle back to your penthouse, indifferent to who may see you; you can't wait to soak in a bath, drain, and <<if $PC.dick != 0>>jack-off<<else>>rub out an orgasm or two<</if>>.
 		<<set $crazyCount++>>
 	<</if>>
 
 <<case "virgin">>
 	<<if $virginCount == 0>>
-		You arrive at the apartment of the quiet young man. Once he meekly welcomes you inside, you begin to slowly strip, drawing a deep blush to his face and a bulge to his pants. As you continue to tease him, making sure to brush his erection every now and then, he grabs your hand and pulls you into a tight hug. He's clueless. You take him by the hand and lead him to his bed; crawling into it, lying on your back and spreading your legs at him. Finally succeeding to remove his pants, he crawls onto you and hesitatingly penetrates you. It takes some time, but he eventually gets into the swing of things; even managing to coax an orgasm out of you<<if $PC.dick == 1>>, filling your condom with cum,<</if>> before blowing his load deep into your pussy. As he settles in next to you, you try to make your exit, but he asks you to stay and cuddle some. You allow him to rest himself on your <<if $PC.boobs == 1>>breasts<<else>>chest<</if>> as you gently pet him. Before long he has dozed off, giving you the opportunity to slip away. Just as you shut the door, you hear a slight call of "Will I get to see you again?"
+		You arrive at the apartment of the quiet young man. Once he meekly welcomes you inside, you begin to slowly strip, drawing a deep blush to his face and a bulge to his pants. As you continue to tease him, making sure to brush his erection every now and then, he grabs your hand and pulls you into a tight hug. He's clueless. You take him by the hand and lead him to his bed; crawling into it, lying on your back and spreading your legs at him. Finally succeeding to remove his pants, he crawls onto you and hesitatingly penetrates you. It takes some time, but he eventually gets into the swing of things; even managing to coax an orgasm out of you<<if $PC.dick != 0>>, filling your condom with cum,<</if>> before blowing his load deep into your pussy. As he settles in next to you, you try to make your exit, but he asks you to stay and cuddle some. You allow him to rest himself on your <<if $PC.boobs >= 300>>breasts<<else>>chest<</if>> as you gently pet him. Before long he has dozed off, giving you the opportunity to slip away. Just as you shut the door, you hear a slight call of "Will I get to see you again?"
 		<<set $virginCount++>>
 	<<elseif $virginCount == 1>>
 		You arrive at the apartment of the boy whose virginity you took. He happily hugs you before pulling you inside and into his bedroom. He certainly has become more assertive since the last time you saw him. He happily suckles from your milky nipple as he tenderly fucks you, making sure to bring you to your climax before releasing his own pent up load deep into your pussy. "I waited for you to come back you know..." He cuddles into your cleavage as you contently embrace him for a post-coital nap. When it's time to leave, he sees you to the door, promising to wait for you once more.
@@ -74,25 +74,25 @@
 
 <<case "futa">>
 	<<if $futaCount == 0>>
-		You arrive at the apartment of the rather assertive girl with both sets of functional genitals. She quickly pulls you into her bedroom, skillfully unwrapping her gift along the way, and tips you into her bed.<<if $PC.dick == 1>> Straddling you with a lewd smile, she plucks the condom off your stiff prick. She helps you into a position where she can both fuck you, and be fucked by you, at once. Your body aches by the end of things, but your lover happily massages every sore spot you point out to her. She blows you a kiss as you head out the door.<<else>> Straddling you with a lewd smile, she penetrates deep into your pussy. Sex with her was quite fun (she managed to touch every place on your body that turns you on) though a little messy, noting the cum dripping from you as you make your exit.<</if>>
+		You arrive at the apartment of the rather assertive girl with both sets of functional genitals. She quickly pulls you into her bedroom, skillfully unwrapping her gift along the way, and tips you into her bed.<<if $PC.dick != 0>> Straddling you with a lewd smile, she plucks the condom off your stiff prick. She helps you into a position where she can both fuck you, and be fucked by you, at once. Your body aches by the end of things, but your lover happily massages every sore spot you point out to her. She blows you a kiss as you head out the door.<<else>> Straddling you with a lewd smile, she penetrates deep into your pussy. Sex with her was quite fun (she managed to touch every place on your body that turns you on) though a little messy, noting the cum dripping from you as you make your exit.<</if>>
 		<<set $futaCount++>>
 	<<elseif $futaCount == 1>>
 		You arrive once more at the apartment of the assertive girl with both sets of functional genitals. You immediately notice something off about her stance as she greets you and pulls you inside. As she guides you to her bed, you take note of the unusual bulge under her shapely asscheeks. Once she has you undressed and on her bed, she pauses and begins a seductive strip tease. She bends completely over as she reaches her bottoms, giving you a clear look at that bulge as she slips them off. Testicles; her balls are triple the size that your remember! She spins around, nearly slapping you with her raging erection, "You like 'em? I haven't gotten a chance to use them yet, so let's have some fun!" she says seductively. She wastes no time in setting you up doggystyle and plunging deep into your moist pussy. You gasp as her hefty balls slap against your thighs. She leans in close as she rails you, a hand sneaking around to your flat belly. You feel her cum, hard, into you, followed by an unusual sensation. She is literally filling you with cum! You gasp at the mounting pressure in your belly, now fully aware of what she was groping for. Turning to her, you find her a little disappointed; "I thought you'd get bigger..." She cups her balls and mumbles something to herself. "Well, at least my load seems to be staying in you this time, mostly," she says, motioning to the cum steadily dripping from your vagina. Taking such an impressive load was quite enjoyable, you think to yourself as you make your exit.
 		<<set $futaCount++>>
 	<<else>>
-		You arrive once more at the apartment of the assertive girl with both sets of functional genitals. She calls for you to enter shortly after knocking, and beckons you into the bedroom. You strip as you walk, eager to get a taste of her huge load again. You are not disappointed; her balls are utterly massive, easily the size of her.<<if $PC.balls > 2>> "Your balls! Huge loads are great, aren't they? We are going to make such a wonderful mess!"<<else>>"Like 'em? Slide on up here and let's see just how big a mess we can make!"<</if>> You try your best to straddle her nuts, but shortly after getting seated, end up falling forward from her first thrust and locking lips with the lusty futa. She eagerly bucks into you as she deeply kisses you; and blows her load early. The sheer force of her orgasm floods your womb with fertile seed and forces her cock out, where it stays, spraying cum upwards like a fountain, until her room is soaked with cum. She stares at you, ashamed at herself. She finishes you off with some oral before inviting you to relax and enjoy some fine wine as an apology for cumming early. You give her balls a pat as you make your leave. A mistake, you soon realize, as she promptly orgasms and showers your back with ejaculate. Guess you'll be showering before you leave.
+		You arrive once more at the apartment of the assertive girl with both sets of functional genitals. She calls for you to enter shortly after knocking, and beckons you into the bedroom. You strip as you walk, eager to get a taste of her huge load again. You are not disappointed; her balls are utterly massive, easily the size of her.<<if $PC.balls >= 30>> "Your balls! Huge loads are great, aren't they? We are going to make such a wonderful mess!"<<else>>"Like 'em? Slide on up here and let's see just how big a mess we can make!"<</if>> You try your best to straddle her nuts, but shortly after getting seated, end up falling forward from her first thrust and locking lips with the lusty futa. She eagerly bucks into you as she deeply kisses you; and blows her load early. The sheer force of her orgasm floods your womb with fertile seed and forces her cock out, where it stays, spraying cum upwards like a fountain, until her room is soaked with cum. She stares at you, ashamed at herself. She finishes you off with some oral before inviting you to relax and enjoy some fine wine as an apology for cumming early. You give her balls a pat as you make your leave. A mistake, you soon realize, as she promptly orgasms and showers your back with ejaculate. Guess you'll be showering before you leave.
 		<<set $futaCount++>>
 	<</if>>
 
 <<case "preggo">>
 	<<if $preggoCount == 0>>
-		You arrive at the apartment of the rather moody girl with both sets of functional genitals. What answers the door surprises you; she is extremely pregnant, easily ready to drop. Positioning you over the edge of her bed, she mounts you and begins to enjoy herself. Between the sensations within your pussy, <<if $PC.dick == 1>>your dick's motions against her satin sheets,<</if>>and her belly rubbing up and down your ass and lower back; you quickly tense up in orgasm, prompting her to cum strongly into your pussy. You help her onto her couch and head on your way, but not before she informs you that she'll be waiting to fuck you when you are as pregnant as she is now.
+		You arrive at the apartment of the rather moody girl with both sets of functional genitals. What answers the door surprises you; she is extremely pregnant, easily ready to drop. Positioning you over the edge of her bed, she mounts you and begins to enjoy herself. Between the sensations within your pussy, <<if $PC.dick != 0>>your dick's motions against her satin sheets,<</if>>and her belly rubbing up and down your ass and lower back; you quickly tense up in orgasm, prompting her to cum strongly into your pussy. You help her onto her couch and head on your way, but not before she informs you that she'll be waiting to fuck you when you are as pregnant as she is now.
 		<<set $preggoCount++>>
 	<<elseif $preggoCount == 1>>
-		You arrive at the apartment of the heavily pregnant futa. When she answers the door and you are greeted by an even larger belly than last time it becomes abundantly clear that the two of you are on similar reproductive schedules. Noticing your look, she grabs your hands and happily says "Twins!" You wrap your arms around your lover for the evening and help her back to her bed, enjoying the weight of her middle. She stops you once she takes a seat and asks "You know, I have some fertility drugs if you want to get as big as me this time, cutie?" You shake your head "no"; being that pregnant would certainly impede your ability to run the arcology. She sighs and lies back, her stiff prick pressed against the underside of her belly, and invites you to ride her cock. You waste no time in mounting her, the feel of <<if $PC.dick == 1>>your own erection rubbing between your bellies<<else>>the underside of her pregnancy pushing into your own middle<</if>> as she thrusts up into you, driving you wild with lust. It doesn't take long for you to start bucking with orgasm and wrapping your arms around her gravid middle. Her occupants send several kicks your way as she quickens her pace, grabs your hips, and thrusts hard, cumming deep in your pussy. Panting, you slide off her and snuggle up beside her as you catch your breath. "You're looking good after having a child, you know? But obviously you looked even better heavy with my child. I'm keeping those pictures of you close!" she says with a giggle as you rise. With a gentle pat on your bottom, she sends you on your way.
+		You arrive at the apartment of the heavily pregnant futa. When she answers the door and you are greeted by an even larger belly than last time it becomes abundantly clear that the two of you are on similar reproductive schedules. Noticing your look, she grabs your hands and happily says "Twins!" You wrap your arms around your lover for the evening and help her back to her bed, enjoying the weight of her middle. She stops you once she takes a seat and asks "You know, I have some fertility drugs if you want to get as big as me this time, cutie?" You shake your head "no"; being that pregnant would certainly impede your ability to run the arcology. She sighs and lies back, her stiff prick pressed against the underside of her belly, and invites you to ride her cock. You waste no time in mounting her, the feel of <<if $PC.dick != 0>>your own erection rubbing between your bellies<<else>>the underside of her pregnancy pushing into your own middle<</if>> as she thrusts up into you, driving you wild with lust. It doesn't take long for you to start bucking with orgasm and wrapping your arms around her gravid middle. Her occupants send several kicks your way as she quickens her pace, grabs your hips, and thrusts hard, cumming deep in your pussy. Panting, you slide off her and snuggle up beside her as you catch your breath. "You're looking good after having a child, you know? But obviously you looked even better heavy with my child. I'm keeping those pictures of you close!" she says with a giggle as you rise. With a gentle pat on your bottom, she sends you on your way.
 		<<set $preggoCount++>>
 	<<else>>
-		You arrive once more at the apartment of the heavily pregnant futa, though this time she takes a while to reach the door by the sound of it. When it opens, you are greeted by her usual smile and an octuplets stuffed belly. She grabs your hand and pulls it to her taut middle. "Feel them kick! There's so many of them, it feels amazing!" You wrap your arms around your heavy lover for the evening and help her back to her bed, savoring the weight of her pregnancy. She stops you once she takes a seat and asks "My offer still stands, cutie. I assure you it feels amazing to be so full of babies." You shake your head "no"; being that pregnant would definitely impede your ability to run the arcology and even enjoy your slaves properly. She lies back, before shifting her weight to her side out of discomfort. Her belly is really big, and hangs low enough that reaching her needy cock is quite the challenge; you take a moment to think of a good position to receive her. You take her dick, and gently sliding yourself between her legs, fit it into your pussy. The two of you buck against each other as best you can; a struggle, seeing as you are bearing the weight of her children right now. You have no choice but to wrap your arms around the eagerly kicking mass<<if $PC.dick == 1>>, trapping your dick between it and yourself,<</if>> as you near your climax. You feel your nethers clamp down as she cums, hard, deep into your pussy. Her children shift under your arms as her water breaks onto you. You quickly untangle yourself and help her to her feet; you can't help but enjoy the feeling of her close contractions under your hand. She points you to her bathroom; "Water birth," she pants, struggling to not give birth where she stands. The tub is already prepared for her, so you help her into it. She refuses to let go of your hand, pleading "Join me?" You take her up on the offer and slide in behind her. You massage her taxed stomach as she struggles to bring her children into the world. A loud moan escapes her lips as the first of her children slips from her pussy and into your waiting hands. Setting her aside, you prepare for the next. After several hours, and a mutual shower, you and her recover together with her eight children; as thanks, you have one milky nipple all to yourself. When it's time to leave, she blows you a kiss and thanks you sincerely for helping her through this.
+		You arrive once more at the apartment of the heavily pregnant futa, though this time she takes a while to reach the door by the sound of it. When it opens, you are greeted by her usual smile and an octuplets stuffed belly. She grabs your hand and pulls it to her taut middle. "Feel them kick! There's so many of them, it feels amazing!" You wrap your arms around your heavy lover for the evening and help her back to her bed, savoring the weight of her pregnancy. She stops you once she takes a seat and asks "My offer still stands, cutie. I assure you it feels amazing to be so full of babies." You shake your head "no"; being that pregnant would definitely impede your ability to run the arcology and even enjoy your slaves properly. She lies back, before shifting her weight to her side out of discomfort. Her belly is really big, and hangs low enough that reaching her needy cock is quite the challenge; you take a moment to think of a good position to receive her. You take her dick, and gently sliding yourself between her legs, fit it into your pussy. The two of you buck against each other as best you can; a struggle, seeing as you are bearing the weight of her children right now. You have no choice but to wrap your arms around the eagerly kicking mass<<if $PC.dick != 0>>, trapping your dick between it and yourself,<</if>> as you near your climax. You feel your nethers clamp down as she cums, hard, deep into your pussy. Her children shift under your arms as her water breaks onto you. You quickly untangle yourself and help her to her feet; you can't help but enjoy the feeling of her close contractions under your hand. She points you to her bathroom; "Water birth," she pants, struggling to not give birth where she stands. The tub is already prepared for her, so you help her into it. She refuses to let go of your hand, pleading "Join me?" You take her up on the offer and slide in behind her. You massage her taxed stomach as she struggles to bring her children into the world. A loud moan escapes her lips as the first of her children slips from her pussy and into your waiting hands. Setting her aside, you prepare for the next. After several hours, and a mutual shower, you and her recover together with her eight children; as thanks, you have one milky nipple all to yourself. When it's time to leave, she blows you a kiss and thanks you sincerely for helping her through this.
 		<<set $preggoCount++>>
 	<</if>>
 
diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw
index 335b36d65dbc56d75566a302d14306720a919633..3643721f7bd47081d0b8afee7614a3e3d1d21010 100644
--- a/src/pregmod/pRaped.tw
+++ b/src/pregmod/pRaped.tw
@@ -12,7 +12,7 @@
 	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
-<<if $PC.vagina > 0>>
+<<if $PC.vagina >= 0>>
 	<<set $activeSlave = GenerateNewSlave("XY")>>
 	<<set $activeSlave.dick = 6>>
 	<<set $activeSlave.balls = 5>>
@@ -39,10 +39,10 @@
 
 While returning from a meeting with a prospective investor, an unfortunate wrong turn has led you into a rather seedy area of your arcology. You feel distinctly uncomfortable for some reason.
 
-<<if $PC.career == "mercenary" || $PC.warfare >= 85>>
+<<if $PC.career == "mercenary" || $PC.skill.warfare >= 85>>
 	The moment you hear the sound of the knife unsheathe your reflexes take over. With a single strike, the $woman tailing you lies in a heap on the ground.
 	<<set $raped = 0>>
-<<elseif $PC.career == "slaver" || $PC.warfare >= 45>>
+<<elseif $PC.career == "slaver" || $PC.skill.warfare >= 45>>
 	The moment you notice an arm coming around from behind you does your training kick in. You quickly disarm the assailant and knock them to the floor before placing them in a choke-hold. Once they are subdued, you stand back to decide what to do next.
 	<<set $raped = 0>>
 <<elseif $PC.career == "gang">>
@@ -54,18 +54,18 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 <br><br>
 <<if $raped == 1>>
 	<<set $fcnn.push("...plans for increased security measures, but refused to answer questions regarding...")>>
-	<<if $PC.vagina > 0>>
-		"Well, well, well, look what <<if $PC.belly >= 5000 || $PC.preg >= 20>>waddled<<else>>walked<</if>> into my territory. If it isn't $PC.name, come to grace me with _hisP presence."
+	<<if $PC.vagina >= 0>>
+		"Well, well, well, look what <<if $PC.belly >= 5000 || $PC.preg >= 20>>waddled<<else>>walked<</if>> into my territory. If it isn't $PC.slaveName, come to grace me with _hisP presence."
 	<<else>>
-		"I've been watching you ever since you first moved in, $PC.name, waiting for the perfect moment to make you mine. We are going to have a little fun, you and I."
+		"I've been watching you ever since you first moved in, $PC.slaveName, waiting for the perfect moment to make you mine. We are going to have a little fun, you and I."
 	<</if>>
 	The $woman binds your hands behind you, all the while keeping the knife to your throat. "Smart keeping your mouth shut; maybe I won't have to hurt you. Heh, I know what you're thinking, that you'll find out who I am and punish me. Don't worry, I made sure to not to leave you any trails to follow. Now let's see what we have here."
 
-	<<if $PC.vagina > 0>>
+	<<if $PC.vagina >= 0>>
 		With $his free hand, $he begins to explore your vulnerable body.
 		<<switch $PC.career>>
 		<<case "wealth">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Nice and supple. How much did you have to pay for these babies?" he smirks as he gropes your breasts.
 			<</if>>
 			<<if $PC.preg >= 20 || $PC.belly >= 5000>>
@@ -75,7 +75,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 				"Went with the full package didn't you?" he mocks as he flicks the tip of your stiffening cock.
 			<</if>>
 		<<case "capitalist">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Nice and supple. Bet these got you some great deals with guys, didn't they?" he smirks as he gropes your breasts.
 			<</if>>
 			<<if $PC.preg >= 20 || $PC.belly >= 5000>>
@@ -85,7 +85,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 				"Guess you fuck people over in more ways than one, don't you?" he mocks as he flicks the tip of your stiffening cock.
 			<</if>>
 		<<case "engineer">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Nice and supple. Did the other engineers care about your designs or just your tits?" he smirks as he gropes your breasts.
 			<</if>>
 			<<if $PC.preg >= 20 || $PC.belly >= 5000>>
@@ -95,7 +95,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 				"Well you do know how to erect things, don't you?" he mocks as he flicks the tip of your stiffening cock.
 			<</if>>
 		<<case "medicine">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Nice and supple. Did you implant them yourself?" he smirks as he gropes your breasts.
 			<</if>>
 			<<if $PC.preg >= 20 || $PC.belly >= 5000>>
@@ -109,7 +109,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 				"I'm impressed. Your woman impression is quite good. Did you do the surgery yourself?" he mocks as he flicks the tip of your stiffening cock. "Still going to fuck you though."
 			<</if>>
 		<<case "celebrity">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Nice and supple. I wonder how many guys jacked off to your pictures?" he smirks as he gropes your breasts.
 			<</if>>
 			<<if $PC.preg >= 20 || $PC.belly >= 5000>>
@@ -119,7 +119,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 				"How much tape did it take to hold this guy down?" he mocks as he flicks the tip of your stiffening cock.
 			<</if>>
 		<<case "escort">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Nice and soft. How many dicks have been between these babies?" he smirks as he gropes your breasts.
 			<</if>>
 			<<if $PC.preg >= 20 || $PC.belly >= 5000>>
@@ -129,7 +129,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 				"So, did you ever get to use this when you were a prostitute?" he mocks as he flicks the tip of your stiffening cock.
 			<</if>>
 		<<case "servant">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Nice and supple. Bet your Master spent a fortune making these so nice," he smirks as he gropes your breasts.
 			<</if>>
 			<<if $PC.preg >= 20 || $PC.belly >= 5000>>
@@ -139,7 +139,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 				"When your Master first undressed you, what did he think of his 'girl'?" he mocks as he flicks the tip of your stiffening cock.
 			<</if>>
 		<<case "BlackHat">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Nice and supple. What are the odds that I can find these babies on the internet?" he smirks as he gropes your breasts.
 			<</if>>
 			<<if $PC.preg >= 20 || $PC.belly >= 5000>>
@@ -149,9 +149,15 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 				"Trying to catch a signal with that?" he mocks as he flicks the tip of your stiffening cock.
 			<</if>>
 		<</switch>>
-		Finally he reaches your moistening pussy. "Already wet are we? Glad you know your place," he states as he pulls your clothes off and bends you over.
+		Finally he reaches your moistening pussy. "Already wet are we? Glad you know your place," he states as he pulls your clothes off and bends you over.<<if $PC.vagina == 0>> "And you still have your innocence, how delightful!"</if>>
 		<br><br>
-		You can feel the head of his cock teasing your pussy lips; you hope it feels bigger than it really is. As he struggles to force it into you, you regret thinking about it. He must have undergone surgery or something because he fills you completely. You feel weak just from him sticking it in, you can't fathom what will happen once he starts thrusting. You soon find out as he wastes no time starting slow. He violently rams his oversized cock deep into you, threatening to penetrate your cervix with each thrust. He quickens his pace, fucking you like a beast.
+		You can feel the head of his cock teasing your
+		<<if $PC.vagina == 0>>
+			virgin pussy; you grit your teeth knowing what will come next. Without mercy, he @@.red;tears through your hymen@@ and forces himself as deep as your tight pussy lets him. You choke back a sob as he struggles to hilt himself in you. He must have undergone surgery or something because there is no way your body can handle such a monster. Your in agony already, you can't fathom what will happen when he looses his patience.
+		<<else>>
+			pussy lips; you hope it feels bigger than it really is. As he struggles to force it into you, you regret thinking about it. He must have undergone surgery or something because he fills you completely. You feel weak just from him sticking it in, you can't fathom what will happen once he starts thrusting.
+		<</if>>
+		You soon find out as he wastes no time starting slow. He violently rams his oversized cock deep into you, threatening to penetrate your cervix with each thrust. He quickens his pace, fucking you like a beast.
 		<<if $PC.preg < 1>>
 			<<if random(1,100) > 60>>
 				His hand rises to your lips and forces something into your mouth. "Swallow it." You obey, hoping to just get this over with.
@@ -164,51 +170,52 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 		<<if $PC.preg >= 20 || $PC.belly >= 5000>>"Now your child<<if $PC.pregType > 1>>ren<</if>> will know what a real man's sperm is like!" <</if>>
 		He shoves you to the ground, pussy gaping from the size of his shaft and leaking his huge load all over yourself. 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. Such a thing, happening to you. You can't allow such an indignity to happen again, you think to yourself, as you try to coax his sperm from your abused pussy.
+		It would be prudent to up security in your arcology. That or take a guard along when you leave the penthouse. Such a thing, happening to you. You can't allow such an indignity to happen again, <<if $PC.vagina == 0>>not that you'll ever get your first time back<<else>>you think to yourself<</if>>, as you try to coax his sperm from your abused pussy.
 		<<if isPlayerFertile($PC)>>
-			For some reason your body feels really satisfied, despite not climaxing... Is this what it feels like to be bred by someone so dominant? You should take a pregnancy test right away and make sure he didn't knock you up.
+			For some reason your body feels really satisfied, despite <<if $PC.vagina == 0>>what transpired<<else>>not climaxing<</if>>... Is this what it feels like to be bred by someone so dominant? You should take a pregnancy test right away and make sure he didn't knock you up.
 			<<= knockMeUp($PC, 100, 0, -2, 1)>>
 		<</if>>
+		<<if $PC.vagina == 0>><<set $PC.vagina++>><</if>>
 	<<else>>
 		With $his free hand, $he begins to explore your bound body.
 		<<switch $PC.career>>
 		<<case "wealth">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Spared no expenses for these babies, did you?" $he smirks as $he gropes your breasts.
 			<</if>>
 			$He slips $his hand down your pants. "Now there's the money maker!"
 		<<case "capitalist">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Ever wonder if they were listening to you or just ogling the man with the breasts?" $he smirks as $he gropes your breasts.
 			<</if>>
 			$He slips $his hand down your pants. "Now that explains how you were so successful!"
 		<<case "engineer">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"How did you get any work done with these hanging over your designs?" $he smirks as $he gropes your breasts.
 			<</if>>
 			$He slips $his hand down your pants. "I see what kind of tools you like. Big and strong!"
 		<<case "medicine">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"I'm sure you had quite the number of clients after a pair of these," $he smirks as $he gropes your breasts.
 			<</if>>
 			$He slips $his hand down your pants. "Huh, I wonder if that's real..."
 		<<case "celebrity">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Nice and supple. Just like I'd expect from a man sporting tits." $he smirks as $he gropes your breasts.
 			<</if>>
 			$He slips $his hand down your pants; "Oh, now those tabloids make sense."
 		<<case "escort">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"With these hanging out, how many men tried to pick you up?" $he smirks as $he gropes your breasts.
 			<</if>>
 			$He slips $his hand down your pants. "Now there's the money maker!"
 		<<case "servant">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Did your Master even ask before he stuck you with these?" $he smirks as $he gropes your breasts.
 			<</if>>
 			$He slips $his hand down your pants. "Now that's surprising. I expected something smaller."
 		<<case "BlackHat">>
-			<<if $PC.boobs > 0>>
+			<<if $PC.boobs >= 300>>
 				"Nice and supple. What are the odds that I can find these babies on the internet?" $he smirks as $he gropes your breasts.
 			<</if>>
 			$He slips $his hand down your pants. "You wouldn't mind if I download a few files now would you? Well, not that it matters."
@@ -216,7 +223,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 _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.
+		"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.balls >= 20>>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/pcAppearanceIntro.tw b/src/pregmod/pcAppearanceIntro.tw
index b1d17bf3dd1111ed95419ec47efc953a15568f18..7de859cb5e85830a494caed68a4ad9fb5e8e9f6c 100644
--- a/src/pregmod/pcAppearanceIntro.tw
+++ b/src/pregmod/pcAppearanceIntro.tw
@@ -244,8 +244,9 @@ You have $PC.skin skin.
 
 @@.orange;What color are your eyes?@@
 <br>
-You have $PC.eyeColor eyes.
-<br><<textbox "$PC.eyeColor" $PC.eyeColor "PC Appearance Intro">>
+<<set $PC.eye.left.iris = $PC.eye.right.iris>>
+You have $PC.eye.right.iris eyes.
+<br><<textbox "$PC.eye.right.iris" $PC.eye.right.iris "PC Appearance Intro">>
 
 <br><br>
 
diff --git a/src/pregmod/personalNotes.tw b/src/pregmod/personalNotes.tw
index 240e6ec8a2f450c57dbcf308ac00ebea764b9cce..d0e8aaf773a8909f178dd8c4a8e1e37ff3534c6c 100644
--- a/src/pregmod/personalNotes.tw
+++ b/src/pregmod/personalNotes.tw
@@ -7,7 +7,8 @@
 <<PlayerBelly>>
 <<PlayerCrotch>>
 <<PlayerButt>>
-<<if $PC.boobs == 1 && $PC.boobsImplant == 0>>
+/* rework me
+<<if $PC.boobs >= 300 && $PC.boobsImplant == 0>>
 	<<if $PC.preg == 31>>
 		<<if $PC.boobsBonus == 2>>
 			<<if random(1,100) > 90>>
@@ -42,18 +43,13 @@
 		<</if>>
 	<</if>>
 <</if>>
+*/
 <<if $PC.lactation > 0>>
 	<<if $playerGetsMilked > 0>>
 		<<set $PC.lactationDuration = 2>>
 		<<if $playerGetsMilked == 2>>
-			<<set _milk = 10+($PC.boobsBonus*10)>>
-			<<if $PC.boobsImplant == 1>>
-				<<set _milk *= .9>>
-			<</if>>
-			<<set _milk = Math.trunc(_milk)>>
-			<<if _milk < 1>>
-				<<set _milk = 1>>
-			<</if>>
+			/* watch this be a disaster */
+			<<set _milk = milkAmount($PC)>>
 			Whenever you have a free moment and a chest swollen with milk, you spend your time attached to the nearest milker. As a result, you produce _milk liters of sellable milk over the week.
 			<<if ($arcologies[0].FSPastoralistLaw == 1)>>
 				<<set _milkSale = _milk*(28+Math.trunc($arcologies[0].FSPastoralist/30))>>
diff --git a/src/pregmod/reMaleArcologyOwner.tw b/src/pregmod/reMaleArcologyOwner.tw
index f02f25ec11c219821c814e9bb875c6e8cf5252de..05a7efa81b2efb638259641c663b74a81ec912ca 100644
--- a/src/pregmod/reMaleArcologyOwner.tw
+++ b/src/pregmod/reMaleArcologyOwner.tw
@@ -26,7 +26,7 @@ He strikes a fine balance in conversation with you, firm enough to not overpower
 		<<set $trinkets.push($desc)>>
 	<</replace>>
 <</link>>
-<<if ($PC.preg >= 28 && $PC.pregMood == 2) || $PC.boobsBonus >= 2 || $PC.butt >= 2>>
+<<if ($PC.preg >= 28 && $PC.pregMood == 2) || $PC.boobs >= 1000 || $PC.butt >= 4>>
 	<br><<link "Convince him to make the first move">>
 		<<replace "#result">>
 		<<set _randomForeignFS = random(1,100)>>
@@ -46,13 +46,13 @@ He strikes a fine balance in conversation with you, firm enough to not overpower
 				<<set $desc = "a flirtatious thank-you note from a male arcology owner you broke in to lusty preggo sex">>
 				<<set $trinkets.push($desc)>>
 			<</if>>
-		<<elseif $PC.boobsBonus >= 2>>
-			You adjust your dress to better emphasize your huge <<if $PC.boobsImplant == 1>>fake tits<<else>>soft breasts<</if>> and head over to join to the
+		<<elseif $PC.boobs >= 1000>>
+			You adjust your dress to better emphasize your huge <<if $PC.boobsImplant > 0>>fake tits<<else>>soft breasts<</if>> and head over to join to the
 			<<if _randomForeignFS > 80>> /* slimness */
 				conversation between him and the woman trying to convince him to invest in her solar power concern. After a few minutes of you jiggling your cleavage around, however, it becomes apparent that this is not turning him on at all. He excuses himself and withdraws. You return to your <<if $PC.refreshmentType == 0>>$PC.refreshment<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>pouch of $PC.refreshment<<elseif $PC.refreshmentType == 4>>syringe of $PC.refreshment<<elseif $PC.refreshmentType == 5>>bottle of $PC.refreshment<<elseif $PC.refreshmentType == 6>>sheet of $PC.refreshment<</if>>, consoling yourself that you are not exactly starved for company.
 			<<elseif _randomForeignFS > 60>> /* transformation */
 				conversation between him and the woman trying to convince him to invest in her solar power concern.
-				<<if $PC.boobsImplant != 1>>
+				<<if $PC.boobsImplant == 0>>
 					After a few minutes of you jiggling your cleavage around, however, it becomes apparent that, while he does frequently eye it, it just isn't to his tastes. He excuses himself and withdraws. You return to your <<if $PC.refreshmentType == 0>>$PC.refreshment<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>pouch of $PC.refreshment<<elseif $PC.refreshmentType == 4>>syringe of $PC.refreshment<<elseif $PC.refreshmentType == 5>>bottle of $PC.refreshment<<elseif $PC.refreshmentType == 6>>sheet of $PC.refreshment<</if>>, consoling yourself that you are not exactly starved for company.
 				<<else>>
 					After a few minutes, it becomes clear that something else is on his mind than renewable energy and he politely excuses himself, though not before dropping something into your cleavage. The women watches dejectedly as you fish out his business card. Taking the hint, you scan the room and find him slowly leaving once he makes eye contact; a clear invitation to follow him. As you wander down the hall, you feel a hand cup one of your firm globes and pull you into an embrace. While he seems content to just grope you, you had other plans and begin undoing his belt. You gasp a little as his member pops out into your hands, eager for some attention of its own. He wastes no time in pulling your ample bust downwards and slipping his eager cock between your breasts. You grab his hips for support as he vigorously pistons into your chest, struggling to retake control of the situation before he renders you unable to return to the party. With a joyous groan, he blows his load deep into your bosom and down your dress. As he helps you to your feet, and the stain under your rack grows larger, you give him a kiss on the cheek and head off to change. He returns to the party, and from what your serving slaves tell you later, seems to have boasted about how well you do business. @@.green;Your reputation has slightly improved,@@ though nowhere near as much as his.
@@ -60,7 +60,7 @@ He strikes a fine balance in conversation with you, firm enough to not overpower
 					<<set $desc = "a thank-you note from a male arcology owner of your acquaintance that not-so-subtly suggests getting a bigger pair of implants">>
 					<<set $trinkets.push($desc)>>
 				<</if>>
-			<<elseif _randomForeignFS > 40 && $PC.boobsImplant != 1>> /* purist + expansion */
+			<<elseif _randomForeignFS > 40 && $PC.boobsImplant == 0>> /* purist + expansion */
 				conversation between him and the woman trying to convince him to invest in her solar power concern. After a few minutes of you jiggling your cleavage around, it becomes clear that his attention span for renewable energy is no where near what it is for big breasts just begging to pop out of their top. He excuses himself from the conversion, though not without intentionally bumping into your rack and slipping into the hall. The woman glares daggers at you and returns to her drink, leaving you to follow suit and slip out of the party. As you wander down the hall, you feel a hand struggle to cup one of your jiggly globes and pull you into an embrace. While he seems content to just grope you, you had other plans and begin undoing his belt. You gasp a little as his member pops out into your hands, eager for some attention of its own. He wastes no time in pulling your ample bust downwards and slipping his eager cock between your breasts. You grab his hips for support as he vigorously pistons into your chest in an attempt to keep your balance under their motion and to make an attempt to retake control of the situation before he renders you unable to return to the party. With a joyous groan, he blows his load deep into your bosom and down your dress. As he helps you to your feet, and the stain under your rack grows larger, you give him a kiss on the cheek and head off to change. He returns to the party, and from what your serving slaves tell you later, seems to have boasted about how well you do business. @@.green;Your reputation has slightly improved,@@ though nowhere near as much as his.
 				<<run repX(100, "event")>>
 				<<set $desc = "a thank-you note from a male arcology owner of your acquaintance with an attached list of natural supplements to make your tits even bigger">>
@@ -71,23 +71,23 @@ He strikes a fine balance in conversation with you, firm enough to not overpower
 			<</if>>
 		<<else>> /* big butt */
 			<<if _randomForeignFS > 80>> /* slimness */
-				You wait until he finishes his conversation with the woman trying to convince him to invest in her solar power concern and excuses himself to head for the restroom. You know the layout of the penthouse better than anyone and know that he'll likely take a narrow service hall to get back to the party quick; that is where you will spring your trap. As he makes his return, you attempt to squeeze past him, forcing your enormous <<if $PC.buttImplant == 1>>fake <</if>>rear up against his crotch. As you wiggle against him, it becomes apparent that any hint of an erection he may have had is quickly fading. He apologizes for the inconvenience and heads on his way. You stop around the corner, out of sight, and console yourself that you are not exactly starved for company.
+				You wait until he finishes his conversation with the woman trying to convince him to invest in her solar power concern and excuses himself to head for the restroom. You know the layout of the penthouse better than anyone and know that he'll likely take a narrow service hall to get back to the party quick; that is where you will spring your trap. As he makes his return, you attempt to squeeze past him, forcing your enormous <<if $PC.buttImplant != 0>>fake <</if>>rear up against his crotch. As you wiggle against him, it becomes apparent that any hint of an erection he may have had is quickly fading. He apologizes for the inconvenience and heads on his way. You stop around the corner, out of sight, and console yourself that you are not exactly starved for company.
 			<<elseif _randomForeignFS > 60>> /* transformation */
-				<<if $PC.buttImplant != 1>>
-					You wait until he finishes his conversation with the woman trying to convince him to invest in her solar power concern and excuses himself to head for the restroom. You know the layout of the penthouse better than anyone and know that he'll likely take a narrow service hall to get back to the party quick; that is where you will spring your trap. As he makes his return, you attempt to squeeze past him, forcing your enormous <<if $PC.buttImplant == 1>>fake <</if>>rear up against his crotch. As you wiggle against him, it becomes apparent that he is a man that enjoys a nice big ass wrapped around his cock. You tense up as you feel his hands sink into your soft cheeks, only to find that he is slipping out from behind you. He apologizes for leading you on and heads back to the party. You're left standing there, pondering why it didn't work, only to realize that he lost interest the moment he realized your butt was real.
+				<<if $PC.buttImplant == 0>>
+					You wait until he finishes his conversation with the woman trying to convince him to invest in her solar power concern and excuses himself to head for the restroom. You know the layout of the penthouse better than anyone and know that he'll likely take a narrow service hall to get back to the party quick; that is where you will spring your trap. As he makes his return, you attempt to squeeze past him, forcing your enormous <<if $PC.buttImplant != 0>>fake <</if>>rear up against his crotch. As you wiggle against him, it becomes apparent that he is a man that enjoys a nice big ass wrapped around his cock. You tense up as you feel his hands sink into your soft cheeks, only to find that he is slipping out from behind you. He apologizes for leading you on and heads back to the party. You're left standing there, pondering why it didn't work, only to realize that he lost interest the moment he realized your butt was real.
 				<<else>>
-					You wait until he finishes his conversation with the woman trying to convince him to invest in her solar power concern and excuses himself to head for the restroom. You know the layout of the penthouse better than anyone and know that he'll likely take a narrow service hall to get back to the party quick; that is where you will spring your trap. As he makes his return, you attempt to squeeze past him, forcing your enormous <<if $PC.buttImplant == 1>>fake <</if>>rear up against his crotch. As you wiggle against him, it becomes apparent that something hard is slowly snaking its way between your firm cheeks. Your suspicions are confirmed when you feel his hands grab your hips as he begins to dry hump you. Before he can ruin the moment, and his pants, you quickly guide him into one of the many stairwells hidden throughout the penthouse. By the time you've grabbed hold of the rail, he's undone his pants, managed to pull your dress up over your immense bottom, and lined himself up with your moist slit. You push back against him, biting your lip as the length of his member slides into you, letting him know that you are ready as your shelf of an ass blocks any view of your crotch from above. He takes you hard against the railing, enjoying the sensation of your implants slamming against him. With a joyous groan, he pulls out and blows his load in your crack and up your back. As he helps you upright, you lean back give him a kiss on the cheek before heading off to change. He returns to the party, and from what your serving slaves tell you later, seems to have boasted about how well you do business. @@.green;Your reputation has slightly improved,@@ though nowhere near as much as his.
+					You wait until he finishes his conversation with the woman trying to convince him to invest in her solar power concern and excuses himself to head for the restroom. You know the layout of the penthouse better than anyone and know that he'll likely take a narrow service hall to get back to the party quick; that is where you will spring your trap. As he makes his return, you attempt to squeeze past him, forcing your enormous <<if $PC.buttImplant != 0>>fake <</if>>rear up against his crotch. As you wiggle against him, it becomes apparent that something hard is slowly snaking its way between your firm cheeks. Your suspicions are confirmed when you feel his hands grab your hips as he begins to dry hump you. Before he can ruin the moment, and his pants, you quickly guide him into one of the many stairwells hidden throughout the penthouse. By the time you've grabbed hold of the rail, he's undone his pants, managed to pull your dress up over your immense bottom, and lined himself up with your moist slit. You push back against him, biting your lip as the length of his member slides into you, letting him know that you are ready as your shelf of an ass blocks any view of your crotch from above. He takes you hard against the railing, enjoying the sensation of your implants slamming against him. With a joyous groan, he pulls out and blows his load in your crack and up your back. As he helps you upright, you lean back give him a kiss on the cheek before heading off to change. He returns to the party, and from what your serving slaves tell you later, seems to have boasted about how well you do business. @@.green;Your reputation has slightly improved,@@ though nowhere near as much as his.
 					<<run repX(100, "event")>>
 					<<set $desc = "a thank-you note from a male arcology owner of your acquaintance that not-so-subtly suggests getting a bigger pair of ass implants">>
 					<<set $trinkets.push($desc)>>
 				<</if>>
-			<<elseif _randomForeignFS > 40 && $PC.buttImplant != 1>> /* purist + expansion */
+			<<elseif _randomForeignFS > 40 && $PC.buttImplant == 0>> /* purist + expansion */
 				You wait until he finishes his conversation with the woman trying to convince him to invest in her solar power concern and excuses himself to head for the restroom. You know the layout of the penthouse better than anyone and know that he'll likely take a narrow service hall to get back to the party quick; that is where you will spring your trap. As he makes his return, you attempt to squeeze past him, forcing your enormous rear up against his crotch. As you wiggle against him, it becomes apparent that something hard is slowly snaking its way between your expansive cheeks. Your suspicions are confirmed when you feel his hands grab your hips as he begins to dry hump you. Before he can ruin the moment, and his pants, you quickly guide him into one of the many stairwells hidden throughout the penthouse. By the time you've grabbed hold of the rail, he's undone his pants, managed to pull your dress up over your immense bottom, and lined himself up with your moist slit. You push back against him, biting your lip as the length of his member slides into you, letting him know that you are ready as your shelf of an ass blocks any view of your crotch from above. He takes you hard against the railing, enjoying the motion of your butt slamming against him. With a joyous groan, he pulls out and blows his load in your crack and up your back. As he helps you upright, you lean back give him a kiss on the cheek before heading off to change. He returns to the party, and from what your serving slaves tell you later, seems to have boasted about how well you do business. @@.green;Your reputation has slightly improved,@@ though nowhere near as much as his.
 				<<run repX(100, "event")>>
 				<<set $desc = "a thank-you note from a male arcology owner of your acquaintance with an attached list of natural supplements and diets to add even more weight to your rear">>
 				<<set $trinkets.push($desc)>>
 			<<else>>
-				You adjust your dress to better hug your huge <<if $PC.buttImplant == 1>>fake ass<<else>>soft butt<</if>> and head over to join to the conversation between him and the woman trying to convince him to invest in her solar power concern. Your attempts, at first, appear to be working as he begins to stutter and lose focus on the topic at hand, but he soon apologizes, wraps an arm around your waist, pulls you close and starts groping your enormous rear. He returns to discussing business while using you like a stress ball and manages to seal a rather lucrative business deal. He gives you an appreciative slap on the fanny and heads on his way, leaving you dumbfounded at what just happened. His reputation has improved significantly, while your status @@.red;as nothing more than stress relief@@ is made clear.
+				You adjust your dress to better hug your huge <<if $PC.buttImplant != 0>>fake ass<<else>>soft butt<</if>> and head over to join to the conversation between him and the woman trying to convince him to invest in her solar power concern. Your attempts, at first, appear to be working as he begins to stutter and lose focus on the topic at hand, but he soon apologizes, wraps an arm around your waist, pulls you close and starts groping your enormous rear. He returns to discussing business while using you like a stress ball and manages to seal a rather lucrative business deal. He gives you an appreciative slap on the fanny and heads on his way, leaving you dumbfounded at what just happened. His reputation has improved significantly, while your status @@.red;as nothing more than stress relief@@ is made clear.
 				<<run repX(-500, "event")>>
 			<</if>>
 		<</if>>
@@ -95,7 +95,7 @@ He strikes a fine balance in conversation with you, firm enough to not overpower
 	<</link>>
 <</if>>
 <<if $mercenaries > 0>>
-	<<if $PC.belly < 5000 && $PC.boobsBonus < 2 && $PC.butt < 2>>
+	<<if $PC.belly < 5000 && $PC.boobs < 1200 && $PC.butt < 4>>
 		<br><<link "Quickly arrange an anonymous night out for him">>
 			<<replace "#result">>
 				You immediately enlist $assistantName to help you make some hasty preparations, and then send him a message asking him if he'd like to spend a night out with you, as a couple of unremarkable citizens. He glances at you with a curious expression, and you direct him to a side room. He finds you there, changing into the heavy, anonymizing armor of one of your mercenaries; you have a male suit for him, too. Once you're both suited up, you move to show him how to activate the face-obscuring helmet, but you find that he's already got it on and active. "This," he says, "is either the best or the stupidest date idea I have ever heard. Let's fucking do this." You pass a mercenary on your way out onto the club, and he cannot resist giving you a thumbs up, which your fellow arcology owner fortunately fails to notice. You patrol for a while, using internal comms to joke about life as an arcology owner, something he clearly gets to do too infrequently. You don't mind the chance, either. Your mercenaries frequently spend time together off duty, so nobody sees anything unusual about a male and female in mercenary armor sharing a milkshake at a dairy bar, even when they start to engage in increasingly rough public flirting, armor and all. Later, your slaves are obliged to pick up and sort a trail of discarded armor pieces leading from the entry to your penthouse all the way to your suite, which is now emitting the indistinct sounds of very energetic sex. A few hours later, when you're showering up together so he can head back to his domain, he looks at you and says seriously, "That was pretty fun. If things ever go to shit, I wouldn't mind wearing that armor for real." Your mercenaries cannot keep their mouths shut, for once, and the almost unbelievably juicy story of the arcology owners wearing borrowed armor to go on an anonymous date spreads like wildfire. @@.green;Your reputation has greatly improved.@@
diff --git a/src/pregmod/reMaleCitizenHookup.tw b/src/pregmod/reMaleCitizenHookup.tw
index f29374cfe4661457ce57db65b39771f4794b66fd..bba31b1efa62ca0fb5b8265d2ee4a84d612f5f3e 100644
--- a/src/pregmod/reMaleCitizenHookup.tw
+++ b/src/pregmod/reMaleCitizenHookup.tw
@@ -233,7 +233,7 @@ He's clearly attracted to you; even the most consummate actor would have difficu
 	<<case "Gender Radicalist">>
 		perky fake breasts and a stiff dick as you gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.belly >= 5000>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 	<<case "Gender Fundamentalist">>
-		a fine body with a proud erection. Before you can tip him onto your bed; he deftly slips you out of your evening dress, scoops you up and places you, back first, at the edge of your bed. He dominantly spears your pussy and begins thrusting powerfully. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.belly >= 5000>>begins massaging your rounded middle<<else>>groping your <<if $PC.boobsBonus > 0>>huge breasts<<elseif $PC.boobsBonus < 0>>cute breasts<<elseif $PC.boobs == 1>>ample breasts<<else>>butt<</if>><</if>>, distracting you from the situation and allowing you to be overwhelmed by pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. Through the haze of your lust, you can't help but feel your drink tasted off.
+		a fine body with a proud erection. Before you can tip him onto your bed; he deftly slips you out of your evening dress, scoops you up and places you, back first, at the edge of your bed. He dominantly spears your pussy and begins thrusting powerfully. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.belly >= 5000>>begins massaging your rounded middle<<else>>groping your <<if $PC.boobs >= 1000>>huge breasts<<elseif $PC.boobs >= 650>>ample breasts<<elseif $PC.boobs >= 300>>cute breasts<<else>>butt<</if>><</if>>, distracting you from the situation and allowing you to be overwhelmed by pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. Through the haze of your lust, you can't help but feel your drink tasted off.
 		<<set $PC.forcedFertDrugs += 2>>
 	<<case "Repopulationist">>
 		<<set $PC.forcedFertDrugs += 10>>
@@ -250,31 +250,25 @@ He's clearly attracted to you; even the most consummate actor would have difficu
 		a massive fake bubble butt to go with his extended erection, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, taking as much as you physically can, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.belly >= 5000>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 	<<case "Youth Preferentialist">>
 		<<if $minimumSlaveAge < 13>>
-			that he is adorable, but may not be satisfying, and gently carry him to your bed. You tease him as you remove your evening dress, crawl next to him, pull him over yourself and guide his tiny penis into you. Instinct quickly takes hold as he begins thrusting and hugs tightly to your <<if $PC.belly >= 5000>>pregnant belly<<else>>larger body<</if>>. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You hold him close and buck against him, trying to make up for his size, until he releases a small load into your depths. You follow not long after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Exhausted, he passes out <<if $PC.belly >= 5000>>against your middle<<elseif $PC.boobsBonus > 0>>in your huge bust<<elseif $PC.boobsBonus < 0>>in your cute breasts<<elseif $PC.boobs == 1>>in your ample bust<<else>>atop you<</if>>; where he lies until you finish playing with him and move him beside you. You return to your needy crotch to finish up as he snuggles closer to your side.
+			that he is adorable, but may not be satisfying, and gently carry him to your bed. You tease him as you remove your evening dress, crawl next to him, pull him over yourself and guide his tiny penis into you. Instinct quickly takes hold as he begins thrusting and hugs tightly to your <<if $PC.belly >= 5000>>pregnant belly<<else>>larger body<</if>>. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You hold him close and buck against him, trying to make up for his size, until he releases a small load into your depths. You follow not long after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Exhausted, he passes out <<if $PC.belly >= 5000>>against your middle<<elseif $PC.boobs >= 1000>>in your huge bust<<elseif $PC.boobs >= 650>>in your ample bust<<elseif $PC.boobs >= 300>>in your cute breasts<<else>>atop you<</if>>; where he lies until you finish playing with him and move him beside you. You return to your needy crotch to finish up as he snuggles closer to your side.
 		<<elseif $minimumSlaveAge < 18>>
 			that his whole body looks fresh, untouched, and very young, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.belly >= 5000>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 		<<else>>
 			that his whole body looks fresh, untouched, and quite young, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.belly >= 5000>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 		<</if>>
 	<<case "Maturity Preferentialist">>
-		a mature body featuring an erection with years of experience. Before you can tip him onto your bed; he deftly slips you out of your evening dress, scoops you up and places you, back first, at the edge of your bed. He dominantly spears your pussy and begins thrusting, hitting all the right places. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.belly >= 5000>>begins massaging your rounded middle<<else>>groping your <<if $PC.boobsBonus > 0>>huge breasts<<elseif $PC.boobsBonus < 0>>cute breasts<<elseif $PC.boobs == 1>>ample breasts<<else>>butt<</if>><</if>>, calming you and allowing you to give in to the pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, despite his age, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
+		a mature body featuring an erection with years of experience. Before you can tip him onto your bed; he deftly slips you out of your evening dress, scoops you up and places you, back first, at the edge of your bed. He dominantly spears your pussy and begins thrusting, hitting all the right places. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.belly >= 5000>>begins massaging your rounded middle<<else>>groping your <<if $PC.boobs >= 1000>>huge breasts<<elseif $PC.boobs >= 650>>ample breasts<<elseif $PC.boobs >= 300>>cute breasts<<else>>butt<</if>><</if>>, calming you and allowing you to give in to the pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, despite his age, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 	<<case "Slimness Enthusiast">>
 		lean muscles, a smooth waist, trim hips and a cute little ass, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.belly >= 5000>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 	<<case "Asset Expansionist">>
 		an inhumanly enormous ass to counterbalance those enormous balls and a semi-hard cock, unable to become fully erect. You have to struggle to get him onto your bed. You tease him as you remove your evening dress, crawl over him and
 		<<if $PC.newVag == 1>>
 			impale yourself on his monster shaft as far as you can, quivering in joy at its girth filling you.
-		<<elseif $PC.career == "escort">>
+		<<elseif $PC.vigina > 3>>
 			impale yourself on his monster shaft as far as you can, quivering in joy at its girth filling you like nothing does lately.
-		<<elseif $PC.births >= 10>>
-			impale yourself on his monster shaft as far as you can, quivering in joy at its girth filling you like nothing does lately.
-		<<elseif $PC.career == "servant">>
-			impale yourself on his monster shaft as far as you can, quivering in joy at how full you are.
-		<<elseif $PC.births > 2>>
+		<<elseif $PC.vigina > 2>>
 			impale yourself on his monster shaft as far as you can, quivering in joy at how full you are.
-		<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
-			barely manage to get his cockhead into your pussy.
-		<<elseif $PC.births > 0>>
+		<<elseif $PC.vagina > 1>>
 			barely manage to get his cockhead into your pussy.
 		<<else>>
 			find he is too big to fit in you. You settle for the tip instead.
@@ -288,33 +282,33 @@ He's clearly attracted to you; even the most consummate actor would have difficu
 			Feeling like you should heed his advice, you slide off his shaft and down to his face, planting your soaked cunt over his mouth. Reaching around behind you as he eats you out, you tease his twitching rod. As you climax, you accidentally squeeze his vulnerable balls, provoking his own massive orgasm. Shouting in surprise, you hug as close to him as you can as cascade of cum pours onto the two of you. You roll off of him and laugh at the mess your servants are going to have to clean up.
 		<<else>>
 			Quivering with your own pending orgasm, you ignore him and keep going, achieving climax as he blows a near endless load into your womb.
-			<<if $PC.cumTap == 0>>
+			<<if $PC.skill.cumTap == 0>>
 				The quantity of cum quickly overwhelms you and backflows out of you as you fall into your lover's waiting arms. He lays you to his side as he continues showering you both with cum.
-				<<set $PC.cumTap++>>
-			<<elseif $PC.cumTap < 5>>
+				<<set $PC.skill.cumTap++>>
+			<<elseif $PC.skill.cumTap < 5>>
 				You last for several seconds before the sheer size of his load forces you off his dick and into his waiting arms. He lays you to his side, gently patting you cum bloated middle, as he continues showering you both with cum.
-				<<set $PC.cumTap++>>
-			<<elseif $PC.cumTap < 10>>
+				<<set $PC.skill.cumTap++>>
+			<<elseif $PC.skill.cumTap < 10>>
 				You manage to take a respectable portion of his load before it begins backflowing out of you. He massages your cum-filled belly as he finishes unloading across your back. "Most girls can't even come close to handling it at all, I'm impressed."
-				<<set $PC.cumTap++>>
-			<<elseif $PC.cumTap < 15>>
+				<<set $PC.skill.cumTap++>>
+			<<elseif $PC.skill.cumTap < 15>>
 				You manage to take nearly half of his load before it begins backflowing out of you. He cradles your cum-stuffed belly as he finishes unloading across your back. "Few girls can even come close to handling that much of it, I'm impressed." He helps you down, making sure to provide extra support for your huge, full-term looking belly.
-				<<set $PC.cumTap++>>
-			<<elseif $PC.cumTap < 20>>
+				<<set $PC.skill.cumTap++>>
+			<<elseif $PC.skill.cumTap < 20>>
 				You manage to take nearly two thirds of his load before it begins backflowing out of you. You swear he cums harder as he places his hands to your swelling middle, enjoying the growth until you look like a woman on the verge of childbirth. "Damn girl, you look like you're gonna pop, I'm impressed." He helps you down, making sure to provide extra support for your enormous, taut belly. He sensually massages it, coaxing as much cum from your hungry womb that he can. But in the end, he can only get you back to the size of a woman in her final trimester. You likely won't be returning to the party.
-				<<set $PC.cumTap++>>
-			<<elseif $PC.cumTap < 25>>
+				<<set $PC.skill.cumTap++>>
+			<<elseif $PC.skill.cumTap < 25>>
 				You manage to take nearly three fourths of his load before it begins backflowing out of you. You swear he cums harder as he places his hands to your swelling middle, enjoying the growth until you grow taut and your belly button pops out. By the time you can't take any more, you look like you are ready to burst with triplets. "Damn girl, just how stretchy are you? I'm impressed." He helps you down, making sure to provide extra support for your massive, straining belly. He sensually massages it, coaxing as much cum from your hungry womb that he can. But in the end, he can only get you back to the size of a woman in her final trimester. You likely won't be returning to the party.
-				<<set $PC.cumTap++>>
+				<<set $PC.skill.cumTap++>>
 			<<else>>
 				You manage to take his entire load without spilling a drop. You swear he cums harder as he places his hands to your swelling middle, enjoying the growth until you grow taut and your belly button pops out. By the time he's done, you look ready to birth octuplets. "I can't believe you took it all; incredible. Are you going to be OK?" He helps you down, making sure to provide extra support for your immense, straining belly. He sensually massages it, coaxing as much cum from your hungry womb that he can. But in the end, he can only get you back to the size of a woman in her final trimester. You likely won't be returning to the party.
-				<<set $PC.cumTap++>>
+				<<set $PC.skill.cumTap++>>
 			<</if>>
 		<</if>>
 	<<case "Pastoralist">>
 		soft, milk-fed body, and gently push him back onto your bed, giggling as his chubby belly jiggles. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.belly >= 5000>> (one that forces him to bear the weight of your heavy middle, and surprisingly comfortable given his belly) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 	<<case "Physical Idealist">>
-		a chiseled Adonis. Before you can tip him onto your bed; he deftly pulls you out of your evening dress, scoops you up, dominantly spears your pussy and begins thrusting powerfully while holding you. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly fucking you. You <<if $PC.belly >= 5000>>squirm in discomfort until he turns you around and gives your pregnancy room<<elseif $PC.boobsBonus > 0>>squirm in discomfort until he turns you around and uses his other arm to keep your huge breasts steady<<elseif $PC.boobsBonus < 0>>push your cute breasts against his firm pecs<<elseif $PC.boobs == 1>>push your <<if $PC.boobsBonus >= 0>>ample <</if>>breasts against his firm pecs<<else>>allow him pull your flat chest to his firm pecs<</if>>, before he starts showing off his strength. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
+		a chiseled Adonis. Before you can tip him onto your bed; he deftly pulls you out of your evening dress, scoops you up, dominantly spears your pussy and begins thrusting powerfully while holding you. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly fucking you. You <<if $PC.belly >= 5000>>squirm in discomfort until he turns you around and gives your pregnancy room<<elseif $PC.boobs >= 1000>>squirm in discomfort until he turns you around and uses his other arm to keep your huge breasts steady<<elseif $PC.boobs >= 650>>push your <<if $PC.boobs >= 900>>ample <</if>>breasts against his firm pecs<<elseif $PC.boobs >= 300>>push your cute breasts against his firm pecs<<else>>allow him pull your flat chest to his firm pecs<</if>>, before he starts showing off his strength. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 	<<case "Hedonistic">>
 		soft, well-fed body, and gently push him back onto your bed, giggling as his chubby belly jiggles. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.belly >= 5000>> (one that forces him to bear the weight of your heavy middle, and surprisingly comfortable given his belly) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. He's winded after just one go, but offers up a cache of snacks he was hiding as an apology. You snuggle up to each other and sensually feed one another until he is ready for round two.
 	<<case "Chattel Religionist">>
@@ -324,11 +318,11 @@ He's clearly attracted to you; even the most consummate actor would have difficu
 	<<case "Intellectual Dependency">>
 		a young body eager for sex, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.belly >= 5000>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 	<<case "Slave Professionalism">>
-		a mature body featuring an erection with years of experience. Before you can tip him onto your bed; he deftly slips you out of your evening dress, scoops you up and places you, back first, at the edge of your bed. He dominantly spears your pussy and begins thrusting, hitting all the right places. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.belly >= 5000>>shifts you to a position more befitting your gravidity<<else>>groping your <<if $PC.boobsBonus > 0>>huge breasts<<elseif $PC.boobsBonus < 0>>cute breasts<<elseif $PC.boobs == 1>>ample breasts<<else>>butt<</if>><</if>>, calming you and allowing you to give in to the pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and maneuvers you to a fresh position and begins anew, quickly bringing to a second orgasm and drawing an adorable moan out of you. His bag of tricks is nigh endless; you spend the night having sex in new and exciting ways.
+		a mature body featuring an erection with years of experience. Before you can tip him onto your bed; he deftly slips you out of your evening dress, scoops you up and places you, back first, at the edge of your bed. He dominantly spears your pussy and begins thrusting, hitting all the right places. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.belly >= 5000>>shifts you to a position more befitting your gravidity<<else>>groping your <<if $PC.boobs >= 1000>>huge breasts<<elseif $PC.boobs >= 650>>ample breasts<<elseif $PC.boobs >= 300>>cute breasts<<else>>butt<</if>><</if>>, calming you and allowing you to give in to the pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and maneuvers you to a fresh position and begins anew, quickly bringing to a second orgasm and drawing an adorable moan out of you. His bag of tricks is nigh endless; you spend the night having sex in new and exciting ways.
 	<<case "Petite Admiration">>
 		that he is adorable, and not lacking at all down there, and gently carry him to your bed. You tease him as you remove your evening dress, crawl next to him and pull him into you. He begins thrusting excitedly and hugs tightly to your <<if $PC.belly >= 5000>>pregnant belly<<else>>larger body<</if>>, clearly into how much bigger you are than him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.belly >= 5000>> (one that spares his tiny form most of the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 	<<case "Statuesque Glorification">>
-		a glorified titan. Before you can tip him onto your bed; he deftly pulls you out of your evening dress, scoops you up, dominantly spears your pussy and begins thrusting powerfully while holding you. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly fucking you. You <<if $PC.belly >= 5000>>squirm in discomfort until he turns you around and gives your pregnancy room<<elseif $PC.boobsBonus > 0>>squirm in discomfort until he turns you around and uses his other arm to keep your huge breasts steady<<elseif $PC.boobsBonus < 0>>push your cute breasts against his toned abs<<elseif $PC.boobs == 1>>push your <<if $PC.boobsBonus >= 0>>ample <</if>>breasts against his toned abs<<else>>allow him pull your flat chest to his toned abs<</if>>, before he really takes advantage of your size difference. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
+		a glorified titan. Before you can tip him onto your bed; he deftly pulls you out of your evening dress, scoops you up, dominantly spears your pussy and begins thrusting powerfully while holding you. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly fucking you. You <<if $PC.belly >= 5000>>squirm in discomfort until he turns you around and gives your pregnancy room<<elseif $PC.boobs >= 1000>>squirm in discomfort until he turns you around and uses his other arm to keep your huge breasts steady<<elseif $PC.boobs >= 650>>push your <<if $PC.boobs >= 900>>ample <</if>>breasts against his toned abs<<elseif $PC.boobs >= 300>>push your cute breasts against his toned abs<</if>>, before he really takes advantage of your size difference. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 	<<default>>
 		a hot young body, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobrium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.belly >= 5000>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you.
 	<</switch>>
diff --git a/src/pregmod/rePregInventor.tw b/src/pregmod/rePregInventor.tw
index 91c7afb1ff663e2c42800e5af8b89bf276cd5393..61281c4f61ddb5e124e6184c5abf30ddfeccabaa 100644
--- a/src/pregmod/rePregInventor.tw
+++ b/src/pregmod/rePregInventor.tw
@@ -83,7 +83,7 @@
 			<<= VCheck.Vaginal()>>
 		<<elseif $activeSlave.trust < -20>>
 			You then fuck $him, hard, to get your point across, ignoring $his moans of pain and the loud complaints from $his overfilled womb as it barely holds together under your assault. When you finally get bored and
-			<<if $PC.dick == 1>>
+			<<if $PC.dick != 0>>
 				shoot your load into $his
 					<<if ($activeSlave.vagina >= 10)>>
 						gaping pussy,
@@ -137,13 +137,13 @@
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
 		Being so close to the near-bursting womb of your slave for so long has got your loins stirring, and you hop up onto your desk, bringing your
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			dick
 		<<else>>
 			vagina
 		<</if>>
 		level with the broodmother's mouth. You tell $him that you could be convinced to let $him explore $his interests. $He squeals in delight and
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			wraps $his
 			<<if ($activeSlave.lips > 95)>>
 				plush mouth pussy
@@ -177,7 +177,7 @@
 		<</if>>
 		<<set $activeSlave.counter.oral++, $oralTotal++>>
 		While you're not interested in giving $him the funds necessary to make some of $his more outlandish ideas a reality, you're certainly excited by $his ideas regarding positions and hyperpregnant vaginal play. You tell $him to go for those and $he trills in delight, vibrating $his tongue
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			along your dick and sending you over the edge. $He swallows your load, licking $his lips.
 			<<if canTalk($activeSlave)>>
 				"Make <<s>>ure to keep feeding me your cum," $he <<say>>s flirtatiously. "I'm eating for a //lot// more than two, after all."
@@ -229,7 +229,7 @@
 			<</if>>
 		<</if>>
 		Picturing the actions as $he describes them gets
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			you rock hard in short order
 		<<else>>
 			your pussy dripping with need in short order
@@ -247,7 +247,7 @@
 			press down on $his petite little ass with your hips
 		<</if>>
 		and begin teasing $his pussy with
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			the tip of your dick.
 		<<else>>
 			your fingers.
@@ -266,7 +266,7 @@
 		Despite $his complaints, $he doesn't seem to mind once you start really fucking $him senseless.
 		<<= VCheck.Vaginal()>>
 		Once you've finished melting your swollen "little" sex slave into a puddle of sexually satisfied goo,
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			shooting your load into $his wanting pussy,
 		<<else>>
 			collapsing into orgasm on $his bloated body,
@@ -309,7 +309,7 @@
 		<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
 		<br><br>
 		With gentle coaching from your slave, you rotate the two of you in the air so that $he can ride you reverse cowgirl style. <<= VCheck.Vaginal(2)>> You then switch $him around, allowing $his belly to eclipse your vision entirely as $he rides you in the traditional cowgirl position. The contents of $his womb have exploded its weight to the point that this position would have previously been hazardous to both your health and $hers, if not completely impossible, and the illusion of having sex while perpetually on the knife's edge of being flattened by literal tons of baby packed slave flesh sends you over the edge. You
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			ejaculate into $him, your cum dripping out of $his vagina, splattering on the ground below.
 		<<else>>
 			orgasm as you transition into scissoring with your tightly packed broodmare, keeping the fantasy of being crushed by $his body foremost in your mind.
@@ -435,7 +435,7 @@
 		<</if>>
 		<br><br>
 		It is only then that you realize that
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			your dick is as hard as a length of steel.
 		<<else>>
 			your kitty is positively drowning in fem-cum.
@@ -670,7 +670,7 @@
 		<br><br>
 		<<if canTalk($activeSlave)>>
 			"Do you like it, <<Master>>?" $he asks. "It'<<s>> built to grow and change a<<s>> your <<s>>lave<<s>> do. It <<sh>>ould be the perfect <<s>>i<<z>>e to <<s>>upport them, no matter what that <<s>>i<<z>>e might be. And if we ever get too big for even that, well..." $he smiles and you realize that, between the feeling of $his heavy, slick mass pressing into you and the rejuvenating effect of the gel,
-			<<if $PC.dick == 1>>
+			<<if $PC.dick != 0>>
 				you're hard as a rock and
 			<<else>>
 				your pussy is absolutely weeping and you are
@@ -679,7 +679,7 @@
 		<<else>>
 			<<if hasAnyArms($activeSlave)>>
 				$He motions to you, explaining that the pool is designed to grow to accommodate and support its users, then smiles. You realize that, between the feeling of $his heavy, slick mass pressing into you and the rejuvenating effect of the gel,
-				<<if $PC.dick == 1>>
+				<<if $PC.dick != 0>>
 					you're hard as a rock and
 				<<else>>
 					your pussy is absolutely weeping and you are
@@ -687,7 +687,7 @@
 				as refreshed and eager to fuck as you've been in quite a while.
 			<<else>>
 				Your personal assistant explains that the pool has been designed to grow to accommodate and support its users. You're only half-listening to what $he is saying, however, as you have suddenly realized that, between the feeling of your slave's heavy, slick mass pressing into you and the rejuvenating effect of the gel,
-				<<if $PC.dick == 1>>
+				<<if $PC.dick != 0>>
 					you're hard as a rock and
 				<<else>>
 					your pussy is absolutely weeping and you are
@@ -712,7 +712,7 @@
 			"Oh no," $he <<say>>s in mock dismay<<if $activeSlave.skill.combat > 0>>, lowering $his guard<</if>>. "My <<Master>> i<<s>> going to wre<<s>>tle me into <<s>>ubmi<<ss>>ion in thi<<s>> hot, heavy goo pool. Whatever will I do?"
 		<</if>>
 		You circle around $him, slowly approaching $him, and $he uses the pool's mobility assistance tools to rotate $his body so that $he can just barely keep you in $his gaze, drizzling gel over $his belly as $he keeps it between you and $him to use as a protective barrier. When you're close enough to touch the apex of $his fecund body, you leap forward through the gel, diving to one side and disappearing under it. Your momentum carries you a reasonable distance despite the resistance of the thick substance and you pop back up directly behind $him. You grab $him under $his armpits, pressing your
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			rigid dick against $his
 		<<else>>
 			engorged pussy lips against $his
@@ -797,16 +797,16 @@
 		<<else>>
 			a bit of a reputation already,
 		<</if>>
-		you could significantly improve $his chances to impress on the show with a little bit of extra investment in commercial spots<<if $PC.hacking >= 100>> or a tweaking of FCTV algorithms<</if>>.
+		you could significantly improve $his chances to impress on the show with a little bit of extra investment in commercial spots<<if $PC.skill.hacking >= 100>> or a tweaking of FCTV algorithms<</if>>.
 	<</if>>
 
 	<br><br>
 	<span id="result">
-	<<if $PC.hacking >= 100>>
+	<<if $PC.skill.hacking >= 100>>
 		<<link "Manipulate the FCTV algorithms">>
 			<<EventNameDelink $activeSlave>>
 			<<replace "#result">>
-			You <<if $PC.hacking < 70>>bribe an employee to <</if>>tweak the randomized search algorithms for FCTV. While your hyperbroodmother is being interviewed concerning $his inventions, users browsing FCTV using the randomize channel function will be much more likely to be directed to the show. By the day of the interview, you're confident that many users will be watching as your slave sells your vision for the world's future.
+			You <<if $PC.skill.hacking < 70>>bribe an employee to <</if>>tweak the randomized search algorithms for FCTV. While your hyperbroodmother is being interviewed concerning $his inventions, users browsing FCTV using the randomize channel function will be much more likely to be directed to the show. By the day of the interview, you're confident that many users will be watching as your slave sells your vision for the world's future.
 			<br><br>
 			That done, you settle in to watch.
 			<br><br>
diff --git a/src/pregmod/saAgent.tw b/src/pregmod/saAgent.tw
index a127c9ab3a3d7a88fcf3593997d146571535c961..72efa7765d9d2d37cd57a99dcb214d63ab84ee53 100644
--- a/src/pregmod/saAgent.tw
+++ b/src/pregmod/saAgent.tw
@@ -143,7 +143,7 @@
 <<if ($slaves[$i].preg > 0)>> /*EFFECTS OF PREGNANCY*/
 	<<if $slaves[$i].preg == $slaves[$i].pregData.normalBirth/8>> /* !!! Very bad condition logic - with pregnancy control drugs can be not triggered. Or may be trigged by broodmother several times. Need to be reworked. !!! */
 		<<if $slaves[$i].pregSource == -1>>
-			<<set $PC.slavesKnockedUp++>>
+			<<set $PC.counter.slavesKnockedUp++>>
 		<<elseif $slaves[$i].pregSource > 0>>
 			<<set _babyDaddy = findFather($slaves[$i].pregSource)>>
 			<<if def _babyDaddy>>
diff --git a/src/pregmod/saPorn.tw b/src/pregmod/saPorn.tw
index 3a7ce714330b5616429cbd9db32fe64704cfe463..15c074e63ef8d0f0132d9c72d9235ddb470cf065 100644
--- a/src/pregmod/saPorn.tw
+++ b/src/pregmod/saPorn.tw
@@ -91,9 +91,9 @@
 		$His face chases off all but the most desperate viewers.
 	<</if>>
 
-	<<if $PC.hacking > 10>>
+	<<if $PC.skill.hacking > 10>>
 		With your hacking skills, you manage to tweak search algorithms to display $his content more often.
-	<<elseif $PC.hacking < 0>>
+	<<elseif $PC.skill.hacking < 0>>
 		With your lack of skill with computers you manage to misidentify $his content, complicating searches.
 		<<run IncreasePCSkills('hacking', 0.1)>>
 	<</if>>
diff --git a/src/pregmod/seBurst.tw b/src/pregmod/seBurst.tw
index a22fd3a5e6bdce7d155de5387069aaa2de78d99d..229a65e612bd83c24a1ba706857bf907aeadc1a1 100644
--- a/src/pregmod/seBurst.tw
+++ b/src/pregmod/seBurst.tw
@@ -18,7 +18,7 @@
 				<<set _others++>>
 				<<set _fathers.push("some man's")>>
 			<<elseif $slaves[_b].curBabies[_cb].fatherID == -1>>
-				<<set $PC.slavesFathered++>>
+				<<set $PC.counter.slavesFathered++>>
 				<<set _PC++>>
 				<<set _fathers.push("your")>>
 			<<elseif $slaves[_b].curBabies[_cb].fatherID == -2>>
diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw
index ba109646e0c4612f530ddc9057dcbd4cae8814c9..6c657bd23578010b5bb8cacddfcf482e5cdeb24a 100644
--- a/src/pregmod/seFCTVshows.tw
+++ b/src/pregmod/seFCTVshows.tw
@@ -209,7 +209,7 @@
 			</div>
 		<</if>>
 		The segment seems to be more of a conversational piece. The two hosts are sitting next to each other on one couch. Samuel Klein, a handsome man with dark blonde hair and a winning smile, can't help but be overshadowed by his cohost. The popular SlaveAnchor Jules might be mistaken for just another gorgeous face and body, but it's her brilliant wit and sure-footed advocacy that made her famous. She's wearing her usual slave anchor collar, and her large natural breasts are only covered by the standard FCNN pasties, leaving the perky flesh free to jiggle enticingly. On this show her lower half is revealed; it's usually hidden behind a desk. The dark red material of her narrow panties matches her auburn hair, and reveals her broad hips and long slender legs.
-		<br><br>The camera cuts back to two distinguished looking gentlemen, one is labeled by the screen as medical researchers. <<if $PC.medicine == 100>>You vaguely recognize both of them from your time studying medicine. <</if>>One of them continues the conversation, apparently answering a question. "That's right, the results of our research tell us what everyone already suspected, but now with an indisputable weight of evidence behind it." The other nods and continues, "our meta analysis examines over two decades of data, and nearly 6000 independent studies. We can safely say that free city slaves are healthier than the average person living anywhere in the old world. While a few of the wealthiest countries of the old world may surpass one or two areas, our slaves have better nutrition, standard of living, are more psychologically stable, have longer lives, and are happier on average as well." The first gentleman interjects, "We even found strong evidence that the higher sexual tempo and libido-stimulating training given to sex slaves greatly contributes to their life span; they live even longer than the average slave, and even look younger than their age."
+		<br><br>The camera cuts back to two distinguished looking gentlemen, one is labeled by the screen as medical researchers. <<if $PC.skill.medicine == 100>>You vaguely recognize both of them from your time studying medicine. <</if>>One of them continues the conversation, apparently answering a question. "That's right, the results of our research tell us what everyone already suspected, but now with an indisputable weight of evidence behind it." The other nods and continues, "our meta analysis examines over two decades of data, and nearly 6000 independent studies. We can safely say that free city slaves are healthier than the average person living anywhere in the old world. While a few of the wealthiest countries of the old world may surpass one or two areas, our slaves have better nutrition, standard of living, are more psychologically stable, have longer lives, and are happier on average as well." The first gentleman interjects, "We even found strong evidence that the higher sexual tempo and libido-stimulating training given to sex slaves greatly contributes to their life span; they live even longer than the average slave, and even look younger than their age."
 		<br><br>The camera switches back to the two anchors, showing an excited Jules hefting and bouncing her tits. "They've barely sagged at all since they stopped growing, now I know why!"
 		<br><br>As the AnchorSlave continues to squeeze, one of the researchers answers from off camera. "That's right, it can be rather amazing. To tell you the truth, we didn't believe it at first, but the evidence made it too hard to ignore." Jules starts looking toward the backstage area trying to signal someone as the other researcher continues. "It's also important not to wear a bra unless you're doing high-impact cardio. We've known since the mid 20th century that wearing bras causes sagging; bras devastate the breasts of <<if $seePreg == 0>><i>friendly</i><<else>>postpartum<</if>> women in particular, and promote breast cancer... Despite countless decades-long studies showing us this, the old world insists on forcing women to wear..."
 		<br><br>It seems that Jules finally got the approval she was looking for, because she immediately reached down between her legs, causing the researcher to distractedly forget what he was saying. Apparently the panties she's wearing are of the dildo variety, because when she removes her hand you can see a tell-tale green indicator light glowing on the front of them. A cute rosy flush comes to Jules cheeks before she apologizes and urges the pair of researchers to continue.
@@ -762,7 +762,7 @@
 	<<else>>
 		It looks like the random function chose
 	<</if>>
-	to play an educational program on arcologies titled: "Architecture + Ecology = Arcology". <<if $PC.engineering > 50>>The information is likely to be far too simplistic, considering your knowledge of engineering, but you watch anyway to see how most of your citizens view the massive structures.<<else>>Your practical experience means that this program is unlikely to tell you anything you don't already know, but you watch anyway to see how an average citizen views an arcology.<</if>> A likely-artificial voice of an older man narrates while the program displays video to demonstrate the topic being narrated. The show looks crisp and professional, but you can tell it doesn't have the budget that the more sexually-charged shows do.
+	to play an educational program on arcologies titled: "Architecture + Ecology = Arcology". <<if $PC.skill.engineering > 50>>The information is likely to be far too simplistic, considering your knowledge of engineering, but you watch anyway to see how most of your citizens view the massive structures.<<else>>Your practical experience means that this program is unlikely to tell you anything you don't already know, but you watch anyway to see how an average citizen views an arcology.<</if>> A likely-artificial voice of an older man narrates while the program displays video to demonstrate the topic being narrated. The show looks crisp and professional, but you can tell it doesn't have the budget that the more sexually-charged shows do.
 	<br><br>
 	<<set $randShow = random(2)+1>>
 	<<if $randShow == 1 && $showSeven > 3 || $showSeven == 1>>
@@ -1092,7 +1092,7 @@
 			"I told you it wouldn't work, <<Master>>. Plu<<s>> you know you can touch the<<s>>e anytime!" $Concubine.slaveName shakes $his chest at you.
 		<</if>>
 	<<elseif $showEleven > 1>>
-		You could always order a crate to play around with. Who knows, maybe it'll actually work?<<if $PC.dick == 1>> At the very least it should make for some decent lubricant for a titfuck.<</if>>
+		You could always order a crate to play around with. Who knows, maybe it'll actually work?<<if $PC.dick != 0>> At the very least it should make for some decent lubricant for a titfuck.<</if>>
 		<br>
 		<span id="called">
 			<<link "Place an order">>
@@ -1104,7 +1104,7 @@
 			<</link>> // This will cost <<print cashFormat(Math.trunc(50 * $upgradeMultiplierTrade))>> //
 		</span>
 	<<else>>
-		You could always order a crate to play around with. Who knows, maybe it'll actually work?<<if $PC.dick == 1>> At the very least it should make for some decent lubricant for a titfuck.<</if>>
+		You could always order a crate to play around with. Who knows, maybe it'll actually work?<<if $PC.dick != 0>> At the very least it should make for some decent lubricant for a titfuck.<</if>>
 		<<if $Concubine != 0>>
 			<<run Enunciate($Concubine)>>
 			<<setLocalPronouns $Concubine>>
@@ -1115,10 +1115,10 @@
 			<<else>>
 				$Concubine.slaveName <<if hasAnyArms($Concubine)>>cups<<else>>considers<</if>> $his breasts. <<if canTalk($Concubine)>>"What a joke. I'm <<s>>ure it doe<<s>>n't work, plu<<s>> don't you think they are lovely enough already, <<Master>>?"<<else>>$He scoffs with doubt before proudly sticking out $his chest.<</if>> $He bounces $his tits for you. You'll have to agree with $him; not a bit of sag to them.
 			<</if>>
-			<<if $PC.boobsBonus > 2 && $PC.boobsImplant == 0>>
+			<<if $PC.boobs >= 1400 && $PC.boobsImplant == 0>>
 				$He slides closer to you, <<if hasAnyArms($Concubine)>>wraps <<if hasBothArms($Concubine)>>an<<else>>$his<</if>> arm around your back, and grabs<<else>>pushing $his head against<</if>> your huge breasts. <<if canTalk($Concubine)>>"Oh <<Master>>! It feel<<s>> like YOU might need it!" $He <<if hasAnyArms($Concubine)>>jiggles your boobs in $his hand<<if hasBothArms($Concubine)>>s<</if>><<else>>nuzzles further into your rack<</if>>.<<else>>$He <<if hasAnyArms($Concubine)>>jiggles your huge boobs in $his hand<<if hasBothArms($Concubine)>>s<</if>><<else>>nuzzles into your huge rack<</if>>. $He's calling you saggy!<</if>> You take that as an open invitation and throw the covers over the two of you so you can have a little fun before bed.
 			<</if>>
-		<<elseif $PC.boobsBonus > 2 && $PC.boobsImplant == 0>>
+		<<elseif $PC.boobs >= 1400 && $PC.boobsImplant == 0>>
 			You cup your huge breasts. They're pretty large and you swear they've been drooping a little lately; maybe you could benefit from this cream...
 		<</if>>
 		<br>
diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw
index 71e34c16cff2fe3f501d90f5307d20a2fb23089c..cacf622568031efecb3abaabc6d42f76877664cd 100644
--- a/src/pregmod/sePlayerBirth.tw
+++ b/src/pregmod/sePlayerBirth.tw
@@ -17,7 +17,8 @@ PC.pregSource documentation
 -9 - Futanari Sister
 */
 
-<<if $PC.births == 0>>
+/* expand me with new variables to behave like slave birth */
+<<if $PC.counter.birthsTotal == 0>>
 	<<set _badBirth = 30+($PC.pregType*4)>>
 <<else>>
 	<<set _badBirth = 10>>
@@ -40,7 +41,7 @@ PC.pregSource documentation
  * I assume that dead fetuses do not count to reputation, etc., and PC manages to hide them. This mainly for future possibilities, or early birth triggers.
  * PC will not support partial birth - even if she happens to be pregnant at different stages at once, undeveloped babies will be dead as result.
  * _stilBirth currently not used - it's just for future improvements. */
-<<set $PC.preg = 0, $PC.pregKnown = 0, $PC.labor = 0, $PC.births += _curBabies>>
+<<set $PC.preg = 0, $PC.pregKnown = 0, $PC.labor = 0, $PC.counter.birthsTotal += _curBabies>>
 
 /* setting the tallies for each type of child born */
 <<set _others = 0, _self = 0, _citizens = 0, _oldMaster = 0, _arcOwner = 0, _clients = 0, _elite = 0, _lab = 0, _futaS = 0, _slavesLength = 0, _babies = []>>
@@ -87,7 +88,7 @@ PC.pregSource documentation
 
 <<if (_elite > 0 || _self > 0) && $arcologies[0].FSRestart != "unset">> /* for simplicity's sake, not going to allow other embryos to be added during an elite pregnancy */
 	Since you are heavily pregnant with <<if (_elite + _self >= 2)>>children<<else>>a child<</if>> of the Societal Elite, you are quickly taken to the finest clinic the arcology has to offer. After a quick sedation, you awake to find your belly no longer round with child; that, and a note stating your next breeding partner and a notice that <<print cashFormat(50000)>> has been added to your account. The Societal Elite are @@.green;very pleased@@ at their new addition to the ranks. You just wish you could have seen your <<if _curBabies == 1>>little <<if _gender == "XX">>girl<<else>>boy<</if>> before they took <<if _gender == "XX">>her<<else>>him<</if>><<else>>babies before they took them<</if>> away to be raised into <<if _curBabies > 1>>proper members<<else>>a proper member<</if>> of the future world.
-	<<set $PC.birthElite += _elite>>
+	<<set $PC.counter.birthElite += _elite>>
 	<<if $PC.ovaryAge >= 55 && $playerAging == 2>>
 		You are getting too old to have children; you feel like <<if _curBabies > 1>>they<<else>>this<</if>> may be your last.
 		<<set $PC.preg = -2>>
@@ -140,7 +141,7 @@ While sitting at your desk planning your day, @@.lime;your water breaks,@@ thoro
 	<</if>>
 <</if>>
 <br><br>
-You arrange yourself to give birth, relaxing until your body urges you to begin bearing down and pushing your child into the world.<<if _concubinePresent == 1>>$Concubine.slaveName settles in beside you, one hand soothing your contraction wracked middle and the other <<if $PC.dick == 1>>stroking your hardening dick<<else>>teasing your stiffening clit<</if>>.<</if>>
+You arrange yourself to give birth, relaxing until your body urges you to begin bearing down and pushing your child into the world.<<if _concubinePresent == 1>>$Concubine.slaveName settles in beside you, one hand soothing your contraction wracked middle and the other <<if $PC.dick != 0>>stroking your hardening dick<<else>>teasing your stiffening clit<</if>>.<</if>>
 <<if _badBirth > random(1,100)>> /* shits going wrong */
 	<<if $Nurse != 0>>
 		<<setLocalPronouns $Nurse>>
@@ -224,10 +225,10 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 		<<setLocalPronouns $Nurse>>
 		Under $Nurse.slaveName's guidance, childbirth is a breeze for you.
 		<<if $PC.pregType == 1>>
-			<<if _concubinePresent == 1>> Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls > 1>> An orgasm that resulted in $Concubine.slaveName, $Nurse.slaveName, and your newborn getting sprayed with cum.<</if>><</if>> $Nurse.slaveName cuts the cord, swaddles your child, and hands you @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>.@@
+			<<if _concubinePresent == 1>> Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in $Concubine.slaveName, $Nurse.slaveName, and your newborn getting sprayed with cum.<</if>><</if>> $Nurse.slaveName cuts the cord, swaddles your child, and hands you @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>.@@
 		<<else>>
 			<<if _concubinePresent == 1>>
-				Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your first child entered the world.<<if $PC.balls > 1>> An orgasm that resulted in $Concubine.slaveName, $Nurse.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over: before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious. $Concubine.slaveName slides in behind you to snuggle with you as you return to your senses.
+				Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your first child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in $Concubine.slaveName, $Nurse.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over: before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious. $Concubine.slaveName slides in behind you to snuggle with you as you return to your senses.
 			<<else>>
 				With one out, you realize
 				<<if $PC.pregType >= 6>>
@@ -256,12 +257,12 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 		With $Bodyguard.slaveName watching over you, you feel safe enough to let your guard down and focus on giving birth. Once you are relaxed, you feel your child begin to inch down your birth canal. Before long you've completed the job without any trouble.
 		<<if $PC.pregType == 1>>
 			<<if _concubinePresent == 1>>
-				Or it would have, had $Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls > 1>> An orgasm that resulted in $Concubine.slaveName, $Bodyguard.slaveName, and your newborn getting sprayed with cum.<</if>>
+				Or it would have, had $Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in $Concubine.slaveName, $Bodyguard.slaveName, and your newborn getting sprayed with cum.<</if>>
 			<</if>>
 			$Bodyguard.slaveName cuts the cord with $his blade, and hands you @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>.@@
 		<<else>>
 			<<if _concubinePresent == 1>>
-				Or you would have, had $Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls > 1>> An orgasm that resulted in $Concubine.slaveName, $Bodyguard.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over; before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious, nearly panicking $Bodyguard.slaveName. $Concubine.slaveName slides in behind you to snuggle with you as you return to your senses.
+				Or you would have, had $Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in $Concubine.slaveName, $Bodyguard.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over; before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious, nearly panicking $Bodyguard.slaveName. $Concubine.slaveName slides in behind you to snuggle with you as you return to your senses.
 			<<else>>
 				With one out, you realize
 				<<if $PC.pregType >= 6>>
@@ -288,10 +289,10 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 	<<elseif $HeadGirl != 0>>
 		With $HeadGirl.slaveName waiting with everything you need, childbirth goes by without a hitch.
 		<<if $PC.pregType == 1>>
-			<<if _concubinePresent == 1>> Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls > 1>> An orgasm that resulted in $Concubine.slaveName, $HeadGirl.slaveName, and your newborn getting sprayed with cum.<</if>><</if>> $HeadGirl.slaveName cuts the cord, swaddles your child, and hands you @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>.@@
+			<<if _concubinePresent == 1>> Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in $Concubine.slaveName, $HeadGirl.slaveName, and your newborn getting sprayed with cum.<</if>><</if>> $HeadGirl.slaveName cuts the cord, swaddles your child, and hands you @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>.@@
 		<<else>>
 			<<if _concubinePresent == 1>>
-				Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your first child entered the world.<<if $PC.balls > 1>> An orgasm that resulted in $Concubine.slaveName, $HeadGirl.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over: before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious. $Concubine.slaveName slides in behind you to snuggle with you as you return to your senses.
+				Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your first child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in $Concubine.slaveName, $HeadGirl.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over: before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious. $Concubine.slaveName slides in behind you to snuggle with you as you return to your senses.
 			<<else>>
 				With one out, you realize
 				<<if $PC.pregType >= 6>>
@@ -345,7 +346,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 
 <<if _gaveBirth == 0>>
 
-	<<set $PC.birthOther += _others, $PC.birthSelf += _self, $PC.birthCitizen += _citizens, $PC.birthMaster += _oldMaster, $PC.birthArcOwner += _arcOwner, $PC.birthClient += _clients, $PC.birthElite += _elite, $PC.birthLab += _lab, $PC.birthDegenerate += _slavesLength>>
+	<<set $PC.counter.birthOther += _others, $PC.counter.birthSelf += _self, $PC.counter.birthCitizen += _citizens, $PC.counter.birthMaster += _oldMaster, $PC.counter.birthArcOwner += _arcOwner, $PC.counter.birthClient += _clients, $PC.counter.birthElite += _elite, $PC.counter.birthLab += _lab, $PC.counter.birthDegenerate += _slavesLength>>
 
 	<<if _curBabies == 1>>
 		<<set _p = 0>>
@@ -358,7 +359,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 		<<if $PC.curBabies[_p].genetics.skin == $PC.origSkin>>
 			<<set _PCDegree++>>
 		<</if>>
-		<<if $PC.curBabies[_p].genetics.eyeColor == $PC.origEye>>
+		<<if $PC.curBabies[_p].genetics.eyeColor == $PC.eye.origColor>>
 			<<set _PCDegree++>>
 		<</if>>
 
@@ -367,8 +368,8 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 			looks exactly like you, in fact, the resemblance seems uncanny. Since <<if _gender == "XX">>she<<else>>he<</if>> has the exact same genetics as you, <<if _gender == "XX">>she<<else>>he<</if>>'ll likely look almost identical to you when <<if _gender == "XX">>she<<else>>he<</if>>'s your age.
 		<<elseif _PCDegree == 4>>
 			looks just like you; <<if _gender == "XX">>she<<else>>he<</if>> will likely grow up to closely resemble yourself.
-		<<elseif $PC.curBabies[_p].genetics.eyeColor == $PC.eyeColor>>
-			has your lovely $PC.eyeColor eyes.
+		<<elseif $PC.curBabies[_p].genetics.eyeColor == $PC.eye.origColor>>
+			has your lovely $PC.eye.origColor eyes.
 		<<elseif _PCDegree > 0>>
 			looks a little like you, enough that <<if _gender == "XX">>she<<else>>he<</if>>'ll be recognizable as yours.
 		<<else>>
@@ -400,7 +401,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 			<<if $PC.curBabies[_p].genetics.skin == $PC.origSkin>>
 				<<set _PCDegree++>>
 			<</if>>
-			<<if $PC.curBabies[_p].genetics.eyeColor == $PC.origEye>>
+			<<if $PC.curBabies[_p].genetics.eyeColor == $PC.eye.origColor>>
 				<<set _PCDegree++>>
 			<</if>>
 
@@ -411,8 +412,8 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 				looks exactly like you<<if _p == 0>>, in fact, the resemblance seems uncanny. Since <<if $PC.curBabies[_p].genetics.gender == "XX">>she<<else>>he<</if>> has the exact same genetics as you, <<if $PC.curBabies[_p].genetics.gender == "XX">>she<<else>>he<</if>>'ll likely look almost identical to you when <<if $PC.curBabies[_p].genetics.gender == "XX">>she<<else>>he<</if>>'s your age<</if>>. Every one of your children look this way; it's kind of hard to tell them apart.
 			<<elseif _PCDegree == 4>>
 				looks just like you; <<if $PC.curBabies[_p].genetics.gender == "XX">>she<<else>>he<</if>> will likely grow up to closely resemble yourself.
-			<<elseif $PC.curBabies[_p].genetics.eyeColor == $PC.origEye>>
-				has your lovely $PC.origEye eyes.
+			<<elseif $PC.curBabies[_p].genetics.eyeColor == $PC.eye.origColor>>
+				has your lovely $PC.eye.origColor eyes.
 			<<elseif _PCDegree > 0>>
 				looks a little like you, enough that <<if $PC.curBabies[_p].genetics.gender == "XX">>she<<else>>he<</if>>'ll be recognizable as yours.
 			<<else>>
@@ -559,6 +560,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 <</if>> /*closes gaveBirth*/
 <</if>> /*closes SE*/
 
+/* belly sag is a thing now, USE IT! */
 <<set _badBirth = 0, $PC.pregSource = 0, $PC.pregType = 0, $PC.belly = 2000, WombFlush($PC)>>
 <<if $PC.geneticQuirks.fertility+$PC.geneticQuirks.hyperFertility >= 4>>
 	<<set $PC.pregWeek = -2>>
diff --git a/src/pregmod/surrogacyWorkaround.tw b/src/pregmod/surrogacyWorkaround.tw
index 906ac733e3ce0c1b7769e3b8b90c5c2ff4e71259..9c14fab263ba5300eb1a33bd7d30bc333e9d2823 100644
--- a/src/pregmod/surrogacyWorkaround.tw
+++ b/src/pregmod/surrogacyWorkaround.tw
@@ -57,7 +57,7 @@ __Semen donatrix: _impreg __
 	<</if>>
 <</if>>
 
-<<if $PC.dick == 1>>
+<<if $PC.balls != 0>>
 	<br>
 	[[Use your own|Surrogacy Workaround][$impregnatrix = $PC]]
 <</if>>
@@ -81,7 +81,7 @@ __Chosen surrogate: _receive __
 	<br>//You have no slaves capable of acting as a surrogate.//
 <</if>>
 
-<<if $PC.vagina == 1 && $PC.preg >= 0 && $PC.preg < 4 && $PC.pregType < 8 && $PC.physicalAge < 70>>
+<<if $PC.vagina != -1 && $PC.preg >= 0 && $PC.preg < 4 && $PC.pregType < 8 && $PC.physicalAge < 70>>
 	<br>
 	[[Use your own womb|Surrogacy Workaround][$receptrix = $PC]]
 <</if>>
diff --git a/src/pregmod/theBlackMarket.tw b/src/pregmod/theBlackMarket.tw
index 2084e5108e524139079e567f94bc996dbe110c08..09387635666913efca11b991ff97c5b9a675fe8f 100644
--- a/src/pregmod/theBlackMarket.tw
+++ b/src/pregmod/theBlackMarket.tw
@@ -137,7 +137,7 @@ Of all the wonders present, the thing that catches your eye the most is a shady
 					<<if $cash >= 75000>>
 						[[Purchase formulas for growth reversing drugs|The Black Market][cashX(-75000, "capEx"), $arcologies[0].FSSlimnessEnthusiastResearch = 1, _dump = $merchantFSWares.delete("SlimnessEnthusiastResearch")]] //@@.yellowgreen;<<print cashFormat(75000)>>.@@//
 					<<else>>
-						You cannot afford the asking price of @@.red;<<print cashFormat(75000)>>@@ for growth reversing drug formulas. "<<if $PC.boobsBonus > 0>>Guess you'll be keeping those knockers for now, <<if $PC.title == 0>>Little-Miss-Top-Heavy<<else>>Mr. Busty<</if>><<else>>Guess you don't mind sore backs. Leads to less sore knees, from what I've heard<</if>>."
+						You cannot afford the asking price of @@.red;<<print cashFormat(75000)>>@@ for growth reversing drug formulas. "<<if $PC.boobs >= 1000>>Guess you'll be keeping those knockers for now, <<if $PC.title == 0>>Little-Miss-Top-Heavy<<else>>Mr. Busty<</if>><<else>>Guess you don't mind sore backs. Leads to less sore knees, from what I've heard<</if>>."
 					<</if>>
 				<<else>>
 					You lack the facilities needed to produce drugs of this complexity, so growth reversing drug formulas are currently unobtainable.
diff --git a/src/pregmod/widgets/playerDescriptionWidgets.tw b/src/pregmod/widgets/playerDescriptionWidgets.tw
index d7c840817f58993428c665452516a50fd79577ef..02e3e6821e7edec00e1eed5ae490c2db6d486eb0 100644
--- a/src/pregmod/widgets/playerDescriptionWidgets.tw
+++ b/src/pregmod/widgets/playerDescriptionWidgets.tw
@@ -5,9 +5,9 @@
 <<set _passage = passage()>>
 
 <<if _passage == "Manage Personal Affairs">>
-	<<if $PC.boobsBonus > 2>>
+	<<if $PC.boobs >= 1400>>
 		you have a @@.orange;pair of H-cup breasts.@@
-		<<if $PC.boobsImplant == 1>>
+		<<if $PC.boobsImplant > 0>>
 			They are big, round, and obviously implants. They barely move when you fuck your slaves.
 		<<else>>
 			They are all natural, heavy, and a bit saggy though they have some perk to them. Once they get going, it's hard to make them stop.
@@ -20,9 +20,9 @@
 		<<elseif $PC.markings == "heavily freckled">>
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
-	<<elseif $PC.boobsBonus == 2>>
+	<<elseif $PC.boobs >= 1200>>
 		you have a @@.orange;pair of G-cup breasts.@@
-		<<if $PC.boobsImplant == 1>>
+		<<if $PC.boobsImplant > 0>>
 			They are kind of rounded and much too perky for their size to pass as real. They have a bit of bounce to them as you fuck a slave.
 		<<else>>
 			They are all natural and a little heavy. The bounce everywhere when you fuck your slaves.
@@ -35,9 +35,9 @@
 		<<elseif $PC.markings == "heavily freckled">>
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
-	<<elseif $PC.boobsBonus == 1>>
+	<<elseif $PC.boobs >= 1000>>
 		you have a @@.orange;pair of F-cup breasts.@@
-		<<if $PC.boobsImplant == 1>>
+		<<if $PC.boobsImplant > 0>>
 			They are nice, perky and not obviously implants. Though the way they move when you fuck a slave pins them as such.
 		<<else>>
 			They are nice and perky, despite their size. They bounce lewdly as you fuck your slaves.
@@ -50,7 +50,17 @@
 		<<elseif $PC.markings == "heavily freckled">>
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
-	<<elseif $PC.boobsBonus == -1>>
+	<<elseif $PC.boobs >= 800>>
+		you have a @@.orange;healthy pair of DD-cup breasts.@@ They are nice, perky and jiggle pleasantly with your every move.
+		<<if $PC.lactation > 0>>
+			Your breasts feel fuller lately; this is likely a side effect of your lactation.
+		<</if>>
+		<<if $PC.markings == "freckles">>
+			The tops of your breasts and your cleavage are lightly freckled.
+		<<elseif $PC.markings == "heavily freckled">>
+			They are covered in freckles, which are particularly dense in the cleft between them.
+		<</if>>
+	<<elseif $PC.boobs >= 650>>
 		you have a @@.orange;pair of D-cup breasts.@@ They are nice, perky and bounce pleasantly as you fuck your slaves.
 		<<if $PC.lactation > 0>>
 			Your breasts feel bigger lately; this is likely a side effect of your lactation.
@@ -60,7 +70,7 @@
 		<<elseif $PC.markings == "heavily freckled">>
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
-	<<elseif $PC.boobsBonus == -2>>
+	<<elseif $PC.boobs >= 500>>
 		you have a @@.orange;pair of C-cup breasts.@@ They are nice and perky, with just a little bounce when you fuck your slaves.
 		<<if $PC.lactation > 0>>
 			Your breasts feel bigger lately; likely a side effect of your lactation.
@@ -70,7 +80,7 @@
 		<<elseif $PC.markings == "heavily freckled">>
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
-	<<elseif $PC.boobsBonus == -3>>
+	<<elseif $PC.boobs >= 400>>
 		you have a @@.orange;pair of B-cup breasts.@@ They are nice and perky, with almost no bounce when you fuck your slaves.
 		<<if $PC.lactation > 0>>
 			Your breasts feel bigger lately; this is likely a side effect of your lactation.
@@ -80,15 +90,15 @@
 		<<elseif $PC.markings == "heavily freckled">>
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
-	<<elseif $PC.boobs == 1>>
-		you have a @@.orange;healthy pair of DD-cup breasts.@@ They are nice, perky and jiggle pleasantly with your every move.
+	<<elseif $PC.boobs >= 300>>
+		you have a @@.orange;tiny pair of A-cup breasts.@@ They are nice and perky, but that's about it.
 		<<if $PC.lactation > 0>>
-			Your breasts feel fuller lately; this is likely a side effect of your lactation.
+			They feel a bit bigger lately; this is likely a side effect of your lactation.
 		<</if>>
 		<<if $PC.markings == "freckles">>
-			The tops of your breasts and your cleavage are lightly freckled.
+			Your chest is covered in a light spray of freckles.
 		<<elseif $PC.markings == "heavily freckled">>
-			They are covered in freckles, which are particularly dense in the cleft between them.
+			Your chest is covered in dense freckles.
 		<</if>>
 	<<elseif $PC.title == 1>>
 		you have a @@.orange;masculine chest.@@
@@ -113,38 +123,32 @@
 	<</if>>
 <<elseif _passage == "Economics">>
 	<<if $PC.career == "servant">>
-		<<if $PC.boobs == 1 && $PC.boobsBonus > 0>>
-			<<if $PC.boobsBonus > 2>>
-				You've gotten your dress let out to accommodate your huge bust.
-			<<elseif $PC.boobsBonus == 2>>
-				Your dress bulges with your big breasts.
-			<<elseif $PC.boobsBonus == 1>>
-				Your dress feels tight around your breasts.
-			<</if>>
+		<<if $PC.boobs >= 1400>>
+			You've gotten your dress let out to accommodate your huge bust.
+		<<elseif $PC.boobs >= 1200>>
+			Your dress bulges with your big breasts.
+		<<elseif $PC.boobs >= 1000>>
+			Your dress feels tight around your breasts.
 		<</if>>
 	<<elseif $PC.career == "escort">>
-		<<if $PC.boobs == 1 && $PC.boobsBonus > 0>>
-			<<if $PC.boobsBonus > 2>>
-				Your top strains as it struggles to cover your nipples, letting your huge<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> bust bulge lewdly around it.
-			<<elseif $PC.boobsBonus == 2>>
-				Your top can barely contain your big<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, heavily freckled<</if>> breasts, leaving you looking sluttier than ever.
-			<<elseif $PC.boobsBonus == 1>>
-				Your breasts spill over your slutty top<<if $PC.markings == "freckles">>, showing off your freckled cleavage<<elseif $PC.markings == "heavily freckled">>, freckle packed cleavage<</if>>.
-			<</if>>
+		<<if $PC.boobs >= 1400>>
+			Your top strains as it struggles to cover your nipples, letting your huge<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> bust bulge lewdly around it.
+		<<elseif $PC.boobs >= 1200>>
+			Your top can barely contain your big<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, heavily freckled<</if>> breasts, leaving you looking sluttier than ever.
+		<<elseif $PC.boobs >= 1000>>
+			Your breasts spill over your slutty top<<if $PC.markings == "freckles">>, showing off your freckled cleavage<<elseif $PC.markings == "heavily freckled">>, freckle packed cleavage<</if>>.
 		<</if>>
 	<<else>>
-		<<if $PC.boobs == 1 && $PC.boobsBonus > 0>>
-			<<if $PC.boobsBonus > 2>>
-				You've gotten your top retailored to fit your huge bust.
-			<<elseif $PC.boobsBonus == 2>>
-				Your top strains against your big breasts<<if $PC.markings == "freckles">>, revealing a peak of freckled cleavage<<elseif $PC.markings == "heavily freckled">>, revealing a peak of densely freckled cleavage<</if>>.
-			<<elseif $PC.boobsBonus == 1>>
-				Your top feels tight around your breasts.
-			<</if>>
+		<<if $PC.boobs >= 1400>>
+			You've gotten your top retailored to fit your huge bust.
+		<<elseif $PC.boobs >= 1200>>
+			Your top strains against your big breasts<<if $PC.markings == "freckles">>, revealing a peak of freckled cleavage<<elseif $PC.markings == "heavily freckled">>, revealing a peak of densely freckled cleavage<</if>>.
+		<<elseif $PC.boobs >= 1000>>
+			Your top feels tight around your breasts.
 		<</if>>
 	<</if>>
 <<else>>
-	<<if $PC.boobsBonus > 2>>
+	<<if $PC.boobs >= 1400>>
 		Your breasts are
 		<<if $PC.markings == "freckles">>
 			enormous with light freckling on the tops and in your cleavage.
@@ -153,7 +157,7 @@
 		<<else>>
 			enormous.
 		<</if>>
-		<<if $PC.boobsImplant == 1>>
+		<<if $PC.boobsImplant > 0>>
 			They are big, round, and obviously implants. They insist on maintaining their shape no matter how you move.
 		<<else>>
 			They are all natural, heavy, and a bit saggy though they retain some perk. Every single move you make sends ripples through your cleavage. You catch yourself watching them move in the mirror every so often.
@@ -161,7 +165,7 @@
 		<<if $PC.lactation > 0>>
 			Your breasts feel even more enormous lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
 		<</if>>
-	<<elseif $PC.boobsBonus == 2>>
+	<<elseif $PC.boobs >= 1200>>
 		Your breasts are
 		<<if $PC.markings == "freckles">>
 			huge with light freckling on the tops and in your cleavage.
@@ -170,7 +174,7 @@
 		<<else>>
 			huge.
 		<</if>>
-		<<if $PC.boobsImplant == 1>>
+		<<if $PC.boobsImplant > 0>>
 			They are unnaturally perky for their size. When you shake them, they barely move.
 		<<else>>
 			They are all natural and a little heavy. They bounce lewdly when you shake them and take a little too long to calm down.
@@ -178,7 +182,7 @@
 		<<if $PC.lactation > 0>>
 			Your breasts feel even more huge lately; this is this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
 		<</if>>
-	<<elseif $PC.boobsBonus == 1>>
+	<<elseif $PC.boobs >= 1000>>
 		Your breasts are pretty
 		<<if $PC.markings == "freckles">>
 			big with light freckling on the tops and in your cleavage.
@@ -187,7 +191,7 @@
 		<<else>>
 			big.
 		<</if>>
-		<<if $PC.boobsImplant == 1>>
+		<<if $PC.boobsImplant > 0>>
 			They are nice, perky and not obviously implants. They jiggle only slightly when you shake them though.
 		<<else>>
 			They are nice and perky, despite their size. They bounce lewdly when you shake them.
@@ -195,7 +199,14 @@
 		<<if $PC.lactation > 0>>
 			Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
 		<</if>>
-	<<elseif $PC.boobsBonus == -1>>
+	<<elseif $PC.boobs >= 800>>
+		Your breasts are on the larger side of things<<if $PC.lactation > 0>>, though you could do without the wet spots forming over your nipples<</if>>.
+		<<if $PC.markings == "freckles">>
+			The tops of your breasts and your cleavage are lightly freckled.
+		<<elseif $PC.markings == "heavily freckled">>
+			They are covered in freckles, which are particularly dense in the cleft between them.
+		<</if>>
+	<<elseif $PC.boobs >= 650>>
 		Your breasts are certainly
 		<<if $PC.markings == "freckles">>
 			eye-catching with light freckling on the tops and in your cleavage.
@@ -208,7 +219,7 @@
 		<<if $PC.lactation > 0>>
 			Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
 		<</if>>
-	<<elseif $PC.boobsBonus == -2>>
+	<<elseif $PC.boobs >= 500>>
 		Your breasts are fairly average, at least to old world
 		<<if $PC.markings == "freckles">>
 			standards, with light freckling on the tops and in your cleavage.
@@ -221,7 +232,7 @@
 		<<if $PC.lactation > 0>>
 			Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
 		<</if>>
-	<<elseif $PC.boobsBonus == -3>>
+	<<elseif $PC.boobs >= 400>>
 		Your breasts are considered small by most
 		<<if $PC.markings == "freckles">>
 			standards, with light freckling on the tops and in your cleavage.
@@ -234,12 +245,18 @@
 		<<if $PC.lactation > 0>>
 			Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
 		<</if>>
-	<<elseif $PC.boobs == 1>>
-		Your breasts are on the larger side of things<<if $PC.lactation > 0>>, though you could do without the wet spots forming over your nipples<</if>>.
+	<<elseif $PC.boobs >= 300>>
+		Your breasts, if they can even be called that, are
 		<<if $PC.markings == "freckles">>
-			The tops of your breasts and your cleavage are lightly freckled.
+			covered in a light spray of freckles.
 		<<elseif $PC.markings == "heavily freckled">>
-			They are covered in freckles, which are particularly dense in the cleft between them.
+			covered in dense freckles.
+		<<else>>
+			tiny even by old world standards.
+		<</if>>
+		On the plus side, no chance of sag.
+		<<if $PC.lactation > 0>>
+			Your breasts feel more substantial lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
 		<</if>>
 	<<elseif $PC.title == 1>>
 		Your chest is quite masculine<<if $PC.lactation > 0>>, though the pair of wet spots forming over your nipples suggest otherwise,<</if>><<if $PC.markings == "freckles">> and covered in a light spray of freckles<<elseif $PC.markings == "heavily freckled">> and covered in dense freckles<</if>>.
@@ -257,7 +274,7 @@
 <<if _passage == "Manage Personal Affairs">>
 	<<if $PC.preg > 0>>
 		<<if $PC.belly >= 120000>>
-			@@.red;Your belly is coated with stretch marks and is taut as a drum; you don't know how much more your poor womb can endure.@@ You can barely even leave your bed without a helping hand. Kicks can almost constantly be seen dotting its surface. You give it a pat for good measure, only encouraging your <<print pregNumberName($PC.pregType, 2)>> to squirm in excitement.<<if $PC.dick == 1>> You watch as your dick hardens from the prostate stimulation; you steady yourself for the coming orgasm.<</if>>
+			@@.red;Your belly is coated with stretch marks and is taut as a drum; you don't know how much more your poor womb can endure.@@ You can barely even leave your bed without a helping hand. Kicks can almost constantly be seen dotting its surface. You give it a pat for good measure, only encouraging your <<print pregNumberName($PC.pregType, 2)>> to squirm in excitement.<<if $PC.dick != 0>> You watch as your dick hardens from the prostate stimulation; you steady yourself for the coming orgasm.<</if>>
 		<<elseif $PC.belly >= 105000>>
 			You have trouble getting up and sitting down. Even standing while supporting your @@.orange;massive belly@@ has become an exhausting endeavor.
 		<<elseif $PC.belly >= 90000>>
@@ -309,7 +326,7 @@
 	<<if $PC.career == "servant">>
 		<<if $PC.preg > 0>>
 			<<if $PC.belly >= 120000>>
-				You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-<<if $showInches == 2>>yard<<else>>meter<</if>> from your front and has soundly defeated the seams of your dress<<if $PC.dick == 1>>. Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much, save for when they keep at it and you can't restrain your orgasm<</if>>.
+				You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-<<if $showInches == 2>>yard<<else>>meter<</if>> from your front and has soundly defeated the seams of your dress<<if $PC.dick != 0>>. Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much, save for when they keep at it and you can't restrain your orgasm<</if>>.
 			<<elseif $PC.belly >= 105000>>
 				You can barely function any more. You're so big and heavy that even the simplest of actions requires both intense effort and thought just to get it done. Your frumpy dress is also at its limit, and much to your annoyance, your children will not stay still enough to let you fix it.
 			<<elseif $PC.belly >= 90000>>
@@ -331,7 +348,7 @@
 			<<elseif $PC.belly >= 14000>>
 				Your dress is at its capacity; any bigger and you'd risk tearing it at the seams, though your late Master did make sure his <<= _girlP>>s were well dressed even when they were fully rounded with his child.
 			<<elseif $PC.belly >= 12000>>
-				You keep bumping into things with your huge belly; you're used to it though, <<if $PC.birthMaster >= 2>>your first pregnancy was a twinner!<<else>>your late Master liked to keep a big fake belly around your middle.<</if>>
+				You keep bumping into things with your huge belly; you're used to it though, <<if $PC.counter.birthMaster >= 2>>your first pregnancy was a twinner!<<else>>your late Master liked to keep a big fake belly around your middle.<</if>>
 			<<elseif $PC.belly >= 10000>>
 				Your huge pregnant belly is tiring to carry around, but you're well versed in moving about with a rounded middle.
 			<<elseif $PC.belly >= 7000>>
@@ -354,7 +371,7 @@
 			<<elseif $PC.preg >= 39>>
 				Every action you take is exhausting, and even though your slaves are more than capable of serving your every desire, you refuse to slow down with your duties.<<if $PC.pregMood == 1>> Though you definitely appreciate their aid.<<elseif $PC.pregMood == 2>> Your hormones practically rule you, leading you to demand your slaves to be prepared to pleasure you at a moments notice. Your needy cunt hungers for dick and you don't care <<if $seeDicks != 0>>what it is attached to<<else>>if it's made of plastic<</if>> right now.<</if>>
 			<<elseif $PC.preg >= 36>>
-				Your child<<if $PC.pregType > 1>>ren<</if>> happily kick<<if $PC.pregType == 1>>s<</if>> away inside your womb, and each time a small bump appears on the outside of your dress.<<if $PC.pregMood == 1>> While hormones may have you demanding and needy, you do everything you can to treat your slaves as if they were your own children.<<elseif $PC.pregMood == 2>> You know it's unbecoming for an arcology owner, but your former Master loved to fuck you while you <<if $PC.birthMaster > 0>>were pregnant with his child<<if $PC.birthMaster > 1>>ren<</if>><<else>>wore a big fake belly<</if>> and your body misses his touch.<</if>>
+				Your child<<if $PC.pregType > 1>>ren<</if>> happily kick<<if $PC.pregType == 1>>s<</if>> away inside your womb, and each time a small bump appears on the outside of your dress.<<if $PC.pregMood == 1>> While hormones may have you demanding and needy, you do everything you can to treat your slaves as if they were your own children.<<elseif $PC.pregMood == 2>> You know it's unbecoming for an arcology owner, but your former Master loved to fuck you while you <<if $PC.counter.birthMaster > 0>>were pregnant with his child<<if $PC.counter.birthMaster > 1>>ren<</if>><<else>>wore a big fake belly<</if>> and your body misses his touch.<</if>>
 			<<elseif $PC.preg >= 32>>
 				<<if $PC.pregMood == 1>> You can't help but enjoy having a slave suckle from you while you relax with _himU in your lap.<<elseif $PC.pregMood == 2>> You know how to have sex while pregnant, and as such, so will your slaves.<</if>>
 			<<elseif $PC.preg >= 28>>
@@ -376,7 +393,7 @@
 	<<elseif $PC.career == "escort">>
 		<<if $PC.preg > 0>>
 			<<if $PC.belly >= 120000>>
-				You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-<<if $showInches == 2>>yard<<else>>meter<</if>> from your front and has seized control as your dominant aspect<<if $PC.dick == 1>>. Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much. It's good for business when you orgasm lewdly and cum your bottoms<</if>>.
+				You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-<<if $showInches == 2>>yard<<else>>meter<</if>> from your front and has seized control as your dominant aspect<<if $PC.dick != 0>>. Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much. It's good for business when you orgasm lewdly and cum your bottoms<</if>>.
 			<<elseif $PC.belly >= 105000>>
 				You can barely function any more. You're so big and heavy that even the simplest of actions requires both intense effort and thought just to get it done. None of your poses work with your gravid body either, and you're practically popping out of your skimpiest outfit.
 			<<elseif $PC.belly >= 90000>>
@@ -385,7 +402,7 @@
 					<<set _fertRefresh = 1>>
 				<</if>>
 				You may have a problem<<if _fertRefresh == 1>>, but then again, you did take all those fertility drugs, so you can't really say you didn't want it.<<else>>. You know you took fertility drugs, but you weren't supposed to get this big!<</if>> Feeling yourself up, you'd fancy a guess that there are about
-				<<if $PC.medicine >= 45>>
+				<<if $PC.counter.medicine >= 45>>
 					<<if $PC.pregType == 8>>
 						eight babies
 					<<elseif $PC.pregType == 7>>
@@ -459,7 +476,7 @@
 	<<else>>
 		<<if $PC.preg > 0>>
 			<<if $PC.belly >= 120000>>
-				You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-<<if $showInches == 2>>yard<<else>>meter<</if>> from your front and has soundly defeated your maternity suit<<if $PC.dick == 1>>. Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much, save for when they keep at it and you a can't restrain your orgasm. The last thing you want to do in a meeting is spontaneously orgasm and cum your in clothes<</if>>.
+				You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-<<if $showInches == 2>>yard<<else>>meter<</if>> from your front and has soundly defeated your maternity suit<<if $PC.dick != 0>>. Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much, save for when they keep at it and you a can't restrain your orgasm. The last thing you want to do in a meeting is spontaneously orgasm and cum your in clothes<</if>>.
 			<<elseif $PC.belly >= 105000>>
 				You can barely function any more. You're so big and heavy that even the simplest of actions requires both intense effort and thought just to get it done. Your suit buttons keep popping, and much to your annoyance, your child<<if $PC.pregType > 1>>ren<</if>> will not stay still enough to let you redo them.
 			<<elseif $PC.belly >= 90000>>
@@ -545,7 +562,7 @@
 <<else>>
 	<<if $PC.preg > 0>>
 		<<if $PC.belly >= 120000>>
-			Your belly is coated with stretch marks and is taut as a drum; you don't know how much more your poor womb can endure. Kicks can almost constantly be seen dotting its surface. You give it a pat for good measure, only encouraging your <<print pregNumberName($PC.pregType, 2)>> to squirm in excitement.<<if $PC.dick == 1>> As your dick hardens under the prostate stimulation, you call for a slave to receive the incoming load.<</if>>
+			Your belly is coated with stretch marks and is taut as a drum; you don't know how much more your poor womb can endure. Kicks can almost constantly be seen dotting its surface. You give it a pat for good measure, only encouraging your <<print pregNumberName($PC.pregType, 2)>> to squirm in excitement.<<if $PC.dick != 0>> As your dick hardens under the prostate stimulation, you call for a slave to receive the incoming load.<</if>>
 		<<elseif $PC.belly >= 105000>>
 			Getting out of your chair is practically a dream at this point. It takes far too much effort to do it on your own and is a little embarrassing to ask help with.
 		<<elseif $PC.belly >= 90000>>
@@ -603,15 +620,15 @@
 
 <<if _passage == "Manage Personal Affairs">>
 	you have
-	<<if $PC.dick == 1 && $PC.vagina == 1>>
+	<<if $PC.dick != 0 && $PC.vagina != -1>>
 		an @@.orange;above average penis@@
-		<<if $PC.balls > 2>>
+		<<if $PC.balls >= 14>>
 			that is constantly streaming precum,
-		<<elseif $PC.balls > 0>>
+		<<elseif $PC.balls >= 9>>
 			that is constantly dripping precum,
 		<</if>>
 		and a pair of
-		<<if $PC.ballsImplant > 3>>
+		<<if $PC.balls >= 30>>
 			@@.orange;monstrous, heavy balls@@ roughly the size of small watermelons thanks to a combination of growth hormones and gel injections; it's impossible to sit normally,
 			<<if $ballsAccessibility == 1>>
 				but your penthouse has been redesigned with oversized balls in mind. There are plenty of chairs capable of handling you littering the penthouse.
@@ -619,42 +636,43 @@
 				so you rest on the edge of your chair, allowing your oversized balls to dangle precariously.
 			<</if>>
 			You've given up on wearing pants around the penthouse, and their bulging mass is so gargantuan that people assume they're fake, but every slave you fuck gets a distended belly from all the cum you pump into them. They make just about everything you do difficult: sitting, walking, fucking — but they certainly make life interesting.
-		<<elseif $PC.ballsImplant == 3>>
+		<<elseif $PC.balls >= 14>>
 			@@.orange;enormous, heavy balls@@ roughly the size of cantaloupes; it's difficult to sit normally, your clothes barely fit, and everyone probably assumes they are fake, but every slave you fuck gets a distinct slap with each thrust. They get in the way of nearly everything you do: sitting, walking, fucking — but they make life certainly interesting.
-		<<elseif $PC.ballsImplant == 2>>
+		<<elseif $PC.balls >= 9>>
 			@@.orange;huge balls@@ roughly the size of softballs; they are pretty heavy, but make sex and day-to-day affairs interesting.
-		<<elseif $PC.ballsImplant == 1>>
+		<<elseif $PC.balls >= 5>>
 			@@.orange;large balls;@@ you can certainly feel them as you move about.
 		<<else>>
 			@@.orange;normal, uneventful balls.@@
 		<</if>>
 		Tucked away beneath them, you have a
+		/* this needs to be redone in all parts. */
 		<<if $PC.newVag == 1>>
 			@@.orange;tight vagina.@@ Your pussy is very resilient; you shouldn't be able to stretch it out again.
 		<<elseif $PC.career == "escort">>
 			@@.red;very loose vagina.@@ Years of whoring will do that to a _girlP.
-		<<elseif $PC.births >= 10>>
+		<<elseif $PC.counter.birthsTotal >= 10>>
 			@@.red;rather loose vagina,@@ stretched from your many children.
 		<<elseif $PC.career == "servant">>
-			@@.red;rather loose vagina.@@ Your Master fucked you several times a day; he<<if $PC.birthMaster > 0>>and his child<<if $PC.birthMaster > 1>>ren<</if>> have<</if>> wreaked havoc upon your pussy.
-		<<elseif $PC.births > 2>>
+			@@.red;rather loose vagina.@@ Your Master fucked you several times a day; he<<if $PC.counter.birthMaster > 0>>and his child<<if $PC.counter.birthMaster > 1>>ren<</if>> have<</if>> wreaked havoc upon your pussy.
+		<<elseif $PC.counter.birthsTotal > 2>>
 			@@.orange;loose vagina,@@ stretched from your several children.
 		<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
 			@@.lime;reasonably tight vagina.@@ You've had some fun during your previous career.
-		<<elseif $PC.births > 0>>
+		<<elseif $PC.counter.birthsTotal > 0>>
 			@@.lime;reasonably tight vagina.@@ It's handled childbirth well enough.
 		<<else>>
 			@@.lime;tight vagina.@@ You're no virgin, but you've taken care of yourself.
 		<</if>>
-	<<elseif $PC.dick == 1>>
+	<<elseif $PC.dick != 0>>
 		an @@.orange;above average penis@@
-		<<if $PC.balls > 2>>
+		<<if $PC.balls >= 14>>
 			that is constantly streaming precum,
-		<<elseif $PC.balls > 0>>
+		<<elseif $PC.balls >= 9>>
 			that is constantly dripping precum,
 		<</if>>
 		and a pair of
-		<<if $PC.ballsImplant > 3>>
+		<<if $PC.balls >= 30>>
 			@@.orange;monstrous, heavy balls@@ roughly the size of small watermelons thanks to a combination of growth hormones and gel injections; it's impossible to sit normally,
 			<<if $ballsAccessibility == 1>>
 				but your penthouse has been redesigned with oversized balls in mind. There are plenty of chairs capable of handling you littering the penthouse.
@@ -662,11 +680,11 @@
 				so you rest on the edge of your chair, allowing your oversized balls to dangle precariously.
 			<</if>>
 			You've given up on wearing pants around the penthouse, and their bulging mass is so gargantuan that people assume they're fake, but every slave you fuck gets a distended belly from all the cum you pump into them. They make just about everything you do difficult: sitting, walking, fucking — but they certainly make life interesting.
-		<<elseif $PC.ballsImplant == 3>>
+		<<elseif $PC.balls >= 14>>
 			@@.orange;enormous, heavy balls@@ roughly the size of cantaloupes; it's difficult to sit normally, your clothes barely fit, and everyone probably assumes they are fake, but every slave you fuck gets a distinct slap with each thrust. They get in the way of nearly everything you do: sitting, walking, fucking — but they certainly make life interesting.
-		<<elseif $PC.ballsImplant == 2>>
+		<<elseif $PC.balls >= 9>>
 			@@.orange;huge balls@@ roughly the size of softballs; they are pretty heavy, but make sex and day-to-day affairs interesting.
-		<<elseif $PC.ballsImplant == 1>>
+		<<elseif $PC.balls >= 5>>
 			@@.orange;large balls;@@ you can certainly feel them as you move about.
 		<<else>>
 			@@.orange;normal, uneventful balls.@@
@@ -677,15 +695,15 @@
 			@@.orange;tight vagina.@@ Your pussy is very resilient; you shouldn't be able to stretch it out again.
 		<<elseif $PC.career == "escort">>
 			@@.red;very loose vagina.@@ Years of whoring will do that to a _girlP.
-		<<elseif $PC.births >= 10>>
+		<<elseif $PC.counter.birthsTotal >= 10>>
 			@@.red;rather loose vagina,@@ stretched from your many children.
 		<<elseif $PC.career == "servant">>
-			@@.red;rather loose vagina.@@ Your Master fucked you several times a day; he<<if $PC.birthMaster > 0>>and his child<<if $PC.birthMaster > 1>>ren<</if>> have<</if>> wreaked havoc upon your pussy.
-		<<elseif $PC.births > 2>>
+			@@.red;rather loose vagina.@@ Your Master fucked you several times a day; he<<if $PC.counter.birthMaster > 0>>and his child<<if $PC.counter.birthMaster > 1>>ren<</if>> have<</if>> wreaked havoc upon your pussy.
+		<<elseif $PC.counter.birthsTotal > 2>>
 			@@.orange;loose vagina,@@ stretched from your several children.
 		<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
 			@@.lime;reasonably tight vagina.@@ You've had some fun during your previous career.
-		<<elseif $PC.births > 0>>
+		<<elseif $PC.counter.birthsTotal > 0>>
 			@@.lime;reasonably tight vagina.@@ It's handled childbirth well enough.
 		<<else>>
 			@@.lime;tight vagina.@@ You're no virgin, but you've taken care of yourself.
@@ -693,58 +711,58 @@
 	<</if>>
 <<elseif _passage == "Economics">>
 	<<if $PC.career == "servant">>
-		<<if $PC.ballsImplant > 3>>
+		<<if $PC.balls >= 30>>
 			Your dress and apron bulge with your enormous balls; you had to have your dresses tailored so that the swinging mass of your sack would stop bursting seams inadvertently.
-		<<elseif $PC.ballsImplant == 3>>
+		<<elseif $PC.balls >= 14>>
 			Your dress and apron bulge with your enormous balls.
-		<<elseif $PC.ballsImplant == 2>>
+		<<elseif $PC.balls >= 9>>
 			Your dress hides your huge balls, but it does nothing to hide your altered gait.
-		<<elseif $PC.ballsImplant == 1>>
+		<<elseif $PC.balls >= 5>>
 			Your dress hides your big balls.
 		<</if>>
 	<<elseif $PC.career == "escort">>
-		<<if $PC.ballsImplant > 3>>
+		<<if $PC.balls >= 30>>
 			You've pretty much given up on pants because of your monstrous balls, but you've replaced them with a slutty skirt that stretches around their veiny contours. People can't help staring to see if they'll get a glimpse of your massive sack peaking out from under the skirt.
-		<<elseif $PC.ballsImplant == 3>>
+		<<elseif $PC.balls >= 14>>
 			You've swapped up to a larger pair of slutty pants, specially designed with extra sack room. They draw the eye right to your bulge<<if $PC.preg >= 28>>; you can do without people thinking you are giving birth into your pants, though<</if>>.
-		<<elseif $PC.ballsImplant == 2>>
+		<<elseif $PC.balls >= 9>>
 			Your slutty pants are really tight around the groin, but they hold your huge balls in place quite nicely.
-		<<elseif $PC.ballsImplant == 1>>
+		<<elseif $PC.balls >= 5>>
 			Your slutty pants bulge more than ever with your big balls.
 		<</if>>
 	<<else>>
-		<<if $PC.ballsImplant > 3>>
+		<<if $PC.balls >= 30>>
 			You've pretty much given up on suit pants because of your monstrous balls, but you've replaced them with a custom kilt tailored to match the rest of your business attire. People would wonder why you're wearing such old fashioned clothes if your ridiculous bulge didn't make it obvious.
-		<<elseif $PC.ballsImplant == 3>>
+		<<elseif $PC.balls >= 14>>
 			You've had to get your suit pants retailored again to fit your enormous balls. It is obvious that the bulge in your pants is not your penis<<if $PC.preg >= 28>>; you've had several people rush to your aid under the mistaken belief that <<if $PC.pregType > 1>>one of your children<<else>>your child<</if>> was crowning into your pants<</if>>.
-		<<elseif $PC.ballsImplant == 2>>
+		<<elseif $PC.balls >= 9>>
 			You've had to get your suit pants retailored to fit your huge balls. It gives you a striking figure, though.
-		<<elseif $PC.ballsImplant == 1>>
+		<<elseif $PC.balls >= 5>>
 			Your suit pants bulge more than ever with your big balls.
 		<</if>>
 	<</if>>
 <<else>>
-	<<if $PC.ballsImplant > 3>>
+	<<if $PC.balls >= 30>>
 		<<if $ballsAccessibility == 1>>
 			Thankfully your accessibility remodeling included a custom chair. When combined with the protective gel surrounding your massive sperm factories, it's rather comfortable. It even has an attachment to catch your never-ending stream of precum, keeping the mess to a minimum.
 		<<else>>
 			Your monstrous balls make it impossible for you to sit normally in a standard chair, forcing you sit on the edge and let them dangle. You have to sit while naked below the waist unless you want your clothes soaked with spermy precum.
 		<</if>>
-	<<elseif $PC.ballsImplant == 3 && $PC.balls < 2>>
+	<<elseif $PC.ballsImplant > 1 && $PC.balls >= 14>>
 		<<if $ballsAccessibility == 1>>
 			Thanks to your accessibility remodeling, your enormous gel-filled scrotum is able to rest comfortably in your custom chair.
 		<<else>>
 			No matter how you sit, your enormous gel-filled scrotum is never quite comfortable. Fortunately the cosmetic gel protects you from any major discomfort.
 		<</if>>
-	<<elseif $PC.ballsImplant == 3>>
+	<<elseif $PC.balls >= 14>>
 		<<if $ballsAccessibility == 1>>
 			Thanks to your accessibility remodeling, your enormous sperm factories are able to rest comfortably in your custom chair. Your chair also catches your never-ending precum, helping to prevent a mess.
 		<<else>>
 			You have to sit very carefully in your desk chair, giving your enormous sperm factories plenty of room. As they rest on the chair they deform uncomfortably under their own weight, causing even more of a mess from your ever-drooling cock.
 		<</if>>
-	<<elseif $PC.ballsImplant == 2>>
+	<<elseif $PC.balls >= 9>>
 		You shift in your seat and spread your legs to give your huge balls room.
-	<<elseif $PC.ballsImplant == 1>>
+	<<elseif $PC.balls >= 5>>
 		You shift in your seat to make room for your big balls.
 	<</if>>
 <</if>>
@@ -756,20 +774,20 @@
 <<set _passage = passage()>>
 
 <<if _passage == "Manage Personal Affairs">>
-	<<if $PC.butt > 2>>
-		<<if $PC.buttImplant == 1>>
+	<<if $PC.butt >= 5>>
+		<<if $PC.buttImplant >= 1>>
 			an @@.orange;enormous, round, hard butt;@@ it is very obviously a pair of huge implants. It barely moves at all when you walk or fuck, is difficult to cram into your clothing, and you keep getting stuck in chairs, but you wouldn't have it any other way.
 		<<else>>
 			an @@.orange;enormous, jiggly butt.@@ It is always wobbling for some reason or another. It really fills out your clothing and practically consumes anything you sit on.
 		<</if>>
-	<<elseif $PC.butt == 2>>
-		<<if $PC.buttImplant == 1>>
+	<<elseif $PC.butt >= 4>>
+		<<if $PC.buttImplant >= 1>>
 			a @@.orange;huge, round, firm butt;@@ it's easily identifiable as fake.
 		<<else>>
 			a @@.orange;huge, soft butt.@@ It jiggles a lot as you move.
 		<</if>>
-	<<elseif $PC.butt == 1>>
-		<<if $PC.buttImplant == 1>>
+	<<elseif $PC.butt >= 3>>
+		<<if $PC.buttImplant >= 1>>
 			a @@.orange;big firm butt;@@ anyone that feels it can tell it's fake, but at a glance you can't tell otherwise.
 		<<else>>
 			a @@.orange;big butt.@@ It jiggles a little as you walk.
@@ -784,60 +802,60 @@
 	<</if>>
 <<elseif _passage == "Economics">>
 	<<if $PC.career == "servant">>
-		<<if $PC.butt > 2 && $PC.ballsImplant > 3>>
-			<<if $PC.buttImplant == 1>>
+		<<if $PC.butt >= 5 && $PC.balls >= 30>>
+			<<if $PC.buttImplant >= 1>>
 				When you had your dresses tailored you also had to have them make room for your enormous rear. No dress can hide how big and fake it is though.
 			<<else>>
 				When you had your dresses tailored you also had to have them make room for your enormous rear.
 			<</if>>
-		<<elseif $PC.butt > 2>>
-			<<if $PC.buttImplant == 1>>
+		<<elseif $PC.butt >= 5>>
+			<<if $PC.buttImplant >= 1>>
 				You had to get your dress let out to contain your enormous rear. It can't hide how big and fake it is though.
 			<<else>>
 				You had to get your dress let out to contain your enormous rear.
 			<</if>>
-		<<elseif $PC.butt == 2>>
+		<<elseif $PC.butt >= 4>>
 			Your dress is starting to feel tight around your huge rear.
-		<<elseif $PC.butt == 1>>
+		<<elseif $PC.butt >= 3>>
 			Your dress is filled out by your big butt.
 		<</if>>
 	<<elseif $PC.career == "escort">>
-		<<if $PC.dick == 1>>
-			<<if $PC.ballsImplant > 3>>
-				<<if $PC.butt > 2>>
-					<<if $PC.buttImplant == 1>>
+		<<if $PC.dick != 0>>
+			<<if $PC.balls >= 30>>
+				<<if $PC.butt >= 5>>
+					<<if $PC.buttImplant >= 1>>
 						Your slutty skirt is also forced to stretch around your enormous rear, making the implants pretty obvious. With both your front and back struggling to get free of your stretchy skirt, it isn't unusual for one or the other to peek out.
 					<<else>>
 						Your slutty skirt is also forced to stretch around your enormous rear, and bending over is basically asking for your skirt to ride up all the way to your hips. With both your front and back struggling to get free of your stretchy skirt, it isn't unusual for one or the other to peek out.
 					<</if>>
-				<<elseif $PC.butt == 2>>
+				<<elseif $PC.butt >= 4>>
 					Your huge rear nearly spills out from the bottom of your slutty skirt.
-				<<elseif $PC.butt == 1>>
+				<<elseif $PC.butt >= 3>>
 					Your slutty skirt is strained by your big butt.
 				<</if>>
 			<<else>>
-				<<if $PC.butt > 2>>
-					<<if $PC.buttImplant == 1>>
+				<<if $PC.butt >= 5>>
+					<<if $PC.buttImplant >= 1>>
 						You had to get your slutty pants let out to contain your enormous rear. It still feels really tight, however, thanks to the implants.
 					<<else>>
 						You had to get your slutty pants let out to contain your enormous rear. It still overflows scandalously, however.
 					<</if>>
-				<<elseif $PC.butt == 2>>
+				<<elseif $PC.butt >= 4>>
 					Your huge rear spills out from the top of your slutty pants.
-				<<elseif $PC.butt == 1>>
+				<<elseif $PC.butt >= 3>>
 					Your slutty pants are strained by your big butt.
 				<</if>>
 			<</if>>
 		<<else>>
-			<<if $PC.butt > 2>>
-				<<if $PC.buttImplant == 1>>
+			<<if $PC.butt >= 5>>
+				<<if $PC.buttImplant >= 1>>
 					Your ass has completely devoured your slutty shorts. You look like you are wearing a thong, leaving your overly round<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, heavily freckled<</if>> cheeks to hang free.<<if $PC.markings == "freckles">> Your lower back is covered in a light speckling of freckles alongside your valley of ass cleavage.<<elseif $PC.markings == "heavily freckled">> Your freckles are particularly dense across your lower back and valley of ass cleavage.<</if>>
 				<<else>>
 					Your ass has completely devoured your slutty shorts. You look like you are wearing a thong leaving your<<if $PC.markings == "freckles">> freckled<<elseif $PC.markings == "heavily freckled">> heavily freckled<</if>> cheeks to jiggle freely.<<if $PC.markings == "freckles">> Your lower back is covered in a light speckling of freckles alongside your valley of ass cleavage.<<elseif $PC.markings == "heavily freckled">> Your freckles are particularly dense across your lower back and valley of ass cleavage.<</if>>
 				<</if>>
-			<<elseif $PC.butt == 2>>
+			<<elseif $PC.butt >= 4>>
 				Your slutty shorts are filled to bursting by your rear. Roughly half of your ass is actually in your bottoms, the rest is bulging out scandalously.<<if $PC.markings == "freckles">> Your lower back is covered in a light speckling of freckles alongside your ravine of ass cleavage.<<elseif $PC.markings == "heavily freckled">> Your freckles are particularly dense across your lower back and ravine of ass cleavage.<</if>>
-			<<elseif $PC.butt == 1>>
+			<<elseif $PC.butt >= 3>>
 				Your slutty shorts are strained by your big butt. It spills out every gap it can.<<if $PC.markings == "freckles">> Your lower back is covered in a light speckling of freckles alongside your ass cleavage.<<elseif $PC.markings == "heavily freckled">> Your freckles are particularly dense across your lower back and ass cleavage.<</if>>
 			<<elseif $PC.markings == "freckles">>
 				Your exposed lower back is covered in a light speckling of freckles.
@@ -846,61 +864,61 @@
 			<</if>>
 		<</if>>
 	<<else>>
-		<<if $PC.dick == 1>>
-			<<if $PC.ballsImplant > 3>>
-				<<if $PC.butt > 2>>
-					<<if $PC.buttImplant == 1>>
+		<<if $PC.dick != 0>>
+			<<if $PC.balls >= 30>>
+				<<if $PC.butt >= 5>>
+					<<if $PC.buttImplant >= 1>>
 						Your custom kilt is also forced to stretch around your enormous rear, making the implants pretty obvious. With both your front and back struggling to get free of the restrictive cloth, it isn't unusual for one or the other to peek out.
 					<<else>>
 						Your custom kilt is also forced to stretch around your enormous rear, and bending over is basically asking for it to ride up all the way to your hips. With both your front and back struggling to get free of the restrictive cloth, it isn't unusual for one or the other to peek out.
 					<</if>>
-				<<elseif $PC.butt == 2>>
+				<<elseif $PC.butt >= 4>>
 					Your huge rear nearly spills out from the bottom of your custom kilt.
-				<<elseif $PC.butt == 1>>
+				<<elseif $PC.butt >= 3>>
 					Your custom kilt is strained by your big butt.
 				<</if>>
 			<<else>>
-				<<if $PC.butt > 2>>
-					<<if $PC.buttImplant == 1>>
+				<<if $PC.butt >= 5>>
+					<<if $PC.buttImplant >= 1>>
 						You had to get your suit pants let out to contain your enormous rear. It does nothing to hide how big and round your asscheeks are, though.
 					<<else>>
 						You had to get your suit pants let out to contain your enormous rear. It can clearly be seen jiggling within them.
 					<</if>>
-				<<elseif $PC.butt == 2>>
+				<<elseif $PC.butt >= 4>>
 					Your huge rear threatens to tear apart your suit pants. You'll need to get them let out soon.
-				<<elseif $PC.butt == 1>>
+				<<elseif $PC.butt >= 3>>
 					Your suit pants are strained by your big butt.
 				<</if>>
 			<</if>>
 		<<else>>
-			<<if $PC.butt > 2>>
-				<<if $PC.buttImplant == 1>>
+			<<if $PC.butt >= 5>>
+				<<if $PC.buttImplant >= 1>>
 					Your skirt covers your enormous butt but does nothing to hide its size and shape. You're beginning to show too much leg again; it might be time for a longer skirt.
 				<<else>>
 					Your skirt covers your enormous butt but does nothing to hide its size and fluidity. Your rear is soft enough to fill out your skirt but not lift it up too far; it also translates every motion to the fabric, however.
 				<</if>>
-			<<elseif $PC.butt == 2>>
+			<<elseif $PC.butt >= 4>>
 				Your skirt covers your huge butt but does nothing to hide its size; in fact, you've had to start wearing a longer one to make up for the extra surface area.
-			<<elseif $PC.butt == 1>>
+			<<elseif $PC.butt >= 3>>
 				Your skirt covers your big butt but does nothing to hide its size.
 			<</if>>
 		<</if>>
 	<</if>>
 <<else>>
-	<<if $PC.butt > 2>>
-		<<if $PC.ballsImplant > 2 && $ballsAccessibility != 1>>
+	<<if $PC.butt >= 5>>
+		<<if $PC.balls >= 14 && $ballsAccessibility != 1>>
 			Your enormous<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt would make your chair extremely comfortable if it wasn't for your enormous balls. You have to be extremely careful to prevent your enormous cheeks from pinching your nuts.
 		<<else>>
 			Your enormous<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt makes for an extremely comfortable seat. You hope the chair doesn't follow you when you stand up this time.
 		<</if>>
-	<<elseif $PC.butt == 2>>
-		<<if $PC.ballsImplant > 2 && $ballsAccessibility != 1>>
+	<<elseif $PC.butt >= 4>>
+		<<if $PC.balls >= 14 && $ballsAccessibility != 1>>
 			Your huge<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt would make for a very comfortable seat if it wasn't for your enormous balls. You have to be careful to prevent your huge cheeks from pinching your nuts.
 		<<else>>
 			Your huge<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt makes for a very comfortable seat.
 		<</if>>
-	<<elseif $PC.butt == 1>>
-		<<if $PC.ballsImplant > 2 && $ballsAccessibility != 1>>
+	<<elseif $PC.butt >= 3>>
+		<<if $PC.balls >= 14 && $ballsAccessibility != 1>>
 			Your big<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt would make for a comfortable seat if your enormous balls weren't getting in the way.
 		<<else>>
 			Your big<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt makes for a comfortable seat.
diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw
index f050a1dd36592cad4b6a7335609edead4abbe3d0..e1ccd8ab4d5b75cda4715768eaf0af674753f4fe 100644
--- a/src/pregmod/widgets/seBirthWidgets.tw
+++ b/src/pregmod/widgets/seBirthWidgets.tw
@@ -299,7 +299,7 @@
 
 <<for _cb = 0; _cb < $slaves[$i].curBabies.length; _cb++>>
 	<<if $slaves[$i].curBabies[_cb].fatherID == -1>>
-		<<set $PC.slavesFathered++>>
+		<<set $PC.counter.slavesFathered++>>
 	<<elseif $slaves[$i].curBabies[_cb].fatherID > 0>>
 		<<set _babyDaddy = findFather($slaves[$i].curBabies[_cb].fatherID)>>
 		<<if def _babyDaddy>>
@@ -371,7 +371,7 @@ This descriptions can be expanded with more outcomes later. But it's not practic
 		<<if $slaves[$i].curBabies[_seb].fatherID == 0>>
 			<<set _fathers.push("an unknown father")>>
 		<<elseif $slaves[$i].curBabies[_seb].fatherID == -1>>
-			<<if $PC.dick == 1>>
+			<<if $PC.dick != 0>>
 				<<set _fathers.push("your magnificent dick")>>
 			<<else>>
 				<<set _fathers.push("your powerful sperm")>>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index faa7879b9f7274026062101d305a13c92e29b614..1e6227b7c9b27ed461350ccb7a02eeeedb9cb3e7 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -567,7 +567,7 @@
 	<<set _newPC.markings = $PC.markings>>
 	<<set _newPC.hColor = $PC.hColor>>
 	<<set _newPC.origHColor = $PC.origHColor>>
-	<<set _newPC.eye.origEye = $PC.origEye>>
+	<<set _newPC.eye.origColor = $PC.origEye>>
 	<<set _newPC.eye.left.iris = $PC.eyeColor>>
 	<<set _newPC.eye.left.pupil = $PC.pupil>>
 	<<set _newPC.eye.left.sclerae = $PC.sclerae>>
diff --git a/src/uncategorized/addCustomDescriptors.tw b/src/uncategorized/addCustomDescriptors.tw
index b7c37d35ab8c6cd641d3c485d9cdd874944567f3..8f90521a1d598bcb9d5f2850b38cc6b8f32066e1 100644
--- a/src/uncategorized/addCustomDescriptors.tw
+++ b/src/uncategorized/addCustomDescriptors.tw
@@ -87,9 +87,9 @@ You may enter custom descriptors for your slave's hair color, hair style, tattoo
 		<</for>>
 	<</if>>
 	<<if $activeSlave.relationship == -3>>
-		<<if $PC.surname>>
-			<<if $activeSlave.slaveSurname != $PC.surname>>
-				| <<link "Give $him your surname" "Rename">><<set $activeSlave.slaveSurname = $PC.surname>><</link>>
+		<<if $PC.slaveSurname>>
+			<<if $activeSlave.slaveSurname != $PC.slaveSurname>>
+				| <<link "Give $him your surname" "Rename">><<set $activeSlave.slaveSurname = $PC.slaveSurname>><</link>>
 			<</if>>
 		<</if>>
 	<</if>>
diff --git a/src/uncategorized/arcmgmt.tw b/src/uncategorized/arcmgmt.tw
index 7d5299673ee21d5a2cc2ae26d2266232af0ee950..52e7bbd76d53bde452070ee21f5054bc969096a1 100644
--- a/src/uncategorized/arcmgmt.tw
+++ b/src/uncategorized/arcmgmt.tw
@@ -1372,7 +1372,7 @@ You own
 		<</if>>
 	<</if>>
 	<<if $personalAttention == "business">>
-		<<if ($PC.trading >= 100) || ($PC.career == "arcology owner")>>
+		<<if ($PC.skill.trading >= 100) || ($PC.career == "arcology owner")>>
 			Your @@.springgreen;business focus and your experience@@ allow you to greatly assist in advancing the arcology's prosperity.
 			<<set _AWeekGrowth += 2>>
 		<<else>>
@@ -1426,7 +1426,7 @@ You own
 			<<set _AWeekGrowth += 2>>
 		<</if>>
 	<</if>>
-	<<if $PC.trading >= 100>>
+	<<if $PC.skill.trading >= 100>>
 		Your @@.springgreen;business skills@@ drive increased prosperity.
 		<<set _AWeekGrowth++>>
 	<<elseif $PC.career == "arcology owner">>
@@ -1697,7 +1697,7 @@ You own
 		<<set $TFS.subsidize = 0, $TFS.schoolProsperity = 10>>
 	<</if>>
 	<<if $TFS.subsidize == 1>>
-		You have a policy of subsidizing them<<if ($PC.dick == 1) && ($PC.vagina == 1) && ($PC.boobs == 1)>>, which is more effective due to your close relationship with them and your physical resemblance to them<<set $TFS.schoolProsperity++>><</if>>.
+		You have a policy of subsidizing them<<if ($PC.dick != 0) && ($PC.vagina != -1) && ($PC.boobs >= 300)>>, which is more effective due to your close relationship with them and your physical resemblance to them<<set $TFS.schoolProsperity++>><</if>>.
 		<<set $TFS.schoolProsperity++>>
 	<<elseif $TFS.subsidize == -1>>
 		You have a policy of covertly undermining them.
diff --git a/src/uncategorized/arcologyDescription.tw b/src/uncategorized/arcologyDescription.tw
index 5fdac9f2770dd62fb9559075b5b56194b5def757..2ba9c7e6de3d5fa7fe8428064eff16bcccc755ea 100644
--- a/src/uncategorized/arcologyDescription.tw
+++ b/src/uncategorized/arcologyDescription.tw
@@ -39,13 +39,24 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el
 
 <<if FutureSocieties.HighestDecoration() >= 100>>
 	<<setPlayerPronouns>>
+	<<if $PC.dick != 0>>
+		<<if $PC.vagina != -1>>
+			<<set _statue = "futanari">>
+		<<elseif $PC.boobs >= 300>>
+			<<set _statue = "shemale">>
+		<<else>>
+			<<set _statue = "male">>
+		<</if>>
+	<<else>>
+		<<set _statue = "female">>
+	<</if>>
 	Outside the main entrance, there is an enormous statue of an idealized
-	<<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure with several statues of nude slaves at its feet.
+	 figure with several statues of nude slaves at its feet.
 	<<if $arcologies[0].FSStatuesqueGlorification == 100>>
-		The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure towers over the area.
+		The central _statue figure towers over the area.
 	<</if>>
 	<<if $arcologies[0].FSSupremacistDecoration == 100>>
-		The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure has distinctly $arcologies[0].FSSupremacistRace features.
+		The central _statue figure has distinctly $arcologies[0].FSSupremacistRace features.
 	<</if>>
 	<<if $arcologies[0].FSSubjugationistDecoration == 100>>
 		The slaves have exaggerated $arcologies[0].FSSubjugationistRace features.
@@ -57,7 +68,7 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el
 		The slaves are all perfectly female.
 	<</if>>
 	<<if $arcologies[0].FSPaternalistDecoration == 100>>
-		The slaves are gazing adoringly up at the central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure.
+		The slaves are gazing adoringly up at the central _statue figure.
 	<</if>>
 	<<if $arcologies[0].FSDegradationistDecoration == 100>>
 		The slaves are cowering, and are wearing chains.
@@ -88,15 +99,15 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el
 		The slaves' breasts are unrealistically huge, almost as large as the rest of their bodies.
 	<</if>>
 	<<if $arcologies[0].FSRepopulationFocusDecoration == 100>>
-		The slaves are heavily pregnant<<if ($PC.vagina == 1)>>, as is the central <<if ($PC.dick == 1)>>futanari<<else>>female<</if>> figure<</if>>.
+		The slaves are heavily pregnant<<if ($PC.vagina != -1)>>, as is the central <<if ($PC.dick != 0)>>futanari<<else>>female<</if>> figure<</if>>.
 	<</if>>
 	<<if $arcologies[0].FSRestartDecoration == 100>>
 		The central
-		<<if ($PC.dick == 1) && ($PC.vagina == 1)>>
+		<<if ($PC.dick != 0) && ($PC.vagina != -1)>>
 			futanari figure's balls are oversized and _hisP stomach slightly rounded,
-		<<elseif ($PC.dick == 1) && ($PC.boobs == 1)>>
+		<<elseif ($PC.dick != 0) && ($PC.boobs >= 300)>>
 			shemale figure's balls are swollen with virile seed,
-		<<elseif ($PC.dick == 1)>>
+		<<elseif ($PC.dick != 0)>>
 			male figure's balls are swollen with virile seed,
 		<<else>>
 			female figure's stomach is slightly rounded,
@@ -107,12 +118,10 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el
 		The statuary is located in the middle of a fountain; the slaves' nipples pour water into the pool beneath.
 	<</if>>
 	<<if $arcologies[0].FSPhysicalIdealistDecoration == 100>>
-		Both the central
-		<<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure and the slaves are <<if $arcologies[0].FSPhysicalIdealistLaw == 1>>quite fit<<else>>very muscular<</if>>.
+		Both the central _statue figure and the slaves are <<if $arcologies[0].FSPhysicalIdealistLaw == 1>>quite fit<<else>>very muscular<</if>>.
 	<</if>>
 	<<if $arcologies[0].FSHedonisticDecadenceDecoration == 100>>
-		The central
-		<<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure has a distinct softness to its body, while the slaves are delightfully rotund.
+		The central _statue figure has a distinct softness to its body, while the slaves are delightfully rotund.
 	<</if>>
 	<<if $arcologies[0].FSIntellectualDependencyDecoration == 100>>
 		The slaves are visibly aroused.
@@ -121,28 +130,25 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el
 		The slaves have flawless posture.
 	<</if>>
 	<<if $arcologies[0].FSChattelReligionistDecoration == 100>>
-		The central
-		<<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure has a halo behind _hisP head, and the slaves are in attitudes of worship.
+		The central _statue figure has a halo behind _hisP head, and the slaves are in attitudes of worship.
 	<</if>>
 	<<if $arcologies[0].FSRomanRevivalistDecoration == 100>>
-		The central
-		<<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure is wearing a toga; _heP has a laurel wreath about _hisP brow.
+		The central _statue figure is wearing a toga; _heP has a laurel wreath about _hisP brow.
 	<</if>>
 	<<if $arcologies[0].FSAztecRevivalistDecoration == 100>>
-		The central
-		<<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure is wearing a feathered cloak, ornamented with jewels; _heP has a giant headdress on _hisP head.
+		The central _statue figure is wearing a feathered cloak, ornamented with jewels; _heP has a giant headdress on _hisP head.
 	<</if>>
 	<<if $arcologies[0].FSEgyptianRevivalistDecoration == 100>>
-		The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure is wearing a pharaoh's crown.
+		The central _statue figure is wearing a pharaoh's crown.
 	<</if>>
 	<<if $arcologies[0].FSEdoRevivalistDecoration == 100>>
-		The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure has a hand resting confidently on the hilts of the sheathed katana and wakizashi _heP has thrust through the sash about _hisP waist.
+		The central _statue figure has a hand resting confidently on the hilts of the sheathed katana and wakizashi _heP has thrust through the sash about _hisP waist.
 	<</if>>
 	<<if $arcologies[0].FSArabianRevivalistDecoration == 100>>
-		The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure is wearing a turban and flowing robes.
+		The central _statue figure is wearing a turban and flowing robes.
 	<</if>>
 	<<if $arcologies[0].FSChineseRevivalistDecoration == 100>>
-		The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure is wearing the robes of an ancient Chinese
+		The central _statue figure is wearing the robes of an ancient Chinese
 		<<if ($PC.title == 1)>>
 			Emperor.
 		<<else>>
diff --git a/src/uncategorized/assistantEvents.tw b/src/uncategorized/assistantEvents.tw
index 54d00a3063b3da17b18ea2dd7077bb6f27701fae..f2ec86232cce2de3d5c07105975ddd97d4abe863 100644
--- a/src/uncategorized/assistantEvents.tw
+++ b/src/uncategorized/assistantEvents.tw
@@ -1170,7 +1170,7 @@ of your personal assistant pops up on the nearest screen. "<<= properTitle()>>!"
 
 It's late one night, and for you, the day is not nearly over. Your penthouse never truly sleeps. You can hear public business going on some distance below you; you could certainly afford to totally soundproof your private quarters against all external noise, but the designer of the arcology clearly felt that its owner would benefit by this aural verification of its prosperity. Somewhere closer at hand, a slave is audibly nearing orgasm. And underneath all of this is the faint sound of the arcology itself, air circulation and hydroponics and power. Power.
 <br><br>
-You're not yet done with the day's business, and are leaning over your desk to compare a scatter of documents displayed on its surface. The penthouse lights are turned down to a low glow at the floorboards at night, offering enough illumination for anyone who needs to find their way around or find a sexual partner without disturbing anyone's sleep. You catch sight of your reflection in the wall opposite you: the diffuse light coming off the desktop gently illuminates your formal shirt, its top buttons undone, and highlights <<if $PC.boobs == 1>>the dark cleft formed by your cleavage<<else>>how tightly your undershirt is held by the muscles of your chest<</if>>.
+You're not yet done with the day's business, and are leaning over your desk to compare a scatter of documents displayed on its surface. The penthouse lights are turned down to a low glow at the floorboards at night, offering enough illumination for anyone who needs to find their way around or find a sexual partner without disturbing anyone's sleep. You catch sight of your reflection in the wall opposite you: the diffuse light coming off the desktop gently illuminates your formal shirt, its top buttons undone, and highlights <<if $PC.boobs >= 650>>the dark cleft formed by your cleavage<<elseif $PC.boobs >= 300>>the curves of your sensible breasts<<else>>how tightly your undershirt is held by the muscles of your chest<</if>>.
 <br><br>
 Suddenly, there is a fresh source of light behind you. The reflection you're looking at reveals that it's $assistantName's avatar, appearing on a wallscreen behind you, and you turn to look at _himA directly. _HeA's simulating shyness, a very unusual emotion for _himA to imitate.
 <<switch $assistantAppearance>>
diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw
index 350ad37699cc391ba6ddc3736e5918aaf9a94509..28d1f3163a7f7df653880a32c2d79b5401dbf0d8 100644
--- a/src/uncategorized/bodyModification.tw
+++ b/src/uncategorized/bodyModification.tw
@@ -26,9 +26,9 @@
 				<<case "burn">>
 					Your goal wasn't to make the distinct shape of a brand, but rather to permanently mar the skin with an open flame.
 				<<case "surgical">>
-					<<if $PC.medicine >= 100>>
+					<<if $PC.skill.medicine >= 100>>
 						Your medical mastery is perfect, so creating Frankenstein's monster was a deliberate work of art.
-					<<elseif $PC.medicine > 0>>
+					<<elseif $PC.skill.medicine > 0>>
 						Your medical skills are progressing, and the Frankenstein effect reminds you of your earliest attempts.
 					<<else>>
 						You really slashed away with your knife, but were careful not to allow $him to bleed out.
@@ -64,9 +64,9 @@
 				<<case "burn">>
 					Your goal wasn't to make the distinct shape of a brand, but rather to permanently mar the $activeSlave.skin skin of $his $scarTarget.local with an open flame.
 				<<case "surgical">>
-					<<if $PC.medicine >= 100>>
+					<<if $PC.skill.medicine >= 100>>
 						Your medical mastery is perfect, so creating such a scar was a deliberate act of degradation.
-					<<elseif $PC.medicine > 0>>
+					<<elseif $PC.skill.medicine > 0>>
 						Your medical skills are progressing, and the sloppy scar reminds you of your earliest attempts.
 					<<else>>
 						You really slashed away at $scarTarget.local with your knife, but were careful not to allow $him to bleed out.
diff --git a/src/uncategorized/brothel.tw b/src/uncategorized/brothel.tw
index d39040b8d81d579308ec6048c48795bfc9818c10..ee1e6356251ce992ad3bba494308fd3d5742300c 100644
--- a/src/uncategorized/brothel.tw
+++ b/src/uncategorized/brothel.tw
@@ -158,7 +158,7 @@ $brothelNameCaps
 
 <<set _Tmult0 = Math.trunc($brothel*1000*$upgradeMultiplierArcology)>>
 <br>It can support $brothel whores. Currently there <<if _BL == 1>>is<<else>>are<</if>> _BL whore<<if _BL != 1>>s<</if>> at $brothelName.
-[[Expand the brothel|Brothel][cashX(forceNeg(_Tmult0), "capEx"), $brothel += 5, $PC.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>> and will increase upkeep costs//
+[[Expand the brothel|Brothel][cashX(forceNeg(_Tmult0), "capEx"), $brothel += 5, $PC.skill.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>> and will increase upkeep costs//
 
 <<if $Madam != 0>>
 	<<setLocalPronouns $Madam>>
@@ -179,7 +179,7 @@ $brothelNameCaps
 	It has been upgraded with aphrodisiac injection systems that monitor the whores and adjust dosage to keep them healthy but desperately horny and hopelessly addicted. The systems are currently disabled. [[Enable them|Brothel][$brothelUpgradeDrugs = 1]] //Will increase upkeep costs//
 <<else>>
 	<<set _Tmult1 = Math.trunc(10000*$upgradeMultiplierArcology*$HackingSkillMultiplier)>>
-	It is a standard brothel. [[Upgrade the brothel with aphrodisiac injection systems|Brothel][cashX(forceNeg(_Tmult1), "capEx"), $brothelUpgradeDrugs = 0.1, $PC.hacking += 0.1]] //Costs <<print cashFormat(_Tmult1)>> and will increase upkeep costs//
+	It is a standard brothel. [[Upgrade the brothel with aphrodisiac injection systems|Brothel][cashX(forceNeg(_Tmult1), "capEx"), $brothelUpgradeDrugs = 0.1, $PC.skill.hacking += 0.1]] //Costs <<print cashFormat(_Tmult1)>> and will increase upkeep costs//
 <</if>>
 
 <br>$brothelNameCaps
diff --git a/src/uncategorized/cellblock.tw b/src/uncategorized/cellblock.tw
index d04f79ce10476fa3a7f93c3e60e022ee931eb41a..807ce726501dd797b12097bba9844f653edfd9e8 100644
--- a/src/uncategorized/cellblock.tw
+++ b/src/uncategorized/cellblock.tw
@@ -83,14 +83,14 @@ $cellblockNameCaps
 
 <<set _Tmult0 = Math.trunc($cellblock*1000*$upgradeMultiplierArcology)>>
 <br>$cellblockNameCaps has room for $cellblock slaves to be kept in close confinement. There <<if _CL == 1>>is<<else>>are<</if>> currently _CL slaves<<if _CL != 1>>s<</if>> kept in close confinement in $cellblockName.
-[[Expand the cellblock|Cellblock][cashX(forceNeg(_Tmult0), "capEx"), $cellblock += 5, $PC.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>>//
+[[Expand the cellblock|Cellblock][cashX(forceNeg(_Tmult0), "capEx"), $cellblock += 5, $PC.skill.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>>//
 
 <br>
 <<if $cellblockUpgrade == 1>>
 	Its compliance systems have been upgraded to allow slaves no mental respite, painstakingly correcting the tiniest misbehaviors to soften flaws into quirks at the cost of considerable anguish to inmates denied any rest from correction.
 <<else>>
 	<<set _Tmult1 = Math.trunc(20000*$upgradeMultiplierArcology*$HackingSkillMultiplier)>>
-	Its compliance systems are standard. [[Upgrade them to soften slave flaws|Cellblock][cashX(forceNeg(_Tmult1), "capEx"), $cellblockUpgrade = 1, $PC.engineering += 0.1, $PC.hacking += 0.1]] //Costs <<print cashFormat(_Tmult1)>>//
+	Its compliance systems are standard. [[Upgrade them to soften slave flaws|Cellblock][cashX(forceNeg(_Tmult1), "capEx"), $cellblockUpgrade = 1, $PC.skill.engineering += 0.1, $PC.skill.hacking += 0.1]] //Costs <<print cashFormat(_Tmult1)>>//
 <</if>>
 
 <<if $Wardeness != 0 && canPenetrate($Warden)>>
diff --git a/src/uncategorized/clinic.tw b/src/uncategorized/clinic.tw
index 56b283461c0447ae08190adbadc419b064d81748..f73345426f75803e74d17d36ca77b187b34fe58e 100644
--- a/src/uncategorized/clinic.tw
+++ b/src/uncategorized/clinic.tw
@@ -83,14 +83,14 @@ $clinicNameCaps
 
 <<set _Tmult0 = Math.trunc($clinic*1000*$upgradeMultiplierArcology)>>
 <br>$clinicNameCaps has room to support $clinic slaves while they receive treatment. There <<if _CL == 1>>is<<else>>are<</if>> currently _CL slave<<if _CL != 1>>s<</if>> receiving treatment in $clinicName.
-[[Expand the clinic|Clinic][cashX(forceNeg(_Tmult0), "capEx"), $clinic += 5, $PC.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>>//
+[[Expand the clinic|Clinic][cashX(forceNeg(_Tmult0), "capEx"), $clinic += 5, $PC.skill.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>>//
 
 <br>
 <<if $clinicUpgradeScanner == 1>>
 	$clinicNameCaps's scanners have been upgraded with a sampling system that can estimate carcinogenic damage to a slave's body.
 <<else>>
 	<<set _Tmult1 = Math.trunc(10000*$upgradeMultiplierArcology*Math.min($upgradeMultiplierMedicine, $HackingSkillMultiplier))>>
-	It mounts powerful medical scanning technology. [[Upgrade the scanners to help detect genomic damage|Clinic][cashX(forceNeg(_Tmult1), "capEx"), $clinicUpgradeScanner = 1, $PC.hacking += 0.1]] //Costs <<print cashFormat(_Tmult1)>>//
+	It mounts powerful medical scanning technology. [[Upgrade the scanners to help detect genomic damage|Clinic][cashX(forceNeg(_Tmult1), "capEx"), $clinicUpgradeScanner = 1, $PC.skill.hacking += 0.1]] //Costs <<print cashFormat(_Tmult1)>>//
 <</if>>
 
 <br>
@@ -104,16 +104,16 @@ $clinicNameCaps
 	<</if>>
 	<<set _Tmult3 = Math.trunc(150000*$upgradeMultiplierArcology*Math.min($upgradeMultiplierMedicine, $HackingSkillMultiplier))>>
 	<<if $clinicUpgradePurge === 0>>
-		<br>The entire floor beneath $clinicName is occupied by a huge filtration plant that constantly cycles out the patients' blood to remove impurities. [[Increase the effectiveness of the impurity purging|Clinic][cashX(forceNeg(_Tmult3), "capEx"), $clinicUpgradePurge = 1, $PC.hacking += 0.1]] //Costs <<print cashFormat(_Tmult3)>> and may cause health problems in slaves.//
+		<br>The entire floor beneath $clinicName is occupied by a huge filtration plant that constantly cycles out the patients' blood to remove impurities. [[Increase the effectiveness of the impurity purging|Clinic][cashX(forceNeg(_Tmult3), "capEx"), $clinicUpgradePurge = 1, $PC.skill.hacking += 0.1]] //Costs <<print cashFormat(_Tmult3)>> and may cause health problems in slaves.//
 	<<elseif $clinicUpgradePurge === 1>>
-		<br>Add nano magnets into the process to increase the rate that impurities are pulled from the body. [[Further increase the effectiveness of the impurity purging|Clinic][cashX(forceNeg(_Tmult3*2), "capEx"), $clinicUpgradePurge = 3, $PC.hacking += 0.1]] //Costs <<print cashFormat(_Tmult3*2)>>//
+		<br>Add nano magnets into the process to increase the rate that impurities are pulled from the body. [[Further increase the effectiveness of the impurity purging|Clinic][cashX(forceNeg(_Tmult3*2), "capEx"), $clinicUpgradePurge = 3, $PC.skill.hacking += 0.1]] //Costs <<print cashFormat(_Tmult3*2)>>//
 	<</if>>
 	<<if $Nurse == 0>>
 		<br>However, without a nurse in attendance, the @@.yellow;blood treatment equipment remains idle.@@
 	<</if>>
 <<else>>
 	<<set _Tmult2 = Math.trunc(50000*$upgradeMultiplierArcology*Math.min($upgradeMultiplierMedicine, $HackingSkillMultiplier))>>
-	It includes standard dialysis equipment. [[Install advanced blood treatment equipment to help address drug side effects|Clinic][cashX(forceNeg(_Tmult2), "capEx"), $clinicUpgradeFilters = 1, $PC.hacking += 0.1]] //Costs <<print cashFormat(_Tmult2)>>//
+	It includes standard dialysis equipment. [[Install advanced blood treatment equipment to help address drug side effects|Clinic][cashX(forceNeg(_Tmult2), "capEx"), $clinicUpgradeFilters = 1, $PC.skill.hacking += 0.1]] //Costs <<print cashFormat(_Tmult2)>>//
 <</if>>
 
 <br>
diff --git a/src/uncategorized/club.tw b/src/uncategorized/club.tw
index 6efe471d720cdcccbe4ad60b59d723b86902936e..39993381c863c488f01b40704e8ca3f13075c56a 100644
--- a/src/uncategorized/club.tw
+++ b/src/uncategorized/club.tw
@@ -222,14 +222,14 @@ $clubNameCaps
 
 <<set _Tmult0 = Math.trunc($club*1000*$upgradeMultiplierArcology)>>
 <br>There are rooms off $clubName to support slaves as they work as club sluts. They can support $club slaves. There <<if _CL == 1>>is<<else>>are<</if>> currently _CL slave<<if _CL != 1>>s<</if>> serving in $clubName.
-[[Expand the club|Club][cashX(forceNeg(_Tmult0), "capEx"), $club += 5, $PC.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>> and will increase upkeep costs//
+[[Expand the club|Club][cashX(forceNeg(_Tmult0), "capEx"), $club += 5, $PC.skill.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>> and will increase upkeep costs//
 
 <br>
 <<if $clubUpgradePDAs == 1>>
 	$clubNameCaps has been wired for unobtrusive personal data assistants to let your sluts pass tips about enslaveable people to your recruiter.
 <<else>>
 	<<set _Tmult1 = Math.trunc(10000*$upgradeMultiplierArcology*$HackingSkillMultiplier)>>
-	The rooms are standard. [[Upgrade them with PDAs to help your recruiter|Club][cashX(forceNeg(_Tmult1), "capEx"), $clubUpgradePDAs = 1, $PC.hacking += 0.1]] //Costs <<print cashFormat(_Tmult1)>> and will increase upkeep costs//
+	The rooms are standard. [[Upgrade them with PDAs to help your recruiter|Club][cashX(forceNeg(_Tmult1), "capEx"), $clubUpgradePDAs = 1, $PC.skill.hacking += 0.1]] //Costs <<print cashFormat(_Tmult1)>> and will increase upkeep costs//
 <</if>>
 
 <<if $DJ != 0>>
diff --git a/src/uncategorized/costsBudget.tw b/src/uncategorized/costsBudget.tw
index 693e4a4ca6ef16d950c56981e1bd689c7c408eb8..752ce48deabf5088cd1a6ff55854c4245e881e53 100644
--- a/src/uncategorized/costsBudget.tw
+++ b/src/uncategorized/costsBudget.tw
@@ -318,7 +318,7 @@ for (var i = 0; i < State.variables.lastWeeksCashIncome.length; i++){
 	<<print budgetLine("mercenaries",
 			"Security: <<if $barracks>>[[$mercenariesTitle|Barracks][$nextButton = \"Back to Budget\", $nextLink = \"Costs Budget\"]]
 			<<else>>Mercenaries<br>//@@.red;Cost increased by the lack of an armory to house them.@@//<</if>>
-			<<if ($PC.warfare >= 100) || ($PC.career == \"arcology owner\")>><br>//Cost reduced by your @@.springgreen;mercenary contacts.@@//<</if>>
+			<<if ($PC.skill.warfare >= 100) || ($PC.career == \"arcology owner\")>><br>//Cost reduced by your @@.springgreen;mercenary contacts.@@//<</if>>
 		")>>
 
 	<<print budgetLine("securityExpansion", "Security expansion")>>
diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw
index fd7b539649069de52ec7fbaeba169a1b2885cef3..b26e162e6838d1cbcbf3d7fd2909e100f76dad9c 100644
--- a/src/uncategorized/costsReport.tw
+++ b/src/uncategorized/costsReport.tw
@@ -88,10 +88,10 @@ your personal living expenses are @@.yellowgreen;<<print cashFormat(Math.trunc($
 <<if $mercenaries > 0>>
 	<<set _mercCosts = $mercenaries*2000>>
 	<<if $barracks>><<set _mercCosts *= 0.5>><</if>>
-	<<if ($PC.warfare >= 100) || ($PC.career == "arcology owner")>><<set _mercCosts *= 0.5>><</if>>
+	<<if ($PC.skill.warfare >= 100) || ($PC.career == "arcology owner")>><<set _mercCosts *= 0.5>><</if>>
 	<br>__Mercenary Expenses__: @@.yellowgreen;<<print cashFormat(_mercCosts)>>@@
 	<<if $barracks>><<else>>//@@.red;Increased by the lack of a barracks.@@//<</if>>
-	<<if ($PC.warfare >= 100) || ($PC.career == "arcology owner")>>//Reduced by your @@.springgreen;mercenary contacts.@@//<</if>>
+	<<if ($PC.skill.warfare >= 100) || ($PC.career == "arcology owner")>>//Reduced by your @@.springgreen;mercenary contacts.@@//<</if>>
 	<<set _arcologyCosts += _mercCosts>>
 <</if>>
 
diff --git a/src/uncategorized/dairy.tw b/src/uncategorized/dairy.tw
index be27cb391c1b82b447119c9fe8c2ca1626f57898..cd4c9473f57ef883c98ee069985aa1088ac48473 100644
--- a/src/uncategorized/dairy.tw
+++ b/src/uncategorized/dairy.tw
@@ -325,7 +325,7 @@
 <</if>>
 
 <<set _Tmult0 = Math.trunc($dairy*1000*$upgradeMultiplierArcology)>>
-<br>$dairyNameCaps can support $dairy milkers. There <<if _DL == 1>>is<<else>>are<</if>> currently _DL cow<<if _DL != 1>>s<</if>>. [[Expand the dairy|Dairy][cashX(forceNeg(_Tmult0), "capEx"), $dairy += 5, $PC.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>> and will increase upkeep costs//
+<br>$dairyNameCaps can support $dairy milkers. There <<if _DL == 1>>is<<else>>are<</if>> currently _DL cow<<if _DL != 1>>s<</if>>. [[Expand the dairy|Dairy][cashX(forceNeg(_Tmult0), "capEx"), $dairy += 5, $PC.skill.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>> and will increase upkeep costs//
 
 <<set _Tmult1 = Math.trunc(10000*$upgradeMultiplierArcology)>>
 <br><br>
@@ -340,7 +340,7 @@
 		''inactive.'' [[Active|Dairy][$dairyFeedersSetting = 1]]
 	<</if>>
 <<else>>
-	$dairyNameCaps is equipped to feed and clean slaves normally. [[Upgrade the milking machines with intubators|Dairy][cashX(forceNeg(_Tmult1), "capEx"), $dairyFeedersUpgrade = 1, $PC.engineering += 0.1]] //Costs <<print cashFormat(_Tmult1)>> and will increase upkeep costs//
+	$dairyNameCaps is equipped to feed and clean slaves normally. [[Upgrade the milking machines with intubators|Dairy][cashX(forceNeg(_Tmult1), "capEx"), $dairyFeedersUpgrade = 1, $PC.skill.engineering += 0.1]] //Costs <<print cashFormat(_Tmult1)>> and will increase upkeep costs//
 
 <</if>>
 
@@ -377,7 +377,7 @@
 		''inactive.'' [[Activate|Dairy][$dairyStimulatorsSetting = 1]]
 	<</if>>
 <<else>>
-	$dairyNameCaps does not automatically sodomize. [[Upgrade the cockmilking machines with sodomizers|Dairy][cashX(forceNeg(_Tmult1), "capEx"), $dairyStimulatorsUpgrade = 1, $PC.engineering += 0.1]] //Costs <<print cashFormat(_Tmult1)>> and will increase upkeep costs//
+	$dairyNameCaps does not automatically sodomize. [[Upgrade the cockmilking machines with sodomizers|Dairy][cashX(forceNeg(_Tmult1), "capEx"), $dairyStimulatorsUpgrade = 1, $PC.skill.engineering += 0.1]] //Costs <<print cashFormat(_Tmult1)>> and will increase upkeep costs//
 <</if>>
 
 <<set _Tmult2 = Math.trunc(5000*$upgradeMultiplierArcology)>>
@@ -386,7 +386,7 @@
 <<if $dairyPrepUpgrade == 1>>
 	$dairyNameCaps features a preparatory raper designed to gape slaves for integration.
 <<else>>
-	$dairyNameCaps's industrial machines can only accept slaves with loose holes. [[Install a preparatory raper|Dairy][cashX(forceNeg(_Tmult2), "capEx"), $dairyPrepUpgrade = 1, $PC.engineering += 0.1]] //Costs <<print cashFormat(_Tmult2)>>//
+	$dairyNameCaps's industrial machines can only accept slaves with loose holes. [[Install a preparatory raper|Dairy][cashX(forceNeg(_Tmult2), "capEx"), $dairyPrepUpgrade = 1, $PC.skill.engineering += 0.1]] //Costs <<print cashFormat(_Tmult2)>>//
 <</if>>
 <</if>>
 
@@ -433,7 +433,7 @@
 			$dairyNameCaps is currently set to normal operation, and will allow the breasts of slimmer slaves to expand due to milking. [[Set milkers to preserve small breast sizes|Dairy][$dairySlimMaintain = 1]] //NOTE: This will NOT remove existing lactation implants//
 		<</if>>
 	<<else>>
-		Dairy cows' breasts will expand normally as a result of the milking process. [[Optimize the milking process to preserve small breast sizes|Dairy][cashX(forceNeg(_Tmult2), "capEx"), $dairySlimMaintainUpgrade = 1, $dairySlimMaintain = 1, $PC.engineering += 0.1]] //Costs <<print cashFormat(_Tmult2)>>//
+		Dairy cows' breasts will expand normally as a result of the milking process. [[Optimize the milking process to preserve small breast sizes|Dairy][cashX(forceNeg(_Tmult2), "capEx"), $dairySlimMaintainUpgrade = 1, $dairySlimMaintain = 1, $PC.skill.engineering += 0.1]] //Costs <<print cashFormat(_Tmult2)>>//
 	<</if>>
 <<elseif $arcologies[0].FSSlimnessEnthusiast > 20>>
 	<br>
@@ -445,7 +445,7 @@
 			$dairyNameCaps is currently set to normal operation, and will allow the breasts of slimmer slaves to expand due to milking. [[Set milkers to preserve small breast sizes|Dairy][$dairySlimMaintain = 1]] //NOTE: This will NOT remove existing lactation implants//
 		<</if>>
 	<<else>>
-		Dairy cows' breasts will expand normally as a result of the milking process. [[Optimize the milking process to preserve small breast sizes|Dairy][cashX(forceNeg(_Tmult2), "capEx"), $dairySlimMaintainUpgrade = 1, $dairySlimMaintain = 1, $PC.engineering += 0.1]] //Costs <<print cashFormat(_Tmult2)>>//
+		Dairy cows' breasts will expand normally as a result of the milking process. [[Optimize the milking process to preserve small breast sizes|Dairy][cashX(forceNeg(_Tmult2), "capEx"), $dairySlimMaintainUpgrade = 1, $dairySlimMaintain = 1, $PC.skill.engineering += 0.1]] //Costs <<print cashFormat(_Tmult2)>>//
 	<</if>>
 <</if>>
 
diff --git a/src/uncategorized/economics.tw b/src/uncategorized/economics.tw
index 66156b5798e437a4151285240c50ad3bd2dd5353..921c790d269eedaff04fa21e6a75eb6c23307091 100644
--- a/src/uncategorized/economics.tw
+++ b/src/uncategorized/economics.tw
@@ -47,7 +47,7 @@
 
 <<include "Personal Business">>
 
-<<if ($PC.boobs == 1 && $PC.boobsBonus > 0) || $PC.pregKnown == 1 || $playerAging != 0>>
+<<if $PC.boobs >= 1000 || $PC.pregKnown == 1 || $playerAging != 0>>
 	<br><br>
 	<<include "Personal Notes">>
 <</if>>
@@ -70,7 +70,7 @@
 	<</if>>
 	<button class="tablinks" onclick="App.UI.tabbar.openTab(event, 'Reputation')">Reputation</button>
 	<button class="tablinks" onclick="App.UI.tabbar.openTab(event, 'Business')">Personal Business</button>
-	<<if ($PC.boobs == 1 && $PC.boobsBonus > 0) || $PC.pregKnown == 1 || $playerAging != 0>>
+	<<if $PC.boobs >= 1000 || $PC.pregKnown == 1 || $playerAging != 0>>
 		<button class="tablinks" onclick="App.UI.tabbar.openTab(event, 'Personal')">Personal Notes</button>
 	<</if>>
 </div>
@@ -129,7 +129,7 @@
 	</div>
 </div>
 
-<<if ($PC.boobs == 1 && $PC.boobsBonus > 0) || $PC.pregKnown == 1 || $playerAging != 0>>
+<<if $PC.boobs >= 1000 || $PC.pregKnown == 1 || $playerAging != 0>>
 	<div id="Personal" class="tabcontent">
 		<div class="content">
 			<<include "Personal Notes">>
diff --git a/src/uncategorized/endWeek.tw b/src/uncategorized/endWeek.tw
index 4a0323941878dc4a70a27b515876e48a8cb73e36..fb1dacb00146bd9f9b01009bfb6fb89962846aa2 100644
--- a/src/uncategorized/endWeek.tw
+++ b/src/uncategorized/endWeek.tw
@@ -206,9 +206,9 @@
 <<elseif $PC.physicalAge >= 0>>
 	<<set $PC.sexualEnergy -= 6>>
 <</if>>
-<<if $PC.balls > 2>>
+<<if $PC.balls >= 10>>
 	<<set $PC.sexualEnergy += 2>>
-<<elseif $PC.balls > 1>>
+<<elseif $PC.balls >= 5>>
 	<<set $PC.sexualEnergy++>>
 <</if>>
 <<if $PC.preg > 20>>
diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw
index 2d3c18651cd078c9807747811071110ed75a032c..9f91854e6216195673a9149683c161fefbd350de 100644
--- a/src/uncategorized/genericPlotEvents.tw
+++ b/src/uncategorized/genericPlotEvents.tw
@@ -1064,7 +1064,7 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your
 <<else>>
 	<<link "Take an Arcology Tour">>
 		<<replace "#result">>
-		The cubicle _heU takes you back into is small, but clean and well-kept. _HeU gives you a kiss on the cheek. "That's not part of the Arcology Tour. Sorry. Here's the start of the real tour." <<if $PC.dick == 1>>_HeU sucks you to full mast while shucking off _hisU skimpy clothing<<if $PC.vagina == 1>>, giggling appreciatively at your pussy and lavishing attention on it with _hisU hands<</if>>. Then _heU turns around and slides you into _hisU <<if _heU == "he">>ass<<else>>pussy<</if>> with the ease of long practice. After a good long standing fuck, _heU begs you to "finish the tour" in _hisU ass and then "pay the tour guide" by coming in _hisU mouth.<<else>>_HeU giggles. "Tour's a little different for a lady like you, Ma'am. Here," _heU says, and starts to make out with you, pressing you back down onto a bench. _HeU lavishes expert oral attention on your pussy in a series of clever positions that offer every part of _hisU body to you in turn for you to grope, squeeze, and penetrate with your fingers.<</if>> Afterward, as _heU's hurrying back into _hisU clothes, _heU says, "We've got the money you paid to set those rooms up, @@.yellowgreen;here it is.@@ And we're doing pretty good, so we could use a little more working space. We'd like the vacant space next door. We'll furnish it, if you'll let us have it?" @@.green;$arcologies[0].name's prosperity has increased.@@
+		The cubicle _heU takes you back into is small, but clean and well-kept. _HeU gives you a kiss on the cheek. "That's not part of the Arcology Tour. Sorry. Here's the start of the real tour." <<if $PC.dick != 0>>_HeU sucks you to full mast while shucking off _hisU skimpy clothing<<if $PC.vagina != -1>>, giggling appreciatively at your pussy and lavishing attention on it with _hisU hands<</if>>. Then _heU turns around and slides you into _hisU <<if _heU == "he">>ass<<else>>pussy<</if>> with the ease of long practice. After a good long standing fuck, _heU begs you to "finish the tour" in _hisU ass and then "pay the tour guide" by coming in _hisU mouth.<<else>>_HeU giggles. "Tour's a little different for a lady like you, Ma'am. Here," _heU says, and starts to make out with you, pressing you back down onto a bench. _HeU lavishes expert oral attention on your pussy in a series of clever positions that offer every part of _hisU body to you in turn for you to grope, squeeze, and penetrate with your fingers.<</if>> Afterward, as _heU's hurrying back into _hisU clothes, _heU says, "We've got the money you paid to set those rooms up, @@.yellowgreen;here it is.@@ And we're doing pretty good, so we could use a little more working space. We'd like the vacant space next door. We'll furnish it, if you'll let us have it?" @@.green;$arcologies[0].name's prosperity has increased.@@
 		<<set $arcologies[0].prosperity += 2>>
 		<<run cashX(500, "event")>>
 		<</replace>>
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index 0b08c197a9fd925a239c00bfcbf10b28867187c3..ceecabfbab315480561d48d7264342b556c6ed8f 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -675,7 +675,7 @@ is
 	<<case "judgemental">>
 		$He is @@.red;sexually judgemental,@@ and often denigrates $his sexual partners' performance.
 	<<case "cum addict">>
-		$He's a @@.yellow;cum addict:@@ $he has a deep psychological addiction to <<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>pussyjuice<</if>> and becomes anxious if $he goes for a few hours without drinking any.
+		$He's a @@.yellow;cum addict:@@ $he has a deep psychological addiction to <<if $PC.balls > 0>>semen<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>pussyjuice<</if>> and becomes anxious if $he goes for a few hours without drinking any.
 	<<case "anal addict">>
 		$He's an @@.yellow;anal addict:@@ $he has a deep psychological need to be fucked in the ass and becomes anxious if $he goes for a few hours without anal.
 	<<case "attention whore">>
@@ -1143,11 +1143,11 @@ is
 		<<if canSee($activeSlave)>>
 			<<if ($activeSlave.attrKnown == 1)>>
 				<<if ($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting > 1)>>
-					<<if ($activeSlave.attrXX > 85) && ($PC.boobs == 1)>>
+					<<if ($activeSlave.attrXX > 85) && ($PC.boobs >= 400)>>
 						$His attraction to women is obvious: $he can't seem to stop staring at your breasts.
-					<<elseif ($activeSlave.attrXY > 85) && ($PC.dick == 1)>>
+					<<elseif ($activeSlave.attrXY > 85) && ($PC.dick != 0)>>
 						$His attraction to men is obvious: $he can't seem to stop glancing down at your package.
-					<<elseif ($activeSlave.attrXY > 85) && ($PC.boobs == 0)>>
+					<<elseif ($activeSlave.attrXY > 85) && $PC.title == 1 && ($PC.boobs < 300)>>
 						$His attraction to men is obvious: $he can't seem to stop checking out your broad chest.
 					<</if>>
 				<</if>>
diff --git a/src/uncategorized/manageArcology.tw b/src/uncategorized/manageArcology.tw
index b6e2c24f28a5724ecf6df8573349deb3be942190..10beceace62928c51071350c502f49974a495990 100644
--- a/src/uncategorized/manageArcology.tw
+++ b/src/uncategorized/manageArcology.tw
@@ -38,19 +38,19 @@ __Construction__
 	//The first major upgrade needed is the installation of a drone security system so higher-class citizens will feel safe and protected should they choose to immigrate. This upgrade will cost <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>.//
 	<<link "Install drone security system" "Manage Arcology">>
 		<<run cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx")>>
-		<<set $arcologyUpgrade.drones = 1, $PC.engineering += 1>>
+		<<set $arcologyUpgrade.drones = 1, $PC.skill.engineering += 1>>
 		<<if $secExpEnabled == 1>>
 			<<set $secBots.active = 1, $secBots.troops = 30, $secBots.maxTroops = 30>>
 		<</if>>
 	<</link>>
 <<elseif $arcologyUpgrade.hydro != 1>>
-	//The next major upgrade needed is the installation of a better water reclamation system so your residents will have access to cheaper water and hydroponically grown food. This upgrade will cost <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>.// [[Upgrade water reclamation system|Manage Arcology][cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology)), "capEx"), $arcologyUpgrade.hydro = 1, $PC.engineering += 1]]
+	//The next major upgrade needed is the installation of a better water reclamation system so your residents will have access to cheaper water and hydroponically grown food. This upgrade will cost <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>.// [[Upgrade water reclamation system|Manage Arcology][cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology)), "capEx"), $arcologyUpgrade.hydro = 1, $PC.skill.engineering += 1]]
 <<elseif $arcologyUpgrade.apron != 1>>
-	//The next major upgrade needed is the installation of a broader apron at the bottom of the arcology to increase its surface area and gather more solar energy. Right now, tenants that use a lot of power have to import it from outside. This upgrade will cost <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>.// [[Install solar apron|Manage Arcology][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $arcologyUpgrade.apron = 1, $PC.engineering += 1]]
+	//The next major upgrade needed is the installation of a broader apron at the bottom of the arcology to increase its surface area and gather more solar energy. Right now, tenants that use a lot of power have to import it from outside. This upgrade will cost <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>.// [[Install solar apron|Manage Arcology][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $arcologyUpgrade.apron = 1, $PC.skill.engineering += 1]]
 <<elseif $arcologyUpgrade.grid != 1>>
-	//The next major upgrade needed is an improvement of the arcology's electrical transmission lines to make efficient use of the additional power from the solar apron. This upgrade will cost <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>.// [[Upgrade transmission lines|Manage Arcology][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $arcologyUpgrade.grid = 1, $PC.engineering += 1]]
+	//The next major upgrade needed is an improvement of the arcology's electrical transmission lines to make efficient use of the additional power from the solar apron. This upgrade will cost <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>.// [[Upgrade transmission lines|Manage Arcology][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $arcologyUpgrade.grid = 1, $PC.skill.engineering += 1]]
 <<elseif $arcologyUpgrade.spire != 1>>
-	//The next major upgrade needed is the addition of a spire at the top of the arcology to increase the space available for the wealthiest citizens to own whole floors. This huge project will cost <<print cashFormat(Math.trunc(250000*$upgradeMultiplierArcology))>>.// [[Add spire|Manage Arcology][cashX(forceNeg(Math.trunc(250000*$upgradeMultiplierArcology)), "capEx"), $arcologyUpgrade.spire = 1, $sectors[1].type = "Apartments", $sectors[2].type = "Apartments", $sectors[3].type = "Apartments", $sectors[4].type = "Apartments", $sectors[1].ownership = 1, $sectors[2].ownership = 1, $sectors[3].ownership = 1, $sectors[4].ownership = 1, $PC.engineering += 1]]
+	//The next major upgrade needed is the addition of a spire at the top of the arcology to increase the space available for the wealthiest citizens to own whole floors. This huge project will cost <<print cashFormat(Math.trunc(250000*$upgradeMultiplierArcology))>>.// [[Add spire|Manage Arcology][cashX(forceNeg(Math.trunc(250000*$upgradeMultiplierArcology)), "capEx"), $arcologyUpgrade.spire = 1, $sectors[1].type = "Apartments", $sectors[2].type = "Apartments", $sectors[3].type = "Apartments", $sectors[4].type = "Apartments", $sectors[1].ownership = 1, $sectors[2].ownership = 1, $sectors[3].ownership = 1, $sectors[4].ownership = 1, $PC.skill.engineering += 1]]
 <<else>>
 	//The arcology's public areas are fully upgraded.//
 <</if>>
@@ -58,10 +58,10 @@ __Construction__
 <br>
 
 <<if $weatherCladding == 0>>
-	//Extreme weather is becoming common worldwide. The arcology's exterior can be hardened to reduce damage in case of heavy weather, but this will reduce its beauty somewhat and will cost <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>. Your citizens are <<if $weatherAwareness == 0>>likely to disapprove of this measure as alarmism.<<else>>@@.yellow;concerned that this measure has not been taken already.@@<</if>> // [[Apply weather cladding|Manage Arcology][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $weatherCladding = 1, $PC.engineering += 1]]
+	//Extreme weather is becoming common worldwide. The arcology's exterior can be hardened to reduce damage in case of heavy weather, but this will reduce its beauty somewhat and will cost <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>. Your citizens are <<if $weatherAwareness == 0>>likely to disapprove of this measure as alarmism.<<else>>@@.yellow;concerned that this measure has not been taken already.@@<</if>> // [[Apply weather cladding|Manage Arcology][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $weatherCladding = 1, $PC.skill.engineering += 1]]
 <<elseif $weatherCladding == 1 && $arcologyUpgrade.spire == 1>>
 	The arcology's exterior is jacketed with unsightly but sturdy weather cladding. Your arcology is so prosperous that remodeling the cladding into something beautiful is within the realm of possibility. This massive project will cost <<print cashFormat(Math.trunc(3500000*$upgradeMultiplierArcology))>> and without a doubt render your arcology one of the wonders of the world.
-	[[Remodel weather cladding|Manage Arcology][cashX(forceNeg(Math.trunc(3500000*$upgradeMultiplierArcology)), "capEx"), $weatherCladding = 2, $PC.engineering += 1]]
+	[[Remodel weather cladding|Manage Arcology][cashX(forceNeg(Math.trunc(3500000*$upgradeMultiplierArcology)), "capEx"), $weatherCladding = 2, $PC.skill.engineering += 1]]
 <<elseif $weatherCladding == 1>>
 	//The arcology's exterior is jacketed with unsightly but sturdy weather cladding.//
 <<elseif $weatherCladding == 2>>
@@ -76,7 +76,7 @@ __Construction__
 	You can have your citizens pay for the fiberoptic upgrades, reducing the cost to <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology*$HackingSkillMultiplier))>>.
 	You can also have them heavily subsidize installation, they will be upset about it, but it will only cost <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology*$HackingSkillMultiplier))>>.
 
-	[[No subsidy|Manage Arcology][cashX(forceNeg(Math.trunc(25000*$upgradeMultiplierArcology*$HackingSkillMultiplier)), "capEx"), $FCTVreceiver = 1, $receiverAvailable = $week, repX(500, "capEx"), $PC.hacking += 1]] | [[Light subsidy|Manage Arcology][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology*$HackingSkillMultiplier)), "capEx"), $FCTVreceiver = 1, $receiverAvailable = $week, $PC.hacking += 1]] | [[Heavy subsidy|Manage Arcology][cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology*$HackingSkillMultiplier)), "capEx"), $FCTVreceiver = 1, $receiverAvailable = $week, repX(-1500, "capEx"), $PC.hacking += 1]]
+	[[No subsidy|Manage Arcology][cashX(forceNeg(Math.trunc(25000*$upgradeMultiplierArcology*$HackingSkillMultiplier)), "capEx"), $FCTVreceiver = 1, $receiverAvailable = $week, repX(500, "capEx"), $PC.skill.hacking += 1]] | [[Light subsidy|Manage Arcology][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology*$HackingSkillMultiplier)), "capEx"), $FCTVreceiver = 1, $receiverAvailable = $week, $PC.skill.hacking += 1]] | [[Heavy subsidy|Manage Arcology][cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology*$HackingSkillMultiplier)), "capEx"), $FCTVreceiver = 1, $receiverAvailable = $week, repX(-1500, "capEx"), $PC.skill.hacking += 1]]
 <<elseif ($FCTVreceiver == 3)>>
 	You have installed the FCTV receiver and have access to the full range of FCTV's programs. High viewership rates amongst your citizens makes it easier to pursue your societal goals.
 <<elseif ($FCTVreceiver == 2)>>
@@ -104,7 +104,7 @@ __Construction__
 	__Security__
 	<<if $SecExp.buildings.propHub.active == 0>>
 		<br>
-		[[Set up the propaganda Hub|Manage Arcology][cashX(forceNeg(Math.trunc((5000*$upgradeMultiplierArcology*$HackingSkillMultiplier))), "capEx"), $SecExp.buildings.propHub.active = 1, $PC.engineering += 1, $PC.hacking += 1, App.SecExp.Check.general()]]
+		[[Set up the propaganda Hub|Manage Arcology][cashX(forceNeg(Math.trunc((5000*$upgradeMultiplierArcology*$HackingSkillMultiplier))), "capEx"), $SecExp.buildings.propHub.active = 1, $PC.skill.engineering += 1, $PC.skill.hacking += 1, App.SecExp.Check.general()]]
 		//Costs <<print cashFormat(Math.trunc((5000*$upgradeMultiplierArcology*$HackingSkillMultiplier)))>>.//
 		<br>//Building specialized in the management of authority.//
 	<<else>>
@@ -113,7 +113,7 @@ __Construction__
 	<</if>>
 	<<if $secHQ == 0>>
 		<br>
-		[[Set up the security headquarters|Manage Arcology][cashX(forceNeg(Math.trunc((5000*$upgradeMultiplierArcology*$HackingSkillMultiplier))), "capEx"), $secHQ = 1, $PC.engineering += 1, $PC.hacking += 1]]
+		[[Set up the security headquarters|Manage Arcology][cashX(forceNeg(Math.trunc((5000*$upgradeMultiplierArcology*$HackingSkillMultiplier))), "capEx"), $secHQ = 1, $PC.skill.engineering += 1, $PC.skill.hacking += 1]]
 		//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology*$HackingSkillMultiplier))>>.//
 		<br>//Building specialized in the management of security and crime.//
 	<<else>>
@@ -123,7 +123,7 @@ __Construction__
 
 	<<if $SecExp.buildings.barracks.active == 0>>
 		<br>
-		[[Set up the barracks|Manage Arcology][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $SecExp.buildings.barracks.active = 1, $PC.engineering += 1, App.SecExp.Check.general()]]
+		[[Set up the barracks|Manage Arcology][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $SecExp.buildings.barracks.active = 1, $PC.skill.engineering += 1, App.SecExp.Check.general()]]
 		//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 		<br>//Building specialized in the management of armed forces.//
 	<<else>>
@@ -133,9 +133,9 @@ __Construction__
 
 	<<if $riotCenter == 0 && $SecExp.settings.rebellion.enabled == 1>>
 		<br>
-		[[Set up the riot control center|Manage Arcology][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $riotCenter = 1, $PC.engineering += 1]]
+		[[Set up the riot control center|Manage Arcology][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $riotCenter = 1, $PC.skill.engineering += 1]]
 		//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
-		<<if $PC.engineering < 100>> <<= IncreasePCSkills('engineering', 0.1)>> <</if>>
+		<<if $PC.skill.engineering < 100>> <<= IncreasePCSkills('engineering', 0.1)>> <</if>>
 		<br>//Building specialized in the management and suppression of rebellions.//
 	<<elseif $SecExp.settings.rebellion.enabled == 1>>
 		<br>
@@ -143,7 +143,7 @@ __Construction__
 	<</if>>
 <</if>>
 
-<<if ($PC.engineering >= 100) || ($PC.career == "arcology owner")>>
+<<if ($PC.skill.engineering >= 100) || ($PC.career == "arcology owner")>>
 	<br>//Arcology upgrades are less expensive due to your @@.springgreen;<<if $PC.career == "arcology owner">>experience in the Free Cities<<else>>arcology engineering training<</if>>.@@//
 <</if>>
 
diff --git a/src/uncategorized/managePenthouse.tw b/src/uncategorized/managePenthouse.tw
index 0992fb9cbe46d391505aa97bc8f07a5b9a6225fa..f4b3bd5265f2f3eeb4e9668f45136856886502c7 100644
--- a/src/uncategorized/managePenthouse.tw
+++ b/src/uncategorized/managePenthouse.tw
@@ -26,7 +26,7 @@ __Penthouse Capacity__
 <br>
 
 The main penthouse dormitory, which houses slaves who aren't living in a facility and aren't granted a luxurious standard of living, has a capacity of ''$dormitory'' slaves.
-[[Expand the dormitory|Manage Penthouse][cashX(forceNeg(Math.trunc($dormitory*1000*$upgradeMultiplierArcology)), "capEx"), $dormitory += 10, $PC.engineering += .1]]
+[[Expand the dormitory|Manage Penthouse][cashX(forceNeg(Math.trunc($dormitory*1000*$upgradeMultiplierArcology)), "capEx"), $dormitory += 10, $PC.skill.engineering += .1]]
 //Costs <<print cashFormat(Math.trunc($dormitory*1000*$upgradeMultiplierArcology))>>//
 <br>&nbsp;&nbsp;&nbsp;&nbsp;
 //Exceeding this limit is bad for slaves' health, devotion and trust//
@@ -34,7 +34,7 @@ The main penthouse dormitory, which houses slaves who aren't living in a facilit
 <br>
 
 The penthouse also features little individual rooms, which house slaves who do enjoy a luxurious standard of living. They have a capacity of ''$rooms'' slaves.
-[[Expand the rooms|Manage Penthouse][cashX(forceNeg(Math.trunc($rooms*1000*$upgradeMultiplierArcology)), "capEx"), $rooms += 5, $PC.engineering += .1]]
+[[Expand the rooms|Manage Penthouse][cashX(forceNeg(Math.trunc($rooms*1000*$upgradeMultiplierArcology)), "capEx"), $rooms += 5, $PC.skill.engineering += .1]]
 //Costs <<print cashFormat(Math.trunc($rooms*1000*$upgradeMultiplierArcology))>>//
 <br>&nbsp;&nbsp;&nbsp;&nbsp;
 //The number of rooms determines the number of slaves that can be granted luxury//
@@ -46,7 +46,7 @@ __Penthouse Facilities__
 <br>
 
 <<if $masterSuite == 0>>
-	[[Improve your master bedroom to house a harem of personal toys|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $masterSuite = 1, $PC.engineering += 1]]
+	[[Improve your master bedroom to house a harem of personal toys|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $masterSuite = 1, $PC.skill.engineering += 1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	Your penthouse is capped by a master suite with room for an entire harem of personal toys.
@@ -55,7 +55,7 @@ __Penthouse Facilities__
 <br>
 
 <<if $servantsQuarters == 0>>
-	[[Build a dormitory to house large numbers of house servants|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $servantsQuarters = 5, $PC.engineering += 1]]
+	[[Build a dormitory to house large numbers of house servants|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $servantsQuarters = 5, $PC.skill.engineering += 1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	Your penthouse includes a dormitory to house large numbers of house servants.
@@ -64,7 +64,7 @@ __Penthouse Facilities__
 <br>
 
 <<if $schoolroom == 0>>
-	[[Build a schoolroom where slaves can be educated|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $schoolroom = 5, $PC.engineering += 1]]
+	[[Build a schoolroom where slaves can be educated|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $schoolroom = 5, $PC.skill.engineering += 1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	Your penthouse includes a schoolroom where slaves can be educated.
@@ -73,7 +73,7 @@ __Penthouse Facilities__
 <br>
 
 <<if $spa == 0>>
-	[[Install open baths to provide relaxation space for resting slaves|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $spa = 5, $PC.engineering += 1]]
+	[[Install open baths to provide relaxation space for resting slaves|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $spa = 5, $PC.skill.engineering += 1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	The penthouse includes a fully appointed spa where slaves can rest and recuperate.
@@ -83,7 +83,7 @@ __Penthouse Facilities__
 	<br>
 	<<if $cheatMode == 1>>
 	<<if $nursery == 0>>
-		[[Build a nursery to raise children from birth|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $nursery = 5, $nurseryNannies = 1, $PC.engineering += 1]]
+		[[Build a nursery to raise children from birth|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $nursery = 5, $nurseryNannies = 1, $PC.skill.engineering += 1]]
 			//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 	<<else>>
 			The penthouse has a nursery built where infants can be brought up.
@@ -94,7 +94,7 @@ __Penthouse Facilities__
 <br>
 
 <<if $clinic == 0>>
-	[[Expand the surgical recovery area to accommodate patients and a nurse|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $clinic = 5, $PC.engineering += 1]]
+	[[Expand the surgical recovery area to accommodate patients and a nurse|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $clinic = 5, $PC.skill.engineering += 1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	The surgical recovery area has been expanded to take in more unhealthy slaves and be staffed by a nurse.
@@ -103,7 +103,7 @@ __Penthouse Facilities__
 <br>
 
 <<if $cellblock == 0>>
-	[[Construct cells to properly confine disobedient slaves|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $cellblock = 5, $PC.engineering += 1]]
+	[[Construct cells to properly confine disobedient slaves|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $cellblock = 5, $PC.skill.engineering += 1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	The lower level of the penthouse includes a hallway of cells to confine slaves in.
@@ -114,7 +114,7 @@ __Penthouse Facilities__
 <<if $familyTesting == 1 && $seePreg != 0>>
 	<<if $arcologyUpgrade.grid == 1>>
 		<<if $incubator == 0>>
-			[[Install an incubation chamber to rapidly age children|Manage Penthouse][cashX(forceNeg(Math.trunc(100000*$upgradeMultiplierArcology)), "capEx"), $incubator = 1, $PC.engineering += 1, $readySlaves = 0]]
+			[[Install an incubation chamber to rapidly age children|Manage Penthouse][cashX(forceNeg(Math.trunc(100000*$upgradeMultiplierArcology)), "capEx"), $incubator = 1, $PC.skill.engineering += 1, $readySlaves = 0]]
 			//Costs <<print cashFormat(Math.trunc(100000*$upgradeMultiplierArcology))>>//
 		<<else>>
 			The penthouse has a specialized facility dedicated to rapidly aging children.
@@ -126,7 +126,7 @@ __Penthouse Facilities__
 <</if>>
 
 <<if $HGSuite != 1>>
-	[[Build a small suite for a Head Girl to live in|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $HGSuite = 1, $PC.engineering += 1]]
+	[[Build a small suite for a Head Girl to live in|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $HGSuite = 1, $PC.skill.engineering += 1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	There is a small but handsome suite next to yours reserved for the Head Girl.
@@ -139,7 +139,7 @@ __Penthouse Upgrades__
 <br>
 
 <<if $servantMilkers != 1>>
-	Your penthouse is equipped with basic milkers for lactating slaves. [[Install more and tie them into the liquid systems|Manage Penthouse][cashX(forceNeg(Math.trunc(25000*$upgradeMultiplierArcology)), "capEx"), $servantMilkers = 1, $PC.engineering += .1]]
+	Your penthouse is equipped with basic milkers for lactating slaves. [[Install more and tie them into the liquid systems|Manage Penthouse][cashX(forceNeg(Math.trunc(25000*$upgradeMultiplierArcology)), "capEx"), $servantMilkers = 1, $PC.skill.engineering += .1]]
 	//Costs <<print cashFormat(Math.trunc(25000*$upgradeMultiplierArcology))>>//
 <<else>>
 	Every room in the penthouse is equipped with milkers tied into the liquid systems, letting slaves with full udders drain them anywhere.
@@ -149,10 +149,10 @@ __Penthouse Upgrades__
 
 <<if $boobAccessibility != 1>>
 	<<if $pregAccessibility == 1 || $ballsAccessibility || $buttAccessibility>>
-		Your penthouse has already been widened for overly wide slaves but there are no special accommodations for slaves with enormous breasts. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $boobAccessibility = 1, $PC.engineering += .5]]
+		Your penthouse has already been widened for overly wide slaves but there are no special accommodations for slaves with enormous breasts. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $boobAccessibility = 1, $PC.skill.engineering += .5]]
 		//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
 	<<else>>
-		Your penthouse has no special accessibility provisions for slaves with enormous breasts. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $boobAccessibility = 1, $PC.engineering += 1]]
+		Your penthouse has no special accessibility provisions for slaves with enormous breasts. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $boobAccessibility = 1, $PC.skill.engineering += 1]]
 		//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
 	<</if>>
 <<else>>
@@ -163,10 +163,10 @@ __Penthouse Upgrades__
 	<br>
 	<<if $pregAccessibility != 1>>
 		<<if $boobAccessibility == 1 || $ballsAccessibility || $buttAccessibility>>
-			Your penthouse has already been widened to make life for overly wide slaves easier but there are no special accommodations for slaves with enormous pregnancies. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $pregAccessibility = 1, $PC.engineering += .5]]
+			Your penthouse has already been widened to make life for overly wide slaves easier but there are no special accommodations for slaves with enormous pregnancies. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $pregAccessibility = 1, $PC.skill.engineering += .5]]
 			//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
 		<<else>>
-			Your penthouse has no special accessibility provisions for slaves with enormous pregnancies. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $pregAccessibility = 1, $PC.engineering += 1]]
+			Your penthouse has no special accessibility provisions for slaves with enormous pregnancies. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $pregAccessibility = 1, $PC.skill.engineering += 1]]
 			//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
 		<</if>>
 	<<else>>
@@ -178,7 +178,7 @@ __Penthouse Upgrades__
 	<br>
 
 	<<if $dickAccessibility != 1>>
-		Your penthouse has no special accessibility provisions for slaves with enormous dicks. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $dickAccessibility = 1, $PC.engineering += .5]]
+		Your penthouse has no special accessibility provisions for slaves with enormous dicks. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $dickAccessibility = 1, $PC.skill.engineering += .5]]
 		//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
 	<<else>>
 		The entire penthouse has been remodeled to make life with enormous dicks easier. Carts, slings and harnesses are available to keep things from dragging and there is now plenty of room for huge genitals to occupy when a slave must use appliances, tables and seats.
@@ -187,10 +187,10 @@ __Penthouse Upgrades__
 	<br>
 	<<if $ballsAccessibility != 1>>
 		<<if $boobAccessibility == 1 || $buttAccessibility || $pregAccessibility>>
-			Your penthouse has already been widened to make life for overly wide slaves easier but there are no special accommodations for slaves with enormous testicles. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $ballsAccessibility = 1, $PC.engineering += .5]]
+			Your penthouse has already been widened to make life for overly wide slaves easier but there are no special accommodations for slaves with enormous testicles. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $ballsAccessibility = 1, $PC.skill.engineering += .5]]
 			//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
 		<<else>>
-			Your penthouse has no special accessibility provisions for slaves with enormous testicles. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $ballsAccessibility = 1, $PC.engineering += 1]]
+			Your penthouse has no special accessibility provisions for slaves with enormous testicles. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $ballsAccessibility = 1, $PC.skill.engineering += 1]]
 			//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
 		<</if>>
 	<<else>>
@@ -200,10 +200,10 @@ __Penthouse Upgrades__
 	<br>
 	<<if $buttAccessibility != 1>>
 		<<if $boobAccessibility == 1 || $dickAccessibility || $ballsAccessibility>>
-			Your penthouse has already been widened to make life for overly wide slaves easier but there are no special accommodations for slaves with gigantic posteriors. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $buttAccessibility = 1, $PC.engineering += .5]]
+			Your penthouse has already been widened to make life for overly wide slaves easier but there are no special accommodations for slaves with gigantic posteriors. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $buttAccessibility = 1, $PC.skill.engineering += .5]]
 			//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
 		<<else>>
-			Your penthouse has no special accessibility provisions for slaves with enormous posteriors. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $buttAccessibility = 1, $PC.engineering += 1]]
+			Your penthouse has no special accessibility provisions for slaves with enormous posteriors. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $buttAccessibility = 1, $PC.skill.engineering += 1]]
 			//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
 		<</if>>
 	<<else>>
@@ -220,7 +220,7 @@ __Penthouse Upgrades__
 <br>
 
 <<if $feeder == 0>>
-	[[Upgrade the kitchen's nutritional sensing systems|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $feeder = 1, $PC.engineering += .1]]
+	[[Upgrade the kitchen's nutritional sensing systems|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $feeder = 1, $PC.skill.engineering += .1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	The kitchen mounts sensors to refine diets in real time.
@@ -229,7 +229,7 @@ __Penthouse Upgrades__
 <br>
 
 <<if $cockFeeder == 0>>
-	[[Enhance the feeding system with faux phalli|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $cockFeeder = 1, $PC.engineering += .1]]
+	[[Enhance the feeding system with faux phalli|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $cockFeeder = 1, $PC.skill.engineering += .1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	The kitchen dispenses food from phalli slaves must suck off in order to eat. //[[Remove them|Manage Penthouse][$cockFeeder = 0]]//
@@ -238,7 +238,7 @@ __Penthouse Upgrades__
 <br>
 
 <<if $suppository == 0>>
-	[[Replace the drug dispensers with reciprocating dildo suppositories|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $suppository = 1, $PC.engineering += .1]]
+	[[Replace the drug dispensers with reciprocating dildo suppositories|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $suppository = 1, $PC.skill.engineering += .1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	The kitchen applies drugs that can be absorbed rectally by assfucking slaves with dildos that cum the pharmaceuticals. //[[Remove them|Manage Penthouse][$suppository = 0]]//
@@ -248,7 +248,7 @@ __Penthouse Upgrades__
 
 <<if $dairy != 0>>
 	<<if $dairyPiping == 0>>
-		[[Install pipes connecting the Dairy to the rest of your penthouse for use in enema play|Manage Penthouse][cashX(forceNeg(Math.trunc(15000*$upgradeMultiplierArcology)), "capEx"), $dairyPiping = 1, $PC.engineering += .5]]
+		[[Install pipes connecting the Dairy to the rest of your penthouse for use in enema play|Manage Penthouse][cashX(forceNeg(Math.trunc(15000*$upgradeMultiplierArcology)), "capEx"), $dairyPiping = 1, $PC.skill.engineering += .5]]
 		//Costs <<print cashFormat(Math.trunc(15000*$upgradeMultiplierArcology))>>//
 	<<else>>
 		Various taps around the penthouse supply product from $dairyName for use in enema play and force-feeding.
@@ -261,7 +261,7 @@ __Penthouse Upgrades__
 
 <<if $seePee == 1>>
 	<<if $wcPiping == 0>>
-		[[Install pipes connecting the slave bathrooms to the rest of your penthouse for use in watersports|Manage Penthouse][cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology)), "capEx"), $wcPiping = 1, $PC.engineering += .5]]
+		[[Install pipes connecting the slave bathrooms to the rest of your penthouse for use in watersports|Manage Penthouse][cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology)), "capEx"), $wcPiping = 1, $PC.skill.engineering += .5]]
 		//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 	<<else>>
 		The plumbing underneath the slave bathrooms connects to various taps throughout the penthouse that can dispense its contents when needed.
@@ -271,7 +271,7 @@ __Penthouse Upgrades__
 <br>
 
 <<if $studio == 0>>
-	[[Install a media hub to convert slave video feeds into pornography|Manage Penthouse][cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology)), "capEx"), $studio = 1, $PC.engineering += 1]]
+	[[Install a media hub to convert slave video feeds into pornography|Manage Penthouse][cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology)), "capEx"), $studio = 1, $PC.skill.engineering += 1]]
 	//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>//
 <<else>>
 	The arcology's video systems are connected to a media hub that can convert slave video feeds into pornography.
@@ -286,10 +286,10 @@ __Penthouse Upgrades__
 <br>
 
 <<if $dojo == 0>>
-	[[Set up a personal armory to support a bodyguard|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $dojo = 1, $PC.engineering += 1]]
+	[[Set up a personal armory to support a bodyguard|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $dojo = 1, $PC.skill.engineering += 1]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<elseif $dojo == 1>>
-	There is a small armory next to your office that can support a bodyguard. [[Upgrade the armory with a private room for the bodyguard|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $dojo = 2, $PC.engineering += .5]]
+	There is a small armory next to your office that can support a bodyguard. [[Upgrade the armory with a private room for the bodyguard|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $dojo = 2, $PC.skill.engineering += .5]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
 	There is a small armory next to your office that can support a bodyguard, with a little room for them to rest in when off duty.
@@ -299,7 +299,7 @@ __Penthouse Upgrades__
 
 <<if $dispensary == 0>>
 	<<if $rep > 2000>>
-		[[Install a pharmaceutical fabricator|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $dispensary = 1, $drugsCost = $drugsCost*.75, $PC.engineering += .1]]
+		[[Install a pharmaceutical fabricator|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $dispensary = 1, $drugsCost = $drugsCost*.75, $PC.skill.engineering += .1]]
 		//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
 	<<else>>
 		//You lack the reputation to obtain cutting-edge pharmaceutical technology//
@@ -312,7 +312,7 @@ __Penthouse Upgrades__
 
 <<if $ImplantProductionUpgrade == 0>>
 	<<if $rep > 2000>>
-		[[Install an implant manufactory|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $ImplantProductionUpgrade = 1, $PC.engineering += .1]]
+		[[Install an implant manufactory|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $ImplantProductionUpgrade = 1, $PC.skill.engineering += .1]]
 		//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
 	<<else>>
 		//You lack the reputation to obtain cutting-edge implant fabrication technology//
@@ -325,7 +325,7 @@ __Penthouse Upgrades__
 
 <<if $organFarmUpgrade == 0>>
 	<<if $rep > 10000>>
-		[[Install an experimental organ farm|Manage Penthouse][cashX(forceNeg(Math.trunc(70000*$upgradeMultiplierArcology)), "capEx"), $organFarmUpgrade = 1, $PC.engineering += .1]]
+		[[Install an experimental organ farm|Manage Penthouse][cashX(forceNeg(Math.trunc(70000*$upgradeMultiplierArcology)), "capEx"), $organFarmUpgrade = 1, $PC.skill.engineering += .1]]
 		//Costs <<print cashFormat(Math.trunc(70000*$upgradeMultiplierArcology))>>//
 	<<else>>
 		//You lack the reputation to obtain an experimental organ fabricator//
@@ -338,7 +338,7 @@ __Penthouse Upgrades__
 
 <<if $geneticMappingUpgrade == 0>>
 	<<if $rep > 14000>>
-		[[Install a genetic sequencer|Manage Penthouse][cashX(-120000, "capEx"), $geneticMappingUpgrade = 1, $PC.engineering += .1]]
+		[[Install a genetic sequencer|Manage Penthouse][cashX(-120000, "capEx"), $geneticMappingUpgrade = 1, $PC.skill.engineering += .1]]
 		//Costs <<print cashFormat(120000)>>//
 	<<else>>
 		//You lack the reputation to purchase a cutting-edge genetic sequencer//
@@ -352,7 +352,7 @@ __Penthouse Upgrades__
 <<switch $prostheticsUpgrade>>
 <<case 0>>
 	<<if ($rep > 8000)>>
-		[[Install basic equipment for attaching and maintenance of prosthetics|Manage Penthouse][cashX(forceNeg(Math.trunc(100000*$upgradeMultiplierArcology)), "capEx"), $prostheticsUpgrade = 1, $PC.engineering += 1]]
+		[[Install basic equipment for attaching and maintenance of prosthetics|Manage Penthouse][cashX(forceNeg(Math.trunc(100000*$upgradeMultiplierArcology)), "capEx"), $prostheticsUpgrade = 1, $PC.skill.engineering += 1]]
 		//Costs <<print cashFormat(Math.trunc(100000*$upgradeMultiplierArcology))>>//
 	<<else>>
 		//You lack the reputation to buy basic equipment for attaching and maintenance of prosthetics.//
@@ -381,7 +381,7 @@ __Penthouse Upgrades__
 	<<if $researchLab.level > 0>>
 		Your penthouse is equipped with an advanced prosthetic lab.
 	<<else>>
-		[[Clear out one of the floors and install equipment to construct prosthetics yourself|Manage Penthouse][cashX(forceNeg(Math.trunc(150000*$upgradeMultiplierArcology)), "capEx"), $researchLab.level = 1, $researchLab.maxSpace = 5, $PC.engineering += 1]]
+		[[Clear out one of the floors and install equipment to construct prosthetics yourself|Manage Penthouse][cashX(forceNeg(Math.trunc(150000*$upgradeMultiplierArcology)), "capEx"), $researchLab.level = 1, $researchLab.maxSpace = 5, $PC.skill.engineering += 1]]
 		//Costs <<print cashFormat(Math.trunc(150000*$upgradeMultiplierArcology))>>//<br>
 		//Buying the equipment to construct prosthetics yourself is expensive but if you want to construct a lot prosthetics it will pay out in the long run.//
 	<</if>>
@@ -391,7 +391,7 @@ __Penthouse Upgrades__
 
 <<if $surgeryUpgrade == 0>>
 	<<if $rep > 10000>>
-		[[Upgrade the remote surgery|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $surgeryUpgrade = 1, $PC.engineering += 1]]
+		[[Upgrade the remote surgery|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $surgeryUpgrade = 1, $PC.skill.engineering += 1]]
 		//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
 	<<else>>
 		//You lack the reputation to secure rare surgery upgrades//
@@ -404,7 +404,7 @@ __Penthouse Upgrades__
 	<br>
 	<<if $pregnancyMonitoringUpgrade == 0>>
 		<<if $rep > 10000>>
-			[[Upgrade the pregnancy monitoring systems|Manage Penthouse][cashX(forceNeg(Math.trunc(30000*$upgradeMultiplierArcology)), "capEx"), $pregnancyMonitoringUpgrade = 1, $PC.engineering += 1]]
+			[[Upgrade the pregnancy monitoring systems|Manage Penthouse][cashX(forceNeg(Math.trunc(30000*$upgradeMultiplierArcology)), "capEx"), $pregnancyMonitoringUpgrade = 1, $PC.skill.engineering += 1]]
 			//Costs <<print cashFormat(Math.trunc(30000*$upgradeMultiplierArcology))>>//
 		<<else>>
 			//You lack the reputation to purchase improved pregnancy monitoring systems//
diff --git a/src/uncategorized/masterSuite.tw b/src/uncategorized/masterSuite.tw
index 849830dd6cd63e19cea6f72501035863d9641d1a..bbf22969bddeda2e900a8af464b5d7263b65ba4d 100644
--- a/src/uncategorized/masterSuite.tw
+++ b/src/uncategorized/masterSuite.tw
@@ -318,7 +318,7 @@ $masterSuiteNameCaps is furnished
 
 <br>$masterSuiteNameCaps has room for $masterSuite slaves to live comfortably<<if $masterSuiteUpgradeLuxury == 2>> in the moments when they're not in the fuckpit<<elseif $masterSuiteUpgradeLuxury == 1>> on its huge bed<</if>>. There <<if _MsL == 1>>is<<else>>are<</if>> currently _MsL slave<<if _MsL != 1>>s<</if>> in $masterSuiteName.
 <<set _Tmult0 = Math.trunc($masterSuite*1000*$upgradeMultiplierArcology)>>
-[[Expand the Master Suite|Master Suite][cashX(forceNeg(_Tmult0), "capEx"), $masterSuite += 2, $PC.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>>//
+[[Expand the Master Suite|Master Suite][cashX(forceNeg(_Tmult0), "capEx"), $masterSuite += 2, $PC.skill.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>>//
 <<if $Concubine == 0 && _MsL == 0>>
 	| [[Decommission the Master Suite|Main][$masterSuite = 0, $masterSuiteUpgradeLuxury = 0, $masterSuitePregnancySlaveLuxuries = 0, $masterSuiteDecoration = "standard", $masterSuitePregnancyFertilityDrugs = 0, $masterSuitePregnancyFertilitySupplements = 0, $masterSuiteUpgradePregnancy = 0, $masterSuiteHyperPregnancy = 0]]
 <</if>>
diff --git a/src/uncategorized/masterSuiteReport.tw b/src/uncategorized/masterSuiteReport.tw
index bccf5f5b7c88f3c26155af4bba23d8d057cb266d..8b018dcfc047316678f869f81af7a3f97b0cb6d5 100644
--- a/src/uncategorized/masterSuiteReport.tw
+++ b/src/uncategorized/masterSuiteReport.tw
@@ -147,7 +147,7 @@
 						<<elseif isFertile($Concubine) || $Concubine.preg > 0>>
 							When $he has a free moment, $he refines $his flexibility so that $he is prepared for any sexual position you can think of, no matter how heavy $he becomes with children.
 						<<else>>
-							When $he has a free moment, $he researches ways to restore $his fertility; $he dreams of the day $he can carry <<if $PC.dick ==1>>your children<<else>>children for you<</if>>.
+							When $he has a free moment, $he researches ways to restore $his fertility; $he dreams of the day $he can carry <<if $PC.dick != 0>>your children<<else>>children for you<</if>>.
 						<</if>>
 					<</if>>
 				<</if>>
diff --git a/src/uncategorized/matchmaking.tw b/src/uncategorized/matchmaking.tw
index a388054967b591740aacf77371eed1ce32b59721..da256b995d0c278b6e8c2b846ef54c9b79c53a7c 100644
--- a/src/uncategorized/matchmaking.tw
+++ b/src/uncategorized/matchmaking.tw
@@ -174,11 +174,11 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $
 		"Done," _heA says.
 	<</if>>
 	<<set $eventSlave.relationship = -3>>
-	<<if $PC.surname>>
+	<<if $PC.slaveSurname>>
 		<br><br><span id="surnaming">
 		<<link "Give $him your surname">>
 			<<replace "#surnaming">>
-				<<set $eventSlave.slaveSurname = $PC.surname, $eventSlave.devotion += 5, $eventSlave.trust += 5>>
+				<<set $eventSlave.slaveSurname = $PC.slaveSurname, $eventSlave.devotion += 5, $eventSlave.trust += 5>>
 				You also command $assistantName to rename your new slave $wife $eventSlave.slaveName $eventSlave.slaveSurname. The new Mrs. $eventSlave.slaveSurname <<if canHear($eventSlave)>>hears<<else>>understands<</if>> this, of course, and breaks down again. Being brusquely redesignated as your slave $wife was such a sterile experience that $he wasn't sure it was real, and hearing that $he's to take your surname @@.mediumaquamarine;reassures $him@@ that it is. Not to mention, $he might be a $desc, but $he's still a $girl, and hearing that $he wouldn't get a decent wedding did disappoint $him, but this makes up for it. You might not be all that expressive, but @@.hotpink;$he's your $wife,@@ and that's what matters to $him.
 				<<set $activeSlave = $eventSlave>>
 			<</replace>>
@@ -256,46 +256,46 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $
 	<</if>>
 	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> marries $him to you in a brief ceremony adapted for slaves and their owners. You place a simple steel ring on <<if hasAnyArms($eventSlave)>>$his finger<<else>>a string around $his neck<</if>>; $he does not reciprocate, since this marriage does not bind you.
 	<<if $assistant == 0>>
-		"The marriage protocol now requires you to <<if $PC.dick == 1>>fellate<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>," $assistantName orders $him, and $he hurries to obey.
+		"The marriage protocol now requires you to <<if $PC.dick != 0>>fellate<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>," $assistantName orders $him, and $he hurries to obey.
 	<<else>>
 		<<if $assistantAppearance == "monstergirl">>
-			"To consecrate the ceremony," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar begins to play with _hisA dicks.
+			"To consecrate the ceremony," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar begins to play with _hisA dicks.
 		<<elseif $assistantAppearance == "shemale">>
-			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar starts to jill off.
+			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar starts to jill off.
 		<<elseif $assistantAppearance == "amazon">>
-			"To complete this ritual," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar starts to jill off.
+			"To complete this ritual," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar starts to jill off.
 		<<elseif $assistantAppearance == "businesswoman">>
-			"To consecrate the marriage," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>fellate<<else>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar sneaks a hand down _hisA suit skirt, blushing furiously.
+			"To consecrate the marriage," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick != 0>>fellate<<else>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar sneaks a hand down _hisA suit skirt, blushing furiously.
 		<<elseif $assistantAppearance == "fairy">>
-			"To seal the deal," $assistantName concludes, "$eventSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar spreads _hisA legs while still hovering in the air and masturbates eagerly through _hisA half-worn robes.
+			"To seal the deal," $assistantName concludes, "$eventSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick != 0>>semen<<if $PC.vagina != -1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar spreads _hisA legs while still hovering in the air and masturbates eagerly through _hisA half-worn robes.
 		<<elseif $assistantAppearance == "pregnant fairy">>
-			"To seal the deal," $assistantName concludes, "$eventSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's pregnant avatar curls while still hovering in the air and masturbates eagerly around _hisA large belly.
+			"To seal the deal," $assistantName concludes, "$eventSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick != 0>>semen<<if $PC.vagina != -1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's pregnant avatar curls while still hovering in the air and masturbates eagerly around _hisA large belly.
 		<<elseif $assistantAppearance == "goddess">>
-			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you must now <<if $PC.dick == 1>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s female juices<</if>>." The slave complies eagerly. $assistantName's avatar looks on approvingly, cradling _hisA perpetual pregnancy.
+			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you must now <<if $PC.dick != 0>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s female juices<</if>>." The slave complies eagerly. $assistantName's avatar looks on approvingly, cradling _hisA perpetual pregnancy.
 		<<elseif $assistantAppearance == "hypergoddess">>
-			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you must now <<if $PC.dick == 1>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s female juices<</if>>." The slave complies eagerly. $assistantName's avatar looks on approvingly, cradling _hisA massive perpetual pregnancy.
+			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you must now <<if $PC.dick != 0>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s female juices<</if>>." The slave complies eagerly. $assistantName's avatar looks on approvingly, cradling _hisA massive perpetual pregnancy.
 		<<elseif $assistantAppearance == "loli">>
-			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina == 1>>and lick their cunny.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunny<</if>>." The slave complies eagerly. $assistantName's avatar sneaks a hand down _hisA dress, blushing furiously.
+			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you should now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina != -1>>and lick their cunny.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunny<</if>>." The slave complies eagerly. $assistantName's avatar sneaks a hand down _hisA dress, blushing furiously.
 		<<elseif $assistantAppearance == "preggololi">>
-			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s lovely cock<<if $PC.vagina == 1>>and eat out their cunt.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunt<</if>>." The slave complies eagerly. $assistantName's avatar attempts to sneak a hand down _hisA dress, but is thwarted by _hisA belly. _HeA instead openly rubs _hisA crotch through the front of _hisA dress, blushing furiously.
+			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you should now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s lovely cock<<if $PC.vagina != -1>>and eat out their cunt.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunt<</if>>." The slave complies eagerly. $assistantName's avatar attempts to sneak a hand down _hisA dress, but is thwarted by _hisA belly. _HeA instead openly rubs _hisA crotch through the front of _hisA dress, blushing furiously.
 		<<elseif $assistantAppearance == "schoolgirl">>
-			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar starts to jill off.
+			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, the rules say you should now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar starts to jill off.
 		<<elseif $assistantAppearance == "angel">>
 			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you must now join <<= PlayerName()>> in their bedroom and consummate this marriage." The slave looks confused. "After the wedding ends, would be the time." $assistantName says, covering _hisA face in embarrassment at the thought.
 		<<elseif $assistantAppearance == "cherub">>
-			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you should <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina == 1>>and lick their pussy,<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s pussy<</if>>, in the privacy of <<= PlayerName()>>'s bedroom, of course." $assistantName hides _hisA face in _hisA hands at the thought.
+			"To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you should <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina != -1>>and lick their pussy,<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s pussy<</if>>, in the privacy of <<= PlayerName()>>'s bedroom, of course." $assistantName hides _hisA face in _hisA hands at the thought.
 		<<elseif $assistantAppearance == "incubus">>
-			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Enjoying the sight, $assistantName's avatar begins to furiously stroke its shaft.
+			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Enjoying the sight, $assistantName's avatar begins to furiously stroke its shaft.
 		<<elseif $assistantAppearance == "succubus">>
-			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar pulls out a large dildo and begins ramming it into _hisA own pussy.
+			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar pulls out a large dildo and begins ramming it into _hisA own pussy.
 		<<elseif $assistantAppearance == "imp">>
-			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar hikes _hisA robe and vigorously rubs _hisA pussy.
+			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar hikes _hisA robe and vigorously rubs _hisA pussy.
 		<<elseif $assistantAppearance == "witch">>
-			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. $assistantName's avatar begins to fidget at the sight, having summoned a vibrator beforehand and accidentally linked it to your pleasure.
+			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. $assistantName's avatar begins to fidget at the sight, having summoned a vibrator beforehand and accidentally linked it to your pleasure.
 		<<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. $assistantName's avatar begins to swell, drawing all its gained mass to its midsection. Its gravid middles splits vertically, allowing a new mass of flesh to fall to the floor, which quickly grows and reshapes itself into a spitting image of yourself. Meanwhile, the original twists into an image of $eventSlave.slaveName. $assistantName's two avatars begin copying you and $eventSlave.slaveName's actions perfectly.
+			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. $assistantName's avatar begins to swell, drawing all its gained mass to its midsection. Its gravid middles splits vertically, allowing a new mass of flesh to fall to the floor, which quickly grows and reshapes itself into a spitting image of yourself. Meanwhile, the original twists into an image of $eventSlave.slaveName. $assistantName's two avatars begin copying you and $eventSlave.slaveName's actions perfectly.
 		<<else>>
-			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. With only a symbol to express _hisA approval, $assistantName is forced to content _himselfA with spinning the symbol and making it glow in time with your new slave $wife's efforts.
+			"To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, the rules say you should now <<if $PC.dick != 0>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina != -1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. With only a symbol to express _hisA approval, $assistantName is forced to content _himselfA with spinning the symbol and making it glow in time with your new slave $wife's efforts.
 		<</if>>
 		"Done," _heA says when you climax. "Enjoy your
 		<<if ($eventSlave.fetishKnown == 1) && ($eventSlave.fetishStrength > 60)>>
@@ -325,11 +325,11 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $
 		<</if>>
 	<</if>>
 	<<set $eventSlave.relationship = -3>>
-	<<if $PC.surname>>
+	<<if $PC.slaveSurname>>
 		<br><br><span id="surnaming">
 		<<link "Give $him your surname">>
 			<<replace "#surnaming">>
-				<<set $eventSlave.slaveSurname = $PC.surname, $eventSlave.devotion += 5, $eventSlave.trust += 5>>
+				<<set $eventSlave.slaveSurname = $PC.slaveSurname, $eventSlave.devotion += 5, $eventSlave.trust += 5>>
 				Before you get too distracted, you tell your lovely new $wife that $he's now to be known as $eventSlave.slaveName $eventSlave.slaveSurname. It would be an understatement to say $he's delighted. $He's a good $desc, but even $he has to retain a kernel of doubt about whether a marriage between an owner and a piece of property is really worth much. This @@.mediumaquamarine;reassures $him@@ that it is. $His special day probably wasn't exactly like $he might once have imagined it, but $he obviously thinks it's been @@.hotpink;very nice,@@ all things considered.
 				<<if canTalk($eventSlave)>>"$eventSlave.slaveName $eventSlave.slaveSurname," $he murmurs to $himself occasionally, smiling.<</if>>
 				<<set $activeSlave = $eventSlave>>
@@ -358,7 +358,7 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $
 			<</replace>>
 		<</link>> //This will involve the slave having sex with a very large number of citizens//
 	<</if>>
-	<<if isFertile($eventSlave) && ($PC.dick == 1)>>
+	<<if isFertile($eventSlave) && ($PC.dick != 0)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Impregnation ceremony">>
 			<<replace "#result2">>
 			You order $assistantName to invite deserving citizens to a ceremony for a fertile slave being married to a slaveowner, and to make the arrangements. The wedding will take place during the upcoming week.
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 68aa0a88b0f713d0743395e4b9a29ab1b55a9b30..d9fc99a5ca8718eb513cbb543c68ad1238f1f700 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -1499,7 +1499,7 @@ $He's got a
 	<<if $activeSlave.fuckdoll <= 45>>
 		$he is only fit to be locked in place so $his rear hole can be raped.
 	<<else>>
-		$he can be instructed to rhythmically squeeze <<if $PC.dick == 1>>cocks<<else>>anything<</if>> inserted into $his rear hole.
+		$he can be instructed to rhythmically squeeze <<if $PC.dick != 0>>cocks<<else>>anything<</if>> inserted into $his rear hole.
 		<<if $activeSlave.fuckdoll <= 85>>
 			$He can also be ordered to bounce atop objects in $his anus.
 		<</if>>
@@ -4105,9 +4105,9 @@ $He's got a
 		<<if $activeSlave.fuckdoll <= 45>>
 			is mostly useful when $he's restrained for rape.
 		<<else>>
-			will massage <<if $PC.dick == 1>>cocks<<else>>anything<</if>> placed inside it on command.
+			will massage <<if $PC.dick != 0>>cocks<<else>>anything<</if>> placed inside it on command.
 			<<if $activeSlave.fuckdoll <= 85>>
-				$He is even capable of riding <<if $PC.dick == 1>>dick<<else>>a strap-on<</if>>.
+				$He is even capable of riding <<if $PC.dick != 0>>dick<<else>>a strap-on<</if>>.
 			<</if>>
 		<</if>>
 	<</if>>
@@ -4401,7 +4401,7 @@ $His
 		noticeably received facial cosmetic surgery.
 	<<else>>
 		had some facial cosmetic surgery, though it's subtle.
-		<<if $PC.medicine >= 100>>Someone without your knowledge might miss it entirely.<</if>>
+		<<if $PC.skill.medicine >= 100>>Someone without your knowledge might miss it entirely.<</if>>
 	<</if>>
 	<<if $arcologies[0].FSBodyPurist != "unset">>
 		<<if $activeSlave.faceImplant > 30>>
@@ -4474,7 +4474,7 @@ $He has
 <<elseif $activeSlave.lips <= 95>>
 	huge, obviously augmented lips.
 <<else>>
-	a facepussy: $his lips are so huge that they're always a bit parted in the middle, forming a moist, inviting hole<<if $PC.dick ==1>> for cock<</if>>.
+	a facepussy: $his lips are so huge that they're always a bit parted in the middle, forming a moist, inviting hole<<if $PC.dick != 0>> for cock<</if>>.
 <</if>>
 
 <<if $showImplantEffects == 1>>
@@ -4553,7 +4553,7 @@ $He has
 <<= App.Desc.mods($activeSlave, "tongue")>>
 
 <<if $activeSlave.fuckdoll > 0>>
-	<<if $PC.dick == 1>>Sticking a dick<<else>>Sliding a dildo<</if>> into $his <<if $activeSlave.lips > 95>>facepussy<<else>>mouth insert<</if>>
+	<<if $PC.dick != 0>>Sticking a dick<<else>>Sliding a dildo<</if>> into $his <<if $activeSlave.lips > 95>>facepussy<<else>>mouth insert<</if>>
 	<<if $activeSlave.fuckdoll <= 45>>
 		mostly results in gagging.
 	<<else>>
@@ -16775,13 +16775,13 @@ $His womb contains <<= num(_slaveWD.litters.length)>> separate pregnancies;
 	<<if $activeSlave.race != $activeSlave.origRace && $saleDescription != 1>>
 		$He has received plastic surgery to appear <<print $activeSlave.race>>; $he is originally <<print $activeSlave.origRace>>.
 	<<elseif $activeSlave.race != $activeSlave.origRace && $saleDescription == 1>>
-		<<if $PC.medicine >= 100>>
+		<<if $PC.skill.medicine >= 100>>
 			Thanks to your medical experience, you can easily tell that $he was originally <<print $activeSlave.origRace>>, but surgically modified.
-		<<elseif $PC.medicine >= 50>>
+		<<elseif $PC.skill.medicine >= 50>>
 			Oddly enough, $he appears to have a number of $activeSlave.origRace features.
-		<<elseif $PC.slaving >= 50>>
+		<<elseif $PC.skill.slaving >= 50>>
 			Thanks to your experience in buying and selling slaves, you can easily tell that $he is not naturally <<print $activeSlave.race>>.
-		<<elseif random(0,100) < $PC.medicine>>
+		<<elseif random(0,100) < $PC.skill.medicine>>
 			$His features seem slightly off.
 		<</if>>
 	<</if>>
@@ -16791,13 +16791,13 @@ $His womb contains <<= num(_slaveWD.litters.length)>> separate pregnancies;
 	<<if $activeSlave.race != $activeSlave.origRace && $saleDescription != 1>>
 		$He has received plastic surgery to appear <<print $activeSlave.race>>; $he is originally <<print $activeSlave.origRace>>.
 	<<elseif $activeSlave.race != $activeSlave.origRace && $saleDescription == 1>>
-		<<if $PC.medicine >= 100>>
+		<<if $PC.skill.medicine >= 100>>
 			Thanks to your medical experience, you can easily tell that $he was originally <<print $activeSlave.origRace>>, but surgically modified.
-		<<elseif $PC.medicine >= 50>>
+		<<elseif $PC.skill.medicine >= 50>>
 			Oddly enough, $he appears to have a number of $activeSlave.origRace features.
-		<<elseif $PC.slaving >= 50>>
+		<<elseif $PC.skill.slaving >= 50>>
 			Thanks to your experience in buying and selling slaves, you can easily tell that $he is not naturally <<print $activeSlave.race>>.
-		<<elseif random(0,100) < $PC.medicine>>
+		<<elseif random(0,100) < $PC.skill.medicine>>
 			$His features seem slightly off.
 		<</if>>
 	<</if>>
diff --git a/src/utility/descriptionWidgetsTattoos.tw b/src/utility/descriptionWidgetsTattoos.tw
index 114e0e81fce3029b83733281e0e7995e539b9956..c90b5458b70fa0fe969a7bb5d8f660f5faba2442 100644
--- a/src/utility/descriptionWidgetsTattoos.tw
+++ b/src/utility/descriptionWidgetsTattoos.tw
@@ -287,7 +287,7 @@
 				A line-art rendition of $activeSlave.slaveName $himself nursing a pair of $his fellow slaves is tattooed across $his entire back.
 			<<elseif $activeSlave.skill.vaginal >= 100>>
 				A line-art rendition of $activeSlave.slaveName $himself performing reverse cowgirl and spreading $his pussy is tattooed across $his entire back.
-			<<elseif $PC.vagina == 1>>
+			<<elseif $PC.vagina != -1>>
 				A line-art rendition of $activeSlave.slaveName $himself eating pussy is tattooed across $his entire back.
 			<<else>>
 				A line-art rendition of $activeSlave.slaveName $himself deepthroating a cock is tattooed across $his entire back.
@@ -348,7 +348,7 @@
 		<<case "sacrament">>
 			$He has a tramp stamp which reads 'Fuck my ass and be blessed.'
 		<<case "possessive">>
-			$He has a tramp stamp which reads '$PC.name's $desc.'
+			$He has a tramp stamp which reads '$PC.slaveName's $desc.'
 		<<case "paternalist">>
 			$He has a tramp stamp which reads 'Fuck me slowly' with an arrow pointing downward.
 		<<default>>
@@ -412,7 +412,7 @@
 					'As a slave.'
 				<</if>> is tattooed across $his right.
 			<<case "possessive">>
-				'$PC.name made me their' is tattooed across $his left buttock; with '$desc' tattooed across $his right.
+				'$PC.slaveName made me their' is tattooed across $his left buttock; with '$desc' tattooed across $his right.
 			<<case "paternalist">>
 				'Treat it' is tattooed across $his left buttock; 'Gently' is tattooed across $his right.
 			<<default>>
@@ -443,7 +443,7 @@
 	<<case "rude words">>
 		$His abdomen reads <<if $activeSlave.vagina < 0>>'Useless, Rape Ass Instead' with an arrow pointing downward<<else>>'Fucktoy'<</if>>.
 	<<case "degradation">>
-		$His abdomen is tattooed with <<if $activeSlave.dick != 0>>a downward-pointing arrow which reads 'Bounces When Buttfucked.'<<else>>gothic script that reads '<<if $PC.dick == 1>><<if $PC.vagina == 1>>Futa<<else>>Cock<</if>><<else>>Cunt<</if>> Pleaser.'<</if>>
+		$His abdomen is tattooed with <<if $activeSlave.dick != 0>>a downward-pointing arrow which reads 'Bounces When Buttfucked.'<<else>>gothic script that reads '<<if $PC.dick != 0>><<if $PC.vagina != -1>>Futa<<else>>Cock<</if>><<else>>Cunt<</if>> Pleaser.'<</if>>
 	<<case "Asian art">>
 		$He has formal Asian characters tattooed across $his abdomen. To those who do not know the language, they look elegant, but roughly translated, they read
 		<<if ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
@@ -478,7 +478,7 @@
 		<<else>>
 			'Sex slave
 		<</if>>
-		of <<= WrittenMaster($activeSlave)>> $PC.name.'
+		of <<= WrittenMaster($activeSlave)>> $PC.slaveName.'
 	<<case "paternalist">>
 		$His abdomen is tattooed with a downward-pointing arrow which reads 'Let's come together.'
 	<<default>>
diff --git a/src/utility/extendedFamilyWidgets.tw b/src/utility/extendedFamilyWidgets.tw
index 7a729db886bdbc2eb9287b78c81cfef1a152bf24..b66d4b481b166fb02a44df974056520ba89ef065 100644
--- a/src/utility/extendedFamilyWidgets.tw
+++ b/src/utility/extendedFamilyWidgets.tw
@@ -1054,7 +1054,7 @@
 	<<set $activeSlave.mother = 0>>
 	<<redisplayFamily>>
 <</link>>
-<<if $PC.vagina == 1 && (($PC.actualAge - $activeSlave.actualAge) >= $fertilityAge) && (($PC.mother != $activeSlave.mother) || ($activeSlave.mother == 0)) && $saveImported == 0>>
+<<if $PC.vagina > 0 && (($PC.actualAge - $activeSlave.actualAge) >= $fertilityAge) && (($PC.mother != $activeSlave.mother) || ($activeSlave.mother == 0)) && $saveImported == 0>>
 	| <<link "You">><<set $activeSlave.mother = $PC.ID>><<redisplayFamily>><</link>>
 <</if>>
 <<for _efw = 0; _efw < $slaves.length; _efw++>>
@@ -1076,7 +1076,7 @@
 	<<set $activeSlave.father = 0>>
 	<<redisplayFamily>>
 <</link>>
-<<if ($PC.dick == 1) && (($PC.actualAge - $activeSlave.actualAge) >= $potencyAge) && (($PC.father != $activeSlave.father) || ($activeSlave.father == 0)) && $saveImported == 0>>
+<<if ($PC.dick > 0) && (($PC.actualAge - $activeSlave.actualAge) >= $potencyAge) && (($PC.father != $activeSlave.father) || ($activeSlave.father == 0)) && $saveImported == 0>>
 	| <<link "You">><<set $activeSlave.father = $PC.ID>><<redisplayFamily>><</link>>
 <</if>>
 <<for _efw = 0; _efw < $slaves.length; _efw++>>
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index 2b0ceb06c6aed76402acf433d5928df72329e6fe..adee9b46db763f178a76202a738cf40be33dcafd 100644
--- a/src/utility/miscWidgets.tw
+++ b/src/utility/miscWidgets.tw
@@ -818,7 +818,7 @@ $args[0]: Slave.
 			<<set $args[0].pregType = $args[0].readyOva, $args[0].readyOva = 0>> /* just single override; for delayed impregnation cases */
 		<</if>>
 		<<if $args[0].ID == -1>>
-			<<if $PC.birthMaster > 0>> /* Predisposed to twins */
+			<<if $PC.counter.birthMaster > 0>> /* Predisposed to twins */
 				<<if $PC.fertDrugs == 1>>
 					<<set $args[0].pregType = either(2, 2, 3, 3, 3, 3, 4, 4)>>
 				<<else>>
diff --git a/src/utility/saRulesWidgets.tw b/src/utility/saRulesWidgets.tw
index a7bff0911194692d4bfaba50f76b4057fb9f3fcd..396500dbccc4811fafd060d0b4e43c4c13f846e8 100644
--- a/src/utility/saRulesWidgets.tw
+++ b/src/utility/saRulesWidgets.tw
@@ -45,7 +45,7 @@ and
 	<<case "submissive">>
 		hold $him down and fuck $him
 	<<case "cumslut">>
-		<<if $PC.dick == 1>>
+		<<if $PC.dick != 0>>
 			cum in $his mouth
 		<<else>>
 			use your strap-on on $his mouth
@@ -67,7 +67,7 @@ and
 	<<case "dom">>
 	let $him help you use other slaves
 	<<case "pregnancy">>
-		<<if isFertile($slaves[$i]) && $PC.dick == 1>>
+		<<if isFertile($slaves[$i]) && $PC.dick != 0>>
 			put a baby in $him
 		<<elseif $slaves[$i].bellyPreg >= 1500 || $slaves[$i].bellyImplant >= 1500>>
 			enjoy $his fecund curves
@@ -128,7 +128,7 @@ and
 			<<case "submissive">>
 				hold $him down and fuck $him; @@.lightcoral;$he's a submissive!@@
 			<<case "cumslut">>
-				<<if $PC.dick == 1>>
+				<<if $PC.dick != 0>>
 					cum in $his mouth; @@.lightcoral;$he's a cumslut!@@
 				<<else>>
 					use your strap-on in $his mouth; @@.lightcoral;$he's a cumslut!@@
@@ -146,7 +146,7 @@ and
 			<<case "dom">>
 				let $him help you use other slaves; @@.lightcoral;$he's dominant!@@
 			<<case "pregnancy">>
-				<<if $PC.dick == 1>>
+				<<if $PC.dick != 0>>
 					<<if $slaves[$i].mpreg == 0>>
 						come <<if canDoVaginal($slaves[$i])>>inside<<else>>on<</if>> $him; @@.lightcoral;$he's a pregnancy fetishist!@@
 					<<else>>
@@ -380,7 +380,7 @@ and
 <<if $slaves[$i].drugs == "super fertility drugs" && canGetPregnant($slaves[$i])>>
 	$His reproductive system is in overdrive,
 	<<if $slaves[$i].dick > 9>>
-		leaving $him @@.mediumorchid;desperately fucking $himself@@ in an effort to get pregnant since @@.gold;you won't <<if $PC.dick == 1>>give $him<<else>>let $him find<</if>> the dick $he needs.@@
+		leaving $him @@.mediumorchid;desperately fucking $himself@@ in an effort to get pregnant since @@.gold;you won't <<if $PC.dick != 0>>give $him<<else>>let $him find<</if>> the dick $he needs.@@
 		<<if canImpreg($slaves[$i], $slaves[$i])>>
 			<<= knockMeUp($slaves[$i], 5, 2, $slaves[$i].ID, 1)>>
 		<</if>>
@@ -393,7 +393,7 @@ and
 		<</if>>
 		<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 2>>
 	<<elseif ($slaves[$i].devotion >= -20)>>
-		leaving $him @@.mediumorchid;completely unfulfilled@@ since @@.gold;you won't <<if $PC.dick == 1>>give $him<<else>>let $him find<</if>> the dick $he needs.@@
+		leaving $him @@.mediumorchid;completely unfulfilled@@ since @@.gold;you won't <<if $PC.dick != 0>>give $him<<else>>let $him find<</if>> the dick $he needs.@@
 		<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 2>>
 	<<else>>
 		leaving $him desperate for a thorough seeding @@.mediumorchid;that you've forbidden $him from having.@@