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 "Creeper.h"
|
2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 01:39:13 -08:00
|
|
|
cCreeper::cCreeper(void) :
|
|
|
|
super("Creeper", 50, "mob.creeper.say", "mob.creeper.say")
|
2012-06-14 06:06:06 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 03:04:08 -08:00
|
|
|
void cCreeper::GetDrops(cItems & a_Drops, cPawn * 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_GUNPOWDER);
|
2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
// TODO Check if killed by a skeleton, then drop random music disk
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|