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