Changed the prices of armor
This commit is contained in:
		@@ -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)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user