1
0
Fork 0
cuberite-2a/src/Mobs/Wither.h

42 lines
1.0 KiB
C
Raw Permalink Normal View History

#pragma once
#include "AggressiveMonster.h"
2020-04-13 16:38:06 +00:00
class cWither:
public cAggressiveMonster
{
2020-04-13 16:38:06 +00:00
using Super = cAggressiveMonster;
2016-02-05 21:45:45 +00:00
public:
2020-04-13 16:38:06 +00:00
cWither();
CLASS_PROTODEF(cWither)
2014-03-24 10:29:19 +00:00
unsigned int GetWitherInvulnerableTicks(void) const { return m_WitherInvulnerableTicks; }
void SetWitherInvulnerableTicks(unsigned int a_Ticks) { m_WitherInvulnerableTicks = a_Ticks; }
2014-03-25 08:32:58 +00:00
/** Returns whether the wither is invulnerable to arrows. */
bool IsArmored(void) const;
2016-02-05 21:45:45 +00:00
2014-03-25 07:10:55 +00:00
// cEntity overrides
2014-04-25 22:32:30 +00:00
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
virtual bool IsUndead(void) override { return true; }
virtual void KilledBy(TakeDamageInfo & a_TDI) override;
virtual void SpawnOn(cClientHandle & a_Client) override;
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
2014-03-24 10:29:19 +00:00
private:
/** The number of ticks of invulnerability left after being initially created. Zero once invulnerability has expired. */
unsigned int m_WitherInvulnerableTicks;
2014-03-25 07:10:55 +00:00
} ;