diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw index 7a3e7dd84722d0bdad0edc55bdbb861b9ac8ef9e..a0b75c265a26c668903f41ebf4ffad41869b4a39 100644 --- a/src/js/rulesAssistantOptions.tw +++ b/src/js/rulesAssistantOptions.tw @@ -82,16 +82,16 @@ window.rulesAssistantOptions = (function() { return Math.clamp(parse.integer(string), 0, 48000); }, butt(string) { - return Math.clamp(parse.integer(string), 0, 10); + return Math.clamp(parse.integer(string), 0, 20); }, lips(string) { return Math.clamp(parse.integer(string), 0, 100); }, dick(string) { - return Math.clamp(parse.integer(string), 0, 10); + return Math.clamp(parse.integer(string), 0, 30); }, balls(string) { - return Math.clamp(parse.integer(string), 0, 10); + return Math.clamp(parse.integer(string), 0, 125); }, }; @@ -1362,10 +1362,10 @@ window.rulesAssistantOptions = (function() { unlimited() { this.breasts.setValue(48000); - this.butts.setValue(10); + this.butts.setValue(20); this.lips.setValue(100); - if (this.dicks) this.dicks.setValue(10); - if (this.balls) this.balls.setValue(6); + if (this.dicks) this.dicks.setValue(30); + if (this.balls) this.balls.setValue(125); this.sublists.forEach(i => i.propagateChange()); } @@ -1400,7 +1400,7 @@ window.rulesAssistantOptions = (function() { ["Cute", 2], ["Big", 4], ["Huge", 6], - ["Unlimited", 10], + ["Unlimited", 20], ["None", 0] ]; super("Butts", pairs, true); @@ -1430,7 +1430,7 @@ window.rulesAssistantOptions = (function() { ["No default setting", "no default setting"], ["Above average", 4], ["Pornstar", 6], - ["Unlimited", 10], + ["Unlimited", 30], ["None", 0] ]; super("Dicks, if present", pairs, true); @@ -1445,7 +1445,7 @@ window.rulesAssistantOptions = (function() { ["No default setting", "no default setting"], ["Sizeable", 4], ["Cumslave", 6], - ["Unlimited", 10], + ["Unlimited", 125], ["None", 0] ]; super("Balls, if present", pairs, true); @@ -1614,7 +1614,7 @@ window.rulesAssistantOptions = (function() { if (V.cumProDiet === 1) diets.push(["Cum production", "cum production"]); - super("Slave diets", diets); + super("Slave diets", diets, true); this.setValue(current_rule.set.diet); this.onchange = (value) => current_rule.set.diet = value; }