Created
April 18, 2016 04:08
-
-
Save YeOldeDM/f74d598281a46e33385ed7b6d3c3945f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var story = { | |
'clearing': { | |
'text': "You are in a sunny CLEARING.", | |
'choices': { | |
'north': 'castle', | |
'west': 'river', | |
'east': 'forest', | |
} | |
}, | |
'castle': { | |
'text': "You stand before a towering CASTLE.", | |
'choices': { | |
'south': 'clearing', | |
} | |
}, | |
'forest': { | |
'text': "You wander into a dark FOREST.", | |
'choices': { | |
'west': 'clearing', | |
} | |
}, | |
'river': { | |
'text': "You stand beside a swift RIVER.", | |
'choices': { | |
'east': 'clearing', | |
} | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment