Skip to content

Instantly share code, notes, and snippets.

@YeOldeDM
Created April 18, 2016 04:08
Show Gist options
  • Save YeOldeDM/f74d598281a46e33385ed7b6d3c3945f to your computer and use it in GitHub Desktop.
Save YeOldeDM/f74d598281a46e33385ed7b6d3c3945f to your computer and use it in GitHub Desktop.
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