diff options
author | Fate <fate-tmw@googlemail.com> | 2008-12-09 09:58:28 -0700 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2008-12-09 09:58:28 -0700 |
commit | d2b96c1ea5b606bcc6201b1e06e85f88321f1d72 (patch) | |
tree | 0561ef5471bf60f245c82a873a9d23f9526e3963 | |
parent | df1f5b8aa83e72a42da998ad5ee3d0d56afb62d5 (diff) | |
download | clientdata-d2b96c1ea5b606bcc6201b1e06e85f88321f1d72.tar.gz clientdata-d2b96c1ea5b606bcc6201b1e06e85f88321f1d72.tar.bz2 clientdata-d2b96c1ea5b606bcc6201b1e06e85f88321f1d72.tar.xz clientdata-d2b96c1ea5b606bcc6201b1e06e85f88321f1d72.zip |
Cleaned up and fixed status-effects.xml
Added particle effect to iron potion
-rw-r--r-- | graphics/particles/orange-violent-glow.particle.xml | 42 | ||||
-rw-r--r-- | status-effects.xml | 26 |
2 files changed, 52 insertions, 16 deletions
diff --git a/graphics/particles/orange-violent-glow.particle.xml b/graphics/particles/orange-violent-glow.particle.xml new file mode 100644 index 00000000..417d934d --- /dev/null +++ b/graphics/particles/orange-violent-glow.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-z" value="16" />
+ <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:#ffa000"/>
+ <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:#ffa000"/>
+ <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>
diff --git a/status-effects.xml b/status-effects.xml index 62334801..4fed3afb 100644 --- a/status-effects.xml +++ b/status-effects.xml @@ -1,21 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> <status-effects> - <status-effect name="speed" id="37" blockid="21" - action="sit" + <status-effect name="speed" id="37" block-id="21" icon="icon-haste-potion.xml" - start-message="You feel faster." - end-message="You no longer feel faster." /> -<!-- start-particle="graphics/particles/pentagram-buildup-short.xml" - end-particle="" - start-audio="sfx/levelup.ogg" - end-audio="sfx/levelup.ogg" --> - <status-effect name="strength" id="185" blockid="23" - action="sit" + start-message="As your focus increases, you feel the world slowing down around you." + end-message="The world is speeding up again." + /> + <status-effect name="strength" id="185" block-id="23" icon="icon-iron-potion.xml" - start-message="You feel stonger." - end-message="You no longer feel stonger." /> -<!-- start-particle="graphics/particles/pentagram-buildup-short.xml" - end-particle="" - start-audio="sfx/levelup.ogg" - end-audio="sfx/levelup.ogg" --> + persistent-particle-effect="true" + start-particle="graphics/particles/orange-violent-glow.particle.xml" + start-message="You feel stronger." + end-message="You feel a little weaker." + /> </status-effects> |