summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Slime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Slime.cpp')
-rw-r--r--source/Mobs/Slime.cpp52
1 files changed, 52 insertions, 0 deletions
diff --git a/source/Mobs/Slime.cpp b/source/Mobs/Slime.cpp
new file mode 100644
index 000000000..b8dc52d7c
--- /dev/null
+++ b/source/Mobs/Slime.cpp
@@ -0,0 +1,52 @@
+
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "Slime.h"
+
+//TODO Implement sized slimes
+
+
+
+
+
+cSlime::cSlime()
+{
+ m_MobType = 55;
+ GetMonsterConfig("Slime");
+}
+
+
+
+
+
+cSlime::~cSlime()
+{
+}
+
+
+
+
+
+bool cSlime::IsA( const char* a_EntityType )
+{
+ if( strcmp( a_EntityType, "cSlime" ) == 0 ) return true;
+ return cMonster::IsA( a_EntityType );
+}
+
+
+
+
+
+void cSlime::KilledBy( cEntity* a_Killer )
+{
+ //TODO: only when tiny
+ cItems Drops;
+ AddRandomDropItem(Drops, 0, 2, E_ITEM_SLIMEBALL);
+ m_World->SpawnItemPickups(Drops, m_Pos.x, m_Pos.y, m_Pos.z);
+
+ cMonster::KilledBy( a_Killer );
+}
+
+
+
+