diff --git a/src/interaction/siWardrobe.js b/src/interaction/siWardrobe.js
index ab276c1bae2c7108f3fa1d65101f2b58f77a8007..21659cca0a9447db6e99c27e24f4cebfaf8c2b73 100644
--- a/src/interaction/siWardrobe.js
+++ b/src/interaction/siWardrobe.js
@@ -768,33 +768,38 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 	 */
 	function clothTooltip(cloth) {
 		let Cloth = capFirstChar(cloth);
+		let desc;
 
 		switch (cloth) {
 			/* nice clothes without specific effects(besides FS or being slutty/humiliating/modest) are handled at the end */
 			case "choosing her own clothes":
 			case "choosing his own clothes":
-				return Cloth + ", increases or greatly reduces devotion based on whether the slave is obedient(devotion at accepting or higher).";
+				desc = "Increases or greatly reduces devotion based on whether the slave is obedient(devotion at accepting or higher).";
+				break;
 			case "no clothing":
-				return Cloth + " increases devotion for resistant humiliations fetishists and nymphos.";
+				desc = "Increases devotion for resistant humiliations fetishists and nymphos.";
+				break;
 			case "a penitent nuns habit":
-				return Cloth + " increases devotion and fear but damages health, may cause masochism.";
+				desc = "Increases devotion and fear but damages health, may cause masochism.";
+				break;
 			case "restrictive latex":
-				return Cloth + ", it's modest and humiliating, increases fear and devotion for resistant slaves and just devotion for obedient, non-terrified submissives.";
+				desc = "Increases fear and devotion for resistant slaves and just devotion for obedient, non-terrified submissives.";
+				break;
 			case "shibari ropes":
-				return Cloth + ", it's humiliating, increases fear and devotion for resistant slaves and just devotion for obedient, non-terrified submissives.";
+				desc = "Increases fear and devotion for resistant slaves and just devotion for obedient, non-terrified submissives.";
+				break;
 			case "uncomfortable straps":
-				return Cloth + ", it's humiliating, increase devotion and fear for slaves who are disobedient and not terrified. Masochists who are at least ambivalent gain devotion, may also cause masochism.";
+				desc = "Increases devotion and fear for slaves who are disobedient and not terrified. Masochists who are at least ambivalent gain devotion, may also cause masochism.";
+				break;
 			case "chains":
-				return Cloth + " increase devotion and fear for slaves who are disobedient and not terrified. Masochists who are at least ambivalent gain devotion, may also cause masochism.";
-
+				desc = "Increases devotion and fear for slaves who are disobedient and not terrified. Masochists who are at least ambivalent gain devotion, may also cause masochism.";
+				break;
 			case "an apron":
-				return Cloth + ", nice clothing that increases just devotion for submissives, humiliation fetishists and visibly pregnant pregnancy fetishists regardless of devotion level.";
+				desc = "Increases just devotion for submissives, humiliation fetishists and visibly pregnant pregnancy fetishists regardless of devotion level.";
+				break;
 			case "a monokini":
-				return Cloth + ", nice clothing that boob fetishists enjoy.";
-
-			case "none":
-				return "No effect one way or another.";
-
+				desc = "Boob fetishists enjoy.";
+				break;
 			case "heavy gold":
 			case "ancient Egyptian":
 			case "bowtie":
@@ -804,151 +809,180 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 			case "satin choker":
 			case "silk ribbon":
 			case "stylish leather":
-				return Cloth + " on obedient slaves reduces fear, on non-obedient ones reduces fear a lot and devotion somewhat.";
+				desc = "On obedient slaves reduces fear, on non-obedient ones reduces fear a lot and devotion somewhat.";
+				break;
 			case "preg biometrics":
-				return Cloth + " increases devotion for those who have pregnancy fetish while fertile or a humiliation fetish. For others obedient ones gain devotion, ambivalent ones gain fear and devotion and resistant ones lose devotion and gain fear.";
+				desc = "Increases devotion for those who have pregnancy fetish while fertile or a humiliation fetish. For others obedient ones gain devotion, ambivalent ones gain fear and devotion and resistant ones lose devotion and gain fear.";
+				break;
 			case "bell collar":
-				return Cloth + " on non-obedient slaves reduces fear a lot and devotion somewhat.";
+				desc = "On non-obedient slaves reduces fear a lot and devotion somewhat.";
+				break;
 			case "leather with cowbell":
-				return Cloth + " on obedient slaves with boob fetish increases devotion, on disobedient slaves reduces fear a lot and devotion somewhat.";
-
+				desc = "On obedient slaves with boob fetish increases devotion, on disobedient slaves reduces fear a lot and devotion somewhat.";
+				break;
 			case "tight steel":
 			case "uncomfortable leather":
 			case "neck corset":
 			case "cruel retirement counter":
-				return Cloth + " increases fear for non-obedient slaves.";
+				desc = "Increases fear for non-obedient slaves.";
+				break;
 			case "shock punishment":
-				return Cloth + " for non-obedient slaves increases fear a great deal and reduces devotion, for resistant non-odd slaves it affects both much more a single time and gives the odd flaw.";
-
+				desc = "For non-obedient slaves increases fear a great deal and reduces devotion, for resistant non-odd slaves it affects both much more a single time and gives the odd flaw.";
+				break;
 			case "cat ears":
-				return Cloth + " increase fear and devotion for disobedient slaves, submissives and nymphos also enjoy wearing one.";
+				desc = "Increases fear and devotion for disobedient slaves, submissives and nymphos also enjoy wearing one.";
+				break;
 			case "porcelain mask":
-				return Cloth + " obscures the face, increases fear and devotion for disobedient slaves, submissives and nymphos also enjoy wearing one.";
-
+				desc = "Obscures the face, increases fear and devotion for disobedient slaves, submissives and nymphos also enjoy wearing one.";
+				break;
 			case "ball gag":
 			case "bit gag":
 			case "ring gag":
-				return Cloth + " increases fear and devotion for disobedient slaves, submissives and nymphos also enjoy wearing one.";
+				desc = "Increases fear and devotion for disobedient slaves, submissives and nymphos also enjoy wearing one.";
+				break;
 			case "dildo gag":
 			case "massive dildo gag":
-				return Cloth + " increases oral skill up to a point and causes fear for disobedient slaves.";
-
+				desc = "Increases oral skill up to a point and causes fear for disobedient slaves.";
+				break;
 			case "hand gloves":
 			case "elbow gloves":
-				return Cloth + " have no effect one way or another.";
-
+				desc = "Have no effect one way or another.";
+				break;
 			case "flats":
-				return Cloth + " have no effect one way or another.";
+				desc = "Have no effect one way or another.";
+				break;
 			case "heels":
 			case "boots":
 			case "platform heels":
-				return Cloth + " increase height, resistant slaves with natural legs resent wearing them.";
+				desc = "Increases height, resistant slaves with natural legs resent wearing them.";
+				break;
 			case "pumps":
 			case "platform shoes":
-				return Cloth + " increase height.";
+				desc = "Increases height.";
+				break;
 			case "extreme heels":
 			case "extreme platform heels":
-				return Cloth + " increase height, slaves with natural legs who are resistant resent and fear wearing them while non-resistant ones become more fearful(unless masochistic) and obedient.";
-
+				desc = "Increases height, slaves with natural legs who are resistant resent and fear wearing them while non-resistant ones become more fearful(unless masochistic) and obedient.";
+				break;
 			case "short stockings":
-				return Cloth + " have no effect one way or another.";
 			case "long stockings":
-				return Cloth + " have no effect one way or another.";
-
+				desc = "Have no effect one way or another.";
+				break;
 			case "a tight corset":
-				return Cloth + " slowly narrows the waist into wispy one.";
+				desc = "Slowly narrows the waist into wispy one.";
+				break;
 			case "an extreme corset":
-				return Cloth + " narrows the waist up to absurd level, painfully, if waist is feminine or wider(scaring and increasing obedience on resistant slaves), but risks miscarriage if a pregnant belly becomes too big";
+				desc = "Narrows the waist up to absurd level, painfully, if waist is feminine or wider(scaring and increasing obedience on resistant slaves), but risks miscarriage if a pregnant belly becomes too big";
+				break;
 			case "a supportive band":
-				return Cloth + " reduces chance of miscarriage.";
+				desc = "Reduces chance of miscarriage.";
+				break;
 			case "a small empathy belly":
 			case "a medium empathy belly":
 			case "a large empathy belly":
 			case "a huge empathy belly":
-				return Cloth + " strengthens or removes(a weak) pregnancy fetish and affects devotion in various ways depending on devotion, fertility and having a pregnancy fetish or breeder flaw.";
-
+				desc = "Strengthens or removes(a weak) pregnancy fetish and affects devotion in various ways depending on devotion, fertility and having a pregnancy fetish or breeder flaw.";
+				break;
 			case "bullet vibrator":
-				return Cloth + " increases devotion but weakens fetish and libido.";
+				desc = "Increases devotion but weakens fetish and libido.";
+				break;
 			case "smart bullet vibrator":
-				return Cloth + " increases devotion and affects a specific fetish, attraction or sex drive.";
+				desc = "Increases devotion and affects a specific fetish, attraction or sex drive.";
+				break;
 			case "dildo":
-				return Cloth + " stretches vagina from virgin to tight, might remove hatred of penetration.";
+				desc = "Stretches vagina from virgin to tight, might remove hatred of penetration.";
+				break;
 			case "long dildo":
-				return Cloth + " stretches vagina from virgin to tight, might remove hatred of penetration. Makes size queens happy while others less trusting.";
+				desc = "Stretches vagina from virgin to tight, might remove hatred of penetration. Makes size queens happy while others less trusting.";
+				break;
 			case "large dildo":
 			case "long, large dildo":
-				return Cloth + " stretches vagina into a loose one, on a tight vagina increases obedience and fear.";
+				desc = "Stretches vagina into a loose one, on a tight vagina increases obedience and fear.";
+				break;
 			case "huge dildo":
 			case "long, huge dildo":
-				return Cloth + " stretches vagina into a cavernous one, on smaller vaginas size queens get much more devoted, masochists and submissives much more devoted and fearful and anyone else becomes much less devoted and trusting. Might cause miscarriage.";
-
+				desc = "Stretches vagina into a cavernous one, on smaller vaginas size queens get much more devoted, masochists and submissives much more devoted and fearful and anyone else becomes much less devoted and trusting. Might cause miscarriage.";
+				break;
 			case "vibrator":
-				return Cloth + " ";
 			case "smart vibrator":
-				return Cloth + " ";
-
+				desc = "";
+				break;
 			case "plug":
-				return Cloth + " stretches butthole from virgin to tight, might remove hatred of anal.";
+				desc = "Stretches butthole from virgin to tight, might remove hatred of anal.";
+				break;
 			case "long plug":
-				return Cloth + " stretches vagina from virgin to tight, might remove hatred of penetration. Makes size queens happy.";
+				desc = "Stretches vagina from virgin to tight, might remove hatred of penetration. Makes size queens happy.";
+				break;
 			case "large plug":
 			case "long, large plug":
-				return Cloth + " stretches vagina into a loose one, on a tight vagina increases obedience and fear.";
+				desc = "Stretches vagina into a loose one, on a tight vagina increases obedience and fear.";
+				break;
 			case "huge plug":
 			case "long, huge plug":
-				return Cloth + " stretches vagina into a cavernous one, on smaller vaginas size queens get much more devoted, masochists and submissives much more devoted and fearful and anyone else becomes much less devoted and trusting. Might cause miscarriage.";
-
+				desc = "Stretches vagina into a cavernous one, on smaller vaginas size queens get much more devoted, masochists and submissives much more devoted and fearful and anyone else becomes much less devoted and trusting. Might cause miscarriage.";
+				break;
 			case "tail":
 			case "fox tail":
 			case "cat tail":
 			case "cow tail":
-				return Cloth + " makes it more scary to wear a plug but might give humiliation fetish,";
-
-
+				desc = "Makes it more scary to wear a plug but might give humiliation fetish,";
+				break;
 			case "anal chastity":
-				return Cloth + " prevents losing anal virginity.";
+				desc = "Prevents losing anal virginity.";
+				break;
 			case "chastity belt":
-				return Cloth + " prevents losing virginity, has various effects, obedient virgins, buttsluts and ones with relatively high sex drive are most affected.";
-			case "":
+				desc = "Prevents losing virginity, has various effects, obedient virgins, buttsluts and ones with relatively high sex drive are most affected.";
+				break;
 			case "combined chastity belt":
-				return Cloth + " prevents losing virginities, has various effects, obedient virgins, buttsluts and ones with relatively high sex drive are most affected.";
+				desc = "Prevents losing virginities, has various effects, obedient virgins, buttsluts and ones with relatively high sex drive are most affected.";
+				break;
 			case "chastity cage":
-				return Cloth + " prevents using penis, has various effects, devotion, trust and sex drive of unresistant slaves with healthy sex drive all suffer from wearing one unless they're a masochist, nympho, neglectful, buttslut, sterile or lack balls.";
+				desc = "Prevents using penis, has various effects, devotion, trust and sex drive of unresistant slaves with healthy sex drive all suffer from wearing one unless they're a masochist, nympho, neglectful, buttslut, sterile or lack balls.";
+				break;
 			case "combined chastity cage":
-				return Cloth + " protects both penis and anus from sex, has various effects, devotion and trust and sex drive of unresistant slaves with healthy sex drive all suffer from wearing one unless they're a masochist, nympho, neglectful, buttslut, sterile or lack balls.";
+				desc = "Protects both penis and anus from sex, has various effects, devotion and trust and sex drive of unresistant slaves with healthy sex drive all suffer from wearing one unless they're a masochist, nympho, neglectful, buttslut, sterile or lack balls.";
+				break;
 			case "genital chastity":
-				return Cloth + " protects both penis and vagina from sex, has various effects.";
+				desc = "Protects both penis and vagina from sex, has various effects.";
+				break;
 			case "full chastity":
-				return Cloth + " protects penis, vagina and anus, has various effects.";
+				desc = "Protects penis, vagina and anus, has various effects.";
+				break;
 			case "choosing her own chastity":
 			case "choosing his own chastity":
 			case "choose own chastity":
-				return Cloth + " ";
 			case "revoke choosing own chastity":
-				return Cloth + " ";
-
-			default: {
-				/* assuming nice clothes, could actually add some sort of check to make sure. */
-				/* which clothes have these is decided in miscData.js */
-				let clothTooltip = Cloth + "";
-				switch (getExposure(slave)) {
+				desc = "";
+				break;
+		}
+		if (cloth === "none") {
+			return "No effect one way or another.";
+		} else {
+			const clothingData = App.Data.clothes.get(cloth);
+			if (clothingData) {
+				switch (clothingData.exposure) {
+					case 4:
+						Cloth += ", might as well be naked";
+						break;
 					case 3:
-						clothTooltip += ", it's humiliating";
+						Cloth += ", it's humiliating";
 						break;
 					case 2:
-						clothTooltip += ", it's slutty";
+						Cloth += ", it's slutty";
+						break;
+					case 1:
+						Cloth += ", it's normal";
 						break;
 					case 0:
-						clothTooltip += ", it's modest";
+						Cloth += ", it's modest";
 						break;
+					default:
+						if (!clothingData.harsh) {
+							Cloth += ", it's only nice (meaning non-obedients lose devotion and fear while obedients gain devotion and trust)";
+						}
 				}
-
-				if (clothTooltip === Cloth + "") {
-					clothTooltip += ", it's only nice(meaning non-obedients lose devotion and fear while obedients gain devotion and trust).";
-				}
-				clothTooltip += ".";
-				return clothTooltip;
 			}
+			return Cloth + ". " + (desc || "");
 		}
 	}
 	/** @typedef RowItem