diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index bbd3b74d9218e730e2b5af4d4ee36f676d697e89..35dce156768e4c47ef7b629bfa4079a989192801 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -2,8 +2,20 @@
 
 0.10.7.0/1
 
+01/10/18
+
+	260
+	-small fixes
+	-secEx fixes
+
 01/09/18
 
+	260
+	-fixes to advertising
+
+	259.2
+	-fixed fVagina, again
+
 	259.1
 	-fixed fVagina
 
diff --git a/devNotes/twine JS b/devNotes/twine JS
index ec336c0bf39265a3ebe6d6e38a1f03932d5de6f6..dc887f3d17a18b145a891c0acd57ae4ad3556a07 100644
--- a/devNotes/twine JS	
+++ b/devNotes/twine JS	
@@ -314,148 +314,6 @@ window.isFertile = function(slave) {
 	}
 };
 
-//hyperpreg size 2
-window.hyperBellyTwo = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 30 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.bellyImplant >= 32000) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-window.hyperPregBellyTwo = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 30 && slave.pregType >= 20) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-//hyperpreg size 1
-window.hyperBellyOne = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 20 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 30 && slave.pregType >= 10) {
-		return true;
-	} else if (slave.bellyImplant >= 16000) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-window.hyperPregBellyOne = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 20 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 30 && slave.pregType >= 10) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-//full term belly
-window.hugeBelly = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 0 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 10 && slave.pregType >= 10) {
-		return true;
-	} else if (slave.preg > 30) {
-		return true;
-	} else if (slave.inflation >= 3) {
-		return true;
-	} else if (slave.bellyImplant >= 8000) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-window.hugeBellyPreg = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 0 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 10 && slave.pregType >= 10) {
-		return true;
-	} else if (slave.preg > 30) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-//is the slave's belly big enough to get in the way
-window.bigBellyPreg = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 0 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 10 && slave.pregType >= 10) {
-		return true;
-	} else if (slave.preg > 20) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-//is the slave's belly big enough to be noticiable.
-window.visibleBellyPreg = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 0 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 5 && slave.pregType >= 10) {
-		return true;
-	} else if (slave.preg > 10) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-
-window.bigBelly = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (bigBellyPreg(slave) == true) {
-		return true;
-	} else if (slave.inflation > 2) {
-		return true;
-	} else if (slave.bellyImplant >= 4000) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-window.visibleBelly = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (visibleBellyPreg(slave) == true) {
-		return true;
-	} else if (slave.inflation > 0) {
-		return true;
-	} else if (slave.bellyImplant >= 2000) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
 window.canAchieveErection = function(slave) {
 	if (!slave) {
 		return null;
@@ -4753,4 +4611,80 @@ window.getHeroSlave = function(heroSlave, baseHeroSlave) {
         newSlave[attrname] = heroSlave[attrname];
     };
     return newSlave;
-}
\ No newline at end of file
+}
+
+/*:: Art Color Tools JS [script]*/
+
+/* 
+This takes a textual hair colour description and tries to guess the appropriate HTML compliant color code.
+
+hColor should be a color name, but can also be a string describing hair colour.
+
+This code's working is described to the user in the Encyclopedia, chapter "Lore", section "Dyes".
+*/
+window.extractHairColor = function(hColor) {
+	/* 
+	these are color names known and used in FreeCities 
+	attributed color names are at the front of the array
+	*/
+	var FCname2HTMLarray = [
+		["blazing red", "#E00E2B"],
+		["neon green", "#25d12b"],
+		["neon blue", "#2284C3"],
+		["neon pink", "#cc26aa"],
+		["strawberry-blonde", "#e5a88c"],
+		["platinum blonde", "#fcf3c1"],
+		["dark brown", "#463325"],
+		["brown", "#8D4F21"],
+		["auburn", "#7e543e"],
+		["black", "#3F4040"],
+		["blonde", "#F4F1A3"],
+		["blue", "#4685C5"],
+		["burgundy", "#5f3946"],
+		["chestnut", "#663622"],
+		["chocolate", "#6e4937"],
+		["copper", "#a16145"],
+		["ginger", "#da822d"],
+		["golden", "#ffdf31"],
+		["green", "#5FBA46"],
+		["grey", "#9e9fa4"],
+		["hazel", "#8d6f1f"],
+		["pink", "#D18CBC"],
+		["red", "#BB2027"],
+		["silver", "#cdc9c6"],
+		/* these are not actually FreeCities canon, but like to appear in custom descriptions */
+		["dark", "#463325"],
+		["brunette", "#8D4F21"]
+	];
+	
+	/* these are HTML color names supported by most browsers */
+	var HTMLstandardColors = ["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgrey","darkgreen","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","grey","green","greenyellow","honeydew","hotpink","indianred ","indigo ","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgrey","lightgreen","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"];
+	
+	var FCnames = new Map(FCname2HTMLarray);
+	hColor = hColor.toLowerCase(); /* normalization: lowercase color name */
+	var colorCode = FCnames.get(hColor); /* look up in FreeCities color names */
+	if (!colorCode) { /* not a FreeCities color name*/
+		if (HTMLstandardColors.includes(hColor) || hColor.match(/^#([0-9a-f]{3}){1,2}$/) !== null) {
+			colorCode = hColor; /* is a HTML color name or value, use it directly */
+		} else { 
+			/* 
+			is not even a HTML color name. hColor probably is a description.
+			look for anything resembling a valid color name within the description.
+			*/
+			var hColorNoSpaces = hColor.replace(/\s+/g, ''); /* remove all spaces from description */
+			var FCkeys = Array.from(FCnames.keys());
+			var colorCodes = [
+				FCnames.get(FCkeys.find(function (e){return hColor.startsWith(e);})),
+				HTMLstandardColors.find(function (e){return hColorNoSpaces.startsWith(e);}),
+				FCnames.get(FCkeys.find(function (e){return hColor.includes(e);})),
+				HTMLstandardColors.find(function (e){return hColorNoSpaces.includes(e);})
+			];
+			colorCode = colorCodes.find(function (e){return e;}); /* picks the first successful guess */
+		}
+	}
+	if (!colorCode) {
+		console.log("Art Color Tools JS: Unable to determine HTML compliant color code for hair color string '"+hColor+"'.");
+		colorCode = "fuchsia"; /* use fuchsia as error marker */
+	}
+	return colorCode;
+};
diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw
index 099a05d0f16178b0f1676194ad7afe00336709d5..3c8f71e2741f652fe1187fcafc490afa9519f1d4 100644
--- a/src/js/storyJS.tw
+++ b/src/js/storyJS.tw
@@ -314,148 +314,6 @@ window.isFertile = function(slave) {
 	}
 };
 
-//hyperpreg size 2
-window.hyperBellyTwo = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 30 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.bellyImplant >= 32000) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-window.hyperPregBellyTwo = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 30 && slave.pregType >= 20) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-//hyperpreg size 1
-window.hyperBellyOne = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 20 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 30 && slave.pregType >= 10) {
-		return true;
-	} else if (slave.bellyImplant >= 16000) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-window.hyperPregBellyOne = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 20 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 30 && slave.pregType >= 10) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-//full term belly
-window.hugeBelly = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 0 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 10 && slave.pregType >= 10) {
-		return true;
-	} else if (slave.preg > 30) {
-		return true;
-	} else if (slave.inflation >= 3) {
-		return true;
-	} else if (slave.bellyImplant >= 8000) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-window.hugeBellyPreg = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 0 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 10 && slave.pregType >= 10) {
-		return true;
-	} else if (slave.preg > 30) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-//is the slave's belly big enough to get in the way
-window.bigBellyPreg = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 0 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 10 && slave.pregType >= 10) {
-		return true;
-	} else if (slave.preg > 20) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-//is the slave's belly big enough to be noticiable.
-window.visibleBellyPreg = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (slave.preg > 0 && slave.pregType >= 20) {
-		return true;
-	} else if (slave.preg > 5 && slave.pregType >= 10) {
-		return true;
-	} else if (slave.preg > 10) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-
-window.bigBelly = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (bigBellyPreg(slave) == true) {
-		return true;
-	} else if (slave.inflation > 2) {
-		return true;
-	} else if (slave.bellyImplant >= 4000) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
-window.visibleBelly = function(slave) {
-	if (!slave) {
-		return null;
-	} else if (visibleBellyPreg(slave) == true) {
-		return true;
-	} else if (slave.inflation > 0) {
-		return true;
-	} else if (slave.bellyImplant >= 2000) {
-		return true;
-	} else {
-		return false;
-	}
-};
-
 window.canAchieveErection = function(slave) {
 	if (!slave) {
 		return null;
diff --git a/src/npc/descriptions/fVagina.tw b/src/npc/descriptions/fVagina.tw
index 3c71aaf7eb81495caaf34716a387778c6e517e01..2677f46c53dbe51b8d6b6c524421f468fcb9c2c7 100644
--- a/src/npc/descriptions/fVagina.tw
+++ b/src/npc/descriptions/fVagina.tw
@@ -98,9 +98,9 @@ You call her over so you can
 	You decide to fuck her
 	<<if (_fPosition <= 20)>>
 		in the missionary position. You tell her to lie down on the couch next to your desk.
-		<<if $activeSlave.bellyPreg >= 750000>>
+		<<if $activeSlave.bellyPreg >= 600000>>
 			A position that will be a challange due to her immense pregnancy.
-		<<elseif $activeSlave.belly >= 750000>>
+		<<elseif $activeSlave.belly >= 600000>>
 			A position that will be a challange due to her immense stomach.
 		<<elseif $activeSlave.bellyPreg >= 300000>>
 			A position that will be difficult due to her massive pregnancy.
@@ -111,9 +111,9 @@ You call her over so you can
 		<</if>>
 	<<elseif (_fPosition <= 40)>>
 		in the cowgirl position. You lie on the couch beside your desk and tell her to straddle you, facing towards you.
-		<<if $activeSlave.bellyPreg >= 750000>>
+		<<if $activeSlave.bellyPreg >= 600000>>
 			A position that will smother you with her immense pregnancy.
-		<<elseif $activeSlave.belly >= 750000>>
+		<<elseif $activeSlave.belly >= 600000>>
 			A position that will smother you with her immense stomach.
 		<<elseif $activeSlave.bellyPreg >= 300000>>
 			A position that will allow you to tease her massive pregnancy as you fuck her.
@@ -124,9 +124,9 @@ You call her over so you can
 		<</if>>
 	<<elseif (_fPosition <= 60)>>
 		doggy-style. You tell her to get on the couch beside your desk on her hands and knees.
-		<<if $activeSlave.bellyPreg >= 750000>>
+		<<if $activeSlave.bellyPreg >= 600000>>
 			As she struggles to fit on the couch, you tell her to just lean over her immense pregnancy instead.
-		<<elseif $activeSlave.belly >= 750000>>
+		<<elseif $activeSlave.belly >= 600000>>
 			As she struggles to fit on the couch, you tell her to just lean over her immense belly instead.
 		<<elseif $activeSlave.bellyPreg >= 300000>>
 			A position that leaves her rear high in the air thanks to her massive pregnancy.
@@ -138,9 +138,9 @@ You call her over so you can
 		<</if>>
 	<<elseif (_fPosition <= 80)>>
 		in the reverse cowgirl position. You lie on the couch beside your desk and tell her to straddle you facing away from you.
-		<<if $activeSlave.bellyPreg >= 750000>>
+		<<if $activeSlave.bellyPreg >= 600000>>
 			A position that will much more comfortable for her immense pregnancy and won't crush you under its mass.
-		<<elseif $activeSlave.belly >= 750000>>
+		<<elseif $activeSlave.belly >= 600000>>
 			A position that will much more comfortable for her immense belly and won't crush you under its mass.
 		<<elseif $activeSlave.bellyPreg >= 300000>>
 			A position that will much more comfortable for her massive pregnancy.
@@ -149,9 +149,9 @@ You call her over so you can
 		<</if>>
 	<<else>>
 		in the wheelbarrow position. You tell her to get on the couch beside your desk, stand next to her and lift her legs up into the air.
-		<<if $activeSlave.bellyPreg >= 750000>>
+		<<if $activeSlave.bellyPreg >= 600000>>
 			Her pregnancy is so immense it reaches the floor even as you hold her saving you the trouble of bearing its weight.
-		<<elseif $activeSlave.belly >= 750000>>
+		<<elseif $activeSlave.belly >= 600000>>
 			Her belly is so immense it reaches the floor even as you hold her saving you the trouble of bearing its weight.
 		<<elseif $activeSlave.bellyPreg >= 300000>>
 			You hope you don't strain something supporting her massive pregnancy.
@@ -214,13 +214,13 @@ You call her over so you can
 <<elseif ($activeSlave.fetish == "submissive") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($PC.dick != 0)>>
 	She comes over, smiling a little submissive smile, and spreads herself for you. You take her on the couch next to your desk after she gets into position.
 	<<if (_fPosition <= 20)>> /* missionary */
-		<<if $activeSlave.bellyPreg >= 750000>>
+		<<if $activeSlave.bellyPreg >= 600000>>
 			<<if $PC.belly >= 5000>>
 				You have to heft her gravid body up and slip under her expansive middle to position yourself for penetration. With your own baby bump in the way, it's a complicated maneuver, but once you manage to get in, you rest your head against her bulging belly and feel the movements within as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into her;
 			<<else>>
 				You have to heft her gravid body up and slip under her expansive middle to position yourself for penetration. But once you are seated, you rest your head against her bulging belly and feel the movements within as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into her;
 			<</if>>
-		<<elseif $activeSlave.belly >= 750000>>
+		<<elseif $activeSlave.belly >= 600000>>
 			<<if $PC.belly >= 5000>>
 				You have to heft her weighty body up and slip under her expansive middle to position yourself for penetration. With your own gravid swell in the way, it's a complicated maneuver, but once you manage to get in, you rest your head against her immense belly and feel the force of your <<if _fSpeed > 75>>fast, hard<<elseif _fSpeed > 50>>vigorous, firm<<elseif _fSpeed > 25>>steady<<else>>slow, tender<</if>> thrusts running through her;
 			<<else>>
@@ -257,9 +257,9 @@ You call her over so you can
 			<</if>>
 		<</if>>
 	<<elseif (_fPosition <= 40)>> /* cowgirl */
-		<<if $activeSlave.bellyPreg >= 750000>>
+		<<if $activeSlave.bellyPreg >= 600000>>
 			You wrap your arms around her boundless pregnancy as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into her and enjoy the feeling of so much movement squirming against your face;
-		<<elseif $activeSlave.belly >= 750000>>
+		<<elseif $activeSlave.belly >= 600000>>
 			You wrap your arms around her boundless stomach as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into her and enjoy the feeling of your every move running through her belly;
 		<<elseif $activeSlave.bellyPreg >= 300000>>
 			She does her best to not suffocate you with her massive belly or knock you out with it as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into her. You get a face full of pregnancy with each downward motion;
@@ -285,7 +285,7 @@ You call her over so you can
 			She puts her hands on your chest and starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards;
 		<</if>>
 	<<else>> /* wheelbarrow */
-		<<if $activeSlave.belly >= 750000>>
+		<<if $activeSlave.belly >= 600000>>
 			With all her weight handled, you can keep <<if _fSpeed > 75>>furiously<<elseif _fSpeed > 50>>vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> pounding without your arms getting tired;
 		<<elseif $activeSlave.bellyPreg >= 300000>>
 			Before long both of your strength begins to wane, causing her belly to touch the floor. With some of the weight off of the both of you, you keep on <<if _fSpeed > 75>>furiously<<elseif _fSpeed > 50>>vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> pounding;
@@ -362,13 +362,13 @@ You call her over so you can
 	<<if ($PC.dick != 0)>>
 		She skips over smiling and gives you a quick kiss. You take her on the couch next to your desk after she gets into position.
 		<<if (_fPosition <= 20)>> /* missionary */
-			<<if $activeSlave.bellyPreg >= 750000>>
+			<<if $activeSlave.bellyPreg >= 600000>>
 				<<if $PC.belly >= 5000>>
 					You have to heft her gravid body up and slip under her expansive middle to position yourself for penetration. With your own baby bump in the way, it's a complicated maneuver, but once you manage to get in, you rest your head against her bulging belly and feel the movements within as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into her;
 				<<else>>
 					You have to heft her gravid body up and slip under her expansive middle to position yourself for penetration. But once you are seated, you rest your head against her bulging belly and feel the movements within as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into her;
 				<</if>>
-			<<elseif $activeSlave.belly >= 750000>>
+			<<elseif $activeSlave.belly >= 600000>>
 				<<if $PC.belly >= 5000>>
 					You have to heft her weighty body up and slip under her expansive middle to position yourself for penetration. With your own gravid swell in the way, it's a complicated maneuver, but once you manage to get in, you rest your head against her immense belly and feel the force of your <<if _fSpeed > 75>>fast, hard<<elseif _fSpeed > 50>>vigorous, firm<<elseif _fSpeed > 25>>steady<<else>>slow, tender<</if>> thrusts running through her;
 				<<else>>
@@ -405,9 +405,9 @@ You call her over so you can
 				<</if>>
 			<</if>>
 		<<elseif (_fPosition <= 40)>> /* cowgirl */
-			<<if $activeSlave.bellyPreg >= 750000>>
+			<<if $activeSlave.bellyPreg >= 600000>>
 				You wrap your arms around her boundless pregnancy as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into her and enjoy the feeling of so much movement squirming against your face;
-			<<elseif $activeSlave.belly >= 750000>>
+			<<elseif $activeSlave.belly >= 600000>>
 				You wrap your arms around her boundless stomach as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into her and enjoy the feeling of your every move running through her belly;
 			<<elseif $activeSlave.bellyPreg >= 300000>>
 				She does her best to not suffocate you with her massive belly or knock you out with it as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into her. You get a face full of pregnancy with each downward motion;
@@ -433,7 +433,7 @@ You call her over so you can
 				She puts her hands on your chest and starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards;
 			<</if>>
 		<<else>> /* wheelbarrow */
-			<<if $activeSlave.belly >= 750000>>
+			<<if $activeSlave.belly >= 600000>>
 				With all her weight handled, you can keep <<if _fSpeed > 75>>furiously<<elseif _fSpeed > 50>>vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> pounding without your arms getting tired;
 			<<elseif $activeSlave.bellyPreg >= 300000>>
 				Before long both of your strength begins to wane, causing her belly to touch the floor. With some of the weight off of the both of you, you keep on <<if _fSpeed > 75>>furiously<<elseif _fSpeed > 50>>vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> pounding;
diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw
index 869c17d53bee13472a01df9d8328e07efa9a052f..240d364815d0d5d08bea56f59e0d108250ecef55 100644
--- a/src/pregmod/seFCTVshows.tw
+++ b/src/pregmod/seFCTVshows.tw
@@ -944,7 +944,20 @@ The offered price is <<print cashFormat($slaveCost)>>.
 			<</if>>
 			appreciating the life growing within you and what future prospects may await it.
 		<<elseif $PC.dick == 1>>
-			Stunned and fully erect, you inexplicably feel the urge to creampie a pussy, so you <<if $fuckSlaves > 0>>grab the nearest slave watching with you, who is overjoyed to recreate the entire ending with you<<else>>make your way to the slave dormitory and pick out the perfect slave<</if>>. You've never had a more hope-filled orgasm.
+			Stunned and fully erect, you inexplicably feel the urge to creampie a pussy, so you
+			<<if $Concubine != 0 && $Concubine.vagina > 0 && canDoVaginal($Concubine)>>
+				grab $Concubine.slaveName and recreate the entire ending with her.
+				<<set _fctvs = $slaves.findIndex(function(s) { return s.ID == $Concubine.ID; })>>
+				<<set $slaves[_fctvs].vaginalCount += 1, $vaginalTotal += 1>>
+				<<if $Concubine.eggType == "human" && canGetPregnant($Concubine)>>
+					<<KnockMeUp $slaves[_fctvs] 10 0 -1 1>>
+				<</if>>
+			<<elseif $fuckSlaves > 0>>
+				grab the nearest slave watching with you, who is overjoyed to recreate the entire ending with you.
+			<<else>>
+				make your way to the slave dormitory and pick out the perfect slave.
+			<</if>>
+			You've never had a more hope-filled orgasm.
 		<<else>>
 			Stunned and soaking wet, you hurry to
 			<<if $Concubine != 0 && canPenetrate($Concubine) && $PC.preg == 0 && $Concubine.ballType == "human" && $Concubine.vasectomy == 0 && ($sexualOpeness == 1 || $Concubine.toyHole == "dick")>>