summaryrefslogtreecommitdiffstats
path: root/src/Mobs/ZombiePigman.cpp
diff options
context:
space:
mode:
authorr.ramazanov <r.ramazanov@servplus.ru>2014-04-25 08:06:12 +0200
committerr.ramazanov <r.ramazanov@servplus.ru>2014-04-25 08:06:12 +0200
commit1c26eb715b7f5eb9854c7c17d1100f0a61a0c7a3 (patch)
tree980565110fab2977471b7975a63ac2018bfe1c91 /src/Mobs/ZombiePigman.cpp
parentMerge branch 'master' of https://github.com/mc-server/MCServer (diff)
parentMerge pull request #929 from archshift/master (diff)
downloadcuberite-1c26eb715b7f5eb9854c7c17d1100f0a61a0c7a3.tar
cuberite-1c26eb715b7f5eb9854c7c17d1100f0a61a0c7a3.tar.gz
cuberite-1c26eb715b7f5eb9854c7c17d1100f0a61a0c7a3.tar.bz2
cuberite-1c26eb715b7f5eb9854c7c17d1100f0a61a0c7a3.tar.lz
cuberite-1c26eb715b7f5eb9854c7c17d1100f0a61a0c7a3.tar.xz
cuberite-1c26eb715b7f5eb9854c7c17d1100f0a61a0c7a3.tar.zst
cuberite-1c26eb715b7f5eb9854c7c17d1100f0a61a0c7a3.zip
Diffstat (limited to 'src/Mobs/ZombiePigman.cpp')
-rw-r--r--src/Mobs/ZombiePigman.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/Mobs/ZombiePigman.cpp b/src/Mobs/ZombiePigman.cpp
new file mode 100644
index 000000000..c9d94face
--- /dev/null
+++ b/src/Mobs/ZombiePigman.cpp
@@ -0,0 +1,53 @@
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "ZombiePigman.h"
+#include "../World.h"
+
+
+
+
+
+cZombiePigman::cZombiePigman(void) :
+ super("ZombiePigman", mtZombiePigman, "mob.zombiepig.zpighurt", "mob.zombiepig.zpigdeath", 0.6, 1.8)
+{
+}
+
+
+
+
+
+void cZombiePigman::GetDrops(cItems & a_Drops, cEntity * a_Killer)
+{
+ 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);
+
+ cItems RareDrops;
+ RareDrops.Add(cItem(E_ITEM_GOLD));
+ AddRandomRareDropItem(a_Drops, RareDrops, LootingLevel);
+ AddRandomArmorDropItem(a_Drops, LootingLevel);
+ AddRandomWeaponDropItem(a_Drops, LootingLevel);
+}
+
+
+
+
+
+void cZombiePigman::KilledBy(cEntity * a_Killer)
+{
+ super::KilledBy(a_Killer);
+
+ if ((a_Killer != NULL) && (a_Killer->IsPlayer()))
+ {
+ // 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?
+ }
+}
+
+
+
+