diff --git a/src/cheats/cheatEditActor.js b/src/cheats/cheatEditActor.js index c28bf210e9768fc249d767dd691e5a434112c728..d04759a988235e188d388018a7445f0835f09558 100644 --- a/src/cheats/cheatEditActor.js +++ b/src/cheats/cheatEditActor.js @@ -279,6 +279,24 @@ App.UI.Cheat.cheatEditActor = function(actor, actorType) { const options = new App.UI.OptionsGroup(); let option; + option = options.addOption(`Natural skin color`, "origSkin", V.tempSlave).showTextBox().pulldown(); + const naturalSkins = V.tempSlave.race === "catgirl" ? App.Medicine.Modification.catgirlNaturalSkins : App.Medicine.Modification.naturalSkins; + for (const skin of naturalSkins) { + option.addValue(capFirstChar(skin), skin); + } + + option = options.addOption(`Natural hair color`, "origHColor", V.tempSlave) + .showTextBox(); + for (const color of App.Medicine.Modification.Color.Primary) { + option.addValue(capFirstChar(color.value), color.value); + } + option.pulldown() + .addComment("For generic hair options, please use the salon."); + options.addOption("Bald", "bald", V.tempSlave) + .addValue("No", 0).off() + .addValue("Yes", 1).on(); + + if (!infant && !tankSlave) { option = options.addOption("Condition", "condition", V.tempSlave.health) .addValueList([["Unhealthy", -40], ["Healthy", 0], ["Very healthy", 40], ["Extremely healthy", 80]])