You're in the living room. A door leads outside.
(if: $is_burning is true)
[A fire is burning in the middle of your room]
(else:)
[Isn't the lack of a fire so peaceful?]
(if: $has_extinguisher is false)[
A doctor is screaming at you in your bedroom]
(else:)[]
(if: $has_axe is false)
[
There is an axe on the wall
[Take axe]<take_axe|]
(else:)
[There is an empty axe holder]
(if: $is_burning is true and $has_extinguisher is true)[
[Put out fire]<put_out|]
(else:)[]
(click: ?take_axe)[
You have an axe!
(set: $has_axe to true)
]
(click: ?put_out)[
The fire is out! You win!
(set: $is_burning to false)
]
[[Go outside]]
[[Go into the bedroom]]You're outside. The sun is shining, weather is sweet..
(if: $has_apple is false)
[There's a tree with an apple on it]
(else:)
[There's an angry tree minus an apple]
(if: $has_axe is true and $has_apple is false)
[
[Chop down apple]<get_apple|]
(if: $has_axe is true and $has_apple is true)
[
Wasn't too nice of you to chop down that apple
]
(click: ?get_apple)[
You chopped down that pomme! How'd u like them apples?
(set: $has_apple to true)
]
[[Living Room]] The Secret Of Putting Out Fires..
Copyright Al, King of Procrastinators 2019 (c)
Shall we play? Click to go to the
(set: $has_axe to false)
(set: $has_extinguisher to false)
(set: $has_apple to false)
(set: $is_burning to true)
[[Living Room]](if: $has_extinguisher is false)
[There's an extinguisher on the wall with a screaming doctor next to it]
(else:)[There is a hole in the wall where the doctor ran out]
(if: $has_apple is true and $has_extinguisher is false)
[
[Give apple]<get_extinguisher|
]
(click: ?get_extinguisher)[
You show the apple to the doctor and he freaks out, running. You pick up the extinguisher
(set: $has_extinguisher to true)
]
[[Living Room]]