Basic item and monster interface
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user