diff options
Diffstat (limited to 'source/Mobs/Slime.cpp')
-rw-r--r-- | source/Mobs/Slime.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source/Mobs/Slime.cpp b/source/Mobs/Slime.cpp index ee7093b73..b209ac869 100644 --- a/source/Mobs/Slime.cpp +++ b/source/Mobs/Slime.cpp @@ -9,8 +9,10 @@ -cSlime::cSlime(void) : - super("Slime", 55, "mob.slime.attack", "mob.slime.attack") +/// Creates a slime of the specified size; size is 1 .. 3, with 1 being the smallest +cSlime::cSlime(int a_Size) : + super("Slime", 55, "mob.slime.attack", "mob.slime.attack", 0.6 * a_Size, 0.6 * a_Size), + m_Size(a_Size) { } @@ -18,7 +20,7 @@ cSlime::cSlime(void) : -void cSlime::GetDrops(cItems & a_Drops, cPawn * a_Killer) +void cSlime::GetDrops(cItems & a_Drops, cEntity * a_Killer) { // TODO: only when tiny AddRandomDropItem(a_Drops, 0, 2, E_ITEM_SLIMEBALL); |