2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
2012-09-23 13:53:08 -07:00
|
|
|
|
#include "Skeleton.h"
|
2013-08-16 01:48:19 -07:00
|
|
|
|
#include "../World.h"
|
2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 01:39:13 -08:00
|
|
|
|
cSkeleton::cSkeleton(void) :
|
2013-07-01 03:39:56 -07:00
|
|
|
|
super("Skeleton", 51, "mob.skeleton.hurt", "mob.skeleton.death", 0.6, 1.8)
|
2012-06-14 06:06:06 -07:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 14:02:10 -07:00
|
|
|
|
void cSkeleton::Tick(float a_Dt, cChunk & a_Chunk)
|
2012-06-14 06:06:06 -07:00
|
|
|
|
{
|
2013-04-13 14:02:10 -07:00
|
|
|
|
cMonster::Tick(a_Dt, a_Chunk);
|
2012-06-14 06:06:06 -07:00
|
|
|
|
|
2012-11-01 14:38:20 -07:00
|
|
|
|
// TODO Outsource
|
|
|
|
|
// TODO should do SkyLight check, mobs in the dark don<6F>t burn
|
2013-07-01 03:39:56 -07:00
|
|
|
|
if ((GetWorld()->GetTimeOfDay() < (12000 + 1000)) && !IsOnFire())
|
2012-11-01 14:38:20 -07:00
|
|
|
|
{
|
2013-07-01 03:39:56 -07:00
|
|
|
|
// Burn for 10 ticks, then decide again
|
|
|
|
|
StartBurning(10);
|
2012-06-14 06:06:06 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 03:39:56 -07:00
|
|
|
|
void cSkeleton::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
2012-06-14 06:06:06 -07:00
|
|
|
|
{
|
2012-12-21 03:04:08 -08:00
|
|
|
|
AddRandomDropItem(a_Drops, 0, 2, E_ITEM_ARROW);
|
|
|
|
|
AddRandomDropItem(a_Drops, 0, 2, E_ITEM_BONE);
|
2012-06-14 06:06:06 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|