From b78f8525794f3e7624e151fd061bcc7e0cabe7f9 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 31 Jan 2021 06:47:57 +0100 Subject: [PATCH] reduce prices of ammo and ammo capacity upgrades, make heart container actually 4X a heart piece and reduce progression item price slightly --- Shops.py | 10 +++++----- Utils.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Shops.py b/Shops.py index a3c09c88..69fe449a 100644 --- a/Shops.py +++ b/Shops.py @@ -202,12 +202,12 @@ def ShopSlotFill(world): item_name = location.item.name if any(x in item_name for x in ['Single Bomb', 'Single Arrow', 'Piece of Heart']): price = world.random.randrange(1, 7) - elif any(x in item_name for x in ['Arrows', 'Bombs', 'Clock', 'Heart']): - price = world.random.randrange(4, 24) - elif any(x in item_name for x in ['Compass', 'Map', 'Small Key']): - price = world.random.randrange(10, 30) + elif any(x in item_name for x in ['Arrow', 'Bomb', 'Clock']): + price = world.random.randrange(2, 14) + elif any(x in item_name for x in ['Compass', 'Map', 'Small Key', 'Clock', 'Heart']): + price = world.random.randrange(4, 28) else: - price = world.random.randrange(10, 60) + price = world.random.randrange(8, 56) price *= 5 shop.push_inventory(int(location.name[-1]) - 1, item_name, price, 1, diff --git a/Utils.py b/Utils.py index 11f86fbb..369dba26 100644 --- a/Utils.py +++ b/Utils.py @@ -13,7 +13,7 @@ class Version(typing.NamedTuple): micro: int -__version__ = "4.0.0" +__version__ = "4.0.1" _version_tuple = tuplize_version(__version__) import os