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 "Wolf.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
2012-12-21 12:21:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cWolf::cWolf(void)
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
|
|
|
|
m_MobType = 95;
|
2012-12-21 18:05:34 +00:00
|
|
|
m_SoundHurt = "mob.wolf.hurt";
|
|
|
|
|
m_SoundDeath = "mob.wolf.death";
|
2012-06-14 13:06:06 +00:00
|
|
|
GetMonsterConfig("Wolf");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 12:21:20 +00:00
|
|
|
|
|
|
|
|
|