SZI_PROJEKT_GR1_TRAKTOR/Tomato.py
Paulina J b4baf2236d p
2019-06-03 13:37:21 +02:00

16 lines
316 B
Python

from Plant import Plant
class Tomato(Plant):
name = "Tomato"
is_alive = True
ttl = 12000
hydration = 41
soil_level = 41
dehydration_ratio = 0.7
desoil_ratio = 0.8
max_soil_lvl = 40
optimal_soil_ratio = 2
max_hydration_lvl = 100
optimal_hydration_ratio = 2
ready = 10