squirrel-battle/dungeonbattle/entities/monsters.py
2020-11-06 16:13:28 +01:00

12 lines
189 B
Python

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