2011-10-25 19:46:01 -04:00
|
|
|
#include "cGhast.h"
|
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
cGhast::cGhast()
|
|
|
|
{
|
2011-10-25 19:46:01 -04:00
|
|
|
m_MobType = 56;
|
|
|
|
GetMonsterConfig("Ghast");
|
|
|
|
}
|
|
|
|
|
|
|
|
cGhast::~cGhast()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cGhast::IsA( const char* a_EntityType )
|
|
|
|
{
|
|
|
|
if( strcmp( a_EntityType, "cGhast" ) == 0 ) return true;
|
|
|
|
return cMonster::IsA( a_EntityType );
|
|
|
|
}
|
|
|
|
|
|
|
|
void cGhast::KilledBy( cEntity* a_Killer )
|
|
|
|
{
|
2011-12-21 15:42:34 -05:00
|
|
|
cMonster::RandomDropItem(E_ITEM_GUNPOWDER, 0, 2);
|
|
|
|
|
|
|
|
cMonster::RandomDropItem(E_ITEM_GHAST_TEAR, 0, 1);
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
cMonster::KilledBy( a_Killer );
|
|
|
|
}
|
|
|
|
|