blob: bf0af6c48b1ac3042868ef7dffbac10aa22f8ef2 (
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
|
<?xml version="1.0"?>
<World>
<style background="0" bgm="assets/music/embark.wav" folder="assets/style/classic/"/>
<generation type="Random" width="400"/>
<hill peakx="0" peaky="1000" width="50"/>
<link right="001.xml"/>
<weather>Rainy</weather>
<time>3400</time>
<spawnx>-650</spawnx>
<trigger spawnx="-630" id="first" notext="1"/>
<npc name="Guy" hasDialog="true" spawnx="0" canMove="false"/>
</World>
<Trigger id="first">Guy</Trigger>
<Dialog name="Guy">
<text id="0" nextid="1" pause="true">
<gotox playerMove="0" advance="1">-600</gotox>
</text>
<text id="1">
...
<gotox>700</gotox>
<set id="Slow" value="0"/>
</text>
</Dialog>
|