Dayz Explorer 1.29.162510
Loading...
Searching...
No Matches
rabbit.c
Go to the documentation of this file.
1class DeadRabbit : Edible_Base
2{
3 void DeadRabbit()
4 {
5 CacheSkinningBloodInfectionChance(eAgents.SALMONELLA);
6 }
7
8 override bool CanBeCookedOnStick()
9 {
10 return false;
11 }
12
13 override bool CanBeCooked()
14 {
15 return false;
16 }
17
18 override bool IsCorpse()
19 {
20 return true;
21 }
22
23 override bool CanDecay()
24 {
25 return true;
26 }
27}
override bool IsCorpse()
override bool CanDecay()
eAgents
Definition eagents.c:3
bool CanBeCooked()
Definition itembase.c:7556
bool CanBeCookedOnStick()
Definition itembase.c:7561