diff options
-rw-r--r-- | effects.xml | 1 | ||||
-rw-r--r-- | graphics/particles/heat.xml | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/effects.xml b/effects.xml index 18c4a9f8..48aea76f 100644 --- a/effects.xml +++ b/effects.xml @@ -85,6 +85,7 @@ <!-- <effect id="113" particle="graphics/particles/magic.barrier-ends.xml"/> --> <effect id="114" particle="graphics/particles/electricity.red.xml"/> <effect id="115" particle="graphics/particles/electricity.blue.xml"/> + <effect id="116" particle="graphics/particles/heat.xml"/> <!-- Interactive Object Animations --> <effect id="300" particle="graphics/particles/gate-opening.xml"/> <effect id="301" particle="graphics/particles/casket-lid.xml"/> diff --git a/graphics/particles/heat.xml b/graphics/particles/heat.xml new file mode 100644 index 00000000..daf223f5 --- /dev/null +++ b/graphics/particles/heat.xml @@ -0,0 +1,50 @@ +<?xml version="1.0"?> +<!-- +Green poison bubbles +--> +<effect> + <particle position-x="0" position-y="0" position-z="0" lifetime="100"> + <emitter> + <property name="position-z" value="90"/> + <property name="position-y" min="-8" max="8"/> + <property name="vertical-angle" min="0" max="90"/> + <property name="horizontal-angle" min="0" max="360"/> + <property name="power" min="4" max="15"/> + <property name="lifetime" value="1"/> + <property name="output" value="1"/> + <emitter> + <property name="gravity" value="-0.1"/> + <property name="momentum" value="0.9"/> + <animation imageset="graphics/particles/aniblaze.png" width="8" height="8"> + <frame index="0" delay="80"/> + <frame index="1" delay="80"/> + <frame index="2" delay="80"/> + <frame index="3" delay="80"/> + <frame index="4" delay="80"/> + <frame index="5" delay="30"/> + <frame index="6" delay="20"/> + <frame index="7" delay="-1"/> + </animation> + <property name="lifetime" value="45"/> + <property name="fade-in" value="0"/> + <property name="fade-out" value="10"/> + <property name="output" min="0" max="1"/> + <property name="output-pause" min="30" max="80"/> + </emitter> + <emitter> + <property name="position-x" min="-16" max="16"/> + <property name="position-y" min="-8" max="8"/> + <property name="position-z" min="0" max="8"/> + <property name="image" value="graphics/particles/fog-medium-c.png|W:#fffacc,fffdeb"/> + <property name="horizontal-angle" min="0" max="360"/> + <property name="vertical-angle" min="0" max="90"/> + <property name="gravity" value="-0.1"/> + <property name="lifetime" value="35"/> + <property name="fade-in" value="0"/> + <property name="fade-out" value="10"/> + <property name="output" min="0" max="1"/> + <property name="output-pause" min="30" max="80"/> + </emitter> + </emitter> + </particle> +</effect> |