diff options
Diffstat (limited to 'graphics/sprites/monsters')
-rw-r--r-- | graphics/sprites/monsters/chick.png | bin | 2210 -> 0 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/chick.xml | 81 | ||||
-rw-r--r-- | graphics/sprites/monsters/clover.png | bin | 0 -> 810 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/clover.xml | 16 | ||||
-rw-r--r-- | graphics/sprites/monsters/plant.png | bin | 0 -> 4532 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/plant.xml | 18 | ||||
-rw-r--r-- | graphics/sprites/monsters/pumpkin.png | bin | 0 -> 2052 bytes | |||
-rw-r--r-- | graphics/sprites/monsters/pumpkin.xml | 16 |
8 files changed, 50 insertions, 81 deletions
diff --git a/graphics/sprites/monsters/chick.png b/graphics/sprites/monsters/chick.png Binary files differdeleted file mode 100644 index 70832eb0..00000000 --- a/graphics/sprites/monsters/chick.png +++ /dev/null diff --git a/graphics/sprites/monsters/chick.xml b/graphics/sprites/monsters/chick.xml deleted file mode 100644 index da7099f0..00000000 --- a/graphics/sprites/monsters/chick.xml +++ /dev/null @@ -1,81 +0,0 @@ -<?xml version="1.0"?> -<sprite> - - <imageset name="base" src="graphics/sprites/monsters/chick.png" width="10" height="10"/> - - <action name="stand" imageset="base"> - <animation direction="down"> - <sequence start="20" end="24" delay="150" offsetY="-11"/> - </animation> - - <animation direction="left"> - <sequence start="25" end="29" delay="150" offsetY="-11"/> - </animation> - - <animation direction="up"> - <sequence start="30" end="24" delay="150" offsetY="-11"/> - </animation> - - <animation direction="right"> - <sequence start="35" end="24" delay="150" offsetY="-11"/> - </animation> - </action> - - <action name="walk" imageset="base"> - - <animation direction="down"> - <sequence start="0" end="3" delay="150" offsetY="-11"/> - </animation> - - <animation direction="left"> - <sequence start="10" end="13" delay="150" offsetY="-11"/> - </animation> - - <animation direction="up"> - <sequence start="15" end="18" delay="150" offsetY="-11"/> - </animation> - - <animation direction="right"> - <sequence start="5" end="8" delay="150" offsetY="-11"/> - </animation> - </action> - - <action name="dead" imageset="base"> - - <animation direction="right"> - <frame index="4" delay="0" offsetY="-11"/> - </animation> - - <animation direction="down"> - <frame index="14" delay="0" offsetY="-11"/> - </animation> - - <animation direction="left"> - <frame index="19" delay="0" offsetY="-11"/> - </animation> - - <animation direction="up"> - <frame index="6" delay="0" offsetY="-11"/> - </animation> - </action> - - <action name="attack" imageset="base"> - - <animation direction="down"> - <sequence start="0" end="2" delay="150" offsetY="-11"/> - </animation> - - <animation direction="left"> - <sequence start="10" end="12" delay="150" offsetY="-11"/> - </animation> - - <animation direction="up"> - <sequence start="15" end="17" delay="150" offsetY="-11"/> - </animation> - - <animation direction="right"> - <sequence start="5" end="7" delay="150" offsetY="-11"/> - </animation> - </action> - -</sprite> diff --git a/graphics/sprites/monsters/clover.png b/graphics/sprites/monsters/clover.png Binary files differnew file mode 100644 index 00000000..c2d3ee3d --- /dev/null +++ b/graphics/sprites/monsters/clover.png diff --git a/graphics/sprites/monsters/clover.xml b/graphics/sprites/monsters/clover.xml new file mode 100644 index 00000000..450c80a6 --- /dev/null +++ b/graphics/sprites/monsters/clover.xml @@ -0,0 +1,16 @@ +<?xml version="1.0"?> +<sprite> + <imageset name="base" src="graphics/sprites/monsters/clover.png" width="30" height="30" /> + + <action name="stand" imageset="base"> + <animation> + <frame index="0"/> + </animation> + </action> + + <action name="dead" imageset="base"> + <animation> + <frame index="1"/> + </animation> + </action> +</sprite> diff --git a/graphics/sprites/monsters/plant.png b/graphics/sprites/monsters/plant.png Binary files differnew file mode 100644 index 00000000..04bb0490 --- /dev/null +++ b/graphics/sprites/monsters/plant.png diff --git a/graphics/sprites/monsters/plant.xml b/graphics/sprites/monsters/plant.xml new file mode 100644 index 00000000..778f12f8 --- /dev/null +++ b/graphics/sprites/monsters/plant.xml @@ -0,0 +1,18 @@ +<?xml version="1.0"?> +<sprite> + + <imageset name="base" src="graphics/sprites/monsters/plant.png|W" width="46" height="42" /> + + <action name="stand" imageset="base"> + <animation> + <frame index="0"/> + </animation> + </action> + + <action name="dead" imageset="base"> + <animation> + <frame index="1"/> + </animation> + </action> + +</sprite> diff --git a/graphics/sprites/monsters/pumpkin.png b/graphics/sprites/monsters/pumpkin.png Binary files differnew file mode 100644 index 00000000..011b097b --- /dev/null +++ b/graphics/sprites/monsters/pumpkin.png diff --git a/graphics/sprites/monsters/pumpkin.xml b/graphics/sprites/monsters/pumpkin.xml new file mode 100644 index 00000000..544b6b95 --- /dev/null +++ b/graphics/sprites/monsters/pumpkin.xml @@ -0,0 +1,16 @@ +<?xml version="1.0"?> +<sprite> + <imageset name="base" src="graphics/sprites/monsters/pumpkin.png" width="50" height="50" /> + + <action name="stand" imageset="base"> + <animation> + <frame index="1"/> + </animation> + </action> + + <action name="dead" imageset="base"> + <animation> + <frame index="0"/> + </animation> + </action> +</sprite> |