From ada5787f8dc81120e0df91a756d58eba9901d32c Mon Sep 17 00:00:00 2001 From: Bill Niblock Date: Sat, 6 May 2017 15:13:13 -0400 Subject: [PATCH] trees/example_quest.yaml: Example Quest! Adventure! - Example Quest is a meta dialogue, designed to walk the user through understanding what sapling is, and how it works. - Used to be the configuration file example, but now it's all grown up and ready for big-boy pants. --- trees/example_quest.yaml | 45 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 trees/example_quest.yaml diff --git a/trees/example_quest.yaml b/trees/example_quest.yaml new file mode 100644 index 0000000..48735c3 --- /dev/null +++ b/trees/example_quest.yaml @@ -0,0 +1,45 @@ +--- +- trunk: "Example Quest: Learn what it looks like to use Sapling!" + +- + branch: + number: 1 + text: "You stumble upon the first branch of a dialogue tree. + You find yourself at a junction..." + leaf: + - + text: "Go to the next branch." + branch: 2 + - + text: "Leave this silly place." + branch: 0 +- + branch: + number: 2 + text: "Ye find yeself at branch 2. Your options are north, south + or Dennis." + leaf: + - + text: "North" + branch: 3 + - + text: "South (back the way you came)" + branch: 1 + - + text: "Dennis" + branch: 0 +- + branch: + number: 3 + text: "It's cold up here. You decide to go someplace else!" + leaf: + - + text: "Head on home." + branch: 4 + - + text: "Head south (back the way you came)" + branch: 2 +- + branch: + number: 4 + text: "You head on home!"