2019-05-06 12:51:41 +02:00
|
|
|
from Plant import Plant
|
|
|
|
|
|
|
|
class Cucumber(Plant):
|
2019-06-03 14:42:39 +02:00
|
|
|
name = 0
|
2019-05-07 15:37:27 +02:00
|
|
|
is_alive = True
|
2019-06-08 17:48:36 +02:00
|
|
|
ttl = 100000 #21474836
|
|
|
|
hydration = 900 #70
|
|
|
|
soil_level = 800 #70
|
|
|
|
dehydration_ratio = 1
|
2019-06-03 14:42:39 +02:00
|
|
|
desoil_ratio = 1
|
2019-06-08 17:48:36 +02:00
|
|
|
max_soil_lvl = 990 #40
|
2019-05-07 15:37:27 +02:00
|
|
|
optimal_soil_ratio = 2
|
2019-06-08 17:48:36 +02:00
|
|
|
max_hydration_lvl = 990 # 40
|
2019-05-07 15:37:27 +02:00
|
|
|
optimal_hydration_ratio = 2
|
2019-06-08 17:48:36 +02:00
|
|
|
ready = 300
|