diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-19 08:53:22 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-19 08:53:22 -0300 |
commit | a7e39570dbd4aec8b6fe113cefd4a0d3d107614a (patch) | |
tree | b60160014e89237198f3310217adbe0b2b815a75 | |
parent | 75c61873d8fb16b7edf46c64acb9bcfab7839afc (diff) | |
download | clientdata-a7e39570dbd4aec8b6fe113cefd4a0d3d107614a.tar.gz clientdata-a7e39570dbd4aec8b6fe113cefd4a0d3d107614a.tar.bz2 clientdata-a7e39570dbd4aec8b6fe113cefd4a0d3d107614a.tar.xz clientdata-a7e39570dbd4aec8b6fe113cefd4a0d3d107614a.zip |
New monster: 1038 Moubi
Rare Drop: Heart Necklace
-rw-r--r-- | LICENSE | 1 | ||||
-rw-r--r-- | graphics/sprites/monsters/moubi.png | bin | 0 -> 50892 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/moubi.xml | 68 | ||||
-rw-r--r-- | monsters.xml | 4 |
4 files changed, 71 insertions, 2 deletions
@@ -1713,6 +1713,7 @@ https://gitlab.com/TMW2/Docs/wikis/Contributors graphics/sprites/monsters/mimic.png (?, jesusalva) (GPLv2) (TMW-Br) graphics/sprites/monsters/moggun.png (Modanung, Pateame) (GPLv2) (-) graphics/sprites/monsters/moonshroom.png (Cassy, Yuuki) (GPLv2) (-) + graphics/sprites/monsters/moubi.png (Yuuki) (GPLv2) (Hocus, Reid, Jesusalva) graphics/sprites/monsters/mouboo.png (Yuuki) (GPLv2) (Reid) graphics/sprites/monsters/moubooslime.png (Saulc) (CC BY-SA 3.0) (-) graphics/sprites/monsters/murdererscorpion.png (Saulc) (CC BY-SA 3.0) (-) diff --git a/graphics/sprites/monsters/moubi.png b/graphics/sprites/monsters/moubi.png Binary files differnew file mode 100644 index 00000000..5873f24b --- /dev/null +++ b/graphics/sprites/monsters/moubi.png diff --git a/graphics/sprites/monsters/moubi.xml b/graphics/sprites/monsters/moubi.xml new file mode 100644 index 00000000..9a051d20 --- /dev/null +++ b/graphics/sprites/monsters/moubi.xml @@ -0,0 +1,68 @@ +<?xml version="1.0"?> +<!-- Authors: Micksha, Reid, Yuuki +Copyright (C) 2016-2020 Evol Online --> + +<sprite> + <imageset name="mob" + src="graphics/sprites/monsters/moubi.png" + width="80" + height="80"/> + + <action name="stand" imageset="mob"> + <animation direction="down"> + <frame index="0"/> + </animation> + <animation direction="left"> + <frame index="15"/> + </animation> + <animation direction="up"> + <frame index="30"/> + </animation> + <animation direction="right"> + <frame index="45"/> + </animation> + </action> + + <action name="walk" imageset="mob"> + <animation direction="down"> + <sequence start="1" end="6" delay="75"/> + </animation> + <animation direction="left"> + <sequence start="16" end="21" delay="75"/> + </animation> + <animation direction="up"> + <sequence start="31" end="36" delay="75"/> + </animation> + <animation direction="right"> + <sequence start="46" end="51" delay="75"/> + </animation> + </action> + + <action name="attack" imageset="mob"> + <animation direction="down"> + <sequence start="7" end="13" delay="75"/> + <end/> + </animation> + <animation direction="left"> + <sequence start="22" end="28" delay="75"/> + <end/> + </animation> + <animation direction="up"> + <sequence start="37" end="43" delay="75"/> + <end/> + </animation> + <animation direction="right"> + <sequence start="52" end="58" delay="75"/> + <end/> + </animation> + </action> + + <action name="dead" imageset="mob"> + <animation> + <frame index="14" delay="150"/> + <frame index="29" delay="150"/> + <frame index="44" delay="150"/> + <frame index="59" delay="5150"/> + </animation> + </action> +</sprite> diff --git a/monsters.xml b/monsters.xml index f2e85717..6390a249 100644 --- a/monsters.xml +++ b/monsters.xml @@ -252,8 +252,8 @@ event="" Links the sfx to an action, like die, hit, hurt, miss, move or s <sound event="hurt">monsters/wolf/hurt1.ogg</sound> <sound event="miss">monsters/wolf/miss.ogg</sound> </monster> - <monster id="1038" name="Zombie" targetCursor="medium"> - <sprite>monsters/zombie.xml</sprite> + <monster id="1038" name="Moubi" targetCursor="medium"> + <sprite>monsters/moubi.xml</sprite> </monster> <monster id="1039" name="Bat" targetCursor="small" walkType="fly"> <sprite>monsters/bat.xml</sprite> |