summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemRottenFlesh.h
blob: a4b34e8bc81af720cf9ffa2a17744d90b7af4595 (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

#pragma once

#include "ItemFood.h"





class cItemRottenFleshHandler :
	public cItemFoodHandler
{
	typedef cItemFoodHandler super;

public:
	cItemRottenFleshHandler()
		: super(E_ITEM_ROTTEN_FLESH, FoodInfo(4, 0.8))
	{
	}

	virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) override
	{
		if (!super::EatItem(a_Player, a_Item))
		{
			return false;
		}

		if (GetRandomProvider().RandBool(0.8))
		{
			a_Player->AddEntityEffect(cEntityEffect::effHunger, 600, 0);
		}

		return true;
	}

};