squirrel-battle/dungeonbattle/entities/monsters.py

12 lines
191 B
Python

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