Basic item and monster interface

This commit is contained in:
Nicolas Margulies
2020-10-23 16:51:48 +02:00
parent 7c1c427892
commit 343e107b86
2 changed files with 20 additions and 1 deletions

View File

@ -1,5 +1,9 @@
from ..interfaces import FightingEntity
class Squirrel(FightingEntity):
class Monster(FightingEntity):
def behaviour(self, map):
pass
class Squirrel(Monster):
maxhealth = 10
strength = 3