squirrel-battle/dungeonbattle/entities/monsters.py

10 lines
171 B
Python

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