Skip to content
Snippets Groups Projects
Commit 0a49816c authored by lowercasedonkey's avatar lowercasedonkey
Browse files

Move long option text into a comment

parent 5ca3e80f
No related branches found
No related tags found
No related merge requests found
...@@ -374,28 +374,24 @@ App.UI.salon = function(slave, cheat = false) { ...@@ -374,28 +374,24 @@ App.UI.salon = function(slave, cheat = false) {
option.pulldown(); option.pulldown();
if (slave.markings === "beauty mark") { if (slave.markings === "beauty mark") {
r = []; option = options.addOption(`${He} has a prominent mole on ${his} face`, "markings", slave)
r.push(`${He} has a prominent mole on ${his} face, which`); .addValue("Remove it", "none", billMod);
if (slave.face > 40) { if (slave.face > 40) {
r.push(`qualifies as a beauty mark and enhances ${his} attractiveness due to ${his} facial beauty.`); option.addComment(`The mole qualifies as a beauty mark and enhances ${his} attractiveness due to ${his} facial beauty.`);
} else if (slave.face < -10) { } else if (slave.face < -10) {
r.push(`makes ${him} even less attractive.`); option.addComment(`The mole makes ${him} even less attractive.`);
} else { } else {
r.push(`qualifies as a beauty mark since ${he}'s pretty, having no significant impact on ${his} beauty.`); option.addComment(`The mole qualifies as a beauty mark since ${he}'s pretty, having no significant impact on ${his} beauty.`);
} }
options.addOption(r.join(" "), "markings", slave)
.addValue("Remove it", "none", billMod);
} }
if (slave.markings === "birthmark") { if (slave.markings === "birthmark") {
r = []; option = options.addOption(`${He} has a large birthmark`, "markings", slave)
r.push(`${He} has a large birthmark, which`); .addValue("Bleach it", "none", billMod);
if (slave.prestige > 0 || slave.porn.prestige > 1) { if (slave.prestige > 0 || slave.porn.prestige > 1) {
r.push(`enhances ${his} attractiveness due to ${his} prestige.`); option.addComment(`The birthmark enhances ${his} attractiveness due to ${his} prestige.`);
} else { } else {
r.push(`detracts from ${his} attractiveness.`); option.addComment(`The birthmark detracts from ${his} attractiveness.`);
} }
options.addOption(r.join(" "), "markings", slave)
.addValue("Bleach it", "none", billMod);
} }
el.append(options.render()); el.append(options.render());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment