2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2013-09-21 05:10:35 -04:00
|
|
|
#include "Zombiepigman.h"
|
2013-08-16 04:48:19 -04:00
|
|
|
#include "../World.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-18 17:17:43 -04:00
|
|
|
cZombiePigman::cZombiePigman(void) :
|
2013-10-20 04:23:30 -04:00
|
|
|
super("ZombiePigman", mtZombiePigman, "mob.zombiepig.zpighurt", "mob.zombiepig.zpigdeath", 0.6, 1.8)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-18 17:17:43 -04:00
|
|
|
void cZombiePigman::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
AddRandomDropItem(a_Drops, 0, 1, E_ITEM_ROTTEN_FLESH);
|
|
|
|
AddRandomDropItem(a_Drops, 0, 1, E_ITEM_GOLD_NUGGET);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// TODO: Rare drops
|
2012-12-21 06:04:08 -05:00
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-18 17:17:43 -04:00
|
|
|
void cZombiePigman::KilledBy(cEntity * a_Killer)
|
2012-12-21 06:04:08 -05:00
|
|
|
{
|
|
|
|
super::KilledBy(a_Killer);
|
|
|
|
|
2012-12-21 07:52:14 -05:00
|
|
|
if ((a_Killer != NULL) && (a_Killer->IsPlayer()))
|
2012-12-21 06:04:08 -05:00
|
|
|
{
|
|
|
|
// TODO: Anger all nearby zombie pigmen
|
|
|
|
// TODO: In vanilla, if one player angers ZPs, do they attack any nearby player, or only that one attacker?
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|