diff options
author | Ira Rice <irarice@gmail.com> | 2008-10-13 09:34:46 +0000 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2008-10-13 09:34:46 +0000 |
commit | a4d2f2c0373848fa8a886c1dddc6247b81527df3 (patch) | |
tree | b4d0f0dcab4bd9ff06a4cd0613e26f61fffb45ce /src/resources/monsterinfo.h | |
parent | 1c337aae30b334d99a5ec81269f2c6d35b8004ea (diff) | |
download | mana-a4d2f2c0373848fa8a886c1dddc6247b81527df3.tar.gz mana-a4d2f2c0373848fa8a886c1dddc6247b81527df3.tar.bz2 mana-a4d2f2c0373848fa8a886c1dddc6247b81527df3.tar.xz mana-a4d2f2c0373848fa8a886c1dddc6247b81527df3.zip |
Added mob particle attack effects to mobs. Inspired by the TMW patch in
their
trunk client.
Diffstat (limited to 'src/resources/monsterinfo.h')
-rw-r--r-- | src/resources/monsterinfo.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/resources/monsterinfo.h b/src/resources/monsterinfo.h index 2f690756..c5345bd8 100644 --- a/src/resources/monsterinfo.h +++ b/src/resources/monsterinfo.h @@ -87,11 +87,19 @@ class MonsterInfo std::string getSound(MonsterSoundEvent event) const; + std::string + getAttackParticleEffect() const { return mAttackParticle; } + + void + addAttackParticleEffect(const std::string &particleEffect) + { mAttackParticle = particleEffect; } + const std::list<std::string>& getParticleEffects() const { return mParticleEffects; } private: std::string mName; + std::string mAttackParticle; std::list<std::string> mSprites; Being::TargetCursorSize mTargetCursorSize; std::map<MonsterSoundEvent, std::vector<std::string>* > mSounds; |