blob: 06a341e723403ae996ac976bff8a0ea6febb70f8 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Authors: Alige, Reid
Copyright (C) 2013-2014 Evol Online -->
<sprite>
<imageset name="pikpik"
src="graphics/sprites/monsters/pikpik.png"
width="32"
height="32"/>
<action name="spawn" imageset="pikpik">
<animation>
<!-- Spines growing. -->
<sequence start="0" end="7" delay="160"/>
<jump action="stand"/>
</animation>
</action>
<action name="stand" imageset="pikpik">
<animation direction="default">
<!-- Static. -->
<frame index="8"/>
</animation>
</action>
<action name="dead" imageset="pikpik">
<animation direction="default">
<!-- Explodes and loses color. -->
<sequence start="9" end="17" delay="90"/>
<frame index="18"/>
</animation>
</action>
</sprite>
|