squirrel-battle/dungeonbattle/entities/monsters.py
2020-11-10 21:47:36 +01:00

13 lines
211 B
Python

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