Procházet zdrojové kódy

Add clenches pulling down to the bowels

tags/v0.1.2
Fen Dweller před 6 roky
rodič
revize
d47c768f5d
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: E80B35A6F11C3656
1 změnil soubory, kde provedl 7 přidání a 2 odebrání
  1. +7
    -2
      stories/fen-snack.js

+ 7
- 2
stories/fen-snack.js Zobrazit soubor

@@ -280,7 +280,7 @@ stories.push({
startTimer({
id: "intestines-churns",
func: state => {
if (Math.random() > 0.6) {
if (Math.random() > 0.5) {
if (state.player.stats.stamina.value > 50) {
changeStat("stamina", -25, state);
print(["Your prison's walls ripple and grind, shoving you against the valve leading to the crux's boiling stomach - but you manage to resist the powerful pull."]);
@@ -290,8 +290,13 @@ stories.push({
playSfx("sfx/intestines-to-stomach-forced.ogg");
goToRoom("stomach", state);
}
} else {
changeStat("stamina", -25, state);
print(["Overwhelming peristalsis grips your body and crams it into the beast's hot, life-sapping bowels."]);
playSfx("sfx/intestines-to-stomach-forced.ogg");
goToRoom("bowels", state);
}
return true;
return 10000 + Math.random() * 5000;
},
delay: 10000,
loop: true,


Načítá se…
Zrušit
Uložit