Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
shrimp.c
Go to the documentation of this file.
1class Shrimp extends Edible_Base
2{
3 override bool CanBeCookedOnStick()
4 {
5 return true;
6 }
7
8 override bool CanBeCooked()
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
24 {
25 return true;
26 }
27
28 override void SetActions()
29 {
30 super.SetActions();
31
34 }
35}
ActionForceFeedSmallCB ActionForceFeed
void AddAction(typename actionName)
override bool CanDecay()
Definition shrimp.c:18
override bool UseConfigInitTemperature()
Definition shrimp.c:23
override bool CanBeCookedOnStick()
Definition shrimp.c:3
override bool CanBeCooked()
Definition shrimp.c:8
override bool IsMeat()
Definition shrimp.c:13
override void SetActions()
Definition shrimp.c:28