diff --git a/src/facilities/farmyard/farmyard.js b/src/facilities/farmyard/farmyard.js
index 5ffd5c219c0af54ece832539a0473643b2096edc..4311bd880544c23c4ee7482501c422a54756941d 100644
--- a/src/facilities/farmyard/farmyard.js
+++ b/src/facilities/farmyard/farmyard.js
@@ -203,7 +203,7 @@ App.Facilities.Farmyard.farmyard = class Farmyard extends App.Facilities.Facilit
 						upgraded: 1,
 						text: `There is room enough in ${this.facility.name} to install a hydroponics system for irrigation.`,
 						link: `Purchase an advanced hydroponics system`,
-						cost: 20000 * V.upgradeMultiplierArcology,
+						cost: 25000 * V.upgradeMultiplierArcology,
 						handler: () => {
 							V.PC.skill.engineering += 0.1;
 
@@ -231,7 +231,7 @@ App.Facilities.Farmyard.farmyard = class Farmyard extends App.Facilities.Facilit
 						upgraded: 1,
 						text: `The seeds ${this.facility.name} is using are the standard seeds one could pick up at the local farmers' market.`,
 						link: `Purchase genetically modified seeds`,
-						cost: 25000 * V.upgradeMultiplierArcology,
+						cost: 50000 * V.upgradeMultiplierArcology,
 						handler: () => {
 							V.PC.skill.engineering += 0.1;
 
@@ -260,7 +260,7 @@ App.Facilities.Farmyard.farmyard = class Farmyard extends App.Facilities.Facilit
 						upgraded: 1,
 						text: `The machinery in ${this.facility.name} is equipment that was imported before the old world began to fall apart and is fairly old and outdated.`,
 						link: `Upgrade the machinery`,
-						cost: 50000 * V.upgradeMultiplierArcology,
+						cost: 100000 * V.upgradeMultiplierArcology,
 						handler: () => {
 							V.PC.skill.engineering += 0.1;
 
diff --git a/src/npc/interaction/fAnimal.js b/src/npc/interaction/fAnimal.js
index f418979d7ab2f72a27ec32cfd46be362e274fc85..6239ef8a04365cd14a3cc00293ad557c36a50c08 100644
--- a/src/npc/interaction/fAnimal.js
+++ b/src/npc/interaction/fAnimal.js
@@ -19,7 +19,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 		ORAL: "oral",
 	};
 
-	const approvingFetishes = ["masochist", "humiliation", "perverted", "sinful"];	// not strictly fetishes, but approvingFetishesAndBehavioralQuirksAndSexualQuirks doesn't have the same ring to it
+	const approvingFetishes = [Fetish.MASOCHIST, Fetish.HUMILIATION, "perverted", "sinful"];	// not strictly fetishes, but approvingFetishesAndBehavioralQuirksAndSexualQuirks doesn't have the same ring to it
 
 	/** @type {App.Entity.Animal} */
 	const animal = getAnimal(V.active[type]);
@@ -32,30 +32,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 	let orifice;
 
 	const anAnimal = `${animal.articleAn} ${animal.name}`;
-
-	if ([Job.FUCKTOY, Job.MASTERSUITE].includes(slave.assignment)) {
-		if (slave.toyHole === "pussy") {
-			act = "vaginal";
-		} else if (slave.toyHole === "ass") {
-			act = "anal";
-		} else if (slave.toyHole === "mouth") {
-			act = "oral";
-		} else {
-			if (canDoVaginal(slave)) {
-				act = "vaginal";
-			} else if (canDoAnal(slave)) {
-				act = "anal";
-			} else {
-				act = "oral";
-			}
-		}
-	} else if (canDoVaginal(slave)) {
-		act = "vaginal";
-	} else if (canDoAnal(slave)) {
-		act = "anal";
-	} else {
-		act = "oral";
-	}
+	const hasFuckedAnimals = slave.partners.has(-8);
 
 	seX(slave, act, "animal");
 
@@ -63,8 +40,8 @@ App.Interact.fAnimal = function(slave, type, act) {
 		approvingFetishes.includes(slave.fetish) ||
 		approvingFetishes.includes(slave.sexualQuirk) ||
 		approvingFetishes.includes(slave.behavioralQuirk) ||
-		slave.fetish === "buttslut" && act === Acts.ANAL ||
-		slave.fetish === "cumslut" && act === Acts.ORAL ||
+		slave.fetish === Fetish.BUTTSLUT && act === Acts.ANAL ||
+		slave.fetish === Fetish.CUMSLUT && act === Acts.ORAL ||
 		slave.sexualQuirk === "gagfuck queen" && act === Acts.ORAL;
 
 	switch (act) {
@@ -72,7 +49,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 			orifice = () => either("mouth", "throat");
 			break;
 		case Acts.VAGINAL:
-			orifice = () => either("pussy", "cunt");
+			orifice = () => either("pussy", "cunt", "slit");
 			hole = 0;
 			break;
 		case Acts.ANAL:
@@ -83,13 +60,13 @@ App.Interact.fAnimal = function(slave, type, act) {
 			throw new Error(`Unexpected act type '${act}' in fAnimal()`);
 	}
 
-	if (slave.fetish === "cumslut" && act === Acts.ORAL) {
+	if (slave.fetish === Fetish.CUMSLUT && act === Acts.ORAL) {
 		fetishDesc = `getting to drink more cum`;
-	} else if (slave.fetish === "humiliation") {
+	} else if (slave.fetish === Fetish.HUMILIATION) {
 		fetishDesc = `committing such a humiliating act`;
-	} else if (slave.fetish === "buttslut" && act === Acts.ANAL) {
+	} else if (slave.fetish === Fetish.BUTTSLUT && act === Acts.ANAL) {
 		fetishDesc = `getting to take a cock up ${his} ass`;
-	} else if (slave.fetish === "masochist") {
+	} else if (slave.fetish === Fetish.MASOCHIST) {
 		fetishDesc = `committing such a painful act`;
 	} else if (slave.sexualQuirk === "perverted") {
 		fetishDesc = `committing such a perverted act`;
@@ -149,23 +126,31 @@ App.Interact.fAnimal = function(slave, type, act) {
 				? `get fucked by`
 				: `get fucked in the ass by`} ${anAnimal}.`);
 
-		if (slave.fetish === "mindbroken") {
+		if (slave.fetish === Fetish.MINDBROKEN) {
 			text.push(`${slave.slaveName} nods ${his} head dumbly, ${his} eyes vacant${!canSee(slave) ? ` as always` : ``}.`);
 		} else {
 			if (slave.devotion > 50) {
 				if (act === Acts.ORAL) {
 					if (slaveApproves) {
-						text.push(`${slave.slaveName}'s face visibly brightens at the prospect of ${fetishDesc}, even if it's an animal${slave.fetish === "cumslut" ? `'s cum` : ` that ${he} has to suck off`}.`);
+						text.push(`${slave.slaveName}'s face visibly brightens at the prospect of ${fetishDesc}, even if it's ${anAnimal}${slave.fetish === Fetish.CUMSLUT ? `'s cum` : ` that ${he} has to suck off`}.`);
 					} else {
-						text.push(`${slave.slaveName} visibly blanches at the thought of having to suck down an animal's cum, but ${he} is so devoted to you that ${he} reluctantly agrees.`);
+						text.push(`${slave.slaveName} visibly blanches at the thought of having to suck down ${anAnimal}'s cum,`);
+						if (!hasFuckedAnimals) {
+							text.push(`especially because ${he}'s never fucked an animal before,`);
+						}
+						text.push(`but ${he} is so devoted to you that ${he} reluctantly agrees.`);
 					}
 				} else {
 					if ((act === Acts.VAGINAL && slave.vagina > 0) ||
 						(act === Acts.ANAL && slave.anus > 0)) {
 						if (slaveApproves) {
-							text.push(`${slave.slaveName}'s face visibly brightens at the thought of ${fetishDesc}, even if the dick is an animal's.`);
+							text.push(`${slave.slaveName}'s face visibly brightens at the thought of ${fetishDesc}, even if the dick is ${anAnimal}'s.`);
 						} else {
-							text.push(`${slave.slaveName} looks visibly disturbed, but is so attentive to your will that ${he} agrees.`);
+							if (hasFuckedAnimals) {
+								text.push(`This wouldn't be the first time ${he}'s had to fuck an animal, and ${he} so is willing to do absolutely anything for you that ${he} nonchalantly agrees.`);
+							} else {
+								text.push(`${slave.slaveName} looks visibly disturbed because ${he}'s never fucked an animal before, but is so attentive to your will that ${he} reluctantly agrees.`);
+							}
 						}
 					} else {
 						if (slaveApproves) {
@@ -180,7 +165,11 @@ App.Interact.fAnimal = function(slave, type, act) {
 					if (slaveApproves) {
 						text.push(`${slave.slaveName} isn't too keen on the idea of sucking off an animal, but the idea of ${fetishDesc} is enough to get ${him} to comply.`);
 					} else {
-						text.push(`${slave.slaveName} tries in vain to conceal ${his} horror at the thought of blowing an animal, but quickly regains ${his} composure.`);
+						text.push(`${slave.slaveName} tries in vain to conceal ${his} horror at the thought of blowing an animal,`);
+						if (!hasFuckedAnimals) {
+							text.push(`especially because ${he}'s never fucked an animal before,`);
+						}
+						text.push(`but quickly regains ${his} composure.`);
 					}
 				} else {
 					if (
@@ -188,9 +177,13 @@ App.Interact.fAnimal = function(slave, type, act) {
 							(act === Acts.ANAL && slave.anus > 0)
 					) {
 						if (slaveApproves) {
-							text.push(`${slave.slaveName} doesn't seem terribly keen on the idea of fucking an animal, but the thought of ${fetishDesc} seems to be enough to win ${him} over.`);
+							text.push(`${slave.slaveName} doesn't seem terribly keen on the idea of fucking an animal ${hasFuckedAnimals ? `again` : ``}, but the thought of ${fetishDesc} seems to be enough to win ${him} over.`);
 						} else {
-							text.push(`${slave.slaveName} tries in vain to conceal ${his} horror at the thought of fucking an animal, but quickly regains ${his} composure.`);
+							if (hasFuckedAnimals) {
+								text.push(`This wouldn't be the first time ${he}'s had to fuck an animal, but you can tell ${he} still isn't exactly thrilled about the idea.`);
+							} else {
+								text.push(`${slave.slaveName} tries in vain to conceal ${his} horror at the thought of fucking an animal, but quickly regains ${his} composure.`);
+							}
 						}
 					} else {
 						if (slaveApproves) {
@@ -205,14 +198,22 @@ App.Interact.fAnimal = function(slave, type, act) {
 					if (slaveApproves) {
 						text.push(`${slave.slaveName} looks disgusted at the thought of sucking off an animal at first, but the thought of the ${fetishDesc} that comes with it seems to spark a small flame of lust in ${him}.`);
 					} else {
-						text.push(`${slave.slaveName} tries in vain to conceal ${his} horror at the thought of blowing an animal${canWalk(slave) ? `, and only the threat of worse punishment keeps ${him} from running away as fast as ${he} can` : ``}.`);
+						if (hasFuckedAnimals) {
+							text.push(`This wouldn't be the first time ${he}'s had to fuck an animal, and you can tell the memories of ${his} previous encounters are flooding back as ${he} pales.`);
+						} else {
+							text.push(`${slave.slaveName} tries in vain to conceal ${his} horror at the thought of blowing an animal${canWalk(slave) ? `, and only the threat of worse punishment keeps ${him} from running away as fast as ${he} can` : ``}.`);
+						}
 					}
 				} else {
 					if ((act === Acts.VAGINAL && slave.vagina > 0) || (act === Acts.ANAL && slave.anus > 0)) {
 						if (slaveApproves) {
 							text.push(`${slave.slaveName} looks disgusted at the thought of fucking an animal at first, but the thought of the ${fetishDesc} that comes with it seems to spark a small flame of lust in ${him}.`);
 						} else {
-							text.push(`${slave.slaveName} tries in vain to conceal ${his} horror at the thought of fucking an animal${canWalk(slave) ? `, and only the threat of worse punishment keeps ${him} from running away as fast as ${he} can` : ``}.`);
+							if (hasFuckedAnimals) {
+								text.push(`This wouldn't be the first time ${he}'s had to fuck an animal, and you can tell the memories of ${his} previous encounters are flooding back as ${he} pales.`);
+							} else {
+								text.push(`${slave.slaveName} tries in vain to conceal ${his} horror at the thought of fucking an animal${canWalk(slave) ? `, and only the threat of worse punishment keeps ${him} from running away as fast as ${he} can` : ``}.`);
+							}
 						}
 					} else {
 						if (slaveApproves) {
@@ -244,11 +245,11 @@ App.Interact.fAnimal = function(slave, type, act) {
 
 			switch (animal.name) {
 				case V.active.canine:
-					if (type === Acts.ORAL) {
+					if (act === Acts.ORAL) {
 						if (slaveApproves) {
 							text.push(`The slave seems to quickly get over the fact that the dick currently in ${his} mouth belongs to a canine as ${his} more carnal desires kick in.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s cock fills it, then gives a groan as the beast thrusts, filling ${his} throat.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s cock fills it, then gives a groan as the beast thrusts, filling ${his} throat.`);
 						}
 					} else {
 						if (canWalk(slave)) {
@@ -261,22 +262,22 @@ App.Interact.fAnimal = function(slave, type, act) {
 					}
 					break;
 				case V.active.hooved:
-					if (type === Acts.ORAL) {
+					if (act === Acts.ORAL) {
 						if (slaveApproves) {
 							text.push(`The slave seems to quickly get over the fact that dick currently in ${his} mouth is not a human one as ${his} more carnal desires kick in.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s cock fills it, then gives a groan as the beast thrusts, stretching ${his} poor throat to the limit.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s cock fills it, then gives a groan as the beast thrusts, stretching ${his} poor throat to the limit.`);
 						}
 					} else {
 						text.push(`${slave.slaveName} gives a long, drawn-out moan as the huge phallus `, slave.vagina < 4 ? `<span class="change positive">stretches</span>` : `fills`, ` ${his} ${orifice()} nearly to its breaking point.`);
 					}
 					break;
 				case V.active.feline:
-					if (type === Acts.ORAL) {
+					if (act === Acts.ORAL) {
 						if (slaveApproves) {
 							text.push(`The slave seems to quickly get over the fact that dick currently in ${his} mouth belongs to ${anAnimal} as ${his} more carnal desires kick in.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s cock fills it, then gives a groan as the beast thrusts, the barbs on its cock rubbing the inside of ${his} mouth raw.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s cock fills it, then gives a groan as the beast thrusts, the barbs on its cock rubbing the inside of ${his} mouth raw.`);
 						}
 					} else {
 						text.push(`${slave.slaveName} gives a squeal of pain as the barbed cock makes its way into ${his} ${orifice()}.`);
@@ -302,7 +303,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 						if (slaveApproves) {
 							text.push(`Though the slave still seems to have some reservations about sucking off an animal, ${he} seems to forget that the cock in ${his} mouth belongs to ${anAnimal} soon enough, once ${his} carnal desires kick in.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
 						}
 					} else {
 						if (canWalk(slave)) {
@@ -319,7 +320,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 						if (slaveApproves) {
 							text.push(`Though the slave still seems to have some reservations about sucking off ${anAnimal}, ${he} seems to forget that the cock in ${his} mouth isn't human soon enough, once ${his} carnal desires kick in.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
 						}
 					} else {
 						text.push(`${slave.slaveName} gives a long, drawn-out groan as the huge phallus `, slave.vagina < 4 ? `<span class="change positive">stretches</span>` : `fills`, ` ${his} ${orifice()} nearly to its breaking point.`);
@@ -330,7 +331,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 						if (slaveApproves) {
 							text.push(`Though the slave still seems to have some reservations about sucking off an animal, ${he} seems to forget that the cock in ${his} mouth belongs to a feline soon enough, once ${his} carnal desires kick in.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s barbed dick fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s barbed dick fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
 						}
 					} else {
 						text.push(`${slave.slaveName} gives a squeal of pain as the barbed cock makes its way into ${his} ${orifice()}.`);
@@ -356,7 +357,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 						if (slaveApproves) {
 							text.push(`Though the slave still seems to have some reservations about sucking off an animal, ${he} seems to forget that the cock in ${his} mouth belongs to ${anAnimal} soon enough, once ${his} carnal desires kick in.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
 						}
 					} else {
 						if (canWalk(slave)) {
@@ -373,7 +374,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 						if (slaveApproves) {
 							text.push(`Though the slave still seems to have some reservations about sucking off ${anAnimal}, ${he} seems to forget that the cock in ${his} mouth isn't human soon enough, once ${his} carnal desires kick in.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
 						}
 					} else {
 						text.push(`${slave.slaveName} gives a long, drawn-out groan as the huge phallus `, slave.vagina < 4 ? `<span class="change positive">stretches</span>` : `fills`, ` ${his} ${orifice()} nearly to its breaking point.`);
@@ -384,7 +385,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 						if (slaveApproves) {
 							text.push(`Though the slave still seems to have some reservations about sucking off an animal, ${he} seems to forget that the cock in ${his} mouth belongs to a feline soon enough, once ${his} carnal desires kick in.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s barbed dick fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s barbed dick fills it, and you get the feeling ${he} is beginning to reevaluate just how much ${he} wants to avoid punishment.`);
 						}
 					} else {
 						text.push(`${slave.slaveName} gives a squeal of pain as the barbed cock makes its way into ${his} ${orifice()}.`);
@@ -417,7 +418,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 									: `a slight blush to ${his} cheeks`}
 									tells you that ${he}'s enjoying this, at least a little.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} would have run away a long time ago if ${he} wasn't a little tied up at the moment.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} would have run away a long time ago if ${he} wasn't more than a little tied up at the moment.`);
 						}
 					} else {
 						if (canWalk(slave)) {
@@ -441,7 +442,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 									: `a slight blush to ${his} cheeks`}
 									tells you that ${he}'s enjoying this, at least a little.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} would have run away a long time ago if ${he} wasn't a little tied up at the moment.`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s cock fills it, and you get the feeling ${he} would have run away a long time ago if ${he} wasn't a little tied up at the moment.`);
 						}
 					} else {
 						text.push(`${slave.slaveName} lets out a blood-curdling scream as the huge phallus `, slave.vagina < 4 ? `<span class="change positive">stretches</span>` : `fills`, ` ${his} ${orifice()} nearly to its breaking point.`);
@@ -459,7 +460,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 									: `a slight blush to ${his} cheeks`}
 									tells you that ${he}'s enjoying this, at least a little.`);
 						} else {
-							text.push(`The slave visibly gags as the unfamiliar texture of ${anAnimal}'s barbed dick fills it, and you get the feeling ${he} would have run away a long time ago if ${he} wasn't a little tied up at the moment .`);
+							text.push(`The slave visibly gags as the ${hasFuckedAnimals ? `strange` : `unfamiliar`} texture of ${anAnimal}'s barbed dick fills it, and you get the feeling ${he} would have run away a long time ago if ${he} wasn't a little tied up at the moment .`);
 						}
 					} else {
 						text.push(`${slave.slaveName} lets out a blood-curdling scream as the barbed cock makes its way into ${his} ${orifice()}.`);
@@ -483,8 +484,7 @@ App.Interact.fAnimal = function(slave, type, act) {
 		switch (animal.name) {
 			case V.active.canine:
 				if (act === Acts.ORAL) {
-					// TODO: rewrite this so its not so similar
-					text.push(`The ${animal.species === "dog" ? `hound` : animal.name} wastes no time in beginning to hammer away at ${his} ${orifice()} in the way only canines can, causing ${slave.slaveName} to moan uncontrollably as its thick, veiny member probes the depths of ${his} ${orifice()}. A few short minutes later, ${he} gives a loud groan ${slaveApproves ? `and shakes in orgasm ` : ``}as the ${animal.name}'s knot begins to swell and its dick begins to erupt a thick stream of jizz down ${his} abused throat. Soon enough, the ${animal.name} finally finishes cumming and its knot is sufficiently small enough to slip out of ${slave.slaveName}'s mouth, causing ${him} to immediately begin coughing and retching uncontrollably. Having finished its business, the ${animal.name} runs off, presumably in search of food.`);
+					text.push(`${slave.slaveName} gets to work, ${his} head bobbing back and forth rhythmically as ${he} works on bringing the ${animal.name} to orgasm. ${His} efforts pay off after a few minutes when the ${animal.species === "dog" ? `hound` : animal.name}'s knot begins to swell. Eyes wide and brimming with tears from the sudden lack of oxygen, ${he} realizes has no choice but to finish what ${he} started and swallow all of the semen pouring down ${his} abused throat. Soon enough, the ${animal.name} finally finishes cumming and its knot is sufficiently small enough to slip out of ${slave.slaveName}'s mouth, causing ${him} to immediately begin coughing and retching uncontrollably. Having finished its business, the ${animal.name} runs off, presumably in search of food.`);
 				} else {
 					text.push(`The ${animal.species === "dog" ? `hound` : animal.name} wastes no time in beginning to hammer away at ${his} ${orifice()} in the way only canines can, causing ${slave.slaveName} to moan uncontrollably as its thick, veiny member probes the depths of ${his} ${orifice()}. A few short minutes later, ${he} gives a loud groan ${slaveApproves ? `and shakes in orgasm ` : ``}as the ${animal.name}'s knot begins to swell and its dick begins to erupt a thick stream of jizz into ${his} ${orifice()}. Soon enough, the ${animal.name} finally finishes cumming and its knot is sufficiently small enough to slip out of ${slave.slaveName}'s ${act === Acts.VAGINAL && slave.vagina < 3 || act === Acts.ANAL && slave.anus < 2
 						? `now-gaping ${orifice()}`
@@ -493,14 +493,14 @@ App.Interact.fAnimal = function(slave, type, act) {
 				break;
 			case V.active.hooved:
 				if (act === Acts.ORAL) {
-					text.push(`The ${animal.species === "horse" ? `stallion` : animal.name} begins to thrust faster and faster, causing ${him} to moan and groan past the huge ${animal.species} cock stretching ${his} poor throat to its limits. Before too long, the ${animal.name}'s movements begin to slow, and you can see its large testicles contract as its begins to erupt and pour its thick semen down ${his} throat and into ${his} stomach, filling it to the brim. After what seems like an impossibly long time, the ${animal.name}'s dick finally begins to soften and pull out, causing ${slave.slaveName} to begin coughing and retching uncontrollably. You have another slave lead the ${animal.name} away, with a fresh apple as a treat for its good performance.`);
+					text.push(`${slave.slaveName} gets to work, ${his} head bobbing back and forth rhythmically as ${he} works on bringing the ${animal.name} to orgasm. ${His} efforts pay off after a few minutes when the ${animal.species === "horse" ? `stallion` : animal.name} begins to pant as its orgasm approaches. Before too long, the ${animal.name}'s movements begin to slow, and you can see its large testicles contract as its begins to erupt and pour its thick semen down ${his} throat and into ${his} stomach, filling it to the brim. After what seems like an impossibly long time, the ${animal.name}'s dick finally begins to soften and pull out, causing ${slave.slaveName} to begin coughing and retching uncontrollably. You have another slave lead the ${animal.name} away, with a fresh apple as a treat for its good performance.`);
 				} else {
 					text.push(`The ${animal.species === "horse" ? `stallion` : animal.name} begins to thrust faster and faster, causing ${him} to moan and groan as the huge ${animal.species} cock ${act === Acts.VAGINAL ? `batters ${his} cervix` : `fills ${him} completely`}. Before too long, the ${animal.name}'s movements begin to slow, and you can see its large testicles contract as its begins to erupt and fill ${his} ${orifice()} with its thick baby batter. After what seems like an impossibly long time, the ${animal.name}'s dick finally begins to soften and pull out, leaving ${slave.slaveName} panting and covered in sweat. You have another slave lead the ${animal.name} away, with a fresh apple as a treat for its good performance.`);
 				}
 				break;
 			case V.active.feline:
 				if (act === Acts.ORAL) {
-					text.push(`The ${animal.name} begins to move, thrusting faster and faster. The ${girl} underneath it can't stop a groan of pain from escaping ${his} lips as the ${animal.species}'s barbed dick rubs the inside of ${his} mouth and throat raw. After a few minutes of painful coupling, the ${animal.species}'s thrusts finally slow, then stop completely as its ${animal.species !== "cat" ? `large` : ``} cock erupts down ${slave.slaveName}'s throat. With a ${animal.species !== "cat" ? `deep bellow` : `loud meow`}, he finally dismounts, gives you a long look, then stalks off.`);
+					text.push(`${slave.slaveName} gets to work, ${his} head bobbing back and forth rhythmically as ${he} works on bringing the ${animal.name} to orgasm. ${His} efforts pay off after a few minutes when the ${animal.name} begins to pant as its orgasm approaches.  After a few minutes of painful coupling, the ${animal.species}'s thrusts finally slow, then stop completely as its ${animal.species !== "cat" ? `large` : ``} cock erupts down ${slave.slaveName}'s throat. With a ${animal.species !== "cat" ? `deep bellow` : `loud meow`}, he finally dismounts, gives you a long look, then stalks off.`);
 				} else {
 					text.push(`The ${animal.name} begins to move, thrusting faster and faster. The ${girl} underneath it can't stop a groan of pain from escaping ${his} lips as the ${animal.species}'s barbed dick rubs the inside of ${his} ${orifice()} raw. After a few minutes of painful coupling, the ${animal.species}'s thrusts finally slow, then stop completely as its ${animal.species !== "cat" ? `large` : ``} cock erupts, filling ${slave.slaveName} with its sperm. With a ${animal.species !== "cat" ? `deep bellow` : `loud meow`}, he finally dismounts, gives you a long look, then stalks off.`);
 				}
@@ -633,12 +633,12 @@ App.Interact.fAnimal = function(slave, type, act) {
 	}
 
 	function slaveGainsQuirk() {
-		if (slave.fetish === "none") {
+		if (slave.fetish === Fetish.NONE) {
 			if (random(1, 100) > 90) {	// 10% chance of gaining fetish
 				/** @type {FC.Fetish[]} */
 				const fetishes = [
-					"humiliation",
-					"masochist",
+					Fetish.HUMILIATION,
+					Fetish.MASOCHIST,
 				];
 
 				if (act === Acts.ANAL) {
@@ -649,13 +649,13 @@ App.Interact.fAnimal = function(slave, type, act) {
 
 				fetishChange(slave, fetish);
 
-				if (fetish === "buttslut") {
+				if (fetish === Fetish.BUTTSLUT) {
 					return `${He} couldn't help but orgasm when the ${animal.name} filled ${him} with its seed, and now the thought of another member in ${his} bottom <span class="fetish gain>turns ${him} on.</span>`;
 				}
-				if (fetish === "humiliation") {
+				if (fetish === Fetish.HUMILIATION) {
 					return `You can't help but notice that ${he} ${slave.dick > 0 ? `is sporting an erection` : ``}${slave.vagina > -1 ? slave.dick > 0 ? ` and ` : `has a distinct sheen on ${his} pussylips` : `seems distinctly uncomfortable`} after the beast has finished. <span class="fetish gain">It seems ${he} is a bit of a humiliation slut!</span>`;
 				}
-				if (fetish === "masochist") {
+				if (fetish === Fetish.MASOCHIST) {
 					return `${He} didn't seem to mind the pain – in fact, it seems ${he} got off on it. <span class="fetish gain">${He}'s a masochist!</span>`;
 				}
 			}