2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "PassiveMonster.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBat :
|
|
|
|
public cPassiveMonster
|
|
|
|
{
|
|
|
|
typedef cPassiveMonster super;
|
|
|
|
|
|
|
|
public:
|
|
|
|
cBat(void) :
|
2013-10-10 19:41:54 -04:00
|
|
|
super("Bat", 65, "mob.bat.hurt", "mob.bat.death", 0.5, 0.9)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CLASS_PROTODEF(cBat);
|
2013-10-09 16:02:59 -04:00
|
|
|
|
|
|
|
bool IsHanging(void) const {return false; }
|
2013-07-29 07:13:03 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|