2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 20:53:08 +00:00
|
|
|
#include "Slime.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
2012-12-21 11:04:08 +00:00
|
|
|
// TODO: Implement sized slimes
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 09:39:13 +00:00
|
|
|
cSlime::cSlime(void) :
|
|
|
|
super("Slime", 55, "mob.slime.attack", "mob.slime.attack")
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 11:04:08 +00:00
|
|
|
void cSlime::GetDrops(cItems & a_Drops, cPawn * a_Killer)
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
2012-12-21 11:04:08 +00:00
|
|
|
// TODO: only when tiny
|
|
|
|
AddRandomDropItem(a_Drops, 0, 2, E_ITEM_SLIMEBALL);
|
2012-06-14 13:06:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|