blob: c4c4ae3d15d5b72468cfc69eb074af514868c2fc (
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
|
#pragma once
#include "AggressiveMonster.h"
#include "Villager.h"
class cZombieVillager :
public cAggressiveMonster
{
typedef cAggressiveMonster super;
public:
cZombieVillager(cVillager::eVillagerType a_Profession);
CLASS_PROTODEF(cZombieVillager)
virtual void GetDrops (cItems & a_Drops, cEntity * a_Killer = nullptr) override;
virtual void Tick (std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
virtual void OnRightClicked (cPlayer & a_Player) override;
virtual bool IsUndead (void) override { return true; }
int ConversionTime (void) const { return m_ConversionTime; }
cVillager::eVillagerType GetProfession (void) const { return m_Profession; }
private:
int m_ConversionTime;
cVillager::eVillagerType m_Profession;
} ;
|