blob: c307b5302b73722a03360c986b855d1c84c37d87 (
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: Micksha
Copyright (C) 2015 Evol Online -->
<sprite>
<imageset name="npc"
src="graphics/sprites/npcs/sprite/richard.png"
width="64"
height="64"/>
<action name="stand" imageset="npc">
<animation direction="default">
<label name="start"/>
<goto label="static" rand="95"/>
<goto label="winking" rand="5"/>
<!-- winking -->
<label name="winking"/>
<sequence start="0" end="2" delay="160"/>
<sequence start="2" end="4" repeat="2" delay="120"/>
<frame index="4" delay="50"/>
<frame index="1" delay="80"/>
<frame index="0" delay="240"/>
<goto label="start"/>
<!-- Static Animation -->
<label name="static"/>
<frame index="0" delay="400"/>
<goto label="start"/>
</animation>
</action>
</sprite>
|