blob: 8fad1547d683fb51df337a35f07a802e9dd8c3c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?xml version="1.0"?>
<IndoorWorld>
<style background="1" bgm="assets/music/theme_jazz.wav" />
<floor width="300">
<npc name="Bob" hasDialog="true" />
</floor>
<floor width="200" />
</IndoorWorld>
<Dialog name="Bob">
<text id="0" nextid="1" pause="true">
Hey. Have a Dank MayMay :)
<give id="Dank MayMay" count="1" />
</text>
<text id="1" nextid="2">
What? You want another Dank MayMay?
</text>
<text id="2" nextid="3" pause="true">
K.
<give id="Dank MayMay" count="1" />
</text>
<text id="3" nextid="4">
Well... I'm out of Dank MayMays.
</text>
<text id="4">
Have a sword though.
<give id="Wood Sword" count="1" />
</text>
</Dialog>
|