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

48 lines
918 B
C
Raw Normal View History

2014-12-20 09:31:34 +00:00
#pragma once
#include "PassiveMonster.h"
enum class eRabbitType : UInt8
{
Brown = 0,
White = 1,
Black = 2,
BlackAndWhite = 3,
Gold = 4,
SaltAndPepper = 5,
TheKillerBunny = 99
};
2014-12-20 09:31:34 +00:00
class cRabbit :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cRabbit();
cRabbit(eRabbitType Type, int MoreCarrotTicks = 0);
2014-12-20 09:31:34 +00:00
CLASS_PROTODEF(cRabbit)
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
virtual const cItem GetFollowedItem(void) const override { return cItem(E_ITEM_CARROT); }
eRabbitType GetRabbitType() const { return m_Type; }
UInt8 GetRabbitTypeAsNumber() const { return static_cast<UInt8>(GetRabbitType()); }
int GetMoreCarrotTicks() const { return m_MoreCarrotTicks; }
private:
eRabbitType m_Type;
int m_MoreCarrotTicks; // Ticks until the Rabbit eat planted Carrots
2014-12-20 12:04:42 +00:00
} ;