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 "cCreeper.h"
|
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
cCreeper::cCreeper()
|
|
|
|
{
|
2011-10-25 19:46:01 -04:00
|
|
|
m_MobType = 50;
|
|
|
|
GetMonsterConfig("Creeper");
|
|
|
|
}
|
|
|
|
|
|
|
|
cCreeper::~cCreeper()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cCreeper::IsA( const char* a_EntityType )
|
|
|
|
{
|
|
|
|
if( strcmp( a_EntityType, "cCreeper" ) == 0 ) return true;
|
|
|
|
return cMonster::IsA( a_EntityType );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cCreeper::KilledBy( cEntity* a_Killer )
|
|
|
|
{
|
2011-12-21 15:42:34 -05:00
|
|
|
cMonster::RandomDropItem(E_ITEM_GUNPOWDER, 0, 2);
|
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
//TODO Check if killed by a skeleton then drop random music disk
|
2011-12-21 15:42:34 -05:00
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
cMonster::KilledBy( a_Killer );
|
2011-12-25 17:47:12 -05:00
|
|
|
}
|