2013-09-18 17:17:43 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
|
|
#include "IronGolem.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cIronGolem::cIronGolem(void) :
|
2015-04-17 14:18:34 -04:00
|
|
|
super("IronGolem", mtIronGolem, "mob.irongolem.hit", "mob.irongolem.death", 1.4, 2.9)
|
2013-09-18 17:17:43 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cIronGolem::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
|
|
|
{
|
2014-02-24 09:38:38 -05:00
|
|
|
UNUSED(a_Killer);
|
2013-09-18 17:17:43 -04:00
|
|
|
AddRandomDropItem(a_Drops, 0, 5, E_ITEM_IRON);
|
2014-02-23 13:44:58 -05:00
|
|
|
AddRandomDropItem(a_Drops, 0, 2, E_BLOCK_FLOWER);
|
2013-09-18 17:17:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|