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