blob: 09f4bc358f3a42b3ec58d6b37510bbf5ee1404f2 (
plain) (
blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
<?xml version="1.0"?>
<sprite>
<imageset name="base" src="graphics/sprites/monsters/frog-big.png" width="64" height="64"/>
<action name="stand" imageset="base">
<animation direction="down">
<frame index="0"/>
</animation>
<animation direction="downright">
<frame index="12"/>
</animation>
<animation direction="right">
<frame index="24"/>
</animation>
<animation direction="upright">
<frame index="36"/>
</animation>
<animation direction="up">
<frame index="48"/>
</animation>
<animation direction="upleft">
<frame index="60"/>
</animation>
<animation direction="left">
<frame index="72"/>
</animation>
<animation direction="downleft">
<frame index="84"/>
</animation>
</action>
<action name="walk" imageset="base">
<animation direction="down">
<sequence start="0" end="11" delay="50"/>
</animation>
<animation direction="downright">
<sequence start="12" end="23" delay="50"/>
</animation>
<animation direction="right">
<sequence start="24" end="35" delay="50"/>
</animation>
<animation direction="upright">
<sequence start="36" end="47" delay="50"/>
</animation>
<animation direction="up">
<sequence start="48" end="59" delay="50"/>
</animation>
<animation direction="upleft">
<sequence start="60" end="71" delay="50"/>
</animation>
<animation direction="left">
<sequence start="72" end="83" delay="50"/>
</animation>
<animation direction="downleft">
<sequence start="84" end="95" delay="50"/>
</animation>
</action>
<action name="attack" imageset="base">
<animation direction="down">
<sequence start="96" end="104" delay="50"/>
<end/>
</animation>
<animation direction="downright">
<sequence start="108" end="116" delay="50"/>
<end/>
</animation>
<animation direction="right">
<sequence start="120" end="128" delay="50"/>
<end/>
</animation>
<animation direction="upright">
<sequence start="132" end="140" delay="50"/>
<end/>
</animation>
<animation direction="up">
<sequence start="144" end="152" delay="50"/>
<end/>
</animation>
<animation direction="upleft">
<sequence start="156" end="164" delay="50"/>
<end/>
</animation>
<animation direction="left">
<sequence start="168" end="176" delay="50"/>
<end/>
</animation>
<animation direction="downleft">
<sequence start="180" end="188" delay="50"/>
<end/>
</animation>
</action>
<action name="dead" imageset="base">
<animation direction="down">
<frame index="7"/>
</animation>
<animation direction="downright">
<frame index="19"/>
</animation>
<animation direction="right">
<frame index="32"/>
</animation>
<animation direction="upright">
<frame index="43"/>
</animation>
<animation direction="up">
<frame index="53"/>
</animation>
<animation direction="upleft">
<frame index="66"/>
</animation>
<animation direction="left">
<frame index="79"/>
</animation>
<animation direction="downleft">
<frame index="90"/>
</animation>
</action>
</sprite>
|