from ..interfaces import FightingEntity class Monster(FightingEntity): def act(self, map): pass class Squirrel(Monster): maxhealth = 10 strength = 3