blob: 28401e83e6a9db55f5ef2aa04baa7aa61d166698 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Author: Reid
Copyright (C) 2015 Evol Online -->
<sprite>
<imageset name="base"
src="graphics/sprites/npcs/sprite/elmo-artis.png"
width="64"
height="64"
offsetX ="-12"/>
<action name="stand" imageset="base">
<animation direction="default">
<label name="start"/>
<goto label="blink" rand="10"/>
<!-- Leg animation -->
<sequence value="0,3,4,5,4,3" delay="120"/>
<goto label="start"/>
<!-- blinking and last frame of leg animation -->
<label name="blink"/>
<sequence start="1" end="2" delay="60"/>
<frame index="3" delay="120"/>
<goto label="start"/>
</animation>
</action>
</sprite>
|