diff options
author | Bernhardt <orgzfrgh@gmail.com> | 2014-04-11 21:57:59 +0200 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2014-04-15 20:33:22 -0500 |
commit | ced8f58490d6ebc462aeb2ab11059f5e983e093f (patch) | |
tree | dffdc1721b10533579d5c452917eef0ef40efd95 /tilesets | |
parent | a69bdd775f290e27ee2181735f02d3c974808221 (diff) | |
download | clientdata-ced8f58490d6ebc462aeb2ab11059f5e983e093f.tar.gz clientdata-ced8f58490d6ebc462aeb2ab11059f5e983e093f.tar.bz2 clientdata-ced8f58490d6ebc462aeb2ab11059f5e983e093f.tar.xz clientdata-ced8f58490d6ebc462aeb2ab11059f5e983e093f.zip |
Change all npcs to have a player sprite base
Replaced small NPCs with tiles wherever necessary
Diffstat (limited to 'tilesets')
-rw-r--r-- | tilesets/evil-obelisk.tsx | 43 | ||||
-rw-r--r-- | tilesets/woodenpump.tsx | 40 |
2 files changed, 83 insertions, 0 deletions
diff --git a/tilesets/evil-obelisk.tsx b/tilesets/evil-obelisk.tsx new file mode 100644 index 00000000..1da1da22 --- /dev/null +++ b/tilesets/evil-obelisk.tsx @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<tileset name="evil-obelisk" tilewidth="64" tileheight="128"> + <image source="../graphics/tiles/evil-obelisk.png" width="448" height="128"/> + <tile id="0"> + <animation> + <frame tileid="1" duration="25"/> + <frame tileid="2" duration="25"/> + <frame tileid="3" duration="25"/> + <frame tileid="4" duration="25"/> + <frame tileid="5" duration="25"/> + <frame tileid="6" duration="25"/> + <frame tileid="5" duration="25"/> + <frame tileid="4" duration="25"/> + <frame tileid="3" duration="25"/> + <frame tileid="2" duration="25"/> + <frame tileid="1" duration="25"/> + </animation> + <properties> + <property name="animation-delay0" value="25"/> + <property name="animation-delay1" value="25"/> + <property name="animation-delay2" value="25"/> + <property name="animation-delay3" value="25"/> + <property name="animation-delay4" value="25"/> + <property name="animation-delay5" value="25"/> + <property name="animation-delay6" value="25"/> + <property name="animation-delay7" value="25"/> + <property name="animation-delay8" value="25"/> + <property name="animation-delay9" value="25"/> + <property name="animation-delay10" value="25"/> + <property name="animation-frame0" value="1"/> + <property name="animation-frame1" value="2"/> + <property name="animation-frame2" value="3"/> + <property name="animation-frame3" value="4"/> + <property name="animation-frame4" value="5"/> + <property name="animation-frame5" value="6"/> + <property name="animation-frame6" value="5"/> + <property name="animation-frame7" value="4"/> + <property name="animation-frame8" value="3"/> + <property name="animation-frame9" value="2"/> + <property name="animation-frame10" value="1"/> + </properties> + </tile> +</tileset> diff --git a/tilesets/woodenpump.tsx b/tilesets/woodenpump.tsx new file mode 100644 index 00000000..21af9355 --- /dev/null +++ b/tilesets/woodenpump.tsx @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> +<tileset name="woodenpump" tilewidth="32" tileheight="96"> + <image source="../graphics/tiles/woodenpump.png" width="352" height="96"/> + <tile id="0"> + <animation> + <frame tileid="1" duration="130"/> + <frame tileid="2" duration="130"/> + <frame tileid="3" duration="130"/> + <frame tileid="4" duration="130"/> + <frame tileid="5" duration="130"/> + <frame tileid="6" duration="130"/> + <frame tileid="7" duration="130"/> + <frame tileid="8" duration="130"/> + <frame tileid="9" duration="130"/> + <frame tileid="10" duration="130"/> + </animation> + <properties> + <property name="animation-delay0" value="13"/> + <property name="animation-delay1" value="20"/> + <property name="animation-delay2" value="13"/> + <property name="animation-delay3" value="13"/> + <property name="animation-delay4" value="13"/> + <property name="animation-delay5" value="13"/> + <property name="animation-delay6" value="13"/> + <property name="animation-delay7" value="13"/> + <property name="animation-delay8" value="13"/> + <property name="animation-delay9" value="13"/> + <property name="animation-frame0" value="1"/> + <property name="animation-frame1" value="2"/> + <property name="animation-frame2" value="3"/> + <property name="animation-frame3" value="4"/> + <property name="animation-frame4" value="5"/> + <property name="animation-frame5" value="6"/> + <property name="animation-frame6" value="7"/> + <property name="animation-frame7" value="8"/> + <property name="animation-frame8" value="9"/> + <property name="animation-frame9" value="10"/> + </properties> + </tile> +</tileset> |