2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
|
|
#include "Mooshroom.h"
|
2014-02-23 13:44:58 -05:00
|
|
|
#include "../Entities/Player.h"
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cMooshroom::cMooshroom(void) :
|
2013-10-20 04:23:30 -04:00
|
|
|
super("Mooshroom", mtMooshroom, "mob.cow.hurt", "mob.cow.hurt", 0.9, 1.3)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMooshroom::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
|
|
|
{
|
2014-02-23 13:44:58 -05:00
|
|
|
int LootingLevel = 0;
|
|
|
|
if (a_Killer != NULL)
|
|
|
|
{
|
|
|
|
LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(cEnchantments::enchLooting);
|
|
|
|
}
|
|
|
|
AddRandomDropItem(a_Drops, 0, 2 + LootingLevel, E_ITEM_LEATHER);
|
|
|
|
AddRandomDropItem(a_Drops, 1, 3 + LootingLevel, IsOnFire() ? E_ITEM_STEAK : E_ITEM_RAW_BEEF);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-23 13:44:58 -05:00
|
|
|
|
|
|
|
|
|
|
|
void cMooshroom::OnRightClicked(cPlayer & a_Player)
|
|
|
|
{
|
|
|
|
switch (a_Player.GetEquippedItem().m_ItemType)
|
|
|
|
{
|
|
|
|
case E_ITEM_BUCKET:
|
|
|
|
{
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
a_Player.GetInventory().AddItem(E_ITEM_MILK);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case E_ITEM_BOWL:
|
|
|
|
{
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
a_Player.GetInventory().AddItem(E_ITEM_MUSHROOM_SOUP);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case E_ITEM_SHEARS:
|
|
|
|
{
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.UseEquippedItem();
|
|
|
|
}
|
|
|
|
|
|
|
|
cItems Drops;
|
|
|
|
Drops.push_back(cItem(E_BLOCK_RED_MUSHROOM, 5, 0));
|
|
|
|
m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10);
|
2014-02-27 16:04:48 -05:00
|
|
|
m_World->SpawnMob(GetPosX(), GetPosY(), GetPosZ(), cMonster::mtCow);
|
|
|
|
Destroy();
|
2014-02-23 13:44:58 -05:00
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|