From 02d87c6ec60e8cf09248e0590a5210b9568d16f9 Mon Sep 17 00:00:00 2001
From: kopareigns <kopareigns@gmail.com>
Date: Sat, 1 Aug 2020 20:26:23 -0400
Subject: [PATCH] Kitchen Molestation to JS

---
 src/events/RESS/devotedEducated.js    |   6 +-
 src/events/RESS/kitchenMolestation.js | 215 ++++++++++++++++++++++++++
 src/events/randomEvent.js             |   1 +
 src/js/eventSelectionJS.js            |  10 --
 src/uncategorized/RESS.tw             | 167 +-------------------
 5 files changed, 220 insertions(+), 179 deletions(-)
 create mode 100644 src/events/RESS/kitchenMolestation.js

diff --git a/src/events/RESS/devotedEducated.js b/src/events/RESS/devotedEducated.js
index c0d29a4b056..d11d2aaa111 100644
--- a/src/events/RESS/devotedEducated.js
+++ b/src/events/RESS/devotedEducated.js
@@ -65,11 +65,11 @@ App.Events.RESSDevotedEducated = class RESSDevotedEducated extends App.Events.Ba
 			t.push(`You linger in the hallway a while with ${eventSlave.slaveName} and enjoy a brief but verbose discussion. It's clear ${he} hasn't had the chance to engage in any meaningful conversations in a while, so ${he} relishes the opportunity energetically.`);
 			App.Events.addParagraph(node, t);
 			t = [];
-			
+
 			t.push(`Though the two of you only touch upon a handful of sophisticated topics, by the time you leave ${him} to tend to other matters, ${eventSlave.slaveName} is beaming happily as ${he} continues on to ${his} duties for the day. ${He} <span class="mediumaquamarine">trusts you more</span> for taking the time to engage with ${him} intellectually.`);
 			App.Events.addParagraph(node, t);
 			t = [];
-			
+
 			eventSlave.trust += 4;
 			return t;
 		}
@@ -92,7 +92,7 @@ App.Events.RESSDevotedEducated = class RESSDevotedEducated extends App.Events.Ba
 			t.push(`ass on your ${PC.dick === 0 ? "strap-on" : "dick"} and rides you. While your cock plumbs the depths of ${his} ${canDoVaginal(eventSlave) ? "pussy" : "butt"}, the two of you engage in a casual debate over a number of topics of sophistry.`);
 			App.Events.addParagraph(node, t);
 			t = [];
-		
+
 			t.push(`At the crux of one of ${his} concluding arguments, the intense pleasure from the prolonged ${canDoVaginal(eventSlave) ? "fucking" : "buttfucking"} pushes ${him} over the edge into orgasm, robbing the thrust of ${his} defense of any gravitas it once had. ${He} doesn't seem to mind however, choosing to instead wrap up ${his} remarks by <span class="hotpink">blowing you a kiss.</span>`);
 			if (canDoVaginal(eventSlave)) {
 				t.push(VCheck.Vaginal(1, eventSlave));
diff --git a/src/events/RESS/kitchenMolestation.js b/src/events/RESS/kitchenMolestation.js
new file mode 100644
index 00000000000..d6a6ee936ca
--- /dev/null
+++ b/src/events/RESS/kitchenMolestation.js
@@ -0,0 +1,215 @@
+App.Events.RESSKitchenMolestation = class RESSKitchenMolestation extends App.Events.BaseEvent {
+	eventPrerequisites() {
+		return [
+			() => V.cockFeeder > 0,
+			() => V.universalRulesConsent === 0
+		];
+	}
+
+	actorPrerequisites() {
+		return [
+			[ // single event slave
+				s => s.fetish !== "mindbroken",
+				hasAnyArms,
+				hasAnyLegs,
+				canTalk,
+				s => s.devotion > 50,
+				s => s.fetish === "sadist" || s.fetish === "dom" || s.energy > 95,
+				s => canPenetrate(s) || s.dick === 0
+			]
+		];
+	}
+
+	execute(node) {
+		/** @type {Array<App.Entity.SlaveState>} */
+		let [eventSlave] = this.actors.map(a => getSlave(a));
+		const {
+			He, he, His, his, him, himself
+		} = getPronouns(eventSlave);
+		const {
+			HeU, heU, hisU, himU, himselfU
+		} = getNonlocalPronouns(V.seeDicks).appendSuffix('U');
+		const belly = bellyAdjective(eventSlave);
+		const targetJobs = ["be a servant", "be a subordinate slave", "get milked", "learn in the schoolroom", "please you", "rest in the spa", "rest", "serve in the club", "serve the public", "take classes", "whore", "work a glory hole", "work as a servant", "work in the brothel"];
+
+		/** @type {App.Entity.PlayerState} */
+		let PC = V.PC;
+
+		V.nextLink = "Next Week";
+
+		App.Events.drawEventArt(node, eventSlave, "no clothing");
+
+		let t = [];
+
+		t.push(App.UI.DOM.slaveDescriptionDialog(eventSlave));
+		t.push(`is a horny bitch, and ${he} isn't particularly picky about how ${he} gets off. Since other slaves are not allowed to resist ${his} little molestations, ${he}'s taken to haunting the kitchen around mealtimes. Since everyone has to suck their meals out of the phallic food dispensers, every slave has to spend some minutes of every day in the kitchen with their face to the wall and their rear defenseless. ${eventSlave.slaveName} does ${his} best to arrive as early as possible and eat as rapidly as possible so ${he} can then play with anyone who's slower to finish.`);
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		t.push(`You decide to stop by to see ${his} method at work. By the time you arrive, ${he}'s already eaten and orgasmed at least once. As you spectate, ${he}`);
+		if (canPenetrate(eventSlave) && eventSlave.prostate > 0) {
+			t.push(`pushes a couple of fingers up ${his} own ass to use prostate stimulation to force ${himself} hard again, and once this is accomplished, happily turns to select a slow eater to fuck.`);
+		} else {
+			t.push(`languidly plays with ${himself}, running ${his} ${hasBothArms(eventSlave) ? "hands" : "hand"} over the various vulnerable butts before picking a victim to roughly finger fuck.`);
+		}
+		App.Events.addParagraph(node, t);
+		t = [];
+
+		App.Events.addResponses(node, [
+			new App.Events.Result(`Improve on ${his} abusive little game`, improve),
+			canDoAnal(eventSlave)
+				? new App.Events.Result("The rule about consent works both ways", turnTables, analVirginWarning())
+				: new App.Events.Result()
+		]);
+
+		function improve() {
+			t = [];
+			let virgins, chaste, anusOnly, doubleAnal, pussyOnly, doubleVaginal, subLove;
+
+			t.push(`You leave for the moment, but appear at the next mealtime before even ${he} does. You shut off all the phallic feeders but one, and make an announcement. You decree that just for this one meal, ${eventSlave.slaveName} is to lie in front of the one functional feeder, ${canPenetrate(eventSlave) ? `${his} cock in the air` : `with a dildo jutting up from ${his} crotch`} in order to eat, each slave must ride ${eventSlave.slaveName} for as long as it takes to suck down their ${eventSlave.belly >= 5000 ? `meal (given the ${belly} mass jutting from ${his} middle, it should be quite the sight)` : "meal"}.`);
+			t.push(`${eventSlave.slaveName} gapes at you openmouthed for a long moment, looking like ${he} wants to <span class="hotpink">declaim a speech of thanks,</span> but you cut ${him} off by pointing peremptorily at ${his} place; ${he} almost runs over, ${his} <span class="mediumaquamarine">trust in your whim</span> nearly absolute. But the true shape of your plan isn't apparent yet. When the first slave seats ${himselfU} on ${eventSlave.slaveName} and starts sucking off the dispenser dildo, you crouch behind ${himU} and insert yourself as well; the bitch is now airtight. ${HeU} gags and splutters with the discomfort but keeps working away until ${heU} gets ${hisU} meal down and struggles off the three phalluses ${heU} has in ${himU}. The next in line gets to it with some trepidation: and so it goes, slave by slave.`);
+
+			V.slaves.forEach(function(s) {
+				if (targetJobs.includes(s.assignment) && hasAnyLegs(s) && s.relationship !== -3 && s.ID !== eventSlave.ID) {
+					if (canDoAnal(s) && canDoVaginal(s)) {
+						if (s.anus === 0 && s.vagina === 0) {
+							virgins = true;
+						} else if (s.vagina === 0) {
+							virgins = true;
+							anusOnly = true;
+							seX(s, "anal", eventSlave, "penetrative");
+							seX(s, "anal", PC, "penetrative");
+							if (canImpreg(s, PC)) {
+								t.push(knockMeUp(s, 5, 1, -1, 1));
+							}
+							if (canImpreg(s)) {
+								t.push(knockMeUp(s, 5, 1, eventSlave.ID, 1));
+							}
+							if (s.anus === 1) {
+								s.trust -= 2;
+								doubleAnal = true;
+							}
+						} else if (s.anus === 0) {
+							virgins = true;
+							pussyOnly = true;
+							seX(s, "vaginal", eventSlave, "penetrative");
+							seX(s, "vaginal", PC, "penetrative");
+							if (canImpreg(s, PC)) {
+								t.push(knockMeUp(s, 5, 0, -1, 1));
+							}
+							if (canImpreg(s)) {
+								t.push(knockMeUp(s, 5, 0, eventSlave.ID, 1));
+							}
+							if (s.vagina === 1) {
+								s.trust -= 2;
+								doubleVaginal = true;
+							}
+						} else {
+							seX(s, "anal", eventSlave, "penetrative");
+							seX(s, "vaginal", eventSlave, "penetrative");
+							if (canImpreg(s, PC)) {
+								t.push(knockMeUp(s, 5, 2, -1, 1));
+							}
+							if (canImpreg(s)) {
+								t.push(knockMeUp(s, 5, 1, eventSlave.ID, 1));
+							}
+						}
+					} else if (canDoVaginal(s)) {
+						pussyOnly = true;
+						seX(s, "vaginal", eventSlave, "penetrative");
+						seX(s, "vaginal", PC, "penetrative");
+						if (canImpreg(s, PC)) {
+							t.push(knockMeUp(s, 5, 0, -1, 1));
+						}
+						if (canImpreg(s)) {
+							t.push(knockMeUp(s, 5, 0, eventSlave.ID, 1));
+						}
+						if (s.vagina === 1) {
+							s.trust -= 2;
+							doubleVaginal = true;
+						}
+					} else if (canDoAnal(s)) {
+						anusOnly = true;
+						seX(s, "anal", eventSlave, "penetrative");
+						seX(s, "anal", PC, "penetrative");
+						if (canImpreg(s, PC)) {
+							t.push(knockMeUp(s, 5, 1, -1, 1));
+						}
+						if (canImpreg(s)) {
+							t.push(knockMeUp(s, 5, 1, eventSlave.ID, 1));
+						}
+						if (s.anus === 1) {
+							s.trust -= 2;
+							doubleAnal = true;
+						}
+					} else {
+						chaste = true;
+					}
+					if (s.fetishKnown === 1 && s.fetish === "submissive") {
+						s.devotion++;
+						subLove = true;
+					}
+				}
+			});
+			if (virgins) {
+				t.push(`You let your virgins ${chaste ? "and chaste slaves" : ""} hold their thighs tight together for a little frottage rather than deflowering their holes like this.`);
+			} else if (chaste) {
+				t.push(`Your chaste slaves hold their thighs tight together for a little frottage should they lack the ability to accommodate.`);
+			}
+			if (anusOnly) {
+				t.push(`Those slaves without pussies are forced to take both you and ${eventSlave.slaveName} up the butt at once.`);
+				if (doubleAnal) {
+					t.push(`Experienced assholes can take the strain just fine, but your tighter-assed slaves are <span class="gold">frightened</span> by the anal pain they suffer.`);
+				}
+			}
+			if (pussyOnly) {
+				t.push(`Slaves with off-limit assholes quickly find both you and ${eventSlave.slaveName} delving the depths of their cunts.`);
+				if (doubleVaginal) {
+					t.push(`Experienced sluts can take the double penetration just fine, but your tighter slaves are <span class="gold">frightened</span> by the amount of stretching they are forced to undergo.`);
+				}
+			}
+			if (subLove) {
+				t.push(`Your subs on the other hand think this is <span class="hotpink">a meal worth remembering.</span>`);
+			}
+
+			eventSlave.devotion += 4;
+			eventSlave.trust += 4;
+			return t;
+		}
+
+		function turnTables() {
+			t = [];
+
+			t.push(`You tell ${eventSlave.slaveName} to get up on the kitchen counter and spread ${his} legs. ${He} catches something in the tone of your voice and looks frightened, but obeys. You then make several conversational observations, as though for no particular reason, to the rest of the slaves. First, you point out, the consent rule works for everyone: they, hypothetically, would not need to ask ${eventSlave.slaveName} ${his} permission to fuck ${his} ass, just like ${he} doesn't have to ask their permission to molest them during meals. (At this ${eventSlave.slaveName}'s fear deepens into obvious <span class="gold">terror.</span>) Second, you have decided ${eventSlave.slaveName} will not be getting down off the counter until everyone's done with their meals — and anything else they wish to do in the kitchen. And third, you conclude, any number of large strap-ons and dildos can be found in the kitchen cabinets. There is a general rush for these; you tell ${eventSlave.slaveName}, whose`);
+			if (eventSlave.lips > 40) {
+				t.push(`bimbo`);
+			} else if (eventSlave.lips > 20) {
+				t.push(`big`);
+			} else if (eventSlave.lips > 10) {
+				t.push(`soft`);
+			}
+			t.push(`lips are quivering, to come see you after ${he}'s done here. About an hour later, ${he} hobbles into your office, and you tell ${him} to show you ${his} anus. ${His} longtime targets for mealtime molestation were not merciful; they weren't stupid enough to damage ${him}, but that's one well-gaped butthole. You fuck it anyway, and ${he}'s too tired and desensitized to care. Your less trusting slaves carefully consider the rules, and realize that there's a <span class="mediumaquamarine">built-in mechanism for correction:</span> if anyone gets too rapey, they can rape them right back.`);
+			t.push(VCheck.Anal(20, eventSlave));
+
+			if (canGetPregnant(eventSlave) && eventSlave.mpreg === 1) {
+				const pregSources = V.slaves.map(s => canImpreg(eventSlave, s) && targetJobs.includes(s.assignment) && s.ID != eventSlave.ID);
+				if (pregSources.length > 0) {
+					t.push(knockMeUp(eventSlave, 50, 1, pregSources.pluck(), 1));
+				}
+			}
+			V.slaves.forEach(function(s) { if (s.trust < 50 && targetJobs.includes(s.assignment) && s.ID !== eventSlave.ID) { s.trust += 4; } });
+			if (eventSlave.anus == 1) {
+				t.push(`Poor ${eventSlave.slaveName}'s butthole <span class="lime">isn't quite the same</span> afterward.`);
+				eventSlave.anus += 1;
+			}
+			eventSlave.trust -= 5;
+			return t;
+		}
+
+		function analVirginWarning() {
+			if (eventSlave.anus === 0) {
+				return `This option will take ${his} anal virginity`;
+			}
+		}
+	}
+};
diff --git a/src/events/randomEvent.js b/src/events/randomEvent.js
index 12d890f2640..2367227ece8 100644
--- a/src/events/randomEvent.js
+++ b/src/events/randomEvent.js
@@ -21,6 +21,7 @@ App.Events.getIndividualEvents = function() {
 		new App.Events.RESSFrighteningDick(),
 		new App.Events.RESSHotPC(),
 		new App.Events.RESSImScared(),
+		new App.Events.RESSKitchenMolestation(),
 		new App.Events.RESSLazyEvening(),
 		new App.Events.RESSMoistPussy(),
 		new App.Events.RESSMuscles(),
diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js
index 70aafb0a01a..69ab6c7eb67 100644
--- a/src/js/eventSelectionJS.js
+++ b/src/js/eventSelectionJS.js
@@ -374,11 +374,6 @@ globalThis.generateRandomEventPoolStandard = function(eventSlave) {
 									V.RETSevent.push("sadistic description");
 								}
 							}
-							if (V.cockFeeder > 0) {
-								if (canPenetrate(eventSlave) || eventSlave.dick === 0) {
-									V.RESSevent.push("kitchen molestation");
-								}
-							}
 						}
 						if (V.REIfYouEnjoyItSubIDs.length > 0) {
 							V.RETSevent.push("if you enjoy it");
@@ -1680,11 +1675,6 @@ globalThis.generateRandomEventPoolServant = function(eventSlave) {
 									V.RETSevent.push("sadistic description");
 								}
 							}
-							if (V.cockFeeder > 0) {
-								if (canPenetrate(eventSlave) || eventSlave.dick === 0) {
-									V.RESSevent.push("kitchen molestation");
-								}
-							}
 						}
 						if (V.REIfYouEnjoyItSubIDs.length > 0) {
 							V.RETSevent.push("if you enjoy it");
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 31515f9addf..52ef8aa7323 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" "bed snuggle" "bondage gear" "bonded love" "breast expansion blues" "confident tanning" "devoted exhibition" "devoted lotion" "desperate null" "devoted nympho" "devoted shortstack" "extreme aphrodisiacs" "fearful balls" "fucktoy tribbing" "gaped asshole" "happy dance" "heavy piercing" "huge naturals" "huge tits" "hugely pregnant" "ignorant horny" "implant inspection" "kitchen molestation" "language lesson" "mindbroken morning" "modest clothes" "mods please" "old PC age difference" "orchiectomy please" "PA flirting" "penitent" "permitted masturbation" "plimb help" "rebellious arrogant" "resistant gelding" "resistant shower" "resting amp" "restricted profession" "restricted smart" "sexy succubus" "shaped areolae" "shift masturbation" "shift sleep" "shower slip" "slave clit on slave" "slave dick huge" "slave dick on slave" "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" "bed snuggle" "bondage gear" "bonded love" "breast expansion blues" "confident tanning" "devoted exhibition" "devoted lotion" "desperate null" "devoted nympho" "devoted shortstack" "extreme aphrodisiacs" "fearful balls" "fucktoy tribbing" "gaped asshole" "happy dance" "heavy piercing" "huge naturals" "huge tits" "hugely pregnant" "ignorant horny" "implant inspection" "language lesson" "mindbroken morning" "modest clothes" "mods please" "old PC age difference" "orchiectomy please" "PA flirting" "penitent" "permitted masturbation" "plimb help" "rebellious arrogant" "resistant gelding" "resistant shower" "resting amp" "restricted profession" "restricted smart" "sexy succubus" "shaped areolae" "shift masturbation" "shift sleep" "shower slip" "slave clit on slave" "slave dick huge" "slave dick on slave" "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">>
 	<<set $activeSlave.clothes = "no clothing">>
 <<case "whore rebellious">>
 	/* this scene states they are wearing "thick, durable latex with temperature regulation and anchor points for restraint" no matter what they are assigned to wear. */
@@ -2399,17 +2399,6 @@ To go by $his behavior, the likelihood that $he's actually eager to <<if $PC.dic
 $desc
 has run through the prescribed motions of a normal inspection, and you've reached the part of the routine where you usually ask the slave a few questions, give $him a few orders, or fuck $him. $His <<if canSee($activeSlave)>><<= App.Desc.eyesColor($activeSlave)>> are watching you closely<<else>>face is centered on you<</if>>, and $he's <<if canHear($activeSlave)>>listening carefully<<else>>waiting patiently<</if>> for direction. This is probably due to linguistic anxiety: $he can understand the most straightforward commands, but giving $him orders is often an exercise in <<if canSee($activeSlave)>>pointing and gesturing, or when that fails, simply<<else>>frustration, ending with you simply<</if>> pushing and pulling $his usually-compliant body into the proper place.
 
-<<case "kitchen molestation">>
-
-<<= App.UI.slaveDescriptionDialog($activeSlave)>> is a horny bitch, and $he isn't particularly picky about how $he gets off. Since other slaves are not allowed to resist $his little molestations, $he's taken to haunting the kitchen around mealtimes. Since everyone has to suck their meals out of the phallic food dispensers, every slave has to spend some minutes of every day in the kitchen with their face to the wall and their rear defenseless. $activeSlave.slaveName does $his best to arrive as early as possible and eat as rapidly as possible so $he can then play with anyone who's slower to finish.
-<br><br>
-You decide to stop by to see $his method at work. By the time you arrive, $he's already eaten and orgasmed at least once. As you spectate, $he
-<<if canPenetrate($activeSlave) && $activeSlave.prostate > 0>>
-	pushes a couple of fingers up $his own ass to use prostate stimulation to force $himself hard again, and once this is accomplished, happily turns to select a slow eater to fuck.
-<<else>>
-	languidly plays with $himself, running $his hand<<if hasBothArms($activeSlave)>>s<</if>> over the various vulnerable butts before picking a victim to roughly finger fuck.
-<</if>>
-
 <<case "forbidden masturbation">>
 
 <<if $assistant.personality > 0>>
@@ -12926,160 +12915,6 @@ brought in to you. This time <<= App.UI.slaveDescriptionDialog($activeSlave)>> h
 	<</replace>>
 <</link>>
 
-<<case "kitchen molestation">>
-
-<<link "Improve on $his abusive little game">>
-	<<setNonlocalPronouns $seeDicks>>
-	<<replace "#result">>
-		<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
-		<<set _targetJobs = ["be a servant", "be a subordinate slave", "get milked", "learn in the schoolroom", "please you", "rest in the spa", "rest", "serve in the club", "serve the public", "take classes", "whore", "work a glory hole", "work as a servant", "work in the brothel"]>>
-		You leave for the moment, but appear at the next mealtime before even $he does. You shut off all the phallic feeders but one, and make an announcement. You decree that just for this one meal, $activeSlave.slaveName is to lie in front of the one functional feeder,
-		<<if canPenetrate($activeSlave)>>as
-			$his cock in the air;
-		<<else>>
-			with a dildo jutting up from $his crotch;
-		<</if>>
-		in order to eat, each slave must ride $activeSlave.slaveName for as long as it takes to suck down their meal<<if $activeSlave.belly >= 5000>> (given the _belly mass jutting from $his middle, it should be quite the sight)<</if>>. $activeSlave.slaveName gapes at you openmouthed for a long moment, looking like $he wants to @@.hotpink;declaim a speech of thanks,@@ but you cut $him off by pointing peremptorily at $his place; $he almost runs over, $his @@.mediumaquamarine;trust in your whim@@ nearly absolute. But the true shape of your plan isn't apparent yet. When the first slave seats _himselfU on $activeSlave.slaveName and starts sucking off the dispenser dildo, you crouch behind _himU and insert yourself as well; the bitch is now airtight. _HeU gags and splutters with the discomfort but keeps working away until _heU gets _hisU meal down and struggles off the three phalluses _heU has in _himU. The next in line gets to it with some trepidation: and so it goes, slave by slave.
-		<<for _ress = 0; _ress < $slaves.length; _ress++>>
-			<<if _targetJobs.includes($slaves[_ress].assignment) && hasAnyLegs($slaves[_ress]) && $slaves[_ress].relationship != -3 && _ress.ID != $activeSlave.ID>>
-				<<if canDoAnal($slaves[_ress]) && canDoVaginal($slaves[_ress])>>
-					<<if $slaves[_ress].anus == 0 && $slaves[_ress].vagina == 0>>
-						<<set _virgins = 1>>
-					<<elseif $slaves[_ress].vagina == 0>>
-						<<set _virgins = 1, _anusOnly = 1>>
-						<<run seX($slaves[_ress], "anal", $activeSlave, "penetrative")>>
-						<<run seX($slaves[_ress], "anal", $PC, "penetrative")>>
-						<<if canImpreg($slaves[_ress], $PC)>>
-							<<= knockMeUp($slaves[_ress], 5, 1, -1, 1)>>
-						<</if>>
-						<<if canImpreg($slaves[_ress])>>
-							<<= knockMeUp($slaves[_ress], 5, 1, $activeSlave.ID, 1)>>
-						<</if>>
-						<<if ($slaves[_ress].anus == 1)>>
-							<<set $slaves[_ress].trust -= 2>>
-							<<set _doubleAnal = 1>>
-						<</if>>
-					<<elseif $slaves[_ress].anus == 0>>
-						<<set _virgins = 1, _pussyOnly = 1>>
-						<<run seX($slaves[_ress], "vaginal", $activeSlave, "penetrative")>>
-						<<run seX($slaves[_ress], "vaginal", $PC, "penetrative")>>
-						<<if canImpreg($slaves[_ress], $PC)>>
-							<<= knockMeUp($slaves[_ress], 5, 0, -1, 1)>>
-						<</if>>
-						<<if canImpreg($slaves[_ress])>>
-							<<= knockMeUp($slaves[_ress], 5, 0, $activeSlave.ID, 1)>>
-						<</if>>
-						<<if ($slaves[_ress].vagina == 1)>>
-							<<set $slaves[_ress].trust -= 2>>
-							<<set _doubleVaginal = 1>>
-						<</if>>
-					<<else>>
-						<<run seX($slaves[_ress], "anal", $activeSlave, "penetrative")>>
-						<<run seX($slaves[_ress], "vaginal", $activeSlave, "penetrative")>>
-						<<if canImpreg($slaves[_ress], $PC)>>
-							<<= knockMeUp($slaves[_ress], 5, 2, -1, 1)>>
-						<</if>>
-						<<if canImpreg($slaves[_ress])>>
-							<<= knockMeUp($slaves[_ress], 5, 1, $activeSlave.ID, 1)>>
-						<</if>>
-					<</if>>
-				<<elseif canDoVaginal($slaves[_ress])>>
-					<<set _pussyOnly = 1>>
-					<<run seX($slaves[_ress], "vaginal", $activeSlave, "penetrative")>>
-					<<run seX($slaves[_ress], "vaginal", $PC, "penetrative")>>
-					<<if canImpreg($slaves[_ress], $PC)>>
-						<<= knockMeUp($slaves[_ress], 5, 0, -1, 1)>>
-					<</if>>
-					<<if canImpreg($slaves[_ress])>>
-						<<= knockMeUp($slaves[_ress], 5, 0, $activeSlave.ID, 1)>>
-					<</if>>
-					<<if ($slaves[_ress].vagina == 1)>>
-						<<set $slaves[_ress].trust -= 2>>
-						<<set _doubleVaginal = 1>>
-					<</if>>
-				<<elseif canDoAnal($slaves[_ress])>>
-					<<set _anusOnly = 1>>
-					<<run seX($slaves[_ress], "anal", $activeSlave, "penetrative")>>
-					<<run seX($slaves[_ress], "anal", $PC, "penetrative")>>
-					<<if canImpreg($slaves[_ress], $PC)>>
-						<<= knockMeUp($slaves[_ress], 5, 1, -1, 1)>>
-					<</if>>
-					<<if canImpreg($slaves[_ress])>>
-						<<= knockMeUp($slaves[_ress], 5, 1, $activeSlave.ID, 1)>>
-					<</if>>
-					<<if ($slaves[_ress].anus == 1)>>
-						<<set $slaves[_ress].trust -= 2>>
-						<<set _doubleAnal = 1>>
-					<</if>>
-				<<else>>
-					<<set _chaste = 1>>
-				<</if>>
-				<<if ($slaves[_ress].fetishKnown == 1) && ($slaves[_ress].fetish == "submissive")>>
-					<<set $slaves[_ress].devotion++>>
-					<<set _subLove = 1>>
-				<</if>>
-			<</if>>
-		<</for>>
-		<<if def _virgins>>
-			You let your virgins<<if def _chaste>> and chaste slaves<</if>> hold their thighs tight together for a little frottage rather than deflowering their holes like this.
-		<<elseif def _chaste>>
-			Your chaste slaves hold their thighs tight together for a little frottage should they lack the ability to accommodate.
-		<</if>>
-		<<if def _anusOnly>>
-			Those slaves without pussies are forced to take both you and $activeSlave.slaveName up the butt at once.
-			<<if def _doubleAnal>>
-				Experienced assholes can take the strain just fine, but your tighter-assed slaves are @@.gold;frightened@@ by the anal pain they suffer.
-			<</if>>
-		<</if>>
-		<<if def _pussyOnly>>
-			Slaves with off-limit assholes quickly find both you and $activeSlave.slaveName delving the depths of their cunts.
-			<<if def _doubleVaginal>>
-				Experienced sluts can take the double penetration just fine, but your tighter slaves are @@.gold;frightened@@ by the amount of stretching they are forced to undergo.
-			<</if>>
-		<</if>>
-		<<if def _subLove>>
-			Your subs on the other hand think this is @@.hotpink;a meal worth remembering.@@
-		<</if>>
-	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave)>>
-	<br><<link "The rule about consent works both ways">>
-		<<replace "#result">>
-			<<set _targetJobs = ["be a servant", "be a subordinate slave", "get milked", "learn in the schoolroom", "please you", "rest in the spa", "rest", "serve in the club", "serve the public", "take classes", "whore", "work a glory hole", "work as a servant", "work in the brothel"]>>
-			You tell $activeSlave.slaveName to get up on the kitchen counter and spread $his legs. $He catches something in the tone of your voice and looks frightened, but obeys. You then make several conversational observations, as though for no particular reason, to the rest of the slaves. First, you point out, the consent rule works for everyone: they, hypothetically, would not need to ask $activeSlave.slaveName $his permission to fuck $his ass, just like $he doesn't have to ask their permission to molest them during meals. (At this $activeSlave.slaveName's fear deepens into obvious @@.gold;terror.@@) Second, you have decided $activeSlave.slaveName will not be getting down off the counter until everyone's done with their meals — and anything else they wish to do in the kitchen. And third, you conclude, any number of large strap-ons and dildos can be found in the kitchen cabinets. There is a general rush for these; you tell $activeSlave.slaveName, whose
-			<<if $activeSlave.lips > 40>>
-				bimbo
-			<<elseif $activeSlave.lips > 20>>
-				big
-			<<elseif $activeSlave.lips > 10>>
-				soft
-			<</if>>
-			lips are quivering, to come see you after $he's done here. About an hour later, $he hobbles into your office, and you tell $him to show you $his anus. $His longtime targets for mealtime molestation were not merciful; they weren't stupid enough to damage $him, but that's one well-gaped butthole. You fuck it anyway, and $he's too tired and desensitized to care. Your less trusting slaves carefully consider the rules, and realize that there's a @@.mediumaquamarine;built-in mechanism for correction:@@ if anyone gets too rapey, they can rape them right back.
-			<<set $activeSlave.trust -= 5>>
-			<<= VCheck.Anal(20)>>
-			<<if canGetPregnant($activeSlave) && $activeSlave.mpreg == 1>>
-				<<set _sourceSeed = random(0,$slaves.length-1)>>
-				<<for _ress = _sourceSeed + 1; _ress != _sourceSeed; _ress++>>
-					<<if _ress == $slaves.length>><<set _ress = 0>><</if>> /* wrap around */
-					<<if canImpreg($activeSlave, $slaves[_ress]) && _targetJobs.includes($slaves[_ress].assignment) && $slaves[_ress].ID != $activeSlave.ID>>
-						<<= knockMeUp($activeSlave, 50, 1, $slaves[_ress].ID, 1)>>
-						<<break>>
-					<</if>>
-				<</for>>
-			<</if>>
-			<<for _ress = 0; _ress < $slaves.length; _ress++>>
-				<<if ($slaves[_ress].trust < 50) && _targetJobs.includes($slaves[_ress].assignment)>>
-					<<set $slaves[_ress].trust++>>
-				<</if>>
-			<</for>>
-			<<if $activeSlave.anus == 1>>
-				Poor $activeSlave.slaveName's butthole @@.lime;isn't quite the same@@ afterward.
-				<<set $activeSlave.anus += 1>>
-			<</if>>
-		<</replace>>
-	<</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
-<</if>>
-
 <<case "forbidden masturbation">>
 
 <<link "Let $him earn relief">>
-- 
GitLab