diff options
author | Led Mitz <smoothshifter@tuta.io> | 2023-11-29 03:29:22 +0000 |
---|---|---|
committer | Led Mitz <smoothshifter@tuta.io> | 2023-11-29 03:29:22 +0000 |
commit | abbfb536508694927e4d0505eea19255f6d42457 (patch) | |
tree | 0834816220c5ba61870f63cc943eb29216a7ebe8 /graphics/sprites | |
parent | 15a03767c3a2ea915b74e880c3dfa91c146c4473 (diff) | |
parent | da3dae3ea7aebc50a58057f3725a795387a93d64 (diff) | |
download | clientdata-abbfb536508694927e4d0505eea19255f6d42457.tar.gz clientdata-abbfb536508694927e4d0505eea19255f6d42457.tar.bz2 clientdata-abbfb536508694927e4d0505eea19255f6d42457.tar.xz clientdata-abbfb536508694927e4d0505eea19255f6d42457.zip |
Merge branch 'rotter' into 'master'
Added Rotter and Rot mobs and effects
See merge request legacy/clientdata!558
Diffstat (limited to 'graphics/sprites')
-rw-r--r-- | graphics/sprites/monsters/rot.png | bin | 0 -> 552 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/rot.xml | 20 | ||||
-rw-r--r-- | graphics/sprites/monsters/rotter.png | bin | 0 -> 159890 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/rotter.xml | 56 |
4 files changed, 76 insertions, 0 deletions
diff --git a/graphics/sprites/monsters/rot.png b/graphics/sprites/monsters/rot.png Binary files differnew file mode 100644 index 00000000..89d582cb --- /dev/null +++ b/graphics/sprites/monsters/rot.png diff --git a/graphics/sprites/monsters/rot.xml b/graphics/sprites/monsters/rot.xml new file mode 100644 index 00000000..fadc8711 --- /dev/null +++ b/graphics/sprites/monsters/rot.xml @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<sprite> + <imageset name="base" src="graphics/sprites/monsters/rot.png" width="20" height="20"/> + <action name="stand" imageset="base"> + <animation> + <frame index="0"/> + </animation> + </action> + <action name="attack" imageset="base"> + <animation direction="default"> + <sequence start="1" end="2" delay="100"/> + <end/> + </animation> + </action> + <action name="dead" imageset="base"> + <animation> + <frame index="2" delay="5000"/> + </animation> + </action> +</sprite> diff --git a/graphics/sprites/monsters/rotter.png b/graphics/sprites/monsters/rotter.png Binary files differnew file mode 100644 index 00000000..b8ab10bc --- /dev/null +++ b/graphics/sprites/monsters/rotter.png diff --git a/graphics/sprites/monsters/rotter.xml b/graphics/sprites/monsters/rotter.xml new file mode 100644 index 00000000..c9eb1cce --- /dev/null +++ b/graphics/sprites/monsters/rotter.xml @@ -0,0 +1,56 @@ +<?xml version="1.0"?> +<sprite variants="56" variant_offset="1"> + <imageset name="base" src="graphics/sprites/monsters/rotter.png" width="64" height="64"/> + <action name="stand" imageset="base"> + <animation direction="down"> + <frame index="0"/> + </animation> + <animation direction="right"> + <frame index="7"/> + </animation> + <animation direction="left"> + <frame index="14"/> + </animation> + <animation direction="up"> + <frame index="21"/> + </animation> + </action> + <action name="walk" imageset="base"> + <animation direction="down"> + <sequence start="1" end="6" delay="300"/> + </animation> + <animation direction="right"> + <sequence start="8" end="13" delay="300"/> + </animation> + <animation direction="left"> + <sequence start="15" end="20" delay="300"/> + </animation> + <animation direction="up"> + <sequence start="22" end="27" delay="300"/> + </animation> + </action> + <action name="dead" imageset="base"> + <animation> + <sequence start="44" end="55" delay="200"/> + <frame index="55" delay="5000"/> + </animation> + </action> + <action name="attack" imageset="base"> + <animation direction="down"> + <sequence start="28" end="31" delay="100"/> + <end/> + </animation> + <animation direction="right"> + <sequence start="32" end="35" delay="100"/> + <end/> + </animation> + <animation direction="left"> + <sequence start="36" end="39" delay="100"/> + <end/> + </animation> + <animation direction="up"> + <sequence start="40" end="43" delay="100"/> + <end/> + </animation> + </action> +</sprite> |