12 lines
189 B
Python
12 lines
189 B
Python
from ..interfaces import FightingEntity, Map
|
|
|
|
|
|
class Monster(FightingEntity):
|
|
def act(self, m: Map) -> None:
|
|
pass
|
|
|
|
|
|
class Squirrel(Monster):
|
|
maxhealth = 10
|
|
strength = 3
|