From 8934f90bb868939f377150ad210f27d73030d518 Mon Sep 17 00:00:00 2001 From: Kara Alexandra Date: Sun, 10 Jul 2022 19:10:53 -0700 Subject: [PATCH] Add starting Byrna or Somaria with starting progressive cane in appropriate mode --- Rom.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Rom.py b/Rom.py index 20147d84..67734b6a 100644 --- a/Rom.py +++ b/Rom.py @@ -1489,6 +1489,11 @@ def patch_rom(world, rom, player, team, enemized, is_mystery=False): equip[0x38F] = 2 elif startingstate.has('L1 Bombs', player) or startingstate.has('L1 Cane', player) or world.swords[player] == 'cane': equip[0x38F] = 1 + if startingstate.has('L1 Cane', player) or startingstate.has('L2 Cane', player) or startingstate.has('L3 Cane', player) or startingstate.has('L4 Cane', player) or startingstate.has('L5 Cane', player): + if world.swords[player] == 'byrna': + equip[0x351] = 1 + elif world.swords[player] == 'somaria': + equip[0x350] = 1 if startingstate.has('Mirror Shield', player): equip[0x35A] = 3