diff options
author | Reid <reidyaro@gmail.com> | 2012-09-20 00:20:22 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-09-20 00:20:22 +0200 |
commit | 243be903f7ac7695cb9f20ba71a2a7dee5b99756 (patch) | |
tree | b8d0d98ec111b0692756f4f97dfe855af740d782 | |
parent | 08691026d7c152869f05d382223e046578b9cbc9 (diff) | |
download | clientdata-243be903f7ac7695cb9f20ba71a2a7dee5b99756.tar.gz clientdata-243be903f7ac7695cb9f20ba71a2a7dee5b99756.tar.bz2 clientdata-243be903f7ac7695cb9f20ba71a2a7dee5b99756.tar.xz clientdata-243be903f7ac7695cb9f20ba71a2a7dee5b99756.zip |
Rename plushroompatch to plushroom field,
Added plushroom field on monsters.xml,
Added plushroom field XML.
-rw-r--r-- | graphics/sprites/monsters/plushroom.png (renamed from graphics/sprites/monsters/plushroompatch.png) | bin | 4459 -> 4459 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/plushroom.xml | 41 | ||||
-rw-r--r-- | monsters.xml | 5 |
3 files changed, 46 insertions, 0 deletions
diff --git a/graphics/sprites/monsters/plushroompatch.png b/graphics/sprites/monsters/plushroom.png Binary files differindex aa7d4ed3..aa7d4ed3 100644 --- a/graphics/sprites/monsters/plushroompatch.png +++ b/graphics/sprites/monsters/plushroom.png diff --git a/graphics/sprites/monsters/plushroom.xml b/graphics/sprites/monsters/plushroom.xml new file mode 100644 index 00000000..21e317d7 --- /dev/null +++ b/graphics/sprites/monsters/plushroom.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Author: Reid +Copyright (C) 2012 Evol Online --> + +<sprite> + <imageset name="mob" + src="graphics/sprites/monsters/plushroom.png" + width="64" + height="64" + offsetY="19"/> + + <action name="spawn" imageset="mob"> + + <animation direction="default"> + <!-- Spawn Animation --> + <sequence start="0" end="4" delay="120"/> + <sequence start="5" end="6" delay="100"/> + <jump action="stand"/> + </animation> + + </action> + + <action name="stand" imageset="mob"> + + <animation direction="default"> + <!-- Spawn Animation --> + <frame index="7"/> + </animation> + + </action> + + <action name="dead" imageset="mob"> + + <animation> + <!-- Dying main plushroom. --> + <frame index="0"/> + <!-- Other plushrooms are also dying. --> + </animation> + + </action> +</sprite> diff --git a/monsters.xml b/monsters.xml index 8f8d97a6..6d4a71e5 100644 --- a/monsters.xml +++ b/monsters.xml @@ -96,4 +96,9 @@ Example: <sound event="hurt">monsters/croconut/hurt2.ogg</sound> <sound event="hurt">monsters/croconut/hurt3.ogg</sound> </monster> + <monster id="9" name="Plushroom Field" targetCursor="large"> + <sprite>monsters/plushroom.xml</sprite> + <sound event="spawn">monsters/plushroom/spawn1.ogg</sound> + <sound event="die">monsters/plushroom/die1.ogg</sound> + </monster> </monsters> |