Changed the prices of armor

This commit is contained in:
Eichhornchen 2021-01-06 17:57:23 +01:00
parent b403bc4784
commit 5ef12bef3d
1 changed files with 3 additions and 3 deletions

View File

@ -311,7 +311,7 @@ class Shield(Armor):
"""
def __init__(self, name: str = "shield", constitution: int = 2,\
price: int = 6, *args, **kwargs):
price: int = 16, *args, **kwargs):
super().__init__(name=name, constitution=constitution, *args, **kwargs)
class Helmet(Armor):
@ -320,7 +320,7 @@ class Helmet(Armor):
"""
def __init__(self, name: str = "helmet", constitution: int = 2, \
price: int = 8, *args, **kwargs):
price: int = 18, *args, **kwargs):
super().__init__(name=name, constitution=constitution, *args, **kwargs)
class Chestplate(Armor):
@ -329,7 +329,7 @@ class Chestplate(Armor):
"""
def __init__(self, name: str = "chestplate", constitution: int = 4,\
price: int = 15, *args, **kwargs):
price: int = 30, *args, **kwargs):
super().__init__(name=name, constitution=constitution, *args, **kwargs)