diff options
author | Reid Yaro <reidyaro@gmail.com> | 2013-05-31 02:38:58 +0100 |
---|---|---|
committer | Reid Yaro <reidyaro@gmail.com> | 2013-05-31 02:38:58 +0100 |
commit | 43276d74eae7a405d6ecc4987bc3b949621b80aa (patch) | |
tree | 602132b3b4bba5eecf474e431094b696a2bfa772 /graphics/particles | |
parent | 2fc0901b580e93e9f3e254d4c7f044ace7467f10 (diff) | |
download | clientdata-43276d74eae7a405d6ecc4987bc3b949621b80aa.tar.gz clientdata-43276d74eae7a405d6ecc4987bc3b949621b80aa.tar.bz2 clientdata-43276d74eae7a405d6ecc4987bc3b949621b80aa.tar.xz clientdata-43276d74eae7a405d6ecc4987bc3b949621b80aa.zip |
Add Impositio effect and particle effect. (WIP)
Diffstat (limited to 'graphics/particles')
-rwxr-xr-x | graphics/particles/gloworb-medium.png | bin | 0 -> 949 bytes | |||
-rw-r--r-- | graphics/particles/healing.xml | 2 | ||||
-rw-r--r-- | graphics/particles/impositio.xml | 44 |
3 files changed, 45 insertions, 1 deletions
diff --git a/graphics/particles/gloworb-medium.png b/graphics/particles/gloworb-medium.png Binary files differnew file mode 100755 index 00000000..0d45d78f --- /dev/null +++ b/graphics/particles/gloworb-medium.png diff --git a/graphics/particles/healing.xml b/graphics/particles/healing.xml index 5fde4d7e..918e7270 100644 --- a/graphics/particles/healing.xml +++ b/graphics/particles/healing.xml @@ -12,7 +12,7 @@ Copyright (C) 2010-2013 Evol Online --> <emitter> <property name="gravity" value="-0.7"/> <property name="momentum" value="0.3"/> - <property name="image" value="graphics/particles/orb-small.png|W:#ffff00"/> + <property name="image" value="graphics/particles/orb-small.png|W:#fffecb"/> <property name="lifetime" value="50"/> <property name="fade-out" value="50"/> <property name="output" value="1"/> diff --git a/graphics/particles/impositio.xml b/graphics/particles/impositio.xml new file mode 100644 index 00000000..700a1273 --- /dev/null +++ b/graphics/particles/impositio.xml @@ -0,0 +1,44 @@ +<?xml version="1.0"?> +<!-- +Pink-ish particles that fly up to the sky; based on Crush's Soul Menhir effect. +--> +<!-- Copyright (C) 2010 The Mana World Development Team +Copyright (C) 2010-2013 Evol Online --> +<effect> + <particle + position-x = "0" + position-y = "0" + position-z = "0" + > + <emitter> + <property name="position-z" min="16" max="48" /> + <property name="vertical-angle" min="0" max="90"/> + <property name="horizontal-angle" min="0" max="360"/> + <property name="power" min="10" max="25"/> + <property name="lifetime" value="1"/> + <property name="output" value="1"/> + <emitter> + <property name="gravity" value="-0.4"/> + <property name="momentum" value="0.9"/> + <property name="image" value="graphics/particles/gloworb-medium.png|W:#da69e5"/> + <property name="lifetime" value="25"/> + <property name="fade-in" value="5"/> + <property name="fade-out" value="20"/> + <property name="output" min="0" max="1"/> + <property name="output-pause" min="30" max="80"/> + <property name="randomnes" value="200"/> + </emitter> + <emitter> + <property name="gravity" value="-0.4"/> + <property name="momentum" value="0.9"/> + <property name="image" value="graphics/particles/orb-small.png|W:#da69e5"/> + <property name="lifetime" value="25"/> + <property name="fade-in" value="5"/> + <property name="fade-out" value="20"/> + <property name="output" min="0" max="1"/> + <property name="output-pause" min="30" max="80"/> + <property name="randomnes" value="200"/> + </emitter> + </emitter> + </particle> +</effect> |