Changed the prices of armor
This commit is contained in:
parent
b403bc4784
commit
5ef12bef3d
|
@ -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)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue