2020-11-06 15:33:26 +01:00
|
|
|
from ..interfaces import FightingEntity, Map
|
|
|
|
|
2020-10-16 17:58:00 +02:00
|
|
|
|
2020-10-23 16:51:48 +02:00
|
|
|
class Monster(FightingEntity):
|
2020-11-06 16:13:28 +01:00
|
|
|
def act(self, m: Map) -> None:
|
2020-10-23 16:51:48 +02:00
|
|
|
pass
|
|
|
|
|
2020-11-06 15:33:26 +01:00
|
|
|
|
2020-11-10 21:47:36 +01:00
|
|
|
class Hedgehog(Monster):
|
|
|
|
name = "hedgehog"
|
2020-10-16 17:58:00 +02:00
|
|
|
maxhealth = 10
|
|
|
|
strength = 3
|