diff options
author | Wushin <pasekei@gmail.com> | 2015-05-02 22:22:44 -0500 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-05-02 22:22:44 -0500 |
commit | e08c2e58bfd6586f0e5d9b00941b70489e9144a8 (patch) | |
tree | e27a63d2c9d70af229fb9f96dc9daa30ee203e68 /graphics/particles | |
parent | 1f160054f89428ce3ef9159661d9446e1cdc9a5f (diff) | |
parent | f4e05f9ffb37d15981c1cf9fcd5af2c261c70f8b (diff) | |
download | clientdata-e08c2e58bfd6586f0e5d9b00941b70489e9144a8.tar.gz clientdata-e08c2e58bfd6586f0e5d9b00941b70489e9144a8.tar.bz2 clientdata-e08c2e58bfd6586f0e5d9b00941b70489e9144a8.tar.xz clientdata-e08c2e58bfd6586f0e5d9b00941b70489e9144a8.zip |
Merge pull request #258 from wushin/quest-log-xml
Example Log
Diffstat (limited to 'graphics/particles')
-rw-r--r-- | graphics/particles/questdone.particle.xml | 18 | ||||
-rw-r--r-- | graphics/particles/questup.particle.xml | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/graphics/particles/questdone.particle.xml b/graphics/particles/questdone.particle.xml new file mode 100644 index 00000000..c8b003c1 --- /dev/null +++ b/graphics/particles/questdone.particle.xml @@ -0,0 +1,18 @@ +<?xml version="1.0"?> +<!-- +Green stars which are supposed to engulf a character +--> +<effect> + <particle position-x="0" position-y="0" position-z="0" lifetime="128"> + <emitter> + <property name="image" value="graphics/particles/star-medium.png|W:#000000,ffffff"/> + <property name="vertical-angle" value="90"/> + <property name="power" value="2"/> + <property name="lifetime" value="36"/> + <property name="output" min="-5" max="1"/> + <property name="position-x" min="-16" max="16"/> + <property name="position-y" min="-16" max="16"/> + <property name="position-z" min="0" max="32"/> + </emitter> + </particle> +</effect> diff --git a/graphics/particles/questup.particle.xml b/graphics/particles/questup.particle.xml new file mode 100644 index 00000000..d4a59a75 --- /dev/null +++ b/graphics/particles/questup.particle.xml @@ -0,0 +1,18 @@ +<?xml version="1.0"?> +<!-- +Green stars which are supposed to engulf a character +--> +<effect> + <particle position-x="0" position-y="0" position-z="0" lifetime="128"> + <emitter> + <property name="image" value="graphics/particles/star-medium.png|W:#009600,ffffff"/> + <property name="vertical-angle" value="90"/> + <property name="power" value="2"/> + <property name="lifetime" value="36"/> + <property name="output" min="-5" max="1"/> + <property name="position-x" min="-16" max="16"/> + <property name="position-y" min="-16" max="16"/> + <property name="position-z" min="0" max="32"/> + </emitter> + </particle> +</effect> |