diff --git a/game.js b/game.js index 2a20db7..693c765 100644 --- a/game.js +++ b/game.js @@ -51,6 +51,7 @@ let macro = "femaleSpurt": 0, "scale": 1, + "pawScale": 1, "assScale": 1, "dickScale": 1, "ballScale": 1, @@ -197,10 +198,10 @@ let macro = result = plural ? "treads" : "tread"; break; case "heel": - return plural ? "high heels" : "high heel"; + return plural ? "treads" : "tread"; break; case "croc": - return plural ? "crocs" : "croc"; + return plural ? "treads" : "tread"; break; } } else if (this.footSockWorn) { @@ -1035,9 +1036,9 @@ let macro = "container": new Container(), get description() { if (this.container.count == 0) - return "Your shoes are empty."; + return "Your " + macro.shoeDesc(true) + " are empty."; else - return "Your shoes contain " + this.container.describe(false); + return "Your " + macro.shoeDesc(true) + " contain " + this.container.describe(false); }, "add": function(victims) { this.container = this.container.merge(victims); @@ -1049,9 +1050,9 @@ let macro = "container": new Container(), get description() { if (this.container.count == 0) - return "Your socks are empty."; + return "Your " + macro.sockDesc(true) + " are empty."; else - return "Your socks contain " + this.container.describe(false); + return "Your " + macro.sockDesc(true) + " contain " + this.container.describe(false); }, "add": function(victims) { this.container = this.container.merge(victims); diff --git a/recursive-desc.js b/recursive-desc.js index 38ee47a..76183b6 100644 --- a/recursive-desc.js +++ b/recursive-desc.js @@ -183,11 +183,11 @@ function defaultStompWedge(container, macro, verbose) { if (container.count == 1) { let line = container.describe(verbose); line = line.charAt(0).toUpperCase() + line.slice(1); - return line + " is wedged between your " + macro.toeDesc(true); + return line + " is wedged in your " + macro.toeDesc(true); } else { let line = container.describe(verbose); line = line.charAt(0).toUpperCase() + line.slice(1); - return line + " are wedged between your " + macro.toeDesc(true); + return line + " are wedged in your " + macro.toeDesc(true); } }