diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 6af5fa1e78ab8571778ce0a40dd96cee32aa6c32..17c9db85b0226d35215b7733f9e5e61b4a159f51 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -1437,7 +1437,7 @@ window.setPregType = function(actor) {
 
 	if(actor.broodmother < 1) { /* Broodmothers should be not processed here. Necessary now.*/
 		if(typeof actor.readyOva == "number" && actor.readyOva != 0) {
-			ovum = actor.readyOva;  /*just single override; for delayed impregnation cases */
+			ovum = actor.readyOva; /*just single override; for delayed impregnation cases */
 		} else if(actor.ID == -1) {
 			if(actor.birthMaster > 0) { // Predisposed to twins
 				if(actor.fertDrugs == 1) {
@@ -3665,18 +3665,18 @@ window.ValidateFacilityDecoration = function ValidateFacilityDecoration(decorati
 };
 
 window.ordinalSuffix = function ordinalSuffix(i) {
-    var j = i % 10,
-        k = i % 100;
-    if (j == 1 && k != 11) {
-        return i + "st";
-    }
-    if (j == 2 && k != 12) {
-        return i + "nd";
-    }
-    if (j == 3 && k != 13) {
-        return i + "rd";
-    }
-    return i + "th";
+	var j = i % 10,
+		k = i % 100;
+	if (j == 1 && k != 11) {
+		return i + "st";
+	}
+	if (j == 2 && k != 12) {
+		return i + "nd";
+	}
+	if (j == 3 && k != 13) {
+		return i + "rd";
+	}
+	return i + "th";
 }
 
 /*:: Span Macro JS [script]*/
@@ -9831,11 +9831,17 @@ window.saChoosesOwnClothes = (function() {
 				wardrobeAssignment.push({text: `and dons battledress, the better to intimidate the prisoners.`, clothes: "battledress"});
 				wardrobeAssignment.push({text: `and slips into a scalemail bikini, the better to intimidate the prisoners.`, clothes: "a scalemail bikini"});
 				wardrobeAssignment.push({text: `and dons a scandalous habit to make it perfectly clear that crossing this nun will result in sexual punishment.`, clothes: "a fallen nuns habit"});
+				wardrobeAssignment.push({text: `and wears a military uniform to look even more brutal and authoritive.`, clothes: "a military uniform"});
+				wardrobeAssignment.push({text: `and wears a schutzstaffel uniform to look even more brutal and authoritive.`, clothes: "a schutzstaffel uniform"});
+				wardrobeAssignment.push({text: `and wears a slutty schutzstaffel uniform to look even more brutal and authoritive.`, clothes: "a slutty schutzstaffel uniform"});
+				wardrobeAssignment.push({text: `and wears a red army uniform to look even more brutal and authoritive.`, clothes: "a red army uniform"});
 				if(isItemAccessible("stretch pants and a crop-top")) {
 					wardrobeAssignment.push({text: `and decides to take it easy by slipping into some stretch pants. They come off just as quickly as they come on, just in case.`, clothes: "stretch pants and a crop-top"});
 				}
 			} else if(slave.assignment == "be the Attendant") {
 				wardrobeAssignment.push({text: `and wears a string bikini, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a string bikini"});
+				wardrobeAssignment.push({text: `and wears an immodest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a monokini"});
+				wardrobeAssignment.push({text: `and wears a modest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a burkini"});
 				wardrobeAssignment.push({text: `but decides to go nude, since ${he}'ll be spending so much time in the water.`, clothes: "no clothing"});
 			} else if(slave.assignment == "rest") {
 				wardrobeAssignment.push({text: `and wears a comfortable t-shirt and cutoffs to relax.`, clothes: "cutoffs and a t-shirt"});
@@ -10725,7 +10731,7 @@ window.saRest = function saRest(slave) {
 	var t = " takes the week off.";
 
 	if (slave.fuckdoll > 0) {
-		t += " It has nothing to do but ";
+		t += " ${He} has nothing to do but ";
 		if (slave.amp == 0) {
 			t += "lie ";
 		} else {
@@ -10767,6 +10773,86 @@ window.saRest = function saRest(slave) {
 			}
 		}
 	}
+
+	if (V.showVignettes == 1) {
+		var _vignette = GetVignette(slave);
+		t += ` __This week__ ${_vignette.text} `
+		if (_vignette.type == "cash") {
+			if (_vignette.effect > 0) {
+				t += `<span class='yellowgreen'>making you an extra ${cashFormat(Math.trunc(V.FResult*_vignette.effect))}.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>losing you ${cashFormat(Math.abs(Math.trunc(V.FResult*_vignette.effect)))}.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			V.cash += Math.trunc(V.FResult*_vignette.effect);
+		} else if (_vignette.type == "devotion") {
+			if (_vignette.effect > 0) {
+				if (slave.devotion > 50) {
+					t += `<span class='hotpink'>increasing ${his} devotion to you.</span>`;
+				} else if (slave.devotion >= -20) {
+					t += `<span class='hotpink'>increasing ${his} acceptance of you.</span>`;
+				} else if (slave.devotion > -10) {
+					t += `<span class='hotpink'>reducing ${his} dislike of you.</span>`;
+				} else {
+					t += `<span class='hotpink'>reducing ${his} hatred of you.</span>`;
+				}
+			} else if (_vignette.effect < 0) {
+				if (slave.devotion > 50) {
+					t += `<span class='mediumorchid'>reducing ${his} devotion to you.</span>`;
+				} else if (slave.devotion >= -20) {
+					t += `<span class='mediumorchid'>reducing ${his} acceptance of you.</span>`;
+				} else if (slave.devotion > -10) {
+					t += `<span class='mediumorchid'>increasing ${his} dislike of you.</span>`;
+				} else {
+					t += `<span class='mediumorchid'>increasing ${his} hatred of you.</span>`;
+				}
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.devotion += (1*_vignette.effect);
+		} else if (_vignette.type == "trust") {
+			if (_vignette.effect > 0) {
+				if (slave.trust > 20) {
+					t += `<span class='mediumaquamarine'>increasing ${his} trust in you.</span>`;
+				} else if (slave.trustt > -10) {
+					t += `<span class='mediumaquamarine'>reducing ${his} fear of you.</span>`;
+				} else {
+					t += `<span class='mediumaquamarine'>reducing ${his} terror of you.</span>`;
+				}
+			} else if (_vignette.effect < 0) {
+				if (slave.trust > 20) {
+					t += `<span class='gold'>reducing ${his} trust in you.</span>`;
+				} else if (slave.trust > -20) {
+					t += `<span class='gold'>increasing ${his} fear of you.</span>`;
+				} else {
+					t += `<span class='gold'>increasing ${his} terror of you.</span>`;
+				}
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.trust += (1*_vignette.effect);
+		} else if (_vignette.type == "health") {
+			if (_vignette.effect > 0) {
+				t += `<span class='green'>improving ${his} health.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>affecting ${his} health.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.health += (2*_vignette.effect);
+		} else {
+			if (_vignette.effect > 0) {
+				t += `<span class='green'>gaining you a bit of reputation.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>losing you a bit of reputation.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			V.rep += Math.trunc(V.FResult*_vignette.effect*0.1);
+		}
+	}
+
 	return t;
 }
 
@@ -10800,7 +10886,7 @@ window.saServant = function saServant(slave) {
 					t += ` However, ${his} inability to hear often leaves ${him} oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`;
 					V.cash += (V.stewardessBonus/4);
 				} else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) {
-					t += `  However, ${he} often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`;
+					t += ` However, ${he} often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`;
 					V.cash += (V.stewardessBonus/2);
 				} else {
 					V.cash += V.stewardessBonus;
@@ -10860,10 +10946,6 @@ window.saServant = function saServant(slave) {
 		t += ` ${His} bad vision makes ${him} a worse servant.`;
 	}
 
-	if ((slave.hears <= -1 && slave.earwear != "hearing aids") || (slave.earwear == "muffling ear plugs") || (slave.earwear == "deafening ear plugs")) {
-		t += ` ${His} bad hearing makes ${him} a worse servant.`;
-	}
-
 	if (slave.lactation > 0) {
 		t += ` Since ${he} is lactating, `;
 		if (slave.devotion > 20 || slave.trust < -20) {
@@ -10874,6 +10956,85 @@ window.saServant = function saServant(slave) {
 		t += `as a drink dispenser at mealtimes, and makes a meaningful contribution to ${his} fellow slaves' nutrition in concert with the feeding systems.`;
 	}
 
+	if (V.showVignettes == 1) {
+		var _vignette = GetVignette(slave);
+		t += ` __This week__ ${_vignette.text} `
+		if (_vignette.type == "cash") {
+			if (_vignette.effect > 0) {
+				t += `<span class='yellowgreen'>making you an extra ${cashFormat(Math.trunc(V.FResult*_vignette.effect))}.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>losing you ${cashFormat(Math.abs(Math.trunc(V.FResult*_vignette.effect)))}.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			V.cash += Math.trunc(V.FResult*_vignette.effect);
+		} else if (_vignette.type == "devotion") {
+			if (_vignette.effect > 0) {
+				if (slave.devotion > 50) {
+					t += `<span class='hotpink'>increasing ${his} devotion to you.</span>`;
+				} else if (slave.devotion >= -20) {
+					t += `<span class='hotpink'>increasing ${his} acceptance of you.</span>`;
+				} else if (slave.devotion > -10) {
+					t += `<span class='hotpink'>reducing ${his} dislike of you.</span>`;
+				} else {
+					t += `<span class='hotpink'>reducing ${his} hatred of you.</span>`;
+				}
+			} else if (_vignette.effect < 0) {
+				if (slave.devotion > 50) {
+					t += `<span class='mediumorchid'>reducing ${his} devotion to you.</span>`;
+				} else if (slave.devotion >= -20) {
+					t += `<span class='mediumorchid'>reducing ${his} acceptance of you.</span>`;
+				} else if (slave.devotion > -10) {
+					t += `<span class='mediumorchid'>increasing ${his} dislike of you.</span>`;
+				} else {
+					t += `<span class='mediumorchid'>increasing ${his} hatred of you.</span>`;
+				}
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.devotion += (1*_vignette.effect);
+		} else if (_vignette.type == "trust") {
+			if (_vignette.effect > 0) {
+				if (slave.trust > 20) {
+					t += `<span class='mediumaquamarine'>increasing ${his} trust in you.</span>`;
+				} else if (slave.trustt > -10) {
+					t += `<span class='mediumaquamarine'>reducing ${his} fear of you.</span>`;
+				} else {
+					t += `<span class='mediumaquamarine'>reducing ${his} terror of you.</span>`;
+				}
+			} else if (_vignette.effect < 0) {
+				if (slave.trust > 20) {
+					t += `<span class='gold'>reducing ${his} trust in you.</span>`;
+				} else if (slave.trust > -20) {
+					t += `<span class='gold'>increasing ${his} fear of you.</span>`;
+				} else {
+					t += `<span class='gold'>increasing ${his} terror of you.</span>`;
+				}
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.trust += (1*_vignette.effect);
+		} else if (_vignette.type == "health") {
+			if (_vignette.effect > 0) {
+				t += `<span class='green'>improving ${his} health.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>affecting ${his} health.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.health += (2*_vignette.effect);
+		} else {
+			if (_vignette.effect > 0) {
+				t += `<span class='green'>gaining you a bit of reputation.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>losing you a bit of reputation.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			V.rep += Math.trunc(V.FResult*_vignette.effect*0.1);
+		}
+	}
+
 	return t;
 };
 
@@ -25196,8 +25357,10 @@ window.GetVignette = function GetVignette(slave) {
 	const hers = pronouns.possessivePronoun;
 	const himself = pronouns.objectReflexive;
 	const boy = pronouns.noun;
+	const He = capFirstChar(he);
+	const His = capFirstChar(his);
 
-	if (slave.assignment === "whore" || slave.assignment === "work in the brothel" || slave.assignment === "be the Madam") {
+	if (slave.assignment === "whore" || slave.assignment === "work in the brothel") {
 		let seed = jsRandom(1, 10);
 		switch (seed) {
 			case 1:
@@ -25361,6 +25524,11 @@ window.GetVignette = function GetVignette(slave) {
 						type: "rep",
 						effect: -1,
 					});
+					vignettes.push({
+						text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`,
+						type: "health",
+						effect: -1,
+					});
 					break;
 				case "cumslut":
 					vignettes.push({
@@ -25410,7 +25578,7 @@ window.GetVignette = function GetVignette(slave) {
 						text: `${he} earned extra gratitude from a citizen who appreciated a nice rear, even if it is off limits,`,
 						type: "rep",
 						effect: 1,
-					}); ;
+					});
 					vignettes.push({
 						text: `${he} disgusted a customer who didn't know how much butts turned them off until ${he} put ${his} hands on theirs,`,
 						type: "rep",
@@ -25422,7 +25590,7 @@ window.GetVignette = function GetVignette(slave) {
 						text: `${he} deeply impressed a customer by orgasming to nothing but the feeling of them sucking ${his} nipples,`,
 						type: "rep",
 						effect: 1,
-					}); ;
+					});
 					vignettes.push({
 						text: `${he} disappointed a female customer who didn't know how uninterested she was in nipple play before trying it,`,
 						type: "rep",
@@ -25459,6 +25627,11 @@ window.GetVignette = function GetVignette(slave) {
 						type: "rep",
 						effect: -1,
 					});
+					vignettes.push({
+						text: `"a group of overzealous customers gangbanging ${him} got a little too excited hearing ${him} get off on abuse, leaving ${him} sore and injured,`,
+						type: "health",
+						effect: -1,
+					});
 					break;
 				case "dom":
 					vignettes.push({
@@ -25499,6 +25672,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: -1,
 				});
+				vignettes.push({
+					text: `${he} was slapped by a customer who was angry at ${his} rude remarks,`,
+					type: "health",
+					effect: -1,
+				});
 				break;
 			case "odd":
 				vignettes.push({
@@ -25582,6 +25760,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "cash",
 					effect: -1,
 				});
+				vignettes.push({
+					text: `a customer impatient with how slowly ${he} was disrobing ripped off ${his} clothes and roughed ${him} up,`,
+					type: "health",
+					effect: -1,
+				});
 				break;
 			case "idealistic":
 				vignettes.push({
@@ -25702,6 +25885,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} adoringly kisses the feet of a local socialite who leaves ${him} a generous tip,`,
+					type: "cash",
+					effect: 1,
+				});
 				break;
 			case "adores men":
 				vignettes.push({
@@ -25709,6 +25897,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} practically worships a minor celebrity, eagerly slobbering over his cock and covering ${himself} with his cum,`,
+					type: "rep",
+					effect: 1,
+				});
 				break;
 			case "insecure":
 				vignettes.push({
@@ -25730,6 +25923,16 @@ window.GetVignette = function GetVignette(slave) {
 					type: "cash",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} manages to convince a skeptical businessman about the merits of using slaves,`,
+					type: "rep",
+					effect: 1,
+				});
+				vignettes.push({
+					text: `${his} enthusiastic discussion of the merits of slavery convinced a young woman to sell herself into slavery, so the new owner gave you a finder's fee,`,
+					type: "cash",
+					effect: 1,
+				});
 		}
 		switch (slave.sexualQuirk) {
 			case "gagfuck queen":
@@ -25764,6 +25967,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizeable tip,`,
+					type: "cash",
+					effect: 1,
+				});
 				break;
 			case "romantic":
 				vignettes.push({
@@ -25859,11 +26067,19 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		} else if (slave.livingRules === "spare") {
-			vignettes.push({
-				text: `${he} got a poor night's sleep in the noisy dormitory, which took the shine off ${his} efforts for the whole day,`,
-				type: "rep",
-				effect: -1,
-			});
+			if (canHear(slave)) {
+				vignettes.push({
+					text: `${he} got a poor night's sleep in the noisy dormitory, which took the shine off ${his} efforts for the whole day,`,
+					type: "rep",
+					effect: -1,
+				});
+			} else {
+				vignettes.push({
+					text: `the noise from the dormitory could not possibly disturb ${his} sleep, so ${he} got much better sleep than ${he} would have otherwise,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (slave.releaseRules === "permissive" || slave.releaseRules === "masturbation") {
 			vignettes.push({
@@ -26054,6 +26270,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: -1,
 			});
 		}
+		if (slave.balls == 0 && slave.dick > 0) {
+			vignettes.push({
+				text: `a slave trainer privately studied ${him} as an example of a slave with well done gelding surgery,`,
+				type: "cash",
+				effect: 1,
+			});
+		}
 		if (canDoVaginal(slave)) {
 			if (slave.vagina === 1) {
 				vignettes.push({
@@ -26097,6 +26320,20 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
+		if (slave.visualAge > 40) {
+			if (slave.face > 10 && slave.race == "asian") {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who loves well-preserved asian ladies,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+			vignettes.push({
+				text: `${he} earned repeat business from a customer with serious mommy issues,`,
+				type: "cash",
+				effect: 1,
+			});
+		}
 		if (slave.face > 40) {
 			vignettes.push({
 				text: `${he} lost a potential customer who was so intimidated by ${his} great beauty that they decided to find a homelier whore,`,
@@ -26160,9 +26397,24 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
+		if (!canWalk(slave)) {
+			vignettes.push({
+				text: `${his} lack of mobility severely hindered ${his} attempts to find customers,`,
+				type: "cash",
+				effect: -1,
+			});
+		} else {
+			if (slave.boobs > 1500 && slave.boobsImplant === 0) {
+				vignettes.push({
+					text: `a young customer hired ${him} to jump rope so they could watch ${his} massive natural breasts flop around,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+		}
 		if (slave.amp === 1) {
 			vignettes.push({
-				text: `${he} disappointed a customer who thought they would enjoy fucking an amputee, but found it revolting,`,
+				text: `${he} disappointed a customer who thought they would enjoy fucking a quadruple amputee, but found it revolting,`,
 				type: "rep",
 				effect: -1,
 			});
@@ -26246,21 +26498,13 @@ window.GetVignette = function GetVignette(slave) {
 				type: "cash",
 				effect: -1,
 			});
-		} else {
-			if (slave.heels === 1 && !(["heels", "pumps", "extreme heels", "boots"].includes(slave.shoes))) {
-				vignettes.push({
-					text: `${he} enticed a new customer who had never really considered buttsex before they saw ${him} crawling along with ${his} asshole vulnerable,`,
-					type: "cash",
-					effect: 1,
-				});
-			}
-			if (slave.boobs > 1500 && slave.boobsImplant === 0) {
-				vignettes.push({
-					text: `a young customer hired ${him} to jump rope so they could watch ${his} massive natural breasts flop around,`,
-					type: "cash",
-					effect: 1,
-				});
-			}
+		}
+		if (slave.heels === 1 && !(["heels", "pumps", "extreme heels", "boots"].includes(slave.shoes))) {
+			vignettes.push({
+				text: `${he} enticed a new customer who had never really considered buttsex before they saw ${him} crawling along with ${his} asshole vulnerable,`,
+				type: "cash",
+				effect: 1,
+			});
 		}
 		if (slave.vaginalAccessory === "chastity belt") {
 			vignettes.push({
@@ -26269,6 +26513,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
+		if (slave.collar === "shock punishment") {
+			vignettes.push({
+				text: `a customer discovered that the remote control for his video screen also worked on ${his} shock collar,`,
+				type: "trust",
+				effect: -1,
+			});
+		}
 		if (slave.fetish === "mindbroken") {
 			vignettes.push({
 				text: `a customer really enjoyed being able to treat ${him} however they liked without eliciting a reaction,`,
@@ -26283,6 +26534,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: -1,
 			});
 		}
+		if (slave.accent > 2) {
+			vignettes.push({
+				text: `a wealthy foreign tourist was so glad to hear somebody speaking his native language that he hired ${him} for the whole week,`,
+				type: "cash",
+				effect: 1,
+			});
+		}
 		if (slave.face > 10 && canDoAnal(slave)) {
 			if (slave.dick > 0) {
 				if (slave.fetish === "buttslut" && jsRandom(0, 100) < 50) {
@@ -26364,19 +26622,42 @@ window.GetVignette = function GetVignette(slave) {
 			});
 		}
 
-		if (V.arcologies[0].FSSupremacist !== "unset" && slave.race === V.arcologies[0].FSSupremacistRace) {
-			vignettes.push({
-				text: `${he} lost a customer who couldn't bear to see a beautiful ${V.arcologies[0].FSSupremacistRace} be a whore,`,
-				type: "cash",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSSupremacist !== "unset") {
+			if (slave.race === V.arcologies[0].FSSupremacistRace) {
+				vignettes.push({
+					text: `${he} lost a customer who couldn't bear to see a beautiful ${V.arcologies[0].FSSupremacistRace} be a whore,`,
+					type: "cash",
+					effect: -1,
+				});
+			}
+			if (V.arcologies[0].FSSupremacistRace === "asian") {
+				vignettes.push({
+					text: `${he} was hired to be the special guest at a rather unconvential seijin-shiki celebration party,`,
+					type: "cash",
+					effect: 1,
+				});
+			} else if (V.arcologies[0].FSSupremacistRace === "semitic") {
+				vignettes.push({
+					text: `${he} was hired to be the special guest at a rather unconvential bar mitzvah celebration party,`,
+					type: "cash",
+					effect: 1,
+				});
+			} else if (V.arcologies[0].FSSupremacistRace === "white") {
+				vignettes.push({
+					text: `${he} was hired to be the special guest at a rather unconvential Jugendweihe celebration party,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSSubjugationist !== "unset" && slave.race === V.arcologies[0].FSSubjugationistRace) {
-			vignettes.push({
-				text: `${he} had a bad time in general, since most of ${his} customers didn't care about a ${V.arcologies[0].FSSubjugationistRace} prostitute's health or well-being,`,
-				type: "health",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSSubjugationist !== "unset") {
+			if (slave.race === V.arcologies[0].FSSubjugationistRace) {
+				vignettes.push({
+					text: `${he} had a bad time in general, since most of ${his} customers didn't care about a ${V.arcologies[0].FSSubjugationistRace} prostitute's health or well-being,`,
+					type: "health",
+					effect: -1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSYouthPreferentialist !== "unset") {
 			if (slave.visualAge > 35) {
@@ -26403,12 +26684,14 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSGenderFundamentalist !== "unset" && slave.visualAge > 25) {
-			vignettes.push({
-				text: `${he} got repeat business from a customer who thinks ${he} resembles their ex-wife, who would never let them fuck her butt,`,
-				type: "cash",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSGenderFundamentalist !== "unset") {
+			if (slave.visualAge > 25) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who thinks ${he} resembles their ex-wife, who would never let them fuck her butt,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSRepopulationFocus !== "unset") {
 			if (slave.pregType > 1 && slave.pregKnown > 1 && slave.belly >= 10000) {
@@ -26418,12 +26701,21 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSRestart !== "unset" && canGetPregnant(slave)) {
-			vignettes.push({
-				text: `${he} got repeat business from a customer who misses the risk of getting a ${boy} pregnant,`,
-				type: "cash",
-				effect: 3,
-			});
+			if (slave.preg > 10 && slave.pregKnown > 1 && slave.bellyPreg >= 5000) {
+				vignettes.push({
+					text: `a customer loved ${his} pregnant belly so much that he came back for repeat business,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+		} else if (V.arcologies[0].FSRestart !== "unset") {
+			if (canGetPregnant(slave)) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who misses the risk of getting a ${boy} pregnant,`,
+					type: "cash",
+					effect: 3,
+				});
+			}
 		}
 		if (V.arcologies[0].FSPaternalist !== "unset") {
 			if (slave.intelligence > 1) {
@@ -26433,12 +26725,36 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSDegradationist !== "unset" && canTalk(slave) && slave.voice > 2) {
+		} else if (V.arcologies[0].FSDegradationist !== "unset") {
+			if (canTalk(slave) && slave.voice > 2) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who prefers ${boy}s with high-pitched screams,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+			if (slave.visualAge > 40) {
+				vignettes.push({
+					text: `a customer wrote a note on ${his} face that said: 'Retire it to an arcade',`,
+					type: "trust",
+					effect: -1,
+				});
+			}
 			vignettes.push({
-				text: `${he} got repeat business from a customer who prefers ${boy}s with high-pitched screams,`,
+				text: `a rich customer had fun seeing how much money he could cram in ${his} holes without using any lube,`,
 				type: "cash",
 				effect: 1,
 			});
+			vignettes.push({
+				text: `a displeased customer grabbed a permanent marker and wrote a critique of ${his} sex skills on ${his} chest,`,
+				type: "rep",
+				effect: -1,
+			});
+			vignettes.push({
+				text: `two sadistic customers had fun roughing ${him} up,`,
+				type: "health",
+				effect: -1,
+			});
 		}
 		if (V.arcologies[0].FSBodyPurist !== "unset") {
 			if (slave.boobsImplant > 0) {
@@ -26448,12 +26764,21 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSTransformationFetishist !== "unset" && slave.boobsImplant === 0) {
-			vignettes.push({
-				text: `${he} got repeat business from a customer who wants to keep their fetish for natural breasts in the closet,`,
-				type: "cash",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+			if (slave.boobsImplant === 0) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who wants to keep their fetish for natural breasts in the closet,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+			if (slave.boobsImplant >= 500) {
+				vignettes.push({
+					text: `a photographer won an award for an artistic close up of one of ${his} implant-heavy tits,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") {
 			if (canTalk(slave) && slave.voice > 2) {
@@ -26470,13 +26795,15 @@ window.GetVignette = function GetVignette(slave) {
 					effect: -1,
 				});
 			}
-		} else if (V.arcologies[0].FSAssetExpansionist !== "unset" && slave.boobs < 300) {
-			vignettes.push({
-				text: `${he} got repeat business from a customer who wants to keep their fetish for flat chested ${boy}s in the closet,`,
-				type: "cash",
-				effect: 1,
-			});
-		}
+		} else if (V.arcologies[0].FSAssetExpansionist !== "unset") {
+			if (slave.boobs < 300) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who wants to keep their fetish for flat chested ${boy}s in the closet,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+		}
 		if (V.arcologies[0].FSPastoralist !== "unset") {
 			if (slave.lactation === 0) {
 				vignettes.push({
@@ -26493,33 +26820,41 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
-		if (V.arcologies[0].FSPhysicalIdealist !== "unset" && slave.muscles <= 95) {
-			vignettes.push({
-				text: `${he} lost a customer who could barely believe that ${he} wasn't capable of holding ${himself} in a handstand,`,
-				type: "cash",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSPhysicalIdealist !== "unset") {
+			if (slave.muscles <= 95) {
+				vignettes.push({
+					text: `${he} lost a customer who could barely believe that ${he} wasn't capable of holding ${himself} in a handstand,`,
+					type: "cash",
+					effect: -1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSChattelReligionist !== "unset" && slave.behavioralFlaw === "devout") {
-			vignettes.push({
-				text: `${he} got repeat business from a customer who desperately wants their cock to be the one that converts ${him},`,
-				type: "cash",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSChattelReligionist !== "unset") {
+			if (slave.behavioralFlaw === "devout") {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who desperately wants their cock to be the one that converts ${him},`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSRomanRevivalist !== "unset" && slave.race === "white" && slave.height >= 185) {
-			vignettes.push({
-				text: `${he} attracted a customer who thought ${his} appearance worthy of a lusty northern barbarian,`,
-				type: "cash",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSRomanRevivalist !== "unset") {
+			if (slave.race === "white" && slave.height >= 185) {
+				vignettes.push({
+					text: `${he} attracted a customer who thought ${his} appearance worthy of a lusty northern barbarian,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSAztecRevivalist !== "unset" && slave.devotion > 75 && slave.intelligence >= 2) {
-			vignettes.push({
-				text: `${he} indulged a citizen by following a fertility ritual completely,`,
-				type: "rep",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSAztecRevivalist !== "unset") {
+			if (slave.devotion > 75 && slave.intelligence >= 2) {
+				vignettes.push({
+					text: `${he} indulged a citizen by following a fertility ritual completely,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSEgyptianRevivalist !== "unset") {
 			vignettes.push({
@@ -26528,16 +26863,39 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
-		if (V.arcologies[0].FSEdoRevivalist !== "unset" && slave.face > 40 && slave.intelligence > 1) {
+		if (V.arcologies[0].FSEdoRevivalist !== "unset") {
+			if (slave.face > 40 && slave.intelligence > 1) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who wished to do nothing more than converse with a beautiful and intelligent ${boy},`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 			vignettes.push({
-				text: `${he} got repeat business from a customer who wished to do nothing more than converse with a beautiful and intelligent ${boy},`,
+				text: `${he} was hired to be the special guest at a rather unconvential genpuku celebration party,`,
 				type: "cash",
 				effect: 1,
 			});
 		}
-		if (V.arcologies[0].FSArabianRevivalist !== "unset" && slave.entertainSkill >= 100 && canTalk(slave) && slave.voice > 0 && slave.accent < 2) {
+		if (V.arcologies[0].FSArabianRevivalist !== "unset") {
+			if (slave.entertainSkill >= 100 && canTalk(slave) && slave.voice > 0 && slave.accent < 2) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who prefers prostitutes who can tell lovely stories,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+		}
+		if (V.arcologies[0].FSChineseRevivalist !== "unset") {
+			if (slave.dick > 0 && slave.balls == 2) {
+				vignettes.push({
+					text: `a citizen admired ${his} lack of balls and praised ${him} for being like the eunuchs in Chinese history,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 			vignettes.push({
-				text: `${he} got repeat business from a customer who prefers prostitutes who can tell lovely stories,`,
+				text: `${he} was hired to be the special guest at a rather unconvential Guan Li celebration party,`,
 				type: "cash",
 				effect: 1,
 			});
@@ -26578,7 +26936,7 @@ window.GetVignette = function GetVignette(slave) {
 			type: "trust",
 			effect: -1,
 		});
-	} else if (slave.assignment === "serve the public" || slave.assignment === "serve in the club" || slave.assignment === "be the DJ") {
+	} else if (slave.assignment === "serve the public" || slave.assignment === "serve in the club") {
 		let seed = jsRandom(1, 10);
 		switch (seed) {
 			case 1:
@@ -26742,6 +27100,11 @@ window.GetVignette = function GetVignette(slave) {
 						type: "rep",
 						effect: -1,
 					});
+					vignettes.push({
+						text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`,
+						type: "health",
+						effect: -1,
+					});
 					break;
 				case "cumslut":
 					vignettes.push({
@@ -26791,7 +27154,7 @@ window.GetVignette = function GetVignette(slave) {
 						text: `${he} earned extra gratitude from a citizen who appreciated a nice rear, even if it is off limits,`,
 						type: "rep",
 						effect: 1,
-					}); ;
+					});
 					vignettes.push({
 						text: `${he} disgusted a citizen who didn't know how much butts turned them off until ${he} put ${his} hands on theirs,`,
 						type: "rep",
@@ -26803,7 +27166,7 @@ window.GetVignette = function GetVignette(slave) {
 						text: `${he} deeply impressed a citizen by orgasming to nothing but the feeling of them sucking ${his} nipples,`,
 						type: "rep",
 						effect: 1,
-					}); ;
+					});
 					vignettes.push({
 						text: `${he} disappointed a female citizen who didn't know how uninterested she was in nipple play before trying it,`,
 						type: "rep",
@@ -26840,6 +27203,11 @@ window.GetVignette = function GetVignette(slave) {
 						type: "rep",
 						effect: -1,
 					});
+					vignettes.push({
+						text: `a group of overzealous citizens gangbanging ${him} got a little too excited hearing ${him} get off on abuse, leaving ${him} sore and injured,`,
+						type: "health",
+						effect: -1,
+					});
 					break;
 				case "dom":
 					vignettes.push({
@@ -26880,6 +27248,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: -1,
 				});
+				vignettes.push({
+					text: `${he} was slapped by a citizen who was angry at ${his} rude remarks,`,
+					type: "health",
+					effect: -1,
+				});
 				break;
 			case "odd":
 				vignettes.push({
@@ -26963,6 +27336,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: -1,
 				});
+				vignettes.push({
+					text: `a citizen impatient with how slowly ${he} was disrobing ripped off ${his} clothes and roughed ${him} up,`,
+					type: "health",
+					effect: -1,
+				});
 				break;
 			case "idealistic":
 				vignettes.push({
@@ -27083,6 +27461,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} adoringly kisses the feet of a local socialite who leaves ${him} a generous tip,`,
+					type: "cash",
+					effect: 1,
+				});
 				break;
 			case "adores men":
 				vignettes.push({
@@ -27090,6 +27473,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} practically worships a minor celebrity, eagerly slobbering over his cock and covering ${himself} with his cum,`,
+					type: "rep",
+					effect: 1,
+				});
 				break;
 			case "insecure":
 				vignettes.push({
@@ -27111,6 +27499,16 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} manages to convince a skeptical businessman about the merits of using slaves,`,
+					type: "rep",
+					effect: 1,
+				});
+				vignettes.push({
+					text: `${his} enthusiastic discussion of the merits of slavery convinced a young woman to sell herself into slavery, so the new owner gave you a finder's fee,`,
+					type: "cash",
+					effect: 1,
+				});
 		}
 		switch (slave.sexualQuirk) {
 			case "gagfuck queen":
@@ -27136,12 +27534,17 @@ window.GetVignette = function GetVignette(slave) {
 				break;
 			case "tease":
 				vignettes.push({
-					text: `${he} convinces a citizen who's never had sex with a street slut to patronize ${his} with some truly inspired flirting,`,
+					text: `${he} convinces a citizen who's never had sex with a street slut to patronize ${him} with some truly inspired flirting,`,
+					type: "rep",
+					effect: 1,
+				});
+				vignettes.push({
+					text: `a few partiers were so impressed with ${his} provocative teasing that they repeated ${his} wit to friends,`,
 					type: "rep",
 					effect: 1,
 				});
 				vignettes.push({
-					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${his} sizeable tip,`,
+					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizeable tip,`,
 					type: "cash",
 					effect: 1,
 				});
@@ -27235,16 +27638,24 @@ window.GetVignette = function GetVignette(slave) {
 		}
 		if (slave.livingRules === "luxurious") {
 			vignettes.push({
-				text: `${he} got a truly perfect night's sleep, which put ${his} in the right frame of mind for the whole day,`,
+				text: `${he} got a truly perfect night's sleep, which put ${him} in the right frame of mind for the whole day,`,
 				type: "rep",
 				effect: 1,
 			});
 		} else if (slave.livingRules === "spare") {
-			vignettes.push({
-				text: `${he} got a poor night's sleep in the noisy dormitory, which took the shine off ${his} efforts for the whole day`,
-				type: "rep",
-				effect: -1,
-			});
+			if (canHear(slave)) {
+				vignettes.push({
+					text: `${he} got a poor night's sleep in the noisy dormitory, which took the shine off ${his} efforts for the whole day,`,
+					type: "rep",
+					effect: -1,
+				});
+			} else {
+				vignettes.push({
+					text: `the noise from the dormitory could not possibly disturb ${his} sleep, so ${he} got much better sleep than ${he} would have otherwise,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (slave.releaseRules === "permissive" || slave.releaseRules === "masturbation") {
 			vignettes.push({
@@ -27428,6 +27839,13 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
+		if (slave.balls == 0 && slave.dick > 0) {
+			vignettes.push({
+				text: `a slave trainer pointed ${him} out as an example of a slave with well done gelding surgery,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
 		if (slave.balls > 3) {
 			vignettes.push({
 				text: `${he} disappoints a citizen who wants ${him} to look like a natural girl, since ${his} balls are too big to be hidden,`,
@@ -27492,6 +27910,13 @@ window.GetVignette = function GetVignette(slave) {
 			});
 		}
 		if (slave.visualAge > 40) {
+			if (slave.face > 10 && slave.race == "asian") {
+				vignettes.push({
+					text: `${he} got extra gratitude from a citizen who loves well-preserved asian ladies,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 			vignettes.push({
 				text: `${he} earned extra gratitude from a citizen with serious mommy issues,`,
 				type: "rep",
@@ -27541,20 +27966,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
-		if (slave.amp === 1) {
+		if (!canWalk(slave)) {
 			vignettes.push({
-				text: `${he} disappointed a citizen who thought they would enjoy fucking an amputee, but found it revolting,`,
+				text: `${his} lack of mobility severely hindered ${his} attempts to please citizens,`,
 				type: "rep",
 				effect: -1,
 			});
 		} else {
-			if (slave.heels === 1 && !(["heels", "pumps", "extreme heels", "boots"].includes(slave.shoes))) {
-				vignettes.push({
-					text: `${he} enticed a new patron who had never really considered buttsex before they saw ${him} crawling along with ${his} asshole vulnerable,`,
-					type: "rep",
-					effect: 1,
-				});
-			}
 			if (slave.boobs > 1500 && slave.boobsImplant === 0) {
 				vignettes.push({
 					text: `a young citizen convinced ${him} to jump rope so they could watch ${his} massive natural breasts flop around,`,
@@ -27563,6 +27981,100 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
+		if (slave.amp === 1) {
+			vignettes.push({
+				text: `${he} disappointed a citizen who thought they would enjoy fucking a quadruple amputee, but found it revolting,`,
+				type: "rep",
+				effect: -1,
+			});
+		} else if (slave.amp === -1) {
+			vignettes.push({
+				text: `a strange citizen was excited by the sight of ${his} prosthetic limbs,`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: `a citizen was disgusted at the thought of ${his} basic prosthetic limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+			vignettes.push({
+				text: `a citizen was put off by ${his} prosthetic limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+		} else if (slave.amp === -2) {
+			vignettes.push({
+				text: `a citizen was excited by ${his} vibrating fingertips,`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: "a citizen was indifferent to the thought of having sex with a slave with artificial limbs,",
+				type: "rep",
+				effect: 0,
+			});
+			vignettes.push({
+				text: `a citizen was put off by ${his} crude artificial limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+		} else if (slave.amp === -3) {
+			vignettes.push({
+				text: `a strange citizen was excited by the sight of ${his} artificial limbs,`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: "a citizen was indifferent to the thought of having sex with a slave with artificial limbs,",
+				type: "rep",
+				effect: 0,
+			});
+			vignettes.push({
+				text: `a citizen was put off by the sight of ${his} prosthetic limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+		} else if (slave.amp === -4) {
+			vignettes.push({
+				text: `a citizen was excited by the thought of having sex with a slave with p-limbs, but was scared off by ${his} combat p-limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+			vignettes.push({
+				text: "a citizen was indifferent to the thought of having sex with a slave with artificial limbs,",
+				type: "rep",
+				effect: 0,
+			});
+			vignettes.push({
+				text: `a citizen was greatly intimidated by ${his} combat p-limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+		} else if (slave.amp === -5) {
+			vignettes.push({
+				text: `a citizen was fascinated by ${his} cybernetic limbs, and spent almost as much time examining them as they did having sex with ${him},`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: "a citizen was excited by the thought of having sex with a cybernetically enhanced slave,",
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: `a citizen was greatly intimidated by the sight of ${his} cybernetic limbs and was frightened away,`,
+				type: "rep",
+				effect: -1,
+			});
+		}
+		if (slave.heels === 1 && !(["heels", "pumps", "extreme heels", "boots"].includes(slave.shoes))) {
+			vignettes.push({
+				text: `${he} enticed a new patron who had never really considered buttsex before they saw ${him} crawling along with ${his} asshole vulnerable,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
 		if (slave.vaginalAccessory === "chastity belt") {
 			vignettes.push({
 				text: `a wavering citizen who was disappointed that ${his} pussy is unavailable decided to try ${his} ass instead,`,
@@ -27570,6 +28082,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
+		if (slave.collar === "shock punishment") {
+			vignettes.push({
+				text: `a citizen discovered that the remote control for his video screen also worked on ${his} shock collar,`,
+				type: "trust",
+				effect: -1,
+			});
+		}
 		if (slave.fetish === "mindbroken") {
 			vignettes.push({
 				text: `a citizen really enjoyed being able to treat ${him} however they liked without eliciting a reaction,`,
@@ -27584,6 +28103,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: -1,
 			});
 		}
+		if (slave.accent > 2) {
+			vignettes.push({
+				text: `a wealthy immigrant was so glad to hear somebody speaking his native language that he hired ${him} for the whole week,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
 		if (slave.face > 10 && canDoAnal(slave)) {
 			if (slave.dick > 0) {
 				if (slave.fetish === "buttslut" && jsRandom(0, 100) < 50) {
@@ -27665,19 +28191,42 @@ window.GetVignette = function GetVignette(slave) {
 			});
 		}
 
-		if (V.arcologies[0].FSSupremacist !== "unset" && slave.race === V.arcologies[0].FSSupremacistRace) {
-			vignettes.push({
-				text: `${he} disappointed a citizen who couldn't bear to see a beautiful ${V.arcologies[0].FSSupremacistRace} be a public slut,`,
-				type: "rep",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSSupremacist !== "unset") {
+			if (slave.race === V.arcologies[0].FSSupremacistRace) {
+				vignettes.push({
+					text: `${he} disappointed a citizen who couldn't bear to see a beautiful ${V.arcologies[0].FSSupremacistRace} be a public slut,`,
+					type: "rep",
+					effect: -1,
+				});
+			}
+			if (V.arcologies[0].FSSupremacistRace === "asian") {
+				vignettes.push({
+					text: `${he} was invited to and livened up a rather unconvential seijin-shiki celebration party,`,
+					type: "rep",
+					effect: 1,
+				});
+			} else if (V.arcologies[0].FSSupremacistRace === "semitic") {
+				vignettes.push({
+					text: `${he} was invited to and livened up a rather unconvential bar mitzvah celebration party,`,
+					type: "rep",
+					effect: 1,
+				});
+			} else if (V.arcologies[0].FSSupremacistRace === "white") {
+				vignettes.push({
+					text: `${he} was invited to and livened up a rather unconvential Jugendweihe celebration party,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSSubjugationist !== "unset" && slave.race === V.arcologies[0].FSSubjugationistRace) {
-			vignettes.push({
-				text: `${he} had a bad time in general, since most of the citizens who used ${him} didn't care about a ${V.arcologies[0].FSSubjugationistRace} prostitute's health or well-being,`,
-				type: "health",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSSubjugationist !== "unset") {
+			if (slave.race === V.arcologies[0].FSSubjugationistRace) {
+				vignettes.push({
+					text: `${he} had a bad time in general, since most of the citizens who used ${him} didn't care about a ${V.arcologies[0].FSSubjugationistRace} prostitute's health or well-being,`,
+					type: "health",
+					effect: -1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSYouthPreferentialist !== "unset") {
 			if (slave.visualAge > 35) {
@@ -27704,12 +28253,14 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSGenderFundamentalist !== "unset" && slave.visualAge > 25) {
-			vignettes.push({
-				text: `${he} gratified a citizen who thinks ${he} resembles his ex-wife, who would never let him fuck her butt,`,
-				type: "rep",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSGenderFundamentalist !== "unset") {
+			if (slave.visualAge > 25) {
+				vignettes.push({
+					text: `${he} gratified a citizen who thinks ${he} resembles his ex-wife, who would never let him fuck her butt,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSRepopulationFocus !== "unset") {
 			if (slave.pregType > 1 && slave.pregKnown > 1 && slave.belly >= 10000) {
@@ -27719,12 +28270,21 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSRestart !== "unset" && canGetPregnant(slave)) {
-			vignettes.push({
-				text: `${he} gratified a citizen who misses the risk of getting a ${boy} pregnant,`,
-				type: "rep",
-				effect: 1,
-			});
+			if (slave.preg > 10 && slave.pregKnown > 1 && slave.bellyPreg >= 5000) {
+				vignettes.push({
+					text: `a citizen loved ${his} pregnant belly so much that he came back for repeat service,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+		} else if (V.arcologies[0].FSRestart !== "unset") {
+			if (canGetPregnant(slave)) {
+				vignettes.push({
+					text: `${he} gratified a citizen who misses the risk of getting a ${boy} pregnant,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSPaternalist !== "unset") {
 			if (slave.intelligence > 1) {
@@ -27734,12 +28294,36 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSDegradationist !== "unset" && canTalk(slave) && slave.voice > 2) {
+		} else if (V.arcologies[0].FSDegradationist !== "unset") {
+			if (canTalk(slave) && slave.voice > 2) {
+				vignettes.push({
+					text: `${he} gratified a citizen who prefers ${boy} with high-pitched screams,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+			if (slave.visualAge > 40) {
+				vignettes.push({
+					text: `a citizen wrote a note on ${his} face that said: 'Retire it to an arcade',`,
+					type: "trust",
+					effect: -1,
+				});
+			}
 			vignettes.push({
-				text: `${he} gratified a citizen who prefers ${boy} with high-pitched screams,`,
-				type: "rep",
+				text: `a rich citizen had fun seeing how much money he could cram in ${his} holes without using any lube,`,
+				type: "cash",
 				effect: 1,
 			});
+			vignettes.push({
+				text: `a displeased citizen grabbed a permanent marker and wrote a critique of ${his} sex skills on ${his} chest,`,
+				type: "rep",
+				effect: -1,
+			});
+			vignettes.push({
+				text: `two sadistic citizens had fun roughing ${him} up,`,
+				type: "health",
+				effect: -1,
+			});
 		}
 		if (V.arcologies[0].FSBodyPurist !== "unset") {
 			if (slave.boobsImplant > 0) {
@@ -27749,12 +28333,21 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSTransformationFetishist !== "unset" && slave.boobsImplant === 0) {
-			vignettes.push({
-				text: `${he} gratified a citizen who wants to keep his fetish for natural breasts in the closet,`,
-				type: "rep",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+			if (slave.boobsImplant === 0) {
+				vignettes.push({
+					text: `${he} gratified a citizen who wants to keep his fetish for natural breasts in the closet,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+			if (slave.boobsImplant >= 500) {
+				vignettes.push({
+					text: `a photographer won an award for an artistic close up of one of ${his} implant-heavy tits,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") {
 			if (canTalk(slave) && slave.voice > 2) {
@@ -27771,12 +28364,14 @@ window.GetVignette = function GetVignette(slave) {
 					effect: -1,
 				});
 			}
-		} else if (V.arcologies[0].FSAssetExpansionist !== "unset" && slave.boobs < 300) {
-			vignettes.push({
-				text: `${he} gratified a citizen who wants to keep his fetish for flat chested ${boy}s in the closet,`,
-				type: "rep",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSAssetExpansionist !== "unset") {
+			if (slave.boobs < 300) {
+				vignettes.push({
+					text: `${he} gratified a citizen who wants to keep his fetish for flat chested ${boy}s in the closet,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSPastoralist !== "unset") {
 			if (slave.lactation === 0) {
@@ -27794,33 +28389,41 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
-		if (V.arcologies[0].FSPhysicalIdealist !== "unset" && slave.muscles <= 95) {
-			vignettes.push({
-				text: `${he} disappointed a citizen who could barely believe that ${he} wasn't capable of holding ${himself} in a handstand,`,
-				type: "rep",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSPhysicalIdealist !== "unset") {
+			if (slave.muscles <= 95) {
+				vignettes.push({
+					text: `${he} disappointed a citizen who could barely believe that ${he} wasn't capable of holding ${himself} in a handstand,`,
+					type: "rep",
+					effect: -1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSChattelReligionist !== "unset" && slave.behavioralFlaw === "devout") {
-			vignettes.push({
-				text: `${he} gratified a citizen who desperately wants his cock to be the one that converts ${him},`,
-				type: "rep",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSChattelReligionist !== "unset") {
+			if (slave.behavioralFlaw === "devout") {
+				vignettes.push({
+					text: `${he} gratified a citizen who desperately wants his cock to be the one that converts ${him},`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSRomanRevivalist !== "unset" && slave.race === "white" && slave.height >= 185) {
-			vignettes.push({
-				text: `${he} gratified a citizen who thought ${his} appearance worthy of a lusty northern barbarian,`,
-				type: "rep",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSRomanRevivalist !== "unset") {
+			if (slave.race === "white" && slave.height >= 185) {
+				vignettes.push({
+					text: `${he} gratified a citizen who thought ${his} appearance worthy of a lusty northern barbarian,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSAztecRevivalist !== "unset" && slave.devotion > 75 && slave.intelligence >= 2) {
-			vignettes.push({
-				text: `${he} indulged a citizen by following a fertility ritual completely,`,
-				type: "rep",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSAztecRevivalist !== "unset") {
+			if (slave.devotion > 75 && slave.intelligence >= 2) {
+				vignettes.push({
+					text: `${he} indulged a citizen by following a fertility ritual completely,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSEgyptianRevivalist !== "unset") {
 			vignettes.push({
@@ -27829,16 +28432,39 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
-		if (V.arcologies[0].FSEdoRevivalist !== "unset" && slave.face > 40 && slave.intelligence > 1) {
+		if (V.arcologies[0].FSEdoRevivalist !== "unset") {
+			if (slave.face > 40 && slave.intelligence > 1) {
+				vignettes.push({
+					text: `${he} gratified a citizen who wished to do nothing more than converse with a beautiful and intelligent ${boy},`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 			vignettes.push({
-				text: `${he} gratified a citizen who wished to do nothing more than converse with a beautiful and intelligent ${boy},`,
+				text: `${he} was invited to and livened up a rather unconvential genpuku celebration party,`,
 				type: "rep",
 				effect: 1,
 			});
 		}
-		if (V.arcologies[0].FSArabianRevivalist !== "unset" && slave.entertainSkill >= 100 && canTalk(slave) && slave.voice > 0 && slave.accent < 2) {
+		if (V.arcologies[0].FSArabianRevivalist !== "unset") {
+			if (slave.entertainSkill >= 100 && canTalk(slave) && slave.voice > 0 && slave.accent < 2) {
+				vignettes.push({
+					text: `${he} gratified a citizen who prefers prostitutes who can tell lovely stories,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+		}
+		if (V.arcologies[0].FSChineseRevivalist !== "unset") {
+			if (slave.dick > 0 && slave.balls == 2) {
+				vignettes.push({
+					text: `a citizen admired ${his} lack of balls and praised ${him} for being like the eunuchs in Chinese history,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 			vignettes.push({
-				text: `${he} gratified a citizen who prefers prostitutes who can tell lovely stories,`,
+				text: `${he} was invited to and livened up a rather unconvential Guan Li celebration party,`,
 				type: "rep",
 				effect: 1,
 			});
@@ -27879,6 +28505,286 @@ window.GetVignette = function GetVignette(slave) {
 			type: "trust",
 			effect: -1,
 		});
+	} else if (slave.assignment === "be a servant" || slave.assignment === "work as a servant") {
+		if (slave.fetishKnown === 1) {
+			switch (slave.fetish) {
+				case "cumslut":
+					vignettes.push({
+						text: `when some of your cum accidentally landed on the floor, ${he} cleaned it up with ${his} tongue,`,
+						type: "devotion",
+						effect: 1,
+					});
+					vignettes.push({
+						text: `${he} licked off some sperm from the ground, while cleaning up after an orgy,`,
+						type: "devotion",
+						effect: 0,
+					});
+					break;
+				case "humiliation":
+					vignettes.push({
+						text: `${he} loved getting absolutely filthy while cleaning everything else,`,
+						type: "devotion",
+						effect: 1,
+					});
+			}
+		}
+		switch (slave.behavioralFlaw) {
+			case "arrogant":
+				vignettes.push({
+					text: `${he} refused to clean up a particular nasty room in the penthouse, earning ${himself} harsh punishment,`,
+					type: "trust",
+					effect: -1,
+				});
+				break;
+			case "gluttonous":
+				vignettes.push({
+					text: `${he} was thrilled to be getting rid of leftover food the only way ${he} knew how,`,
+					type: "devotion",
+					effect: 1,
+				});
+		}
+		if (slave.fetish === "mindbroken") {
+			vignettes.push({
+				text: `${he} forgot to sleep and no one bothered to tell ${him} to. ${He} collapsed from exhaustion halfway through the week, but even by then ${he}'d gotten all ${his} work done and then some,`,
+				type: "cash",
+				effect: 1,
+			});
+		}
+		if (slave.amp === 1) {
+			vignettes.push({
+				text: `${he} was soaped up, tied to a pole, and used as a very inefficient mop. While being used to clean outside, ${he} certainly drew some stares,`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: `${he} scrubbed the floor of the communal showers with a brush held in ${his} mouth, glad to be able to do something at least,`,
+				type: "devotion",
+				effect: 1,
+			});
+		}
+		if (slave.intelligence >= 2) {
+			vignettes.push({
+				text: `${he} devised a highly efficient way to get ${his} entire week's worth of work done in only three days. As a reward, ${he} was given - you guessed it - more work,`,
+				type: "cash",
+				effect: 1,
+			});
+		} else if (slave.intelligence <= -2) {
+			vignettes.push({
+				text: `after being told all ${he} needed was some 'elbow grease', ${he} wasted an obscene amount of time searching for it,`,
+				type: "cash",
+				effect: -1,
+			});
+		}
+		if (slave.voice === 0) {
+			vignettes.push({
+				text: `a few citizens mistook ${him} for a whore while ${he} was going about ${his} regular cleaning duties. Without the power of speech, ${he} was unable to explain the situation and was subsequently used and paid,`,
+				type: "cash",
+				effect: 1,
+			});
+		}
+		if (slave.visualAge >= 40) {
+			vignettes.push({
+				text: `some of the younger slaves purposefully created messes, making fun of ${him} as ${he} scurried behind them to clean up,`,
+				type: "trust",
+				effect: -1,
+			});
+		}
+		if (slave.hLength >= 150) {
+			vignettes.push({
+				text: `${he} was routinely forced to use ${his} hair as a mop,`,
+				type: "cash",
+				effect: 0,
+			});
+		}
+		if (slave.energy < 60) {
+			vignettes.push({
+				text: `${he} once thought on how easy ${his} assignment is in comparison to the sexual assignments that the others have,`,
+				type: "trust",
+				effect: 1,
+			});
+		}
+		vignettes.push({
+			text: `${he} was ordered to clean the many erotically shaped statues around the arcology. ${He} put on a good show, waxing the many tits, asses, and cocks with gusto,`,
+			type: "rep",
+			effect: 1,
+		});
+		vignettes.push({
+			text: `${he} was ordered to clean all the exterior windows around your estate using only ${his} tits. The people passing by seemed to appreciate the show,`,
+			type: "rep",
+			effect: 1,
+		});
+		vignettes.push({
+			text: `${he} was ordered to scrub all the sidewalks outside your places of business free of gum and other detritus, using only a toothbrush. ${He} spent the whole day bent over for all the public to see,`,
+			type: "rep",
+			effect: 1,
+		});
+		vignettes.push({
+			text: `${he} found refuge from the realities of slavery in constant menial tasks, accidentally accomplishing more than was asked of ${him},`,
+			type: "cash",
+			effect: 1,
+		});
+		vignettes.push({
+			text: `while cleaning the slave living quarters, ${he} found someone's hidden stash of money, no doubt withheld from a brave whore's weekly earnings. No one will ever own up to stealing from you out of fear of the consequences, but you take the paltry sum because it is rightfully yours,`,
+			type: "cash",
+			effect: 1,
+		});
+	} else if (slave.assignment === "get milked" || slave.assignment === "work in the dairy") {
+		if (slave.lactation > 0) {
+			if (slave.race === "black") {
+				vignettes.push({
+					text: `an unknown prankster labeled ${his} milk 'Chocolate Milk', causing unknowing citizens to buy it in droves,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+			vignettes.push({
+				text: `a restaurant critic declared ${his} milk delicious,`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: `an elderly citizen reported feeling healthier after drinking ${his} milk,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
+		vignettes.push({
+			text: `very little of interest happened because the life of a dairy cow is often really boring,`,
+			type: "rep",
+			effect: 0,
+		});
+	} else if (slave.assignment === "rest" || slave.assignment === "rest in the spa") {
+		if (slave.devotion > 95) {
+			vignettes.push({
+				text: `${he} decided to spend some of ${his} free time to praise you on the streets,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
+		if (slave.devotion > 50) {
+			if (slave.intelligence >= 2) {
+				vignettes.push({
+					text: `${he} spends some of ${his} downtime figuring out a new way for you to make money,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+		}
+		if (slave.devotion > 20) {
+			if (slave.relationshipRules === "just friends" || slave.relationshipRules === "permissive") {
+				vignettes.push({
+					text: `${he} taught another slave some massage skills,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+		}
+		if (slave.devotion < -50) {
+			if (slave.intelligence >= 2) {
+				vignettes.push({
+					text: `${he} spends some of ${his} downtime figuring out a way to sabotage your profits,`,
+					type: "cash",
+					effect: -1,
+				});
+			}
+			vignettes.push({
+				text: `${he} spent hours plotting ${his} escape from the arcology,`,
+				type: "trust",
+				effect: -1,
+			});
+		}
+		if (slave.relationship === -2) {
+			if (slave.speechRules === "permissive") {
+				vignettes.push({
+					text: `${he} spends most of ${his} time fan${boy}ing obsessively about you to everyone ${he} can,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+			vignettes.push({
+				text: `${he} grew sick with longing to be kept at your side as your fucktoy instead,`,
+				type: "health",
+				effect: -1,
+			});
+			vignettes.push({
+				text: `${he} 'accidentally' comes to see you throughout the day, even though ${he} is resting,`,
+				type: "devotion",
+				effect: 1,
+			});
+		} else if (slave.relationship === -1) {
+			vignettes.push({
+				text: `${he} daydreamed about being fucked by as many people as possible, upset that you kept ${him} inside,`,
+				type: "devotion",
+				effect: -1,
+			});
+		}
+		if (slave.energy > 95) {
+			vignettes.push({
+				text: `${he} was so horny that ${he} sleepwalked into your room and performed oral sex on you, and then woke up when ${he} bruised ${his} shin,`,
+				type: "health",
+				effect: -1,
+			});
+		}
+		if (slave.health < -20) {
+			vignettes.push({
+				text: `${he} has a bad cough and spends a lot of time napping,`,
+				type: "health",
+				effect: 0,
+			});
+		}
+		if (slave.intelligence >= 2) {
+			vignettes.push({
+				text: `${he} immerses ${himself} in classics of literature at an arcology library, giving ${him} uncomfortable ideas about society,`,
+				type: "devotion",
+				effect: -1,
+			});
+		}
+		if (V.arcologies[0].FSDegradationist !== "unset") {
+			vignettes.push({
+				text: `due to being ordered to rest, ${he} enjoyed a great deal of calm and relaxation thanks to your arcology's caretaking nature,`,
+				type: "health",
+				effect: -1,
+			});
+		} else if (V.arcologies[0].FSDegradationist !== "unset") {
+			vignettes.push({
+				text: `despite being ordered to rest, ${he} was made subject to a lot of torture and pain because of your arcology's depraved nature,`,
+				type: "health",
+				effect: -1,
+			});
+		}
+		if (canHear(slave)) {
+			vignettes.push({
+				text: `${he} spent much of ${his} free time listening to music,`,
+				type: "health",
+				effect: 0,
+			});
+		}
+		if (canSee(slave)) {
+			vignettes.push({
+				text: `${he} spent much of ${his} free time watching television,`,
+				type: "health",
+				effect: 0,
+			});
+		}
+		if (canTalk(slave)) {
+			vignettes.push({
+				text: `${he} spent much of ${his} free time talking with the other slaves,`,
+				type: "health",
+				effect: 0,
+			});
+		}
+		if (canWalk(slave)) {
+			vignettes.push({
+				text: `${he} spent much of ${his} free time walking around the arcology,`,
+				type: "health",
+				effect: 1,
+			});
+		}
+		vignettes.push({
+			text: `${he} spent much of ${his} free time napping,`,
+			type: "health",
+			effect: 1,
+		});
 	}
 	return jsEither(vignettes);
 };
diff --git a/src/endWeek/saChoosesOwnClothes.tw b/src/endWeek/saChoosesOwnClothes.tw
index e24433ddb3dedcab3462185f3ca68763f1acf3e3..d80c1f8eae0b0c4a00fa1ade9dc6408f4b06d352 100644
--- a/src/endWeek/saChoosesOwnClothes.tw
+++ b/src/endWeek/saChoosesOwnClothes.tw
@@ -288,11 +288,17 @@ window.saChoosesOwnClothes = (function() {
 				wardrobeAssignment.push({text: `and dons battledress, the better to intimidate the prisoners.`, clothes: "battledress"});
 				wardrobeAssignment.push({text: `and slips into a scalemail bikini, the better to intimidate the prisoners.`, clothes: "a scalemail bikini"});
 				wardrobeAssignment.push({text: `and dons a scandalous habit to make it perfectly clear that crossing this nun will result in sexual punishment.`, clothes: "a fallen nuns habit"});
+				wardrobeAssignment.push({text: `and wears a military uniform to look even more brutal and authoritive.`, clothes: "a military uniform"});
+				wardrobeAssignment.push({text: `and wears a schutzstaffel uniform to look even more brutal and authoritive.`, clothes: "a schutzstaffel uniform"});
+				wardrobeAssignment.push({text: `and wears a slutty schutzstaffel uniform to look even more brutal and authoritive.`, clothes: "a slutty schutzstaffel uniform"});
+				wardrobeAssignment.push({text: `and wears a red army uniform to look even more brutal and authoritive.`, clothes: "a red army uniform"});
 				if(isItemAccessible("stretch pants and a crop-top")) {
 					wardrobeAssignment.push({text: `and decides to take it easy by slipping into some stretch pants. They come off just as quickly as they come on, just in case.`, clothes: "stretch pants and a crop-top"});
 				}
 			} else if(slave.assignment == "be the Attendant") {
 				wardrobeAssignment.push({text: `and wears a string bikini, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a string bikini"});
+				wardrobeAssignment.push({text: `and wears an immodest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a monokini"});
+				wardrobeAssignment.push({text: `and wears a modest swimsuit, since it's all ${he} can wear that won't be ruined by all the moisture in the spa.`, clothes: "a burkini"});
 				wardrobeAssignment.push({text: `but decides to go nude, since ${he}'ll be spending so much time in the water.`, clothes: "no clothing"});
 			} else if(slave.assignment == "rest") {
 				wardrobeAssignment.push({text: `and wears a comfortable t-shirt and cutoffs to relax.`, clothes: "cutoffs and a t-shirt"});
diff --git a/src/endWeek/saRest.tw b/src/endWeek/saRest.tw
index f24e5ab4c2bbe52e0d841b51d70ee91cc4dfd9b6..adb3cc9a808ee4bc3d4aeaf8375478d8716da6a8 100644
--- a/src/endWeek/saRest.tw
+++ b/src/endWeek/saRest.tw
@@ -10,7 +10,7 @@ window.saRest = function saRest(slave) {
 	var t = " takes the week off.";
 
 	if (slave.fuckdoll > 0) {
-		t += " It has nothing to do but ";
+		t += " ${He} has nothing to do but ";
 		if (slave.amp == 0) {
 			t += "lie ";
 		} else {
@@ -52,5 +52,85 @@ window.saRest = function saRest(slave) {
 			}
 		}
 	}
+
+	if (V.showVignettes == 1) {
+		var _vignette = GetVignette(slave);
+		t += ` __This week__ ${_vignette.text} `
+		if (_vignette.type == "cash") {
+			if (_vignette.effect > 0) {
+				t += `<span class='yellowgreen'>making you an extra ${cashFormat(Math.trunc(V.FResult*_vignette.effect))}.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>losing you ${cashFormat(Math.abs(Math.trunc(V.FResult*_vignette.effect)))}.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			V.cash += Math.trunc(V.FResult*_vignette.effect);
+		} else if (_vignette.type == "devotion") {
+			if (_vignette.effect > 0) {
+				if (slave.devotion > 50) {
+					t += `<span class='hotpink'>increasing ${his} devotion to you.</span>`;
+				} else if (slave.devotion >= -20) {
+					t += `<span class='hotpink'>increasing ${his} acceptance of you.</span>`;
+				} else if (slave.devotion > -10) {
+					t += `<span class='hotpink'>reducing ${his} dislike of you.</span>`;
+				} else {
+					t += `<span class='hotpink'>reducing ${his} hatred of you.</span>`;
+				}
+			} else if (_vignette.effect < 0) {
+				if (slave.devotion > 50) {
+					t += `<span class='mediumorchid'>reducing ${his} devotion to you.</span>`;
+				} else if (slave.devotion >= -20) {
+					t += `<span class='mediumorchid'>reducing ${his} acceptance of you.</span>`;
+				} else if (slave.devotion > -10) {
+					t += `<span class='mediumorchid'>increasing ${his} dislike of you.</span>`;
+				} else {
+					t += `<span class='mediumorchid'>increasing ${his} hatred of you.</span>`;
+				}
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.devotion += (1*_vignette.effect);
+		} else if (_vignette.type == "trust") {
+			if (_vignette.effect > 0) {
+				if (slave.trust > 20) {
+					t += `<span class='mediumaquamarine'>increasing ${his} trust in you.</span>`;
+				} else if (slave.trustt > -10) {
+					t += `<span class='mediumaquamarine'>reducing ${his} fear of you.</span>`;
+				} else {
+					t += `<span class='mediumaquamarine'>reducing ${his} terror of you.</span>`;
+				}
+			} else if (_vignette.effect < 0) {
+				if (slave.trust > 20) {
+					t += `<span class='gold'>reducing ${his} trust in you.</span>`;
+				} else if (slave.trust > -20) {
+					t += `<span class='gold'>increasing ${his} fear of you.</span>`;
+				} else {
+					t += `<span class='gold'>increasing ${his} terror of you.</span>`;
+				}
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.trust += (1*_vignette.effect);
+		} else if (_vignette.type == "health") {
+			if (_vignette.effect > 0) {
+				t += `<span class='green'>improving ${his} health.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>affecting ${his} health.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.health += (2*_vignette.effect);
+		} else {
+			if (_vignette.effect > 0) {
+				t += `<span class='green'>gaining you a bit of reputation.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>losing you a bit of reputation.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			V.rep += Math.trunc(V.FResult*_vignette.effect*0.1);
+		}
+	}
+
 	return t;
 }
\ No newline at end of file
diff --git a/src/endWeek/saServant.tw b/src/endWeek/saServant.tw
index 0662f9407d8c5593c578e03f276e60b33afae32d..e6972469171edcf9a94ef9e045926720f1e58fc4 100644
--- a/src/endWeek/saServant.tw
+++ b/src/endWeek/saServant.tw
@@ -28,7 +28,7 @@ window.saServant = function saServant(slave) {
 					t += ` However, ${his} inability to hear often leaves ${him} oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`;
 					V.cash += (V.stewardessBonus/4);
 				} else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) {
-					t += `  However, ${he} often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`;
+					t += ` However, ${he} often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`;
 					V.cash += (V.stewardessBonus/2);
 				} else {
 					V.cash += V.stewardessBonus;
@@ -98,5 +98,84 @@ window.saServant = function saServant(slave) {
 		t += `as a drink dispenser at mealtimes, and makes a meaningful contribution to ${his} fellow slaves' nutrition in concert with the feeding systems.`;
 	}
 
+	if (V.showVignettes == 1) {
+		var _vignette = GetVignette(slave);
+		t += ` __This week__ ${_vignette.text} `
+		if (_vignette.type == "cash") {
+			if (_vignette.effect > 0) {
+				t += `<span class='yellowgreen'>making you an extra ${cashFormat(Math.trunc(V.FResult*_vignette.effect))}.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>losing you ${cashFormat(Math.abs(Math.trunc(V.FResult*_vignette.effect)))}.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			V.cash += Math.trunc(V.FResult*_vignette.effect);
+		} else if (_vignette.type == "devotion") {
+			if (_vignette.effect > 0) {
+				if (slave.devotion > 50) {
+					t += `<span class='hotpink'>increasing ${his} devotion to you.</span>`;
+				} else if (slave.devotion >= -20) {
+					t += `<span class='hotpink'>increasing ${his} acceptance of you.</span>`;
+				} else if (slave.devotion > -10) {
+					t += `<span class='hotpink'>reducing ${his} dislike of you.</span>`;
+				} else {
+					t += `<span class='hotpink'>reducing ${his} hatred of you.</span>`;
+				}
+			} else if (_vignette.effect < 0) {
+				if (slave.devotion > 50) {
+					t += `<span class='mediumorchid'>reducing ${his} devotion to you.</span>`;
+				} else if (slave.devotion >= -20) {
+					t += `<span class='mediumorchid'>reducing ${his} acceptance of you.</span>`;
+				} else if (slave.devotion > -10) {
+					t += `<span class='mediumorchid'>increasing ${his} dislike of you.</span>`;
+				} else {
+					t += `<span class='mediumorchid'>increasing ${his} hatred of you.</span>`;
+				}
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.devotion += (1*_vignette.effect);
+		} else if (_vignette.type == "trust") {
+			if (_vignette.effect > 0) {
+				if (slave.trust > 20) {
+					t += `<span class='mediumaquamarine'>increasing ${his} trust in you.</span>`;
+				} else if (slave.trustt > -10) {
+					t += `<span class='mediumaquamarine'>reducing ${his} fear of you.</span>`;
+				} else {
+					t += `<span class='mediumaquamarine'>reducing ${his} terror of you.</span>`;
+				}
+			} else if (_vignette.effect < 0) {
+				if (slave.trust > 20) {
+					t += `<span class='gold'>reducing ${his} trust in you.</span>`;
+				} else if (slave.trust > -20) {
+					t += `<span class='gold'>increasing ${his} fear of you.</span>`;
+				} else {
+					t += `<span class='gold'>increasing ${his} terror of you.</span>`;
+				}
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.trust += (1*_vignette.effect);
+		} else if (_vignette.type == "health") {
+			if (_vignette.effect > 0) {
+				t += `<span class='green'>improving ${his} health.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>affecting ${his} health.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			slave.health += (2*_vignette.effect);
+		} else {
+			if (_vignette.effect > 0) {
+				t += `<span class='green'>gaining you a bit of reputation.</span>`;
+			} else if (_vignette.effect < 0) {
+				t += `<span class='red'>losing you a bit of reputation.</span>`;
+			} else {
+				t += `an incident without lasting effect.`;
+			}
+			V.rep += Math.trunc(V.FResult*_vignette.effect*0.1);
+		}
+	}
+
 	return t;
 };
\ No newline at end of file
diff --git a/src/endWeek/saStayConfined.tw b/src/endWeek/saStayConfined.tw
index df7cfb039b0616d1cc4036989eca98ccbe1f55b4..c3b6f3fbabb5f38a0fe4ed3b4127baa612a9bd1f 100644
--- a/src/endWeek/saStayConfined.tw
+++ b/src/endWeek/saStayConfined.tw
@@ -41,7 +41,7 @@ window.saStayConfined = function saStayConfined(slave) {
 				t += ` ${His} hearing impairment spares ${him} the sounds of ${his} peers getting punished, lightening the impact of ${his} imprisonment.`
 			}
 		}
-		
+
 		t += ` The stress of confinement <span class='red'>damages ${his} health.</span>`
 		slave.health -= 10
 	} else {
diff --git a/src/init/setupVars.tw b/src/init/setupVars.tw
index 1d9d624c6586460af17df1c0338cec27fb987368..edb69912dd96319a690f17bc2087e5bbde7baf67 100644
--- a/src/init/setupVars.tw
+++ b/src/init/setupVars.tw
@@ -454,7 +454,7 @@
 <<set setup.zairianSlaveSurnames = ["Amani", "Amisi", "Assani", "Augustin", "Badibanga", "Bahati", "Banza", "Banze", "Bayiha", "Bel", "Beya", "Bisimwa", "Bokese", "Bokungu", "Bondo", "Botende", "Buhendwa", "Bukasa", "Byamungu", "Congo", "Coursaris", "Dieudonné", "Elia", "Eyenga", "Fataki", "Ibaka", "Ilunga", "Jean", "Junior", "Kabala", "Kabamba", "Kabambi", "Kabanga", "Kabangu", "Kabasele", "Kabemba", "Kabengele", "Kabeya", "Kabila", "Kabongo", "Kabulo", "Kabuya", "Kabwe", "Kadima", "Kahindo", "Kakule", "Kalala", "Kalambay", "Kalenga", "Kalombo", "Kalonji", "Kalubi", "Kalume", "Kalunga", "Kamba", "Kambale", "Kanda", "Kandolo", "Kaniki", "Kankolongo", "Kanku", "Kanyinda", "Kapinga", "Kasereka", "Kashala", "Kasonga", "Kasongo", "Katanga", "Katembo", "Katende", "Kayembe", "Kayumba", "Kazadi", "Kazembe", "Kinkela", "Kitenge", "Kitoko", "Kongolo", "Kwete", "Kyenge", "Kyungu", "Landu", "Lelo", "Lubamba", "Luboya", "Lukusa", "Lumbala", "Lumbu", "Lutete", "Lutumba", "Luzolo", "Lwamba", "Mabiala", "Mafuta", "Makengo", "Makoma", "Malango", "Maloba", "Mamba", "Mambu", "Mampuya", "Manda", "Mande", "Masengo", "Masiala", "Massamba", "Masudi", "Mata", "Matadi", "Matondo", "Mavinga", "Mavungu", "Mbaki", "Mbala", "Mbaya", "Mbayo", "Mbikayi", "Mbiya", "Mbo", "Mboma", "Mbombo", "Mbula", "Mbumba", "Mbungu", "Mbuya", "Mbuyamba", "Mbuyi", "Mbuyu", "Mika", "Mirindi", "Mobutu", "Moke", "Mondeko", "Monga", "Mpeko", "Mpiana", "Mpoyi", "Mputu", "Muamba", "Muana", "Muanda", "Mubenga", "Muganza", "Mugisho", "Muhindo", "Mujinga", "Mukadi", "Mukalay", "Mukanya", "Mukeba", "Mukendi", "Mukenge", "Mukoko", "Mukuna", "Mulamba", "Mulenda", "Mulongo", "Mulumba", "Mulunda", "Mumba", "Mumbere", "Musafiri", "Mushagalusa", "Mutamba", "Muteba", "Mutombo", "Muyumba", "Mvouba", "Mwamba", "Mwanza", "Mwenze", "Mwepu", "Nawej", "Ndala", "Ndaya", "Ndila", "Ngalamulume", "Ngalula", "Ngandu", "Ngimbi", "Ngoie", "Ngoma", "Ngongo", "Ngoy", "Ngoyi", "Nkongolo", "Nkulu", "Nlandu", "Nsenga", "Nsimba", "Nsumbu", "Ntambwe", "Ntumba", "Numbi", "Nyembo", "Nzau", "Nzuzi", "Olomide", "Omari", "Omba", "Patel", "Ramazani", "Saidi", "Salumu", "Samba", "Sangwa", "Selemani", "Senga", "Shabani", "Tambwe", "Tsasa", "Tshibanda", "Tshibangu", "Tshilumba", "Tshimanga", "Tumba", "Umba", "Vangu", "Wa", "Youlou", "Yumba", "Zakuani", "Zola"]>>
 
 <<set setup.frenchSlaveNames = ["Aaliyah", "Abigael", "Adélaïde", "Adèle", "Adriana", "Adrienne", "Agathe", "Aicha", "Albane", "Alessia", "Alexandra", "Alexia", "Aleyna", "Alia", "Alice", "Alicia", "Alienor", "Aline", "Alix", "Aliya", "Aliyah", "Alizee", "Alya", "Alycia", "Alyssa", "Alyssia", "Amandine", "Ambre", "Ambrine", "Amel", "Amelia", "Amélie", "Amina", "Aminata", "Amira", "Amy", "Ana", "Anae", "Anaelle", "Anaïs", "Anastasia", "Andrea", "Angela", "Angèle", "Angelina", "Angeline", "Anissa", "Anna", "Annabelle", "Annaelle", "Anne", "Anouk", "Apolline", "Ashley", "Asma", "Assia", "Assya", "Astrid", "Athénaïs", "Audrey", "Augustine", "Aurélie", "Aurore", "Ava", "Awa", "Axelle", "Aya", "Belle", "Berenice", "Bertille", "Blanche", "Cali", "Calie", "Camelia", "Camille", "Candice", "Capucine", "Carla", "Carmen", "Caroline", "Cassandra", "Cassandre", "Cassie", "Cécile", "Cecilia", "Céleste", "Célestine", "Celia", "Céline", "Celya", "Chahinez", "Chaima", "Chantal", "Chantelle", "Charlene", "Charlie", "Charline", "Charlotte", "Chayma", "Chiara", "Chloé", "Claire", "Clara", "Clarisse", "Clea", "Clelia", "Clémence", "Clementine", "Cleo", "Cloé", "Clotilde", "Coline", "Constance", "Coralie", "Cyrielle", "Daphné", "Deborah", "Diana", "Diane", "Didi", "Dina", "Dora", "Dounia", "Eden", "Édith", "Ela", "Elea", "Eleana", "Elena", "Eléonore", "Elia", "Elif", "Elina", "Eline", "Elisa", "Élisabeth", "Élise", "Elissa", "Ella", "Eloane", "Élodie", "Éloïse", "Elona", "Elora", "Elsa", "Elya", "Elyna", "Elyne", "Ema", "Emeline", "Emie", "Émilie", "Emily", "Emma", "Emmanuelle", "Emmie", "Emmy", "Emna", "Emy", "Enola", "Enora", "Erine", "Estelle", "Esther", "Eugénie", "Eva", "Eve", "Eya", "Fanny", "Fantine", "Farah", "Fatima", "Fatma", "Fatoumata", "Faustine", "Flavie", "Fleur", "Flora", "Flore", "Florine", "Françoise", "Gabriella", "Gabrielle", "Gaëlle", "Garance", "Genevieve", "Giulia", "Grace", "Gwenaëlle", "Gwendoline", "Hafsa", "Hajar", "Halima", "Hana", "Hanae", "Hanna", "Hannah", "Hawa", "Helena", "Hélène", "Héloïse", "Hermine", "Hiba", "Hind", "Hortense", "Ibtissem", "Ilana", "Iliana", "Ilona", "Ilyana", "Imane", "Imen", "Imene", "Inaya", "Inès", "Irina", "Iris", "Isaure", "Isis", "Isra", "Izia", "Jade", "Jana", "Janelle", "Janna", "Jasmine", "Jeanne", "Jenna", "Jessica", "Jihane", "Joan", "Joana", "Johanna", "Joséphine", "Joy", "Joyce", "Judith", "Julia", "Julie", "Juliette", "Juline", "Justine", "Kahina", "Kaina", "Kamelia", "Kayla", "Kayna", "Kelia", "Kelly", "Kelya", "Kenza", "Kessy", "Khadija", "Kiara", "Kim", "Kimberley", "Kyara", "Laetitia", "Lalie", "Laly", "Lamia", "Lana", "Lara", "Laura", "Laure", "Laurine", "Layana", "Léa", "Leana", "Leane", "Leanne", "Leelou", "Leia", "Leila", "Leina", "Lena", "Leona", "Léonie", "Leyna", "Lia", "Liana", "Lila", "Lilas", "Lili", "Lilia", "Lilie", "LiliRose", "Lilly", "Lilou", "Lilwenn", "Lily", "Lilya", "LilyRose", "Lina", "Linda", "Lindsay", "Line", "Lisa", "Lise", "Lison", "Livia", "Liya", "Loane", "Loanne", "Lois", "Lola", "Lorena", "Lou", "Louane", "Louann", "LouAnn", "Louanne", "LouAnne", "Louisa", "Louise", "Louison", "Louna", "Luce", "Lucia", "Lucie", "Lucile", "Lucille", "Lucy", "Ludivine", "Luna", "Lya", "Lyana", "Lydia", "Lylia", "Lylou", "Lyna", "Madeleine", "Madeline", "Mae", "Maelia", "Maelie", "Maeline", "Maëlle", "Maelly", "Maellys", "Maely", "Maelyne", "Maelys", "Maëlys", "Maelyss", "Maeva", "Maia", "Maily", "Mailys", "Maimouna", "Maina", "Maissa", "Maissane", "Maiwenn", "Malak", "Malia", "Manel", "Manelle", "Manon", "Margaux", "Margot", "Maria", "Mariam", "Marianne", "Marie", "Marilou", "Marina", "Marine", "Marion", "Marwa", "Maryam", "Marylou", "Mathilde", "Maud", "Maya", "Maylis", "Mayssa", "Meissa", "Mélanie", "Melia", "Melina", "Melinda", "Méline", "Mélissa", "Mellina", "Melodie", "Melody", "Melyna", "Melyne", "Meriem", "Meryem", "Mia", "Mila", "Milla", "Mina", "Mona", "Morgane", "Mya", "Myriam", "Nada", "Naelle", "Naia", "Naila", "Naima", "Nais", "Naomi", "Naomie", "Natalie", "Nawel", "Naya", "Nayla", "Neila", "Nelia", "Nell", "Nesrine", "Neyla", "Nicole", "Nina", "Ninon", "Nisa", "Noa", "Noelie", "Noeline", "Noémie", "Nola", "Nora", "Norah", "Nour", "Océane", "Olivia", "Ophélie", "Oriane", "Orlane", "Ornella", "Paloma", "Paola", "Pauline", "Pénélope", "Perrine", "Philippine", "Philomène", "Prune", "Rachel", "Rahma", "Rania", "Raphaëlle", "Rébecca", "Romane", "Romy", "Rosalie", "Rose", "Roxane", "Sabrina", "Sacha", "Safa", "Safia", "Safiya", "Sakina", "Salma", "Salomé", "Samia", "Sana", "Sara", "Sarah", "Sasha", "Savannah", "Selena", "Selene", "Selma", "Serena", "Shaima", "Shaina", "Shana", "Shanna", "Shayna", "Sherine", "Sidonie", "Sirine", "Sixtine", "Sofia", "Solène", "Soline", "Sonia", "Sophia", "Sophie", "Soraya", "Soukaina", "Soumaya", "Stella", "Suzanne", "Suzie", "Syrine", "Taina", "Talia", "Tamara", "Tania", "Tatiana", "Tess", "Tessa", "Thais", "Thalia", "Thea", "Tiffany", "Tina", "Tiphaine", "Valentine", "Vanessa", "Victoire", "Victoria", "Violette", "Wendy", "Yael", "Yaelle", "Yasmina", "Yasmine", "Yolande", "Youna", "Yousra", "Yuna", "Yvette", "Yvonne", "Zahra", "Zelie", "Zia", "Zoé"]>>
-<<set setup.frenchMaleNames = ["Adrien", "Alexandre", "Alexis", "Alfred", "Anthony", "Antoine", "Arnaud", "Arthur", "Aurélien", "Axel", "Baptiste", "Bastien", "Benjamin", "Benoît", "Bryan", "Cédric", "Charles", "Christopher", "Clément", "Corentin", "Damien", "David", "Dorian", "Dylan", "Enzo", "Fabien", "Florent", "Florian", "François", "Gaëtan", "Guillaume", "Henri", "Hugo", "Jérémy", "Jonathan", "Jordan", "Jules", "Julien", "Kevin", "Léo", "Loïc", "Louis", "Lucas", "Martin", "Mathieu", "Matthieu", "Maxence", "Maxime", "Mehdi", "Mickaël", "Nathan", "Nicolas", "Paul", "Philippe", "Pierre", "Quentin", "Raphaël", "Rémi", "Rémy", "Robin", "Romain", "Samuel", "Sébastien", "Simon", "Steven", "Théo", "Thibault", "Thibaut", "Thomas", "Tom", "Tristan", "Valentin", "Victor", "Vincent", "William", "Yann"]>>
+<<set setup.frenchMaleNames = ["Adolphe", "Adrien", "Alain", "Albert", "Alexandre", "Alexis", "Alfred", "Alphonse", "Anatole", "Anthony", "Antoine", "Armand", "Arnaud", "Arthur", "Aurélien", "Axel", "Baptiste", "Bastien", "Benjamin", "Benoît", "Bernard", "Bryan", "Cédric", "Charles", "Christopher", "Claude", "Clément", "Corentin", "Damien", "David", "Dorian", "Dylan", "Édouard", "Émile", "Emmanuel", "Enzo", "Ernest", "Étienne", "Eugène", "Fabien", "Félix", "Florent", "Florian", "François", "Frédéric", "Gabriel", "Gaëtan", "Gaston", "Georges", "Germain", "Guillaume", "Henri", "Hugo", "Jacques", "Jean", "Jérémy", "Jonathan", "Jordan", "Joseph", "Jules", "Julien", "Justin", "Kevin", "Laurent", "Léo", "Lionel", "Loïc", "Louis", "Lucas", "Manuel", "Marc", "Martin", "Mathieu", "Matthieu", "Maurice", "Maxence", "Maxime", "Mehdi", "Michel", "Mickaël", "Napoléon", "Nathan", "Nicolas", "Patrice", "Paul", "Philippe", "Pierre", "Quentin", "Raphaël", "Raymond", "Rémi", "Rémy", "René", "Robin", "Romain", "Samuel", "Sébastien", "Simon", "Stéphen", "Steven", "Théo", "Thibault", "Thibaut", "Thomas", "Tom", "Tristan", "Valentin", "Valéry", "Victor", "Vincent", "William", "Yann"]>>
 <<set setup.frenchSlaveSurnames = ["Adam", "Ait", "Alexandre", "Andre", "Antoine", "Arago", "Arnaud", "Arsenault", "Asse", "Aubert", "Aubry", "Auriol", "Bailly", "Barbier", "Baron", "Barrot", "Bellar", "Benoit", "Bent", "Berger", "Bernard", "Bertin", "Bertrand", "Besson", "Blanc", "Blanchard", "Bonaparte", "Bonnet", "Boucher", "Bourgeois", "Bouvier", "Boyer", "Breton", "Brun", "Brunet", "Buffet", "Carnot", "Caron", "Carpentier", "Casimir-Perier", "Casimir", "Cassel", "Cavaignac", "Charles", "Charpentier", "Chauvin", "Chevalier", "Chevallier", "Chirac", "Clemenceau", "Clement", "Cohen", "Colin", "Collet", "Costa", "Coty", "Cousin", "Cousteau", "Cresson", "d'Antigny", "d'Estaing", "da Silva", "Daniel", "Darcel", "David", "de Gaulle", "de MacMahon", "de Rothschild", "Delacroix", "Delteil", "Denis", "Deschamps", "Deschanel", "Diallo", "Didier", "dos Santos", "Doumer", "Doumergue", "Dreyfus", "Dubois", "Dufour", "Dumas", "Dumont", "Dupont", "Dupuis", "Dupuy", "Durand", "Duval", "Duvivier", "Etienne", "Fabre", "Fallières", "Faure", "Favreau", "Fernandes", "Fernandez", "Ferreira", "Fleury", "Fontaine", "Fournier", "François-Marsal", "Francois", "François", "Gaillard", "Garcia", "Garnier", "Gauthier", "Gautier", "Gerard", "Germain", "Gilbert", "Gillet", "Girard", "Giraud", "Giscard d'Estaing", "Giscard", "Gomez", "Gonzalez", "Grévy", "Grey", "Guerin", "Guillaume", "Guillot", "Guyot", "Hamon", "Henry", "Hermès", "Herve", "Hollande", "Hubert", "Huet", "Jacob", "Jacques", "Jacquet", "Jean", "Joly", "Julien", "Klein", "la Mer", "Lacroix", "Lambert", "Lami", "Lamy", "Langlois", "Laurent", "Lazare", "le Gall", "le Pen", "Le Pen", "le Roux", "Le", "Leblanc", "Lebrun", "Leclerc", "Leclercq", "Lecomte", "Lefebvre", "Lefevre", "Leger", "Legrand", "Lemaire", "Lemoine", "Leroux", "LeRoux", "Leroy", "Levy", "Li", "Loir", "Lopez", "Loubet", "Louis", "Lucas", "Maar", "Macron", "Maillard", "Mallet", "Maman", "Manet", "Marchal", "Marchand", "Marie", "Marsal", "Martin", "Martinez", "Martins", "Marty", "Masson", "Mathieu", "Méline", "Menard", "Mercier", "Meunier", "Meyer", "Michaud", "Michel", "Millerand", "Millet", "Mitterrand", "Moreau", "Morel", "Morin", "Moulin", "Muller", "Nguyen", "Nicolas", "Noel", "Null", "Olivier", "Paris", "Pascal", "Paul", "Pelletier", "Pereira", "Perez", "Perier", "Perret", "Perrier", "Perrin", "Perrot", "Pétain", "Petit", "Philippe", "Phillipe", "Picard", "Picquart", "Pierre", "Poher", "Poincaré", "Poirier", "Pompidou", "Pons", "Remy", "Renard", "Renaud", "Renault", "Rey", "Richard", "Riviere", "Robert", "Robin", "Roche", "Rodrigues", "Rodriguez", "Roger", "Rolland", "Rothschild", "Rousseau", "Roussel", "Rouvier", "Roux", "Roy", "Royer", "Ruiz", "Saint", "Sanchez", "Sarkozy", "Schmitt", "Schneider", "Simon", "Tardieu", "Thierry", "Thiers", "Thomas", "Tran", "Trochu", "Vasseur", "Vichy", "Vidal", "Vincent", "Wang", "Weber", "Zola"]>>
 
 <<set setup.thaiSlaveNames = ["A-Gun", "Abhsara", "Achara", "Achariya", "Adung", "Aff", "Akhamsiri", "Amara", "Amarindra", "Ampawn", "Amphorn", "Amporn", "Anchali", "Anna", "Anne", "Anon", "Anuthida", "Aom", "Apinya", "Apitsada", "Apsara", "Apsorn", "Aranya", "Araya", "Arinya", "Arisa", "Arom", "Atchara", "Atcharaporn", "Atsadaporn", "Baenglum", "Bam", "Ban", "Banjit", "Bannarasee", "Beam", "Bencha", "Benjakalyani", "Benyapa", "Bow", "Bundarik", "Bunsaba", "Buppha", "Busaba", "Bussaba", "But", "Butri", "Chaiama", "Chailai", "Chalida", "Chalita", "Chamnian", "Chanchira", "Chanhira", "Chantara", "Chanthara", "Chanut", "Chariya", "Charoensamee", "Charuporn", "Chatumas", "Chayanith", "Chimlin", "Chiranan", "Choi", "Chon", "Chonnanee", "Chonthicha", "Chotika", "Chuenchai", "Chulaborn", "Cintna", "Daeng", "Damni", "Dao", "Darawan", "Dareung", "Darika", "Darin", "Dauenphen", "Davika", "Dhipyamongko", "Dok", "Duan", "Dutsanee", "Eve", "Fah", "Fai", "Fern", "Fon", "Hansa", "Hathai", "Hiran", "Hom", "Inthurat", "Intira", "Isaree", "Isinthon", "Jaew", "Jaidee", "Jane", "Janie", "Janjira", "Jarinporn", "Jariya", "Jarupan", "Jenny", "Jinda", "Jintana", "Jira", "Jiraporn", "Jirattijarn", "Jittramas", "June", "Kaeo", "Kalaya", "Kalya", "Kamala", "Kamchana", "Kamlai", "Kamonrat", "Kanok", "Kanokwan", "Kantima", "Kanya", "Karawek", "Karn", "Kasika", "Kasira", "Kate", "Keerati", "Kemapsorn", "Kessara", "Khakkhanang", "Khantharot", "Khem", "Khemanit", "Khouane", "Khun", "Kimberley", "Kimnai", "Kimuk", "Kohsoom", "Komon", "Kosum", "Krystal", "Kulap", "Kultilda", "Kusuman", "Kwang", "Laila", "Lamai", "Lamang", "Lamom", "Lawan", "Lek", "Lukden", "Lursakdi", "Mae-Pia", "Mai", "Maladee", "Malee", "Mali", "Malisa", "Manee", "Maprang", "Mathawee", "May", "Mayore", "Mayura", "Mekhalaa", "Metika", "Mian", "Mild", "Min", "Mind", "Mint", "Muk", "Mukea", "Nahathai", "Nam", "Namcha", "Nan", "Nanthita", "Napatsorn", "Napha", "Narissa", "Naruemon", "Nat", "Natcha", "Natchaya", "Natee", "Nathida", "Natthaweeranuch", "Nawaporn", "Neeramphorn", "Netra", "Neung", "Neungluthai", "New", "Ngam-Chit", "Ngam", "Ngor", "Nick", "Nidnoi", "Nillawan", "Nim", "Ning", "Nisa", "Nisarra", "Nitaya", "Nittaya", "Noi", "Nok", "Noklek", "Nom", "Noon", "Nopjira", "Nuanjan", "Nuengthida", "Nutcha", "Onwara", "Orapin", "Orarat", "Ornjira", "Pakpao", "Pakwan", "Pam", "Panadda", "Pancha", "Pang", "Panida", "Panissara", "Panward", "Pasuta", "Pat", "Pataratida", "Patcharapa", "Patcharee", "Pathma", "Pattarasaya", "Paweena", "Pear", "Pechaya", "Pen-Chan", "Pensri", "Penstria", "Phailin", "Phairoh", "Phajee", "Phannee", "Phanthittra", "Phara", "Phatchara", "Phathu", "Phawta", "Phayao", "Phim", "Phitchaya", "Phueng", "Piam", "Piano", "Pichitra", "Pim", "Pimchanok", "Pinya", "Piyapat", "Ploy", "Pop", "Praew", "Praewphan", "Pranee", "Praphaiphak", "Prateep", "Preet", "Preeya", "Pummie", "Punee", "Putsaya", "Rachanee", "Rada", "Rajini", "Rampha", "Rand", "Ranee", "Ratana", "Ratchanichon", "Ratri", "Rattana", "Rawee", "Rochana", "Rudet", "Ruethai", "Rung", "Saengdao", "Sairung", "Samliwan", "Samorn", "Sangwan", "Sanoh", "Saowakhon", "Saowapa", "Saowatharn", "Sarai", "Sarakit", "Saruta", "Sasi", "Sasikan", "Sasikarn", "Sasiwimol", "Savika", "Savitree", "Sawinee", "Sawitree", "Shalisa", "Siam", "Sinee", "Sipporn", "Sirada", "Siraporn", "Sirin", "Sirina", "Sirion", "Solada", "Som", "Sompit", "Sopa", "Sounally", "Srinak", "Sririta", "Srisamorn", "Sroy", "Suarporn", "Subha", "Suchada", "Suchitra", "Suda", "Sudarat", "Sujin", "Sujitra", "Sukanda", "Sukanya", "Sukhon", "Sukumol", "Sumalee", "Sumali", "Sumniang", "Supaporn", "Supharang", "Suree", "Sureeporn", "Sut", "Taeng", "Tanapon", "Tangmo", "Tasanee", "Teerana", "Thailah", "Thaksincha", "Thanchanok", "Thara", "Theetika", "Thikhamphorn", "Thita", "Thongyip", "Thunyarat", "Tidarat", "Toey", "Tookta", "Toptim", "Touraine", "Tuani", "Tui", "Tulaya", "Tunlaya", "Tuptim", "Ubolratana", "Urairat", "Urassaya", "Usamanee", "Uthai", "Utumporn", "Vanida", "View", "Vipada", "Waan", "Waen", "Wan", "Wansa", "Waralee", "Wayo", "Wilasinee", "Wimon", "Wipada", "Wonnapa", "Woralak", "Woranuch", "Yada", "Yanisa", "Yaowaman", "Yardthip", "Yayaying", "Yingluck", "Yodmani", "Yrita", "Yui", "Yupin"]>>
@@ -694,7 +694,7 @@
 <<set setup.yemeniSlaveSurnames = ["Abbas", "Abd", "Abdallah", "Abdo", "Abdu", "Abdul", "Abdulaziz", "Abdulla", "Abdullah", "Abdulrahman", "Abo", "Abu", "Aden", "Ahmad", "Aklan", "Al-Absi", "Al-Aghbari", "Al-Ameri", "Al-Ariqi", "Al-Asbahi", "Al-Eryani", "Al-Haddad", "Al-Hakimi", "Al-Hammadi", "Al-Harazi", "Al-Qubati", "Al-Sabri", "Al-Sakkaf", "Al-Saqqaf", "Al-Shaibani", "Al-Shami", "Alabsi", "Alaghbari", "Alahdal", "Alameri", "Alamery", "Alamoudi", "Alamri", "Alansi", "Alareqi", "Alariki", "Alariqi", "Alasbahi", "Alashwal", "Alaswadi", "Albadani", "Alemad", "Aleryani", "Alhaddad", "Alhadi", "Alhaj", "Alhakimi", "Alhamadi", "Alhammadi", "Alharazi", "Aljabri", "Aljabry", "Aljunaid", "Alkadasi", "Alkadi", "Alkaff", "Alkebsi", "Alkhateeb", "Almaqtari", "Almekhlafi", "Alqadasi", "Alqubati", "Alsabri", "Alsakkaf", "Alsalahi", "Alselwi", "Alshaibani", "Alshami", "Alshamiri", "Alsharabi", "Alsharafi", "Altamimi", "Alwan", "Alward", "Alzubairi", "Ameen", "Amer", "Amin", "Anam", "Anwar", "Aqlan", "Atef", "Awad", "Awadh", "Aziz", "Ba", "Badr", "Bamatraf", "Basha", "Bawazeer", "Bawazir", "Bazara", "Dabwan", "Fadel", "Fadhel", "Faisal", "Farea", "Farhan", "Fathi", "Gaber", "Gamal", "Gamil", "Ghaleb", "Ghalib", "Ghanem", "Ghazi", "Hadi", "Haidar", "Haider", "Hajar", "Hakimi", "Hameed", "Hamid", "Hamood", "Hamoud", "Hasan", "Hashem", "Hashim", "Hezam", "Hizam", "Hussain", "Hussein", "Hussien", "Ibrahim", "Ismail", "Jaber", "Jamal", "Kaid", "Kassem", "Kassim", "Khaled", "Khalil", "Khan", "Mahdi", "Maher", "Mahmood", "Mahyoub", "Mansoor", "Mansour", "MOhame", "Mohamed", "Mohammad", "Mohammed", "Mohmmed", "Mohsen", "Mubarak", "Muharram", "Mustafa", "Nageeb", "Nagi", "Naji", "Nasher", "Nasr", "Nasser", "Noaman", "Noman", "Noor", "Numan", "Obadi", "Obaid", "Omar", "Omer", "Othman", "Qaid", "Qasem", "Qubati", "Radman", "Radwan", "Rajeh", "Rashed", "Saad", "Sabri", "Saeed", "Saif", "Salah", "Salam", "Saleem", "Saleh", "Salem", "Salim", "Sallam", "Sanad", "Shaher", "Shaker", "Shami", "Shamsan", "Sharaf", "Sultan", "Taha", "Taher", "Taleb", "Thabet", "Yahya", "Yassin", "Zabara", "Zabarah", "Zaid"]>>
 
 <<set setup.lebaneseSlaveNames = ["Afaf", "Aida", "Aline", "Amal", "Assile", "Aya", "Carla", "Celine", "Christina", "Cyrine", "Darine", "Diana", "Dina", "Elissa", "Elissar", "Fadwa", "Farah", "Fatima", "Gabrielle", "Haifa", "Hiba", "Iman", "Jessica", "Jouana", "Karen", "Lama", "Lamitta", "Lara", "Layla", "Lidya", "Majida", "Mariam", "Marian", "Marie", "Marwa", "Maya", "Mirna", "Myriam", "Nada", "Nadia", "Nadine", "Najwa", "Nancy", "Narine", "Nathalie", "Nathaline", "Nawal", "Nayla", "Nicole", "Nour", "Pamila", "Raghida", "Randa", "Rayane", "Razane", "Rebecca", "Reem", "Rima", "Rola", "Sahar", "Saloua", "Salwa", "Sarah", "Saria", "Souad", "Tagrid", "Tamara", "Warda", "Yara", "Zeinab", "Zena"]>>
-<<set setup.lebaneseMaleNames = []>>
+<<set setup.lebaneseMaleNames = ["Alfred", "Amine", "Antoine", "Ayoub", "Bachir", "Charles", "Elias", "Émile", "Fouad", "Michel", "Pierre", "René", "Selim", "Tammam"]>>
 <<set setup.lebaneseSlaveSurnames = ["Abbas", "Abboud", "Abdallah", "Abdel", "Abdelnour", "Abdo", "Abed", "Abi", "Abou", "Abu", "Achkar", "Afiouni", "Ahmad", "Ajram", "Akiki", "Akl", "Alam", "Antoun", "Aouad", "Aoun", "Asmar", "Assaad", "Assaf", "Assi", "Atallah", "Awad", "Awada", "Ayoub", "Azar", "Azzam", "Azzi", "Barakat", "Bassil", "Bazzi", "Bechara", "Bejjani", "Berkachi", "Beydoun", "Bitar", "Bou", "Boulos", "Boustany", "Boutros", "Chahine", "Chalhoub", "Chami", "Chamoun", "Chedid", "Chehab", "Chehade", "Chidiac", "Daccache", "Dagher", "Daher", "Daou", "Daoud", "Deeb", "Diab", "Dib", "Eid", "El Hajj", "El Khoury", "El Kik", "Elias", "Fadel", "Fakhoury", "Fakih", "Farah", "Fares", "Farhat", "Fawaz", "Fayad", "Feghali", "Frangieh", "Geagea", "Gemayel", "Ghalayini", "Ghandour", "Ghanem", "Ghazal", "Ghorayeb", "Ghosn", "Habib", "Hachem", "Hadchiti", "Haddad", "Hage", "Haidar", "Hajj", "Hajjar", "Hakim", "Halabi", "Hamadeh", "Hamdan", "Hammoud", "Hamze", "Hanna", "Harb", "Hassoun", "Hayek", "Helou", "Hijazi", "Hussein", "Ibrahim", "Ismail", "Issa", "Itani", "Jaafar", "Jabbour", "Jaber", "Jammal", "Kanaan", "Karam", "Kassab", "Kassem", "Kassis", "Keyrouz", "Kfoury", "Khairallah", "Khalaf", "Khaled", "Khalife", "Khalifeh", "Khalil", "Khatib", "Khoury", "Labaki", "Lahoud", "Maalouf", "Madi", "Makhoul", "Mansour", "Maroun", "Masri", "Massoud", "Matar", "Matta", "Mattar", "Merheb", "Merhi", "Mezher", "Mhanna", "Mouawad", "Moubarak", "Moukarzel", "Mourad", "Moussa", "Mrad", "Nader", "Nahas", "Najem", "Najjar", "Nakhle", "Nasr", "Nasrallah", "Nasri", "Nassar", "Nasser", "Nassif", "Nehme", "Njaim", "Nohra", "Obeid", "Raad", "Rached", "Rahal", "Rahme", "Ramadan", "Rana", "Rifai", "Rizk", "Rizkallah", "Saab", "Saad", "Saade", "Saadeh", "Saba", "Sabbagh", "Sabra", "Safi", "Sakr", "Salameh", "Saleh", "Salem", "Saliba", "Salloum", "Samaha", "Sarkis", "Sassine", "Sawaya", "Sayegh", "Semaan", "Sfeir", "Sinno", "Sleiman", "Tabet", "Tannous", "Tawaji", "Tawil", "Tawk", "Tohme", "Touma", "Wakim", "Wehbe", "Yaacoub", "Yammine", "Yassine", "Yazbeck", "Younes", "Youssef", "Zaynoun", "Zeidan", "Zein", "Zgheib"]>>
 
 <<set setup.tunisianSlaveNames = ["Abir", "Aida", "Amal", "Ameni", "Amina", "Amira", "Awatef", "Ayem", "Azza", "Boutheïna", "Chahnez", "Chaïma", "Dora", "Dorra", "Echraf", "Elhem", "Fadhila", "Faten", "Fatma", "Habiba", "Hajer", "Hanaa", "Hayet", "Hend", "Henda", "Houda", "Ines", "Insaf", "Kaouthar", "Kenza", "Khadija", "Khaoula", "Khawla", "Leila", "Maïssa", "Manel", "Mariam", "Maroua", "Marwa", "Meriem", "Meserra", "Mouna", "Mounira", "Nesria", "Nesrine", "Nihel", "Nour", "Oumayma", "Rahma", "Raja", "Rakia", "Sabrina", "Saida", "Salma", "Selima", "Senda", "Shayma", "Sonia", "Wafa", "Wajdi"]>>
diff --git a/src/js/utilJS.tw b/src/js/utilJS.tw
index 2e11e7356cfdcdafcea74eba91c037b74a08cd88..b52094281fa93b7cba001ec00d801b0d2f4fecd9 100644
--- a/src/js/utilJS.tw
+++ b/src/js/utilJS.tw
@@ -781,16 +781,16 @@ window.ValidateFacilityDecoration = function ValidateFacilityDecoration(decorati
 };
 
 window.ordinalSuffix = function ordinalSuffix(i) {
-    var j = i % 10,
-        k = i % 100;
-    if (j == 1 && k != 11) {
-        return i + "st";
-    }
-    if (j == 2 && k != 12) {
-        return i + "nd";
-    }
-    if (j == 3 && k != 13) {
-        return i + "rd";
-    }
-    return i + "th";
+	var j = i % 10,
+		k = i % 100;
+	if (j == 1 && k != 11) {
+		return i + "st";
+	}
+	if (j == 2 && k != 12) {
+		return i + "nd";
+	}
+	if (j == 3 && k != 13) {
+		return i + "rd";
+	}
+	return i + "th";
 }
\ No newline at end of file
diff --git a/src/js/vignettes.tw b/src/js/vignettes.tw
index ad0a55b683c19ac04c3fb9263a24492c4a4f2df6..62803f4caabfa78d36aaf13ad687b6502175498d 100644
--- a/src/js/vignettes.tw
+++ b/src/js/vignettes.tw
@@ -11,8 +11,10 @@ window.GetVignette = function GetVignette(slave) {
 	const hers = pronouns.possessivePronoun;
 	const himself = pronouns.objectReflexive;
 	const boy = pronouns.noun;
+	const He = capFirstChar(he);
+	const His = capFirstChar(his);
 
-	if (slave.assignment === "whore" || slave.assignment === "work in the brothel" || slave.assignment === "be the Madam") {
+	if (slave.assignment === "whore" || slave.assignment === "work in the brothel") {
 		let seed = jsRandom(1, 10);
 		switch (seed) {
 			case 1:
@@ -176,6 +178,11 @@ window.GetVignette = function GetVignette(slave) {
 						type: "rep",
 						effect: -1,
 					});
+					vignettes.push({
+						text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`,
+						type: "health",
+						effect: -1,
+					});
 					break;
 				case "cumslut":
 					vignettes.push({
@@ -225,7 +232,7 @@ window.GetVignette = function GetVignette(slave) {
 						text: `${he} earned extra gratitude from a citizen who appreciated a nice rear, even if it is off limits,`,
 						type: "rep",
 						effect: 1,
-					}); ;
+					});
 					vignettes.push({
 						text: `${he} disgusted a customer who didn't know how much butts turned them off until ${he} put ${his} hands on theirs,`,
 						type: "rep",
@@ -237,7 +244,7 @@ window.GetVignette = function GetVignette(slave) {
 						text: `${he} deeply impressed a customer by orgasming to nothing but the feeling of them sucking ${his} nipples,`,
 						type: "rep",
 						effect: 1,
-					}); ;
+					});
 					vignettes.push({
 						text: `${he} disappointed a female customer who didn't know how uninterested she was in nipple play before trying it,`,
 						type: "rep",
@@ -274,6 +281,11 @@ window.GetVignette = function GetVignette(slave) {
 						type: "rep",
 						effect: -1,
 					});
+					vignettes.push({
+						text: `"a group of overzealous customers gangbanging ${him} got a little too excited hearing ${him} get off on abuse, leaving ${him} sore and injured,`,
+						type: "health",
+						effect: -1,
+					});
 					break;
 				case "dom":
 					vignettes.push({
@@ -314,6 +326,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: -1,
 				});
+				vignettes.push({
+					text: `${he} was slapped by a customer who was angry at ${his} rude remarks,`,
+					type: "health",
+					effect: -1,
+				});
 				break;
 			case "odd":
 				vignettes.push({
@@ -397,6 +414,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "cash",
 					effect: -1,
 				});
+				vignettes.push({
+					text: `a customer impatient with how slowly ${he} was disrobing ripped off ${his} clothes and roughed ${him} up,`,
+					type: "health",
+					effect: -1,
+				});
 				break;
 			case "idealistic":
 				vignettes.push({
@@ -517,6 +539,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} adoringly kisses the feet of a local socialite who leaves ${him} a generous tip,`,
+					type: "cash",
+					effect: 1,
+				});
 				break;
 			case "adores men":
 				vignettes.push({
@@ -524,6 +551,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} practically worships a minor celebrity, eagerly slobbering over his cock and covering ${himself} with his cum,`,
+					type: "rep",
+					effect: 1,
+				});
 				break;
 			case "insecure":
 				vignettes.push({
@@ -545,6 +577,16 @@ window.GetVignette = function GetVignette(slave) {
 					type: "cash",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} manages to convince a skeptical businessman about the merits of using slaves,`,
+					type: "rep",
+					effect: 1,
+				});
+				vignettes.push({
+					text: `${his} enthusiastic discussion of the merits of slavery convinced a young woman to sell herself into slavery, so the new owner gave you a finder's fee,`,
+					type: "cash",
+					effect: 1,
+				});
 		}
 		switch (slave.sexualQuirk) {
 			case "gagfuck queen":
@@ -579,6 +621,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizeable tip,`,
+					type: "cash",
+					effect: 1,
+				});
 				break;
 			case "romantic":
 				vignettes.push({
@@ -674,11 +721,19 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		} else if (slave.livingRules === "spare") {
-			vignettes.push({
-				text: `${he} got a poor night's sleep in the noisy dormitory, which took the shine off ${his} efforts for the whole day,`,
-				type: "rep",
-				effect: -1,
-			});
+			if (canHear(slave)) {
+				vignettes.push({
+					text: `${he} got a poor night's sleep in the noisy dormitory, which took the shine off ${his} efforts for the whole day,`,
+					type: "rep",
+					effect: -1,
+				});
+			} else {
+				vignettes.push({
+					text: `the noise from the dormitory could not possibly disturb ${his} sleep, so ${he} got much better sleep than ${he} would have otherwise,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (slave.releaseRules === "permissive" || slave.releaseRules === "masturbation") {
 			vignettes.push({
@@ -869,6 +924,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: -1,
 			});
 		}
+		if (slave.balls == 0 && slave.dick > 0) {
+			vignettes.push({
+				text: `a slave trainer privately studied ${him} as an example of a slave with well done gelding surgery,`,
+				type: "cash",
+				effect: 1,
+			});
+		}
 		if (canDoVaginal(slave)) {
 			if (slave.vagina === 1) {
 				vignettes.push({
@@ -912,6 +974,20 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
+		if (slave.visualAge > 40) {
+			if (slave.face > 10 && slave.race == "asian") {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who loves well-preserved asian ladies,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+			vignettes.push({
+				text: `${he} earned repeat business from a customer with serious mommy issues,`,
+				type: "cash",
+				effect: 1,
+			});
+		}
 		if (slave.face > 40) {
 			vignettes.push({
 				text: `${he} lost a potential customer who was so intimidated by ${his} great beauty that they decided to find a homelier whore,`,
@@ -975,9 +1051,24 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
+		if (!canWalk(slave)) {
+			vignettes.push({
+				text: `${his} lack of mobility severely hindered ${his} attempts to find customers,`,
+				type: "cash",
+				effect: -1,
+			});
+		} else {
+			if (slave.boobs > 1500 && slave.boobsImplant === 0) {
+				vignettes.push({
+					text: `a young customer hired ${him} to jump rope so they could watch ${his} massive natural breasts flop around,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+		}
 		if (slave.amp === 1) {
 			vignettes.push({
-				text: `${he} disappointed a customer who thought they would enjoy fucking an amputee, but found it revolting,`,
+				text: `${he} disappointed a customer who thought they would enjoy fucking a quadruple amputee, but found it revolting,`,
 				type: "rep",
 				effect: -1,
 			});
@@ -1061,21 +1152,13 @@ window.GetVignette = function GetVignette(slave) {
 				type: "cash",
 				effect: -1,
 			});
-		} else {
-			if (slave.heels === 1 && !(["heels", "pumps", "extreme heels", "boots"].includes(slave.shoes))) {
-				vignettes.push({
-					text: `${he} enticed a new customer who had never really considered buttsex before they saw ${him} crawling along with ${his} asshole vulnerable,`,
-					type: "cash",
-					effect: 1,
-				});
-			}
-			if (slave.boobs > 1500 && slave.boobsImplant === 0) {
-				vignettes.push({
-					text: `a young customer hired ${him} to jump rope so they could watch ${his} massive natural breasts flop around,`,
-					type: "cash",
-					effect: 1,
-				});
-			}
+		}
+		if (slave.heels === 1 && !(["heels", "pumps", "extreme heels", "boots"].includes(slave.shoes))) {
+			vignettes.push({
+				text: `${he} enticed a new customer who had never really considered buttsex before they saw ${him} crawling along with ${his} asshole vulnerable,`,
+				type: "cash",
+				effect: 1,
+			});
 		}
 		if (slave.vaginalAccessory === "chastity belt") {
 			vignettes.push({
@@ -1084,6 +1167,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
+		if (slave.collar === "shock punishment") {
+			vignettes.push({
+				text: `a customer discovered that the remote control for his video screen also worked on ${his} shock collar,`,
+				type: "trust",
+				effect: -1,
+			});
+		}
 		if (slave.fetish === "mindbroken") {
 			vignettes.push({
 				text: `a customer really enjoyed being able to treat ${him} however they liked without eliciting a reaction,`,
@@ -1098,6 +1188,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: -1,
 			});
 		}
+		if (slave.accent > 2) {
+			vignettes.push({
+				text: `a wealthy foreign tourist was so glad to hear somebody speaking his native language that he hired ${him} for the whole week,`,
+				type: "cash",
+				effect: 1,
+			});
+		}
 		if (slave.face > 10 && canDoAnal(slave)) {
 			if (slave.dick > 0) {
 				if (slave.fetish === "buttslut" && jsRandom(0, 100) < 50) {
@@ -1179,19 +1276,42 @@ window.GetVignette = function GetVignette(slave) {
 			});
 		}
 
-		if (V.arcologies[0].FSSupremacist !== "unset" && slave.race === V.arcologies[0].FSSupremacistRace) {
-			vignettes.push({
-				text: `${he} lost a customer who couldn't bear to see a beautiful ${V.arcologies[0].FSSupremacistRace} be a whore,`,
-				type: "cash",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSSupremacist !== "unset") {
+			if (slave.race === V.arcologies[0].FSSupremacistRace) {
+				vignettes.push({
+					text: `${he} lost a customer who couldn't bear to see a beautiful ${V.arcologies[0].FSSupremacistRace} be a whore,`,
+					type: "cash",
+					effect: -1,
+				});
+			}
+			if (V.arcologies[0].FSSupremacistRace === "asian") {
+				vignettes.push({
+					text: `${he} was hired to be the special guest at a rather unconvential seijin-shiki celebration party,`,
+					type: "cash",
+					effect: 1,
+				});
+			} else if (V.arcologies[0].FSSupremacistRace === "semitic") {
+				vignettes.push({
+					text: `${he} was hired to be the special guest at a rather unconvential bar mitzvah celebration party,`,
+					type: "cash",
+					effect: 1,
+				});
+			} else if (V.arcologies[0].FSSupremacistRace === "white") {
+				vignettes.push({
+					text: `${he} was hired to be the special guest at a rather unconvential Jugendweihe celebration party,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSSubjugationist !== "unset" && slave.race === V.arcologies[0].FSSubjugationistRace) {
-			vignettes.push({
-				text: `${he} had a bad time in general, since most of ${his} customers didn't care about a ${V.arcologies[0].FSSubjugationistRace} prostitute's health or well-being,`,
-				type: "health",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSSubjugationist !== "unset") {
+			if (slave.race === V.arcologies[0].FSSubjugationistRace) {
+				vignettes.push({
+					text: `${he} had a bad time in general, since most of ${his} customers didn't care about a ${V.arcologies[0].FSSubjugationistRace} prostitute's health or well-being,`,
+					type: "health",
+					effect: -1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSYouthPreferentialist !== "unset") {
 			if (slave.visualAge > 35) {
@@ -1218,12 +1338,14 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSGenderFundamentalist !== "unset" && slave.visualAge > 25) {
-			vignettes.push({
-				text: `${he} got repeat business from a customer who thinks ${he} resembles their ex-wife, who would never let them fuck her butt,`,
-				type: "cash",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSGenderFundamentalist !== "unset") {
+			if (slave.visualAge > 25) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who thinks ${he} resembles their ex-wife, who would never let them fuck her butt,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSRepopulationFocus !== "unset") {
 			if (slave.pregType > 1 && slave.pregKnown > 1 && slave.belly >= 10000) {
@@ -1233,12 +1355,21 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSRestart !== "unset" && canGetPregnant(slave)) {
-			vignettes.push({
-				text: `${he} got repeat business from a customer who misses the risk of getting a ${boy} pregnant,`,
-				type: "cash",
-				effect: 3,
-			});
+			if (slave.preg > 10 && slave.pregKnown > 1 && slave.bellyPreg >= 5000) {
+				vignettes.push({
+					text: `a customer loved ${his} pregnant belly so much that he came back for repeat business,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+		} else if (V.arcologies[0].FSRestart !== "unset") {
+			if (canGetPregnant(slave)) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who misses the risk of getting a ${boy} pregnant,`,
+					type: "cash",
+					effect: 3,
+				});
+			}
 		}
 		if (V.arcologies[0].FSPaternalist !== "unset") {
 			if (slave.intelligence > 1) {
@@ -1248,12 +1379,36 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSDegradationist !== "unset" && canTalk(slave) && slave.voice > 2) {
+		} else if (V.arcologies[0].FSDegradationist !== "unset") {
+			if (canTalk(slave) && slave.voice > 2) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who prefers ${boy}s with high-pitched screams,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+			if (slave.visualAge > 40) {
+				vignettes.push({
+					text: `a customer wrote a note on ${his} face that said: 'Retire it to an arcade',`,
+					type: "trust",
+					effect: -1,
+				});
+			}
 			vignettes.push({
-				text: `${he} got repeat business from a customer who prefers ${boy}s with high-pitched screams,`,
+				text: `a rich customer had fun seeing how much money he could cram in ${his} holes without using any lube,`,
 				type: "cash",
 				effect: 1,
 			});
+			vignettes.push({
+				text: `a displeased customer grabbed a permanent marker and wrote a critique of ${his} sex skills on ${his} chest,`,
+				type: "rep",
+				effect: -1,
+			});
+			vignettes.push({
+				text: `two sadistic customers had fun roughing ${him} up,`,
+				type: "health",
+				effect: -1,
+			});
 		}
 		if (V.arcologies[0].FSBodyPurist !== "unset") {
 			if (slave.boobsImplant > 0) {
@@ -1263,12 +1418,21 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSTransformationFetishist !== "unset" && slave.boobsImplant === 0) {
-			vignettes.push({
-				text: `${he} got repeat business from a customer who wants to keep their fetish for natural breasts in the closet,`,
-				type: "cash",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+			if (slave.boobsImplant === 0) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who wants to keep their fetish for natural breasts in the closet,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+			if (slave.boobsImplant >= 500) {
+				vignettes.push({
+					text: `a photographer won an award for an artistic close up of one of ${his} implant-heavy tits,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") {
 			if (canTalk(slave) && slave.voice > 2) {
@@ -1285,12 +1449,14 @@ window.GetVignette = function GetVignette(slave) {
 					effect: -1,
 				});
 			}
-		} else if (V.arcologies[0].FSAssetExpansionist !== "unset" && slave.boobs < 300) {
-			vignettes.push({
-				text: `${he} got repeat business from a customer who wants to keep their fetish for flat chested ${boy}s in the closet,`,
-				type: "cash",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSAssetExpansionist !== "unset") {
+			if (slave.boobs < 300) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who wants to keep their fetish for flat chested ${boy}s in the closet,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSPastoralist !== "unset") {
 			if (slave.lactation === 0) {
@@ -1308,33 +1474,41 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
-		if (V.arcologies[0].FSPhysicalIdealist !== "unset" && slave.muscles <= 95) {
-			vignettes.push({
-				text: `${he} lost a customer who could barely believe that ${he} wasn't capable of holding ${himself} in a handstand,`,
-				type: "cash",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSPhysicalIdealist !== "unset") {
+			if (slave.muscles <= 95) {
+				vignettes.push({
+					text: `${he} lost a customer who could barely believe that ${he} wasn't capable of holding ${himself} in a handstand,`,
+					type: "cash",
+					effect: -1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSChattelReligionist !== "unset" && slave.behavioralFlaw === "devout") {
-			vignettes.push({
-				text: `${he} got repeat business from a customer who desperately wants their cock to be the one that converts ${him},`,
-				type: "cash",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSChattelReligionist !== "unset") {
+			if (slave.behavioralFlaw === "devout") {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who desperately wants their cock to be the one that converts ${him},`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSRomanRevivalist !== "unset" && slave.race === "white" && slave.height >= 185) {
-			vignettes.push({
-				text: `${he} attracted a customer who thought ${his} appearance worthy of a lusty northern barbarian,`,
-				type: "cash",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSRomanRevivalist !== "unset") {
+			if (slave.race === "white" && slave.height >= 185) {
+				vignettes.push({
+					text: `${he} attracted a customer who thought ${his} appearance worthy of a lusty northern barbarian,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSAztecRevivalist !== "unset" && slave.devotion > 75 && slave.intelligence >= 2) {
-			vignettes.push({
-				text: `${he} indulged a citizen by following a fertility ritual completely,`,
-				type: "rep",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSAztecRevivalist !== "unset") {
+			if (slave.devotion > 75 && slave.intelligence >= 2) {
+				vignettes.push({
+					text: `${he} indulged a citizen by following a fertility ritual completely,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSEgyptianRevivalist !== "unset") {
 			vignettes.push({
@@ -1343,16 +1517,39 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
-		if (V.arcologies[0].FSEdoRevivalist !== "unset" && slave.face > 40 && slave.intelligence > 1) {
+		if (V.arcologies[0].FSEdoRevivalist !== "unset") {
+			if (slave.face > 40 && slave.intelligence > 1) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who wished to do nothing more than converse with a beautiful and intelligent ${boy},`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 			vignettes.push({
-				text: `${he} got repeat business from a customer who wished to do nothing more than converse with a beautiful and intelligent ${boy},`,
+				text: `${he} was hired to be the special guest at a rather unconvential genpuku celebration party,`,
 				type: "cash",
 				effect: 1,
 			});
 		}
-		if (V.arcologies[0].FSArabianRevivalist !== "unset" && slave.entertainSkill >= 100 && canTalk(slave) && slave.voice > 0 && slave.accent < 2) {
+		if (V.arcologies[0].FSArabianRevivalist !== "unset") {
+			if (slave.entertainSkill >= 100 && canTalk(slave) && slave.voice > 0 && slave.accent < 2) {
+				vignettes.push({
+					text: `${he} got repeat business from a customer who prefers prostitutes who can tell lovely stories,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+		}
+		if (V.arcologies[0].FSChineseRevivalist !== "unset") {
+			if (slave.dick > 0 && slave.balls == 2) {
+				vignettes.push({
+					text: `a citizen admired ${his} lack of balls and praised ${him} for being like the eunuchs in Chinese history,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
 			vignettes.push({
-				text: `${he} got repeat business from a customer who prefers prostitutes who can tell lovely stories,`,
+				text: `${he} was hired to be the special guest at a rather unconvential Guan Li celebration party,`,
 				type: "cash",
 				effect: 1,
 			});
@@ -1393,7 +1590,7 @@ window.GetVignette = function GetVignette(slave) {
 			type: "trust",
 			effect: -1,
 		});
-	} else if (slave.assignment === "serve the public" || slave.assignment === "serve in the club" || slave.assignment === "be the DJ") {
+	} else if (slave.assignment === "serve the public" || slave.assignment === "serve in the club") {
 		let seed = jsRandom(1, 10);
 		switch (seed) {
 			case 1:
@@ -1557,8 +1754,13 @@ window.GetVignette = function GetVignette(slave) {
 						type: "rep",
 						effect: -1,
 					});
-					break;
-				case "cumslut":
+					vignettes.push({
+						text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`,
+						type: "health",
+						effect: -1,
+					});
+					break;
+				case "cumslut":
 					vignettes.push({
 						text: `${he} deeply impressed a citizen with ${his} hunger for their cum,`,
 						type: "rep",
@@ -1606,7 +1808,7 @@ window.GetVignette = function GetVignette(slave) {
 						text: `${he} earned extra gratitude from a citizen who appreciated a nice rear, even if it is off limits,`,
 						type: "rep",
 						effect: 1,
-					}); ;
+					});
 					vignettes.push({
 						text: `${he} disgusted a citizen who didn't know how much butts turned them off until ${he} put ${his} hands on theirs,`,
 						type: "rep",
@@ -1618,7 +1820,7 @@ window.GetVignette = function GetVignette(slave) {
 						text: `${he} deeply impressed a citizen by orgasming to nothing but the feeling of them sucking ${his} nipples,`,
 						type: "rep",
 						effect: 1,
-					}); ;
+					});
 					vignettes.push({
 						text: `${he} disappointed a female citizen who didn't know how uninterested she was in nipple play before trying it,`,
 						type: "rep",
@@ -1655,6 +1857,11 @@ window.GetVignette = function GetVignette(slave) {
 						type: "rep",
 						effect: -1,
 					});
+					vignettes.push({
+						text: `a group of overzealous citizens gangbanging ${him} got a little too excited hearing ${him} get off on abuse, leaving ${him} sore and injured,`,
+						type: "health",
+						effect: -1,
+					});
 					break;
 				case "dom":
 					vignettes.push({
@@ -1695,6 +1902,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: -1,
 				});
+				vignettes.push({
+					text: `${he} was slapped by a citizen who was angry at ${his} rude remarks,`,
+					type: "health",
+					effect: -1,
+				});
 				break;
 			case "odd":
 				vignettes.push({
@@ -1778,6 +1990,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: -1,
 				});
+				vignettes.push({
+					text: `a citizen impatient with how slowly ${he} was disrobing ripped off ${his} clothes and roughed ${him} up,`,
+					type: "health",
+					effect: -1,
+				});
 				break;
 			case "idealistic":
 				vignettes.push({
@@ -1898,6 +2115,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} adoringly kisses the feet of a local socialite who leaves ${him} a generous tip,`,
+					type: "cash",
+					effect: 1,
+				});
 				break;
 			case "adores men":
 				vignettes.push({
@@ -1905,6 +2127,11 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} practically worships a minor celebrity, eagerly slobbering over his cock and covering ${himself} with his cum,`,
+					type: "rep",
+					effect: 1,
+				});
 				break;
 			case "insecure":
 				vignettes.push({
@@ -1926,6 +2153,16 @@ window.GetVignette = function GetVignette(slave) {
 					type: "rep",
 					effect: 1,
 				});
+				vignettes.push({
+					text: `${he} manages to convince a skeptical businessman about the merits of using slaves,`,
+					type: "rep",
+					effect: 1,
+				});
+				vignettes.push({
+					text: `${his} enthusiastic discussion of the merits of slavery convinced a young woman to sell herself into slavery, so the new owner gave you a finder's fee,`,
+					type: "cash",
+					effect: 1,
+				});
 		}
 		switch (slave.sexualQuirk) {
 			case "gagfuck queen":
@@ -1951,12 +2188,17 @@ window.GetVignette = function GetVignette(slave) {
 				break;
 			case "tease":
 				vignettes.push({
-					text: `${he} convinces a citizen who's never had sex with a street slut to patronize ${his} with some truly inspired flirting,`,
+					text: `${he} convinces a citizen who's never had sex with a street slut to patronize ${him} with some truly inspired flirting,`,
+					type: "rep",
+					effect: 1,
+				});
+				vignettes.push({
+					text: `a few partiers were so impressed with ${his} provocative teasing that they repeated ${his} wit to friends,`,
 					type: "rep",
 					effect: 1,
 				});
 				vignettes.push({
-					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${his} sizeable tip,`,
+					text: `a few partygoers were so impressed with ${his} provocative teasing that they left ${him} a sizeable tip,`,
 					type: "cash",
 					effect: 1,
 				});
@@ -2050,16 +2292,24 @@ window.GetVignette = function GetVignette(slave) {
 		}
 		if (slave.livingRules === "luxurious") {
 			vignettes.push({
-				text: `${he} got a truly perfect night's sleep, which put ${his} in the right frame of mind for the whole day,`,
+				text: `${he} got a truly perfect night's sleep, which put ${him} in the right frame of mind for the whole day,`,
 				type: "rep",
 				effect: 1,
 			});
 		} else if (slave.livingRules === "spare") {
-			vignettes.push({
-				text: `${he} got a poor night's sleep in the noisy dormitory, which took the shine off ${his} efforts for the whole day`,
-				type: "rep",
-				effect: -1,
-			});
+			if (canHear(slave)) {
+				vignettes.push({
+					text: `${he} got a poor night's sleep in the noisy dormitory, which took the shine off ${his} efforts for the whole day,`,
+					type: "rep",
+					effect: -1,
+				});
+			} else {
+				vignettes.push({
+					text: `the noise from the dormitory could not possibly disturb ${his} sleep, so ${he} got much better sleep than ${he} would have otherwise,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (slave.releaseRules === "permissive" || slave.releaseRules === "masturbation") {
 			vignettes.push({
@@ -2243,6 +2493,13 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
+		if (slave.balls == 0 && slave.dick > 0) {
+			vignettes.push({
+				text: `a slave trainer pointed ${him} out as an example of a slave with well done gelding surgery,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
 		if (slave.balls > 3) {
 			vignettes.push({
 				text: `${he} disappoints a citizen who wants ${him} to look like a natural girl, since ${his} balls are too big to be hidden,`,
@@ -2307,6 +2564,13 @@ window.GetVignette = function GetVignette(slave) {
 			});
 		}
 		if (slave.visualAge > 40) {
+			if (slave.face > 10 && slave.race == "asian") {
+				vignettes.push({
+					text: `${he} got extra gratitude from a citizen who loves well-preserved asian ladies,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 			vignettes.push({
 				text: `${he} earned extra gratitude from a citizen with serious mommy issues,`,
 				type: "rep",
@@ -2356,20 +2620,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
-		if (slave.amp === 1) {
+		if (!canWalk(slave)) {
 			vignettes.push({
-				text: `${he} disappointed a citizen who thought they would enjoy fucking an amputee, but found it revolting,`,
+				text: `${his} lack of mobility severely hindered ${his} attempts to please citizens,`,
 				type: "rep",
 				effect: -1,
 			});
 		} else {
-			if (slave.heels === 1 && !(["heels", "pumps", "extreme heels", "boots"].includes(slave.shoes))) {
-				vignettes.push({
-					text: `${he} enticed a new patron who had never really considered buttsex before they saw ${him} crawling along with ${his} asshole vulnerable,`,
-					type: "rep",
-					effect: 1,
-				});
-			}
 			if (slave.boobs > 1500 && slave.boobsImplant === 0) {
 				vignettes.push({
 					text: `a young citizen convinced ${him} to jump rope so they could watch ${his} massive natural breasts flop around,`,
@@ -2378,6 +2635,100 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
+		if (slave.amp === 1) {
+			vignettes.push({
+				text: `${he} disappointed a citizen who thought they would enjoy fucking a quadruple amputee, but found it revolting,`,
+				type: "rep",
+				effect: -1,
+			});
+		} else if (slave.amp === -1) {
+			vignettes.push({
+				text: `a strange citizen was excited by the sight of ${his} prosthetic limbs,`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: `a citizen was disgusted at the thought of ${his} basic prosthetic limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+			vignettes.push({
+				text: `a citizen was put off by ${his} prosthetic limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+		} else if (slave.amp === -2) {
+			vignettes.push({
+				text: `a citizen was excited by ${his} vibrating fingertips,`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: "a citizen was indifferent to the thought of having sex with a slave with artificial limbs,",
+				type: "rep",
+				effect: 0,
+			});
+			vignettes.push({
+				text: `a citizen was put off by ${his} crude artificial limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+		} else if (slave.amp === -3) {
+			vignettes.push({
+				text: `a strange citizen was excited by the sight of ${his} artificial limbs,`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: "a citizen was indifferent to the thought of having sex with a slave with artificial limbs,",
+				type: "rep",
+				effect: 0,
+			});
+			vignettes.push({
+				text: `a citizen was put off by the sight of ${his} prosthetic limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+		} else if (slave.amp === -4) {
+			vignettes.push({
+				text: `a citizen was excited by the thought of having sex with a slave with p-limbs, but was scared off by ${his} combat p-limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+			vignettes.push({
+				text: "a citizen was indifferent to the thought of having sex with a slave with artificial limbs,",
+				type: "rep",
+				effect: 0,
+			});
+			vignettes.push({
+				text: `a citizen was greatly intimidated by ${his} combat p-limbs,`,
+				type: "rep",
+				effect: -1,
+			});
+		} else if (slave.amp === -5) {
+			vignettes.push({
+				text: `a citizen was fascinated by ${his} cybernetic limbs, and spent almost as much time examining them as they did having sex with ${him},`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: "a citizen was excited by the thought of having sex with a cybernetically enhanced slave,",
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: `a citizen was greatly intimidated by the sight of ${his} cybernetic limbs and was frightened away,`,
+				type: "rep",
+				effect: -1,
+			});
+		}
+		if (slave.heels === 1 && !(["heels", "pumps", "extreme heels", "boots"].includes(slave.shoes))) {
+			vignettes.push({
+				text: `${he} enticed a new patron who had never really considered buttsex before they saw ${him} crawling along with ${his} asshole vulnerable,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
 		if (slave.vaginalAccessory === "chastity belt") {
 			vignettes.push({
 				text: `a wavering citizen who was disappointed that ${his} pussy is unavailable decided to try ${his} ass instead,`,
@@ -2385,6 +2736,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
+		if (slave.collar === "shock punishment") {
+			vignettes.push({
+				text: `a citizen discovered that the remote control for his video screen also worked on ${his} shock collar,`,
+				type: "trust",
+				effect: -1,
+			});
+		}
 		if (slave.fetish === "mindbroken") {
 			vignettes.push({
 				text: `a citizen really enjoyed being able to treat ${him} however they liked without eliciting a reaction,`,
@@ -2399,6 +2757,13 @@ window.GetVignette = function GetVignette(slave) {
 				effect: -1,
 			});
 		}
+		if (slave.accent > 2) {
+			vignettes.push({
+				text: `a wealthy immigrant was so glad to hear somebody speaking his native language that he hired ${him} for the whole week,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
 		if (slave.face > 10 && canDoAnal(slave)) {
 			if (slave.dick > 0) {
 				if (slave.fetish === "buttslut" && jsRandom(0, 100) < 50) {
@@ -2480,19 +2845,42 @@ window.GetVignette = function GetVignette(slave) {
 			});
 		}
 
-		if (V.arcologies[0].FSSupremacist !== "unset" && slave.race === V.arcologies[0].FSSupremacistRace) {
-			vignettes.push({
-				text: `${he} disappointed a citizen who couldn't bear to see a beautiful ${V.arcologies[0].FSSupremacistRace} be a public slut,`,
-				type: "rep",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSSupremacist !== "unset") {
+			if (slave.race === V.arcologies[0].FSSupremacistRace) {
+				vignettes.push({
+					text: `${he} disappointed a citizen who couldn't bear to see a beautiful ${V.arcologies[0].FSSupremacistRace} be a public slut,`,
+					type: "rep",
+					effect: -1,
+				});
+			}
+			if (V.arcologies[0].FSSupremacistRace === "asian") {
+				vignettes.push({
+					text: `${he} was invited to and livened up a rather unconvential seijin-shiki celebration party,`,
+					type: "rep",
+					effect: 1,
+				});
+			} else if (V.arcologies[0].FSSupremacistRace === "semitic") {
+				vignettes.push({
+					text: `${he} was invited to and livened up a rather unconvential bar mitzvah celebration party,`,
+					type: "rep",
+					effect: 1,
+				});
+			} else if (V.arcologies[0].FSSupremacistRace === "white") {
+				vignettes.push({
+					text: `${he} was invited to and livened up a rather unconvential Jugendweihe celebration party,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSSubjugationist !== "unset" && slave.race === V.arcologies[0].FSSubjugationistRace) {
-			vignettes.push({
-				text: `${he} had a bad time in general, since most of the citizens who used ${him} didn't care about a ${V.arcologies[0].FSSubjugationistRace} prostitute's health or well-being,`,
-				type: "health",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSSubjugationist !== "unset") {
+			if (slave.race === V.arcologies[0].FSSubjugationistRace) {
+				vignettes.push({
+					text: `${he} had a bad time in general, since most of the citizens who used ${him} didn't care about a ${V.arcologies[0].FSSubjugationistRace} prostitute's health or well-being,`,
+					type: "health",
+					effect: -1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSYouthPreferentialist !== "unset") {
 			if (slave.visualAge > 35) {
@@ -2519,12 +2907,14 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSGenderFundamentalist !== "unset" && slave.visualAge > 25) {
-			vignettes.push({
-				text: `${he} gratified a citizen who thinks ${he} resembles his ex-wife, who would never let him fuck her butt,`,
-				type: "rep",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSGenderFundamentalist !== "unset") {
+			if (slave.visualAge > 25) {
+				vignettes.push({
+					text: `${he} gratified a citizen who thinks ${he} resembles his ex-wife, who would never let him fuck her butt,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSRepopulationFocus !== "unset") {
 			if (slave.pregType > 1 && slave.pregKnown > 1 && slave.belly >= 10000) {
@@ -2534,12 +2924,21 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSRestart !== "unset" && canGetPregnant(slave)) {
-			vignettes.push({
-				text: `${he} gratified a citizen who misses the risk of getting a ${boy} pregnant,`,
-				type: "rep",
-				effect: 1,
-			});
+			if (slave.preg > 10 && slave.pregKnown > 1 && slave.bellyPreg >= 5000) {
+				vignettes.push({
+					text: `a citizen loved ${his} pregnant belly so much that he came back for repeat service,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+		} else if (V.arcologies[0].FSRestart !== "unset") {
+			if (canGetPregnant(slave)) {
+				vignettes.push({
+					text: `${he} gratified a citizen who misses the risk of getting a ${boy} pregnant,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSPaternalist !== "unset") {
 			if (slave.intelligence > 1) {
@@ -2549,12 +2948,36 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSDegradationist !== "unset" && canTalk(slave) && slave.voice > 2) {
+		} else if (V.arcologies[0].FSDegradationist !== "unset") {
+			if (canTalk(slave) && slave.voice > 2) {
+				vignettes.push({
+					text: `${he} gratified a citizen who prefers ${boy} with high-pitched screams,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+			if (slave.visualAge > 40) {
+				vignettes.push({
+					text: `a citizen wrote a note on ${his} face that said: 'Retire it to an arcade',`,
+					type: "trust",
+					effect: -1,
+				});
+			}
 			vignettes.push({
-				text: `${he} gratified a citizen who prefers ${boy} with high-pitched screams,`,
-				type: "rep",
+				text: `a rich citizen had fun seeing how much money he could cram in ${his} holes without using any lube,`,
+				type: "cash",
 				effect: 1,
 			});
+			vignettes.push({
+				text: `a displeased citizen grabbed a permanent marker and wrote a critique of ${his} sex skills on ${his} chest,`,
+				type: "rep",
+				effect: -1,
+			});
+			vignettes.push({
+				text: `two sadistic citizens had fun roughing ${him} up,`,
+				type: "health",
+				effect: -1,
+			});
 		}
 		if (V.arcologies[0].FSBodyPurist !== "unset") {
 			if (slave.boobsImplant > 0) {
@@ -2564,12 +2987,21 @@ window.GetVignette = function GetVignette(slave) {
 					effect: 1,
 				});
 			}
-		} else if (V.arcologies[0].FSTransformationFetishist !== "unset" && slave.boobsImplant === 0) {
-			vignettes.push({
-				text: `${he} gratified a citizen who wants to keep his fetish for natural breasts in the closet,`,
-				type: "rep",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+			if (slave.boobsImplant === 0) {
+				vignettes.push({
+					text: `${he} gratified a citizen who wants to keep his fetish for natural breasts in the closet,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+			if (slave.boobsImplant >= 500) {
+				vignettes.push({
+					text: `a photographer won an award for an artistic close up of one of ${his} implant-heavy tits,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") {
 			if (canTalk(slave) && slave.voice > 2) {
@@ -2586,12 +3018,14 @@ window.GetVignette = function GetVignette(slave) {
 					effect: -1,
 				});
 			}
-		} else if (V.arcologies[0].FSAssetExpansionist !== "unset" && slave.boobs < 300) {
-			vignettes.push({
-				text: `${he} gratified a citizen who wants to keep his fetish for flat chested ${boy}s in the closet,`,
-				type: "rep",
-				effect: 1,
-			});
+		} else if (V.arcologies[0].FSAssetExpansionist !== "unset") {
+			if (slave.boobs < 300) {
+				vignettes.push({
+					text: `${he} gratified a citizen who wants to keep his fetish for flat chested ${boy}s in the closet,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSPastoralist !== "unset") {
 			if (slave.lactation === 0) {
@@ -2609,33 +3043,41 @@ window.GetVignette = function GetVignette(slave) {
 				});
 			}
 		}
-		if (V.arcologies[0].FSPhysicalIdealist !== "unset" && slave.muscles <= 95) {
-			vignettes.push({
-				text: `${he} disappointed a citizen who could barely believe that ${he} wasn't capable of holding ${himself} in a handstand,`,
-				type: "rep",
-				effect: -1,
-			});
+		if (V.arcologies[0].FSPhysicalIdealist !== "unset") {
+			if (slave.muscles <= 95) {
+				vignettes.push({
+					text: `${he} disappointed a citizen who could barely believe that ${he} wasn't capable of holding ${himself} in a handstand,`,
+					type: "rep",
+					effect: -1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSChattelReligionist !== "unset" && slave.behavioralFlaw === "devout") {
-			vignettes.push({
-				text: `${he} gratified a citizen who desperately wants his cock to be the one that converts ${him},`,
-				type: "rep",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSChattelReligionist !== "unset") {
+			if (slave.behavioralFlaw === "devout") {
+				vignettes.push({
+					text: `${he} gratified a citizen who desperately wants his cock to be the one that converts ${him},`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSRomanRevivalist !== "unset" && slave.race === "white" && slave.height >= 185) {
-			vignettes.push({
-				text: `${he} gratified a citizen who thought ${his} appearance worthy of a lusty northern barbarian,`,
-				type: "rep",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSRomanRevivalist !== "unset") {
+			if (slave.race === "white" && slave.height >= 185) {
+				vignettes.push({
+					text: `${he} gratified a citizen who thought ${his} appearance worthy of a lusty northern barbarian,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
-		if (V.arcologies[0].FSAztecRevivalist !== "unset" && slave.devotion > 75 && slave.intelligence >= 2) {
-			vignettes.push({
-				text: `${he} indulged a citizen by following a fertility ritual completely,`,
-				type: "rep",
-				effect: 1,
-			});
+		if (V.arcologies[0].FSAztecRevivalist !== "unset") {
+			if (slave.devotion > 75 && slave.intelligence >= 2) {
+				vignettes.push({
+					text: `${he} indulged a citizen by following a fertility ritual completely,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 		}
 		if (V.arcologies[0].FSEgyptianRevivalist !== "unset") {
 			vignettes.push({
@@ -2644,16 +3086,39 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
-		if (V.arcologies[0].FSEdoRevivalist !== "unset" && slave.face > 40 && slave.intelligence > 1) {
+		if (V.arcologies[0].FSEdoRevivalist !== "unset") {
+			if (slave.face > 40 && slave.intelligence > 1) {
+				vignettes.push({
+					text: `${he} gratified a citizen who wished to do nothing more than converse with a beautiful and intelligent ${boy},`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 			vignettes.push({
-				text: `${he} gratified a citizen who wished to do nothing more than converse with a beautiful and intelligent ${boy},`,
+				text: `${he} was invited to and livened up a rather unconvential genpuku celebration party,`,
 				type: "rep",
 				effect: 1,
 			});
 		}
-		if (V.arcologies[0].FSArabianRevivalist !== "unset" && slave.entertainSkill >= 100 && canTalk(slave) && slave.voice > 0 && slave.accent < 2) {
+		if (V.arcologies[0].FSArabianRevivalist !== "unset") {
+			if (slave.entertainSkill >= 100 && canTalk(slave) && slave.voice > 0 && slave.accent < 2) {
+				vignettes.push({
+					text: `${he} gratified a citizen who prefers prostitutes who can tell lovely stories,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+		}
+		if (V.arcologies[0].FSChineseRevivalist !== "unset") {
+			if (slave.dick > 0 && slave.balls == 2) {
+				vignettes.push({
+					text: `a citizen admired ${his} lack of balls and praised ${him} for being like the eunuchs in Chinese history,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
 			vignettes.push({
-				text: `${he} gratified a citizen who prefers prostitutes who can tell lovely stories,`,
+				text: `${he} was invited to and livened up a rather unconvential Guan Li celebration party,`,
 				type: "rep",
 				effect: 1,
 			});
@@ -2694,6 +3159,286 @@ window.GetVignette = function GetVignette(slave) {
 			type: "trust",
 			effect: -1,
 		});
+	} else if (slave.assignment === "be a servant" || slave.assignment === "work as a servant") {
+		if (slave.fetishKnown === 1) {
+			switch (slave.fetish) {
+				case "cumslut":
+					vignettes.push({
+						text: `when some of your cum accidentally landed on the floor, ${he} cleaned it up with ${his} tongue,`,
+						type: "devotion",
+						effect: 1,
+					});
+					vignettes.push({
+						text: `${he} licked off some sperm from the ground, while cleaning up after an orgy,`,
+						type: "devotion",
+						effect: 0,
+					});
+					break;
+				case "humiliation":
+					vignettes.push({
+						text: `${he} loved getting absolutely filthy while cleaning everything else,`,
+						type: "devotion",
+						effect: 1,
+					});
+			}
+		}
+		switch (slave.behavioralFlaw) {
+			case "arrogant":
+				vignettes.push({
+					text: `${he} refused to clean up a particular nasty room in the penthouse, earning ${himself} harsh punishment,`,
+					type: "trust",
+					effect: -1,
+				});
+				break;
+			case "gluttonous":
+				vignettes.push({
+					text: `${he} was thrilled to be getting rid of leftover food the only way ${he} knew how,`,
+					type: "devotion",
+					effect: 1,
+				});
+		}
+		if (slave.fetish === "mindbroken") {
+			vignettes.push({
+				text: `${he} forgot to sleep and no one bothered to tell ${him} to. ${He} collapsed from exhaustion halfway through the week, but even by then ${he}'d gotten all ${his} work done and then some,`,
+				type: "cash",
+				effect: 1,
+			});
+		}
+		if (slave.amp === 1) {
+			vignettes.push({
+				text: `${he} was soaped up, tied to a pole, and used as a very inefficient mop. While being used to clean outside, ${he} certainly drew some stares,`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: `${he} scrubbed the floor of the communal showers with a brush held in ${his} mouth, glad to be able to do something at least,`,
+				type: "devotion",
+				effect: 1,
+			});
+		}
+		if (slave.intelligence >= 2) {
+			vignettes.push({
+				text: `${he} devised a highly efficient way to get ${his} entire week's worth of work done in only three days. As a reward, ${he} was given - you guessed it - more work,`,
+				type: "cash",
+				effect: 1,
+			});
+		} else if (slave.intelligence <= -2) {
+			vignettes.push({
+				text: `after being told all ${he} needed was some 'elbow grease', ${he} wasted an obscene amount of time searching for it,`,
+				type: "cash",
+				effect: -1,
+			});
+		}
+		if (slave.voice === 0) {
+			vignettes.push({
+				text: `a few citizens mistook ${him} for a whore while ${he} was going about ${his} regular cleaning duties. Without the power of speech, ${he} was unable to explain the situation and was subsequently used and paid,`,
+				type: "cash",
+				effect: 1,
+			});
+		}
+		if (slave.visualAge >= 40) {
+			vignettes.push({
+				text: `some of the younger slaves purposefully created messes, making fun of ${him} as ${he} scurried behind them to clean up,`,
+				type: "trust",
+				effect: -1,
+			});
+		}
+		if (slave.hLength >= 150) {
+			vignettes.push({
+				text: `${he} was routinely forced to use ${his} hair as a mop,`,
+				type: "cash",
+				effect: 0,
+			});
+		}
+		if (slave.energy < 60) {
+			vignettes.push({
+				text: `${he} once thought on how easy ${his} assignment is in comparison to the sexual assignments that the others have,`,
+				type: "trust",
+				effect: 1,
+			});
+		}
+		vignettes.push({
+			text: `${he} was ordered to clean the many erotically shaped statues around the arcology. ${He} put on a good show, waxing the many tits, asses, and cocks with gusto,`,
+			type: "rep",
+			effect: 1,
+		});
+		vignettes.push({
+			text: `${he} was ordered to clean all the exterior windows around your estate using only ${his} tits. The people passing by seemed to appreciate the show,`,
+			type: "rep",
+			effect: 1,
+		});
+		vignettes.push({
+			text: `${he} was ordered to scrub all the sidewalks outside your places of business free of gum and other detritus, using only a toothbrush. ${He} spent the whole day bent over for all the public to see,`,
+			type: "rep",
+			effect: 1,
+		});
+		vignettes.push({
+			text: `${he} found refuge from the realities of slavery in constant menial tasks, accidentally accomplishing more than was asked of ${him},`,
+			type: "cash",
+			effect: 1,
+		});
+		vignettes.push({
+			text: `while cleaning the slave living quarters, ${he} found someone's hidden stash of money, no doubt withheld from a brave whore's weekly earnings. No one will ever own up to stealing from you out of fear of the consequences, but you take the paltry sum because it is rightfully yours,`,
+			type: "cash",
+			effect: 1,
+		});
+	} else if (slave.assignment === "get milked" || slave.assignment === "work in the dairy") {
+		if (slave.lactation > 0) {
+			if (slave.race === "black") {
+				vignettes.push({
+					text: `an unknown prankster labeled ${his} milk 'Chocolate Milk', causing unknowing citizens to buy it in droves,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+			vignettes.push({
+				text: `a restaurant critic declared ${his} milk delicious,`,
+				type: "rep",
+				effect: 1,
+			});
+			vignettes.push({
+				text: `an elderly citizen reported feeling healthier after drinking ${his} milk,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
+		vignettes.push({
+			text: `very little of interest happened because the life of a dairy cow is often really boring,`,
+			type: "rep",
+			effect: 0,
+		});
+	} else if (slave.assignment === "rest" || slave.assignment === "rest in the spa" || slave.assignment === "be the Attendant") {
+		if (slave.devotion > 95) {
+			vignettes.push({
+				text: `${he} decided to spend some of ${his} free time to praise you on the streets,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
+		if (slave.devotion > 50) {
+			if (slave.intelligence >= 2) {
+				vignettes.push({
+					text: `${he} spends some of ${his} downtime figuring out a new way for you to make money,`,
+					type: "cash",
+					effect: 1,
+				});
+			}
+		}
+		if (slave.devotion > 20) {
+			if (slave.relationshipRules === "just friends" || slave.relationshipRules === "permissive") {
+				vignettes.push({
+					text: `${he} taught another slave some massage skills,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+		}
+		if (slave.devotion < -50) {
+			if (slave.intelligence >= 2) {
+				vignettes.push({
+					text: `${he} spends some of ${his} downtime figuring out a way to sabotage your profits,`,
+					type: "cash",
+					effect: -1,
+				});
+			}
+			vignettes.push({
+				text: `${he} spent hours plotting ${his} escape from the arcology,`,
+				type: "trust",
+				effect: -1,
+			});
+		}
+		if (slave.relationship === -2) {
+			if (slave.speechRules === "permissive") {
+				vignettes.push({
+					text: `${he} spends most of ${his} time fan${boy}ing obsessively about you to everyone ${he} can,`,
+					type: "rep",
+					effect: 1,
+				});
+			}
+			vignettes.push({
+				text: `${he} grew sick with longing to be kept at your side as your fucktoy instead,`,
+				type: "health",
+				effect: -1,
+			});
+			vignettes.push({
+				text: `${he} 'accidentally' comes to see you throughout the day, even though ${he} is resting,`,
+				type: "devotion",
+				effect: 1,
+			});
+		} else if (slave.relationship === -1) {
+			vignettes.push({
+				text: `${he} daydreamed about being fucked by as many people as possible, upset that you kept ${him} inside,`,
+				type: "devotion",
+				effect: -1,
+			});
+		}
+		if (slave.energy > 95) {
+			vignettes.push({
+				text: `${he} was so horny that ${he} sleepwalked into your room and performed oral sex on you, and then woke up when ${he} bruised ${his} shin,`,
+				type: "health",
+				effect: -1,
+			});
+		}
+		if (slave.health < -20) {
+			vignettes.push({
+				text: `${he} has a bad cough and spends a lot of time napping,`,
+				type: "health",
+				effect: 0,
+			});
+		}
+		if (slave.intelligence >= 2) {
+			vignettes.push({
+				text: `${he} immerses ${himself} in classics of literature at an arcology library, giving ${him} uncomfortable ideas about society,`,
+				type: "devotion",
+				effect: -1,
+			});
+		}
+		if (V.arcologies[0].FSDegradationist !== "unset") {
+			vignettes.push({
+				text: `due to being ordered to rest, ${he} enjoyed a great deal of calm and relaxation thanks to your arcology's caretaking nature,`,
+				type: "health",
+				effect: -1,
+			});
+		} else if (V.arcologies[0].FSDegradationist !== "unset") {
+			vignettes.push({
+				text: `despite being ordered to rest, ${he} was made subject to a lot of torture and pain because of your arcology's depraved nature,`,
+				type: "health",
+				effect: -1,
+			});
+		}
+		if (canHear(slave)) {
+			vignettes.push({
+				text: `${he} spent much of ${his} free time listening to music,`,
+				type: "health",
+				effect: 0,
+			});
+		}
+		if (canSee(slave)) {
+			vignettes.push({
+				text: `${he} spent much of ${his} free time watching television,`,
+				type: "health",
+				effect: 0,
+			});
+		}
+		if (canTalk(slave)) {
+			vignettes.push({
+				text: `${he} spent much of ${his} free time talking with the other slaves,`,
+				type: "health",
+				effect: 0,
+			});
+		}
+		if (canWalk(slave)) {
+			vignettes.push({
+				text: `${he} spent much of ${his} free time walking around the arcology,`,
+				type: "health",
+				effect: 1,
+			});
+		}
+		vignettes.push({
+			text: `${he} spent much of ${his} free time napping,`,
+			type: "health",
+			effect: 1,
+		});
 	}
 	return jsEither(vignettes);
 };
\ No newline at end of file
diff --git a/src/pregmod/FSuckle.tw b/src/pregmod/FSuckle.tw
index 1fc6ea6cbf4d615b4b70a35906775b07277372a6..7eba2405406b0d97944dffdc977ffc48e1da10a8 100644
--- a/src/pregmod/FSuckle.tw
+++ b/src/pregmod/FSuckle.tw
@@ -98,9 +98,9 @@ You beckon $activeSlave.slaveName to
 			<<elseif $activeSlave.devotion >= -20>>
 				But it was unnecessary as $he already <<if $PC.dick == 1>>noticed your hardening penis<<else>>smelled your arousal<</if>> and began to apply $his ministrations to take care of you<<if $activeSlave.nipples == "inverted" || $activeSlave.nipples == "partially inverted">>, as the sensations to $his nipple add so much more to the already surrounding breastflesh<</if>>. You respond further with a positive "Mmmhmm~", which calms $his worries as $he works on pleasuring you as much as $he can with one hand.
 			<<elseif $activeSlave.trust < -20>>
-				$He begins to question your order, but quickly realizes <<if $PC.dick == 1>>your penis is at full mast and prodding $his breastflesh<<else>>you're soaking wet and quivering with desire<</if>>. Cautiously, $he begins to stroke <<if $PC.dick == 1>>it<<else>>your pussy<</if>> until reassured that $he is pleasing you with a positive "Mmmhmm~". $He does $his best, hoping to not anger you in anyway or make a mistake as $he presses <<if $PC.dick == 1>>the head<<else>>your lower lips<</if>> against $his nearby nipple.
+				$He begins to question your order, but quickly realizes <<if $PC.dick == 1>>your penis is at full mast and prodding $his breastflesh<<else>>you're soaking wet and quivering with desire<</if>>. Cautiously, $he begins to stroke <<if $PC.dick == 1>>it<<else>>your pussy<</if>> until reassured that $he is pleasing you with a positive "Mmmhmm~". $He does $his best, hoping to not anger you in any way or make a mistake as $he presses <<if $PC.dick == 1>>the head<<else>>your lower lips<</if>> against $his nearby nipple.
 			<<else>>
-				Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick == 1>>tug at your hardened penis, pressing the head against $his nearby nipple, hoping this doesn<<else>>finger your quivering pussy, rubbing $his thumb against your clit, hoping this won<</if>>’t take too long.
+				Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick == 1>>tug at your hardened penis, pressing the head against $his nearby nipple, hoping this doesn't<<else>>finger your quivering pussy, rubbing $his thumb against your clit, hoping this won't<</if>> take too long.
 			<</if>>
 		<<else>>
 			exotic nipple brushing across your lips, as if wanting to have your tongue inside it, while $his other nipple brushes across your hardening <<if $PC.dick == 1>>penis, as if begging to be penetrated. You shift to angle yourself just right before thrusting your hips upwards, inserting the tip of your shaft into<<else>>clit, as if begging to join in. You shift to angle yourself just right before thrusting your hips upwards in an attempt to attach your sex to<</if>> $his nippleslit.
@@ -111,7 +111,7 @@ You beckon $activeSlave.slaveName to
 			<<elseif $activeSlave.trust < -20>>
 				$He begins to question your intent, but quickly realizes your <<if $PC.dick == 1>>penis is entering $his breastpussy one way or another and begins to ease it all the way in before you decide to force the matter<<else>>pussy is rubbing against $his nippleslit. $He begins to jiggle $his breast in an attempt to add to your efforts<</if>>.
 			<<else>>
-				Though $he furrows $his brow, $he decides its better to get it over with quickly rather than in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick == 1>>ease the rest of your shaft into $his breastpussy<<else>>jiggle $his breast in an attempt to get you off<</if>>, hoping this doesn’t take too long.
+				Though $he furrows $his brow, $he decides it's better to get it over with quickly rather than in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick == 1>>ease the rest of your shaft into $his breastpussy<<else>>jiggle $his breast in an attempt to get you off<</if>>, hoping this doesn't take too long.
 			<</if>>
 			You breathe in $his scent as you let out a sigh, content with the sensations of $his milky depths surrounding your crotch.
 		<</if>>
@@ -164,7 +164,7 @@ You beckon $activeSlave.slaveName to
 		<<elseif $activeSlave.devotion >= -20 || $activeSlave.trust < -20>>
 			<<if $PC.dick == 1>>Though $he believes it would be better for you to use $his other slew of pleasurable orifices, $he does not question your decision<<else>>$He happily sets to work on your clit<</if>>.
 		<<else>>
-			Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick == 1>>tug at your hardened penis<<else>>stroke your quivering pussy as best as she can<</if>>, hoping this doesn’t take too long.
+			Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to <<if $PC.dick == 1>>tug at your hardened penis<<else>>stroke your quivering pussy as best as she can<</if>>, hoping this doesn't take too long.
 		<</if>>
 	<</if>>
 
@@ -191,11 +191,11 @@ You beckon $activeSlave.slaveName to
 		<<elseif $activeSlave.nipples == "inverted" || $activeSlave.nipples == "partially inverted">>
 			$his erect nipple in your mouth, while your sex focuses on the soft hand diligently working it. You feverishly suckle on $his nipple as you thrash your tongue, your efforts rewarded with more milk. 
 		<<elseif $activeSlave.nipples == "fuckable">>
-			your sex feeling nothing but the wet <<if $PC.dick == 1>>insides of $his breast<<else>>lips of $his breastpussy<</if>>. You feverishly thrash your tongue around inside of the bumpy enclosure, wih each strong movement sending shivers through $him, forcing gasps, moans and milk out of $him.
+			your sex feeling nothing but the wet <<if $PC.dick == 1>>insides of $his breast<<else>>lips of $his breastpussy<</if>>. You feverishly thrash your tongue around inside of the bumpy enclosure, with each strong movement sending shivers through $him, forcing gasps, moans and milk out of $him.
 		<<else>>
 			$his milky nipple in your mouth, while your sex focuses on the soft hand diligently working it. You feverishly suckle on $his nipple as you thrash your tongue, your efforts rewarded with more milk. 
 		<</if>>
-		You would worry about drowning if it didn’t taste good enough for you to suckle ever harder with each spurt.
+		You would worry about drowning if it didn't taste good enough for you to suckle ever harder with each spurt.
 	<<elseif $activeSlave.boobs >= 2000>>
 		Such sensations bring your attention further to $his teat; as you
 		<<if $activeSlave.nipples == "inverted">>
@@ -216,7 +216,7 @@ You beckon $activeSlave.slaveName to
 			Your constant efforts of sucking and tongueplay are rewarded 
 		<</if>>
 		with more milk straight from the tap.
-		
+
 		Milk continues to spill into your mouth as you suckle away at the
 		<<if $activeSlave.nipples == "puffy">>
 			softness,
@@ -227,8 +227,8 @@ You beckon $activeSlave.slaveName to
 		<<else>>
 			hardness,
 		<</if>>
-		relishing the delicious treat one could have only received from a mother’s bosom, at least so was the case before modern medicine decided to say something about it. Though it may as well be artificial, the act of breastfeeding continues to appease a fundamental emotional need that is arguably unique to the action.
-		
+		relishing the delicious treat one could have only received from a mother's bosom, at least so was the case before modern medicine decided to say something about it. Though it may as well be artificial, the act of breastfeeding continues to appease a fundamental emotional need that is arguably unique to the action.
+
 		<<if $activeSlave.boobs >= 20000>>
 			<<if $activeSlave.nipples == "fuckable">>
 				$He
@@ -238,12 +238,12 @@ You beckon $activeSlave.slaveName to
 					held $his breast and jiggled it in an attempt to compliment your thrusts, adding more sensation to your own efforts. The milk adding wetness to the sensual hole of $his nipple and the nature of $his sopping wet breastpussy itself adding suction felt like you were being enveloped by a world class pussy pump; each movement adding more suction and wetness than the last.
 				<</if>>
 			<<else>>
-				While you were busy suckling, $he was anything but idle; using $his hand as best as $he could to bring you the most pleasure $he is is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife’s edge of orgasm more than once. In your <<if $PC.dick == 1>>already dazed state<<else>>lust addled haze<</if>>, $his fingers seem to send lightning along your nerves<<if $PC.dick == 1>>; the tips brushing across your shaft to tickle its head make you thrust instinctively. $His tugs, gentle yet firm<<else>>. $His fingertips brush across your labia to tickle your clit, making you buck instinctively. $His strokes, gentle yet decisive<</if>>, have an almost motherly feel to them. Such ministrations cannot help but prepare you to <<if $PC.dick == 1>>shoot your load<<else>>come<</if>> as hard as you can.
+				While you were busy suckling, $he was anything but idle; using $his hand as best as $he could to bring you the most pleasure $he is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife's edge of orgasm more than once. In your <<if $PC.dick == 1>>already dazed state<<else>>lust addled haze<</if>>, $his fingers seem to send lightning along your nerves<<if $PC.dick == 1>>; the tips brushing across your shaft to tickle its head make you thrust instinctively. $His tugs, gentle yet firm<<else>>. $His fingertips brush across your labia to tickle your clit, making you buck instinctively. $His strokes, gentle yet decisive<</if>>, have an almost motherly feel to them. Such ministrations cannot help but prepare you to <<if $PC.dick == 1>>shoot your load<<else>>come<</if>> as hard as you can.
 			<</if>>
 		<<elseif $activeSlave.boobs >= 2000>>
-			While you were busy suckling, $he was anything but idle; using $his hand as best as $he could to bring you the most pleasure $he is is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife’s edge of orgasm more than once. $His hand continues to apply itself to your <<if $PC.dick == 1>>shaft, its fingertips brushing across your shaft to tickle its head and make you thrust instinctively. $His tugs<<else>>sex, $his fingertips seeming to send lightning along your nerves. As $he tickles your clit, you buck instinctively. $His strokes<</if>>, gentle yet firm, have an almost motherly feel to them. Such ministrations cannot help but prepare you to <<if $PC.dick == 1>>shoot your load<<else>>come<</if>> as hard as you can.
+			While you were busy suckling, $he was anything but idle; using $his hand as best as $he could to bring you the most pleasure $he is is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife's edge of orgasm more than once. $His hand continues to apply itself to your <<if $PC.dick == 1>>shaft, its fingertips brushing across your shaft to tickle its head and make you thrust instinctively. $His tugs<<else>>sex, $his fingertips seeming to send lightning along your nerves. As $he tickles your clit, you buck instinctively. $His strokes<</if>>, gentle yet firm, have an almost motherly feel to them. Such ministrations cannot help but prepare you to <<if $PC.dick == 1>>shoot your load<<else>>come<</if>> as hard as you can.
 		<</if>>
-		
+
 		The two of you put so much into seeking pleasure in the act that you both cum at once, $his great gasp coinciding with your <<if $PC.dick == 1>><<if $PC.balls > 1>>flood<<else>>jet<</if>> of jizz flying<<else>>own jet of pussy juice squirting<</if>>
 		<<if $activeSlave.boobs >= 20000 && $activeSlave.nipples == "fuckable">>
 			into
@@ -252,10 +252,10 @@ You beckon $activeSlave.slaveName to
 		<</if>>
 		$his other breast<<if $PC.dick == 1>><<if $PC.balls > 1>> and backflowing hard from your sheer volume<</if>><</if>>. You release $his nipple with a loud pop and lick your lips in delight.
 		<<if $activeSlave.boobs >= 20000 && $activeSlave.nipples == "fuckable">>
-			Your <<if $PC.dick == 1>>dick slips out<<else>>pussy seperates<</if>> from $his other breast with a delicate pop, followed by lewd dripping noises and the sight of <<if $PC.dick == 1>>semen<<else>>girlcum<</if>> and milk oozing from $his <<if $PC.dick == 1>>newly expanded hole<<else>>nippleslit<</if>>.
+			Your <<if $PC.dick == 1>>dick slips out<<else>>pussy separates<</if>> from $his other breast with a delicate pop, followed by lewd dripping noises and the sight of <<if $PC.dick == 1>>semen<<else>>girlcum<</if>> and milk oozing from $his <<if $PC.dick == 1>>newly expanded hole<<else>>nippleslit<</if>>.
 		<</if>>
 	<</if>>
-	
+
 <<else>>
 
 	<<if $activeSlave.boobs >= 20000>>
@@ -300,9 +300,9 @@ You beckon $activeSlave.slaveName to
 			<<elseif $activeSlave.devotion >= -20>>
 				But it was unnecessary as $he already smelled your arousal and began to apply $his ministrations to take care of you<<if $activeSlave.nipples == "inverted" || $activeSlave.nipples == "partially inverted">>, as the sensations to $his nipple add so much more to the already surrounding breastflesh<</if>>. You respond further with a positive "Mmmhmm~", which calms $his worries as $he works on pleasuring you as much as $he can with one hand.
 			<<elseif $activeSlave.trust < -20>>
-				$He begins to question your order, but quickly realizes you're soaking wet and quivering with desire. Cautiously, $he begins to stroke your pussy until reassured that $he is pleasing you with a positive "Mmmhmm~". $He does $his best, hoping to not anger you in anyway or make a mistake as $he presses your lower lips against $his nearby nipple.
+				$He begins to question your order, but quickly realizes you're soaking wet and quivering with desire. Cautiously, $he begins to stroke your pussy until reassured that $he is pleasing you with a positive "Mmmhmm~". $He does $his best, hoping to not anger you in any way or make a mistake as $he presses your lower lips against $his nearby nipple.
 			<<else>>
-				Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to finger your quivering pussy, rubbing $his thumb against your clit, hoping this won’t take too long.
+				Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to finger your quivering pussy, rubbing $his thumb against your clit, hoping this won't take too long.
 			<</if>>
 		<<else>>
 			exotic nipple brushing across your lips, as if wanting to have your tongue inside it, while $his other nipple brushes across your hardening clit, as if begging to join in. You shift to angle yourself just right before thrusting your hips upwards in an attempt to attach your sex to $his nippleslit.
@@ -313,7 +313,7 @@ You beckon $activeSlave.slaveName to
 			<<elseif $activeSlave.trust < -20>>
 				$He begins to question your intent, but quickly realizes your pussy is rubbing against $his nippleslit. $He begins to jiggle $his breast in an attempt to add to your efforts.
 			<<else>>
-				Though $he furrows $his brow, $he decides its better to get it over with quickly rather than in worse circumstances. $activeSlave.slaveName begins to jiggle $his breast in an attempt to get you off, hoping this doesn’t take too long.
+				Though $he furrows $his brow, $he decides it's better to get it over with quickly rather than in worse circumstances. $activeSlave.slaveName begins to jiggle $his breast in an attempt to get you off, hoping this doesn't take too long.
 			<</if>>
 			You breathe in $his scent as you let out a sigh, content with the sensations of $his milky depths surrounding your crotch.
 		<</if>>
@@ -366,7 +366,7 @@ You beckon $activeSlave.slaveName to
 		<<elseif $activeSlave.devotion >= -20 || $activeSlave.trust < -20>>
 			$He happily sets to work on your clit.
 		<<else>>
-			Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to stroke your quivering pussy as best as she can, hoping this doesn’t take too long
+			Though $he furrows $his brow, $he decides it's better to get it over with quickly and in $his hand rather than any other hole or in worse circumstances. $activeSlave.slaveName begins to stroke your quivering pussy as best as she can, hoping this doesn't take too long
 		<</if>>
 	<</if>>
 
@@ -393,11 +393,11 @@ You beckon $activeSlave.slaveName to
 		<<elseif $activeSlave.nipples == "inverted" || $activeSlave.nipples == "partially inverted">>
 			$his erect nipple in your mouth, while your sex focuses on the soft hand diligently working it. You feverishly suckle on $his nipple as you thrash your tongue, your efforts rewarded with more milk. 
 		<<elseif $activeSlave.nipples == "fuckable">>
-			your sex feeling nothing but the wet lips of $his breastpussy. You feverishly thrash your tongue around inside of the bumpy enclosure, wih each strong movement sending shivers through $him, forcing gasps, moans and milk out of $him.
+			your sex feeling nothing but the wet lips of $his breastpussy. You feverishly thrash your tongue around inside of the bumpy enclosure, with each strong movement sending shivers through $him, forcing gasps, moans and milk out of $him.
 		<<else>>
 			$his milky nipple in your mouth, while your sex focuses on the soft hand diligently working it. You feverishly suckle on $his nipple as you thrash your tongue, your efforts rewarded with more milk. 
 		<</if>>
-		You would worry about drowning if it didn’t taste good enough for you to suckle ever harder with each spurt.
+		You would worry about drowning if it didn't taste good enough for you to suckle ever harder with each spurt.
 	<<elseif $activeSlave.boobs >= 2000>>
 		Such sensations bring your attention further to $his teat; as you
 		<<if $activeSlave.nipples == "inverted">>
@@ -418,7 +418,7 @@ You beckon $activeSlave.slaveName to
 			Your constant efforts of sucking and tongueplay are rewarded 
 		<</if>>
 		with more milk straight from the tap.
-		
+
 		Milk continues to spill into your mouth as you suckle away at the
 		<<if $activeSlave.nipples == "puffy">>
 			softness,
@@ -429,18 +429,18 @@ You beckon $activeSlave.slaveName to
 		<<else>>
 			hardness,
 		<</if>>
-		relishing the delicious treat one could have only received from a mother’s bosom, at least so was the case before modern medicine decided to say something about it. Though it may as well be artificial, the act of breastfeeding continues to appease a fundamental emotional need that is arguably unique to the action.
-		
+		relishing the delicious treat one could have only received from a mother's bosom, at least so was the case before modern medicine decided to say something about it. Though it may as well be artificial, the act of breastfeeding continues to appease a fundamental emotional need that is arguably unique to the action.
+
 		<<if $activeSlave.boobs >= 20000>>
 			<<if $activeSlave.nipples == "fuckable">>
 				$He held $his breast and jiggled it in an attempt to compliment your thrusts, adding more sensation to your own efforts. The milk adding wetness to the sensual hole of $his nipple and the nature of $his sopping wet breastpussy itself adding suction felt like you were being enveloped by a world class pussy pump; each movement adding more suction and wetness than the last. 
 			<<else>>
-				While you were busy suckling, $he was anything but idle; using $his hand as best as $he could to bring you the most pleasure $he is is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife’s edge of orgasm more than once. In your lust addled haze, $his fingers seem to send lightning along your nerves. $His fingertips brush across your labia to tickle your clit, making you buck instinctively. $His strokes, gentle yet decisive, have an almost motherly feel to them. Such ministrations cannot help but prepare you to come as hard as you can.
+				While you were busy suckling, $he was anything but idle; using $his hand as best as $he could to bring you the most pleasure $he is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife's edge of orgasm more than once. In your lust addled haze, $his fingers seem to send lightning along your nerves. $His fingertips brush across your labia to tickle your clit, making you buck instinctively. $His strokes, gentle yet decisive, have an almost motherly feel to them. Such ministrations cannot help but prepare you to come as hard as you can.
 			<</if>>
 		<<elseif $activeSlave.boobs >= 2000>>
-			While you were busy suckling, $he was anything but idle; using $his hand as best as $he could to bring you the most pleasure $he is is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife’s edge of orgasm more than once. $His hand continues to apply itself to your sex, $his fingertips seeming to send lightning along your nerves. As $he tickles your clit, you buck instinctively. $His strokes, gentle yet firm, have an almost motherly feel to them. Such ministrations cannot help but prepare you to come as hard as you can.
+			While you were busy suckling, $he was anything but idle; using $his hand as best as $he could to bring you the most pleasure $he is capable of. Though no lube was applied, $his ministrations were more than enough to take you to the knife's edge of orgasm more than once. $His hand continues to apply itself to your sex, $his fingertips seeming to send lightning along your nerves. As $he tickles your clit, you buck instinctively. $His strokes, gentle yet firm, have an almost motherly feel to them. Such ministrations cannot help but prepare you to come as hard as you can.
 		<</if>>
-		
+
 		The two of you put so much into seeking pleasure in the act that you both cum at once, $his great gasp coinciding with your own jet of pussy juice squirting
 		<<if $activeSlave.boobs >= 20000 && $activeSlave.nipples == "fuckable">>
 			into
@@ -449,7 +449,7 @@ You beckon $activeSlave.slaveName to
 		<</if>>
 		$his other breast. You release $his nipple with a loud pop and lick your lips in delight.
 		<<if $activeSlave.boobs >= 20000 && $activeSlave.nipples == "fuckable">>
-			Your pussy seperates from $his other breast with a delicate pop, followed by lewd dripping noises and the sight of girlcum and milk oozing from $his nippleslit.
+			Your pussy separates from $his other breast with a delicate pop, followed by lewd dripping noises and the sight of girlcum and milk oozing from $his nippleslit.
 		<</if>>
 	<</if>>
 
diff --git a/src/uncategorized/REFI.tw b/src/uncategorized/REFI.tw
index f3756de81be723c9fb177c6faafccbf7cad1d276..f7c60dafd8458c38ead677b15f8ad9b68fe0318a 100644
--- a/src/uncategorized/REFI.tw
+++ b/src/uncategorized/REFI.tw
@@ -160,7 +160,7 @@
 	<<elseif $subSlave.butt <= 14>>
 		inhuman
 	<<elseif $subSlave.butt <= 20>>
-		aburdly massive
+		absurdly massive
 	<</if>>
 	ass with a leathern instrument. Before long _he2 is experiencing more pain than the human body can support without involuntary movement, and you tell _him2 to go back one count whenever _he2 does. At long last _he2 completes the required number of blows, and lies quivering and sobbing, thanking you over and over, until _he2 stiffens again at the
 	<<if canDoAnal($subSlave) && $subSlave.anus > 0>>
@@ -227,7 +227,7 @@ $subSlave.slaveName gets inspected more regularly than your other slaves, since
 			<<else>>
 				on the edge of your desk. _He2 doesn't mind the hard surface, not when it means your gravid middle is pushing against _his2 _subBelly own
 			<</if>>
-			 as you lanquidly take _him2.
+			 as you languidly take _him2.
 		<<else>>
 			so you take _him2 on the couch, spooning so that _his2
 			<<if $subSlave.belly >= 300000>>
@@ -261,7 +261,7 @@ $subSlave.slaveName gets inspected more regularly than your other slaves, since
 			<<else>>
 				on the edge of your desk. _He2 doesn't mind the hard surface, not when it means your gravid middle is pushing against _his2 _subBelly own
 			<</if>>
-			 as you lanquidly take _him2.
+			 as you languidly take _him2.
 		<<else>>
 			so you take _him2 on the couch, spooning so that _his2
 			<<if $subSlave.belly >= 300000>>
@@ -560,7 +560,7 @@ You wake up to the sensation of $subSlave.slaveName eagerly sucking your dick. _
 <<else>>
 	<<if $activeSlave.nipples != "fuckable">>$his nipples are hard and <</if>>there is a clear scent of lust around $him.
 <</if>>
-It seems $he passed by while $subSlave.slaveName was blowing you. $He swallows painfully at the <<if canSee($activeSlave)>>sight of the satisfied cumslut swirling your ejaculate around _his2 mouth<<elseif canHear($activeSlave)>>sound of the satisfied cumslut savoring your fresh load<<else>>reminder of the taste amd texture of your cum<</if>>. It should be possible to either encourage this fascination or steer $him away from it for now.
+It seems $he passed by while $subSlave.slaveName was blowing you. $He swallows painfully at the <<if canSee($activeSlave)>>sight of the satisfied cumslut swirling your ejaculate around _his2 mouth<<elseif canHear($activeSlave)>>sound of the satisfied cumslut savoring your fresh load<<else>>reminder of the taste and texture of your cum<</if>>. It should be possible to either encourage this fascination or steer $him away from it for now.
 
 <<case "humiliation">>
 
@@ -693,7 +693,7 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 	As $he writhes in agony, you tell $him to get used to it. $He's a pain slut now, second thoughts or not.
 	<<if canDoAnal($activeSlave)>>
 		<<if $activeSlave.anus == 0>>
-			$He hasn't recovered before $he feels the still more urgent pain of <<if $PC.dick == 1>>your dick brutally @@.lime;taking $his anal virginity@@<<else>>an enormous dildo @@.lime;stealing $his anal virgninty@@<</if>>, followed by rough anal,
+			$He hasn't recovered before $he feels the still more urgent pain of <<if $PC.dick == 1>>your dick brutally @@.lime;taking $his anal virginity@@<<else>>an enormous dildo @@.lime;stealing $his anal virginity@@<</if>>, followed by rough anal,
 			<<set $activeSlave.anus = 1>>
 		<<else>>
 			$He hasn't recovered before $he feels the still more urgent pain of rough anal,
@@ -701,7 +701,7 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 		<<= AnalVCheck()>>
 	<<elseif canDoVaginal($activeSlave)>>
 		<<if $activeSlave.vagina == 0>>
-			$He hasn't recovered before $he feels the still more urgent pain of <<if $PC.dick == 1>>your dick brutally @@.lime;stripping $him of $his virginity@@<<else>>an enormous dildo @@.lime;stealing $his virgninty@@<</if>>, followed by rough sex,
+			$He hasn't recovered before $he feels the still more urgent pain of <<if $PC.dick == 1>>your dick brutally @@.lime;stripping $him of $his virginity@@<<else>>an enormous dildo @@.lime;stealing $his virginity@@<</if>>, followed by rough sex,
 			<<set $activeSlave.vagina = 1>>
 		<<else>>
 			$He hasn't recovered before $he feels the still more urgent pain of <<if $PC.dick == 1>>your dick<<else>>an enormous dildo<</if>> slamming against $his cervix,
@@ -812,7 +812,7 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 			<<if canDoVaginal($activeSlave)>>
 				along $his pussylips,
 			<<else>>
-				agaist $his inner thighs,
+				against $his inner thighs,
 			<</if>>
 		<</if>>
 		and ask if $he wants you to impregnate $him. $He's almost beside $himself, shuddering at the titillation, but before $he can answer,
@@ -1391,7 +1391,7 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 			<<elseif $activeSlave.butt <= 14>>
 				inhuman
 			<<elseif $activeSlave.butt <= 20>>
-				aburdly massive
+				absurdly massive
 			<</if>>
 			ass around your cock. Deep within its quivering <<if Math.floor($activeSlave.buttImplant/$activeSlave.butt) > .60>>firmness<<else>>softness<</if>>, you can clearly feel how excited $he is over $his rear getting the attention it deserves. While $he may have expected anal, you've decided otherwise, so you go to work savoring the depths of $his butt cheeks. $He is <<if !canTalk($activeSlave)>>practically <</if>> mewling with lust by the time you cum in $him, joining you in orgasm as $he feels your seed trickle down $his lower back and down to $his chastity belt.
 			@@.hotpink;$He has become more devoted to you,@@ and @@.lightcoral;$his sexuality now focuses on $his rear end.@@
diff --git a/src/uncategorized/REFS.tw b/src/uncategorized/REFS.tw
index 974a141be2c984b66a2d0072cfcf0c2682fb16c1..652249bc18314e7c1c544839e4b9a43ecbf051aa 100644
--- a/src/uncategorized/REFS.tw
+++ b/src/uncategorized/REFS.tw
@@ -439,4 +439,3 @@ On this particular outing you happen to cross paths with a comely female citizen
 <</switch>>
 
 <</if>> /* CLOSES EVENT SELECTION */
-
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 95593de1065c13f722449836ed555320bafc42fc..6169a5ca9da7e1a14c21ee46a7955ee7feb7c57e 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -1262,11 +1262,11 @@ During a routine inspection, <<EventNameLink $activeSlave>> respectfully asks a
 
 <<case "obedient bitchy">>
 
-<<EventNameLink $activeSlave>> is a decent slave, pretty well broken to your will and generally obedient. However, $he retains a cutting tongue. Though $he's learned to her considerable cost not to direct $his cheek at you, $he still insults your other slaves, and worse, will be sarcastic to members of the public $he encounters. You've worked on it, but it remains unsolved. Today, however, $he crossed the line. You were doing business in your office with a respected female slave drug wholesaler. The woman is in her late forties, and though $he's something of a plastic surgery addict $he has permitted $his hair to go a becoming steel grey. Passing your office, $activeSlave.slaveName audibly commented on how old $he looked to another slave. Anger flashes in the businesswoman's eyes.
+<<EventNameLink $activeSlave>> is a decent slave, pretty well broken to your will and generally obedient. However, $he retains a cutting tongue. Though $he's learned to $his considerable cost not to direct $his cheek at you, $he still insults your other slaves, and worse, will be sarcastic to members of the public $he encounters. You've worked on it, but it remains unsolved. Today, however, $he crossed the line. You were doing business in your office with a respected female slave drug wholesaler. The woman is in her late forties, and though she's something of a plastic surgery addict she has permitted her hair to go a becoming steel grey. Passing your office, $activeSlave.slaveName audibly commented on how old she looked to another slave. Anger flashes in the businesswoman's eyes.
 
 <<case "obedient shemale">>
 
-<<EventNameLink $activeSlave>> has been doing her best to be a good slave $girl recently. Since $he doesn't have a pussy, that means $he's been doing her best to take it up the ass like a good slave. $He isn't all that used to it yet, but $he tries. $He's trying right now, bent over the arm of the couch in your office with your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>> pumping in and out of $him. $He looks like $he wants to ask something, so you tell $him to spit it out.
+<<EventNameLink $activeSlave>> has been doing $his best to be a good slave $girl recently. Since $he doesn't have a pussy, that means $he's been doing $his best to take it up the ass like a good slave. $He isn't all that used to it yet, but $he tries. $He's trying right now, bent over the arm of the couch in your office with your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>> pumping in and out of $him. $He looks like $he wants to ask something, so you tell $him to spit it out.
 <<if !canTalk($activeSlave)>>
 	$He uses gestures to ask if $he can masturbate while you sodomize $him.
 <<else>>
@@ -3788,7 +3788,7 @@ $activeSlave.slaveName is doing her job, standing in an area of the arcology tha
 	<<case "a succubus outfit">>
 		succubus getup
 	<<case "a hijab and blouse" "conservative clothing">>
-		conserative clothes
+		conservative clothes
 	<<default>>
 		$activeSlave.clothes
 	<</switch>>
@@ -5821,7 +5821,7 @@ $He cranes her neck, glancing over her shoulder to give you a pleading look.
 	<</if>>
 	<</replace>>
 <</link>>
-<br><<link "Just enjoy the sunshine with her">>
+<br><<link "Just enjoy the sunshine with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	Wordlessly, you fetch a towel of your own. $He raises her head a little to see if $he's needed, but as soon as $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> what you're doing, $he smiles with simple satisfaction and closes $his eyes again. You strip and lie down next to $him. $He made a good decision <<if $activeSlave.assignment == "rest">>about how to spend her rest<<else>>about what to do with her rest period<</if>>. The sun is warm and gentle, and the interminable demands of leadership and your harem suddenly seem very far away. You drop off for a short while, only waking when your apologetic personal assistant breaks in with notice of an upcoming meeting. As you get your senses back, you notice that $activeSlave.slaveName's hand is right next to yours, flattened out against the decking. $His eyes remain closed, and $his breath is steady; $he's fast asleep. It seems $he did not want to wake you, but @@.hotpink;wanted very much to be a little closer to you.@@ You consider cancelling the meeting and waking the sun-warmed
@@ -6142,10 +6142,10 @@ $He cranes her neck, glancing over her shoulder to give you a pleading look.
 
 <<case "permitted masturbation">>
 
-<<link "Sleep with her">>
+<<link "Sleep with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He starts with surprise when $he feels your hand on her
+	$He starts with surprise when $he feels your hand on $his
 	<<if $activeSlave.weight > 160>>
 		rippling
 	<<elseif $activeSlave.weight > 95>>
@@ -6185,7 +6185,7 @@ $He cranes her neck, glancing over her shoulder to give you a pleading look.
 	<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
-<br><<link "Exhaust her">>
+<br><<link "Exhaust $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	$He starts with surprise when $he feels your hand on her
@@ -7151,7 +7151,7 @@ $He cranes her neck, glancing over her shoulder to give you a pleading look.
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
-<br><<link "Talk through her problems with her">>
+<br><<link "Talk through $his problems with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You enter the bathroom and quietly wait until $he's done. When the water shuts off, $he stands up absently and spins so the shower's air dry function can blow the water off $him. (You can't help but notice
@@ -7270,7 +7270,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<= AnalVCheck()>>
 	<</replace>>
 <</link>>
-<br><<link "Comfort her">>
+<br><<link "Comfort $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	$He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on her face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss her unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You run your hands along $his body and kiss her deeply for a long while before reassuring her of her value to you. $He looks confused, but goes about her business with dry eyes. $He hates you a little less, but wonders whether $he can get away with retaining some independence.
@@ -7679,7 +7679,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "fearful humiliation">>
 
-<<link "Publicly prove the depths of her humiliation to her">>
+<<link "Publicly prove the depths of $gis humiliation to $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You drag a fearful, embarrassed<<if $activeSlave.belly >= 1500>>, <<if $activeSlave.bellyPreg >= 0>>pregnant<<else>>swollen<</if>><</if>> and totally naked $activeSlave.slaveName out into a public hall. A small knot of passersby gather around grinning, enjoying the sight of her nakedness and anticipating a show. To her surprise, you order $him to take a few minutes to recount her life story. $He's hesitant at first, but obeys, only realizing as $he nears the present day what an abject story of degradation and humiliation her life truly is. $He continues shakily, describing in brief her current life, crying a little and trembling with arousal. At a whispered command from you, $he concludes
@@ -8309,7 +8309,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "resting amp">>
 
-<<link "Check on her">>
+<<link "Check on $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	Since $he's limbless<<if $activeSlave.pregKnown == 1>> and pregnant<</if>>, $his health is more fragile than most slaves'. You look in on $him, and when $he continues to shiver, you pull the sheets back around $him, tucking her in in such a way that $he can lie comfortably. In the morning $he doesn't understand why $he's so snug and well-rested, but @@.green;$his health improves with decent sleep.@@
@@ -8425,7 +8425,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
-<br><<link "Attend a sporting event with her">>
+<br><<link "Attend a sporting event with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You call out to stop $him, and $he turns obediently to listen; you tell her $he'll be spending the day with you at a game outside the arcology, and $he's to meet you at your VTOL pad in two hours. $He ponders for a moment but clearly understands this is related to her age, somehow. Right at the proper time, $he arrives on the pad. $He's clearly spent the whole time getting the right clothing; somehow $he used the clothing inventory system to find a cheerleader uniform from the home team. It's one size too small, though you're unsure whether this is intentional or not. The hem of the pleated cheerleader skirt is barely low enough to conceal her <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>lack of private parts<<else>>pussy<</if>>, and $he bounces a little on her heels for you to show off how $he's going commando underneath it. $His
@@ -8787,7 +8787,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "slave dick huge">>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<<link "Enter the shower and take her">>
+<<link "Enter the shower and take $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	$He's so occupied that $he doesn't hear you until you seize her under the armpits and drag $him to her feet. $His massive dickhead pops free of $his mouth and $he squeaks in surprise as you push her<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>> body<</if>> against the wall of the shower and stuff your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up her
@@ -8846,7 +8846,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<</if>>
 <</if>>
 <<if ($activeSlave.belly < 5000) && (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>
-<br><<link "See if $he can do that while you take her">>
+<br><<link "See if $he can do that while you take $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You interrupt $activeSlave.slaveName and make her lie on a nearby bed. After some preparatory stretching, during which her frustrated erection flops forlornly around, you manage to get both her ankles behind her head. In this position $he manages to resume sucking on the head of $his penis as you slip into $him.
@@ -9143,31 +9143,31 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <<link "Beg her pardon and offer to loan the bitch to her">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The businesswoman's anger turns to malicious anticipation as you call $activeSlave.slaveName over and inform $him that you and the businesswoman have decided $activeSlave.slaveName will be spending the night with $him. Now that you look at your business partner, $he has certain signs of a sadist. $activeSlave.slaveName notices too, and begins to cry<<if $activeSlave.bellyPreg >= 1500>> and shield $his pregnancy<</if>> as the businesswoman promises that there will be "no permanent damage." $activeSlave.slaveName is unceremoniously returned in the early hours of the morning. $His back and buttocks have been meticulously flogged right up to the very edge of damage, leaving angry marks across her $activeSlave.skin skin. $His mouth lolls open, as though $he's been doing little but give cunnilingus. <<if $activeSlave.vagina != -1>>$His pussy,<<elseif $activeSlave.dick == 0>>$His shamefully featureless groin with its tiny little hole,<<else>>$His dick,<</if>> anus,<<if $activeSlave.belly >= 10001>> popped navel,<</if>> and even $his nipples show signs of torture. Whenever $he thinks of a sharp remark in the future, @@.hotpink;$he'll remember the pain and keep $his mouth shut.@@
+	The businesswoman's anger turns to malicious anticipation as you call $activeSlave.slaveName over and inform $him that you and the businesswoman have decided $activeSlave.slaveName will be spending the night with her. Now that you look at your business partner, she has certain signs of a sadist. $activeSlave.slaveName notices too, and begins to cry<<if $activeSlave.bellyPreg >= 1500>> and shield $his pregnancy<</if>> as the businesswoman promises that there will be "no permanent damage." $activeSlave.slaveName is unceremoniously returned in the early hours of the morning. $His back and buttocks have been meticulously flogged right up to the very edge of damage, leaving angry marks across $his $activeSlave.skin skin. $His mouth lolls open, as though $he's been doing little but give cunnilingus. <<if $activeSlave.vagina != -1>>$His pussy,<<elseif $activeSlave.dick == 0>>$His shamefully featureless groin with its tiny little hole,<<else>>$His dick,<</if>> anus,<<if $activeSlave.belly >= 10001>> popped navel,<</if>> and even $his nipples show signs of torture. Whenever $he thinks of a sharp remark in the future, @@.hotpink;$he'll remember the pain and keep $his mouth shut.@@
 	<<set $activeSlave.behavioralFlaw = "none", $activeSlave.oralCount += 5, $oralTotal += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Offer to spitroast the bitch between the two of you">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The businesswoman grins slowly and reaches into her purse as you inform $activeSlave.slaveName that you and the businesswoman will punish her together. $activeSlave.slaveName's eyes widen as the businesswoman fishes a massive strap on out of her bag. The surprise turns to fear as the businesswoman begins to slap it against $activeSlave.slaveName's buttocks as you
+	The businesswoman grins slowly and reaches into her purse as you inform $activeSlave.slaveName that you and the businesswoman will punish $him together. $activeSlave.slaveName's eyes widen as the businesswoman fishes a massive strap on out of her bag. The surprise turns to fear as the businesswoman begins to slap it against $activeSlave.slaveName's buttocks as you
 	<<if $activeSlave.amp != 1>>
 		<<if $activeSlave.belly >= 300000>>
-			push her onto her _belly belly.
+			push $him onto $his _belly belly.
 		<<else>>
-			pull her down on all fours.
+			pull $him down on all fours.
 		<</if>>
 	<<else>>
 		arrange your bitchy little sex toy between you and your guest.
 	<</if>>
 	The businesswoman clearly wants $his ass, so you
 	<<if !canDoAnal($activeSlave)>>
-		quickly unfasten her anal chastity. You
+		quickly unfasten $his anal chastity. You
 	<</if>>
 	<<if $PC.vagina == 1>>ride $activeSlave.slaveName's face<<else>>facefuck $activeSlave.slaveName<</if>> roughly as $activeSlave.slaveName takes a painful anal raping from the huge dildo.
-	The businesswoman winks at you companionably and extracts squeals from $activeSlave.slaveName that feel especially delicious <<if $PC.vagina == 1>>against your cunt<<else>>along your dick<</if>>. $activeSlave.slaveName <<if $activeSlave.amp != 1>>collapses<<if $activeSlave.belly >= 5000>> and rolls onto her side<</if>> after a long punishment fuck<<else>>ends the day a sore toy<</if>>; her @@.hotpink;submission@@ to you and @@.gold;fear of you@@ have both increased.
+	The businesswoman winks at you companionably and extracts squeals from $activeSlave.slaveName that feel especially delicious <<if $PC.vagina == 1>>against your cunt<<else>>along your dick<</if>>. $activeSlave.slaveName <<if $activeSlave.amp != 1>>collapses<<if $activeSlave.belly >= 5000>> and rolls onto $his side<</if>> after a long punishment fuck<<else>>ends the day a sore toy<</if>>; $his @@.hotpink;submission@@ to you and @@.gold;fear of you@@ have both increased.
 	<<if $activeSlave.anus == 0>>
-		The businesswoman considered her @@.lime;anal cherry@@ a @@.green;respectable offer.@@
+		The businesswoman considered $his @@.lime;anal cherry@@ a @@.green;respectable offer.@@
 		<<set $activeSlave.anus++>>
 		<<set $rep += 100>>
 	<</if>>
@@ -9178,23 +9178,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <br><<link "Sentence $him to a month in the arcade">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$activeSlave.slaveName screams and begs when $he realizes what her punishment for being stupid is to be, but you are obdurate.
+	$activeSlave.slaveName screams and begs when $he realizes what $his punishment for being stupid is to be, but you are obdurate.
 	<<if ($activeSlave.muscles > 30)>>
 		$His powerful form has to be sedated for immurement in the arcade.
 	<<elseif ($activeSlave.weight >= 190)>>
-		$He is so massively fat that immuring her in the arcade is a struggle, even when $he isn't trying to.
+		$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
 	<<elseif $activeSlave.belly >= 120000>>
-		$He is so enormously gravid that immuring her in the arcade is a hassle, even though her _belly middle limits her ability to struggle.
+		$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
 	<<elseif ($activeSlave.weight >= -10)>>
-		$His desperate struggles make immuring her in the arcade difficult.
+		$His desperate struggles make immuring $him in the arcade difficult.
 	<<elseif $activeSlave.belly >= 1500>>
-		$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit her properly into the restraints for immurement in the arcade.
+		$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
 	<<elseif $activeSlave.muscles < -15>>
-		$His weak body makes immuring her in the arcade pathetically easy.
+		$His weak body makes immuring $him in the arcade pathetically easy.
 	<<else>>
-		$His thin form makes immuring her in the arcade pathetically easy.
+		$His thin form makes immuring $him in the arcade pathetically easy.
 	<</if>>
-	After $he's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as $he wriggles desperately against her restraints.
+	After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
 	<<= assignJob($activeSlave, "be confined in the arcade")>>
 	<<set $activeSlave.sentence = 4>>
 	<</replace>>
@@ -9203,7 +9203,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "obedient shemale">>
 
-<<link "Let her">>
+<<link "Let $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	$He moans with gratitude and relief. $He masturbates furiously as you continue to use $his butt. $He was clearly near the edge anyway, and
@@ -17232,7 +17232,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<br><<link "Sentence $him to a day in $arcadeName for cum injection therapy">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You have $assistantName inform $activeSlave.slaveName of her unacceptable behavior and sentence $him to a day in $arcadeName. $He cries and pleads for mercy, and even begs to be allowed to suck a cock, any cock, so $he can prove her newfound enthusiasm for cum, but you are unmerciful as two other slaves drag her off to serve her sentence. $He is forced to wear a<<if $activeSlave.vagina != -1>> combined vaginal and<<else>>n<</if>> anal chastity belt so that the only hole available is $his mouth, and is then confined in $arcadeName with $his mouth spread open by a ring gag and her head sticking through the hole in the wall. A sign below $his mouth proclaims $him to be a "cum extraction tube" and $he is used that way for the duration of her stay--a gruelling, 18-hour marathon of relentless throat fucking. <<if $activeSlave.sexualFlaw != "hates oral">>$His ordeal is so extreme that $he now @@.red;hates oral sex@@<<else>>$His hatred of oral sex makes her ordeal that much more horrific<</if>>, but it @@.hotpink;breaks down her resistance@@. $He now @@.gold;better understands the terrifying power you have over her@@, and the sheer amount of cum $he is forced to ingest @@.red;negatively effects $his health@@. Your other cum-fed slaves take note of what you do to girls who can't hold down their assigned diet.
+	You have $assistantName inform $activeSlave.slaveName of her unacceptable behavior and sentence $him to a day in $arcadeName. $He cries and pleads for mercy, and even begs to be allowed to suck a cock, any cock, so $he can prove her newfound enthusiasm for cum, but you are unmerciful as two other slaves drag her off to serve her sentence. $He is forced to wear a<<if $activeSlave.vagina != -1>> combined vaginal and<<else>>n<</if>> anal chastity belt so that the only hole available is $his mouth, and is then confined in $arcadeName with $his mouth spread open by a ring gag and her head sticking through the hole in the wall. A sign below $his mouth proclaims $him to be a "cum extraction tube" and $he is used that way for the duration of her stay--a grueling, 18-hour marathon of relentless throat fucking. <<if $activeSlave.sexualFlaw != "hates oral">>$His ordeal is so extreme that $he now @@.red;hates oral sex@@<<else>>$His hatred of oral sex makes her ordeal that much more horrific<</if>>, but it @@.hotpink;breaks down her resistance@@. $He now @@.gold;better understands the terrifying power you have over her@@, and the sheer amount of cum $he is forced to ingest @@.red;negatively effects $his health@@. Your other cum-fed slaves take note of what you do to girls who can't hold down their assigned diet.
 	<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.oralCount += 55, $activeSlave.publicCount += 55, $activeSlave.oralTotal += 55, $activeSlave.sexualFlaw = "hates oral", $activeSlave.fetish = "masochist">>
 	<</replace>>
 <</link>>
@@ -19297,7 +19297,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
-<br><<link "Unwind by tormenting her">>
+<br><<link "Unwind by tormenting $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	Though there is no shortage of torments you inflict during the course of your day to day life as an arcology owner, there is something refreshing about torturing a slave out of idle boredom rather than corrective disciple or sexual domination. Your night is filled with <<if $activeSlave.voice == 0>>the horrible rasping that a mute throat substitutes for cries of agony<<else>>echoing shrieks of anguish<</if>>, though every vocal outburst is idly punished with electro shock or strike of the whip. Come the morning, $activeSlave.slaveName <<if $activeSlave.fetish == "masochist">> is mortified by the intensity of her orgasms that night,@@.hotpink; and more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;scuttles away to tend to the bruises and marks that litter her battered body.@@
@@ -19308,12 +19308,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 
 <<case "devoted shortstack">>
 
-<<link "Show her why you like having short girls around">>
+<<link "Show $him why you like having short girls around">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You hook your arms underneath her own, pulling her off of the ground in one swift yank upwards. Taken off guard by her sudden vertical ascension, $he clings to your chest instinctively,
+	You hook your arms underneath $his own, pulling $him off of the ground in one swift yank upwards. Taken off guard by $his sudden vertical ascension, $he clings to your chest instinctively,
 	<<if $PC.boobs == 1 || $PC.title == 0>>
-		<<if $activeSlave.boobs > 25000>>her immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>her huge breasts squashing against yours<<elseif $activeSlave.boobs > 800>>$his breasts pressing heavily against yours<<else>>$his chest pressing against your breasts<</if>>.
+		<<if $activeSlave.boobs > 25000>>$his immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>her huge breasts squashing against yours<<elseif $activeSlave.boobs > 800>>$his breasts pressing heavily against yours<<else>>$his chest pressing against your breasts<</if>>.
 	<<else>>
 		<<if $activeSlave.boobs > 25000>>her immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>her huge breasts forming a soft cushion between your two bodies<<elseif $activeSlave.boobs > 800>>$his breasts pressing up against your hard chest pleasantly<<else>>$his chest pressing against yours<</if>>.
 	<</if>>
@@ -19417,7 +19417,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<br><<link "Show $him that short girls are amusing in the arcade">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-		You inform $activeSlave.slaveName that short girls like her are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag her off to be installed in the arcade for a day, so that $he too may see the humor in having short girls serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although her head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of her toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Customers are unable to fuck $his holes but readily delight in watching her squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking her face. Somewhere in the gruelling, 18-hour marathon of relentless throat fucking, her precarious position slips and her lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, her neck is held crooked at an unnatural angle by her restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short girl's place is as an @@.hotpink;amusing arcade hole@@. Though $he can't find the humor@@.gold;in such a terrible plight@@. Furthermore, her intense exertions during her stay @@.red;negatively effects $his health@@. Your other slaves take note of what you do to short girls who ask questions about their place in your penthouse.
+		You inform $activeSlave.slaveName that short girls like her are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag her off to be installed in the arcade for a day, so that $he too may see the humor in having short girls serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although her head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of $his toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Customers are unable to fuck $his holes but readily delight in watching her squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking $his face. Somewhere in the grueling, 18-hour marathon of relentless throat fucking, her precarious position slips and her lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, her neck is held crooked at an unnatural angle by her restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short $girl's place is as an @@.hotpink;amusing arcade hole@@. Though $he can't find the humor@@.gold;in such a terrible plight@@. Furthermore, her intense exertions during her stay @@.red;negatively effects $his health@@. Your other slaves take note of what you do to short girls who ask questions about their place in your penthouse.
 		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.oralCount += 55, $activeSlave.oralTotal += 55>>
 		<<set $activeSlave.publicCount += 55>>
 	<</replace>>
@@ -19460,7 +19460,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<= AnalVCheck()>>
 	<</replace>>
 <</link>><<if $activeSlave.anus == 0>>//This option will take anal virginity//<</if>>
-<br><<link "Assrape her">>
+<br><<link "Assrape $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	$He's an anal sex toy, and you decide to use her like one. You walk over, reach down, and jerk $him to her feet. You don't hurt $him, not yet, but the violence of the motion forces a sob out of $him. $He <<if canSee($activeSlave)>>sees the open lust in your eyes<<else>>feels the lust lingering about you<</if>> and is afraid. $He's not wrong to be so; you spin her roughly around and use one arm to pin her upper body mercilessly in place while you use your other hand to
@@ -19624,7 +19624,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
-<<if canDoAnal($activeSlave) || canDoVaganal($activeSlave)>>
+<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
 <br><<link "See if they've got any bounce">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
@@ -19873,7 +19873,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<EventFetish $activeSlave "boobs">>
 	<</replace>>
 <</link>>
-<br><<link "Hurt her">>
+<br><<link "Hurt $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You decide to exercise a little maliciousness. You take a step forward, producing a look of 
@@ -19887,9 +19887,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<case "partially inverted">>
 		You grab each of $his nipples around the margins of $his areolae, and squeeze them with such force that, partially inverted as they are, they protrude instantly.
 	<<case "inverted">>
-		You seize each of her inverted nipples, your thumbs uppermost, squeezing her sensitive, hidden nipples inside their fleshy prisons with cruel force.
+		You seize each of $his inverted nipples, your thumbs uppermost, squeezing $his sensitive, hidden nipples inside their fleshy prisons with cruel force.
 	<<case "huge">>
-		$His huge nipples provide you an excellent grip as you grab them and haul on them, jerking her whole body forward until $he's about to topple over.
+		$His huge nipples provide you an excellent grip as you grab them and haul on them, jerking $his whole body forward until $he's about to topple over.
 	<<case "fuckable">>
 		You cram a fist into each of $his nipples and spread your fingers wide, making sure that you don't come loose as you jerk $his body forward.
 	<<default>>
@@ -19897,19 +19897,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<</switch>>
 	$His $activeSlave.eyeColor eyes fly open and $he
 	<<if $activeSlave.voice == 1>>
-		bellows with pain, her deep voice very loud.
+		bellows with pain, $his deep voice very loud.
 	<<elseif $activeSlave.voice == 2>>
-		screams at the tops of her lungs.
+		screams at the tops of $his lungs.
 	<<elseif $activeSlave.voice == 3>>
-		shrieks, her high, girlish voice very shrill.
+		shrieks, $his high, girlish voice very shrill.
 	<</if>>
-	The sudden agony discombobulates her so badly that for a few moments, $he has no idea what's going on, and $his hands fly forward reflexively. $He manages to stop $himself at the last minute, realizing that trying to knock your hands away from her poor nipples would be a very bad idea indeed. $He looks up at you with <<if canSee($activeSlave)>>huge eyes<<else>>terror splashed across her face<</if>>, mewling helplessly, @@.gold;tears beginning to collect at the corners of $his eyes.@@ Pleased, you turn and go.
+	The sudden agony discombobulates $him so badly that for a few moments, $he has no idea what's going on, and $his hands fly forward reflexively. $He manages to stop $himself at the last minute, realizing that trying to knock your hands away from $his poor nipples would be a very bad idea indeed. $He looks up at you with <<if canSee($activeSlave)>>huge eyes<<else>>terror splashed across $his face<</if>>, mewling helplessly, @@.gold;tears beginning to collect at the corners of $his eyes.@@ Pleased, you turn and go.
 	<<set $activeSlave.trust -= 5>>
 	<<EventFetish $activeSlave "masochist">>
 	<</replace>>
 <</link>>
 <<if $activeSlave.lactation > 0>>
-<br><<link "Drink from her">>
+<br><<link "Drink from $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	$His <<if canSee($activeSlave)>>eyes widen<<else>>face light up<</if>> with surprise when you
@@ -20029,7 +20029,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<case "a succubus outfit">>
 		succubus getup
 	<<case "a hijab and blouse" "conservative clothing">>
-		conserative clothes
+		conservative clothes
 	<<default>>
 		$activeSlave.clothes
 	<</switch>>
@@ -20098,7 +20098,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<case "a succubus outfit">>
 		succubus getup
 	<<case "a hijab and blouse" "conservative clothing">>
-		conserative clothes
+		conservative clothes
 	<<default>>
 		$activeSlave.clothes
 	<</switch>>
@@ -20117,7 +20117,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<set $activeSlave.devotion += 5>>
 	<</replace>>
 <</link>>
-<br><<link "Put her in a string bikini">>
+<br><<link "Put $him in a string bikini">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You tell $him that the wardrobe's sorting system will present her with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thank<<s>>, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but girls everywhere love trying on new clothes. $He makes an entrance when $he comes back, spinning around to show off. $He's wearing the briefest possible string bikini. The top, rather than having patches of material to cover $his nipples, forms a string triangle around them, framing them but not covering them. The bottom is a single string in front, <<if $activeSlave.dick>>which looks rather sad and alone, pushed aside by her dick as it is<<elseif $activeSlave.labia>>and it's embraced completely by her generous pussylips<<else>>and it threatens to disappear inside her pussylips<</if>>. "Thi<<s>> feel<<s>> <<s>>o hot, <<Master>>," $he <<say>>s, and
@@ -20150,7 +20150,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
-<br><<link "Force uncomfortable straps on her">>
+<br><<link "Force uncomfortable straps on $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	You tell $him that the wardrobe's sorting system will present her with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thanks, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but girls everywhere love trying on new clothes. $He's wrong to be so enthusiastic. $He comes obediently back, wearing a set of cruelly uncomfortable leather straps in the general shape of a bikini, but much tighter and more restrictive. It isn't at all what $he was expecting, but $he did her best to obey. $He's @@.gold;tightened her own straps down@@ until they're just short of cutting off circulation, in an obvious effort to please you. You ask her how $he likes her outfit. "It'<<s>> ni<<c>>e, <<Master>>," $he <<say>>s, but $he sounds a little sad.
@@ -20325,7 +20325,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<elseif ($activeSlave.boobs >= 12000)>> 
 		massage the soft butter into her massive tits as they push up between the arch of the doorway and her bulging belly. You note with satisfaction as $his nipples harden with arousal. 
 	<<elseif ($activeSlave.boobs >= 7000)>> 
-		massage the soft butter into her monstrous tits, enjoying the struggle it takes to heft each butterslick, glistening melon with both hands. You note with satisfaction as $his nipples harden with arousal. 
+		massage the soft butter into her monstrous tits, enjoying the struggle it takes to heft each butter-slick, glistening melon with both hands. You note with satisfaction as $his nipples harden with arousal. 
 	<<elseif ($activeSlave.boobs >= 3000)>> 
 		massage the soft butter into each of her huge tits. Your slave cranes her head back a bit to avoid being smothered by her own breasts as you work the butter into them, but you can tell $he's aroused by what you're doing--$his nipples have turned hard as rocks. 
 	<<elseif Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw
index 617cacdddcb289d92200c6e2b77c7fe51a6dca13..5424eb6cfc6f35a805e9a7309a7b9af42b7ddd24 100644
--- a/src/uncategorized/RETS.tw
+++ b/src/uncategorized/RETS.tw
@@ -725,28 +725,28 @@ Mere moments after you absorb this arresting scene, $subSlave.slaveName thrusts
 <<set $activeSlave.penetrativeCount++, $penetrativeTotal++>>
 <<set _vaginal = 0>>
 <<if $subSlave.vagina != 0 && canDoVaginal($subSlave)>><<set _vaginal = 1>><</if>>
-You round a corner and almost trip over <<EventNameLink $activeSlave>>. $He's on top of another slave, humping away; her <<if $activeSlave.butt > 8>>monstrous, naked ass jiggles lewdly<<elseif $activeSlave.anus > 2>>loose asspussy winks lewdly<<elseif $activeSlave.muscles > 30>>heavily muscled butt flexes powerfully<<elseif $activeSlave.butt > 3>>big butt pumps energetically<<else>>nice little butt flexes cutely<</if>> as she thrusts. You can't see much of the slave <<if _vaginal>>lying on her back<<else>>face-down<</if>> underneath $activeSlave.slaveName, but you recognize her as $subSlave.slaveName by her sobbing. _He2's struggling a little, but $activeSlave.slaveName has her pinned to the floor by her wrists, and $activeSlave.slaveName is quickly raping the resistance out of the <<print SlaveTitle($subSlave)>>.
+You round a corner and almost trip over <<EventNameLink $activeSlave>>. $He's on top of another slave, humping away; $his <<if $activeSlave.butt > 8>>monstrous, naked ass jiggles lewdly<<elseif $activeSlave.anus > 2>>loose asspussy winks lewdly<<elseif $activeSlave.muscles > 30>>heavily muscled butt flexes powerfully<<elseif $activeSlave.butt > 3>>big butt pumps energetically<<else>>nice little butt flexes cutely<</if>> as $he thrusts. You can't see much of the slave <<if _vaginal>>lying on _his2 back<<else>>face-down<</if>> underneath $activeSlave.slaveName, but you recognize _him2 as $subSlave.slaveName by _his2 sobbing. _He2's struggling a little, but $activeSlave.slaveName has _him2 pinned to the floor by _his2 wrists, and $activeSlave.slaveName is quickly raping the resistance out of the <<print SlaveTitle($subSlave)>>.
 <br><br>
-$activeSlave.slaveName senses your presence above and behind $him, and twists her $activeSlave.hColor head around to <<if canSee($activeSlave)>>see who it is. She sees that it's you<<else>>discern who it is. She realizes that it's you<</if>>, and greets you cheerfully. "Hi, <<Master>>," she trills.
+$activeSlave.slaveName senses your presence above and behind $him, and twists $his $activeSlave.hColor head around to <<if canSee($activeSlave)>>see who it is. $He sees that it's you<<else>>discern who it is. $He realizes that it's you<</if>>, and greets you cheerfully. "Hi, <<Master>>," $he trills.
 <<if $activeSlave.fetishKnown && $activeSlave.fetish == "sadist">>
 	"Thi<<s>> i<<s>> <<s>>o awe<<s>>ome," the sadistic $desc gushes. "The crying, the <<s>>truggling. Thank you for letting u<<s>> do thi<<s>>."
 <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "dom">>
 	"The crying almo<<s>>t make<<s>> me feel bad, but fucking a bitch feel<<s>> <<s>>o, <<s>>o good," the dominant $desc admits conversationally.
 <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && _vaginal == 1 && canImpreg($subSlave, $activeSlave)>>
-	"I couldn't help my<<s>>elf," the $desc admits. "<<Sh>>e'd look <<s>>o pretty with a pregnant belly and I ju<<s>>t couldn't re<<s>>i<<s>>t giving her one. <<Sh>>e tried to <<s>>ay <<sh>>e didn't want to be a mother, <<s>>o..."
+	"I couldn't help my<<s>>elf," the $desc admits. "_He2'd look <<s>>o pretty with a pregnant belly and I ju<<s>>t couldn't re<<s>>i<<s>>t giving _him2 one. _He2 tried to <<s>>ay _he2 didn't want to be a mother, <<s>>o..."
 <<elseif $activeSlave.energy > 95>>
 	"I can't help my<<s>>elf," the nymphomaniac $desc admits breathlessly. "Thank you for letting me take what I need from the other girl<<s>>."
 <<elseif $activeSlave.energy > 60>>
-	"I couldn't help my<<s>>elf," the $desc admits. "I wa<<s>> really, really horny and she was ju<<s>>t, um, there. And <<sh>>e tried to <<s>>ay no."
+	"I couldn't help my<<s>>elf," the $desc admits. "I wa<<s>> really, really horny and _he2 was ju<<s>>t, um, there. And _he2 tried to <<s>>ay no."
 <<else>>
-	"I know it'<<s>> not like me," the $desc admits. "But I a<<s>>ked her, like, mo<<s>>tly joking, and she tried to <<s>>ay no."
+	"I know it'<<s>> not like me," the $desc admits. "But I a<<s>>ked _him2, like, mo<<s>>tly joking, and _he2 tried to <<s>>ay no."
 <</if>>
 <br><br>
 <<run Enunciate($subSlave)>>
-$subSlave.slaveName <<if _vaginal>>looks out from under $activeSlave.slaveName<<else>>turns her head<</if>> and <<if canSee($subSlave)>>looks at<<else>>faces<</if>> you too. "<<Master $subSlave>>, plea<<s>>e," she begs. "P-plea<<s>>e, make her <<s>>-<<s>>top - mhhh -" $activeSlave.slaveName shuts her up by <<if _vaginal>>kissing her unwilling mouth<<else>>shoving her face back against the floor<</if>>. Once she has $subSlave.slaveName back under control, $activeSlave.slaveName slows her thrusting, reaches around behind herself, and <<if $activeSlave.vagina != 0 && canDoVaginal($activeSlave)>>spreads her futa pussy for you.<<else>>pulls one asscheek aside to offer you her anus. To make the offer extra clear, she starts winking it lewdly.<</if>>
+$subSlave.slaveName <<if _vaginal>>looks out from under $activeSlave.slaveName<<else>>turns _his2 head<</if>> and <<if canSee($subSlave)>>looks at<<else>>faces<</if>> you too. "<<Master $subSlave>>, plea<<s>>e," _he2 begs. "P-plea<<s>>e, make $him <<s>>-<<s>>top - mhhh -" $activeSlave.slaveName shuts _him2 up by <<if _vaginal>>kissing _his2 unwilling mouth<<else>>shoving _his2 face back against the floor<</if>>. Once $he has $subSlave.slaveName back under control, $activeSlave.slaveName slows $his thrusting, reaches around behind $himself, and <<if $activeSlave.vagina != 0 && canDoVaginal($activeSlave)>>spreads $his futa pussy for you.<<else>>pulls one asscheek aside to offer you $his anus. To make the offer extra clear, $he starts winking it lewdly.<</if>>
 <br><br>
 <<run Enunciate($activeSlave)>>
-"Plea<<s>>e fuck me while I rape her, <<Master>>," $activeSlave.slaveName <<say>>s in a mockery of $subSlave.slaveName's <<if $subSlave.voice > 2>>high-pitched whining<<elseif $subSlave.voice > 1>>begging<<else>>deep-voiced begging<</if>>. "Ooh, or, plea<<s>>e, <<Master>>, may I flip her over? I'd love to feel <<if $PC.dick>>your cock in<<s>>ide her along<<s>>ide mine<<else>>that <<s>>trap-on you u<<s>>e in<<s>>ide her along<<s>>ide my cock<</if>>!"
+"Plea<<s>>e fuck me while I rape _him2, <<Master>>," $activeSlave.slaveName <<say>>s in a mockery of $subSlave.slaveName's <<if $subSlave.voice > 2>>high-pitched whining<<elseif $subSlave.voice > 1>>begging<<else>>deep-voiced begging<</if>>. "Ooh, or, plea<<s>>e, <<Master>>, may I flip _him2 over? I'd love to feel <<if $PC.dick>>your cock in<<s>>ide _him2 along<<s>>ide mine<<else>>that <<s>>trap-on you u<<s>>e in<<s>>ide _him2 along<<s>>ide my cock<</if>>!"
 <br><br>
 <<run Enunciate($subSlave)>>
 "Plea<<s>>e, no," sobs $subSlave.slaveName.
@@ -1761,7 +1761,7 @@ she adds impishly. Hearing this, $subSlave.slaveName lets the breast pop free of
 	<<replace "#result">>
 	You order $activeSlave.slaveName to stop raping $subSlave.slaveName.
 	<<run Enunciate($activeSlave)>>
-	"Ye<<s>>, <<Master>>," she <<say>>s automatically, and gets up, pulling her dick out of $subSlave.slaveName's poor <<if _vaginal>>pussy<<else>>asshole<</if>>. $activeSlave.slaveName doesn't understand, and her prick softens quickly with her confusion. She thought she didn't need consent to fuck other slaves, and she @@.gold;doubts herself.@@
+	"Ye<<s>>, <<Master>>," $he <<say>>s automatically, and gets up, pulling her dick out of $subSlave.slaveName's poor <<if _vaginal>>pussy<<else>>asshole<</if>>. $activeSlave.slaveName doesn't understand, and her prick softens quickly with her confusion. $He thought $he didn't need consent to fuck other slaves, and $he @@.gold;doubts $himself.@@
 	<br><br>
 	<<run Enunciate($subSlave)>>
 	$subSlave.slaveName gets to her feet too, using a hand to massage her outraged hole. "Thank you, <<Master $subSlave>>, thank you," she repeats over and over, @@.mediumaquamarine;weeping with relief.@@
diff --git a/src/uncategorized/saGetMilked.tw b/src/uncategorized/saGetMilked.tw
index dc293740d8cd98edb225f97eef6cdd89b5d59da5..27d27ecad63b780fb08537f56fadffc4d279f39b 100644
--- a/src/uncategorized/saGetMilked.tw
+++ b/src/uncategorized/saGetMilked.tw
@@ -375,15 +375,15 @@ gets milked this week.
 
 	<<if ($arcologies[0].FSPastoralist == "unset")>>
 		<<set _cumSale = ($cum*random(15,25))>>
-		<<if  $slaves[$i].vasectomy == 1 || $slaves[$i].ballType == "sterile">><<set _cumSale *= 0.2>><<elseif $slaves[$i].prostate == 3>><<set _cumSale *= 0.5>><</if>>
+		<<if $slaves[$i].vasectomy == 1 || $slaves[$i].ballType == "sterile">><<set _cumSale *= 0.2>><<elseif $slaves[$i].prostate == 3>><<set _cumSale *= 0.5>><</if>>
 		$He produces <<print $cum>> deciliters of cum over the week; the fresh ejaculate is sold for @@.yellowgreen;<<print cashFormat(_cumSale)>>.@@
 	<<elseif $arcologies[0].FSPastoralistLaw == 1>>
 		<<set _cumSale = ($cum*(random(20,40)))>>
-		<<if  $slaves[$i].vasectomy == 1 || $slaves[$i].ballType == "sterile">><<set _cumSale *= 0.2>><<elseif $slaves[$i].prostate == 3>><<set _cumSale *= 0.5>><</if>>
+		<<if $slaves[$i].vasectomy == 1 || $slaves[$i].ballType == "sterile">><<set _cumSale *= 0.2>><<elseif $slaves[$i].prostate == 3>><<set _cumSale *= 0.5>><</if>>
 		$He produces <<print $cum>> deciliters of cum over the week; the fresh ejaculate, which is in extremely high demand as one of $arcologies[0].name's few legal sources of animal protein, is sold for @@.yellowgreen;<<print cashFormat(_cumSale)>>.@@
 	<<else>>
 		<<set _cumSale = ($cum*(random(10,20)+Math.trunc($arcologies[0].FSPastoralist/10)))>>
-		<<if  $slaves[$i].vasectomy == 1 || $slaves[$i].ballType == "sterile">><<set _cumSale *= 0.2>><<elseif $slaves[$i].prostate == 3>><<set _cumSale *= 0.5>><</if>>
+		<<if $slaves[$i].vasectomy == 1 || $slaves[$i].ballType == "sterile">><<set _cumSale *= 0.2>><<elseif $slaves[$i].prostate == 3>><<set _cumSale *= 0.5>><</if>>
 		$He produces <<print $cum>> deciliters of cum over the week; the fresh ejaculate, which is in high demand given the new cultural preference for slave products, is sold for @@.yellowgreen;<<print cashFormat(_cumSale)>>.@@
 	<</if>>
 	<<set $cash += _cumSale>>
@@ -467,6 +467,88 @@ gets milked this week.
 	<<set $slaves[$i].devotion += 1>>
 <</if>>
 
+<<if ($showVignettes == 1)>>
+	<<set _vignette = GetVignette($slaves[$i])>>
+	__This week__ _vignette.text
+	<<if (_vignette.type == "cash")>>
+		<<if (_vignette.effect > 0)>>
+			@@.yellowgreen;making you an extra <<print cashFormat(Math.trunc($FResult*_vignette.effect))>>.@@
+		<<elseif (_vignette.effect < 0)>>
+			@@.red;losing you <<print cashFormat(Math.abs(Math.trunc($FResult*_vignette.effect)))>>.@@
+		<<else>>
+			an incident without lasting effect.
+		<</if>>
+		<<set $cash += Math.trunc($FResult*_vignette.effect)>>
+	<<set _incomeStats.income += Math.trunc($FResult*_vignette.effect)>>
+	<<elseif (_vignette.type == "devotion")>>
+		<<if (_vignette.effect > 0)>>
+			<<if $slaves[$i].devotion > 50>>
+		@@.hotpink;increasing $his devotion to you.@@
+			<<elseif $slaves[$i].devotion >= -20>>
+		@@.hotpink;increasing $his acceptance of you.@@
+		<<elseif $slaves[$i].devotion > -10>>
+		@@.hotpink;reducing $his dislike of you.@@
+			<<else>>
+		@@.hotpink;reducing $his hatred of you.@@
+			<</if>>
+		<<elseif (_vignette.effect < 0)>>
+			<<if $slaves[$i].devotion > 50>>
+		@@.mediumorchid;reducing $his devotion to you.@@
+			<<elseif $slaves[$i].devotion >= -20>>
+		@@.mediumorchid;reducing $his acceptance of you.@@
+		<<elseif $slaves[$i].devotion > -10>>
+		@@.mediumorchid;increasing $his dislike of you.@@
+			<<else>>
+		@@.mediumorchid;increasing $his hatred of you.@@
+			<</if>>
+		<<else>>
+			an incident without lasting effect.
+		<</if>>
+		<<set $slaves[$i].devotion += 1*_vignette.effect>>
+	<<elseif (_vignette.type == "trust")>>
+		<<if (_vignette.effect > 0)>>
+			<<if $slaves[$i].trust > 20>>
+		@@.mediumaquamarine;increasing $his trust in you.@@
+		<<elseif $slaves[$i].trust > -10>>
+		@@.mediumaquamarine;reducing $his fear of you.@@
+			<<else>>
+		@@.mediumaquamarine;reducing $his terror of you.@@
+			<</if>>
+		<<elseif (_vignette.effect < 0)>>
+			<<if $slaves[$i].trust > 20>>
+		@@.gold;reducing $his trust in you.@@
+			<<elseif $slaves[$i].trust > -20>>
+		@@.gold;increasing $his fear of you.@@
+			<<else>>
+		@@.gold;increasing $his terror of you.@@
+			<</if>>
+		<<else>>
+			an incident without lasting effect.
+		<</if>>
+		<<set $slaves[$i].trust += 1*_vignette.effect>>
+	<<elseif (_vignette.type == "health")>>
+		<<if (_vignette.effect > 0)>>
+		@@.green;improving $his health.@@
+		<<elseif (_vignette.effect < 0)>>
+		@@.red;affecting $his health.@@
+		<<else>>
+			an incident without lasting effect.
+		<</if>>
+		<<set $slaves[$i].health += 2*_vignette.effect>>
+	<<else>>
+		<<if (_vignette.effect > 0)>>
+			@@.green;gaining you a bit of reputation.@@
+		<<elseif (_vignette.effect < 0)>>
+			@@.red;losing you a bit of reputation.@@
+		<<else>>
+			an incident without lasting effect.
+		<</if>>
+		<<set $rep += Math.trunc($FResult*_vignette.effect*0.1)>>
+	<<set _incomeStats.rep += Math.trunc($FResult*_vignette.effect*0.1)>>
+	<</if>>
+
+<</if>>
+
 /* FACILITY DECORATION IMPACTS */
 
 <<if $slaves[$i].assignment == "work in the dairy">>
diff --git a/src/uncategorized/saWhore.tw b/src/uncategorized/saWhore.tw
index be828f3435efd227524e829052a77244feb4e84a..91eac539fbf257c5f7a74e9301129c7c3d2f0b84 100644
--- a/src/uncategorized/saWhore.tw
+++ b/src/uncategorized/saWhore.tw
@@ -951,7 +951,7 @@ $His appearance attracted $beauty customers (<<print Math.trunc($beauty/7)>> a d
 <<elseif ($slaves[$i].behavioralQuirk == "cutting")>>
 	$He gets a lot of attention for $his ability to joke at a customer's expense.
 <<elseif ($slaves[$i].behavioralQuirk == "funny")>>
-	$He brings unintentional comic relief to the hard work  of prostitution.
+	$He brings unintentional comic relief to the hard work of prostitution.
 <<elseif ($slaves[$i].behavioralQuirk == "adores women")>>
 	$He's a favorite among female customers, whom $he greets with real enthusiasm.
 <<elseif ($slaves[$i].behavioralQuirk == "adores men")>>