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

51 lines
1.2 KiB
C
Raw Normal View History

#pragma once
#include "PassiveMonster.h"
class cSheep :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
2014-07-01 14:42:23 -04:00
/** The number is the color of the sheep.
2014-07-12 19:04:43 -04:00
Use E_META_WOOL_* constants for the wool color.
If you type -1, the server will generate a random color
with the GenerateNaturalRandomColor() function. */
2014-06-28 06:59:09 -04:00
cSheep(int a_Color = -1);
CLASS_PROTODEF(cSheep)
2014-10-20 16:55:07 -04:00
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
virtual void OnRightClicked(cPlayer & a_Player) override;
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
2014-01-25 15:19:52 -05:00
virtual const cItem GetFollowedItem(void) const override { return cItem(E_ITEM_WHEAT); }
2014-07-12 19:04:43 -04:00
/** Generates a random color for the sheep like the vanilla server.
The percent's where used are from the wiki: http://minecraft.gamepedia.com/Sheep#Breeding */
static NIBBLETYPE GenerateNaturalRandomColor(void);
bool IsSheared(void) const { return m_IsSheared; }
2014-06-28 07:19:32 -04:00
void SetSheared(bool a_IsSheared) { m_IsSheared = a_IsSheared; }
int GetFurColor(void) const { return m_WoolColor; }
void SetFurColor(int a_WoolColor) { m_WoolColor = a_WoolColor; }
private:
bool m_IsSheared;
int m_WoolColor;
2014-01-25 15:19:52 -05:00
int m_TimeToStopEating;
} ;