blob: 9c802c9db48ba56d4d479b2b04cc8330e698cdaf (
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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Author: Micksha
Copyright (C) 2018 Evol Online -->
<sprite>
<imageset name="npc"
src="graphics/sprites/npcs/sprite/lumberjack.png"
width="42"
height="63"/>
<action name="stand" imageset="npc">
<animation direction="default">
<label name="start"/>
<goto label="static" rand="75"/>
<goto label="blinking" rand="100"/>
<!-- winking -->
<label name="blinking"/>
<frame index="0" delay="1000"/>
<frame index="1" delay="80"/>
<frame index="0" delay="240"/>
<frame index="1" delay="80"/>
<goto label="start"/>
<!-- Static Animation -->
<label name="static"/>
<frame index="0" delay="400"/>
<goto label="start"/>
</animation>
</action>
</sprite>
|