소스 검색

Add clenches pulling down to the bowels

tags/v0.1.2
Fen Dweller 6 년 전
부모
커밋
d47c768f5d
No known key found for this signature in database 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,


불러오는 중...
취소
저장