diff options
author | Jarrett Thomas-Huxley <fotherjarrett@gmail.com> | 2010-05-14 01:28:00 -0400 |
---|---|---|
committer | Jarrett Thomas-Huxley <fotherjarrett@gmail.com> | 2010-05-14 01:28:00 -0400 |
commit | 2d315af37d3ef4ecd1b8c2594176be801c5ac060 (patch) | |
tree | 1f2946cd778a132b9935b2c431f0a67b3213f604 /graphics/sprites/monsters/monster-spider.xml | |
parent | fcadf1cf8e29d430334b419e4d87b7b47b34aa84 (diff) | |
download | clientdata-2d315af37d3ef4ecd1b8c2594176be801c5ac060.tar.gz clientdata-2d315af37d3ef4ecd1b8c2594176be801c5ac060.tar.bz2 clientdata-2d315af37d3ef4ecd1b8c2594176be801c5ac060.tar.xz clientdata-2d315af37d3ef4ecd1b8c2594176be801c5ac060.zip |
Fix lighting on slime monster sprite and reduce sheet.
Replace spider monster sprite.
Diffstat (limited to 'graphics/sprites/monsters/monster-spider.xml')
-rw-r--r-- | graphics/sprites/monsters/monster-spider.xml | 40 |
1 files changed, 22 insertions, 18 deletions
diff --git a/graphics/sprites/monsters/monster-spider.xml b/graphics/sprites/monsters/monster-spider.xml index 55505e78..4fc336d5 100644 --- a/graphics/sprites/monsters/monster-spider.xml +++ b/graphics/sprites/monsters/monster-spider.xml @@ -1,70 +1,74 @@ <?xml version="1.0"?> <sprite> - <imageset name="base" src="graphics/sprites/monsters/monster-spider.png" width="24" height="30" /> + <imageset name="base" src="graphics/sprites/monsters/monster-spider.png|W;R" width="35" height="35" /> <action name="stand" imageset="base"> <animation direction="down"> - <frame index="0" offsetX ="0" offsetY ="2" /> + <frame index="0" delay="275"/> + <frame index="2" delay="275"/> </animation> <animation direction="left"> - <frame index="10" offsetX ="-1" offsetY ="-3" /> + <frame index="7" delay="275"/> + <frame index="9" delay="275"/> </animation> <animation direction="up"> - <frame index="20" offsetX ="0" offsetY ="3" /> + <frame index="14" delay="275"/> + <frame index="16" delay="275"/> </animation> <animation direction="right"> - <frame index="30" offsetX ="-1" offsetY ="-3" /> + <frame index="21" delay="275"/> + <frame index="23" delay="275"/> </animation> </action> <action name="walk" imageset="base"> <animation direction="down"> - <sequence start="1" end="4" delay="75" offsetX ="0" offsetY ="2" /> + <sequence start="0" end="3" delay="75"/> </animation> <animation direction="left"> - <sequence start="11" end="14" delay="75" offsetX ="-1" offsetY ="-3" /> + <sequence start="7" end="10" delay="75"/> </animation> <animation direction="up"> - <sequence start="21" end="24" delay="75" offsetX ="0" offsetY ="3" /> + <sequence start="14" end="17" delay="75"/> </animation> <animation direction="right"> - <sequence start="31" end="34" delay="75" offsetX ="-1" offsetY ="-3" /> + <sequence start="21" end="24" delay="75"/> </animation> </action> <action name="dead" imageset="base"> <animation direction="down"> - <frame index="9" offsetX ="0" offsetY ="2" /> + <frame index="6"/> </animation> <animation direction="left"> - <frame index="19" offsetX ="-1" offsetY ="-3" /> + <frame index="13"/> </animation> <animation direction="up"> - <frame index="29" offsetX ="0" offsetY ="3" /> + <frame index="20"/> </animation> <animation direction="right"> - <frame index="39" offsetX ="-1" offsetY ="-3" /> + <frame index="27"/> </animation> </action> <action name="attack" imageset="base"> <animation direction="down"> - <sequence start="5" end="8" delay="75" offsetX ="0" offsetY ="2" /> + <sequence start="4" end="5" delay="75"/> <end /> </animation> <animation direction="left"> - <sequence start="15" end="18" delay="75" offsetX ="-1" offsetY ="-3" /> + <sequence start="11" end="12" delay="75"/> <end /> </animation> <animation direction="up"> - <sequence start="25" end="28" delay="75" offsetX ="0" offsetY ="3" /> + <sequence start="18" end="19" delay="75"/> <end /> </animation> <animation direction="right"> - <sequence start="35" end="38" delay="75" offsetX ="-1" offsetY ="-3" /> + <sequence start="25" end="26" delay="75"/> <end /> </animation> </action> -</sprite>
\ No newline at end of file +</sprite> |