Skip to content
Snippets Groups Projects
Commit 6dfb5fdb authored by lowercasedonkey's avatar lowercasedonkey
Browse files

more

parent c0599a5c
No related branches found
No related tags found
1 merge request!8026Custom slave to js
...@@ -7,6 +7,8 @@ App.Markets["Custom Slave"] = function() { ...@@ -7,6 +7,8 @@ App.Markets["Custom Slave"] = function() {
el.append(health()); el.append(health());
el.append(muscles()); el.append(muscles());
el.append(lips()); el.append(lips());
el.append(voice());
// can't we just iterate these in an array?
return el; return el;
...@@ -149,6 +151,35 @@ App.Markets["Custom Slave"] = function() { ...@@ -149,6 +151,35 @@ App.Markets["Custom Slave"] = function() {
return el; return el;
} }
function voice() {
const el = document.createElement("div");
const slaveProperty = "lips";
const choices = new Map([
["3", "High, girly"],
["2", "Feminine"],
["1", "Deep"],
["0", "Mute"],
["-1", "Voice is unimportant"],
]);
createDescription(el, description, slaveProperty);
el.append(choicesMaker(slaveProperty, choices, description));
function description() {
for (const [value, text] of choices) {
if (slave.voice === Number(value)) {
if (slave.voice === -1) {
return `${text}.`;
} else {
return `${text} voice.`;
}
}
}
}
return el;
}
/** /**
* *
......
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