from ..interfaces import FightingEntity, Map class Monster(FightingEntity): def act(self, m: Map) -> None: pass class Hedgehog(Monster): name = "hedgehog" maxhealth = 10 strength = 3