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 "Zombie.h"
|
2013-08-16 04:48:19 -04:00
|
|
|
#include "../World.h"
|
2013-08-27 16:11:00 -04:00
|
|
|
#include "../LineBlockTracer.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 04:39:13 -05:00
|
|
|
cZombie::cZombie(void) :
|
2013-07-01 06:39:56 -04:00
|
|
|
super("Zombie", 54, "mob.zombie.hurt", "mob.zombie.death", 0.6, 1.8)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-09-05 16:40:08 -04:00
|
|
|
SetBurnsInDaylight(true);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 06:39:56 -04:00
|
|
|
void cZombie::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_ROTTEN_FLESH);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// TODO: Rare drops
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|