2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "Sheep.h"
|
2012-12-21 06:04:08 -05:00
|
|
|
#include "../BlockID.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cSheep::cSheep(void) :
|
2012-12-22 04:39:13 -05:00
|
|
|
super("Sheep", 91, "mob.sheep.say", "mob.sheep.say"),
|
2012-06-14 09:06:06 -04:00
|
|
|
m_IsSheared(false),
|
2012-12-21 06:04:08 -05:00
|
|
|
m_WoolColor(E_META_WOOL_WHITE)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
void cSheep::GetDrops(cItems & a_Drops, cPawn * a_Killer)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
if (!m_IsSheared)
|
|
|
|
{
|
2013-02-16 06:12:56 -05:00
|
|
|
a_Drops.push_back(cItem(E_BLOCK_WOOL, 1, m_WoolColor));
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|