浏览代码

Add clenches pulling down to the bowels

tags/v0.1.2
Fen Dweller 6 年前
父节点
当前提交
d47c768f5d
找不到此签名对应的密钥 GPG 密钥 ID: E80B35A6F11C3656
共有 1 个文件被更改,包括 7 次插入2 次删除
  1. +7
    -2
      stories/fen-snack.js

+ 7
- 2
stories/fen-snack.js 查看文件

@@ -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,


正在加载...
取消
保存