Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
pigsteakmeat.c
Go to the documentation of this file.
1class PigSteakMeat extends Edible_Base
2{
3 override bool CanBeCooked()
4 {
5 return true;
6 }
7
8 override bool CanBeCookedOnStick()
9 {
10 return true;
11 }
12
13 override bool IsMeat()
14 {
15 return true;
16 }
17
18 override bool CanDecay()
19 {
20 return true;
21 }
22
23 override void SetActions()
24 {
25 super.SetActions();
26
29
32 }
33}
ActionForceFeedSmallCB ActionForceFeed
void AddAction(typename actionName)
override bool CanDecay()
override bool CanBeCookedOnStick()
Definition pigsteakmeat.c:8
override bool CanBeCooked()
Definition pigsteakmeat.c:3
override bool IsMeat()
override void SetActions()