Browse Source

Add random print function, plus a use in fen-snack

tags/v0.1.2
Fen Dweller 6 years ago
parent
commit
e2e0afb37c
No known key found for this signature in database GPG Key ID: E80B35A6F11C3656
2 changed files with 22 additions and 1 deletions
  1. +5
    -0
      satiate.js
  2. +17
    -1
      stories/fen-snack.js

+ 5
- 0
satiate.js View File

@@ -22,6 +22,11 @@ function print(lines) {
log.scrollTop = log.scrollHeight; log.scrollTop = log.scrollHeight;
} }


function printRandom(list) {
let choice = Math.floor(Math.random() * list.length)
print(list[choice])
}

function refresh() { function refresh() {
updateRoom(state); updateRoom(state);
updateStatDisplay(state.info, "world"); updateStatDisplay(state.info, "world");


+ 17
- 1
stories/fen-snack.js View File

@@ -32,6 +32,22 @@ stories.push({
state.player.stats.health = {name: "Health", type: "meter", value: 100, min: 0, max: 100, color: "rgb(255,0,0)"}; state.player.stats.health = {name: "Health", type: "meter", value: 100, min: 0, max: 100, color: "rgb(255,0,0)"};
state.player.stats.stamina = {name: "Stamina", type: "meter", value: 100, min: 0, max: 100, color: "rgb(100,255,0)"}; state.player.stats.stamina = {name: "Stamina", type: "meter", value: 100, min: 0, max: 100, color: "rgb(100,255,0)"};


startTimer({
id: "taunting",
func: state => {
printRandom([
["The crux strokes over his snarling gut, enjoying your dwindling squirms."],
["\"Enjoying yourself, meal?\"", "Your captor's oh-so-smug voice booms in your ears."]
])
return 25000 + Math.random() * 10000;
},
delay: 5000,
loop: true,
classes: [
"alive"
]
}, state);
startTimer({ startTimer({
id: "movement", id: "movement",
func: state => { func: state => {
@@ -144,7 +160,7 @@ stories.push({
}, state); }, state);
}, },
intro: state => { intro: state => {
print(["Hot, slimy walls ripple and squeeze, the stomach of your captor stewing you in a churning bath of chyme and acid. The blue crux made a late-night meal out of you with ease. You've only been trapped under the Fen's pelt for a few minutes...and it doesn't seem like you'll last much longer than that, either."]);
print(["Hot, slimy walls ripple and squeeze, the stomach of your captor stewing you in a churning bath of chyme and acid. The purple crux made a late-night meal out of you with ease. You've only been trapped under the Fen's pelt for a few minutes...but it doesn't seem like you'll make it until midnight."]);
playSfx("sfx/stomach-churn.ogg"); playSfx("sfx/stomach-churn.ogg");
} }
}, },


Loading…
Cancel
Save