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 "cEnderman.h"
|
|
|
|
|
2012-06-06 16:18:50 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
cEnderman::cEnderman()
|
|
|
|
{
|
2011-10-25 19:46:01 -04:00
|
|
|
m_MobType = 58;
|
|
|
|
GetMonsterConfig("Enderman");
|
|
|
|
}
|
|
|
|
|
2012-06-06 16:18:50 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
cEnderman::~cEnderman()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-06-06 16:18:50 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
bool cEnderman::IsA( const char* a_EntityType )
|
|
|
|
{
|
|
|
|
if( strcmp( a_EntityType, "cEnderman" ) == 0 ) return true;
|
|
|
|
return cMonster::IsA( a_EntityType );
|
|
|
|
}
|
|
|
|
|
2012-06-06 16:18:50 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
void cEnderman::Tick(float a_Dt)
|
|
|
|
{
|
|
|
|
cMonster::Tick(a_Dt);
|
2011-12-25 17:47:12 -05:00
|
|
|
|
|
|
|
//TODO Same as stated in cSkeleton
|
2011-12-27 21:10:05 -05:00
|
|
|
if (GetWorld()->GetWorldTime() < (12000 + 1000) && GetMetaData() != BURNING) { //if daylight
|
|
|
|
SetMetaData(BURNING); // BURN, BABY, BURN! >:D
|
2011-10-25 19:46:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-06 16:18:50 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
void cEnderman::KilledBy( cEntity* a_Killer )
|
|
|
|
{
|
2012-06-06 16:18:50 -04:00
|
|
|
cItems Drops;
|
|
|
|
AddRandomDropItem(Drops, 0, 1, E_ITEM_ENDER_PEARL);
|
|
|
|
m_World->SpawnItemPickups(Drops, m_Pos.x, m_Pos.y, m_Pos.z);
|
2011-12-21 15:42:34 -05:00
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
cMonster::KilledBy( a_Killer );
|
|
|
|
}
|
2012-06-06 16:18:50 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|