SZI_PROJEKT_GR1_TRAKTOR/Cucumber.py
marcinljablonski 6cfeedcd7e refactored
2019-05-07 15:37:27 +02:00

15 lines
294 B
Python

from Plant import Plant
class Cucumber(Plant):
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