diff --git a/src/events/RESS/ageDifferenceOldPC.js b/src/events/RESS/ageDifferenceOldPC.js
index a5271839a006b3ecc2881ac08f13c08df68f7ef0..d21e147173b608bc32190b2732a27506e1df4641 100644
--- a/src/events/RESS/ageDifferenceOldPC.js
+++ b/src/events/RESS/ageDifferenceOldPC.js
@@ -151,11 +151,7 @@ App.Events.RESSAgeDifferenceOldPC = class RESSAgeDifferenceOldPC extends App.Eve
 				}
 				r.push(`down on the sheets before gently positioning yourself on top of ${him}.`);
 			}
-			r.push(`Together, the two of you make fiercely intimate love, while you`);
-			if (canHear(eventSlave)) {
-				r.push(`whisper romantic reassurances into ${his} ear,`);
-			}
-			r.push(`nip at ${his} neck,`);
+			r.push(`Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into ${his} ear, nip at ${his} neck,`);
 			if (eventSlave.bellyPreg >= 300000) {
 				r.push(`run your hands across ${his} squirming brood,`);
 			} else if (eventSlave.preg > eventSlave.pregData.normalBirth/2) {
diff --git a/src/events/RESS/ageDifferenceYoungPC.js b/src/events/RESS/ageDifferenceYoungPC.js
new file mode 100644
index 0000000000000000000000000000000000000000..d5711d08f8319fdcf4f60840f837e8ce5ffcc63d
--- /dev/null
+++ b/src/events/RESS/ageDifferenceYoungPC.js
@@ -0,0 +1,264 @@
+App.Events.RESSAgeDifferenceYoungPC = class RESSAgeDifferenceYoungPC extends App.Events.BaseEvent {
+	eventPrerequisites() {
+		return [
+			() => V.PC.actualAge < 25,
+		]; // always valid if sufficient actors can be cast successfully
+	}
+
+	actorPrerequisites() {
+		return [
+			[ // single event slave
+				s => s.fetish !== "mindbroken",
+				canWalk,
+				canTalk,
+				canHear,
+				s => s.devotion > 20,
+				s => s.trust > 20,
+				s => s.actualAge > 35,
+				s => (canDoAnal(s) || canDoVaginal(s)),
+			]
+		];
+	}
+
+	execute(node) {
+		/** @type {Array<App.Entity.SlaveState>} */
+		let [eventSlave] = this.actors.map(a => getSlave(a));
+		const {
+			He, he, his, him, himself, mother, woman
+		} = getPronouns(eventSlave);
+		const {title: Master, say} = getEnunciation(eventSlave);
+		const belly = bellyAdjective(eventSlave);
+		const PC = V.PC;
+
+		V.nextLink = "Next Week";
+
+		App.Events.drawEventArt(node, eventSlave, "no clothing");
+
+		let r = [];
+		r.push(`As another long week draws to a close,`);
+		r.push(App.UI.DOM.combineNodes(contextualIntro(V.PC, eventSlave, "DOM"), ","));
+		r.push(`happens to`);
+		if (eventSlave.belly >= 10000) {
+			r.push("waddle");
+		} else {
+			r.push("walk");
+		}
+		r.push(`past your office toward bed. There's nothing inherently abnormal about ${his} actions, but you do notice as ${he} steps past the doorway that an expression of worry and concern adorns ${his} ${eventSlave.skin} face. When you call ${him} into your office, ${his} face visibly brightens up in an attempt to conceal ${his} obvious distress as ${he} comes before you. Notably, although ${he} stands still and patiently awaits further orders, you notice ${he}`);
+		if (canSee(eventSlave)) {
+			r.push(`never manages to meet your eyes.`);
+		} else {
+			r.push(`keeps ${his} sightless eyes downcast.`);
+		}
+		r.push(`When you ask ${him} what's troubling ${him}, ${his} face plainly falls.`);
+		App.Events.addParagraph(node, r);
+		r = [];
+
+		if (!isParentP(PC, eventSlave)) {
+			r.push(Spoken(eventSlave, `"${Master}, you're so young,"`));
+			r.push(`${he} ${say}s penitently before smiling shyly in an attempt to insert some levity into ${his} confession.`);
+			r.push(Spoken(eventSlave, `"It's just that I'm old enough to be your ${mother}, ${Master}. It's a little weird, isn't it?"`));
+		} else {
+			r.push(Spoken(eventSlave, `"${Master}, you're so`));
+			if (PC.title === 1) {
+				r.push(Spoken(eventSlave, `handsome,"`));
+			} else {
+				r.push(`beautiful,"`);
+			}r.push(`${he} ${say}s penitently before smiling shyly in an attempt to insert some levity into ${his} confession.`);
+			r.push(Spoken(eventSlave, `"It's just that you've become so attractive since`));
+			if (PC.mother === eventSlave.ID) {
+				r.push(Spoken(eventSlave, `I gave birth to you, I just can't compete,`));
+			} else {
+				r.push(Spoken(eventSlave, `your mother gave birth to you, I just can't compete, and I don't even come close to her looks,`));
+			}
+			r.push(Spoken(eventSlave, `${Master}. It's a little weird, isn't it, for such an old ${woman} to be graced with such a lovely ${Master}?"`));
+		}
+
+		App.Events.addParagraph(node, r);
+		App.Events.addResponses(node, [
+			new App.Events.Result(`Gently acclimate ${him} to the age difference with some lovemaking`, lovemaking, virginityWarning(false)),
+			new App.Events.Result(`Cruelly torment ${him} about the age difference`, torment, virginityWarning(false)),
+			isFertile(eventSlave)
+				? new App.Events.Result(`Give ${him} an afternoon off for some quality time with a local Frat House`, afternoon, virginityWarning(true))
+				: new App.Events.Result(),
+
+		]);
+
+		function virginityWarning(knockedUp){
+			if (knockedUp) {
+				let t = `This option will render ${eventSlave.slaveName} pregnant`;
+				if (canDoVaginal(eventSlave) && (eventSlave.vagina === 0)) {
+					t += ` and take ${his} virginity`;
+				} else if (!canDoVaginal(eventSlave) && (eventSlave.anus === 0)) {
+					t += ` and take ${his} anal virginity`;
+				}
+				return t;
+			} else if (canDoVaginal(eventSlave) && (eventSlave.vagina === 0)) {
+				return `This option will take ${his} virginity`;
+			} else if (!canDoVaginal(eventSlave) && (eventSlave.anus === 0)) {
+				return `This option will take ${his} anal virginity`;
+			}
+		}
+
+		function lovemaking() {
+			r = [];
+			r.push(`As you cross the breadth of your office to reach ${eventSlave.slaveName}, ${he} presents ${himself} for your sexual usage out of habit. However, you take ${him} by surprise by drawing ${him} into your arms, running the tips of your fingers`);
+			if (eventSlave.hStyle.includes("bald") || eventSlave.bald === 1) {
+				r.push(`across ${his} scalp,`);
+			} else {
+				r.push(`through ${his} ${eventSlave.hColor} hair,`);
+			}
+			r.push(`and looking into ${his} ${App.Desc.eyesColor(eventSlave)}.`);
+			if (canSee(eventSlave)) {
+				r.push(`${He} meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years your senior ${he} is.`);
+			} else {
+				r.push(`${He} seems to feel the intensity of your gaze despite ${his} sightless eyes and blushes girlishly, as if forgetting how many years your senior ${he} is.`);
+			}
+			r.push(`In lieu of words, you lift ${his} chin with a single beckoning finger and steal ${his} breath from ${his} lips with a firm kiss. Once ${he}'s recovered ${his} wits ${he} clings to you with almost animalistic attachment. After a few moments ${he} moves to get down on ${his} knees, clearly defaulting to ${his} role as a sex slave in response to your unexpected intimacy. Instead, you`);
+			if (eventSlave.belly >= 300000) {
+				r.push(`help ${him} to ${his} feet and guide ${him} to bed, aiding the`);
+				if (eventSlave.bellyPreg >= 3000) {
+					r.push(`child-laden`);
+				} else {
+					r.push(`tremendously swollen`);
+				}
+				r.push(`older ${woman} onto the sheets before gently mounting ${him}.`);
+			} else {
+				if (eventSlave.belly >= 5000) {
+					r.push(`carefully`);
+				}
+				r.push(`lift ${him} up from ${his} low position beneath you and carry ${him} to bed, laying the flushed older ${woman} down on the sheets before gently positioning yourself on top of ${him}.`);
+			}
+			r.push(`Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into ${his} ear, nip at ${his} neck,`);
+			if (eventSlave.bellyPreg >= 300000) {
+				r.push(`run your hands across ${his} squirming brood,`);
+			} else if (eventSlave.preg > eventSlave.pregData.normalBirth/2) {
+				r.push(`stroke ${his} pregnant belly,`);
+			} else if (eventSlave.belly >= 5000) {
+				r.push(`caress the curve of ${his} ${belly} belly,`);
+			}
+			r.push(`and bring ${him} to climax again and again. After a final frantic orgasm together in ${his}`);
+			if (canDoVaginal(eventSlave)) {
+				r.push(`pussy`);
+			} else {
+				r.push(`anus`);
+			}
+			r.push(`${he}`);
+			if (canSee(eventSlave)) {
+				r.push(`looks`);
+			} else {
+				r.push(`gazes sightlessly`);
+			}
+			r.push(`up at you with <span class="devotion inc">adoration</span> and a new <span class="trust inc">trust</span> in ${his} young ${getWrittenTitle(eventSlave)}.`);
+			eventSlave.devotion += 4;
+			eventSlave.trust += 4;
+			if (canDoVaginal(eventSlave)) {
+				r.push(VCheck.Vaginal(eventSlave, 1));
+			} else {
+				r.push(VCheck.Anal(eventSlave, 1));
+			}
+			return r;
+		}
+
+		function torment() {
+			const frag = document.createDocumentFragment();
+			r = [];
+			r.push(`As you close in on ${eventSlave.slaveName} predatorily, ${his} face blanches with visible regret at ${his} prior candidness. By the time you have ${him} bent over`);
+			if (eventSlave.belly >= 300000) {
+				r.push(`${his} ${belly} belly`);
+			} else {
+				r.push(`your desk`);
+			}
+			r.push(`and begun spanking ${his}`);
+			if (eventSlave.butt > 12) {
+				r.push(`absurd ass,`);
+			} else if (eventSlave.butt > 6) {
+				r.push(`massive behind,`);
+			} else if (eventSlave.butt > 3) {
+				r.push(`bountiful bottom,`);
+			} else {
+				r.push(`cute ass,`);
+			}
+			r.push(`${he} seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush`);
+			if (eventSlave.earShape !== "none" && eventSlave.earT !== "none") {
+				r.push(`one of ${his} ears,`);
+			} else {
+				r.push(`where ${his} ear used to be,`);
+			}
+			r.push(`${he} flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about ${his} sexual submission and subservience to so young a ${getWrittenTitle(eventSlave)}, ${he} begins to sob quietly`);
+			if (eventSlave.belly >= 300000) {
+				if (eventSlave.boobs > 600) {
+					r.push(`into ${his} breasts.`);
+				} else if (!hasAnyArms(eventSlave)) {
+					r.push(`with no means to hide it.`);
+				} else {
+					r.push(`into ${his} hands.`);
+				}
+			} else {
+				r.push(`against the hard surface of your desk.`);
+			}
+			App.Events.addParagraph(frag, r);
+
+			r = [];
+			r.push(`By the time you deign to`);
+			if (V.PC.dick === 0) {
+				r.push(`don a strap-on and`);
+			}
+			r.push(`mount ${his} ass, ${he} seems catatonic at the revelation that ${his} body is owned by so cruel a ${Master}, nearly half ${his} age. Even when you accompany each brutal thrust with a harsh spank and a harsh jab at the dearth in years between the two of you, ${he} merely winces at the`);
+			if (canDoVaginal(eventSlave)) {
+				r.push(`force`);
+			} else {
+				r.push(`anal pain`);
+			}
+			r.push(`of your coupling. Judging by the`);
+			if (!canSee(eventSlave)) {
+				r.push(`exceptionally`);
+			}
+			r.push(`empty look in ${his} eyes that persists past ${his} dismissal from your office, ${he} might <span class="trust dec">not feel any better</span> about the age difference but you've definitely <span class="devotion inc">fucked ${him} into compliance.</span>`);
+			eventSlave.devotion += 4;
+			eventSlave.trust -= 4;
+			if (canDoVaginal(eventSlave)) {
+				r.push(VCheck.Vaginal(eventSlave, 1));
+			} else {
+				r.push(VCheck.Anal(eventSlave, 1));
+			}
+			App.Events.addParagraph(frag, r);
+			return frag;
+		}
+
+		function afternoon() {
+			const frag = document.createDocumentFragment();
+			App.Events.addParagraph(frag, [`You direct ${V.assistant.name} to clear ${eventSlave.slaveName}'s schedule and to find a local Frat House willing to 'host' a ${woman} of ${his} age and experience. Perhaps a group of virile college boys running a train on ${eventSlave.slaveName} might accustom ${him} to younger sexual partners. When ${eventSlave.slaveName} leaves the penthouse, ${he}'s dressed up to look like a frumpy old world ${woman === "woman" ? "MILF" : "DILF"} and is clearly skeptical about your age-play therapy.`]);
+
+			r = [];
+			r.push(`${eventSlave.slaveName} returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite ${his} appearance, however, ${he} is practically beaming with happiness. It seems young cock agrees with ${him}, and by the state of ${his}`);
+			if (eventSlave.mpreg === 1) {
+				r.push(`cum-drenched asshole`);
+			} else {
+				r.push(`messy pussy`);
+			}
+			r.push(`${his} youthful partners particularly enjoyed filling ${him} with their potent seed. Unsurprisingly, at a routine check up later that week, ${eventSlave.slaveName} joyfully discovers that ${he} was impregnated during ${his} Frat House excursion. It seems that being bred by a bunch of horny college boys has eliminated ${his} prior worries about the importance of age and also caused ${him} to <span class="fetish gain">fetishize impregnation.</span> <span class="devotion inc">${He} has become more submissive to you</span> for giving ${him} the means to broaden ${his} sexual horizons.`);
+			eventSlave.devotion += 4;
+			eventSlave.preg = 1;
+			eventSlave.pregWeek = 1;
+			eventSlave.pregKnown = 1;
+			eventSlave.pregType = setPregType(eventSlave);
+			WombImpregnate(eventSlave, eventSlave.pregType, 0, 1);
+			eventSlave.fetish = "pregnancy";
+			eventSlave.fetishKnown = 1;
+			eventSlave.fetishStrength = 5;
+			if (eventSlave.mpreg === 1) {
+				seX(eventSlave, "anal", "public", "penetrative", 10);
+				if (eventSlave.anus === 0) {
+					eventSlave.anus++;
+				}
+			} else {
+				seX(eventSlave, "vaginal", "public", "penetrative", 10);
+				if (eventSlave.vagina === 0) {
+					eventSlave.vagina++;
+				}
+			}
+			App.Events.addParagraph(frag, r);
+			return frag;
+		}
+	}
+};
diff --git a/src/events/randomEvent.js b/src/events/randomEvent.js
index 8660f9434e46949668d78d6c8f63beeabc02bacf..d3abc6cc4eb062eb5f0c78c482342e3c80b72605 100644
--- a/src/events/randomEvent.js
+++ b/src/events/randomEvent.js
@@ -11,6 +11,7 @@ App.Events.getIndividualEvents = function() {
 		// instantiate all possible random individual events here
 		// example: new App.Events.TestEvent(),
 		new App.Events.RESSAgeDifferenceOldPC(),
+		new App.Events.RESSAgeDifferenceYoungPC(),
 		new App.Events.RESSArcadeSadist(),
 		new App.Events.RESSAssFitting(),
 		new App.Events.RESSBedSnuggle(),
diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js
index 84eab37c8bc56b79d63d07fa7c4a2e6f552d3f15..e17d8755179ab6a394b76f435cc0ab102825bcba 100644
--- a/src/js/eventSelectionJS.js
+++ b/src/js/eventSelectionJS.js
@@ -340,18 +340,6 @@ if(eventSlave.drugs === "breast injections") {
 					}
 				}
 
-				if (eventSlave.devotion > 20) {
-					if (eventSlave.trust > 20) {
-						if (eventSlave.actualAge > 35) {
-							if (canDoAnal(eventSlave) || canDoVaginal(eventSlave)) {
-								if (V.PC.actualAge < 25) {
-									V.RESSevent.push("young PC age difference");
-								}
-							}
-						}
-					}
-				}
-
 				if (eventSlave.fetish === "humiliation" || eventSlave.energy > 95) {
 					if (eventSlave.devotion <= 50) {
 						if (eventSlave.devotion >= -20) {
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index dab917857e186486413b315388d3705db79424ad..f92399d03786da45ee171d142d0ff8f4142ee4b0 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -44,7 +44,7 @@
 <<set _clothesTemp = $activeSlave.clothes>>
 <<switch $RESSevent>>
 /*Some events start with the slave naked (any event that starts with the daily inspection, for example). Here we switch their clothing just for the image to load, then switch it back quickly so the player's choice is not messed up.*/
-<<case "age implant" "ara ara" "back stretch" "bad dream" "bonded love" "breast expansion blues" "confident tanning" "devoted exhibition" "devoted lotion" "desperate null" "devoted nympho" "extreme aphrodisiacs" "fearful balls" "fucktoy tribbing" "gaped asshole" "happy dance" "heavy piercing" "huge naturals" "huge tits" "hugely pregnant" "ignorant horny" "implant inspection" "language lesson" "mods please" "orchiectomy please" "PA flirting" "permitted masturbation" "plimb help" "rebellious arrogant" "resistant gelding" "resistant shower" "resting amp" "restricted profession" "sexy succubus" "shaped areolae" "shift masturbation" "shift sleep" "shower slip" "slave dick huge" "sleeping ambivalent" "sore shoulders" "spa boobs" "subjugation blues" "tendon fall" "terrified inspection" "tittymonster inspection" "torpedo squeeze" "transition anxiety" "trusting HG" "unhappy virgin" "used whore" "vocal disobedience" "young PC age difference">>
+<<case "age implant" "ara ara" "back stretch" "bad dream" "bonded love" "breast expansion blues" "confident tanning" "devoted exhibition" "devoted lotion" "desperate null" "devoted nympho" "extreme aphrodisiacs" "fearful balls" "fucktoy tribbing" "gaped asshole" "happy dance" "heavy piercing" "huge naturals" "huge tits" "hugely pregnant" "ignorant horny" "implant inspection" "language lesson" "mods please" "orchiectomy please" "PA flirting" "permitted masturbation" "plimb help" "rebellious arrogant" "resistant gelding" "resistant shower" "resting amp" "restricted profession" "sexy succubus" "shaped areolae" "shift masturbation" "shift sleep" "shower slip" "slave dick huge" "sleeping ambivalent" "sore shoulders" "spa boobs" "subjugation blues" "tendon fall" "terrified inspection" "tittymonster inspection" "torpedo squeeze" "transition anxiety" "trusting HG" "unhappy virgin" "used whore" "vocal disobedience">>
 	<<set $activeSlave.clothes = "no clothing">>
 <<case "inconvenient labia">>
 	/* "pulling down the compression shorts $he was wearing" */
@@ -2986,22 +2986,6 @@ $He begins $his cleaning dutifully, fluttering about your office in a flurry of
 <</if>>
 Eventually, $his duties satisfactorily completed, $he comes before your desk to beg your permission to continue $his servitude elsewhere in the penthouse.
 
-<<case "young PC age difference">>
-
-As another long week draws to a close, <<= App.UI.slaveDescriptionDialog($activeSlave)>> happens to <<if $activeSlave.belly >= 10000>>waddle<<else>>walk<</if>> past your office toward bed. There's nothing inherently abnormal about $his actions, but you do notice as $he steps past the doorway that an expression of worry and concern adorns $his $activeSlave.skin face. When you call $him into your office, $his face visibly brightens up in an attempt to conceal $his obvious distress as $he comes before you. Notably, although $he stands still and patiently awaits further orders, you notice $he <<if canSee($activeSlave)>>never manages to meet your eyes<<else>>keeps $his sightless eyes downcast<</if>>. When you ask $him what's troubling $him, $his face plainly falls.
-<br><br>
-<<if $PC.mother != $activeSlave.ID && $PC.father != $activeSlave.ID>>
-	"<<Master>>, you're <<s>>o young," $he <<say>>s penitently before smiling shyly in an attempt to insert some levity into $his confession. "It'<<s>> ju<<s>>t that I'm old enough to be your $mother, <<Master>>. It'<<s>> a little weird, i<<s>>n't it?"
-<<else>>
-	"<<Master>>, you're <<s>>o <<if $PC.title == 1>>hand<<s>>ome<<else>>beautiful<</if>>," $he <<say>>s penitently before smiling shyly in an attempt to insert some levity into $his confession. "It'<<s>> ju<<s>>t that you've become <<s>>o attractive <<s>>in<<c>>e
-	<<if $PC.mother == $activeSlave.ID>>
-		I gave birth to you, I ju<<s>>t can't compete,
-	<<else>>
-		your mother gave birth to you, I ju<<s>>t can't compete, and I don't even come clo<<s>>e to her look<<s>>,
-	<</if>>
-	<<Master>>. It'<<s>> a little weird, i<<s>>n't it, for <<s>>uch an old $woman to be with gra<<c>>ed with <<s>>uch a lovely <<Master>>?"
-<</if>>
-
 <<case "nice guys">>
 
 One afternoon, $assistant.name informs you $he that $he has a non-urgent matter that you might be interested in overseeing personally.
@@ -14441,127 +14425,6 @@ $He cranes $his neck, glancing over $his shoulder to give you a pleading look.
 	<</replace>>
 <</link>>
 
-<<case "young PC age difference">>
-
-<<link "Gently acclimate $him to the age difference with some lovemaking">>
-	<<replace "#result">>
-		As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into your arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his <<= App.Desc.eyesColor($activeSlave)>>. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years your senior $he is<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years your senior $he is<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered $his wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to $his role as a sex slave in response to your unexpected intimacy. Instead, you
-		<<if $activeSlave.belly >= 300000>>
-			help $him to <<if hasBothLegs($activeSlave)>>$his feet<<else>>stand up<</if>> and guide $him to bed, aiding the <<if $activeSlave.bellyPreg >= 3000>>child-laden<<else>>tremendously swollen<</if>> older $woman onto the sheets before gently mounting $him.
-		<<else>>
-			<<if $activeSlave.belly >= 5000>>carefully <</if>>lift $him up from $his low position beneath you and carry $him to bed, laying the flushed older $woman down on the sheets before gently positioning yourself on top of $him.
-		<</if>>
-		Together, the two of you make fiercely intimate love, while you <<if canHear($activeSlave)>>whisper romantic reassurances into $his ear, <</if>>nip at $his neck,
-		<<if $activeSlave.bellyPreg >= 300000>>
-			run your hands across $his squirming brood,
-		<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
-			stroke $his pregnant belly,
-		<<elseif $activeSlave.belly >= 5000>>
-			caress the curve of $his _belly belly,
-		<</if>>
-		and bring $him to climax again and again. After a final frantic orgasm together in $his
-		<<if canDoVaginal($activeSlave)>>
-			pussy
-		<<else>>
-			anus
-		<</if>>
-		$he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in $his young <<= getWrittenTitle($activeSlave)>>.
-		<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
-		<<if canDoVaginal($activeSlave)>>
-			<<= VCheck.Vaginal($activeSlave, 1)>>
-		<<else>>
-			<<= VCheck.Anal($activeSlave, 1)>>
-		<</if>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
-<br><<link "Cruelly torment $him about the age difference">>
-	<<replace "#result">>
-		As you close in on $activeSlave.slaveName predatorily, $his face blanches with visible regret at $his prior candidness. By the time you have $his bent over
-		<<if $activeSlave.belly >= 300000>>
-			$his _belly belly
-		<<else>>
-			your desk
-		<</if>>
-		and begun spanking $his
-		<<if $activeSlave.butt > 12>>
-			absurd ass,
-		<<elseif $activeSlave.butt > 6>>
-			massive behind,
-		<<elseif $activeSlave.butt > 3>>
-			bountiful bottom,
-		<<else>>
-			cute ass,
-		<</if>>
-		$he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about $his sexual submission and subservience to so young a <<= getWrittenTitle($activeSlave)>>, $he begins to sob quietly
-		<<if $activeSlave.belly >= 300000>>
-			<<if $activeSlave.boobs > 600>>
-				into $his breasts.
-			<<else>>
-				into $his hands.
-			<</if>>
-		<<else>>
-			against the hard surface of your desk.
-		<</if>>
-		<br><br>
-		By the time you deign to <<if $PC.dick == 0>>don a strap-on and <</if>>mount $his ass, $he seems catatonic at the revelation that $his body is owned by a cruel <<= getWrittenTitle($activeSlave)>>, nearly half $his age. Even when you accompany each brutal thrust with a harsh spank and a harsher jab at the dearth in years between the two of you, $he merely winces at the
-		<<if canDoVaginal($activeSlave)>>
-			force
-		<<else>>
-			anal pain
-		<</if>>
-		of your coupling. Judging by the empty look in $his eyes that persists past $his dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked $him into compliance.@@
-		<<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>>
-		<<if canDoVaginal($activeSlave)>>
-			<<= VCheck.Vaginal($activeSlave, 1)>>
-		<<else>>
-			<<= VCheck.Anal($activeSlave, 1)>>
-		<</if>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
-<<if isFertile($activeSlave)>>
-	<br><<link "Give $him an afternoon off for some quality time with a local Frat House">>
-		<<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "no clothing">>
-		<<replace "#art-frame">>
-			/* 000-250-006 */
-			<<if $seeImages == 1>>
-				<<if $imageChoice == 1>>
-					<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 3 0>></div>
-				<<else>>
-					<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 3 0>></div>
-				<</if>>
-			<</if>>
-			/* 000-250-006 */
-		<</replace>>
-		<<set $activeSlave.clothes = _clothesTemp>>
-		<<replace "#result">>
-			You direct $assistant.name to clear $activeSlave.slaveName's schedule and to find a local Frat House willing to 'host' a $woman of $his age and experience. Perhaps a group of virile college boys running a train on $activeSlave.slaveName might accustom $him to younger sexual partners. When $activeSlave.slaveName leaves the penthouse, $he's dressed up to look like a frumpy old world MILF and is clearly skeptical about your age-play therapy.
-			<br><br>
-			$activeSlave.slaveName returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite $his appearance, however, $he is practically beaming with happiness. It seems young cock agrees with $him, and by the state of $his
-			<<if $activeSlave.mpreg == 1>>
-				cum-drenched asshole
-			<<else>>
-				messy pussy
-			<</if>>
-			$his youthful partners particularly enjoyed filling $him with their potent seed. Unsurprisingly, at a routine check up later that week, $activeSlave.slaveName joyfully discovers that $he was impregnated during $his Frat House excursion. It seems that being bred by a bunch of horny college boys has eliminated $his prior worries about the importance of age and also caused $him to @@.lightcoral;fetishize impregnation.@@ @@.hotpink;$He has become more submissive to you@@ for giving $him the means to broaden $his sexual horizons.
-			<<set $activeSlave.devotion += 4, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1>>
-			<<set $activeSlave.pregType = setPregType($activeSlave)>>
-			<<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, 1)>>
-			<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 5>>
-			<<if $activeSlave.mpreg == 1>>
-				<<run seX($activeSlave, "anal", "public", "penetrative", 10)>>
-				<<if $activeSlave.anus == 0>>
-					<<set $activeSlave.anus++>>
-				<</if>>
-			<<else>>
-				<<run seX($activeSlave, "vaginal", "public", "penetrative", 10)>>
-				<<if $activeSlave.vagina == 0>>
-					<<set $activeSlave.vagina++>>
-				<</if>>
-			<</if>>
-		<</replace>>
-	<</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> // and take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take $his anal virginity//<</if>>
-<</if>>
-
 <<case "nice guys">>
 
 <<link "Let the boys be">>