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