SZI_PROJEKT_GR1_TRAKTOR/Cucumber.py

15 lines
294 B
Python
Raw Normal View History

2019-05-06 12:51:41 +02:00
from Plant import Plant
class Cucumber(Plant):
2019-05-07 15:37:27 +02:00
is_alive = True
ttl = 40
hydration = 40
soil_level = 40
dehydration_ratio = 0.8
desoil_ratio = 0.7
max_soil_lvl = 40
optimal_soil_ratio = 2
max_hydration_lvl = 40
optimal_hydration_ratio = 2
ready = 11