From 60bcc06f43e0c249204149153976e534b239d138 Mon Sep 17 00:00:00 2001 From: Mat Date: Sat, 4 Apr 2020 14:44:17 +0300 Subject: Implement wither skeletons (#4563) --- src/Mobs/WitherSkeleton.cpp | 62 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/Mobs/WitherSkeleton.cpp (limited to 'src/Mobs/WitherSkeleton.cpp') diff --git a/src/Mobs/WitherSkeleton.cpp b/src/Mobs/WitherSkeleton.cpp new file mode 100644 index 000000000..7dd8d5017 --- /dev/null +++ b/src/Mobs/WitherSkeleton.cpp @@ -0,0 +1,62 @@ + +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "WitherSkeleton.h" +#include "../World.h" +#include "../ClientHandle.h" + + + + +cWitherSkeleton::cWitherSkeleton(void) : + super("WitherSkeleton", mtWitherSkeleton, "entity.wither_skeleton.hurt", "entity.wither_skeleton.death", "entity.wither_skeleton.ambient", 0.7, 2.4) +{ +} + + + + + +bool cWitherSkeleton::Attack(std::chrono::milliseconds a_Dt) +{ + if (GetTarget() == nullptr) + { + return false; + } + + GetTarget()->AddEntityEffect(cEntityEffect::effWither, 200, 0); + return super::Attack(a_Dt); +} + + + + + +void cWitherSkeleton::GetDrops(cItems & a_Drops, cEntity * a_Killer) +{ + unsigned int LootingLevel = 0; + if (a_Killer != nullptr) + { + LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(cEnchantments::enchLooting); + } + AddRandomUncommonDropItem(a_Drops, 33.0f, E_ITEM_COAL); + AddRandomUncommonDropItem(a_Drops, 8.5f, E_ITEM_STONE_SWORD, GetRandomProvider().RandInt(50)); + + cItems RareDrops; + RareDrops.Add(cItem(E_ITEM_HEAD, 1, 1)); + AddRandomRareDropItem(a_Drops, RareDrops, LootingLevel); + + AddRandomDropItem(a_Drops, 0, 2 + LootingLevel, E_ITEM_BONE); + AddRandomArmorDropItem(a_Drops, LootingLevel); + AddRandomWeaponDropItem(a_Drops, LootingLevel); +} + + + + + +void cWitherSkeleton::SpawnOn(cClientHandle & a_ClientHandle) +{ + super::SpawnOn(a_ClientHandle); + a_ClientHandle.SendEntityEquipment(*this, 0, cItem(E_ITEM_STONE_SWORD)); +} -- cgit v1.2.3