Beaver is a tiger

This commit is contained in:
Yohann D'ANELLO
2020-11-20 18:02:08 +01:00
parent 8a85f58261
commit fb3f3ee5e8
6 changed files with 22 additions and 22 deletions

View File

@ -52,13 +52,13 @@ class Monster(FightingEntity):
break
class Beaver(Monster):
class Tiger(Monster):
"""
A beaver monster
A tiger monster
"""
def __init__(self, strength: int = 2, maxhealth: int = 20,
*args, **kwargs) -> None:
super().__init__(name="beaver", strength=strength,
super().__init__(name="tiger", strength=strength,
maxhealth=maxhealth, *args, **kwargs)