|
|
|
@@ -33,8 +33,8 @@ stories.push({ |
|
|
|
start: "stomach", |
|
|
|
setup: () => { |
|
|
|
state.info.time.value = 86400 - 60 * 25 - 25; |
|
|
|
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.health = {name: "Health", type: "meter", value: 100, min: 0, max: 100, color: (self) => "rgb(" + (155+self.value) + ",0,0)"}; |
|
|
|
state.player.stats.stamina = {name: "Stamina", type: "meter", value: 100, min: 0, max: 100, color: (self) => "rgb(100," + (155+self.value) + ",0)"}; |
|
|
|
|
|
|
|
startTimer({ |
|
|
|
id: "taunting", |
|
|
|
|