Created
January 28, 2012 21:52
-
-
Save hoverbird/1695875 to your computer and use it in GitHub Desktop.
simple convo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "What are you doing here? Do you have clearance to pick apples in this orchard?", | |
"children": [ | |
{ | |
"name": "Yes", | |
"children": [ | |
{ | |
"name": "Let's see some ID.", | |
"exitEvent": "checkID" | |
} | |
], | |
}, | |
{ | |
"name": "Be silent.", | |
"children": [ | |
{ | |
"name": "Won't talk, eh? Into the brig with you!", | |
"exitEvent": ["movePlayer", "jailHouse"] | |
} | |
] | |
}, | |
{ | |
"name": "No", | |
"children": [ | |
{ | |
"name": "Scram, kid!", | |
"exitEvent": null | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment