2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "Creeper.h"
|
2013-10-09 16:02:59 -04:00
|
|
|
#include "../World.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 04:39:13 -05:00
|
|
|
cCreeper::cCreeper(void) :
|
2013-10-09 16:02:59 -04:00
|
|
|
super("Creeper", 50, "mob.creeper.say", "mob.creeper.say", 0.6, 1.8),
|
|
|
|
m_bIsBlowing(false),
|
|
|
|
m_bIsCharged(false)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 06:39:56 -04:00
|
|
|
void cCreeper::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
AddRandomDropItem(a_Drops, 0, 2, E_ITEM_GUNPOWDER);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// TODO Check if killed by a skeleton, then drop random music disk
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-10-09 16:02:59 -04:00
|
|
|
|
|
|
|
void cCreeper::DoTakeDamage(TakeDamageInfo & a_TDI)
|
|
|
|
{
|
|
|
|
super::DoTakeDamage(a_TDI);
|
|
|
|
|
|
|
|
if (a_TDI.DamageType == dtLightning)
|
|
|
|
{
|
|
|
|
m_bIsCharged = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|