6 lines
109 B
Python
6 lines
109 B
Python
|
from ..interfaces import FightingEntity
|
||
|
|
||
|
class Squirrel(FightingEntity):
|
||
|
maxhealth = 10
|
||
|
strength = 3
|