summaryrefslogtreecommitdiffstats
path: root/src/Mobs/NewGiant.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/NewGiant.cpp')
-rw-r--r--src/Mobs/NewGiant.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Mobs/NewGiant.cpp b/src/Mobs/NewGiant.cpp
new file mode 100644
index 000000000..a6bb0b3ed
--- /dev/null
+++ b/src/Mobs/NewGiant.cpp
@@ -0,0 +1,27 @@
+
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "NewGiant.h"
+
+
+
+
+
+cNewGiant::cNewGiant(void) :
+ super("Giant", mtGiant, "mob.zombie.hurt", "mob.zombie.death", 3.6, 10.8)
+{
+
+}
+
+
+
+
+
+void cNewGiant::GetDrops(cItems & a_Drops, cEntity * a_Killer)
+{
+ AddRandomDropItem(a_Drops, 10, 50, E_ITEM_ROTTEN_FLESH);
+}
+
+
+
+