summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemPoisonousPotato.h
blob: 1950db90e67089f5f3ca9aeb0d074a45ef0813f1 (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:
	public cItemFoodHandler
{
	using Super = cItemFoodHandler;

public:

	cItemPoisonousPotatoHandler():
		Super(E_ITEM_POISONOUS_POTATO, FoodInfo(2, 1.2))
	{
	}

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

		if (GetRandomProvider().RandBool(0.6))
		{
			a_Player->AddEntityEffect(cEntityEffect::effPoison, 100, 0);
		}

		return true;
	}

};