Bläddra i källkod

Fixed wrong toe descs, fixed stomping being broken in general

tags/v1.0.0
Fen Dweller 6 år sedan
förälder
incheckning
6e7f936e28
2 ändrade filer med 9 tillägg och 8 borttagningar
  1. +7
    -6
      game.js
  2. +2
    -2
      recursive-desc.js

+ 7
- 6
game.js Visa fil

@@ -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);


+ 2
- 2
recursive-desc.js Visa fil

@@ -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);
}
}



Laddar…
Avbryt
Spara