This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPokemon.xml
67 lines (64 loc) · 1.44 KB
/
Pokemon.xml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<world width="40" height="25">
<map default="Earth">
<zone background="Sea">
<begin x="5" y="5" />
<end x="10" y="10" />
</zone>
<zone background="Grass">
<begin x="15" y="20"/>
<end x="18" y="24"/>
</zone>
<zone background="Water">
<begin x="26" y="15"/>
<end x="29" y="17"/>
</zone>
<square x="3" y="5" background="Grass"/>
</map>
<elements>
<pokemon class="Melofee">
<position x="12" y="9" />
<lookingAt direction="UP"/>
</pokemon>
<pokemon class="Abra">
<position x="20" y="22" />
<lookingAt direction="RIGHT"/>
</pokemon>
<pokemon class="Amonita">
<position x="29" y="4" />
<lookingAt direction="LEFT"/>
</pokemon>
<pokemon class="Bulbizarre">
<position x="0" y="24" />
<lookingAt direction="DOWN"/>
</pokemon>
<pokemon class="Chetiflor">
<position x="12" y="22" />
<lookingAt direction="UP"/>
</pokemon>
<egg class="Salameche">
<position x="4" y="8"/>
</egg>
<item class="Eau_fraiche">
<position x="11" y="8"/>
</item>
<item class="Rocher">
<position x="11" y="7"/>
</item>
<item class="Rocher">
<position x="19" y="19" />
</item>
<item class="Rocher">
<position x="25" y="9" />
</item>
<item class="Arbre">
<position x="12" y="14" />
</item>
<item class="PP_Plus">
<position x="28" y="24"/>
</item>
<item class="Pierre_plante">
<position x="25" y="0"/>
</item>
</elements>
</world>