Kaynağa Gözat

Add some taunts in Geta's maw

geta
Fen Dweller 6 yıl önce
ebeveyn
işleme
d33abbc2f6
1 değiştirilmiş dosya ile 22 ekleme ve 3 silme
  1. +22
    -3
      stories/geta-unaware.js

+ 22
- 3
stories/geta-unaware.js Dosyayı Görüntüle

@@ -509,11 +509,11 @@
func: state => {

if (getStat("mawPos", state) <= 0.05) {
print(["Swallowed!"]);
print(["You slip too far back. Geta doesn't even have to try to swallow you like the food you are."]);
goToRoom("throat", state);
return false;
} else if (getStat("mawPos", state) >= 0.95) {
print(["Chewed!"]);
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."]);
changeStat("health", -90, state);
goToRoom("stomach", state);
return false;
@@ -575,6 +575,25 @@
]
}, state);

startTimer({
id: "maw-taunts",
func: state => {
printRandom([
["\"Did you really think I wouldn't notice you?\""],
["\"You're going to feel good dying in my guts.\""],
["\"I could just crush you...but where's the fun in that?\""]
]);

return Math.random() * 5000 + 5000;
},
delay: 5000,
loop: true,
classes: [
"maw-struggle"
]
}, state);


},
"exit": (room, state) => {

@@ -725,7 +744,7 @@
changeStat("health", -40, state);
return true;
}
},
() => {
print(["Geta squeezes in on his gut with both hands, sloshing you around in the sickly stew of cereal, milk, and enzymatic slime."]);


Yükleniyor…
İptal
Kaydet