blob: 40f88c7f25d41660461a4da9ef2535673bc32419 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Author: Reid
Copyright (C) 2015 Evol Online -->
<sprite>
<imageset name="mob"
src="graphics/sprites/monsters/dummy.png"
width="32"
height="64"/>
<action name="stand" imageset="mob">
<animation direction="default">
<frame index="0"/>
</animation>
</action>
<action name="stand" imageset="mob" hp="75">
<animation direction="default">
<frame index="1"/>
</animation>
</action>
<action name="stand" imageset="mob" hp="50">
<animation direction="default">
<frame index="2"/>
</animation>
</action>
<action name="stand" imageset="mob" hp="25">
<animation direction="default">
<frame index="3"/>
</animation>
</action>
<action name="dead" imageset="mob" hp="25">
<animation>
<frame index="4"/>
</animation>
</action>
</sprite>
|