diff options
author | Reid <reidyaro@gmail.com> | 2015-06-20 03:28:07 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-06-20 03:28:07 +0200 |
commit | 722c1bdf94f508ca076b0c933a5696fced8a331d (patch) | |
tree | d450a86523c5726037889c06e23556485ab8ad33 | |
parent | f9dd1c1c06a617931cf20e9ea38d20c15f473d3c (diff) | |
download | clientdata-722c1bdf94f508ca076b0c933a5696fced8a331d.tar.gz clientdata-722c1bdf94f508ca076b0c933a5696fced8a331d.tar.bz2 clientdata-722c1bdf94f508ca076b0c933a5696fced8a331d.tar.xz clientdata-722c1bdf94f508ca076b0c933a5696fced8a331d.zip |
Add special eye animation (accessory) for enora.
-rw-r--r-- | graphics/sprites/accessories/enora-eye.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/graphics/sprites/accessories/enora-eye.xml b/graphics/sprites/accessories/enora-eye.xml new file mode 100644 index 00000000..c85c0682 --- /dev/null +++ b/graphics/sprites/accessories/enora-eye.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Author: Reid +Copyright (C) 2011-2015 Evol Online --> +<sprite> + <imageset name="eye" + src="graphics/sprites/accessories/eye-down-blink.png" + width="16" + height="8" + offsetY="-42" + offsetX="-1"/> + + <action name="stand" imageset="eye"> + <animation direction="default"> + <label name="start"/> + <!-- 4% --> + <goto label="blink" rand="4"/> + <!-- 100% on static animation --> + <goto label="static" rand="100"/> + + <!-- Static animation --> + <label name="static"/> + <frame index="0" delay="160"/> + <goto label="start"/> + + <!-- Blinking animation --> + <label name="blink"/> + <frame index="1" delay="60"/> + <frame index="2" delay="80"/> + <goto label="start"/> + </animation> + </action> +</sprite> |