Created
August 18, 2012 19:00
-
-
Save cha0s/3389038 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
{ | |
"uri": "/entity/npc/inside_npc1.entity.json", | |
"traits": [ | |
{ | |
"type": "Existence", | |
"state": { | |
"x": 256, | |
"y": 96 | |
} | |
}, | |
{ | |
"type": "Interactive", | |
"state": { | |
"dialogues": { | |
"default": [ | |
{ | |
"type": "script", | |
"speaker": "Shopkeep", | |
"script": "Hi! Would you like to shop?" | |
}, | |
{ | |
"type": "decision", | |
"caption": "Would you like to shop?", | |
"choices": [ | |
{ | |
"name": "I'd love to.", | |
"dialogue": [ | |
{ | |
"type": "action", | |
"action": { | |
"I": [ | |
"engine:setCurrentState", | |
[ | |
{ | |
"V": [ | |
"Shop" | |
] | |
} | |
] | |
] | |
} | |
}, | |
{ | |
"type": "script", | |
"speaker": "Shopkeep", | |
"script": "Thank you! Please come again!" | |
} | |
] | |
}, | |
{ | |
"name": "No thanks.", | |
"dialogue": [ | |
{ | |
"type": "script", | |
"speaker": "Shopkeep", | |
"script": "Oh... okay." | |
} | |
] | |
} | |
] | |
} | |
], | |
"shopFinished": [ | |
{ | |
"type": "script", | |
"speaker": "Shopkeep", | |
"script": "Thank you! Please come again!" | |
} | |
] | |
} | |
} | |
}, | |
{ | |
"type": "Visibility", | |
"state": { | |
"visible": 1 | |
} | |
} | |
] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment