diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-09 20:19:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-09 20:19:06 -0300 |
commit | 0f9c4ada9e649b8cb56f369af648e30f846ec491 (patch) | |
tree | 3f6c5a9cc0e362caa18a81ff5928a8d936edbd0c | |
parent | 64b6159a12bb43aa729a0aa0be2defefff2aa114 (diff) | |
download | clientdata-0f9c4ada9e649b8cb56f369af648e30f846ec491.tar.gz clientdata-0f9c4ada9e649b8cb56f369af648e30f846ec491.tar.bz2 clientdata-0f9c4ada9e649b8cb56f369af648e30f846ec491.tar.xz clientdata-0f9c4ada9e649b8cb56f369af648e30f846ec491.zip |
Prepare rowboat (I don't know if it'll work, but it is prepared)
-rw-r--r-- | LICENSE | 1 | ||||
-rw-r--r-- | graphics/sprites/npcs/sprite/rowboat.png | bin | 0 -> 152636 bytes | |||
-rw-r--r-- | graphics/sprites/npcs/xml/rowboat-cutscene.xml | 77 | ||||
-rw-r--r-- | horses.xml | 15 |
4 files changed, 93 insertions, 0 deletions
@@ -2151,6 +2151,7 @@ https://wiki.moubootaurlegends.org/Contributors graphics/sprites/npcs/sprite/piourocket.png (Reid) (CC BY-SA 3.0) (Fother_J) graphics/sprites/npcs/sprite/qonan.png (Reid) (CC BY-SA 3.0) (Modanung) graphics/sprites/npcs/sprite/rattosailor.png (Reid) (CC BY-SA 3.0) (Coolkid782, Modanung, Talaroc) + graphics/sprites/npcs/sprite/rowboat.png (Micksha) (MIT) (-) graphics/sprites/npcs/sprite/rumly.png (Reid) (CC BY-SA 3.0) (Crush, Modanung, Talaroc) graphics/sprites/npcs/sprite/sailors.png (Reid) (CC BY-SA 3.0) (Modanung, Talaroc) graphics/sprites/npcs/sprite/sapartan.png (Reid) (CC BY-SA 3.0) (Modanung) diff --git a/graphics/sprites/npcs/sprite/rowboat.png b/graphics/sprites/npcs/sprite/rowboat.png Binary files differnew file mode 100644 index 000000000..a2c04b942 --- /dev/null +++ b/graphics/sprites/npcs/sprite/rowboat.png diff --git a/graphics/sprites/npcs/xml/rowboat-cutscene.xml b/graphics/sprites/npcs/xml/rowboat-cutscene.xml new file mode 100644 index 000000000..195647d2b --- /dev/null +++ b/graphics/sprites/npcs/xml/rowboat-cutscene.xml @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Author: Micksha +Copyright (C) 2018 Evol Online --> + +<sprite> + <imageset name="npc" + src="graphics/sprites/npcs/sprite/rowboat.png" + width="192" + height="160" + offsetY="0" + offsetX="0"/> + + <action name="stand" imageset="npc"> + <animation direction="right"> + <frame index="6"/> + </animation> + <animation direction="left"> + <frame index="13"/> + </animation> + <animation direction="up"> + <frame index="6"/> + </animation> + <animation direction="down"> + <frame index="6"/> + </animation> + </action> + <!-- Rowing --> + <action name="walk" imageset="npc"> + <!-- Right --> + <animation direction="right"> + <sequence start="0" end="2" delay="175"/> + <sequence start="3" end="5" delay="150"/> + </animation> + <!-- Left --> + <animation direction="left"> + <sequence start="7" end="9" delay="175"/> + <sequence start="10" end="12" delay="150"/> + </animation> + <!-- Up --> + <animation direction="up"> + <!-- + <sequence start="14" end="16" delay="175"/> + <sequence start="17" end="19" delay="150"/> + --> + <sequence start="0" end="2" delay="175"/> + <sequence start="3" end="5" delay="150"/> + </animation> + <!-- Down --> + <animation direction="down"> + <!-- + <sequence start="21" end="23" delay="175"/> + <sequence start="24" end="26" delay="150"/> + --> + <sequence start="0" end="2" delay="175"/> + <sequence start="3" end="5" delay="150"/> + </animation> + </action> + <action name="dead" imageset="npc"> + <!-- Dead --> + <animation direction="right"> + <sequence start="28" end="29" delay="250" repeat="100"/> + <frame index="29" delay="10000"/> + </animation> + <animation direction="left"> + <sequence start="28" end="29" delay="250" repeat="100"/> + <frame index="29" delay="10000"/> + </animation> + <animation direction="up"> + <sequence start="28" end="29" delay="250" repeat="100"/> + <frame index="29" delay="10000"/> + </animation> + <animation direction="down"> + <sequence start="28" end="29" delay="250" repeat="100"/> + <frame index="29" delay="10000"/> + </animation> + </action> +</sprite> diff --git a/horses.xml b/horses.xml index 077c13bd9..ede05917e 100644 --- a/horses.xml +++ b/horses.xml @@ -21,4 +21,19 @@ Copyright (C) 2019 Moubootaur Legends --> <sprite>monsters/tortuga.xml</sprite> </down> </horse> + <horse id="3"> + <up> + </up> + <down> + <offset direction="left" horseOffsetX="-44" horseOffsetY="64" /> + <offset direction="right" horseOffsetX="46" horseOffsetY="64" /> + <offset direction="up" horseOffsetY="35" /> + <offset direction="upleft" horseOffsetY="35" /> + <offset direction="upright" horseOffsetY="35" /> + <offset direction="down" horseOffsetY="106" /> + <offset direction="downleft" horseOffsetY="106" /> + <offset direction="downright" horseOffsetY="106" /> + <sprite>npcs/xml/rowboat-cutscene.xml</sprite> + </down> + </horse> </horses> |