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

46 lines
999 B
C
Raw Normal View History

#pragma once
#include "AggressiveMonster.h"
2020-04-13 12:38:06 -04:00
class cWither:
public cAggressiveMonster
{
2020-04-13 12:38:06 -04:00
using Super = cAggressiveMonster;
2016-02-05 16:45:45 -05:00
public:
2020-04-13 12:38:06 -04:00
cWither();
CLASS_PROTODEF(cWither)
2014-03-24 06:29:19 -04:00
unsigned int GetWitherInvulnerableTicks(void) const { return m_WitherInvulnerableTicks; }
void SetWitherInvulnerableTicks(unsigned int a_Ticks) { m_WitherInvulnerableTicks = a_Ticks; }
2014-03-25 04:32:58 -04:00
/** Returns whether the wither is invulnerable to arrows. */
bool IsArmored(void) const;
2016-02-05 16:45:45 -05:00
2014-03-25 03:10:55 -04:00
// cEntity overrides
2014-10-20 16:55:07 -04:00
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
2014-04-25 18:32:30 -04:00
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
2014-07-04 05:55:09 -04:00
virtual void KilledBy(TakeDamageInfo & a_TDI) override;
2016-02-05 16:45:45 -05:00
virtual bool IsUndead(void) override { return true; }
2014-03-24 06:29:19 -04: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 03:10:55 -04:00
} ;