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 "Chicken.h"
|
2013-11-08 08:04:00 -05:00
|
|
|
#include "../World.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-08 08:04:00 -05:00
|
|
|
cChicken::cChicken(void) :
|
|
|
|
super("Chicken", mtChicken, "mob.chicken.hurt", "mob.chicken.hurt", 0.3, 0.4),
|
2013-11-08 11:16:36 -05:00
|
|
|
m_EggDropTimer(0)
|
2013-11-08 08:04:00 -05:00
|
|
|
{
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
2013-11-08 08:04:00 -05:00
|
|
|
|
|
|
|
|
|
|
|
void cChicken::Tick(float a_Dt, cChunk & a_Chunk)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-11-08 08:04:00 -05:00
|
|
|
super::Tick(a_Dt, a_Chunk);
|
|
|
|
|
2013-11-08 15:06:31 -05:00
|
|
|
if ((m_EggDropTimer == 6000) && (m_World->GetTickRandomNumber(1) == 0))
|
2013-11-08 08:04:00 -05:00
|
|
|
{
|
|
|
|
cItems Drops;
|
2013-11-08 11:16:36 -05:00
|
|
|
m_EggDropTimer = 0;
|
2013-11-08 08:04:00 -05:00
|
|
|
Drops.push_back(cItem(E_ITEM_EGG, 1));
|
|
|
|
m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10);
|
|
|
|
}
|
2013-11-08 15:06:31 -05:00
|
|
|
else if (m_EggDropTimer == 12000)
|
2013-11-08 08:04:00 -05:00
|
|
|
{
|
|
|
|
cItems Drops;
|
2013-11-08 11:16:36 -05:00
|
|
|
m_EggDropTimer = 0;
|
2013-11-08 08:04:00 -05:00
|
|
|
Drops.push_back(cItem(E_ITEM_EGG, 1));
|
|
|
|
m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-11-08 11:16:36 -05:00
|
|
|
m_EggDropTimer++;
|
2013-11-08 08:04:00 -05:00
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 06:39:56 -04:00
|
|
|
void cChicken::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
AddRandomDropItem(a_Drops, 0, 2, E_ITEM_FEATHER);
|
2013-07-01 06:39:56 -04:00
|
|
|
a_Drops.push_back(cItem(IsOnFire() ? E_ITEM_COOKED_CHICKEN : E_ITEM_RAW_CHICKEN, 1));
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-08 08:04:00 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|