Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
carp.c
Go to the documentation of this file.
1class Carp extends Edible_Base
2{
3 override bool CanBeCookedOnStick()
4 {
5 return false;
6 }
7
8 override bool CanBeCooked()
9 {
10 return false;
11 }
12
13 override bool IsCorpse()
14 {
15 return true;
16 }
17
18 override bool CanDecay()
19 {
20 return true;
21 }
22}
override bool IsCorpse()
override bool CanDecay()
bool CanBeCooked()
Definition itembase.c:7478
bool CanBeCookedOnStick()
Definition itembase.c:7483