Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
cultivation.c
Go to the documentation of this file.
2{
3 override void SetActions()
4 {
5 super.SetActions();
6
11 }
12};
15class Plant_Cannabis : PlantBase {};
16class Plant_Pepper : PlantBase
17{
18 void Plant_Pepper()
19 {
20 m_FullMaturityTime = 2250;
21 }
22};
23class Plant_Potato : PlantBase
24{
25 void Plant_Potato()
26 {
27 m_FullMaturityTime = 2850;
28 }
29};
30class Plant_Pumpkin : PlantBase
31{
32 void Plant_Pumpkin()
33 {
34 m_FullMaturityTime = 2850;
35 }
36};
37class Plant_Tomato : PlantBase
38{
39 void Plant_Tomato()
40 {
41 m_FullMaturityTime = 1650;
42 }
43};
44class Plant_Zucchini : PlantBase
45{
46 void Plant_Zucchini()
47 {
48 m_FullMaturityTime = 1350;
49 }
50};
53{
54 override void SetActions()
55 {
56 super.SetActions();
57
60 }
61};
void AddAction(typename actionName)