2013-09-18 22:17:43 +01:00
|
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
|
|
|
|
#include "Giant.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cGiant::cGiant(void) :
|
2021-04-06 16:09:16 +01:00
|
|
|
Super("Giant", mtGiant, "entity.zombie.hurt", "entity.zombie.death", "entity.zombie.ambient", 3.6f, 12)
|
2013-09-18 22:17:43 +01:00
|
|
|
{
|
2013-11-15 14:06:58 +01:00
|
|
|
|
2013-09-18 22:17:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cGiant::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
|
|
|
|
{
|
|
|
|
|
AddRandomDropItem(a_Drops, 10, 50, E_ITEM_ROTTEN_FLESH);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|