diff --git a/squirrelbattle/entities/items.py b/squirrelbattle/entities/items.py index a9e0f13..1954204 100644 --- a/squirrelbattle/entities/items.py +++ b/squirrelbattle/entities/items.py @@ -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)