diff options
author | Reid <reidyaro@gmail.com> | 2015-03-05 23:30:27 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-03-05 23:30:27 +0100 |
commit | 3bbd5877975e7aa6fd882ebb33bd8425149cbd3b (patch) | |
tree | b16afee51846aa6b42db9e61cfea9a925e84251b | |
parent | c5521e21e75b4ad1d71feed5e12fddc0877bf18c (diff) | |
download | clientdata-3bbd5877975e7aa6fd882ebb33bd8425149cbd3b.tar.gz clientdata-3bbd5877975e7aa6fd882ebb33bd8425149cbd3b.tar.bz2 clientdata-3bbd5877975e7aa6fd882ebb33bd8425149cbd3b.tar.xz clientdata-3bbd5877975e7aa6fd882ebb33bd8425149cbd3b.zip |
Add flask animation, NPC #422.
-rw-r--r-- | LICENSE | 1 | ||||
-rw-r--r-- | graphics/sprites/npcs/sprite/flask.png | bin | 0 -> 19644 bytes | |||
-rw-r--r-- | graphics/sprites/npcs/xml/flask.xml | 29 | ||||
-rw-r--r-- | npcs.xml | 5 |
4 files changed, 35 insertions, 0 deletions
@@ -233,6 +233,7 @@ https://www.gitorious.org/evol/clientdata-beta/blobs/master/LICENSE graphics/sprites/npcs/sprite/chest-big.png (Hal9000) (CC BY-SA 3.0) (-) graphics/sprites/npcs/sprite/cookiemaster.png (Hal9000, Reid) (CC BY-SA 3.0) (Alige) graphics/sprites/npcs/sprite/elmo.png (Reid) (CC BY-SA 3.0) (Modanung, Talaroc) + graphics/sprites/npcs/sprite/flask.png (Hal9000) (CC BY-SA 3.0) (Reid) graphics/sprites/npcs/sprite/gugli.png (Reid) (CC BY-SA 3.0) (Modanung, Talaroc) graphics/sprites/npcs/sprite/harbour.png (EJlol, Reid) (CC BY-SA 3.0) (-) graphics/sprites/npcs/sprite/hammock.png (IvanMorve) (CC BY-SA 3.0) (Reid) diff --git a/graphics/sprites/npcs/sprite/flask.png b/graphics/sprites/npcs/sprite/flask.png Binary files differnew file mode 100644 index 00000000..fd11929d --- /dev/null +++ b/graphics/sprites/npcs/sprite/flask.png diff --git a/graphics/sprites/npcs/xml/flask.xml b/graphics/sprites/npcs/xml/flask.xml new file mode 100644 index 00000000..dde873fa --- /dev/null +++ b/graphics/sprites/npcs/xml/flask.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Author: Reid +Copyright (C) 2015 Evol Online --> +<sprite> + <imageset name="npc" + src="graphics/sprites/npcs/sprite/flask.png" + width="64" + height="64"/> + + <action name="stand" imageset="npc"> + <!-- Flask animation --> + <animation direction="default"> + <sequence start="1" end="3" delay="140" repeat="3"/> + <sequence start="4" end="6" delay="100" repeat="3"/> + <sequence start="7" end="21" delay="10"/> + <sequence start="22" end="36" delay="90" repeat="3"/> + <frame index="36" delay="200"/> + <frame index="35" delay="90"/> + <frame index="21" delay="90"/> + <frame index="20" delay="90"/> + <frame index="1" delay="90"/> + + </animation> + <!-- Static Flask --> + <animation direction="up"> + <frame index="0"/> + </animation> + </action> +</sprite> @@ -231,6 +231,11 @@ IDs 990-999 = Special <sprite>accessories/harbour-rope.xml</sprite> <menu name="Rotate" command="wheel"/> </npc> + <npc id="422" targetCursor="large"> + <!-- Green flask, chimestry experience. --> + <sprite>npcs/xml/flask.xml</sprite> + <menu name="Launch" command="launch"/> + </npc> <npc id="800"> <!-- Test npc. --> |