blob: 849633b5be787fc80102cb41b282774f0e5d0f33 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#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;
}
};
|