Просмотр исходного кода

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

tags/v0.7.0
Fen Dweller 7 лет назад
Родитель
Сommit
688aa14289
1 измененных файлов: 10 добавлений и 5 удалений
  1. +10
    -5
      game.js

+ 10
- 5
game.js Просмотреть файл

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


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

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


if (this.hasTail) { if (this.hasTail) {
line = "Your " + macro.describeTail + (macro.tailCount > 1 ? " tails sway as you walk. " : " tail sways as you walk. "); 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) if (this.cleavage.container.count > 0)
line += " Between them are " + this.cleavage.container.describe(false) + "."; line += " Between them are " + this.cleavage.container.describe(false) + ".";

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


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


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


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


Загрузка…
Отмена
Сохранить