2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
2012-09-23 20:53:08 +00:00
|
|
|
#include "Silverfish.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 12:21:20 +00:00
|
|
|
cSilverfish::cSilverfish(void)
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
|
|
|
|
m_MobType = 60;
|
2012-12-21 18:05:34 +00:00
|
|
|
m_SoundHurt = "mob.silverfish.hit";
|
|
|
|
|
m_SoundDeath = "mob.silverfish.kill";
|
2012-06-14 13:06:06 +00:00
|
|
|
GetMonsterConfig("Silverfish");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 12:21:20 +00:00
|
|
|
|
2012-06-14 13:06:06 +00:00
|
|
|
|