blob: 94292ab54432f7376cc34e54dc0dee3977ba2b94 (
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
|
<?xml version="1.0"?>
<World>
<style background="0" bgm="assets/music/embark.wav" />
<generation type="Random" width="500" />
<!--<mob type="1" x="250" y="100" />-->
<npc name="Ralph" x="0" y="100" hasDialog="true"/>
</World>
<Dialog name="Ralph">
<text id="0">
Hello there!
<option text="Hello" nextid="1" />
<option text="Frig" nextid="2" />
</text>
<text id="1">
gg.
</text>
<text id="2">
Frrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
</text>
</Dialog>
|