From c0c177dfed071fa692766e7f43be51adf87ea4b2 Mon Sep 17 00:00:00 2001 From: Kara Alexandra Date: Fri, 18 Sep 2026 19:33:00 -0500 Subject: [PATCH] Discount on orange potions --- Main.py | 2 +- Text.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Main.py b/Main.py index 851c451c..57f8e056 100644 --- a/Main.py +++ b/Main.py @@ -346,7 +346,7 @@ def main(args, seed=None, fish=None): cap_shop = world.get_region('Capacity Upgrade', player).shop potion = { 'item': "Orange Potion", - 'price': 1000, + 'price': 500, 'max': 0, 'replacement': None, 'replacement_price': 0, diff --git a/Text.py b/Text.py index ee72c4c0..a97df51a 100644 --- a/Text.py +++ b/Text.py @@ -2054,6 +2054,6 @@ class TextTable(object): text['ganon_phase_3_silvers'] = CompressedTextMapper.convert("Oh no! Silver! My one true weakness!") text['murahdahla'] = CompressedTextMapper.convert("Hello @. I\nam Murahdahla, brother of\nSahasrahla and Aginah. Behold the power of\ninvisibility.\n{PAUSE3}\n… … …\nWait! You can see me? I knew I should have\nhidden in a hollow tree.") text['mastersword_pedestal_goal'] = CompressedTextMapper.convert("To claim thy reward, you must present all 3 Pendants of Virtue.") - text['orange_potion_refill'] = CompressedTextMapper.convert("This rare orange potion will give you infinite magic, but only until you die or quit the game.") + text['orange_potion_refill'] = CompressedTextMapper.convert("This rare orange potion will give you unlimited magic, but only until you die or quit the game.") text['end_pad_data'] = bytearray([0xFB]) text['terminator'] = bytearray([0xFF, 0xFF])