diff --git a/src/facilities/salon/salonPassage.js b/src/facilities/salon/salonPassage.js index c454e3ba3a8defd61842098e80cebb236e5e50ac..b78f34aecd986a313a2b0b7ad571d04d2ef83311 100644 --- a/src/facilities/salon/salonPassage.js +++ b/src/facilities/salon/salonPassage.js @@ -280,6 +280,16 @@ App.UI.salon = function(slave, cheat = false) { const options = new App.UI.OptionsGroup(); let comment = []; + if (cheat) { + options.addOption(`${His} natural skin color is`, "origSkin", slave).showTextBox() + .addValueList([["Pure White", "pure white"], ["Ivory", "ivory"], ["White", "white"], ["Extremely Pale", "extremely pale"], + ["Very Pale", "very pale"], ["Pale", "pale"], ["Extremely Fair", "extremely fair"], ["Very Fair", "very fair"], + ["Fair", "fair"], ["Light", "light"], ["Light Olive", "light olive"], ["Tan", "tan"], ["Olive", "olive"], ["Bronze", "bronze"], + ["Dark Olive", "dark olive"], ["Dark", "dark"], ["Light Beige", "light beige"], ["Beige", "beige"], + ["Dark Beige", "dark beige"], ["Light Brown", "light brown"], ["Brown", "brown"], ["Dark Brown", "dark brown"], + ["Black", "black"], ["Ebony", "ebony"], ["Pure Black", "pure black"]]).pulldown(); + } + let option = options.addOption(`${His} skin is ${slave.skin}.`, "skin", slave); if (App.Medicine.Modification.dyedSkins.includes(slave.skin)) { option.addValue("Remove coloring", slave.origSkin, billMod); @@ -323,6 +333,17 @@ App.UI.salon = function(slave, cheat = false) { for (const dye of App.Medicine.Modification.dyedSkins) { option.addValue(capFirstChar(dye), dye, billMod); } + + if (cheat) { + options.addOption(`${His} skin's marks are`, "markings", slave) + .addValueList([ + ["None", "none"], + ["Freckles", "freckles"], + ["Heavily freckled", "heavily freckled"], + ["Beauty mark", "beauty mark"], + ["Birthmark", "birthmark"], + ]); + } option.pulldown(); if (slave.markings === "beauty mark") { diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw index dcbb6f7e7b1f3bcf13c220b125d47087acbc7211..eb8a930e046c3575c14da7388c7e367ae4a7892d 100644 --- a/src/npc/startingGirls/startingGirls.tw +++ b/src/npc/startingGirls/startingGirls.tw @@ -336,23 +336,6 @@ ["Amerindian", "amerindian"], ["Pacific Islander", "pacific islander"], ["Malay", "malay"], ["Mixed Race", "mixed race"]])>> <</if>> - <<run _options.addOption("$His skin color is", "origSkin", $activeSlave).showTextBox() - .addValueList([["Pure White", "pure white"], ["Ivory", "ivory"], ["White", "white"], ["Extremely Pale", "extremely pale"], - ["Very Pale", "very pale"], ["Pale", "pale"], ["Extremely Fair", "extremely fair"], ["Very Fair", "very fair"], - ["Fair", "fair"], ["Light", "light"], ["Light Olive", "light olive"], ["Tan", "tan"], ["Olive", "olive"], ["Bronze", "bronze"], - ["Dark Olive", "dark olive"], ["Dark", "dark"], ["Light Beige", "light beige"], ["Beige", "beige"], - ["Dark Beige", "dark beige"], ["Light Brown", "light brown"], ["Brown", "brown"], ["Dark Brown", "dark brown"], - ["Black", "black"], ["Ebony", "ebony"], ["Pure Black", "pure black"]])>> - - <<run _options.addOption("$His skin distinctiveness is", "markings", $activeSlave) - .addValueList([ - ["None", "none"], - ["Freckles", "freckles"], - ["Heavily freckled", "heavily freckled"], - ["Beauty mark", "beauty mark"], - ["Birthmark", "birthmark"], - ])>> - <<run _options.addOption("Intelligence", "intelligence", $activeSlave) .addValueList([["Moronic", -100], ["Very stupid", -60], ["Stupid", -30], ["Average", 0], ["Smart", 30], ["Very smart", 60], ["Brilliant", 100]])>>