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 "Cavespider.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
cCavespider::cCavespider(void)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
m_MobType = 59;
|
|
|
|
GetMonsterConfig("Cavespider");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
bool cCavespider::IsA(const char * a_EntityType)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
return ((strcmp(a_EntityType, "cCaveSpider") == 0) || super::IsA(a_EntityType));
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cCavespider::Tick(float a_Dt)
|
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
super::Tick(a_Dt);
|
|
|
|
// TODO: Check vanilla if cavespiders really get passive during the day
|
2012-11-01 17:38:20 -04:00
|
|
|
m_EMPersonality = (GetWorld()->GetTimeOfDay() < (12000 + 1000)) ? PASSIVE : AGGRESSIVE;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
void cCavespider::GetDrops(cItems & a_Drops, cPawn * 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_STRING);
|
|
|
|
AddRandomDropItem(a_Drops, 0, 1, E_ITEM_SPIDER_EYE);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|