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 "Skeleton.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 04:39:13 -05:00
|
|
|
|
cSkeleton::cSkeleton(void) :
|
|
|
|
|
super("Skeleton", 51, "mob.skeleton.hurt", "mob.skeleton.death")
|
2012-06-14 09:06:06 -04:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 05:15:53 -05:00
|
|
|
|
void cSkeleton::Tick(float a_Dt, MTRand & a_TickRandom)
|
2012-06-14 09:06:06 -04:00
|
|
|
|
{
|
2012-12-22 05:15:53 -05:00
|
|
|
|
cMonster::Tick(a_Dt, a_TickRandom);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
2012-11-01 17:38:20 -04:00
|
|
|
|
// TODO Outsource
|
|
|
|
|
// TODO should do SkyLight check, mobs in the dark don<6F>t burn
|
|
|
|
|
if ((GetWorld()->GetTimeOfDay() < (12000 + 1000)) && (GetMetaData() != BURNING))
|
|
|
|
|
{
|
2012-06-14 09:06:06 -04:00
|
|
|
|
SetMetaData(BURNING); // BURN, BABY, BURN! >:D
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
void cSkeleton::GetDrops(cItems & a_Drops, cPawn * 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_ARROW);
|
|
|
|
|
AddRandomDropItem(a_Drops, 0, 2, E_ITEM_BONE);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|