feat: customizer options for prices in shops and money balance tuning

This commit is contained in:
aerinon
2025-01-15 14:32:07 -07:00
parent 9f55e90b7e
commit c7a57d63fa
8 changed files with 79 additions and 10 deletions

View File

@@ -145,6 +145,7 @@ def main(args, seed=None, fish=None):
world.collection_rate = args.collection_rate.copy()
world.colorizepots = args.colorizepots.copy()
world.aga_randomness = args.aga_randomness.copy()
world.money_balance = args.money_balance.copy()
world.treasure_hunt_count = {}
world.treasure_hunt_total = {}
@@ -513,6 +514,7 @@ def copy_world(world):
ret.trap_door_mode = world.trap_door_mode.copy()
ret.key_logic_algorithm = world.key_logic_algorithm.copy()
ret.aga_randomness = world.aga_randomness.copy()
ret.money_balance = world.money_balance.copy()
ret.experimental = world.experimental.copy()
ret.shopsanity = world.shopsanity.copy()
ret.dropshuffle = world.dropshuffle.copy()