diff options
-rw-r--r-- | effects.xml | 2 | ||||
-rw-r--r-- | graphics/particles/panels.xml | 20 | ||||
-rw-r--r-- | maps/000-1.tmx | 2 |
3 files changed, 24 insertions, 0 deletions
diff --git a/effects.xml b/effects.xml index 03f04080..4b0e5452 100644 --- a/effects.xml +++ b/effects.xml @@ -21,5 +21,7 @@ Copyright (C) 2010-2013 Evol Online --> <effect id="16" particle="graphics/particles/hit.xml"/> // Hit's explosion particle effect. <effect id="17" audio="system/quest-update.ogg"/> // Updated quest particle effect. <effect id="18" audio="system/quest-done.ogg"/> // Finished quest particle effect. + <effect id="19" particle="graphics/particles/concentration.xml"/> // Concentration particle effect on user. + <effect id="20" particle="graphics/particles/panels.xml"/> // Particle effect for NPC panels, used to give advice to players. <effect id="344"/> // @summon GM command particle effect. </being-effects> diff --git a/graphics/particles/panels.xml b/graphics/particles/panels.xml new file mode 100644 index 00000000..702d7c46 --- /dev/null +++ b/graphics/particles/panels.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Author: Alige +Copyright (C) 2014 Evol Online --> +<effect> + <particle position-x="16" position-y="0" position-z="27"> + <emitter> + <property name="image" value="graphics/particles/star-small.png|W:#f3ffbe,f3ffe3"/> + <property name="vertical-angle" value="90"/> + <property name="power" value="0.3"/> + <property name="gravity" value="-0.0005"/> + <property name="lifetime" value="100"/> + <property name="output" min="-6" max="1"/> + <property name="output-pause" min="1" max="3"/> + <property name="fade-in" value="15"/> + <property name="fade-out" value="30"/> + <property name="position-x" min="-8" max="8"/> + <property name="position-y" min="-5" max="-10"/> + </emitter> + </particle> +</effect> diff --git a/maps/000-1.tmx b/maps/000-1.tmx index f073a3ad..92954380 100644 --- a/maps/000-1.tmx +++ b/maps/000-1.tmx @@ -309,5 +309,7 @@ <property name="monster_id" value="1006"/> </properties> </object> + <object name="graphics/particles/panels.xml" type="particle_effect" x="2848" y="1632" width="32" height="32"/> + <object name="graphics/particles/panels.xml" type="particle_effect" x="2080" y="2976" width="32" height="32"/> </objectgroup> </map> |