diff options
author | Wombat <hpwombat@yahoo.com> | 2010-10-31 14:18:56 -0400 |
---|---|---|
committer | Wombat <hpwombat@yahoo.com> | 2010-10-31 14:18:56 -0400 |
commit | 8612f6a1b39e41df9badea138db0ce3a13d8eed5 (patch) | |
tree | ce358bbbdc500e59db440c566e7c03db1da2a941 /graphics/particles | |
parent | 560cb4c49d42ccdb0f8509efbecc37a4efef921d (diff) | |
download | clientdata-8612f6a1b39e41df9badea138db0ce3a13d8eed5.tar.gz clientdata-8612f6a1b39e41df9badea138db0ce3a13d8eed5.tar.bz2 clientdata-8612f6a1b39e41df9badea138db0ce3a13d8eed5.tar.xz clientdata-8612f6a1b39e41df9badea138db0ce3a13d8eed5.zip |
Reaper and related monsters added
particles, monster xml and pngs added related to reaper
Diffstat (limited to 'graphics/particles')
-rwxr-xr-x | graphics/particles/mist-face-a.png | bin | 0 -> 3635 bytes | |||
-rwxr-xr-x | graphics/particles/mist-face-b.png | bin | 0 -> 3886 bytes | |||
-rwxr-xr-x | graphics/particles/monster-ball-lightning.particle.png | bin | 0 -> 542 bytes | |||
-rwxr-xr-x | graphics/particles/monster-ball-lightning.particle.xml | 33 | ||||
-rwxr-xr-x | graphics/particles/monster-reaper.particle.xml | 42 |
5 files changed, 75 insertions, 0 deletions
diff --git a/graphics/particles/mist-face-a.png b/graphics/particles/mist-face-a.png Binary files differnew file mode 100755 index 00000000..d0674db2 --- /dev/null +++ b/graphics/particles/mist-face-a.png diff --git a/graphics/particles/mist-face-b.png b/graphics/particles/mist-face-b.png Binary files differnew file mode 100755 index 00000000..9ab270c9 --- /dev/null +++ b/graphics/particles/mist-face-b.png diff --git a/graphics/particles/monster-ball-lightning.particle.png b/graphics/particles/monster-ball-lightning.particle.png Binary files differnew file mode 100755 index 00000000..06a7f733 --- /dev/null +++ b/graphics/particles/monster-ball-lightning.particle.png diff --git a/graphics/particles/monster-ball-lightning.particle.xml b/graphics/particles/monster-ball-lightning.particle.xml new file mode 100755 index 00000000..6bf8c6c1 --- /dev/null +++ b/graphics/particles/monster-ball-lightning.particle.xml @@ -0,0 +1,33 @@ +<?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/monster-ball-lightning.particle.png" 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="randomnes" 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-reaper.particle.xml b/graphics/particles/monster-reaper.particle.xml new file mode 100755 index 00000000..ed00b360 --- /dev/null +++ b/graphics/particles/monster-reaper.particle.xml @@ -0,0 +1,42 @@ +<?xml version="1.0"?>
+<!--
+Orange-ish particles that fly up to the sky; based on Crush's Soul Menhir effect.
+-->
+<effect>
+ <particle
+ position-x = "0"
+ position-y = "0"
+ position-z = "0"
+ >
+ <emitter>
+ <property name="position-x" min="-24" max ="24"/>
+ <property name="position-z" min="2" max ="32"/>
+ <property name="gravity" value="-0.01"/>
+ <property name="lifetime" value="180"/>
+ <property name="fade-out" value="40"/>
+ <property name="output" value="1"/>
+ <property name="output-pause" min="11" max="61"/>
+ <property name="follow-parent" />
+
+ <animation imageset="graphics/particles/mist-face-a.png|W:#855385" width="30" height="30">
+ <sequence start="0" end="2" delay="300"/>
+ <frame index="3" />
+ </animation>
+ </emitter>
+ <emitter>
+ <property name="position-x" min="-24" max ="24"/>
+ <property name="position-z" min="2" max ="32"/>
+ <property name="gravity" value="-0.01"/>
+ <property name="lifetime" value="180"/>
+ <property name="fade-out" value="40"/>
+ <property name="output" value="1"/>
+ <property name="output-pause" min="17" max="67"/>
+ <property name="follow-parent" />
+
+ <animation imageset="graphics/particles/mist-face-b.png|W:#5b3558" width="30" height="30">
+ <sequence start="0" end="2" delay="300"/>
+ <frame index="3" />
+ </animation>
+ </emitter>
+ </particle>
+</effect>
|