Skip to content
Snippets Groups Projects
Commit 808d6c0b authored by brickode's avatar brickode
Browse files

Nursery stuff

parent 6e521689
No related branches found
No related tags found
No related merge requests found
...@@ -784,6 +784,7 @@ window.rulesAssistantOptions = (function() { ...@@ -784,6 +784,7 @@ window.rulesAssistantOptions = (function() {
if (V.masterSuite > 0) items.push("Master Suite"); if (V.masterSuite > 0) items.push("Master Suite");
if (V.schoolroom > 0) items.push("Schoolroom"); if (V.schoolroom > 0) items.push("Schoolroom");
if (V.spa > 0) items.push("Spa"); if (V.spa > 0) items.push("Spa");
if (V.nursery > 0) item.push("Nursery");
if (V.clinic > 0) items.push("Clinic"); if (V.clinic > 0) items.push("Clinic");
if (V.cellblock > 0) items.push("Cellblock"); if (V.cellblock > 0) items.push("Cellblock");
items.forEach( items.forEach(
...@@ -815,6 +816,7 @@ window.rulesAssistantOptions = (function() { ...@@ -815,6 +816,7 @@ window.rulesAssistantOptions = (function() {
"Master Suite": "serve in the master suite", "Master Suite": "serve in the master suite",
"Schoolroom": "learn in the schoolroom", "Schoolroom": "learn in the schoolroom",
"Spa": "rest in the spa", "Spa": "rest in the spa",
"Nursery": "work as a nanny",
"Clinic": "get treatment in the clinic", "Clinic": "get treatment in the clinic",
"Cellblock": "be confined in the cellblock", "Cellblock": "be confined in the cellblock",
}[what]; }[what];
...@@ -1100,6 +1102,7 @@ window.rulesAssistantOptions = (function() { ...@@ -1100,6 +1102,7 @@ window.rulesAssistantOptions = (function() {
["Nurse (slutty)", "a slutty nurse outfit"], ["Nurse (slutty)", "a slutty nurse outfit"],
["Red Army uniform", "a red army uniform"], ["Red Army uniform", "a red army uniform"],
["Schoolgirl", "a schoolgirl outfit"], ["Schoolgirl", "a schoolgirl outfit"],
["Shimapan Panties", "shimapan panties"],
["Silken ballgown", "a ball gown"], ["Silken ballgown", "a ball gown"],
["Skimpy battledress", "battledress"], ["Skimpy battledress", "battledress"],
["Slave gown", "a slave gown"], ["Slave gown", "a slave gown"],
...@@ -1764,18 +1767,13 @@ window.rulesAssistantOptions = (function() { ...@@ -1764,18 +1767,13 @@ window.rulesAssistantOptions = (function() {
this.onchange = (value) => { this.onchange = (value) => {
current_rule.set.dietCum = value.cum; current_rule.set.dietCum = value.cum;
current_rule.set.dietMilk = value.milk; current_rule.set.dietMilk = value.milk;
this.setValue(this.value2string(current_rule.set.dietCum, current_rule.set.dietMilk));
}; };
} }
value2string(cum, milk) { value2string(cum, milk) {
return `cum: ${cum}, milk: ${milk}`; return `cum: ${cum}, milk: ${milk}`;
} }
setValue(what) {
what = this.value2string(what.cum, what.milk);
super.setValue(what);
}
} }
class DietSolidFoodList extends List { class DietSolidFoodList extends List {
......
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