diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-01-10 23:04:50 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-01-10 23:04:50 -0500 |
commit | a2284d1c9be35744cb43a91148c82cff64be7a43 (patch) | |
tree | 0e83b237969d519b1233ab974d668245d2ca4b9e /xml | |
parent | 75a5569ed0d44494da379822aa5de519e4a4025b (diff) | |
parent | 66c99350e63ab6b32ec7fcda45e2e6b8c9f658da (diff) |
Player Sprite
Diffstat (limited to 'xml')
-rw-r--r-- | xml/playerSpawnHill1.xml | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/xml/playerSpawnHill1.xml b/xml/playerSpawnHill1.xml index c924d7e..5a0e51f 100644 --- a/xml/playerSpawnHill1.xml +++ b/xml/playerSpawnHill1.xml @@ -1,22 +1,39 @@ <?xml version="1.0"?> <World> <style background="0" bgm="assets/music/embark.wav" /> - <generation type="Random" width="500" /> + <generation type="Random" width="2000" /> - <!--<mob type="1" x="250" y="100" />--> + <mob type="1" /> - <npc name="Ralph" x="0" y="100" hasDialog="true"/> + <npc name="Ralph" hasDialog="true" /> + <npc name="Johnny" hasDialog="true" /> </World> -<Dialog> +<Dialog name="Ralph"> - <text name="Ralph" id="0" nextid="1"> + <text id="0"> Hello there! + <option text="Hello" nextid="1" /> + <option text="Frig" nextid="2" /> </text> - <text name="Ralph" id="1"> - Lol + <text id="1"> + gg. </text> + <text id="2" call="Johnny" callid="1"> + what you have done it to trick Microsoft + </text> + +</Dialog> + +<Dialog name="Johnny"> + <text id="0" nextid="1" stop="true"> + Sup bro! + </text> + + <text id="1" > + My name's Johnny. + </text> </Dialog> |