diff options
Diffstat (limited to 'src/Mobs/NewSilverfish.h')
-rw-r--r-- | src/Mobs/NewSilverfish.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Mobs/NewSilverfish.h b/src/Mobs/NewSilverfish.h new file mode 100644 index 000000000..e056a0547 --- /dev/null +++ b/src/Mobs/NewSilverfish.h @@ -0,0 +1,26 @@ + +#pragma once + +#include "ANewMonster.h" + + + + + +class cNewSilverfish : + public cNewMonster +{ + typedef cNewMonster super; + +public: + cNewSilverfish(void) : + super("Silverfish", mtSilverfish, "mob.silverfish.hit", "mob.silverfish.kill", 0.3, 0.7) + { + } + + CLASS_PROTODEF(cNewSilverfish) +} ; + + + + |