diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2013-05-26 19:25:04 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2013-06-09 20:31:36 +0200 |
commit | 589076a54bac9228f8bc399cd5aa02bf6f1c7638 (patch) | |
tree | 0e74787087a7da6596033fb5788dc7d6a06e3122 | |
parent | d4508336f96153b3094d99643251f62a67b87fff (diff) | |
download | clientdata-589076a54bac9228f8bc399cd5aa02bf6f1c7638.tar.gz clientdata-589076a54bac9228f8bc399cd5aa02bf6f1c7638.tar.bz2 clientdata-589076a54bac9228f8bc399cd5aa02bf6f1c7638.tar.xz clientdata-589076a54bac9228f8bc399cd5aa02bf6f1c7638.zip |
Add bluepar sprite made by meway based on the pinkie.
TODO: add this also to license file.
-rw-r--r-- | graphics/sprites/monsters/bluepar.png | bin | 0 -> 7842 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/bluepar.xml | 64 | ||||
-rw-r--r-- | monsters.xml | 5 |
3 files changed, 69 insertions, 0 deletions
diff --git a/graphics/sprites/monsters/bluepar.png b/graphics/sprites/monsters/bluepar.png Binary files differnew file mode 100644 index 00000000..0318c5c6 --- /dev/null +++ b/graphics/sprites/monsters/bluepar.png diff --git a/graphics/sprites/monsters/bluepar.xml b/graphics/sprites/monsters/bluepar.xml new file mode 100644 index 00000000..a5a99067 --- /dev/null +++ b/graphics/sprites/monsters/bluepar.xml @@ -0,0 +1,64 @@ +<?xml version="1.0"?> +<sprite> + <imageset name="base" src="graphics/sprites/monsters/bluepar.png" width="50" height="42"/> + <action name="stand" imageset="base"> + <animation direction="down"> + <frame index="0" offsetY="-12"/> + </animation> + <animation direction="left"> + <frame index="10" offsetY="-12"/> + </animation> + <animation direction="up"> + <frame index="20" offsetY="-12"/> + </animation> + <animation direction="right"> + <frame index="30" offsetY="-12"/> + </animation> + </action> + <action name="walk" imageset="base"> + <animation direction="down"> + <sequence start="1" end="4" delay="75" offsetY="-12"/> + </animation> + <animation direction="left"> + <sequence start="11" end="14" delay="75" offsetY="-12"/> + </animation> + <animation direction="up"> + <sequence start="21" end="24" delay="75" offsetY="-12"/> + </animation> + <animation direction="right"> + <sequence start="31" end="34" delay="75" offsetY="-12"/> + </animation> + </action> + <action name="dead" imageset="base"> + <animation direction="down"> + <frame index="9" offsetY="-12"/> + </animation> + <animation direction="left"> + <frame index="19" offsetY="-12"/> + </animation> + <animation direction="up"> + <frame index="29" offsetY="-12"/> + </animation> + <animation direction="right"> + <frame index="39" offsetY="-12"/> + </animation> + </action> + <action name="attack" imageset="base"> + <animation direction="down"> + <sequence start="5" end="8" delay="75" offsetY="-12"/> + <end/> + </animation> + <animation direction="left"> + <sequence start="15" end="18" delay="75" offsetY="-12"/> + <end/> + </animation> + <animation direction="up"> + <sequence start="25" end="28" delay="75" offsetY="-12"/> + <end/> + </animation> + <animation direction="right"> + <sequence start="35" end="38" delay="75" offsetY="-12"/> + <end/> + </animation> + </action> +</sprite> diff --git a/monsters.xml b/monsters.xml index 1c0eb748..2a2201ee 100644 --- a/monsters.xml +++ b/monsters.xml @@ -500,4 +500,9 @@ <sprite>monsters/mushroom-red.xml</sprite> <sound event="hit">monsters/shroom/shroom-hit1.ogg</sound> </monster> + <monster id="105" name="Bluepar" targetCursor="small"> + <sprite>monsters/bluepar.xml</sprite> + <sound event="hit">monsters/pinkie/pinkie-hit1.ogg</sound> + <sound event="miss">monsters/pinkie/pinkie-miss1.ogg</sound> + </monster> </monsters> |