2012-06-14 13:06:06 +00:00
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2014-04-23 15:25:10 -07:00
|
|
|
#include "ZombiePigman.h"
|
2013-08-16 10:48:19 +02:00
|
|
|
#include "../World.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-18 22:17:43 +01:00
|
|
|
cZombiePigman::cZombiePigman(void) :
|
2013-10-20 10:23:30 +02:00
|
|
|
super("ZombiePigman", mtZombiePigman, "mob.zombiepig.zpighurt", "mob.zombiepig.zpigdeath", 0.6, 1.8)
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-18 22:17:43 +01:00
|
|
|
void cZombiePigman::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
2014-02-23 19:44:58 +01:00
|
|
|
int LootingLevel = 0;
|
|
|
|
if (a_Killer != NULL)
|
|
|
|
{
|
|
|
|
LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(cEnchantments::enchLooting);
|
|
|
|
}
|
|
|
|
AddRandomDropItem(a_Drops, 0, 1 + LootingLevel, E_ITEM_ROTTEN_FLESH);
|
|
|
|
AddRandomDropItem(a_Drops, 0, 1 + LootingLevel, E_ITEM_GOLD_NUGGET);
|
2012-06-14 13:06:06 +00:00
|
|
|
|
2014-02-23 19:44:58 +01:00
|
|
|
cItems RareDrops;
|
|
|
|
RareDrops.Add(cItem(E_ITEM_GOLD));
|
|
|
|
AddRandomRareDropItem(a_Drops, RareDrops, LootingLevel);
|
|
|
|
AddRandomArmorDropItem(a_Drops, LootingLevel);
|
|
|
|
AddRandomWeaponDropItem(a_Drops, LootingLevel);
|
2012-12-21 11:04:08 +00:00
|
|
|
}
|
2012-06-14 13:06:06 +00:00
|
|
|
|
2012-12-21 11:04:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-04 10:55:09 +01:00
|
|
|
void cZombiePigman::KilledBy(TakeDamageInfo & a_TDI)
|
2012-12-21 11:04:08 +00:00
|
|
|
{
|
2014-07-04 10:55:09 +01:00
|
|
|
super::KilledBy(a_TDI);
|
2012-12-21 11:04:08 +00:00
|
|
|
|
2014-07-04 10:55:09 +01:00
|
|
|
if ((a_TDI.Attacker != NULL) && (a_TDI.Attacker->IsPlayer()))
|
2012-12-21 11:04:08 +00: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 13:06:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|