Dayz Explorer 1.29.162510
Loading...
Searching...
No Matches
peachescan.c
Go to the documentation of this file.
1class PeachesCan : Edible_Base
2{
3 override void Open()
4 {
5 ReplaceEdibleWithNew("PeachesCan_Opened");
6 }
7
8 override bool IsOpen()
9 {
10 return false;
11 }
12
13 override float GetQuantityNormalizedScripted()
14 {
15 return 1.0;
16 }
17}
Open
Implementations only.
void ReplaceEdibleWithNew(string typeName)
bool IsOpen()
Definition itembase.c:9038
float GetQuantityNormalizedScripted()
Definition itembase.c:8335