From 911c84d635534d7b74b793f511fb98d564f344ad Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Tue, 3 Jul 2018 02:23:34 -0400
Subject: [PATCH] fixes

---
 .../clothing hair and accessory passages.txt  |  2 +-
 devNotes/twine JS.txt                         | 48 +++++++++++--------
 slave variables documentation - Pregmod.txt   |  6 +++
 src/js/clothingSelectionJS.tw                 | 40 ++++++++--------
 src/utility/descriptionWidgetsFlesh.tw        | 48 -------------------
 5 files changed, 55 insertions(+), 89 deletions(-)

diff --git a/devNotes/clothing hair and accessory passages.txt b/devNotes/clothing hair and accessory passages.txt
index f0d62742842..5c9f6f319bc 100644
--- a/devNotes/clothing hair and accessory passages.txt	
+++ b/devNotes/clothing hair and accessory passages.txt	
@@ -37,7 +37,7 @@ Clothes:
 		slaveInteract.tw
 		wardrobeUse.tw
 		slaveSummaryWidgets.tw
-		rulesAssistant.tw
+		rulesAssistantOptions.tw
 		toyChest.tw
 		useGuard.tw
 		birthWidgets.tw
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 68283bae5bf..8ab7ee9987f 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -7690,7 +7690,7 @@ window.todaysOutfit = function(slave) {
 				selection = {text: `${he} commonly sees others wearing chains and is drawn to doing so ${himself}.`, clothes: jsEither(['chains', 'uncomfortable straps', 'shibari ropes'])};
 				break;
 			case 'mature':
-				selection = {text: `${he} commonly sees others wearing suits and is drawn to doing so ${himself}.`, clothes: jsEither(['slutty business attire', 'a nice maid outfit', 'a military uniform', 'a schutzstaffel uniform', 'a slutty schutzstaffel uniform', 'a red army uniform', 'nice business attire'])};
+				selection = {text: `${he} commonly sees others wearing suits and is drawn to doing so ${himself}.`, clothes: jsEither(['slutty business attire', 'a nice maid outfit', 'a military uniform', 'a schutzstaffel uniform', 'a slutty schutzstaffel uniform', 'a red army uniform', 'a mounty outfit', 'nice business attire'])};
 				break;
 			case 'youth':
 				selection = {text: `${he} commonly sees schoolgirls around and instinctually follows along.`, clothes: jsEither(['a schoolgirl outfit', 'a cheerleader outfit'])};
@@ -7739,7 +7739,7 @@ window.todaysOutfit = function(slave) {
 			}
 		} else if(slave.assignment == "be the Madam") {
 			if(slave.energy > 95 || slave.need > 100) {
-				wardrobeAssignment.push({text: `and wears a slutty suit to be certain nothing blocks ${his} from getting the sex ${he} needs.`, clothes: "slutty business attire"});
+				wardrobeAssignment.push({text: `and wears a slutty suit to be certain nothing blocks ${him} from getting the sex ${he} needs.`, clothes: "slutty business attire"});
 			} else if(slave.energy > 80) {
 				wardrobeAssignment.push({text: `and wears a nice suit to show ${he} means business.`, clothes: "nice business attire"});
 				wardrobeAssignment.push({text: "and wears a slutty suit to entice and arouse while still looking managerial.", clothes: "slutty business attire"});
@@ -7776,17 +7776,18 @@ window.todaysOutfit = function(slave) {
 				}
 			}
 		} else if(slave.assignment == "be your Head Girl") {
-			wardrobeAssignment.push({text: `and wears a military uniform to give ${his} that extra touch of authority.`, clothes: "a military uniform"});
-			wardrobeAssignment.push({text: `and wears a schutzstaffel uniform to give ${his} that extra touch of authority.`, clothes: "a schutzstaffel uniform"});
-			wardrobeAssignment.push({text: `and wears a slutty schutzstaffel uniform to give ${his} that extra touch of authority.`, clothes: "a slutty schutzstaffel uniform"});
-			wardrobeAssignment.push({text: `and wears a red army uniform to give ${his} that extra touch of authority.`, clothes: "a red army uniform"});			
-			wardrobeAssignment.push({text: `and wears a handsome suit to give ${his} that extra touch of authority.`, clothes: "nice business attire"});
+			wardrobeAssignment.push({text: `and wears a military uniform to give ${him} that extra touch of authority.`, clothes: "a military uniform"});
+			wardrobeAssignment.push({text: `and wears a schutzstaffel uniform to give ${him} that extra touch of authority.`, clothes: "a schutzstaffel uniform"});
+			wardrobeAssignment.push({text: `and wears a slutty schutzstaffel uniform to give ${him} that extra touch of authority.`, clothes: "a slutty schutzstaffel uniform"});
+			wardrobeAssignment.push({text: `and wears a red army uniform to give ${him} that extra touch of authority.`, clothes: "a red army uniform"});
+			wardrobeAssignment.push({text: `and wears a mounty outfit to give ${him} that extra touch of authority.`, clothes: "a mounty outfit"});					
+			wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that extra touch of authority.`, clothes: "nice business attire"});
 			if(canPenetrate(slave)){
 				wardrobeAssignment.push({text: `and wears a slutty suit to make it perfectly clear that ${his} dick is ${his} main tool in ${his} job.`, clothes: "slutty business attire"});
 			}
 		} else if(slave.assignment == "be the Schoolteacher") {
-			wardrobeAssignment.push({text: `and wears a handsome suit to give ${his} that teacherly authority.`, clothes: "nice business attire"});
-			wardrobeAssignment.push({text: `and wears a slutty suit to give ${his} an air of authority will keeping all eyes focused on ${him}.`, clothes: "slutty business attire"});
+			wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that teacherly authority.`, clothes: "nice business attire"});
+			wardrobeAssignment.push({text: `and wears a slutty suit to give ${him} an air of authority will keeping all eyes focused on ${him}.`, clothes: "slutty business attire"});
 			wardrobeAssignment.push({text: `and wears a schoolgirl outfit to help keep ${his} charges focused on ${him}.`, clothes: "a schoolgirl outfit"});
 			wardrobeAssignment.push({text: `and dresses up as a succubus to give ${his} sex lessons an extra kick.`, clothes: "a succubus outfit"});
 			if(isItemAccessible("conservative clothing")) {
@@ -7841,6 +7842,7 @@ window.todaysOutfit = function(slave) {
 			wardrobeAssignment.push({text: "and wears a slutty schutzstaffel uniform to look the part of the honor guard.", clothes: "a slutty schutzstaffel uniform"});
 			wardrobeAssignment.push({text: "and wears a red army uniform to look the part of the honor guard.", clothes: "a red army uniform"});
 			wardrobeAssignment.push({text: "and wears a nice suit to make it clear you mean business.", clothes: "nice business attire"});
+			wardrobeAssignment.push({text: "and wears a mounty outfit to make it clear you mean business.", clothes: "a mounty outfit"});
 			wardrobeAssignment.push({text: `and wears a scalemail bikini to make ${himself} look fierce.`, clothes: "a scalemail bikini"});
 			if(isItemAccessible("a kimono")) {
 				wardrobeAssignment.push({text: "and wears a nice kimono to add an air of elegance to your presence.", clothes: "a kimono"});
@@ -7878,14 +7880,14 @@ window.todaysOutfit = function(slave) {
 			} else if(slave.assignment == "be your Concubine") {
 				wardrobeAssignment.push({text: `and goes naked, since it's ${his} honored role to be the chief object of your desire.`, clothes: "no clothing"});
 				wardrobeAssignment.push({text: `and dresses as a slutty nurse as your genitals are always in need of ${his} special treatment.`, clothes: "a slutty nurse outfit"});
-				wardrobeAssignment.push({text: `and dresses as a schoolgirl in the hopes that you teach ${his} how to be a woman.`, clothes: "a schoolgirl outfit"});
+				wardrobeAssignment.push({text: `and dresses as a schoolgirl in the hopes that you teach ${him} how to be a woman.`, clothes: "a schoolgirl outfit"});
 				wardrobeAssignment.push({text: `and dresses as a cheerleader so ${he} may cheer you on as you blow ${his} mind.`, clothes: "a cheerleader outfit"});
 				if(player.dick == 1) {
 					wardrobeAssignment.push({text: "and dresses as a slutty maid as you always come home with a stiff package that needs a thorough polishing.", clothes: "a slutty maid outfit"});
 				}
 				wardrobeAssignment.push({text: `and, since you personally see that ${he} never goes hungry, ${he} dresses like the sex demoness ${he} is.`, clothes: "a succubus outfit"});
 				if(isItemAccessible("attractive lingerie for a pregnant woman") && slave.belly >= 10000 && slave.pregSource == -1) {
-					wardrobeAssignment.push({text: `and chooses attractive lingerie to showcase the body you've given ${his} in the hopes that you ravish ${him}.`, clothes: "attractive lingerie for a pregnant woman"});
+					wardrobeAssignment.push({text: `and chooses attractive lingerie to showcase the body you've given ${him} in the hopes that you ravish ${him}.`, clothes: "attractive lingerie for a pregnant woman"});
 				}
 				if(slave.toyHole == "dick" && canPenetrate(slave)) {
 					wardrobeAssignment.push({text: `and slips into a scalemail bikini so ${he} can act the role of your conqueror as ${he} bends you over.`, clothes: "a scalemail bikini"});
@@ -7937,7 +7939,7 @@ window.todaysOutfit = function(slave) {
 				}
 			} else if(slave.assignment == "be a servant" || slave.assignment == "work as a servant") {
 				if(slave.energy > 95 || slave.need > 100) {
-					wardrobeAssignment.push({text: `and wears a skimpy maid outfit hoping that someone sneaks up behind ${his} as ${he} works and fulfills ${his} desires.`, clothes: "a slutty maid outfit"});
+					wardrobeAssignment.push({text: `and wears a skimpy maid outfit hoping that someone sneaks up behind ${him} as ${he} works and fulfills ${his} desires.`, clothes: "a slutty maid outfit"});
 				} else if(slave.energy > 80) {
 					wardrobeAssignment.push({text: `and wears a skimpy maid outfit to tempt anyone watching ${his} work.`, clothes: "a slutty maid outfit"});
 					wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"});
@@ -8049,7 +8051,7 @@ window.todaysOutfit = function(slave) {
 						wardrobeAssignment.push({text: `and slips into a bunny outfit that ${he} knows will have men lining up.`, clothes: "a bunny outfit"});
 					}
 					if(slave.boobs > 800) {
-						wardrobeTastes.push({text: `and dresses up as a busty succubus that pulls eyes the ${his} chest and leaves pants feeling tight.`, clothes: "a succubus outfit"});
+						wardrobeTastes.push({text: `and dresses up as a busty succubus that pulls eyes to ${his} chest and leaves pants feeling tight.`, clothes: "a succubus outfit"});
 					}
 				} else {
 					wardrobeTastes.push({text: "and selects a schoolgirl outfit that shows off some T&A.", clothes: "a schoolgirl outfit"});
@@ -8083,7 +8085,7 @@ window.todaysOutfit = function(slave) {
 				wardrobeTastes.push({text: `but goes naked. ${He} needs sex now and clothing will only get in the way.`, clothes: "no clothing"});
 				wardrobeTastes.push({text: `and throws on a slutty suit. ${He} hopes that it gets the point across that ${he} needs sex now.`, clothes: "slutty business attire"});
 				wardrobeTastes.push({text: `and dons a slutty nurse outfit. ${He}'s been infected and the only cure is a strong dicking.`, clothes: "a slutty nurse outfit"});
-				wardrobeTastes.push({text: `and dresses up as a slutty maid. Maybe if ${he} does ${his} job poorly enough, someone will bend ${his} over and fuck some sense into ${him}.`, clothes: "a slutty maid outfit"});
+				wardrobeTastes.push({text: `and dresses up as a slutty maid. Maybe if ${he} does ${his} job poorly enough, someone will bend ${him} over and fuck some sense into ${him}.`, clothes: "a slutty maid outfit"});
 				wardrobeTastes.push({text: `and dresses up as a succubus in the hopes it screams that ${he} needs sex now.`, clothes: "a succubus outfit"});
 			}
 			
@@ -8117,10 +8119,10 @@ window.todaysOutfit = function(slave) {
 						wardrobeAssignment.push({text: `and wears painfully tight chains, since ${he} likes the torment.`, clothes: "chains"});
 					}
 				} else if(slave.fetish == "sadist") {
-					wardrobeTastes.push({text: `and wears an elegant gown, since ${he} thinks it makes ${his} look the part of the femme fatale.`, clothes: "a slave gown"});
-					wardrobeTastes.push({text: `and wears a scalemail bikini, since ${he} thinks it makes ${his} look fierce.`, clothes: "a scalemail bikini"});
+					wardrobeTastes.push({text: `and wears an elegant gown, since ${he} thinks it makes ${him} look the part of the femme fatale.`, clothes: "a slave gown"});
+					wardrobeTastes.push({text: `and wears a scalemail bikini, since ${he} thinks it makes ${him} look fierce.`, clothes: "a scalemail bikini"});
 				} else if(slave.fetish == "cumslut") {
-					wardrobeTastes.push({text: `and wears cutoffs and a t-shirt, because the fun yet relatively conservative outfit seems to encourage others to ask ${his} for blowjobs.`, clothes: "cutoffs and a t-shirt"});
+					wardrobeTastes.push({text: `and wears cutoffs and a t-shirt, because the fun yet relatively conservative outfit seems to encourage others to ask ${him} for blowjobs.`, clothes: "cutoffs and a t-shirt"});
 				} else if(slave.fetish == "humiliation") {
 					wardrobeTastes.push({text: `and wears leather straps with rings over ${his} private parts because ${he} enjoys the embarrassment such a humiliating outfit causes ${him}.`, clothes: "uncomfortable straps"});
 				} else if(slave.fetish == "buttslut") {
@@ -8156,7 +8158,7 @@ window.todaysOutfit = function(slave) {
 				} else if(slave.fetish == "buttslut") {
 					wardrobeTastes.push({text: `and wears nothing other than slutty bangles, an odd choice; ${his} ass is completely exposed.`, clothes: "slutty jewelry"});
 				} else if(slave.fetish == "pregnancy") {
-					wardrobeTastes.push({text: `and wears a short maid dress; you frequently notice ${his} observing ${his} stomach.`, clothes: "a slutty maid outfit"});
+					wardrobeTastes.push({text: `and wears a short maid dress; you frequently notice ${him} observing ${his} stomach.`, clothes: "a slutty maid outfit"});
 					if(isItemAccessible("a maternity dress") && canGetPregnant(slave)) {
 						wardrobeAssignment.push({text: `and wears a maternity dress even though ${he} isn't pregnant.`, clothes: "a maternity dress"});
 					}
@@ -8237,7 +8239,7 @@ window.todaysShoes = function(slave) {
 		if(slave.fetishKnown == 1 && slave.fetish == "dom") {
 			shoes.push({text: `${He} wears boots to look like a proper dominant.`, shoes: "boots"});
 		} else if(slave.fetishKnown == 1 && slave.fetish == "sadist") {
-			shoes.push({text: `${He} wears boots, since ${he} thinks they make ${his} look dangerous.`, shoes: "boots"});
+			shoes.push({text: `${He} wears boots, since ${he} thinks they make ${him} look dangerous.`, shoes: "boots"});
 		} else if(slave.fetishKnown == 1 && slave.fetish == "masochist") {
 			shoes.push({text: `${He} wears painfully tall heels, since ${he} enjoys the twinge of pain with each step.`, shoes: "extreme heels"});
 		} else if(slave.heels == 1) {
@@ -8319,7 +8321,7 @@ window.todaysCorset = function(slave) {
 	if(slave.fetish == 'mindbroken') {
 		if(ArcologyZero.FSRepopulationFocus > 0 && slave.belly < 1500) {
 			if(slave.weight > 130) {
-				belly.push({text: `${He} notices the fake bellies; since every girl ${he} has ever met has a rounded middle, it's only natural ${he} is compelled to wear one. ${He} struggles to fit it around ${his} huge gut, only stopping when another slave takes it away from ${his} so ${he} moves on and stops blocking the wardrobe with ${his} fat ass.`, bellyAccessory: "none"});
+				belly.push({text: `${He} notices the fake bellies; since every girl ${he} has ever met has a rounded middle, it's only natural ${he} is compelled to wear one. ${He} struggles to fit it around ${his} huge gut, only stopping when another slave takes it away from ${him} so ${he} moves on and stops blocking the wardrobe with ${his} fat ass.`, bellyAccessory: "none"});
 			} else {
 				belly.push({text: `${He} notices the fake bellies; since every girl ${he} has ever met has a rounded middle, it's only natural ${he} is compelled to wear one.`, bellyAccessory: jsEither(["a small empathy belly", "a medium empathy belly", "a large empathy belly", "a huge empathy belly"])});
 			}
@@ -13044,6 +13046,12 @@ window.rulesAssistantOptions = (function() {
 				["Hijab and abaya", "a hijab and abaya"],
 				["Latex catsuit", "a latex catsuit"],
 				["Leotard", "a leotard"],
+				["Long Qipao", "a long qipao"],
+				["Lederhosen", "lederhosen"],
+				["Battlearmor", "battlearmor"],
+				["Mounty outfit", "a mounty outfit"],
+				["Dirndl", "a dirndl"],
+				["Biyelgee costume", "a biyelgee costume"],
 				["Maid (nice)", "a nice maid outfit"],
 				["Maid (slutty)", "a slutty maid outfit"],
 				["Military uniform", "a military uniform"],
diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt
index 745229c9b9a..d7dd2c484e3 100644
--- a/slave variables documentation - Pregmod.txt	
+++ b/slave variables documentation - Pregmod.txt	
@@ -2015,6 +2015,12 @@ may accept strings, use at own risk
 "stretch pants and a crop-top"
 "uncomfortable straps"
 "Western clothing"
+"a long qipao"
+"battlearmor"
+"a mounty outfit"
+"lederhosen"
+"a dirndl"
+"a biyelgee costume"
 
 collar:
 
diff --git a/src/js/clothingSelectionJS.tw b/src/js/clothingSelectionJS.tw
index d030683fdf3..9e1b17faa57 100644
--- a/src/js/clothingSelectionJS.tw
+++ b/src/js/clothingSelectionJS.tw
@@ -142,7 +142,7 @@ window.todaysOutfit = function(slave) {
 			}
 		} else if(slave.assignment == "be the Madam") {
 			if(slave.energy > 95 || slave.need > 100) {
-				wardrobeAssignment.push({text: `and wears a slutty suit to be certain nothing blocks ${his} from getting the sex ${he} needs.`, clothes: "slutty business attire"});
+				wardrobeAssignment.push({text: `and wears a slutty suit to be certain nothing blocks ${him} from getting the sex ${he} needs.`, clothes: "slutty business attire"});
 			} else if(slave.energy > 80) {
 				wardrobeAssignment.push({text: `and wears a nice suit to show ${he} means business.`, clothes: "nice business attire"});
 				wardrobeAssignment.push({text: "and wears a slutty suit to entice and arouse while still looking managerial.", clothes: "slutty business attire"});
@@ -179,18 +179,18 @@ window.todaysOutfit = function(slave) {
 				}
 			}
 		} else if(slave.assignment == "be your Head Girl") {
-			wardrobeAssignment.push({text: `and wears a military uniform to give ${his} that extra touch of authority.`, clothes: "a military uniform"});
-			wardrobeAssignment.push({text: `and wears a schutzstaffel uniform to give ${his} that extra touch of authority.`, clothes: "a schutzstaffel uniform"});
-			wardrobeAssignment.push({text: `and wears a slutty schutzstaffel uniform to give ${his} that extra touch of authority.`, clothes: "a slutty schutzstaffel uniform"});
-			wardrobeAssignment.push({text: `and wears a red army uniform to give ${his} that extra touch of authority.`, clothes: "a red army uniform"});
-			wardrobeAssignment.push({text: `and wears a mounty outfit to give ${his} that extra touch of authority.`, clothes: "a mounty outfit"});					
-			wardrobeAssignment.push({text: `and wears a handsome suit to give ${his} that extra touch of authority.`, clothes: "nice business attire"});
+			wardrobeAssignment.push({text: `and wears a military uniform to give ${him} that extra touch of authority.`, clothes: "a military uniform"});
+			wardrobeAssignment.push({text: `and wears a schutzstaffel uniform to give ${him} that extra touch of authority.`, clothes: "a schutzstaffel uniform"});
+			wardrobeAssignment.push({text: `and wears a slutty schutzstaffel uniform to give ${him} that extra touch of authority.`, clothes: "a slutty schutzstaffel uniform"});
+			wardrobeAssignment.push({text: `and wears a red army uniform to give ${him} that extra touch of authority.`, clothes: "a red army uniform"});
+			wardrobeAssignment.push({text: `and wears a mounty outfit to give ${him} that extra touch of authority.`, clothes: "a mounty outfit"});					
+			wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that extra touch of authority.`, clothes: "nice business attire"});
 			if(canPenetrate(slave)){
 				wardrobeAssignment.push({text: `and wears a slutty suit to make it perfectly clear that ${his} dick is ${his} main tool in ${his} job.`, clothes: "slutty business attire"});
 			}
 		} else if(slave.assignment == "be the Schoolteacher") {
-			wardrobeAssignment.push({text: `and wears a handsome suit to give ${his} that teacherly authority.`, clothes: "nice business attire"});
-			wardrobeAssignment.push({text: `and wears a slutty suit to give ${his} an air of authority will keeping all eyes focused on ${him}.`, clothes: "slutty business attire"});
+			wardrobeAssignment.push({text: `and wears a handsome suit to give ${him} that teacherly authority.`, clothes: "nice business attire"});
+			wardrobeAssignment.push({text: `and wears a slutty suit to give ${him} an air of authority will keeping all eyes focused on ${him}.`, clothes: "slutty business attire"});
 			wardrobeAssignment.push({text: `and wears a schoolgirl outfit to help keep ${his} charges focused on ${him}.`, clothes: "a schoolgirl outfit"});
 			wardrobeAssignment.push({text: `and dresses up as a succubus to give ${his} sex lessons an extra kick.`, clothes: "a succubus outfit"});
 			if(isItemAccessible("conservative clothing")) {
@@ -283,14 +283,14 @@ window.todaysOutfit = function(slave) {
 			} else if(slave.assignment == "be your Concubine") {
 				wardrobeAssignment.push({text: `and goes naked, since it's ${his} honored role to be the chief object of your desire.`, clothes: "no clothing"});
 				wardrobeAssignment.push({text: `and dresses as a slutty nurse as your genitals are always in need of ${his} special treatment.`, clothes: "a slutty nurse outfit"});
-				wardrobeAssignment.push({text: `and dresses as a schoolgirl in the hopes that you teach ${his} how to be a woman.`, clothes: "a schoolgirl outfit"});
+				wardrobeAssignment.push({text: `and dresses as a schoolgirl in the hopes that you teach ${him} how to be a woman.`, clothes: "a schoolgirl outfit"});
 				wardrobeAssignment.push({text: `and dresses as a cheerleader so ${he} may cheer you on as you blow ${his} mind.`, clothes: "a cheerleader outfit"});
 				if(player.dick == 1) {
 					wardrobeAssignment.push({text: "and dresses as a slutty maid as you always come home with a stiff package that needs a thorough polishing.", clothes: "a slutty maid outfit"});
 				}
 				wardrobeAssignment.push({text: `and, since you personally see that ${he} never goes hungry, ${he} dresses like the sex demoness ${he} is.`, clothes: "a succubus outfit"});
 				if(isItemAccessible("attractive lingerie for a pregnant woman") && slave.belly >= 10000 && slave.pregSource == -1) {
-					wardrobeAssignment.push({text: `and chooses attractive lingerie to showcase the body you've given ${his} in the hopes that you ravish ${him}.`, clothes: "attractive lingerie for a pregnant woman"});
+					wardrobeAssignment.push({text: `and chooses attractive lingerie to showcase the body you've given ${him} in the hopes that you ravish ${him}.`, clothes: "attractive lingerie for a pregnant woman"});
 				}
 				if(slave.toyHole == "dick" && canPenetrate(slave)) {
 					wardrobeAssignment.push({text: `and slips into a scalemail bikini so ${he} can act the role of your conqueror as ${he} bends you over.`, clothes: "a scalemail bikini"});
@@ -342,7 +342,7 @@ window.todaysOutfit = function(slave) {
 				}
 			} else if(slave.assignment == "be a servant" || slave.assignment == "work as a servant") {
 				if(slave.energy > 95 || slave.need > 100) {
-					wardrobeAssignment.push({text: `and wears a skimpy maid outfit hoping that someone sneaks up behind ${his} as ${he} works and fulfills ${his} desires.`, clothes: "a slutty maid outfit"});
+					wardrobeAssignment.push({text: `and wears a skimpy maid outfit hoping that someone sneaks up behind ${him} as ${he} works and fulfills ${his} desires.`, clothes: "a slutty maid outfit"});
 				} else if(slave.energy > 80) {
 					wardrobeAssignment.push({text: `and wears a skimpy maid outfit to tempt anyone watching ${his} work.`, clothes: "a slutty maid outfit"});
 					wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"});
@@ -454,7 +454,7 @@ window.todaysOutfit = function(slave) {
 						wardrobeAssignment.push({text: `and slips into a bunny outfit that ${he} knows will have men lining up.`, clothes: "a bunny outfit"});
 					}
 					if(slave.boobs > 800) {
-						wardrobeTastes.push({text: `and dresses up as a busty succubus that pulls eyes the ${his} chest and leaves pants feeling tight.`, clothes: "a succubus outfit"});
+						wardrobeTastes.push({text: `and dresses up as a busty succubus that pulls eyes to ${his} chest and leaves pants feeling tight.`, clothes: "a succubus outfit"});
 					}
 				} else {
 					wardrobeTastes.push({text: "and selects a schoolgirl outfit that shows off some T&A.", clothes: "a schoolgirl outfit"});
@@ -488,7 +488,7 @@ window.todaysOutfit = function(slave) {
 				wardrobeTastes.push({text: `but goes naked. ${He} needs sex now and clothing will only get in the way.`, clothes: "no clothing"});
 				wardrobeTastes.push({text: `and throws on a slutty suit. ${He} hopes that it gets the point across that ${he} needs sex now.`, clothes: "slutty business attire"});
 				wardrobeTastes.push({text: `and dons a slutty nurse outfit. ${He}'s been infected and the only cure is a strong dicking.`, clothes: "a slutty nurse outfit"});
-				wardrobeTastes.push({text: `and dresses up as a slutty maid. Maybe if ${he} does ${his} job poorly enough, someone will bend ${his} over and fuck some sense into ${him}.`, clothes: "a slutty maid outfit"});
+				wardrobeTastes.push({text: `and dresses up as a slutty maid. Maybe if ${he} does ${his} job poorly enough, someone will bend ${him} over and fuck some sense into ${him}.`, clothes: "a slutty maid outfit"});
 				wardrobeTastes.push({text: `and dresses up as a succubus in the hopes it screams that ${he} needs sex now.`, clothes: "a succubus outfit"});
 			}
 			
@@ -522,10 +522,10 @@ window.todaysOutfit = function(slave) {
 						wardrobeAssignment.push({text: `and wears painfully tight chains, since ${he} likes the torment.`, clothes: "chains"});
 					}
 				} else if(slave.fetish == "sadist") {
-					wardrobeTastes.push({text: `and wears an elegant gown, since ${he} thinks it makes ${his} look the part of the femme fatale.`, clothes: "a slave gown"});
-					wardrobeTastes.push({text: `and wears a scalemail bikini, since ${he} thinks it makes ${his} look fierce.`, clothes: "a scalemail bikini"});
+					wardrobeTastes.push({text: `and wears an elegant gown, since ${he} thinks it makes ${him} look the part of the femme fatale.`, clothes: "a slave gown"});
+					wardrobeTastes.push({text: `and wears a scalemail bikini, since ${he} thinks it makes ${him} look fierce.`, clothes: "a scalemail bikini"});
 				} else if(slave.fetish == "cumslut") {
-					wardrobeTastes.push({text: `and wears cutoffs and a t-shirt, because the fun yet relatively conservative outfit seems to encourage others to ask ${his} for blowjobs.`, clothes: "cutoffs and a t-shirt"});
+					wardrobeTastes.push({text: `and wears cutoffs and a t-shirt, because the fun yet relatively conservative outfit seems to encourage others to ask ${him} for blowjobs.`, clothes: "cutoffs and a t-shirt"});
 				} else if(slave.fetish == "humiliation") {
 					wardrobeTastes.push({text: `and wears leather straps with rings over ${his} private parts because ${he} enjoys the embarrassment such a humiliating outfit causes ${him}.`, clothes: "uncomfortable straps"});
 				} else if(slave.fetish == "buttslut") {
@@ -561,7 +561,7 @@ window.todaysOutfit = function(slave) {
 				} else if(slave.fetish == "buttslut") {
 					wardrobeTastes.push({text: `and wears nothing other than slutty bangles, an odd choice; ${his} ass is completely exposed.`, clothes: "slutty jewelry"});
 				} else if(slave.fetish == "pregnancy") {
-					wardrobeTastes.push({text: `and wears a short maid dress; you frequently notice ${his} observing ${his} stomach.`, clothes: "a slutty maid outfit"});
+					wardrobeTastes.push({text: `and wears a short maid dress; you frequently notice ${him} observing ${his} stomach.`, clothes: "a slutty maid outfit"});
 					if(isItemAccessible("a maternity dress") && canGetPregnant(slave)) {
 						wardrobeAssignment.push({text: `and wears a maternity dress even though ${he} isn't pregnant.`, clothes: "a maternity dress"});
 					}
@@ -642,7 +642,7 @@ window.todaysShoes = function(slave) {
 		if(slave.fetishKnown == 1 && slave.fetish == "dom") {
 			shoes.push({text: `${He} wears boots to look like a proper dominant.`, shoes: "boots"});
 		} else if(slave.fetishKnown == 1 && slave.fetish == "sadist") {
-			shoes.push({text: `${He} wears boots, since ${he} thinks they make ${his} look dangerous.`, shoes: "boots"});
+			shoes.push({text: `${He} wears boots, since ${he} thinks they make ${him} look dangerous.`, shoes: "boots"});
 		} else if(slave.fetishKnown == 1 && slave.fetish == "masochist") {
 			shoes.push({text: `${He} wears painfully tall heels, since ${he} enjoys the twinge of pain with each step.`, shoes: "extreme heels"});
 		} else if(slave.heels == 1) {
@@ -724,7 +724,7 @@ window.todaysCorset = function(slave) {
 	if(slave.fetish == 'mindbroken') {
 		if(ArcologyZero.FSRepopulationFocus > 0 && slave.belly < 1500) {
 			if(slave.weight > 130) {
-				belly.push({text: `${He} notices the fake bellies; since every girl ${he} has ever met has a rounded middle, it's only natural ${he} is compelled to wear one. ${He} struggles to fit it around ${his} huge gut, only stopping when another slave takes it away from ${his} so ${he} moves on and stops blocking the wardrobe with ${his} fat ass.`, bellyAccessory: "none"});
+				belly.push({text: `${He} notices the fake bellies; since every girl ${he} has ever met has a rounded middle, it's only natural ${he} is compelled to wear one. ${He} struggles to fit it around ${his} huge gut, only stopping when another slave takes it away from ${him} so ${he} moves on and stops blocking the wardrobe with ${his} fat ass.`, bellyAccessory: "none"});
 			} else {
 				belly.push({text: `${He} notices the fake bellies; since every girl ${he} has ever met has a rounded middle, it's only natural ${he} is compelled to wear one.`, bellyAccessory: jsEither(["a small empathy belly", "a medium empathy belly", "a large empathy belly", "a huge empathy belly"])});
 			}
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 95edeaaab2d..2afea477d6c 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -15225,18 +15225,6 @@ $He has
 	<</if>>
 <<case "a mini dress">>
 	$activeSlave.slaveName's mini dress barely clings to $his hugely swollen belly.
-<<case "a long qipao">>
-	$activeSlave.slaveName'sdress barely clings to $his hugely swollen belly.
-<<case "battlearmor">>
-	$activeSlave.slaveName's armor barely clings to $his hugely swollen belly.
-<<case "a mounty outfit">>
-	$activeSlave.slaveName's tunic barely clings to $his hugely swollen belly.
-<<case "a dirndl">>
-	$activeSlave.slaveName's dress barely clings to $his hugely swollen belly.
-<<case "lederhosen">>
-	$activeSlave.slaveName's tunic barely clings to $his hugely swollen belly.
-<<case "a biyelgee costume">>
-	$activeSlave.slaveName's dress barely clings to $his hugely swollen belly.
 <<case "attractive lingerie">>
 	$activeSlave.slaveName's hugely swollen belly completely hides $his lacy g-string.
 <<case "a succubus outfit">>
@@ -15402,18 +15390,6 @@ $He has
 	<</if>>
 <<case "a mini dress">>
 	$activeSlave.slaveName's mini dress tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-<<case "a long qipao">>
-	$activeSlave.slaveName's dress tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-<<case "battlearmor">>
-	$activeSlave.slaveName's armor tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-<<case "a mounty outfit">>
-	$activeSlave.slaveName's tunic tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-<<case "a dirndl">>
-	$activeSlave.slaveName's dress tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-<<case "lederhosen">>
-	$activeSlave.slaveName's tunic tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-<<case "a biyelgee costume">>
-	$activeSlave.slaveName's dress tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
 <<case "attractive lingerie">>
 	$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly hides $his lacy g-string.
 <<case "a succubus outfit">>
@@ -15529,18 +15505,6 @@ $He has
 	$activeSlave.slaveName's fat belly is covered in a sheen of oil.
 <<case "a toga">>
 	$activeSlave.slaveName's toga can barely be pulled shut over $his fat belly.
-<<case "a long qipao">>
-	$activeSlave.slaveName's dress can barely be pulled shut over $his fat belly.
-<<case "a mounty outfit">>
-		$activeSlave.slaveName's tunic is pulled tight over $his fat belly. The bottom of which peeks out from under it.
-<<case "battlearmor">>
-	$activeSlave.slaveName's armor can barely contain $his fat belly.
-<<case "lederhosen">>
-	$activeSlave.slaveName's tunic can barely be pulled shut over $his fat belly.
-<<case "a biyelgee costume">>
-	$activeSlave.slaveName's fat belly fills out $his loose dress. $His dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.
-<<case "a dirndl">>
-	$activeSlave.slaveName's fat belly fills out $his loose dress. $His dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.
 <<case "a huipil">>
 	$activeSlave.slaveName's huipil gets lifted by $his fat belly, so it's useless for covering $his body.
 <<case "a slutty qipao">>
@@ -15751,18 +15715,6 @@ $He has
 	<<else>>
 		$activeSlave.slaveName's uniform covers $his <<print $activeSlave.inflationType>>-swollen belly.
 	<</if>>
-<<case "a long qipao">>
-	$activeSlave.slaveName's dress tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-<<case "a mounty outfit">>
-	$activeSlave.slaveName's tunic tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-<<case "battlearmor">>
-	$activeSlave.slaveName's armor tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-<<case "lederhosen">>
-	$activeSlave.slaveName's tunic tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-<<case "a dirndl">>
-	$activeSlave.slaveName's dress tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-<<case "a biyelgee costume">>
-	$activeSlave.slaveName's costume tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
 <<case "a nice nurse outfit">>
 	<<if ($activeSlave.boobs > 6000)>>
 		$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is obscured by $his massive tits.
-- 
GitLab