2020-11-06 14:33:26 +00:00
|
|
|
from ..interfaces import FightingEntity, Map
|
|
|
|
|
2020-10-16 15:58:00 +00:00
|
|
|
|
2020-10-23 14:51:48 +00:00
|
|
|
class Monster(FightingEntity):
|
2020-11-06 15:13:28 +00:00
|
|
|
def act(self, m: Map) -> None:
|
2020-10-23 14:51:48 +00:00
|
|
|
pass
|
|
|
|
|
2020-11-06 14:33:26 +00:00
|
|
|
|
2020-10-23 14:51:48 +00:00
|
|
|
class Squirrel(Monster):
|
2020-10-16 15:58:00 +00:00
|
|
|
maxhealth = 10
|
|
|
|
strength = 3
|