summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Ghast.h
blob: 7312b25c9e6df2618163ad233f4ddeec573b5591 (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

#pragma once

#include "AggressiveMonster.h"





class cGhast :
	public cAggressiveMonster
{
	typedef cAggressiveMonster super;

public:
	cGhast(void);

	CLASS_PROTODEF(cGhast)

	virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
	virtual bool Attack(std::chrono::milliseconds a_Dt) override;
	virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;

	bool IsCharging(void) const { return m_IsCharging; }

private:
	/** Specifies whether or not the ghast has started shooting a fireball. */
	bool m_IsCharging;

	/** Number of ticks until the ghast tries to fly to another position. */
	int m_FlightCooldown;

	/** Number of ticks until a projectile is created.
	Only used while m_IsCharging is true. */
	int m_TicksUntilShot;
} ;