2020-10-23 16:51:48 +02:00

10 lines
177 B
Python

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