diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-10 13:22:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-10 13:22:00 -0300 |
commit | c251114ba254bb97a0a7a1a9698a08953dc006e5 (patch) | |
tree | bfd86c4fd38814d3afb98bf8f4e8ef601e6bf9ee | |
parent | 18a4b19e98d23ca48b78fd7295e0613d8f5a2261 (diff) | |
download | clientdata-c251114ba254bb97a0a7a1a9698a08953dc006e5.tar.gz clientdata-c251114ba254bb97a0a7a1a9698a08953dc006e5.tar.bz2 clientdata-c251114ba254bb97a0a7a1a9698a08953dc006e5.tar.xz clientdata-c251114ba254bb97a0a7a1a9698a08953dc006e5.zip |
Curse Status Effect can now be cast
-rw-r--r-- | LICENSE | 1 | ||||
-rw-r--r-- | graphics/sprites/icons/curse.png | bin | 0 -> 1545 bytes | |||
-rw-r--r-- | graphics/sprites/icons/curse.xml | 16 | ||||
-rw-r--r-- | status-effects.xml | 3 |
4 files changed, 20 insertions, 0 deletions
@@ -1450,6 +1450,7 @@ https://gitlab.com/TMW2/Docs/wikis/Contributors graphics/sprites/icons/blind.png (Fate, Jesusalva) (CC BY-SA 3.0) (-) graphics/sprites/icons/bpotionsprite.png (Saulc) (CC BY-SA 3.0) (?) graphics/sprites/icons/concentration.png (Enchilado) (CC BY-SA 3.0) (-) + graphics/sprites/icons/curse.png (FotherJ) (GPLv2) (TMW.org) graphics/sprites/icons/feather.png (?) (?) (TMW.org) graphics/sprites/icons/healing.png (Coolkid782) (CC BY-SA 3.0) (-) graphics/sprites/icons/hide.png (Fate) (CC BY-SA 3.0) (-) diff --git a/graphics/sprites/icons/curse.png b/graphics/sprites/icons/curse.png Binary files differnew file mode 100644 index 00000000..8a5b4d64 --- /dev/null +++ b/graphics/sprites/icons/curse.png diff --git a/graphics/sprites/icons/curse.xml b/graphics/sprites/icons/curse.xml new file mode 100644 index 00000000..4e1be463 --- /dev/null +++ b/graphics/sprites/icons/curse.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Author: Jesusalva +Copyright (C) 2019 Moubootaur Legends --> + +<sprite> + <imageset name="icon" + src="graphics/sprites/icons/curse.png" + width="30" + height="36"/> + + <action name="default" imageset="icon"> + <animation direction="default"> + <sequence start="0" end="2" delay="100"/> + </animation> + </action> +</sprite> diff --git a/status-effects.xml b/status-effects.xml index 4ffd8978..8a27bfbe 100644 --- a/status-effects.xml +++ b/status-effects.xml @@ -531,6 +531,9 @@ end-message: Displays a message when the effect end. <status-effect name="curse" opt2="2" + icon="icons/curse.xml" + persistent-particle-effect="true" + start-particle="graphics/sprites/icons/curse.xml" /> <!-- OPT2_SILENCE --> <status-effect |