mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Enable bombs in escape assist with an enemized standard start so you can beat the game
This commit is contained in:
4
Rom.py
4
Rom.py
@@ -935,7 +935,9 @@ def patch_rom(world, player, rom, enemized):
|
||||
|
||||
rom.write_bytes(0x180080, [50, 50, 70, 70]) # values to fill for Capacity Upgrades (Bomb5, Bomb10, Arrow5, Arrow10)
|
||||
|
||||
rom.write_byte(0x18004D, 0x00) # Escape assist (off)
|
||||
rom.write_byte(0x18004D, ((0x01 if 'arrows' in world.escape_assist else 0x00) |
|
||||
(0x02 if 'bombs' in world.escape_assist else 0x00) |
|
||||
(0x04 if 'magic' in world.escape_assist else 0x00))) # Escape assist
|
||||
|
||||
if world.goal in ['pedestal', 'triforcehunt']:
|
||||
rom.write_byte(0x18003E, 0x01) # make ganon invincible
|
||||
|
Reference in New Issue
Block a user