blob: 2df333dbc99373cf69594853fb0976d193e7d827 (
plain) (
tree)
|
|
#pragma once
#include "AggressiveMonster.h"
class cSilverfish :
public cAggressiveMonster
{
typedef cAggressiveMonster super;
public:
cSilverfish(void) :
super("Silverfish", mtSilverfish, "mob.silverfish.hit", "mob.silverfish.kill", 0.3, 0.7)
{
}
CLASS_PROTODEF(cSilverfish)
} ;
|