10 lines
171 B
Python
10 lines
171 B
Python
from ..interfaces import FightingEntity
|
|
|
|
class Monster(FightingEntity):
|
|
def act(self, map):
|
|
pass
|
|
|
|
class Squirrel(Monster):
|
|
maxhealth = 10
|
|
strength = 3
|