summaryrefslogtreecommitdiffstats
path: root/source/Mobs/IronGolem.cpp
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2013-09-18 23:17:43 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2013-09-18 23:17:43 +0200
commit3e698d7b72ad7f58a1a2ab787f49c82e096845f6 (patch)
treecb7ae4dec5750c6e0c5116c80493d2b9e5a4eb52 /source/Mobs/IronGolem.cpp
parentImplemented redstone comparators (diff)
downloadcuberite-3e698d7b72ad7f58a1a2ab787f49c82e096845f6.tar
cuberite-3e698d7b72ad7f58a1a2ab787f49c82e096845f6.tar.gz
cuberite-3e698d7b72ad7f58a1a2ab787f49c82e096845f6.tar.bz2
cuberite-3e698d7b72ad7f58a1a2ab787f49c82e096845f6.tar.lz
cuberite-3e698d7b72ad7f58a1a2ab787f49c82e096845f6.tar.xz
cuberite-3e698d7b72ad7f58a1a2ab787f49c82e096845f6.tar.zst
cuberite-3e698d7b72ad7f58a1a2ab787f49c82e096845f6.zip
Diffstat (limited to 'source/Mobs/IronGolem.cpp')
-rw-r--r--source/Mobs/IronGolem.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/source/Mobs/IronGolem.cpp b/source/Mobs/IronGolem.cpp
new file mode 100644
index 000000000..42d312c23
--- /dev/null
+++ b/source/Mobs/IronGolem.cpp
@@ -0,0 +1,26 @@
+
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "IronGolem.h"
+
+
+
+
+
+cIronGolem::cIronGolem(void) :
+ super("IronGolem", 99, "mob.IronGolem.hit", "mob.IronGolem.death", 1.4, 2.9)
+{
+}
+
+
+
+
+
+void cIronGolem::GetDrops(cItems & a_Drops, cEntity * a_Killer)
+{
+ AddRandomDropItem(a_Drops, 0, 5, E_ITEM_IRON);
+}
+
+
+
+