diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-09-18 23:17:43 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-09-18 23:17:43 +0200 |
commit | 3e698d7b72ad7f58a1a2ab787f49c82e096845f6 (patch) | |
tree | cb7ae4dec5750c6e0c5116c80493d2b9e5a4eb52 /source/Mobs/SnowGolem.cpp | |
parent | Implemented redstone comparators (diff) | |
download | cuberite-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/SnowGolem.cpp')
-rw-r--r-- | source/Mobs/SnowGolem.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/source/Mobs/SnowGolem.cpp b/source/Mobs/SnowGolem.cpp new file mode 100644 index 000000000..51125542d --- /dev/null +++ b/source/Mobs/SnowGolem.cpp @@ -0,0 +1,26 @@ + +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "SnowGolem.h" + + + + + +cSnowGolem::cSnowGolem(void) : + super("SnowGolem", 97, "", "", 0.4, 1.8) +{ +} + + + + + +void cSnowGolem::GetDrops(cItems & a_Drops, cEntity * a_Killer) +{ + AddRandomDropItem(a_Drops, 0, 5, E_ITEM_SNOWBALL); +} + + + + |