2012-12-21 06:04:08 -05:00
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "Monster.h"
|
2011-12-25 17:47:12 -05:00
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cPassiveMonster :
|
|
|
|
public cMonster
|
2011-12-25 17:47:12 -05:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
typedef cMonster super;
|
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
public:
|
2013-10-20 04:23:30 -04:00
|
|
|
cPassiveMonster(const AString & a_ConfigName, eType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height);
|
2012-12-21 06:04:08 -05:00
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
/// When hit by someone, run away
|
2014-04-25 18:32:30 -04:00
|
|
|
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
|
2014-01-29 14:02:41 -05:00
|
|
|
/** Returns the item that the animal of this class follows when a player holds it in hand
|
|
|
|
Return an empty item not to follow (default). */
|
2014-01-29 13:15:26 -05:00
|
|
|
virtual const cItem GetFollowedItem(void) const { return cItem(); }
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
|
|
|
|
|