2012-10-19 14:30:46 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
|
|
#include "Blaze.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 04:39:13 -05:00
|
|
|
cBlaze::cBlaze(void) :
|
|
|
|
super("Blaze", 61, "mob.blaze.hit", "mob.blaze.death")
|
2012-10-19 14:30:46 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
void cBlaze::GetDrops(cItems & a_Drops, cPawn * a_Killer)
|
2012-10-19 14:30:46 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
AddRandomDropItem(a_Drops, 0, 1, E_ITEM_BLAZE_ROD);
|
2012-10-19 14:30:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|