diff options
author | Micksha <ms-shaman@gmx.de> | 2019-02-28 14:12:27 +0000 |
---|---|---|
committer | Micksha <ms-shaman@gmx.de> | 2019-02-28 14:12:27 +0000 |
commit | f5d785884701fa37befac3cf217877585b3fe30d (patch) | |
tree | 017802299fc7a518586f613045e3105439d3affd /graphics/sprites | |
parent | a4dd7e41ae0cf478992cd2dfc415482a28f16bae (diff) | |
download | clientdata-f5d785884701fa37befac3cf217877585b3fe30d.tar.gz clientdata-f5d785884701fa37befac3cf217877585b3fe30d.tar.bz2 clientdata-f5d785884701fa37befac3cf217877585b3fe30d.tar.xz clientdata-f5d785884701fa37befac3cf217877585b3fe30d.zip |
Darktileset
Diffstat (limited to 'graphics/sprites')
-rw-r--r-- | graphics/sprites/monsters/mana-ghost.png | bin | 0 -> 49696 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/mana-ghost.xml | 64 | ||||
-rw-r--r-- | graphics/sprites/npcs/sprite/valia.png | bin | 0 -> 4110 bytes | |||
-rw-r--r-- | graphics/sprites/npcs/xml/valia.xml | 34 |
4 files changed, 98 insertions, 0 deletions
diff --git a/graphics/sprites/monsters/mana-ghost.png b/graphics/sprites/monsters/mana-ghost.png Binary files differnew file mode 100644 index 00000000..0983cd33 --- /dev/null +++ b/graphics/sprites/monsters/mana-ghost.png diff --git a/graphics/sprites/monsters/mana-ghost.xml b/graphics/sprites/monsters/mana-ghost.xml new file mode 100644 index 00000000..ada1522a --- /dev/null +++ b/graphics/sprites/monsters/mana-ghost.xml @@ -0,0 +1,64 @@ +<?xml version="1.0"?> +<sprite> + <imageset name="base" src="graphics/sprites/monsters/mana-ghost.png" width="50" height="64"/> + <action name="stand" imageset="base"> + <animation direction="down"> + <frame index="0"/> + </animation> + <animation direction="right"> + <frame index="30"/> + </animation> + <animation direction="up"> + <frame index="20"/> + </animation> + <animation direction="left"> + <frame index="10"/> + </animation> + </action> + <action name="walk" imageset="base"> + <animation direction="down"> + <sequence start="0" end="4" delay="200"/> + </animation> + <animation direction="right"> + <sequence start="30" end="34" delay="200"/> + </animation> + <animation direction="up"> + <sequence start="20" end="24" delay="200"/> + </animation> + <animation direction="left"> + <sequence start="10" end="14" delay="200"/> + </animation> + </action> + <action name="attack" imageset="base"> + <animation direction="down"> + <sequence start="0" end="8" delay="150"/> + <end/> + </animation> + <animation direction="right"> + <sequence start="30" end="38" delay="150"/> + <end/> + </animation> + <animation direction="up"> + <sequence start="20" end="28" delay="150"/> + <end/> + </animation> + <animation direction="left"> + <sequence start="10" end="18" delay="150"/> + <end/> + </animation> + </action> + <action name="dead" imageset="base"> + <animation direction="down"> + <frame index="9" delay="0"/> + </animation> + <animation direction="right"> + <frame index="39" delay="0"/> + </animation> + <animation direction="up"> + <frame index="29" delay="0"/> + </animation> + <animation direction="left"> + <frame index="19" delay="0"/> + </animation> + </action> +</sprite> diff --git a/graphics/sprites/npcs/sprite/valia.png b/graphics/sprites/npcs/sprite/valia.png Binary files differnew file mode 100644 index 00000000..8b8a0721 --- /dev/null +++ b/graphics/sprites/npcs/sprite/valia.png diff --git a/graphics/sprites/npcs/xml/valia.xml b/graphics/sprites/npcs/xml/valia.xml new file mode 100644 index 00000000..226b1d0b --- /dev/null +++ b/graphics/sprites/npcs/xml/valia.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Author: Micksha +Copyright (C) 2010-2019 Evol Online --> + +<sprite> + <imageset name="base" + src="graphics/sprites/npcs/sprite/valia.png" + width="32" + height="96"/> + + <action name="stand" imageset="base"> + <animation direction="default"> + <label name="start"/> + <goto label="static" rand="70"/> + <goto label="magic" rand="100"/> + +<!-- moving hand over the magic ball --> + + <label name="magic"/> + <frame index="0" delay="500"/> + <frame index="1" delay="250"/> + <frame index="2" delay="250"/> + <frame index="3" delay="250"/> + <frame index="2" delay="250"/> + <goto label="start"/> + + <!-- Static Animation --> + <label name="static"/> + <frame index="0" delay="3000"/> + <goto label="start"/> + + </animation> + </action> +</sprite> |