From d83a2d94a85be9c7fbbc77dc51ad87574c170743 Mon Sep 17 00:00:00 2001
From: DCoded <dicoded@email.com>
Date: Sun, 18 Apr 2021 10:29:16 -0400
Subject: [PATCH] Removed unneeded and redundant code

---
 src/npc/interaction/fPCImpreg.js | 608 +++++++------------------------
 1 file changed, 129 insertions(+), 479 deletions(-)

diff --git a/src/npc/interaction/fPCImpreg.js b/src/npc/interaction/fPCImpreg.js
index 1d61f6b9d70..6966038bd8f 100644
--- a/src/npc/interaction/fPCImpreg.js
+++ b/src/npc/interaction/fPCImpreg.js
@@ -5,10 +5,40 @@
 App.Interact.fPCImpreg = function(slave) {
 	const frag = new DocumentFragment();
 
+	const {He, His, he, his, him, himself} = getPronouns(slave);
+
+	const pregnancyFetish = slave.fetish === 'pregnancy' && slave.fetishStrength > 60 && slave.fetishKnown;
+	const submissive = slave.fetish === 'submissive' && slave.fetishStrength > 60 && slave.fetishKnown;
+	const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
+	const hole = slave.mpreg ? `asshole` : `pussy`;
+
+	const accepting = slave.devotion > 20;
+	const hesitant = slave.devotion >= -20 && slave.devotion <= 20;
+	const resistant = slave.devotion < -20;
+
+	const loseVirginity = () => {
+		if (slave.mpreg) {
+			slave.anus = 1;
+		} else {
+			slave.vagina = 1;
+		}
+	};
+
+	let fillHim = '';
+	let firstTime = '';
+
+	if (V.PC.prostate > 1) {
+		fillHim = ` filling ${him} until ${his} belly is distended and wobbling with your cum`;
+	} else if (V.PC.prostate > 0) {
+		fillHim = ` pouring into ${him} until ${he} is stuffed with your cum`;
+	} else if (V.PC.balls > 8) {
+		fillHim = ` pouring into ${him}`;
+	}
+
 	frag.append(
-		intro(slave),
-		consummation(slave),
-		effects(slave),
+		intro(),
+		consummation(),
+		effects(),
 	);
 
 	addPartner(slave, -1);
@@ -16,10 +46,9 @@ App.Interact.fPCImpreg = function(slave) {
 
 	return frag;
 
-	/** @param {App.Entity.SlaveState} slave */
-	function introAnus(slave) {
-		const {his, him} = getPronouns(slave);
 
+
+	function introAnus() {
 		const asshole = slave.geneticQuirks.superfetation === 2 && slave.pregKnown
 			? `asshole and put another baby in ${him}`
 			: `asshole`;
@@ -37,10 +66,7 @@ App.Interact.fPCImpreg = function(slave) {
 		}
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function introVagina(slave) {
-		const {his} = getPronouns(slave);
-
+	function introVagina() {
 		if (slave.vagina > 2) {
 			return `fuck ${his} gaping, fertile cunt.`;
 		} else if (slave.vagina === 2) {
@@ -54,10 +80,7 @@ App.Interact.fPCImpreg = function(slave) {
 		}
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function getVaginaTat(slave) {
-		const {his, him} = getPronouns(slave);
-
+	function getVaginaTat() {
 		if (slave.vaginaTat === "tribal patterns") {
 			return `The tattoos on ${his} abdomen certainly draw attention there.`;
 		} else if (slave.vaginaTat === "scenes") {
@@ -69,10 +92,7 @@ App.Interact.fPCImpreg = function(slave) {
 		}
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function getClit(slave) {
-		const {His} = getPronouns(slave);
-
+	function getClit() {
 		if (slave.clit === 1) {
 			return `${His} big clit ${slave.foreskin ? `peeks out from under its hood` : `can't be missed`}.`;
 		} else if (slave.clit > 1) {
@@ -80,10 +100,7 @@ App.Interact.fPCImpreg = function(slave) {
 		}
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function getPiercings(slave) {
-		const {His, him} = getPronouns(slave);
-
+	function getPiercings() {
 		if (slave.vaginaPiercing > 1) {
 			return `${His} pierced lips and clit have ${him} nice and wet.`;
 		} else if (slave.vaginaPiercing === 1) {
@@ -91,83 +108,49 @@ App.Interact.fPCImpreg = function(slave) {
 		}
 	}
 
-	/**
-	 * @param {App.Entity.SlaveState} slave
-	 * @returns {DocumentFragment}
-	 */
-	function intro(slave) {
-		const frag = new DocumentFragment();
-
-		const {him, his} = getPronouns(slave);
-
+	function intro() {
 		const text = [];
 
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-
 		text.push(`You call ${him} over so you can`);
 
 		if (slave.mpreg) {
-			text.push(introAnus(slave));
+			text.push(introAnus());
 
 			text.push(`The crest on ${his} abdomen eagerly awaits a womb stuffed with cum, and who are you to deny its request?`);
 		} else {
-			text.push(introVagina(slave));
+			text.push(introVagina());
 
 			if (superfetation) {
 				text.push(`You plan on putting another baby in ${him}.`);
 			}
 
 			if (slave.vaginaTat) {
-				text.push(getVaginaTat(slave));
+				text.push(getVaginaTat());
 			}
 
 			if (slave.clit > 0) {
-				text.push(getClit(slave));
+				text.push(getClit());
 			}
 
 			if (slave.vaginaPiercing > 0) {
-				text.push(getPiercings(slave));
+				text.push(getPiercings());
 			}
 		}
 
-		frag.append(text.join(' '));
-
-		return frag;
+		return text.join(' ');
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationPregnancyFetishVirgin(slave) {
+	function consummationPregnancyFetishVirgin() {
 		const frag = new DocumentFragment();
-		const devotionSpan = document.createElement('span');
-		const virginityLossSpan = document.createElement('span');
-
-		const {He, His, he, his, him} = getPronouns(slave);
+		const devotionSpan = App.UI.DOM.makeElement('span', `increases ${his} devotion to you.`, ['devotion', 'inc']);
+		const virginityLossSpan = App.UI.DOM.makeElement('span', `${His} ${hole} has been broken in, and there's a good chance ${he}'s ${superfetation ? `got another bun in the oven` : `pregnant`}.`, ['virginity', 'loss']);
 
 		const text = [];
 
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-
-		let fillHim = '';
-		let firstTime = '';
-
-		if (V.PC.prostate > 1) {
-			fillHim = ` filling ${him} until ${his} belly is distended and wobbling with your cum`;
-		} else if (V.PC.prostate > 0) {
-			fillHim = ` pouring into ${him} until ${he} is stuffed with your cum`;
-		} else if (V.PC.balls > 8) {
-			fillHim = ` pouring into ${him}`;
-		}
-
 		if (isSexuallyPure(slave)) {
 			firstTime = `, knowing that ${his} first time will always be special to ${him}`;
 		}
 
-		devotionSpan.classList.add('devotion', 'inc');
-		devotionSpan.textContent = `increases ${his} devotion to you.`;
-
-		virginityLossSpan.classList.add('virginity', 'loss');
-		virginityLossSpan.textContent = `${His} ${slave.mpreg ? `asshole` : `pussy`} has been broken in, and there's a good chance ${he}'s ${superfetation ? `got another bun in the oven` : `pregnant`}.`;
-
 		text.push(` ${He} cries with joy and presents ${his} virgin`);
 
 		if (slave.mpreg) {
@@ -188,39 +171,19 @@ App.Interact.fPCImpreg = function(slave) {
 
 		slave.devotion += 15;
 
-		if (slave.mpreg) {
-			slave.anus = 1;
-		} else {
-			slave.vagina = 1;
-		}
+		loseVirginity();
 
 		frag.append(text.join(' '), devotionSpan, virginityLossSpan);
 
 		return frag;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationPregnancyFetishNonvirgin(slave) {
+	function consummationPregnancyFetishNonvirgin() {
 		const frag = new DocumentFragment();
-		const devotionSpan = document.createElement('span');
-
-		const {He, he, his, him} = getPronouns(slave);
+		const devotionSpan = App.UI.DOM.makeElement('span', `increases ${his} devotion to you.`, ['devotion', 'inc']);
 
 		const text = [];
 
-		let fillHim = '';
-
-		if (V.PC.prostate > 1) {
-			fillHim = ` filling ${him} until ${his} belly is distended and wobbling with your cum`;
-		} else if (V.PC.prostate > 0) {
-			fillHim = ` pouring into ${him} until ${he} is stuffed with your cum`;
-		} else if (V.PC.balls > 8) {
-			fillHim = ` pouring into ${him}`;
-		}
-
-		devotionSpan.classList.add('devotion', 'inc');
-		devotionSpan.textContent = `increases ${his} devotion to you.`;
-
 		text.push(`${He} cries with joy and presents ${his} fertile`);
 
 		if (slave.mpreg) {
@@ -246,164 +209,67 @@ App.Interact.fPCImpreg = function(slave) {
 		return frag;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationAcceptingVirgin(slave) {
+	function consummationAcceptingVirgin() {
 		const frag = new DocumentFragment();
-		const devotionSpan = document.createElement('span');
-		const virginityLossSpan = document.createElement('span');
-
-		const {He, His, he, his, him} = getPronouns(slave);
+		const devotionSpan = App.UI.DOM.makeElement('span', `increases ${his} devotion to you.`, ['devotion', 'inc']);
+		const virginityLossSpan = App.UI.DOM.makeElement('span', `${His} ${hole} has been broken in, and there's a good chance ${he}'s ${superfetation ? `got another bun in the oven` : `pregnant`}.`, ['virginity', 'loss']);
 
 		const text = [];
 
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-		const hole = slave.mpreg ? `asshole` : `pussy`;
-
-		let fillHim = '';
-
-		if (V.PC.prostate > 1) {
-			fillHim = ` filling ${him} until ${his} belly is distended and wobbling with your cum`;
-		} else if (V.PC.prostate > 0) {
-			fillHim = ` pouring into ${him} until ${he} is stuffed with your cum`;
-		} else if (V.PC.balls > 8) {
-			fillHim = ` pouring into ${him}`;
-		}
-
-		devotionSpan.classList.add('devotion', 'inc');
-		devotionSpan.textContent = `increases ${his} devotion to you.`;
-
-		virginityLossSpan.classList.add('virginity', 'loss');
-		virginityLossSpan.textContent = `${His} ${hole} has been broken in, and there's a good chance ${he}'s ${superfetation ? `got another bun in the oven` : `pregnant`}.`;
-
 		text.push(`${He} accepts your orders without comment and presents ${his} virgin ${hole} for fertilization. ${He} gasps in shock when ${he} feels your hot seed${fillHim}. ${He} spends the rest of the day struggling with roiling emotions. Since ${he} is already well broken${superfetation ? ` and pregnant` : ``}, this new connection with ${his} ${getWrittenTitle(slave)}`);
 
 		slave.devotion += 10;
 
-		if (slave.mpreg) {
-			slave.anus = 1;
-		} else {
-			slave.vagina = 1;
-		}
+		loseVirginity();
 
 		frag.append(text.join(' '), devotionSpan, virginityLossSpan);
 
 		return frag;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationHesitantVirgin(slave) {
+	function consummationHesitantVirgin() {
 		const frag = new DocumentFragment();
-		const devotionSpan = document.createElement('span');
-		const virginityLossSpan = document.createElement('span');
-
-		const {He, His, he, his} = getPronouns(slave);
+		const devotionSpan = App.UI.DOM.makeElement('span', `increases ${his} devotion to you.`, ['devotion', 'inc']);
+		const virginityLossSpan = App.UI.DOM.makeElement('span', `${His} ${hole} has been broken in.`, ['virginity', 'loss']);
 
 		const text = [];
 
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-		const hole = slave.mpreg ? `asshole` : `pussy`;
-
-		devotionSpan.classList.add('devotion', 'inc');
-		devotionSpan.textContent = `increases ${his} devotion to you.`;
-
-		virginityLossSpan.classList.add('virginity', 'loss');
-		virginityLossSpan.textContent = `${His} ${hole} has been broken in.`;
-
 		text.push(`${He} is clearly unhappy at losing ${his} pearl of great price to you; this probably isn't what ${he} imagined ${his} first real sex would be like. Worse, ${he} knows ${he}'s fertile and realizes ${superfetation ? `${his} existing pregnancy is not going to stop you from adding another baby to ${his} womb.` : `${he}'ll likely get pregnant.`} Nevertheless, this new connection with ${his} ${getWrittenTitle(slave)}`);
 
 		slave.devotion += 4;
 
-		if (slave.mpreg) {
-			slave.anus = 1;
-		} else {
-			slave.vagina = 1;
-		}
+		loseVirginity();
 
 		frag.append(text.join(' '), devotionSpan, virginityLossSpan);
 
 		return frag;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationResistantVirgin(slave) {
+	function consummationResistantVirgin() {
 		const frag = new DocumentFragment();
-		const devotionSpan = document.createElement('span');
-		const trustSpan = document.createElement('span');
-		const virginityLossSpan = document.createElement('span');
-
-		const {He, His, he, his, him} = getPronouns(slave);
+		const devotionSpan = App.UI.DOM.makeElement('span', `decreases ${his} devotion to you`, ['devotion', 'dec']);
+		const trustSpan = App.UI.DOM.makeElement('span', `fills ${him} with fear.`, ['trust', 'dec']);
+		const virginityLossSpan = App.UI.DOM.makeElement('span', `${His} ${hole} has been broken in.`, ['virginity', 'loss']);
 
 		const text = [];
 
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-		const hole = slave.mpreg ? `asshole` : `pussy`;
-
-		devotionSpan.classList.add('devotion', 'dec');
-		devotionSpan.textContent = `decreases ${his} devotion to you`;
-
-		trustSpan.classList.add('trust', 'dec');
-		trustSpan.textContent = `fills ${him} with fear.`;
-
-		virginityLossSpan.classList.add('virginity', 'loss');
-		virginityLossSpan.textContent = `${His} ${hole} has been broken in.`;
-
 		text.push(`As you anticipated, ${he} refuses to give you ${his} virginity. And as you expected, ${he} is unable to resist you. ${He} cries as you force yourself on ${him}, your cock piercing ${his} fresh, tight hole. Afterwards, ${he} ${hasAnyArms(slave) ? `clutches ${his} ${bellyAdjective(slave)} stomach` : `lies there`} and sobs, horrified by the knowledge that ${superfetation ? `${his} unborn ${slave.pregType === 1 ? `child is` : `children are`} now sharing quarters with ${his} rapist's child.` : `${he}'s probably carrying ${his} rapist's child.`}`);
 
 		slave.devotion -= 5;
 		slave.trust -= 5;
 
-		if (slave.mpreg) {
-			slave.anus = 1;
-		} else {
-			slave.vagina = 1;
-		}
+		loseVirginity();
 
 		frag.append(text.join(' '), devotionSpan, ' and ', trustSpan, virginityLossSpan);
 
 		return frag;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationAmputee(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, he, him, his} = getPronouns(slave);
-
-		const text = [];
-
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-		const hole = slave.mpreg ? `asshole` : `pussy`;
-
-		let fillHim = '';
-
-		if (V.PC.prostate > 1) {
-			fillHim = ` filling ${him} until ${his} belly is distended and wobbling with your cum`;
-		} else if (V.PC.prostate > 0) {
-			fillHim = ` pouring into ${him} until ${he} is stuffed with your cum`;
-		} else if (V.PC.balls > 8) {
-			fillHim = ` pouring into ${him}`;
-		}
-
-		text.push(`You have ${his} limbless torso set on the end of the couch, face-${superfetation ? `up` : `down`}, with ${his} hips up in the air. This way, you get the greatest degree of penetration into ${his} fertile ${hole} you can manage. ${He} moans <<if _superfetation == 1>>openly<<else>>into the cushions<</if>>, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+	function consummationAmputee() {
+		return `You have ${his} limbless torso set on the end of the couch, face-${superfetation ? `up` : `down`}, with ${his} hips up in the air. This way, you get the greatest degree of penetration into ${his} fertile ${hole} you can manage. ${He} moans ${superfetation ? `openly` : `into the cushions`}, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationBigBelly(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, he, him, his} = getPronouns(slave);
-
-		const text = [];
-
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-		const hole = slave.mpreg ? `asshole` : `pussy`;
-
-		let fillHim = '';
-
+	function consummationBigBelly() {
 		if (V.PC.prostate > 1) {
 			fillHim = ` filling ${him} until ${his} the pressure forces it to spray around your shaft`;
 		} else if (V.PC.prostate > 0) {
@@ -412,161 +278,30 @@ App.Interact.fPCImpreg = function(slave) {
 			fillHim = ` pouring into ${him}`;
 		}
 
-		text.push(`Since ${he} already has trouble moving with ${his} ${bellyAdjective(slave)} belly, you just tip ${him} onto it; this leaves ${his} fertile ${hole} exposed and vulnerable. ${He} moans${hasAnyArms(slave) ? ` as ${he} clutches the sides of ${his} stomach` : ``}, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably gotten ${superfetation ? `another bun added to the oven` : `pregnant`}.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+		return `Since ${he} already has trouble moving with ${his} ${bellyAdjective(slave)} belly, you just tip ${him} onto it; this leaves ${his} fertile ${hole} exposed and vulnerable. ${He} moans${hasAnyArms(slave) ? ` as ${he} clutches the sides of ${his} stomach` : ``}, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably gotten ${superfetation ? `another bun added to the oven` : `pregnant`}.`;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationFat(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, he, him, his} = getPronouns(slave);
-
-		const text = [];
-
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-		const hole = slave.mpreg ? `asshole` : `pussy`;
-
-		let fillHim = '';
-
-		if (V.PC.prostate > 1) {
-			fillHim = ` filling ${him} until ${his} belly is distended and wobbling with your cum`;
-		} else if (V.PC.prostate > 0) {
-			fillHim = ` pouring into ${him} until ${he} is stuffed with your cum`;
-		} else if (V.PC.balls > 8) {
-			fillHim = ` pouring into ${him}`;
-		}
-
-		text.push(`You set ${him} down on the couch, face-down, with ${his} hips up in the air. This way, ${he}'s pinned in place by the weight of ${his} own body, and you get the greatest degree of penetration into ${his} fertile ${hole}; after you push into ${his} soft folds enough to reach it, of course. ${He} moans into the cushions, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+	function consummationFat() {
+		return `You set ${him} down on the couch, face-down, with ${his} hips up in the air. This way, ${he}'s pinned in place by the weight of ${his} own body, and you get the greatest degree of penetration into ${his} fertile ${hole}; after you push into ${his} soft folds enough to reach it, of course. ${He} moans into the cushions, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationBigBreasts(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, he, him, his} = getPronouns(slave);
-
-		const text = [];
-
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-		const hole = slave.mpreg ? `asshole` : `pussy`;
-
-		let fillHim = '';
-
-		if (V.PC.prostate > 1) {
-			fillHim = ` filling ${him} until ${his} belly is distended and wobbling with your cum`;
-		} else if (V.PC.prostate > 0) {
-			fillHim = ` pouring into ${him} until ${he} is stuffed with your cum`;
-		} else if (V.PC.balls > 8) {
-			fillHim = ` pouring into ${him}`;
-		}
-
-		text.push(`You set ${him} down on the couch, face-down, with ${his} hips up in the air. This way, ${he}'s pinned in place by the weight of ${his} ridiculous tits, and you get the greatest degree of penetration into ${his} fertile ${hole}. ${He} moans into the cushions, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+	function consummationBigBreasts() {
+		return `You set ${him} down on the couch, face-down, with ${his} hips up in the air. This way, ${he}'s pinned in place by the weight of ${his} ridiculous tits, and you get the greatest degree of penetration into ${his} fertile ${hole}. ${He} moans into the cushions, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationBigButt(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, he, him, his} = getPronouns(slave);
-
-		const text = [];
-
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-		const hole = slave.mpreg ? `asshole` : `pussy`;
-
-		let fillHim = '';
-
-		if (V.PC.prostate > 1) {
-			fillHim = ` filling ${him} until ${his} belly is distended and wobbling with your cum`;
-		} else if (V.PC.prostate > 0) {
-			fillHim = ` pouring into ${him} until ${he} is stuffed with your cum`;
-		} else if (V.PC.balls > 8) {
-			fillHim = ` pouring into ${him}`;
-		}
-
-		text.push(`You set ${him} down on the couch, face-down, with ${his} hips up in the air. This way, ${he}'s stuck under ${his} ridiculous ass, you get an amazingly soft rear to pound, and you get the greatest degree of penetration into ${his} fertile ${hole}. ${He} moans into the cushions, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+	function consummationBigButt() {
+		return `You set ${him} down on the couch, face-down, with ${his} hips up in the air. This way, ${he}'s stuck under ${his} ridiculous ass, you get an amazingly soft rear to pound, and you get the greatest degree of penetration into ${his} fertile ${hole}. ${He} moans into the cushions, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationBigDick(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, he, him, his} = getPronouns(slave);
-
-		const text = [];
-
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-		const hole = slave.mpreg ? `asshole` : `pussy`;
-
-		let fillHim = '';
-
-		if (V.PC.prostate > 1) {
-			fillHim = ` filling ${him} until ${his} belly is distended and wobbling with your cum`;
-		} else if (V.PC.prostate > 0) {
-			fillHim = ` pouring into ${him} until ${he} is stuffed with your cum`;
-		} else if (V.PC.balls > 8) {
-			fillHim = ` pouring into ${him}`;
-		}
-
-		text.push(`You set ${him} down on the couch, face-down, with ${his} hips up in the air. This way, ${he}'s anchored in place by the weight of ${his} ridiculous cock, and you get the greatest degree of penetration into ${his} fertile ${hole}. ${He} moans into the cushions, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+	function consummationBigDick() {
+		return `You set ${him} down on the couch, face-down, with ${his} hips up in the air. This way, ${he}'s anchored in place by the weight of ${his} ridiculous cock, and you get the greatest degree of penetration into ${his} fertile ${hole}. ${He} moans into the cushions, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationBigBalls(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, he, him, his} = getPronouns(slave);
-
-		const text = [];
-
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-		const hole = slave.mpreg ? `asshole` : `pussy`;
-
-		let fillHim = '';
-
-		if (V.PC.prostate > 1) {
-			fillHim = ` filling ${him} until ${his} belly is distended and wobbling with your cum`;
-		} else if (V.PC.prostate > 0) {
-			fillHim = ` pouring into ${him} until ${he} is stuffed with your cum`;
-		} else if (V.PC.balls > 8) {
-			fillHim = ` pouring into ${him}`;
-		}
-
-		text.push(`You set ${him} down on the couch, face-down, with ${his} hips up in the air. This way, ${he}'s anchored in place by the weight of ${his} ridiculous balls, and you get the greatest degree of penetration into ${his} fertile ${hole}. ${He} moans into the cushions, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+	function consummationBigBalls() {
+		return `You set ${him} down on the couch, face-down, with ${his} hips up in the air. This way, ${he}'s anchored in place by the weight of ${his} ridiculous balls, and you get the greatest degree of penetration into ${his} fertile ${hole}. ${He} moans into the cushions, knowing that when ${he} feels the hot flow of semen${fillHim}, ${he} has probably ${superfetation ? `got another bun in the oven` : `gotten pregnant`}.`;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationSubmissive(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, he, him, his, himself} = getPronouns(slave);
-
-		const text = [];
-
+	function consummationSubmissive() {
 		let fillsHim = '';
 
 		if (V.PC.prostate > 1) {
@@ -579,26 +314,13 @@ App.Interact.fPCImpreg = function(slave) {
 			fillsHim = `jets into ${his} welcoming depths`;
 		}
 
-		text.push(`${He} ${slave.belly >= 10000 ? `waddles` : `comes`} submissively over, smiling a little submissive smile, and spreads ${himself} for you. ${slave.belly < 5000
+		return `${He} ${slave.belly >= 10000 ? `waddles` : `comes`} submissively over, smiling a little submissive smile, and spreads ${himself} for you. ${slave.belly < 5000
 			? `You take ${him} on the couch next to your desk in the missionary position. ${He} hugs ${his} torso to you and ${his} breasts press against your chest; you can feel ${his} heart beating hard.`
 			: `You take ${him} from behind against your desk. ${He} steadies ${himself} as ${he} feels your hands roaming across ${his} ${bellyAdjective(slave)} belly. As the sex reaches its climax, ${his} breaths grow short and ${his} moans passionate.`}
-	As the sex reaches its climax your semen ${fillsHim} as ${he} begs you to use ${his} unworthy body to make a new slave.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+		As the sex reaches its climax your semen ${fillsHim} as ${he} begs you to use ${his} unworthy body to make a new slave.`;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationAcceptingNonvirgin(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, he, him, his, himself} = getPronouns(slave);
-
-		const text = [];
-
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-
+	function consummationAcceptingNonvirgin() {
 		let fillingHim = '';
 
 		if (V.PC.prostate > 1) {
@@ -611,51 +333,27 @@ App.Interact.fPCImpreg = function(slave) {
 			fillingHim = `jetting into ${him}`;
 		}
 
-		text.push(`${slave.belly < 5000
+		return `${slave.belly < 5000
 			? `${He} skips over smiling and gives you a quick kiss. You take ${him} on the couch next to your desk in the missionary position. ${He} hugs ${his} torso to you and ${his} breasts press against your ${V.PC.boobs > 300 ? `own;` : `chest; `} you can feel ${his} heart beating hard. As the sex reaches its climax, ${his} kisses grow urgent and passionate. ${He} clings to you,`
 			: `${He} waddles over smiling and leans in to give you a quick kiss. You decide to take ${him} from behind against your desk. ${He} steadies ${himself} against the furniture as ${he} feels your hands roaming across ${his} ${bellyAdjective(slave)} belly. You begin to pound into ${him} and as the sex reaches its climax, ${his} breaths grow short and ${his} moans passionate. As you reach your respective peaks, ${he} pushes ${himself} back against you, feeling`}
-	your semen ${fillingHim} as ${he} rides the downslope of ${his} orgasm. ${He} kisses you and promises to do ${his} best to use ${his} womb to make ${superfetation ? `another` : `a`} good slave for you.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+		your semen ${fillingHim} as ${he} rides the downslope of ${his} orgasm. ${He} kisses you and promises to do ${his} best to use ${his} womb to make ${superfetation ? `another` : `a`} good slave for you.`;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationHesitantNonvirgin(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, he, him, his, himself} = getPronouns(slave);
-
-		const text = [];
-
+	function consummationHesitantNonvirgin() {
 		let full = '';
 
 		if (V.PC.prostate > 1) {
-			full = `far beyond capacity`;
+			full = ` far beyond capacity`;
 		} else if (V.PC.prostate > 0) {
-			full = `beyond capacity`;
+			full = ` beyond capacity`;
 		} else if (V.PC.balls > 8) {
-			full = `to capacity`;
+			full = ` to capacity`;
 		}
 
-		text.push(`${He} obeys, lying on the couch next to your desk${hasAnyLegs(slave) ? ` with ${his} leg${hasBothLegs(slave) ? `s spread` : ` moved aside`}` : ``}. You kneel on the ground and enter ${him}${hasAnyLegs(slave) ? `, a hand on ${hasBothLegs(slave) ? `each of ${his} legs` : `${his} leg`} to give you purchase` : ``}. The pounding is hard and fast, and ${he} gasps and whines. ${slave.belly > 100000 ? `You reach a hand up to tease ${his} already taut dome of a pregnancy.` : `You reach a hand down to maul ${his} breasts.`} ${He} begs you not to cum inside ${him}, knowing ${he}'s fertile, but soon loses track of ${his} fears as ${he} enjoys ${himself}. ${He} bites ${his} lip and moans as ${he} climaxes. You follow ${him} over the edge as you give one final, deep thrust before filling ${his} squeezing fuckhole${full} with your cum; ${he} realizes what you've done with a gasp and a worried look.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+		return `${He} obeys, lying on the couch next to your desk${hasAnyLegs(slave) ? ` with ${his} leg${hasBothLegs(slave) ? `s spread` : ` moved aside`}` : ``}. You kneel on the ground and enter ${him}${hasAnyLegs(slave) ? `, a hand on ${hasBothLegs(slave) ? `each of ${his} legs` : `${his} leg`} to give you purchase` : ``}. The pounding is hard and fast, and ${he} gasps and whines. ${slave.belly > 100000 ? `You reach a hand up to tease ${his} already taut dome of a pregnancy.` : `You reach a hand down to maul ${his} breasts.`} ${He} begs you not to cum inside ${him}, knowing ${he}'s fertile, but soon loses track of ${his} fears as ${he} enjoys ${himself}. ${He} bites ${his} lip and moans as ${he} climaxes. You follow ${him} over the edge as you give one final, deep thrust before filling ${his} squeezing fuckhole${full} with your cum; ${he} realizes what you've done with a gasp and a worried look.`;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationResistantNonvirgin(slave) {
-		const frag = new DocumentFragment();
-
-		const {He, His, he, him, his} = getPronouns(slave);
-
-		const text = [];
-
-		let fillHim = '';
-
+	function consummationResistantNonvirgin() {
 		if (V.PC.prostate > 1) {
 			fillHim = `filling ${him} until ${his} belly is distended and wobbling with your cum`;
 		} else if (V.PC.prostate > 0) {
@@ -666,23 +364,12 @@ App.Interact.fPCImpreg = function(slave) {
 			fillHim = `blow your load`;
 		}
 
-		text.push(`${He} tries to refuse, so you bend the disobedient slave over your desk and take ${him} hard from behind. ${His} breasts slide back and forth across the desk. You give ${his} buttocks some nice hard swats as you pound ${him}. ${He} grunts and moans but knows better than to try to get away. ${He} begs you not to cum inside ${him}, knowing ${he}'s fertile, and sobs when ${he} feels you ${fillHim} despite ${his} pleas.`);
-
-		frag.append(text.join(' '));
-
-		return frag;
+		return `${He} tries to refuse, so you bend the disobedient slave over your desk and take ${him} hard from behind. ${His} breasts slide back and forth across the desk. You give ${his} buttocks some nice hard swats as you pound ${him}. ${He} grunts and moans but knows better than to try to get away. ${He} begs you not to cum inside ${him}, knowing ${he}'s fertile, and sobs when ${he} feels you ${fillHim} despite ${his} pleas.`;
 	}
 
 	function consummationRepeat(slave) {
 		const frag = new DocumentFragment();
-		const pregnancySpan = document.createElement('span');
-
-		const {his} = getPronouns(slave);
-
-		const superfetation = slave.geneticQuirks.superfetation === 2 && slave.pregKnown;
-
-		pregnancySpan.className = 'pregnant';
-		pregnancySpan.textContent = superfetation ? `added your child` : `carrying your child.`;
+		const pregnancySpan = App.UI.DOM.makeElement('span', superfetation ? `added your child` : `carrying your child.`, ['pregnant']);
 
 		frag.append(`You repeat this ritual throughout the week, ensuring that ${slave.slaveName} `);
 
@@ -695,72 +382,55 @@ App.Interact.fPCImpreg = function(slave) {
 		return frag;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationVirgin(slave) {
-		const pregnancyFetish = slave.fetish === 'pregnancy' && slave.fetishStrength > 60 && slave.fetishKnown;
-		const accepting = slave.devotion > 20;
-		const hesitant = slave.devotion >= -20 && slave.devotion <= 20;
-		const resistant = slave.devotion < -20;
-
+	function consummationVirgin() {
 		if (pregnancyFetish) {
-			return consummationPregnancyFetishVirgin(slave);
+			return consummationPregnancyFetishVirgin();
 		} else if (accepting) {
-			return consummationAcceptingVirgin(slave);
+			return consummationAcceptingVirgin();
 		} else if (hesitant) {
-			return consummationHesitantVirgin(slave);
+			return consummationHesitantVirgin();
 		} else if (resistant) {
-			return consummationResistantVirgin(slave);
+			return consummationResistantVirgin();
 		}
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function consummationNonvirgin(slave) {
-		const pregnancyFetish = slave.fetish === 'pregnancy' && slave.fetishStrength > 60 && slave.fetishKnown;
-		const submissive = slave.fetish === 'submissive' && slave.fetishStrength > 60 && slave.fetishKnown;
-		const accepting = slave.devotion > 20;
-		const hesitant = slave.devotion >= -20 && slave.devotion <= 20;
-		const resistant = slave.devotion < -20;
-
+	function consummationNonvirgin() {
 		if (pregnancyFetish) {
-			return consummationPregnancyFetishNonvirgin(slave);
+			return consummationPregnancyFetishNonvirgin();
 		} else if (isAmputee(slave)) {
-			return consummationAmputee(slave);
+			return consummationAmputee();
 		} else if (tooBigBelly(slave)) {
-			return consummationBigBelly(slave);
+			return consummationBigBelly();
 		} else if (tooFatSlave(slave)) {
-			return consummationFat(slave);
+			return consummationFat();
 		} else if (tooBigBreasts(slave)) {
-			return consummationBigBreasts(slave);
+			return consummationBigBreasts();
 		} else if (tooBigButt(slave)) {
-			return consummationBigButt(slave);
+			return consummationBigButt();
 		} else if (tooBigDick(slave)) {
-			return consummationBigDick(slave);
+			return consummationBigDick();
 		} else if (tooBigBalls(slave)) {
-			return consummationBigBalls(slave);
+			return consummationBigBalls();
 		} else if (submissive) {
-			return consummationSubmissive(slave);
+			return consummationSubmissive();
 		} else if (accepting) {
-			return consummationAcceptingNonvirgin(slave);
+			return consummationAcceptingNonvirgin();
 		} else if (hesitant) {
-			return consummationHesitantNonvirgin(slave);
+			return consummationHesitantNonvirgin();
 		} else if (resistant) {
-			return consummationResistantNonvirgin(slave);
+			return consummationResistantNonvirgin();
 		}
 	}
 
-	/**
-	 * @param {App.Entity.SlaveState} slave
-	 * @returns {DocumentFragment}
-	 */
-	function consummation(slave) {
+	function consummation() {
 		const frag = new DocumentFragment();
 
 		const virgin = slave.vagina === 0 || (slave.mpreg && slave.anus === 0);
 
 		if (virgin) {
-			frag.appendChild(consummationVirgin(slave));
+			frag.appendChild(consummationVirgin());
 		} else {
-			frag.appendChild(consummationNonvirgin(slave));
+			frag.append(consummationNonvirgin());
 		}
 
 		frag.appendChild(consummationRepeat(slave));
@@ -770,10 +440,7 @@ App.Interact.fPCImpreg = function(slave) {
 
 	function getEugenicsEffects() {
 		const frag = new DocumentFragment();
-		const reputationSpan = document.createElement('span');
-
-		reputationSpan.classList.add('reputation', 'dec');
-		reputationSpan.textContent = 'very displeased';
+		const reputationSpan = App.UI.DOM.makeElement('span', `very displeased`, ['reputation', 'dec']);
 
 		frag.append(`Rumors spread about you fucking your slaves pregnant; the Societal Elite are`, reputationSpan, ` by these rumors.`);
 
@@ -782,15 +449,11 @@ App.Interact.fPCImpreg = function(slave) {
 		return frag;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function getGenderRadicalistEffects(slave) {
+	function getGenderRadicalistEffects() {
 		const frag = new DocumentFragment();
-		const reputationSpan = document.createElement('span');
+		const reputationSpan = App.UI.DOM.makeElement('span', `approves`, ['reputation', 'inc']);
 
-		reputationSpan.classList.add('reputation', 'inc');
-		reputationSpan.textContent = 'approves';
-
-		frag.append(`Society `, reputationSpan, ` of your fucking your slaves' asses pregnant; this advances the ideal all a slave needs is ${getPronouns(slave).his} rear.`);
+		frag.append(`Society `, reputationSpan, ` of your fucking your slaves' asses pregnant; this advances the ideal all a slave needs is ${his} rear.`);
 
 		// FIXME: The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.
 		repX(V.FSSingleSlaveRep * (V.arcologies[0].FSGenderRadicalist / V.FSLockinLevel), 'futureSocieties', slave);
@@ -800,15 +463,11 @@ App.Interact.fPCImpreg = function(slave) {
 		return frag;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function getGenderFundamentalistEffectsApproving(slave) {
+	function getGenderFundamentalistEffectsApproving() {
 		const frag = new DocumentFragment();
-		const reputationSpan = document.createElement('span');
-
-		reputationSpan.classList.add('reputation', 'inc');
-		reputationSpan.textContent = 'approves';
+		const reputationSpan = App.UI.DOM.makeElement('span', `approves`, ['reputation', 'inc']);
 
-		frag.append(`Society `, reputationSpan, ` of your putting a new slave in ${getPronouns(slave).him}; this advances the idea that all slaves should bear their masters' babies.`);
+		frag.append(`Society `, reputationSpan, ` of your putting a new slave in ${him}; this advances the idea that all slaves should bear their masters' babies.`);
 
 		repX(forceNeg(V.FSSingleSlaveRep * (V.arcologies[0].FSGenderFundamentalist / V.FSLockinLevel)), 'futureSocieties', slave);
 		V.arcologies[0].FSGenderFundamentalist -= 0.05 * V.FSSingleSlaveRep;
@@ -816,13 +475,9 @@ App.Interact.fPCImpreg = function(slave) {
 		return frag;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function getGenderFundamentalistEffectsDisapproving(slave) {
+	function getGenderFundamentalistEffectsDisapproving() {
 		const frag = new DocumentFragment();
-		const reputationSpan = document.createElement('span');
-
-		reputationSpan.classList.add('reputation', 'dec');
-		reputationSpan.textContent = 'is disgusted';
+		const reputationSpan = App.UI.DOM.makeElement('span', `is disgusted`, ['reputation', 'dec']);
 
 		frag.append(`Society `, reputationSpan, ` by this degenerate form of reproduction.`);
 
@@ -832,20 +487,15 @@ App.Interact.fPCImpreg = function(slave) {
 		return frag;
 	}
 
-	/** @param {App.Entity.SlaveState} slave */
-	function getGenderFundamentalistEffects(slave) {
+	function getGenderFundamentalistEffects() {
 		if (slave.mpreg) {
-			return getGenderFundamentalistEffectsDisapproving(slave);
+			return getGenderFundamentalistEffectsDisapproving();
 		} else {
-			return getGenderFundamentalistEffectsApproving(slave);
+			return getGenderFundamentalistEffectsApproving();
 		}
 	}
 
-	/**
-	 * @param {App.Entity.SlaveState} slave
-	 * @returns {DocumentFragment}
-	 */
-	function effects(slave) {
+	function effects() {
 		const frag = new DocumentFragment();
 
 		if (V.arcologies[0].FSRestart !== 'unset' && (!slave.breedingMark || !V.propOutcome) && V.eugenicsFullControl) {
@@ -853,9 +503,9 @@ App.Interact.fPCImpreg = function(slave) {
 		}
 
 		if (V.arcologies[0].FSGenderRadicalist !== 'unset' && slave.mpreg) {
-			frag.appendChild(getGenderRadicalistEffects(slave));
+			frag.appendChild(getGenderRadicalistEffects());
 		} else if (V.arcologies[0].FSGenderFundamentalist !== 'unset') {
-			frag.appendChild(getGenderFundamentalistEffects(slave));
+			frag.appendChild(getGenderFundamentalistEffects());
 		}
 
 		return frag;
-- 
GitLab