2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 20:53:08 +00:00
|
|
|
#include "PassiveAggressiveMonster.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
2012-09-23 22:09:57 +00:00
|
|
|
#include "../Player.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 09:39:13 +00:00
|
|
|
cPassiveAggressiveMonster::cPassiveAggressiveMonster(const AString & a_ConfigName, char a_ProtocolMobType, const AString & a_SoundHurt, const AString & a_SoundDeath) :
|
|
|
|
super(a_ConfigName, a_ProtocolMobType, a_SoundHurt, a_SoundDeath)
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
|
|
|
m_EMPersonality = PASSIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-21 11:04:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cPassiveAggressiveMonster::DoTakeDamage(TakeDamageInfo & a_TDI)
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
2012-12-21 12:52:14 +00:00
|
|
|
super::DoTakeDamage(a_TDI);
|
|
|
|
|
|
|
|
if ((m_Target != NULL) && (m_Target->IsPlayer()))
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
|
|
|
cPlayer * Player = (cPlayer *) m_Target;
|
2012-12-21 11:04:08 +00:00
|
|
|
if (Player->GetGameMode() != 1)
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
|
|
|
m_EMState = CHASING;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-21 11:04:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|