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

44 lines
980 B
C
Raw Normal View History

#pragma once
#include "AggressiveMonster.h"
class cWither :
public cAggressiveMonster
{
typedef cAggressiveMonster super;
public:
cWither(void);
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;
2014-03-25 03:10:55 -04:00
// cEntity overrides
virtual bool Initialize(cWorld & a_World) override;
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
2014-04-25 18:32:30 -04:00
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
2014-03-24 06:29:19 -04:00
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
2014-07-04 05:55:09 -04:00
virtual void KilledBy(TakeDamageInfo & a_TDI) override;
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
} ;