Dayz Explorer 1.29.162510
Loading...
Searching...
No Matches
actioneattetracyclineantibiotics.c
Go to the documentation of this file.
1class ActionEatTetracyclineAntibiotics: ActionConsume
2{
3 void ActionEatTetracyclineAntibiotics()
4 {
5 m_CommandUID = DayZPlayerConstants.CMD_ACTIONMOD_EAT;
6 m_CommandUIDProne = DayZPlayerConstants.CMD_ACTIONFB_EAT;
7 }
8
9 override int IsEat()
10 {
11 return true;
12 }
13
14 override void ApplyModifiers( ActionData action_data )
15 {
16 //action_data.m_Player.m_ModifiersManager.ActivateModifier(eModifiers.MDF_CHEMICALPOISON);
17 }
18};
ActionBase ActionData
Definition actionbase.c:30
bool IsEat()
Definition actionbase.c:289
DayZPlayerConstants
defined in C++
Definition dayzplayer.c:602