2012-12-21 07:21:20 -05:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "AggressiveMonster.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-12-21 07:21:20 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cSilverfish :
|
|
|
|
public cAggressiveMonster
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-21 07:21:20 -05:00
|
|
|
typedef cAggressiveMonster super;
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
public:
|
2012-12-22 04:39:13 -05:00
|
|
|
cSilverfish(void) :
|
2013-07-01 06:39:56 -04:00
|
|
|
// TODO: The size is only a guesstimate, measure in vanilla and fix the size values here
|
|
|
|
super("Silverfish", 60, "mob.silverfish.hit", "mob.silverfish.kill", 0.9, 0.3)
|
2012-12-22 04:39:13 -05:00
|
|
|
{
|
|
|
|
}
|
2012-12-21 07:21:20 -05:00
|
|
|
|
|
|
|
CLASS_PROTODEF(cSilverfish);
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|