summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Silverfish.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Silverfish.h')
-rw-r--r--source/Mobs/Silverfish.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/source/Mobs/Silverfish.h b/source/Mobs/Silverfish.h
new file mode 100644
index 000000000..7d675a9c0
--- /dev/null
+++ b/source/Mobs/Silverfish.h
@@ -0,0 +1,27 @@
+
+#pragma once
+
+#include "AggressiveMonster.h"
+
+
+
+
+
+class cSilverfish :
+ public cAggressiveMonster
+{
+ typedef cAggressiveMonster super;
+
+public:
+ cSilverfish(void) :
+ // 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)
+ {
+ }
+
+ CLASS_PROTODEF(cSilverfish);
+} ;
+
+
+
+