blob: 21023207a89110c447c8d2962ce0cbde3a6af0a8 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Author: Micksha
Copyright (C) 2015 - 2020 Evol Online -->
<sprite>
<imageset name="npc"
src="graphics/sprites/npcs/sprite/artis-sewer-archway.png"
width="96"
height="96"/>
<action name="stand" imageset="npc">
<animation direction="up">
<frame index="7"/>
</animation>
<animation direction="down">
<frame index="0"/>
</animation>
<animation direction="left">
<frame index="0"/>
</animation>
<animation direction="right">
<frame index="0"/>
</animation>
</action>
<action name="move" imageset="npc">
<!-- Opening -->
<animation direction="up">
<sequence start="0" end="7" delay="200"/>
<frame index="7"/>
<end/>
</animation>
<!-- Closing -->
<animation direction="down">
<frame index="7" delay="200"/>
<frame index="6" delay="200"/>
<frame index="5" delay="200"/>
<frame index="4" delay="200"/>
<frame index="3" delay="200"/>
<frame index="2" delay="200"/>
<frame index="1" delay="200"/>
<frame index="0"/>
<end/>
</animation>
<animation direction="left">
<frame index="0"/>
</animation>
<animation direction="right">
<frame index="0"/>
</animation>
</action>
</sprite>
|