diff options
-rw-r--r-- | graphics/particles/circle.particle.xml | 26 | ||||
-rw-r--r-- | monsters.xml | 1 |
2 files changed, 27 insertions, 0 deletions
diff --git a/graphics/particles/circle.particle.xml b/graphics/particles/circle.particle.xml new file mode 100644 index 00000000..900bc834 --- /dev/null +++ b/graphics/particles/circle.particle.xml @@ -0,0 +1,26 @@ +<?xml version="1.0"?>
+
+<effect>
+ <particle
+ position-x = "0"
+ position-y = "0"
+ position-z = "0"
+ >
+ <emitter>
+ <property name="position-y" value="-16"/>
+ <property name="horizontal-angle" min="0" max="360"/>
+ <property name="vertical-angle" min="0" max="0"/>
+ <property name="power" value="30"/>
+ <property name="lifetime" value="1"/>
+ <property name="output" value="3"/>
+ <emitter>
+ <property name="gravity" value="-0.7"/>
+ <property name="momentum" value="0.3"/>
+ <property name="image" value="graphics/particles/orb-small-cyan.png"/>
+ <property name="lifetime" value="50"/>
+ <property name="fade-out" value="50"/>
+ <property name="output" value="1"/>
+ </emitter>
+ </emitter>
+ </particle>
+</effect>
\ No newline at end of file diff --git a/monsters.xml b/monsters.xml index 463f6616..ab2432d1 100644 --- a/monsters.xml +++ b/monsters.xml @@ -14,6 +14,7 @@ <sound event="hit">scorpion-hit3.ogg</sound>
<sound event="hit">scorpion-hit4.ogg</sound>
<sound event="miss">scorpion-miss1.ogg</sound>
+ <particlefx>graphics/particles/circle.particle.xml</particlefx>
</monster>
<monster id="2" name="Red Scorpion">
|