blob: e63e82fc8606d9aab95e5d401e3e93d3d117722b (
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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Author: Reid
Copyright (C) 2015 Evol Online -->
<sprite>
<imageset name="npc"
src="graphics/sprites/accessories/harbour-box.png"
width="32"
height="96"
offsetY="19"
offsetX="77"/>
<action name="stand" imageset="npc">
<!-- Static Top -->
<animation direction="down">
<frame index="0" delay="140"/>
</animation>
<!-- Moving Down, x=3, with x*560 delay in ms -->
<animation direction="left">
<sequence start="0" end="11" delay="140"/>
</animation>
<!-- Moving Bottom, x=3, with x*560 delay in ms -->
<animation direction="up">
<sequence start="11" end="0" delay="140"/>
</animation>
<!-- Static Bottom-->
<animation direction="right">
<frame index="11" delay="140"/>
</animation>
</action>
</sprite>
|