summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-12-26 10:19:46 -0300
committerJesusaves <cpntb1@ymail.com>2021-12-26 10:19:46 -0300
commitffbeab001f8cd80ae65567b7cac90ed2af92fb9a (patch)
treea312de91c367eb006473fb9dc801e3abebd06292 /graphics
parent955ad11e7da3c3e604537ef55b719acec3ed29a3 (diff)
downloadclientdata-ffbeab001f8cd80ae65567b7cac90ed2af92fb9a.tar.gz
clientdata-ffbeab001f8cd80ae65567b7cac90ed2af92fb9a.tar.bz2
clientdata-ffbeab001f8cd80ae65567b7cac90ed2af92fb9a.tar.xz
clientdata-ffbeab001f8cd80ae65567b7cac90ed2af92fb9a.zip
Add the two sparks required for Kage's game.
Changed from Blue/Red to Magenta/Yellow - Color-blind compliant :>
Diffstat (limited to 'graphics')
-rw-r--r--graphics/particles/electricity.particle.pngbin0 -> 522 bytes
-rw-r--r--graphics/particles/monster-ball-lightning-blue.particle.xml19
-rw-r--r--graphics/particles/monster-ball-lightning-red.particle.xml19
-rw-r--r--graphics/sprites/monsters/accessories/ball-lightning-shadow.xml15
-rw-r--r--graphics/sprites/monsters/accessories/empty-frame.pngbin0 -> 83 bytes
5 files changed, 53 insertions, 0 deletions
diff --git a/graphics/particles/electricity.particle.png b/graphics/particles/electricity.particle.png
new file mode 100644
index 00000000..8b3313fe
--- /dev/null
+++ b/graphics/particles/electricity.particle.png
Binary files differ
diff --git a/graphics/particles/monster-ball-lightning-blue.particle.xml b/graphics/particles/monster-ball-lightning-blue.particle.xml
new file mode 100644
index 00000000..564928be
--- /dev/null
+++ b/graphics/particles/monster-ball-lightning-blue.particle.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0"?>
+<effect>
+ <particle position-x="0" position-y="0" position-z="10">
+ <emitter>
+ <property name="position-z" min="16" max="48"/>
+ <animation imageset="graphics/particles/electricity.particle.png|W:#FF00FF" width="15" height="15">
+ <sequence start="0" end="7" delay="20"/>
+ </animation>
+ <property name="horizontal-angle" min="0" max="360"/>
+ <property name="gravity" value="0.1"/>
+ <property name="randomness" value="125"/>
+ <property name="lifetime" value="75"/>
+ <property name="fade-in" value="5"/>
+ <property name="fade-out" value="20"/>
+ <property name="alpha" value="0.6"/>
+ <property name="output" value="1"/>
+ </emitter>
+ </particle>
+</effect>
diff --git a/graphics/particles/monster-ball-lightning-red.particle.xml b/graphics/particles/monster-ball-lightning-red.particle.xml
new file mode 100644
index 00000000..aedb0391
--- /dev/null
+++ b/graphics/particles/monster-ball-lightning-red.particle.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0"?>
+<effect>
+ <particle position-x="0" position-y="0" position-z="10">
+ <emitter>
+ <property name="position-z" min="16" max="48"/>
+ <animation imageset="graphics/particles/electricity.particle.png|W:#FFFF00" width="15" height="15">
+ <sequence start="0" end="7" delay="20"/>
+ </animation>
+ <property name="horizontal-angle" min="0" max="360"/>
+ <property name="gravity" value="0.1"/>
+ <property name="randomness" value="125"/>
+ <property name="lifetime" value="75"/>
+ <property name="fade-in" value="5"/>
+ <property name="fade-out" value="20"/>
+ <property name="alpha" value="0.6"/>
+ <property name="output" value="1"/>
+ </emitter>
+ </particle>
+</effect>
diff --git a/graphics/sprites/monsters/accessories/ball-lightning-shadow.xml b/graphics/sprites/monsters/accessories/ball-lightning-shadow.xml
new file mode 100644
index 00000000..0d811374
--- /dev/null
+++ b/graphics/sprites/monsters/accessories/ball-lightning-shadow.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0"?>
+<sprite>
+ <imageset name="base" src="graphics/sprites/monsters/accessories/generic-shadow-small-circle.png" width="16" height="11"/>
+ <imageset name="empty" src="graphics/sprites/monsters/accessories/empty-frame.png" width="1" height="1"/>
+ <action name="stand" imageset="base">
+ <animation>
+ <frame index="0" offsetY="5"/>
+ </animation>
+ </action>
+ <action name="dead" imageset="empty">
+ <animation>
+ <frame index="0"/>
+ </animation>
+ </action>
+</sprite>
diff --git a/graphics/sprites/monsters/accessories/empty-frame.png b/graphics/sprites/monsters/accessories/empty-frame.png
new file mode 100644
index 00000000..dabd9f21
--- /dev/null
+++ b/graphics/sprites/monsters/accessories/empty-frame.png
Binary files differ