13 lines
211 B
Python
13 lines
211 B
Python
from ..interfaces import FightingEntity, Map
|
|
|
|
|
|
class Monster(FightingEntity):
|
|
def act(self, m: Map) -> None:
|
|
pass
|
|
|
|
|
|
class Hedgehog(Monster):
|
|
name = "hedgehog"
|
|
maxhealth = 10
|
|
strength = 3
|