2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
#include "cCow.h"
|
|
|
|
|
2011-12-21 15:42:34 -05:00
|
|
|
//TODO: Milk Cow
|
2011-10-25 19:46:01 -04:00
|
|
|
|
|
|
|
cCow::cCow()
|
|
|
|
{
|
|
|
|
m_MobType = 92;
|
|
|
|
GetMonsterConfig("Cow");
|
|
|
|
}
|
|
|
|
|
|
|
|
cCow::~cCow()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cCow::IsA( const char* a_EntityType )
|
|
|
|
{
|
|
|
|
if( strcmp( a_EntityType, "cCow" ) == 0 ) return true;
|
|
|
|
return cMonster::IsA( a_EntityType );
|
|
|
|
}
|
|
|
|
|
|
|
|
void cCow::KilledBy( cEntity* a_Killer )
|
|
|
|
{
|
2011-12-21 15:42:34 -05:00
|
|
|
//Drops 0-2 Lether
|
|
|
|
cMonster::RandomDropItem(E_ITEM_LEATHER, 0, 2);
|
|
|
|
|
2011-12-27 21:10:05 -05:00
|
|
|
if(GetMetaData() == BURNING)
|
|
|
|
{
|
|
|
|
cMonster::RandomDropItem(E_ITEM_STEAK, 1, 3);
|
|
|
|
}else{
|
|
|
|
cMonster::RandomDropItem(E_ITEM_RAW_BEEF, 1, 3);
|
|
|
|
}
|
2011-12-21 15:42:34 -05:00
|
|
|
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
cMonster::KilledBy( a_Killer );
|
|
|
|
}
|