diff options
author | Reid <reidyaro@gmail.com> | 2012-05-23 23:14:58 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-05-23 23:14:58 +0200 |
commit | 1f984976298155aa60169e04d30dba4eb09f73b1 (patch) | |
tree | 996dfe3b45977f3aad501affa945c45a697d7c99 /graphics/sprites/npcs/xml/gugli.xml | |
parent | fff9c1f556e21115d07a7ecb2faa6c117e2adc4f (diff) | |
download | clientdata-1f984976298155aa60169e04d30dba4eb09f73b1.tar.gz clientdata-1f984976298155aa60169e04d30dba4eb09f73b1.tar.bz2 clientdata-1f984976298155aa60169e04d30dba4eb09f73b1.tar.xz clientdata-1f984976298155aa60169e04d30dba4eb09f73b1.zip |
Correct some problem caused by the merge.
Diffstat (limited to 'graphics/sprites/npcs/xml/gugli.xml')
-rw-r--r-- | graphics/sprites/npcs/xml/gugli.xml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/graphics/sprites/npcs/xml/gugli.xml b/graphics/sprites/npcs/xml/gugli.xml new file mode 100644 index 00000000..37e0eadc --- /dev/null +++ b/graphics/sprites/npcs/xml/gugli.xml @@ -0,0 +1,41 @@ +<?xml version="1.0"?> +<!-- Author : Reid 4144 +Copyright (C) 2011-2012 Evol Online + +Example of the extended animation tags. +Allow set in attribute value any frame numbers. + +Both of these examples show the same thing: + <sequence start="55" end="60" delay="75" /> + <sequence value="55-60" delay="75" /> + <sequence value="55,56,57,58,59,60" delay="75" /> --> + +<sprite> + <imageset name="base" src="graphics/sprites/npcs/sprite/gugli.png" width="70" height="70" offsetX ="-7" offsetY ="2"/> + + <action name="stand" imageset="base"> + + <animation direction="default"> + <label name="start"/> + <!-- 40% used on "long" label. --> + <goto label="long" rand="40"/> + <!-- 100% from the 60% unused percent are used on "simple" label. --> + <goto label="simple" rand="100"/> + <!-- Long move leg animation. --> + <label name="long"/> + <frame index="0" delay="120"/> + <sequence value="1,2" delay="110"/> + <frame index="3" delay="120"/> + <sequence value="2,1" delay="110"/> + <jump label="start"/> + <!-- Simple move leg animation. --> + <label name="simple"/> + <frame index="0" delay="120"/> + <frame index="1" delay="110"/> + <frame index="2" delay="120"/> + <frame index="1" delay="110"/> + <jump label="start"/> + </animation> + </action> + +</sprite>
\ No newline at end of file |