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 "Zombiepigman.h"
|
2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 01:39:13 -08:00
|
|
|
cZombiepigman::cZombiepigman(void) :
|
2013-07-01 03:39:56 -07:00
|
|
|
super("Zombiepigman", 57, "mob.zombiepig.zpighurt", "mob.zombiepig.zpigdeath", 0.6, 1.8)
|
2012-06-14 06:06:06 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 14:02:10 -07:00
|
|
|
void cZombiepigman::Tick(float a_Dt, cChunk & a_Chunk)
|
2012-06-14 06:06:06 -07:00
|
|
|
{
|
2013-04-13 14:02:10 -07:00
|
|
|
super::Tick(a_Dt, a_Chunk);
|
2012-06-14 06:06:06 -07:00
|
|
|
|
2012-11-01 14:38:20 -07:00
|
|
|
// TODO Same as noticed in cSkeleton AND Do they really burn by sun?? :D In the neather is no sun :D
|
2013-07-01 03:39:56 -07:00
|
|
|
if ((GetWorld()->GetTimeOfDay() < (12000 + 1000)) && !IsOnFire())
|
2012-11-01 14:38:20 -07:00
|
|
|
{
|
2013-07-01 03:39:56 -07:00
|
|
|
// Burn for 10 ticks, then decide again
|
|
|
|
StartBurning(10);
|
2012-06-14 06:06:06 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 03:39:56 -07:00
|
|
|
void cZombiepigman::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
2012-06-14 06:06:06 -07:00
|
|
|
{
|
2012-12-21 03:04:08 -08:00
|
|
|
AddRandomDropItem(a_Drops, 0, 1, E_ITEM_ROTTEN_FLESH);
|
|
|
|
AddRandomDropItem(a_Drops, 0, 1, E_ITEM_GOLD_NUGGET);
|
2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
// TODO: Rare drops
|
2012-12-21 03:04:08 -08:00
|
|
|
}
|
2012-06-14 06:06:06 -07:00
|
|
|
|
2012-12-21 03:04:08 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 03:39:56 -07:00
|
|
|
void cZombiepigman::KilledBy(cEntity * a_Killer)
|
2012-12-21 03:04:08 -08:00
|
|
|
{
|
|
|
|
super::KilledBy(a_Killer);
|
|
|
|
|
2012-12-21 04:52:14 -08:00
|
|
|
if ((a_Killer != NULL) && (a_Killer->IsPlayer()))
|
2012-12-21 03:04:08 -08: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 06:06:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|