diff options
author | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2012-05-18 13:32:34 +0200 |
---|---|---|
committer | Yohann Ferreira <yohann_ferreira_at_orange_fr_> | 2013-02-01 21:33:43 +0100 |
commit | 02602a6a7bb92fbe19b7a015f5c6764ab658c469 (patch) | |
tree | c7f53a585671036174b76f046e48e8f872846b50 /example | |
parent | 5c7bf62ca3204c6f8b91f1bd9178cb638e184f5a (diff) | |
download | manaserv-02602a6a7bb92fbe19b7a015f5c6764ab658c469.tar.gz manaserv-02602a6a7bb92fbe19b7a015f5c6764ab658c469.tar.bz2 manaserv-02602a6a7bb92fbe19b7a015f5c6764ab658c469.tar.xz manaserv-02602a6a7bb92fbe19b7a015f5c6764ab658c469.zip |
Added emote support.
Diffstat (limited to 'example')
-rw-r--r-- | example/effects.xml | 2 | ||||
-rw-r--r-- | example/emotes.xml | 37 |
2 files changed, 19 insertions, 20 deletions
diff --git a/example/effects.xml b/example/effects.xml index 90de57e2..57e1c755 100644 --- a/example/effects.xml +++ b/example/effects.xml @@ -12,7 +12,6 @@ <effect id="4" particle="graphics/particles/arrow-hail.xml" /> <!-- Emotion effects --> - <effect id="10000" particle="graphics/particles/emotes/emote-disgust.particle.xml"/> <effect id="10001" particle="graphics/particles/emotes/emote-surprise.particle.xml"/> <effect id="10002" particle="graphics/particles/emotes/emote-happy.particle.xml"/> <effect id="10003" particle="graphics/particles/emotes/emote-sad.particle.xml"/> @@ -26,4 +25,5 @@ <effect id="10011" particle="graphics/particles/emotes/emote-perturbed.particle.xml"/> <effect id="10012" particle="graphics/particles/emotes/emote-speech.particle.xml"/> <effect id="10013" particle="graphics/particles/emotes/emote-blah.particle.xml"/> + <effect id="10014" particle="graphics/particles/emotes/emote-disgust.particle.xml"/> </effects> diff --git a/example/emotes.xml b/example/emotes.xml index 0136b13c..7b8ae739 100644 --- a/example/emotes.xml +++ b/example/emotes.xml @@ -1,101 +1,100 @@ <?xml version="1.0"?> <emotes> <emote id="0" - name="Disgust" - effectid="10000" - image="graphics/particles/emotes/disgust.png" - width="30" height="32"> - </emote> - - <emote id="1" name="Surprise" effectid="10001" image="graphics/particles/emotes/surprise.png" width="30" height="32"> </emote> - <emote id="2" + <emote id="1" name="Happy" effectid="10002" image="graphics/particles/emotes/happy.png" width="30" height="32"> </emote> - <emote id="3" + <emote id="2" name="Sad" effectid="10003" image="graphics/particles/emotes/sad.png" width="30" height="32"> </emote> - <emote id="4" + <emote id="3" name="Evil" effectid="10004" image="graphics/particles/emotes/evil.png" width="30" height="32"> </emote> - <emote id="5" + <emote id="4" name="Wink" effectid="10005" image="graphics/particles/emotes/wink.png" width="30" height="32"> </emote> - <emote id="6" + <emote id="5" name="Angel" effectid="10006" image="graphics/particles/emotes/angel.png" width="30" height="32"> </emote> - <emote id="7" + <emote id="6" name="Blush" effectid="10007" image="graphics/particles/emotes/blush.png" width="30" height="32"> </emote> - <emote id="8" + <emote id="7" name="Tongue" effectid="10008" image="graphics/particles/emotes/tongue.png" width="30" height="32"> </emote> - <emote id="9" + <emote id="8" name="Grin" effectid="10009" image="graphics/particles/emotes/grin.png" width="30" height="32"> </emote> - <emote id="10" + <emote id="9" name="Upset" effectid="10010" image="graphics/particles/emotes/upset.png" width="30" height="32"> </emote> - <emote id="11" + <emote id="10" name="Perturbed" effectid="10011" image="graphics/particles/emotes/perturbed.png" width="30" height="32"> </emote> - <emote id="12" + <emote id="11" name="Speech" effectid="10012" image="graphics/particles/emotes/speech.png" width="30" height="32"> </emote> - <emote id="13" + <emote id="12" name="Blah" effectid="10013" image="graphics/particles/emotes/blah.png" width="30" height="32"> </emote> + <emote id="13" + name="Disgust" + effectid="10014" + image="graphics/particles/emotes/disgust.png" + width="30" height="32"> + </emote> </emotes> |