SZI_PROJEKT_GR1_TRAKTOR/Tomato.py

16 lines
332 B
Python
Raw Normal View History

2019-05-06 12:51:41 +02:00
from Plant import Plant
class Tomato(Plant):
2019-06-03 14:42:39 +02:00
name = 1
2019-05-07 15:37:27 +02:00
is_alive = True
ttl = 1000 #21474836
hydration = 500 #80
soil_level = 400
2019-06-03 14:42:39 +02:00
dehydration_ratio = 1
desoil_ratio = 1
max_soil_lvl = 990 #40
2019-05-07 15:37:27 +02:00
optimal_soil_ratio = 2
max_hydration_lvl = 990 #100
2019-05-07 15:37:27 +02:00
optimal_hydration_ratio = 2
ready = 200