Browse Source

Make getting chewed in the maw struggle send you to the throat, pre-surrendered

Before, you went straight to the stomach; now, you're swallowed as usual, but
are treated as if you've surrendered.
geta
Fen Dweller 5 years ago
parent
commit
0ccd642f13
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      stories/geta-unaware.js

+ 5
- 3
stories/geta-unaware.js View File

@@ -589,7 +589,8 @@
print(["Geta's jaws close like a falling guillotine's blade. You're crushed like an insect. A sharp gulp drags you down to the fox's guts."]); print(["Geta's jaws close like a falling guillotine's blade. You're crushed like an insect. A sharp gulp drags you down to the fox's guts."]);
playSfx("sfx/swallow.ogg"); playSfx("sfx/swallow.ogg");
changeStat("health", -90); changeStat("health", -90);
goToRoom("stomach");
goToRoom("throat");
state.player.flags.throatSurrender = true;
return false; return false;
} }


@@ -846,7 +847,6 @@


playSfx("sfx/swallow.ogg"); playSfx("sfx/swallow.ogg");


state.player.flags.throatSurrender = false;
state.player.stats.stamina.hidden = false; state.player.stats.stamina.hidden = false;
state.player.stats.throatPos.hidden = false; state.player.stats.throatPos.hidden = false;


@@ -921,7 +921,9 @@
} }
}, },
show: [ show: [

(room) => {
return !state.player.flags.throatSurrender;
}
], ],
conditions: [ conditions: [




Loading…
Cancel
Save