blob: 0ec30ecf464783dedd33eb3273823ccd7e99d583 (
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
|
#pragma once
#include "ItemFood.h"
class cItemRottenFleshHandler final : public cItemFoodHandler
{
using Super = cItemFoodHandler;
public:
constexpr cItemRottenFleshHandler(int a_ItemType) :
Super(a_ItemType, FoodInfo(4, 0.8))
{
}
virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) const override
{
if (!Super::EatItem(a_Player, a_Item))
{
return false;
}
if (GetRandomProvider().RandBool(0.8))
{
a_Player->AddEntityEffect(cEntityEffect::effHunger, 600, 0);
}
return true;
}
};
|