diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-10 10:16:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-10 10:16:24 -0300 |
commit | 93c6a390b62d332dbec64da60b5d8b0844ece0c0 (patch) | |
tree | ce77c327626ac73713f0469112fb1167f03be471 | |
parent | 958f665c0235941f1be3efc26f9a1cc725306de0 (diff) | |
download | clientdata-93c6a390b62d332dbec64da60b5d8b0844ece0c0.tar.gz clientdata-93c6a390b62d332dbec64da60b5d8b0844ece0c0.tar.bz2 clientdata-93c6a390b62d332dbec64da60b5d8b0844ece0c0.tar.xz clientdata-93c6a390b62d332dbec64da60b5d8b0844ece0c0.zip |
Add missiles to the bolt skills. Much better :>
-rw-r--r-- | graphics/particles/misc.coldbolt.xml | 19 | ||||
-rw-r--r-- | graphics/particles/misc.earthbolt.xml | 19 | ||||
-rw-r--r-- | graphics/particles/misc.thunderbolt.xml | 19 | ||||
-rw-r--r-- | skills.xml | 3 |
4 files changed, 60 insertions, 0 deletions
diff --git a/graphics/particles/misc.coldbolt.xml b/graphics/particles/misc.coldbolt.xml new file mode 100644 index 00000000..1d15e49b --- /dev/null +++ b/graphics/particles/misc.coldbolt.xml @@ -0,0 +1,19 @@ +<?xml version="1.0"?> +<!-- + Firebolt + Code file by Source of Tales, modified by Jesusalva + (C) 2019, Moubootaur Legends +--> +<effect> + <particle + position-x="-32" + position-y="32" + position-z="0" + lifetime="75"> + <animation imageset="graphics/particles/misc.png|W:#009eff,#00ffff" + width="42" + height="50"> + <sequence start="18" end="23" delay="125" /> + </animation> + </particle> +</effect> diff --git a/graphics/particles/misc.earthbolt.xml b/graphics/particles/misc.earthbolt.xml new file mode 100644 index 00000000..b295d19d --- /dev/null +++ b/graphics/particles/misc.earthbolt.xml @@ -0,0 +1,19 @@ +<?xml version="1.0"?> +<!-- + Firebolt + Code file by Source of Tales, modified by Jesusalva + (C) 2019, Moubootaur Legends +--> +<effect> + <particle + position-x="-32" + position-y="32" + position-z="0" + lifetime="75"> + <animation imageset="graphics/particles/misc.png|W:#ddffcc,#ffffee" + width="42" + height="50"> + <sequence start="18" end="23" delay="125" /> + </animation> + </particle> +</effect> diff --git a/graphics/particles/misc.thunderbolt.xml b/graphics/particles/misc.thunderbolt.xml new file mode 100644 index 00000000..72954f5b --- /dev/null +++ b/graphics/particles/misc.thunderbolt.xml @@ -0,0 +1,19 @@ +<?xml version="1.0"?> +<!-- + Firebolt + Code file by Source of Tales, modified by Jesusalva + (C) 2019, Moubootaur Legends +--> +<effect> + <particle + position-x="-32" + position-y="32" + position-z="0" + lifetime="75"> + <animation imageset="graphics/particles/misc.png|W:#44ff00,#66ff00" + width="42" + height="50"> + <sequence start="18" end="23" delay="125" /> + </animation> + </particle> +</effect> @@ -322,6 +322,7 @@ Copyright (C) 2018 TMW2 --> name="Cold Bolt" icon="graphics/skills/wizard/coldbolt.png" description="Standard Ice Attack." + castingMissile-particle="graphics/particles/misc.coldbolt.xml" castingSrcEffectId="23" dstEffectId="702" /> @@ -339,6 +340,7 @@ Copyright (C) 2018 TMW2 --> name="Thunder Bolt" icon="graphics/skills/wizard/thunderbolt.png" description="Standard Wind Attack." + castingMissile-particle="graphics/particles/misc.thunderbolt.xml" castingSrcEffectId="23" dstEffectId="702" /> @@ -347,6 +349,7 @@ Copyright (C) 2018 TMW2 --> name="Earth Spike" icon="graphics/skills/wizard/earthspike.png" description="Standard Earth Attack." + castingMissile-particle="graphics/particles/misc.earthbolt.xml" castingSrcEffectId="23" dstEffectId="702" /> |