blob: 01b501ce89c7a1e52849f168f0aee1773e76800e (
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
|
<?xml version="1.0" encoding="utf-8"?>
<sprite>
<imageset name="mob"
src="graphics/sprites/monsters/veinbloc.png|W"
width="32"
height="32"/>
<action name="stand" imageset="mob">
<animation direction="default">
<label name="start"/>
<goto label="static" rand="95"/>
<goto label="glance" rand="100"/>
<label name="static"/>
<frame index="0" delay="2000" offsetX="0" offsetY="0"/>
<goto label="start"/>
<label name="glance"/>
<sequence start="0" end="6" delay="80" offsetX="0" offsetY="0"/>
<frame index="0" delay="500" offsetX="0" offsetY="0"/>
<goto label="start"/>
</animation>
</action>
<action name="stand" imageset="mob" hp="75">
<animation direction="default">
<frame index="8"/>
</animation>
</action>
<action name="stand" imageset="mob" hp="50">
<animation direction="default">
<frame index="9"/>
</animation>
</action>
<action name="stand" imageset="mob" hp="25">
<animation direction="default">
<frame index="10"/>
</animation>
</action>
<action name="stand" imageset="mob" hp="10">
<animation direction="default">
<frame index="11"/>
</animation>
</action>
<action name="dead" imageset="mob" hp="1">
<animation>
<frame index="12"/>
</animation>
</action>
</sprite>
|