Files
Igor-kr/farm_core/agent.py
T
Dmitry Belan f358639881 fix
2026-07-01 13:47:27 +03:00

16 lines
355 B
Python

class FarmAgent:
def __init__(self, name, module):
self.name = name
self._module = module
@staticmethod
def get_manual():
return "Инструкция: pH 6.0"
def harvest(self):
ready = [c for c in self._module.cultures if c._stage == "Красный"]
return len(ready)
# TODO: fix this later