From 5ef12bef3d111ca546e6f5bd8fc952544a44106a Mon Sep 17 00:00:00 2001 From: Eichhornchen Date: Wed, 6 Jan 2021 17:57:23 +0100 Subject: [PATCH] Changed the prices of armor --- squirrelbattle/entities/items.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)