From 4df5c4f6ac22843838d703ff2842f8230cfd3700 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sun, 10 May 2020 23:57:31 -0400
Subject: [PATCH] wardrobe

---
 src/interaction/wardrobeUse.js     | 103 ++++++++++++++++++++++++++++-
 src/uncategorized/slaveInteract.tw |   4 ++
 2 files changed, 105 insertions(+), 2 deletions(-)

diff --git a/src/interaction/wardrobeUse.js b/src/interaction/wardrobeUse.js
index b357de90b58..e83c8cead52 100644
--- a/src/interaction/wardrobeUse.js
+++ b/src/interaction/wardrobeUse.js
@@ -158,7 +158,55 @@ App.UI.Wardrobe.collar = function(slave) {
 	links.appendChild(App.UI.SlaveInteract.generateRows(harshOptionsArray, slave, "collar", true));
 	el.appendChild(links);
 
-	if (slave.eyewear === "corrective glasses" || slave.eyewear === "glasses" || slave.eyewear === "blurring glasses" || slave.collar === "porcelain mask") {
+	return jQuery('#collar').empty().append(el);
+};
+
+App.UI.Wardrobe.mask = function(slave) {
+	if (slave.fuckdoll !== 0) {
+		return;
+	}
+	let el = document.createElement('div');
+
+	let label = document.createElement('div');
+	label.append(`Mask: `);
+
+	let choice = document.createElement('span');
+	choice.style.fontWeight = "bold";
+	choice.textContent = (`${slave.faceAccessory} `);
+	label.appendChild(choice);
+
+	// Choose her own
+	if (slave.faceAccessory !== `none`) {
+		let choiceOptionsArray = [];
+		choiceOptionsArray.push({text: `None`, updateSlave: {faceAccessory: `none`}});
+		label.appendChild(App.UI.SlaveInteract.generateRows(choiceOptionsArray, slave, "faceAccessory", false));
+	}
+
+	el.appendChild(label);
+
+	let array = [];
+
+	let clothingOption;
+	App.Data.misc.faceAccessory.forEach(item => {
+		clothingOption = {
+			text: item.name,
+			updateSlave: {faceAccessory: item.value}
+		};
+		if (item.fs) {
+			clothingOption.FS = item.fs;
+		}
+		array.push(clothingOption);
+	});
+
+	// Sort
+	array = array.sort((a, b) => (a.text > b.text) ? 1 : -1);
+
+	let links = document.createElement('div');
+	links.className = "choices";
+	links.appendChild(App.UI.SlaveInteract.generateRows(array, slave, "faceAccessory", true));
+	el.appendChild(links);
+
+	if (slave.eyewear === "corrective glasses" || slave.eyewear === "glasses" || slave.eyewear === "blurring glasses" || slave.faceAccessory === "porcelain mask") {
 		// Color options
 		links = document.createElement('div');
 		links.className = "choices";
@@ -171,7 +219,56 @@ App.UI.Wardrobe.collar = function(slave) {
 		el.appendChild(links);
 	}
 
-	return jQuery('#collar').empty().append(el);
+	return jQuery('#faceAccessory').empty().append(el);
+};
+
+App.UI.Wardrobe.mouth = function(slave) {
+	if (slave.fuckdoll !== 0) {
+		return;
+	}
+	let el = document.createElement('div');
+
+	let label = document.createElement('div');
+	label.append(`Gag: `);
+
+	let choice = document.createElement('span');
+	choice.style.fontWeight = "bold";
+	choice.textContent = (`${slave.mouthAccessory} `);
+	label.appendChild(choice);
+
+	// Choose her own
+	if (slave.mouthAccessory !== `none`) {
+		let choiceOptionsArray = [];
+		choiceOptionsArray.push({text: `None`, updateSlave: {mouthAccessory: `none`}});
+		label.appendChild(App.UI.SlaveInteract.generateRows(choiceOptionsArray, slave, "mouthAccessory", false));
+	}
+
+	el.appendChild(label);
+
+	let array = [];
+
+	let clothingOption;
+	// mouthAccessory
+	App.Data.misc.mouthAccessory.forEach(item => {
+		clothingOption = {
+			text: item.name,
+			updateSlave: {mouthAccessory: item.value}
+		};
+		if (item.fs) {
+			clothingOption.FS = item.fs;
+		}
+		array.push(clothingOption);
+	});
+
+	// Sort
+	array = array.sort((a, b) => (a.text > b.text) ? 1 : -1);
+
+	let links = document.createElement('div');
+	links.className = "choices";
+	links.appendChild(App.UI.SlaveInteract.generateRows(array, slave, "mouthAccessory", true));
+	el.appendChild(links);
+
+	return jQuery('#mouthAccessory').empty().append(el);
 };
 
 App.UI.Wardrobe.armAccessory = function(slave) {
@@ -807,6 +904,8 @@ App.UI.Wardrobe.colorOptions = function(slave, update) {
 App.UI.Wardrobe.refreshAll = function(slave) {
 	App.UI.Wardrobe.clothes(slave);
 	App.UI.Wardrobe.collar(slave);
+	App.UI.Wardrobe.mask(slave);
+	App.UI.Wardrobe.mouth(slave);
 	App.UI.Wardrobe.armAccessory(slave);
 	App.UI.Wardrobe.shoes(slave);
 	App.UI.Wardrobe.legAccessory(slave);
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 83550af2493..8aa14a82613 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -169,6 +169,10 @@
 				<span id="collar"></span>
 				/*<script>App.UI.Wardrobe.collar(getSlave(V.activeSlave.ID))</script>*/
 
+				<span id="faceAccessory"></span>
+
+				<span id="mouthAccessory"></span>
+
 				<span id="armAccessory"></span>
 				/*<script>App.UI.Wardrobe.armAccessory(getSlave(V.activeSlave.ID))</script>*/
 
-- 
GitLab