blob: 049d87a0cf51fde90da92573a31dad9319c086ec (
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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Author: Reid
Copyright (C) 2015 Evol Online -->
<sprite>
<imageset name="npc"
src="graphics/sprites/accessories/harbour-rope.png"
width="192"
height="128"
offsetY="15"
offsetX="-16"/>
<action name="stand" imageset="npc">
<!-- Static Top -->
<animation direction="down">
<frame index="0"/>
</animation>
<!-- Moving Down, common divisor of 560 and delay in ms -->
<animation direction="left">
<sequence start="0" end="2" delay="80"/>
</animation>
<!-- Moving Bottom, common divisor of 560 and delay in ms -->
<animation direction="up">
<sequence start="2" end="0" delay="80"/>
</animation>
<!-- Static Bottom-->
<animation direction="right">
<frame index="2"/>
</animation>
</action>
</sprite>
|