generated from tpaw/StarterAdventure
31 lines
681 B
Text
31 lines
681 B
Text
# Introduction
|
|
Welcome to your adventure! You find yourself at a crossroads.
|
|
|
|
[[Take the left path -> LeftPath]]
|
|
[[Take the right path -> RightPath]]
|
|
|
|
# LeftPath
|
|
You walk down the left path and encounter a mysterious stranger.
|
|
|
|
(set: $hasKey to true)
|
|
The stranger gives you a key.
|
|
|
|
[[Continue -> Crossroads]]
|
|
|
|
# RightPath
|
|
You walk down the right path and find a locked door.
|
|
|
|
(if: $hasKey)[
|
|
You use the key to unlock the door and discover a treasure!
|
|
]
|
|
(else:)[
|
|
The door is locked. You need a key to open it.
|
|
]
|
|
|
|
[[Return to the crossroads -> Crossroads]]
|
|
|
|
# Crossroads
|
|
You're back at the crossroads.
|
|
|
|
[[Take the left path -> LeftPath]]
|
|
[[Take the right path -> RightPath]]
|