1
0
Fork 0
cuberite-2a/src/Items/ItemPoisonousPotato.h

38 lines
533 B
C++

#pragma once
#include "ItemFood.h"
class cItemPoisonousPotatoHandler final:
public cItemFoodHandler
{
using Super = cItemFoodHandler;
public:
constexpr cItemPoisonousPotatoHandler(int a_ItemType):
Super(a_ItemType, FoodInfo(2, 1.2))
{
}
virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) const override
{
if (!Super::EatItem(a_Player, a_Item))
{
return false;
}
if (GetRandomProvider().RandBool(0.6))
{
a_Player->AddEntityEffect(cEntityEffect::effPoison, 100, 0);
}
return true;
}
};