Преглед изворни кода

Made bowel/breast descriptions contingent on their vore types being enabled

tags/v0.7.0
Fen Dweller пре 7 година
родитељ
комит
688aa14289
1 измењених фајлова са 10 додато и 5 уклоњено
  1. +10
    -5
      game.js

+ 10
- 5
game.js Прегледај датотеку

@@ -1209,7 +1209,10 @@ let macro =
result.push(line);

result.push(macro.stomach.description);
result.push(macro.bowels.description);

if (this.analVore) {
result.push(macro.bowels.description);
}

if (this.hasTail) {
line = "Your " + macro.describeTail + (macro.tailCount > 1 ? " tails sway as you walk. " : " tail sways as you walk. ");
@@ -1254,17 +1257,19 @@ let macro =

if (this.cleavage.container.count > 0)
line += " Between them are " + this.cleavage.container.describe(false) + ".";

result.push(line);
result.push(macro.breasts.description);
if (this.breastVore) {
result.push(this.breasts.description);
}
}

if (this.soulVoreEnabled) {
result.push(macro.souls.description);
result.push(this.souls.description);
}

if (this.hasPouch) {
line = this.pouch.description;
result.push(line);
result.push(this.pouch.description);
}

line = "Your two " + this.footDesc(true) + " shake the earth.";


Loading…
Откажи
Сачувај