forked from jakesgordon/javascript-tiny-platformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
level.tmx
executable file
·70 lines (70 loc) · 3.15 KB
/
level.tmx
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
68
69
70
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.0" orientation="orthogonal" width="64" height="48" tilewidth="32" tileheight="32" backgroundcolor="#000000">
<tileset firstgid="1" name="tiles" tilewidth="32" tileheight="32">
<image source="tiles.png" width="160" height="32"/>
</tileset>
<layer name="background" width="64" height="48">
<data encoding="base64" compression="zlib">
eJztmdkKwzAMBE3b/P8vl1IKpdR4Zcm2jh3YxxzjyFJCrtbaVTxVoT/96V8X+r/zcBYJmut8/O/OIkFzHdY//SP4a3tEjyj+q8jqj84VS/8Ts68HOlcs/XfMPuv1ylr/KPSnf0R/qz4Q1d8K+tMf8T/5LiO9Lwmo/47v+BPr6an+rdcTwZP/CXb7r6rn2b2y+7/Y6nqW8nK8dVJhX9A/l7+0D3z7S/d/hn/wv/6zx2qTwb/68/fUL9A+kNUfReL/r2Yl9e8RqX+0/jbCu7+2hkZ9IIJ/b39ZEMl/1Gu050dmtMZ/Ntrzo/4Zs/KZMgwTP0+CiQx1
</data>
</layer>
<objectgroup name="Object Layer 1" width="64" height="48">
<object name="player" type="player" x="96" y="480" width="32" height="32"/>
<object name="monster" type="monster" x="64" y="192" width="32" height="32">
<properties>
<property name="maxdx" value="10"/>
<property name="right" value="true"/>
</properties>
</object>
<object name="monster" type="monster" x="1120" y="416" width="32" height="32">
<properties>
<property name="left" value="true"/>
<property name="maxdx" value="4"/>
</properties>
</object>
<object name="monster" type="monster" x="1632" y="832" width="32" height="32">
<properties>
<property name="left" value="true"/>
<property name="maxdx" value="4"/>
</properties>
</object>
<object name="monster" type="monster" x="1056" y="1312" width="32" height="32">
<properties>
<property name="maxdx" value="6"/>
<property name="right" value="true"/>
</properties>
</object>
<object name="monster" type="monster" x="640" y="992" width="32" height="32">
<properties>
<property name="left" value="true"/>
<property name="maxdx" value="4"/>
</properties>
</object>
<object name="treasure" type="treasure" x="192" y="864" width="32" height="32"/>
<object name="treasure" type="treasure" x="96" y="1312" width="32" height="32"/>
<object name="treasure" type="treasure" x="1856" y="384" width="32" height="32"/>
<object name="treasure" type="treasure" x="704" y="416" width="32" height="32"/>
<object name="treasure" type="treasure" x="1984" y="192" width="32" height="32"/>
<object name="treasure" type="treasure" x="608" y="1152" width="32" height="32"/>
<object name="monster" type="monster" x="1216" y="736" width="32" height="32">
<properties>
<property name="maxdx" value="10"/>
<property name="right" value="true"/>
</properties>
</object>
<object name="monster" type="monster" x="1856" y="1344" width="32" height="32">
<properties>
<property name="maxdx" value="10"/>
<property name="right" value="true"/>
</properties>
</object>
<object name="monster" type="monster" x="1024" y="192" width="32" height="32">
<properties>
<property name="left" value="true"/>
<property name="maxdx" value="4"/>
</properties>
</object>
<object name="treasure" type="treasure" x="32" y="192" width="32" height="32"/>
<object name="treasure" type="treasure" x="1984" y="1344" width="32" height="32"/>
</objectgroup>
</map>