squirrel-battle/dungeonbattle/entities/monsters.py

10 lines
171 B
Python
Raw Normal View History

from ..interfaces import FightingEntity
2020-10-23 14:51:48 +00:00
class Monster(FightingEntity):
2020-10-23 16:02:57 +00:00
def act(self, map):
2020-10-23 14:51:48 +00:00
pass
class Squirrel(Monster):
maxhealth = 10
strength = 3