<span style="background-color: #101213">Each day, I wake up and go outside.
I see my [[village->neighborhood]].
(if: $event is 1)[It is gray above my home.]
(elseif: $event is 2)[Pools of water fill the holes in the ground.]
(elseif: $event is 3)[A frost covers the ground.]
</span>
<img src="https://nilsontcarroll.github.io/twine/images/wall.gif" width=100%>
<span style="background-color: #101213">Within this place:
(if:$basket is false)[there is a [[temple->temple]] surrounded by strange plants] (if:$basket is true)[there is a [[temple->temple2]] surrounded by strange plants]
a shallow [[pool->pool]] of water full of lilies
and a small [[tree->tree]] on a hill.
(if: $basket is true)[I have a basket]
(if:$water >= 1)[I have $water bowl's worth of life water]
<img src="https://nilsontcarroll.github.io/twine/images/wall.gif" width=100%>
</span>
<img src="https://nilsontcarroll.github.io/twine/images/wall.gif" width=100%>
</span><span style="background-color: #101213">I wade into the pool.
A water fairy is tending to her crops on the pool's surface.
(if: $basket is true)[She offers some life water to me. She pours it into the basket. (set: $water to it + 1)]
I [[leave->neighborhood]] the pool.</span><span style="background-color: #101213">(set: $basket to true)
<img src="https://nilsontcarroll.github.io/twine/images/temple.gif" width=100%>
I approach the temple.
Inside, a monk is weaving a basket. She greets me and hands me the basket.
I [[leave->neighborhood]] the temple.</span><span style="background-color: #101213">I approach the lone tree on the hill.
(if: $tree is 0)[It has no leaves.]
(if: $tree is 1)[It has a few leaves on it.
<img src="https://nilsontcarroll.github.io/twine/images/tree1.png">]
(if: $tree is 2)[It has several leaves on it.
<img src="https://nilsontcarroll.github.io/twine/images/tree2.png">]
(if: $tree is 3)[It is full of leaves and flowers. It does not need any more water.
<img src="https://nilsontcarroll.github.io/twine/images/tree3.png">]
(elseif: $water >= 1)[Pour out some life water on to the tree?
[[pour->Pour some water]]
[[Leave it alone and return->neighborhood]]]
(if: $water is 0)[I [[leave->neighborhood]] the tree.]</span><span style="background-color: #101213"><img src="https://nilsontcarroll.github.io/twine/images/temple.gif" width=100%>I re-enter the temple.
Inside, a monk is weaving more baskets.
I [[leave->neighborhood]] the temple.</span><span style="background-color: #101213">(set: $tree to it + 1)(set: $water to it -1)
I pour out some life water on to the tree's base.
I [[leave->neighborhood]] the tree.</span>{
(set: $event to (random: 1, 3))
(set: $basket to false)
(set: $water to 0)
(set: $tree to 0)
}