2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
#include "cPig.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
cPig::cPig()
|
|
|
|
{
|
|
|
|
m_MobType = 90;
|
|
|
|
GetMonsterConfig("Pig");
|
|
|
|
}
|
|
|
|
|
|
|
|
cPig::~cPig()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cPig::IsA( const char* a_EntityType )
|
|
|
|
{
|
|
|
|
if( strcmp( a_EntityType, "cPig" ) == 0 ) return true;
|
|
|
|
return cMonster::IsA( a_EntityType );
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPig::KilledBy( cEntity* a_Killer )
|
|
|
|
{
|
2011-12-21 15:42:34 -05:00
|
|
|
//Drops 0-2 meat
|
|
|
|
cMonster::RandomDropItem(E_ITEM_RAW_MEAT, 0, 2);
|
|
|
|
|
|
|
|
//TODO: Check for burning state
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
cMonster::KilledBy( a_Killer );
|
2011-12-25 17:47:12 -05:00
|
|
|
}
|