From e540c26714b4ce440754f7728d3f7ea0d71e4403 Mon Sep 17 00:00:00 2001
From: Skriv <skrivelese@gmail.com>
Date: Thu, 28 Mar 2019 23:00:32 +0100
Subject: [PATCH] only single to double

---
 src/endWeek/saChoosesOwnClothes.js | 83 ++++++++++++++----------------
 1 file changed, 40 insertions(+), 43 deletions(-)

diff --git a/src/endWeek/saChoosesOwnClothes.js b/src/endWeek/saChoosesOwnClothes.js
index 41d9cc0d7bc..7ba75136b79 100644
--- a/src/endWeek/saChoosesOwnClothes.js
+++ b/src/endWeek/saChoosesOwnClothes.js
@@ -1,6 +1,3 @@
-/* eslint-disable no-empty */
-/* eslint-disable no-undef */
-/* eslint-disable no-unused-vars */
 window.saChoosesOwnClothes = (function() {
 	"use strict";
 	let V;
@@ -103,96 +100,96 @@ window.saChoosesOwnClothes = (function() {
 		const wardrobeTastes = [];
 		let selection;
 
-		if (slave.fetish === 'mindbroken') {
+		if (slave.fetish === "mindbroken") {
 			if (V.arcologies[0].FSChattelReligionist > 0) {
 				selection = {text: `${he} commonly sees others wearing chattel habits and is drawn to doing so ${himself}.`, clothes: "a chattel habit"};
 			} else {
-				clothing.push('panties');
+				clothing.push("panties");
 				if (V.arcologies[0].FSEgyptianRevivalist > 0) {
-					clothing.push('egyptian');
+					clothing.push("egyptian");
 				} else if (V.arcologies[0].FSRomanRevivalist > 0) {
-					clothing.push('roman');
+					clothing.push("roman");
 				} else if (V.arcologies[0].FSAztecRevivalist > 0) {
-					clothing.push('aztec');
+					clothing.push("aztec");
 				} else if (V.arcologies[0].FSEdoRevivalist > 0) {
-					clothing.push('edo');
+					clothing.push("edo");
 				} else if (V.arcologies[0].FSArabianRevivalist > 0) {
-					clothing.push('arabic');
+					clothing.push("arabic");
 				} else if (V.arcologies[0].FSChineseRevivalist > 0) {
-					clothing.push('chinese');
+					clothing.push("chinese");
 				}
 				if (V.arcologies[0].FSGenderFundamentalist > 0) {
-					clothing.push('genderFund');
+					clothing.push("genderFund");
 				}
 				if (V.arcologies[0].FSPaternalist > 0) {
-					clothing.push('paternalist');
+					clothing.push("paternalist");
 				} else if (V.arcologies[0].FSDegradationist > 0) {
-					clothing.push('degradationist');
+					clothing.push("degradationist");
 				}
 				if (V.arcologies[0].FSMaturityPreferentialist > 0) {
-					clothing.push('mature');
+					clothing.push("mature");
 				} else if (V.arcologies[0].FSYouthPreferentialist > 0) {
-					clothing.push('youth');
+					clothing.push("youth");
 				}
 				if (V.arcologies[0].FSPhysicalIdealist > 0) {
-					clothing.push('physicalIdealist');
+					clothing.push("physicalIdealist");
 				}
 				if (V.arcologies[0].FSPastoralist > 0) {
-					clothing.push('pastoralist');
+					clothing.push("pastoralist");
 				}
 				if (V.arcologies[0].FSBodyPurist > 0) {
-					clothing.push('bodyPurist');
+					clothing.push("bodyPurist");
 				}
 				chosenClothing = jsEither(clothing);
 				switch (chosenClothing) {
-					case 'egyptian':
+					case "egyptian":
 						selection = {text: `${he} commonly sees others wearing nothing but jewelry and is drawn to doing so ${himself}.`, clothes: "slutty jewelry"};
 						break;
-					case 'roman':
+					case "roman":
 						selection = {text: `${he} commonly sees others wearing togas and is drawn to doing so ${himself}.`, clothes: "a toga"};
 						break;
-					case 'aztec':
+					case "aztec":
 						selection = {text: `${he} commonly sees others wearing huipils and is drawn to doing so ${himself}.`, clothes: "a huipil"};
 						break;
-					case 'edo':
+					case "edo":
 						selection = {text: `${he} commonly sees others wearing kimonos and is drawn to doing so ${himself}.`, clothes: "a kimono"};
 						break;
-					case 'arabic':
+					case "arabic":
 						selection = {text: `${he} commonly sees others wearing silk and is drawn to doing so ${himself}.`, clothes: "harem gauze"};
 						break;
-					case 'chinese':
+					case "chinese":
 						selection = {text: `${he} commonly sees others wearing qipaos and is drawn to doing so ${himself}.`, clothes: "a slutty qipao"};
 						break;
-					case 'genderFund':
+					case "genderFund":
 						if (jsRandom(1, 2) === 1) {
-							selection = {text: `${he} commonly sees cheerleaders around and instinctually follows along.`, clothes: jsEither(['a cheerleader outfit', 'a schoolgirl outfit'])};
+							selection = {text: `${he} commonly sees cheerleaders around and instinctually follows along.`, clothes: jsEither(["a cheerleader outfit", "a schoolgirl outfit"])};
 						} else {
 							selection = {text: `${he} commonly sees bunnies around and instinctually follows along.`, clothes: "a bunny outfit"};
 						}
 						break;
-					case 'paternalist':
+					case "paternalist":
 						selection = {text: `${he} commonly sees others wearing normal clothing and is drawn to doing so ${himself}.`, clothes: "conservative clothing"};
 						break;
-					case 'degradationist':
-						selection = {text: `${he} commonly sees others wearing chains and is drawn to doing so ${himself}.`, clothes: jsEither(['chains', 'shibari ropes', 'uncomfortable straps'])};
+					case "degradationist":
+						selection = {text: `${he} commonly sees others wearing chains and is drawn to doing so ${himself}.`, clothes: jsEither(["chains", "shibari ropes", "uncomfortable straps"])};
 						break;
-					case 'mature':
-						selection = {text: `${he} commonly sees others wearing suits and is drawn to doing so ${himself}.`, clothes: jsEither(['a nice maid outfit', 'nice business attire', 'slutty business attire'])};
+					case "mature":
+						selection = {text: `${he} commonly sees others wearing suits and is drawn to doing so ${himself}.`, clothes: jsEither(["a nice maid outfit", "nice business attire", "slutty business attire"])};
 						break;
-					case 'youth':
-						selection = {text: `${he} commonly sees schoolgirls around and instinctually follows along.`, clothes: jsEither(['a cheerleader outfit', 'a schoolgirl outfit'])};
+					case "youth":
+						selection = {text: `${he} commonly sees schoolgirls around and instinctually follows along.`, clothes: jsEither(["a cheerleader outfit", "a schoolgirl outfit"])};
 						break;
-					case 'physicalIdealist':
-						selection = {text: `${he} commonly sees naked girls around and seldom realizes they are coated in oil.`, clothes: jsEither(['body oil', 'no clothing', 'no clothing'])};
+					case "physicalIdealist":
+						selection = {text: `${he} commonly sees naked girls around and seldom realizes they are coated in oil.`, clothes: jsEither(["body oil", "no clothing", "no clothing"])};
 						break;
-					case 'pastoralist':
+					case "pastoralist":
 						selection = {text: `${he} commonly sees cowgirls around and instinctually follows along.`, clothes: "Western clothing"};
 						break;
-					case 'bodyPurist':
-						selection = {text: `${he} commonly sees others wearing tight, form-fitting clothes and is drawn to doing so ${himself}.`, clothes: jsEither(['a comfortable bodysuit', 'a halter top dress', 'a leotard', 'a leotard', 'a slave gown', 'a string bikini', 'clubslut netting', 'restrictive latex'])};
+					case "bodyPurist":
+						selection = {text: `${he} commonly sees others wearing tight, form-fitting clothes and is drawn to doing so ${himself}.`, clothes: jsEither(["a comfortable bodysuit", "a halter top dress", "a leotard", "a leotard", "a slave gown", "a string bikini", "clubslut netting", "restrictive latex"])};
 						break;
 					default:
-						selection = {text: `${he} chooses to put on underwear, the reasons lost to ${him}, and moves on.`, clothes: jsEither(['attractive lingerie', 'panties'])};
+						selection = {text: `${he} chooses to put on underwear, the reasons lost to ${him}, and moves on.`, clothes: jsEither(["attractive lingerie", "panties"])};
 						break;
 				}
 			}
@@ -953,7 +950,7 @@ window.saChoosesOwnClothes = (function() {
 	function todaysShoes(slave) {
 		const shoes = [];
 
-		if (slave.fetish === 'mindbroken') {
+		if (slave.fetish === "mindbroken") {
 			if (slave.amp !== 1 && slave.heels === 1) {
 				shoes.push({text: `${He} finds ${he} can inexplicably walk if ${he} wears heels; a daily lesson for ${him}, as ${he} forgets shortly after leaving.`, shoes: jsEither(["boots", "extreme heels", "heels", "pumps"])});
 			}
@@ -996,7 +993,7 @@ window.saChoosesOwnClothes = (function() {
 	function todaysCollar(slave) {
 		const neck = [];
 
-		if (slave.fetish === 'mindbroken') {
+		if (slave.fetish === "mindbroken") {
 		} else if (slave.devotion <= 20) {
 		} else {
 			if (V.arcologies[0].FSEgyptianRevivalist > 0) {
@@ -1024,7 +1021,7 @@ window.saChoosesOwnClothes = (function() {
 		const belly = [];
 		const empathyBellies = ["a small empathy belly", "a medium empathy belly", "a large empathy belly", "a huge empathy belly"];
 
-		if (slave.fetish === 'mindbroken') {
+		if (slave.fetish === "mindbroken") {
 			if (V.arcologies[0].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 ${him} so ${he} moves on and stops blocking the wardrobe with ${his} fat ass.`, bellyAccessory: "none"});
-- 
GitLab