summaryrefslogtreecommitdiffstats
path: root/src/Mobs/WitherSkeleton.cpp
blob: 6c3a79095b58c03fe2b408e4412a21b4e24a13cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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<short>(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));
}