2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 20:53:08 +00:00
|
|
|
#include "Enderman.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 09:39:13 +00:00
|
|
|
cEnderman::cEnderman(void) :
|
2013-07-01 10:39:56 +00:00
|
|
|
// TODO: The size is only a guesstimate, measure in vanilla and fix the size values here
|
|
|
|
super("Enderman", 58, "mob.endermen.hit", "mob.endermen.death", 0.5, 2.5)
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 10:39:56 +00:00
|
|
|
void cEnderman::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
2012-12-21 11:04:08 +00:00
|
|
|
AddRandomDropItem(a_Drops, 0, 1, E_ITEM_ENDER_PEARL);
|
2012-06-14 13:06:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|