squirrel-battle/dungeonbattle/entities/monsters.py

10 lines
177 B
Python
Raw Normal View History

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