├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── __init__.py ├── community_presets ├── flo.json └── manu.json ├── customizer.py ├── doc ├── X-Ray Climbs to consider adding to VARIA logic.txt ├── base_asm_refactor.txt ├── boulders_ai.asm ├── custom_music.txt ├── ending_screen.txt ├── etecoons_ai.asm ├── fastmajlocs.txt ├── horizontal_gadora.txt ├── idees.txt ├── igt.txt ├── new_map.txt ├── objective.txt ├── plms.txt ├── rando_refactor.txt ├── rta_ship.txt └── ship.txt ├── graph ├── __init__.py ├── graph.py ├── graph_utils.py ├── location.py ├── mirror │ ├── __init__.py │ ├── graph_access.py │ ├── graph_helpers.py │ ├── graph_locations.py │ ├── map_icons.py │ ├── map_tilecount.py │ └── map_tiles.py ├── rotation │ ├── __init__.py │ ├── graph_access.py │ ├── graph_helpers.py │ └── graph_locations.py └── vanilla │ ├── __init__.py │ ├── graph_access.py │ ├── graph_helpers.py │ ├── graph_locations.py │ ├── map_tilecount.py │ └── map_tiles.py ├── logic ├── __init__.py ├── cache.py ├── helpers.py ├── logic.py ├── smbool.py └── smboolmanager.py ├── patches ├── .gitignore ├── Makefile ├── __init__.py ├── common │ ├── Makefile │ ├── __init__.py │ ├── ips │ │ ├── .gitignore │ │ ├── AimAnyButton.ips │ │ ├── Debug_Full.ips │ │ ├── RakkiDoorSpeedups.IPS │ │ ├── area_rando_doors.ips │ │ ├── area_rando_gate_crab_tunnel.ips │ │ ├── area_rando_gate_east_tunnel.ips │ │ ├── base.ips │ │ ├── beam_doors_gfx.ips │ │ ├── beam_doors_plms.ips │ │ ├── better_reserves.ips │ │ ├── bomb_torizo.ips │ │ ├── color_blind.ips │ │ ├── colorblind_palettes.ips │ │ ├── credits.ips │ │ ├── custom_music.ips │ │ ├── custom_music_specific │ │ │ ├── Boss_fight___Botwoon.ips │ │ │ ├── Boss_fight___Crocomire.ips │ │ │ ├── Boss_fight___Draygon.ips │ │ │ ├── Boss_fight___Kraid.ips │ │ │ ├── Boss_fight___Phantoon.ips │ │ │ ├── Boss_fight___Ridley.ips │ │ │ ├── Boss_fight___Spore_Spawn.ips │ │ │ ├── East_Maridia.ips │ │ │ ├── Green_Brinstar.ips │ │ │ ├── Lower_Norfair.ips │ │ │ ├── Mother_Brain_2.ips │ │ │ ├── Mother_Brain_3.ips │ │ │ ├── Red_Brinstar.ips │ │ │ ├── Tourian_Bubbles.ips │ │ │ ├── Upper_Norfair.ips │ │ │ ├── Wrecked_Ship___Power_off.ips │ │ │ └── Wrecked_Ship___Power_on.ips │ │ ├── custom_ship.ips │ │ ├── disable_minimap_colors.ips │ │ ├── disable_screen_shake.ips │ │ ├── disable_spark_damage.ips │ │ ├── door_indicators_plms.ips │ │ ├── door_transition.ips │ │ ├── dread_mode.ips │ │ ├── elevators_speed.ips │ │ ├── endingtotals.ips │ │ ├── equipment_screen.ips │ │ ├── fast_doors.ips │ │ ├── hard_mode.ips │ │ ├── hell.ips │ │ ├── intro_text.ips │ │ ├── itemsounds.ips │ │ ├── lava_acid_physics.ips │ │ ├── map.ips │ │ ├── max_ammo_display.ips │ │ ├── minimizer_bosses.ips │ │ ├── minimizer_tourian_common.ips │ │ ├── nerfed_charge.ips │ │ ├── nerfed_rainbow_beam.ips │ │ ├── no_demo.ips │ │ ├── noflashing.ips │ │ ├── nothing_item_plm.ips │ │ ├── objectives.ips │ │ ├── objectives_options.ips │ │ ├── plm_spawn.ips │ │ ├── progressive_suits.ips │ │ ├── rando_escape_common.ips │ │ ├── rando_speed.ips │ │ ├── random_music.ips │ │ ├── red_doors.ips │ │ ├── refill_before_save.ips │ │ ├── relaxed_round_robin_cf.ips │ │ ├── remove_Infinite_Space_Jump.ips │ │ ├── remove_elevators_speed.ips │ │ ├── remove_fast_doors.ips │ │ ├── remove_itemsounds.ips │ │ ├── remove_rando_speed.ips │ │ ├── remove_spinjumprestart.ips │ │ ├── reset.ips │ │ ├── reveal_map.ips │ │ ├── samus_tiles_optim_animated_tiles_fix.ips │ │ ├── seed_display.ips │ │ ├── spinjumprestart.ips │ │ ├── start.ips │ │ ├── stats.ips │ │ ├── supermetroid_msu1.ips │ │ ├── utils.ips │ │ ├── vanilla_bugfixes.ips │ │ ├── vanilla_music.ips │ │ ├── varia_hud.ips │ │ ├── wake_zebes.ips │ │ ├── wh_open_tube.ips │ │ └── widescreen.ips │ ├── patches.py │ ├── src │ │ ├── AimAnyButton.asm │ │ ├── HardMode │ │ │ ├── controller.bin │ │ │ ├── core.asm │ │ │ ├── difficulty.bin │ │ │ ├── environmental.asm │ │ │ ├── options.bin │ │ │ └── spikes.asm │ │ ├── area_rando_doors.asm │ │ ├── area_rando_gate_crab_tunnel.asm │ │ ├── area_rando_gate_east_tunnel.asm │ │ ├── base.asm │ │ ├── base │ │ │ ├── arrow_tile.gfx │ │ │ └── saveload.asm │ │ ├── beam_doors_plms.asm │ │ ├── better_reserves.asm │ │ ├── better_reserves │ │ │ ├── hud.asm │ │ │ └── main.asm │ │ ├── bomb_torizo.asm │ │ ├── colorblind_palettes.asm │ │ ├── credits.asm │ │ ├── credits │ │ │ ├── CRE_Items.gfx │ │ │ ├── beams.gfx │ │ │ └── font3.bin │ │ ├── custom_music.asm │ │ ├── custom_music_specific.asm │ │ ├── custom_ship.asm │ │ ├── disable_minimap_colors.asm │ │ ├── disable_screen_shake.asm │ │ ├── disable_spark_damage.asm │ │ ├── door_indicators_plms.asm │ │ ├── door_transition.asm │ │ ├── dread_mode.asm │ │ ├── elevators_speed.asm │ │ ├── endingtotals.asm │ │ ├── equipment_screen.asm │ │ ├── fast_doors.asm │ │ ├── hard_mode.asm │ │ ├── hell.asm │ │ ├── include │ │ │ ├── area_colors.asm │ │ │ ├── constants.asm │ │ │ ├── decompression.asm │ │ │ ├── doors_plms_common.asm │ │ │ ├── enemies_events.asm │ │ │ ├── event_list.asm │ │ │ ├── locs_by_areas.asm │ │ │ └── macros.asm │ │ ├── intro_text.asm │ │ ├── itemsounds.asm │ │ ├── lava_acid_physics.asm │ │ ├── map.asm │ │ ├── map │ │ │ ├── HexMapTiles.bin │ │ │ ├── MapConstruction.asm │ │ │ ├── Minimap.asm │ │ │ ├── Misc_Banks.asm │ │ │ ├── NoHexMap.asm │ │ │ ├── PauseScreenRoutines.asm │ │ │ ├── README.txt │ │ │ ├── config │ │ │ │ ├── CoverTileList.asm │ │ │ │ ├── ItembitTilechangeList.asm │ │ │ │ ├── MapDecoration.asm │ │ │ │ └── MaptileGlow.asm │ │ │ ├── hud.gfx │ │ │ ├── hud_tilemap.asm │ │ │ ├── mapicon_sprites.asm │ │ │ ├── minimap.gfx │ │ │ ├── pause.gfx │ │ │ ├── pause_equipment_tilemap.bin │ │ │ ├── pause_extra.gfx │ │ │ ├── pause_map_tilemap.bin │ │ │ ├── pause_palettes.asm │ │ │ └── start_tilemap.bin │ │ ├── max_ammo_display.asm │ │ ├── minimizer_bosses.asm │ │ ├── minimizer_tourian_common.asm │ │ ├── nerfed_charge.asm │ │ ├── nerfed_rainbow_beam.asm │ │ ├── no_demo.asm │ │ ├── noflash │ │ │ ├── bosses.asm │ │ │ ├── escape.asm │ │ │ └── power_bomb.asm │ │ ├── noflashing.asm │ │ ├── nothing_item_plm.asm │ │ ├── objectives.asm │ │ ├── objectives │ │ │ └── enemies.asm │ │ ├── objectives_options.asm │ │ ├── plm_spawn.asm │ │ ├── progressive_suits.asm │ │ ├── rando_escape_common.asm │ │ ├── rando_speed.asm │ │ ├── random_music.asm │ │ ├── red_doors.asm │ │ ├── refill_before_save.asm │ │ ├── relaxed_round_robin_cf.asm │ │ ├── reset.asm │ │ ├── reveal_map.asm │ │ ├── samus_tiles_optim_animated_tiles_fix.asm │ │ ├── seed_display.asm │ │ ├── spinjumprestart.asm │ │ ├── start.asm │ │ ├── stats.asm │ │ ├── supermetroid_msu1.asm │ │ ├── tables │ │ │ ├── big.tbl │ │ │ ├── blue.tbl │ │ │ ├── cyan.tbl │ │ │ ├── endscreen.tbl │ │ │ ├── green.tbl │ │ │ ├── hud_chars.txt │ │ │ ├── menu.tbl │ │ │ ├── msgbox.tbl │ │ │ ├── orange.tbl │ │ │ ├── pause.tbl │ │ │ ├── pink.tbl │ │ │ ├── purple.tbl │ │ │ └── yellow.tbl │ │ ├── tracking.txt │ │ ├── utils.asm │ │ ├── vanilla_bugfixes.asm │ │ ├── varia_hud.asm │ │ ├── wake_zebes.asm │ │ └── wh_open_tube.asm │ └── sym │ │ ├── area_ids.json │ │ ├── area_rando_doors.json │ │ ├── credits.json │ │ ├── door_transition.json │ │ ├── endingtotals.json │ │ ├── intro_text.json │ │ ├── map.json │ │ ├── nothing_item_plm.json │ │ ├── objectives.json │ │ ├── objectives_options.json │ │ ├── place_holder_plm.json │ │ ├── plm_spawn.json │ │ ├── rando_escape_common.json │ │ ├── seed_display.json │ │ ├── start.json │ │ └── varia_hud.json ├── debug │ └── vanilla.msl ├── ips.pl ├── mirror │ ├── Makefile │ ├── __init__.py │ ├── ips │ │ ├── aqueduct_bomb_blocks.ips │ │ ├── area_door_west_sand_hall.ips │ │ ├── area_ids_area_rando.ips │ │ ├── area_ids_vanilla_layout.ips │ │ ├── area_layout_caterpillar.ips │ │ ├── area_layout_crab_hole_lvl.ips │ │ ├── area_layout_crab_hole_plms_enemies.ips │ │ ├── area_layout_crabe_tunnel.ips │ │ ├── area_layout_east_tunnel.ips │ │ ├── area_layout_greenhillzone.ips │ │ ├── area_layout_ln_exit.ips │ │ ├── area_layout_single_chamber.ips │ │ ├── area_rando_gate_caterpillar.ips │ │ ├── area_rando_gate_greenhillzone.ips │ │ ├── area_rando_warp_door.ips │ │ ├── baby_kraid.ips │ │ ├── baby_remove_blocks.ips │ │ ├── baby_room.ips │ │ ├── bank_83.ips │ │ ├── bank_8f.ips │ │ ├── bomb_torizo_door.ips │ │ ├── botwoon.ips │ │ ├── boulders.ips │ │ ├── brinstar_map_room.ips │ │ ├── chainblocks.ips │ │ ├── climb_disable_bomb_blocks.ips │ │ ├── climb_supers.ips │ │ ├── crab_main_street.ips │ │ ├── crab_mt_everest.ips │ │ ├── crab_shaft.ips │ │ ├── crocomire.ips │ │ ├── dachora.ips │ │ ├── early_super_bridge.ips │ │ ├── east_ocean.ips │ │ ├── escape_animals.ips │ │ ├── etecoons.ips │ │ ├── firefleas_shot_block.ips │ │ ├── high_jump.ips │ │ ├── kraid.ips │ │ ├── kraid_save.ips │ │ ├── ln_chozo_platform.ips │ │ ├── mama_save.ips │ │ ├── map_data.ips │ │ ├── map_data_area.ips │ │ ├── map_data_area_alt.ips │ │ ├── map_data_escape_rando.ips │ │ ├── map_icon_data.ips │ │ ├── minimap_data_area_rando.ips │ │ ├── minimap_data_vanilla_layout.ips │ │ ├── minimizer_tourian.ips │ │ ├── mirrortroid.ips │ │ ├── mission_impossible.ips │ │ ├── moat.ips │ │ ├── mother_brain.ips │ │ ├── nova_boost_platform.ips │ │ ├── open_zebetites.ips │ │ ├── rando_escape.ips │ │ ├── rando_escape_ws_fix.ips │ │ ├── red_tower.ips │ │ ├── remove_Crateria.ips │ │ ├── remove_Crocomire.ips │ │ ├── remove_EastMaridia.ips │ │ ├── remove_GreenPinkBrinstar.ips │ │ ├── remove_Kraid.ips │ │ ├── remove_LowerNorfair.ips │ │ ├── remove_Norfair.ips │ │ ├── remove_RedBrinstar.ips │ │ ├── remove_WestMaridia.ips │ │ ├── remove_WreckedShip.ips │ │ ├── reveal_map_data.ips │ │ ├── ridley.ips │ │ ├── rinkas.ips │ │ ├── snails.ips │ │ ├── spazer.ips │ │ ├── spospo_save.ips │ │ ├── torizos.ips │ │ ├── varia_logo.ips │ │ └── ws_treadmill.ips │ ├── patches.py │ ├── src │ │ ├── area_door_west_sand_hall.asm │ │ ├── area_ids_area_rando.asm │ │ ├── area_ids_vanilla_layout.asm │ │ ├── area_layout_crab_hole_plms_enemies.asm │ │ ├── area_rando_gate_caterpillar.asm │ │ ├── area_rando_gate_greenhillzone.asm │ │ ├── baby_room.asm │ │ ├── bank_83.asm │ │ ├── bank_8f.asm │ │ ├── bomb_torizo_door.asm │ │ ├── botwoon.asm │ │ ├── boulders.asm │ │ ├── brinstar_map_room.asm │ │ ├── chainblocks.asm │ │ ├── crab_main_street.asm │ │ ├── crab_mt_everest.asm │ │ ├── crocomire.asm │ │ ├── escape_animals.asm │ │ ├── etecoons.asm │ │ ├── include │ │ │ ├── area_ids_area_rando_base.asm │ │ │ ├── area_ids_base.asm │ │ │ ├── area_ids_vanilla_layout_base.asm │ │ │ └── bank_8f_area_door_scroll.asm │ │ ├── kraid.asm │ │ ├── map │ │ │ ├── brinstar.asm │ │ │ ├── brinstar.bin │ │ │ ├── brinstar_alt.asm │ │ │ ├── brinstar_data.bin │ │ │ ├── brinstar_data_reveal.bin │ │ │ ├── ceres.asm │ │ │ ├── ceres.bin │ │ │ ├── ceres_data.bin │ │ │ ├── ceres_data_reveal.bin │ │ │ ├── crateria.asm │ │ │ ├── crateria.bin │ │ │ ├── crateria_alt.asm │ │ │ ├── crateria_data.bin │ │ │ ├── crateria_data_reveal.bin │ │ │ ├── crocomire_reveal.asm │ │ │ ├── maridia.asm │ │ │ ├── maridia.bin │ │ │ ├── maridia_data.bin │ │ │ ├── maridia_data_reveal.bin │ │ │ ├── norfair.asm │ │ │ ├── norfair.bin │ │ │ ├── norfair_alt.asm │ │ │ ├── norfair_data.bin │ │ │ ├── norfair_data_reveal.bin │ │ │ ├── tourian.asm │ │ │ ├── tourian.bin │ │ │ ├── tourian_data.bin │ │ │ ├── tourian_data_reveal.bin │ │ │ ├── wrecked_ship.asm │ │ │ ├── wrecked_ship.bin │ │ │ ├── wrecked_ship_data.bin │ │ │ └── wrecked_ship_data_reveal.bin │ │ ├── map_data.asm │ │ ├── map_data_area.asm │ │ ├── map_data_area_alt.asm │ │ ├── map_data_escape_rando.asm │ │ ├── map_icon_data.asm │ │ ├── minimap_data_area_rando.asm │ │ ├── minimap_data_vanilla_layout.asm │ │ ├── minimizer_tourian.asm │ │ ├── mother_brain.asm │ │ ├── rando_escape.asm │ │ ├── remove_Crateria.asm │ │ ├── remove_Crocomire.asm │ │ ├── remove_EastMaridia.asm │ │ ├── remove_GreenPinkBrinstar.asm │ │ ├── remove_Kraid.asm │ │ ├── remove_LowerNorfair.asm │ │ ├── remove_Norfair.asm │ │ ├── remove_RedBrinstar.asm │ │ ├── remove_WestMaridia.asm │ │ ├── remove_WreckedShip.asm │ │ ├── reveal_map_data.asm │ │ ├── ridley.asm │ │ ├── rinkas.asm │ │ ├── snails.asm │ │ ├── torizos.asm │ │ └── ws_treadmill.asm │ └── sym │ │ ├── bank_8f.json │ │ ├── fix_save.json │ │ ├── map_data.json │ │ └── rando_escape.json ├── patchaccess.py ├── rotation │ ├── __init__.py │ ├── ips │ │ └── rotation.ips │ └── patches.py └── vanilla │ ├── Makefile │ ├── __init__.py │ ├── ips │ ├── animal_enemies.ips │ ├── animals.ips │ ├── aqueduct_bomb_blocks.ips │ ├── area_door_west_sand_hall.ips │ ├── area_ids_area_rando.ips │ ├── area_ids_vanilla_layout.ips │ ├── area_layout_caterpillar.ips │ ├── area_layout_crab_hole_lvl.ips │ ├── area_layout_crab_hole_plms_enemies.ips │ ├── area_layout_crabe_tunnel.ips │ ├── area_layout_east_tunnel.ips │ ├── area_layout_greenhillzone.ips │ ├── area_layout_ln_exit.ips │ ├── area_layout_single_chamber.ips │ ├── area_rando_gate_caterpillar.ips │ ├── area_rando_gate_greenhillzone.ips │ ├── area_rando_warp_door.ips │ ├── brinstar_map_room.ips │ ├── climb_disable_bomb_blocks.ips │ ├── climb_supers.ips │ ├── crab_shaft.ips │ ├── dachora.ips │ ├── draygonimals.ips │ ├── early_super_bridge.ips │ ├── east_ocean.ips │ ├── escapimals.ips │ ├── firefleas_shot_block.ips │ ├── gameend.ips │ ├── grey_door_animals.ips │ ├── high_jump.ips │ ├── kraid_save.ips │ ├── ln_chozo_platform.ips │ ├── low_timer.ips │ ├── mama_save.ips │ ├── map_data.ips │ ├── map_data_area.ips │ ├── map_data_area_alt.ips │ ├── map_data_escape_rando.ips │ ├── metalimals.ips │ ├── minimap_data_area_rando.ips │ ├── minimap_data_vanilla_layout.ips │ ├── minimizer_tourian.ips │ ├── mission_impossible.ips │ ├── moat.ips │ ├── nova_boost_platform.ips │ ├── open_zebetites.ips │ ├── phantoonimals.ips │ ├── rando_escape.ips │ ├── rando_escape_ws_fix.ips │ ├── red_tower.ips │ ├── remove_Crateria.ips │ ├── remove_Crocomire.ips │ ├── remove_EastMaridia.ips │ ├── remove_GreenPinkBrinstar.ips │ ├── remove_Kraid.ips │ ├── remove_LowerNorfair.ips │ ├── remove_Norfair.ips │ ├── remove_RedBrinstar.ips │ ├── remove_WestMaridia.ips │ ├── remove_WreckedShip.ips │ ├── reveal_map_data.ips │ ├── ridley_platform.ips │ ├── ridleyimals.ips │ ├── spazer.ips │ ├── spospo_save.ips │ └── varia_logo.ips │ ├── patches.py │ ├── src │ ├── area_door_west_sand_hall.asm │ ├── area_ids_area_rando.asm │ ├── area_ids_vanilla_layout.asm │ ├── area_layout_crab_hole_plms_enemies.asm │ ├── area_rando_gate_caterpillar.asm │ ├── area_rando_gate_greenhillzone.asm │ ├── bank_8f.asm │ ├── draygonimals.asm │ ├── gameend.asm │ ├── grey_door_animals.asm │ ├── map │ │ ├── brinstar.asm │ │ ├── brinstar.bin │ │ ├── brinstar_alt.asm │ │ ├── brinstar_data.bin │ │ ├── brinstar_data_reveal.bin │ │ ├── ceres.asm │ │ ├── ceres.bin │ │ ├── ceres_data.bin │ │ ├── ceres_data_reveal.bin │ │ ├── crateria.asm │ │ ├── crateria.bin │ │ ├── crateria_alt.asm │ │ ├── crateria_data.bin │ │ ├── crateria_data_reveal.bin │ │ ├── crocomire_reveal.asm │ │ ├── maridia.asm │ │ ├── maridia.bin │ │ ├── maridia_data.bin │ │ ├── maridia_data_reveal.bin │ │ ├── norfair.asm │ │ ├── norfair.bin │ │ ├── norfair_alt.asm │ │ ├── norfair_data.bin │ │ ├── norfair_data_reveal.bin │ │ ├── tourian.asm │ │ ├── tourian.bin │ │ ├── tourian_data.bin │ │ ├── tourian_data_reveal.bin │ │ ├── wrecked_ship.asm │ │ ├── wrecked_ship.bin │ │ ├── wrecked_ship_data.bin │ │ └── wrecked_ship_data_reveal.bin │ ├── map_data.asm │ ├── map_data_area.asm │ ├── map_data_area_alt.asm │ ├── map_data_escape_rando.asm │ ├── metalimals.asm │ ├── minimap_data_area_rando.asm │ ├── minimap_data_vanilla_layout.asm │ ├── minimizer_tourian.asm │ ├── phantoonimals.asm │ ├── rando_escape.asm │ ├── remove_Crateria.asm │ ├── remove_Crocomire.asm │ ├── remove_EastMaridia.asm │ ├── remove_GreenPinkBrinstar.asm │ ├── remove_Kraid.asm │ ├── remove_LowerNorfair.asm │ ├── remove_Norfair.asm │ ├── remove_RedBrinstar.asm │ ├── remove_WestMaridia.asm │ ├── remove_WreckedShip.asm │ ├── reveal_map_data.asm │ └── ridleyimals.asm │ └── sym │ ├── __init__.py │ ├── bank_8f.json │ ├── map_data.json │ ├── rando_escape.json │ └── reverse │ ├── __init__.py │ ├── bank83_addresses.py │ ├── bank8f_addresses.py │ └── vanilla_addresses.py ├── rando ├── Choice.py ├── Chozo.py ├── Filler.py ├── FillerProgSpeed.py ├── FillerRandom.py ├── FillerScavenger.py ├── GraphBuilder.py ├── ItemLocContainer.py ├── Items.py ├── MiniSolver.py ├── RandoExec.py ├── RandoServices.py ├── RandoSettings.py ├── RandoSetup.py ├── Restrictions.py ├── __init__.py ├── color_palettes.py ├── palettes.py └── vanillaItemLocations.py ├── rando_presets ├── Chozo_Speedrun.json ├── SGL23Online.json ├── SMRAT2021.json ├── Season_Races.json ├── Torneio_SGPT3_stage1.json ├── Torneio_SGPT3_stage2.json ├── VARIA_Weekly.json ├── all_random.json ├── default.json ├── doors_long.json ├── doors_short.json ├── free.json ├── hardway2hell.json ├── haste.json ├── highway2hell.json ├── hud.json ├── hud_hard.json ├── hud_start.json ├── minimizer.json ├── minimizer_hardcore.json ├── minimizer_maximizer.json ├── objectives_all_bosses.json ├── objectives_bingo.json ├── objectives_blind_bingo.json ├── objectives_clear_areas.json ├── objectives_explore_areas.json ├── objectives_hard_heat.json ├── objectives_hard_water.json ├── objectives_long.json ├── objectives_memes.json ├── objectives_rampage.json ├── objectives_robots_notweaks.json ├── objectives_short.json ├── objectives_true_completion.json ├── quite_random.json ├── scavenger_hard.json ├── scavenger_random.json ├── scavenger_speedrun.json ├── scavenger_vanilla_but_not.json ├── scavenger_visit.json ├── stupid_hard.json ├── surprise.json ├── vanilla.json ├── way_of_chozo.json ├── where_am_i.json └── where_is_morph.json ├── randomizer.py ├── randomizer_webservice.py ├── rom ├── .gitignore ├── PaletteRando.py ├── __init__.py ├── addressTypes.py ├── addresses.py ├── compression.py ├── enemies_objectives_data.py ├── flavor.py ├── ips.py ├── leveldata.py ├── map.py ├── palette.py ├── rom.py ├── rom_options.py ├── rom_patches.py ├── romloader.py ├── rompatcher.py ├── romreader.py └── symbols.py ├── solver.py ├── solver ├── __init__.py ├── comeback.py ├── commonSolver.py ├── conf.py ├── container.py ├── difficultyDisplayer.py ├── interactiveSolver.py ├── modules.py ├── out.py ├── randoSolver.py ├── runtimeLimiter.py ├── solverState.py └── standardSolver.py ├── standard_presets ├── SMRAT2021.json ├── Season_Races.json ├── Torneio_SGPT3.json ├── casual.json ├── expert.json ├── master.json ├── newbie.json ├── regular.json ├── samus.json ├── solution.json └── veteran.json ├── tools ├── ItemsTest.py ├── MesenS_scripts │ ├── botwoon_debug.lua │ ├── crocomire.lua │ ├── etecoons_debug.lua │ ├── kraid_debug.lua │ ├── mb_debug.lua │ ├── projectiles.lua │ ├── rainbow_beam_debug.lua │ ├── ridley_debug.lua │ ├── samus_debug.lua │ ├── stats_debug.lua │ ├── the_baby_debug.lua │ ├── tilecount_debug.lua │ ├── timers_debug.lua │ └── torizos_debug.lua ├── __init__.py ├── add_colorblind_colors.py ├── add_nspc_tracks.py ├── add_score.py ├── apply_ips.py ├── archive_ips.sh ├── autotracker │ ├── data.js │ ├── mirror │ │ └── new_tracker_map.xcf │ └── vanilla │ │ ├── Crateria.png │ │ ├── Crocomire.png │ │ ├── Draygon.png │ │ ├── EastMaridia.png │ │ ├── GreenBrinstar.png │ │ ├── Kraid.png │ │ ├── KraidLair.png │ │ ├── LowerNorfair.png │ │ ├── Phantoon.png │ │ ├── RedBrinstar.png │ │ ├── Ridley.png │ │ ├── Tourian.png │ │ ├── UpperNorfair.png │ │ ├── WestMaridia.png │ │ ├── WreckedShip.png │ │ ├── background.png │ │ ├── new_tracker_map.xcf │ │ └── original_map.png ├── backport_mirrortroid.sh ├── bin_to_asm_data.py ├── blinking.py ├── boss_test.py ├── build.mk ├── check_custom_music.py ├── check_custom_music_track_names.py ├── check_db.py ├── check_nspc.py ├── clean_sprite_ips.py ├── collect_stats.bash ├── compare_patch_in_two_roms.sh ├── complete_ips.py ├── compress.py ├── convert_pal.py ├── darken_pal.py ├── decompress.py ├── dropExtStats.sh ├── dump_rom.py ├── empty_escape_tiles.py ├── extract_data.py ├── extract_doors.py ├── extract_nspc.py ├── extract_ship.py ├── extract_ship_gfx.py ├── extract_ship_gfx7.py ├── extract_ship_pal7.py ├── fix_presets.py ├── flatten_vcr.py ├── genExtStats.sh ├── genProgSpeedStats.sh ├── genReleaseStats.sh ├── genTotalStats.sh ├── gen_83_map.py ├── gen_8f_map.py ├── gen_ap_exit.py ├── gen_area_in_rooms.py ├── gen_areas_ids.sh ├── gen_asm_dep.sh ├── gen_autotracker_data.py ├── gen_custom_music_specific_ips.sh ├── gen_door_asm.py ├── gen_door_patches.py ├── gen_enemies_objectives_code.py ├── gen_enemies_objectives_data.py ├── gen_ips_map.py ├── gen_locs_by_areas.py ├── gen_map_reveal.py ├── gen_map_svg.py ├── gen_minimap_color_data.py ├── gen_minimap_color_data.sh ├── gen_mirror_layout.py ├── gen_mirror_layout.sh ├── gen_mirror_ship.py ├── gen_mirror_ships.sh ├── gen_msl.py ├── gen_playlist_from_seed.py ├── gen_sprite_palettes.sh ├── gen_sprite_patches.sh ├── gen_syms.py ├── gen_vanilla_8f.py ├── gen_vanilla_area_base_layout.sh ├── gen_vanilla_area_comfort_layout.sh ├── gen_vanilla_itemlocs.py ├── get_door_id.py ├── get_patches_defs.py ├── get_stats.py ├── inject_ship.py ├── inject_ship.sh ├── ips_check.py ├── ips_to_asm_data.py ├── loadExtStats.sh ├── logo │ ├── genLogo.py │ └── title_logo_sm.xcf ├── make_ips.py ├── make_ips.sh ├── map │ ├── gfx_bmp │ │ ├── pause_gfx_0.bmp │ │ ├── pause_gfx_1.bmp │ │ ├── pause_gfx_2.bmp │ │ ├── pause_gfx_3.bmp │ │ ├── pause_gfx_4.bmp │ │ ├── pause_gfx_5.bmp │ │ ├── pause_gfx_6.bmp │ │ └── pause_gfx_7.bmp │ ├── graph_area │ │ ├── alt_brinstar.json │ │ ├── alt_crateria.json │ │ ├── alt_norfair.json │ │ ├── normal_brinstar.json │ │ ├── normal_ceres.json │ │ ├── normal_crateria.json │ │ ├── normal_maridia.json │ │ ├── normal_norfair.json │ │ ├── normal_tourian.json │ │ └── normal_wrecked_ship.json │ ├── graph_area_mirror │ │ ├── alt_brinstar.json │ │ ├── alt_crateria.json │ │ ├── alt_norfair.json │ │ ├── normal_brinstar.json │ │ ├── normal_ceres.json │ │ ├── normal_crateria.json │ │ ├── normal_maridia.json │ │ ├── normal_norfair.json │ │ ├── normal_tourian.json │ │ └── normal_wrecked_ship.json │ ├── minimap.py │ └── mirror_offsets.py ├── map_area_palettes.py ├── map_area_palettes.sh ├── map_escape_rando.py ├── map_explored.py ├── map_glow.py ├── map_helper.py ├── map_icon_sprites.py ├── map_minimizer.py ├── map_mirror.py ├── map_mirror.sh ├── map_mirror_area.py ├── map_mirror_icons.py ├── map_mirror_locs.py ├── map_read_area_icons.py ├── map_rebuild.sh ├── map_replace_tiles.py ├── map_replace_tiles.sh ├── map_tilecount.py ├── merge_custom_music.py ├── merge_fast_doors_elevators.py ├── merge_stats.bash ├── minimizer_stats.sh ├── mirror_botwoon.py ├── mirror_bt.py ├── mirror_croc.py ├── mirror_mb.py ├── mirror_room.py ├── pc_to_snes.py ├── profiler.sh ├── resizeThumbnails.sh ├── reverse_ips.py ├── rooms.py ├── rooms.txt ├── ship │ ├── example_ship.xcf │ └── slopes.png ├── shrink_palettes.py ├── snes_to_pc.py ├── strip_ips.py ├── strip_mirrortroid.sh ├── test_compress.py ├── test_jm.sh ├── test_patch.py ├── update_nspc_metadata.py ├── update_save_name.py ├── write_obj_bg1.py └── wtf_pal.py ├── utils ├── .gitignore ├── __init__.py ├── colors.py ├── db.py ├── doorsmanager.py ├── log.py ├── objectives.py ├── parameters.py ├── utils.py ├── vcr.py └── version.py └── web ├── SerpentineDBol.ttf ├── backend ├── __init__.py ├── customizer.py ├── extStats.py ├── plando.py ├── plandorepo.py ├── presets.py ├── progSpeedStats.py ├── randomizer.py ├── solver.py ├── stats.py ├── tracker.py ├── utils.py └── ws.py ├── controllers └── solver_web.py ├── database ├── create_extended_stats.sql └── create_schema.sql ├── docker ├── build.sh ├── mysql │ └── Dockerfile ├── rm.sh ├── run.sh ├── start.sh ├── stop.sh ├── update.sh └── web2py │ ├── Dockerfile │ ├── Dockerfile.local │ ├── nginx.conf │ ├── web2py │ └── web2py.conf ├── install-redirect.sh ├── install.sh ├── pull_latest_tracker.sh ├── static ├── FileSaver.js ├── ajax-loader.gif ├── area_map.png ├── area_map_thumbnail.png ├── barrating │ ├── jquery.barrating.min.js │ ├── jquery.barrating.min.js.map │ └── themes │ │ ├── bars-1to10.css │ │ ├── bars-horizontal.css │ │ ├── bars-movie.css │ │ ├── bars-pill.css │ │ ├── bars-reversed.css │ │ ├── bars-square.css │ │ ├── bootstrap-stars.css │ │ ├── css-stars.css │ │ ├── fontawesome-stars-o.css │ │ └── fontawesome-stars.css ├── bootstrap-tour.min.css ├── bootstrap-tour.min.js ├── chosen-sprite.png ├── chosen-sprite@2x.png ├── chosen.css ├── chosen.jquery.min.js ├── crc32.js ├── crystal_flash.png ├── dist │ ├── switchery.css │ ├── switchery.js │ ├── switchery.min.css │ └── switchery.min.js ├── donate.png ├── donate_randomizer.png ├── donations_home.xcf ├── donations_randomizer.xcf ├── excellentexport.js ├── favicon.ico ├── favicon.png ├── help │ ├── aqueduct_bomb_blocks.png │ ├── backup_copy.png │ ├── backup_locks.png │ ├── backup_no_slots.png │ ├── below_botwoon_etank.png │ ├── bomb_torizo.png │ ├── bt_map.png │ ├── cathedral.png │ ├── chozo_map.png │ ├── chozo_map_thumbnail.png │ ├── climb_supers.png │ ├── crab_gate.png │ ├── crab_hole.png │ ├── crab_shaft_save.png │ ├── dachora.png │ ├── early_super.png │ ├── fish_access.png │ ├── fish_gate.png │ ├── flashing_doors.gif │ ├── forgotten_all_the_way.png │ ├── greenhill_gate.png │ ├── greenhill_walljump.png │ ├── high_jump.png │ ├── hud_chozo_start.png │ ├── hud_full.png │ ├── hud_major_energy.png │ ├── hud_scav.png │ ├── hud_scav_over.png │ ├── hud_scav_pause.png │ ├── ice_door.png │ ├── inventory.png │ ├── item_popup.png │ ├── kraid_save.png │ ├── ln_access.png │ ├── ln_chozo.png │ ├── ln_gate.png │ ├── load_popup.png │ ├── main_street_save.png │ ├── map.png │ ├── minimizer_example.png │ ├── minimizer_example_thumbnail.png │ ├── missile_door.png │ ├── mission_impossible.png │ ├── moat.png │ ├── objectives.png │ ├── plasma_door.png │ ├── powerbomb_door.png │ ├── rando_popup.png │ ├── red_tower.png │ ├── reveal_map.png │ ├── spazer_block.png │ ├── spazer_door.png │ ├── sponge_bath_blue_door.gif │ ├── spore_save.png │ ├── super_door.png │ ├── tube_access.png │ ├── tube_gate.png │ ├── wave_door.png │ ├── west_sand_hall.png │ ├── west_sand_hall_tunnel.png │ ├── ws_etank.png │ └── ws_save.png ├── highslide │ ├── graphics │ │ ├── close.png │ │ ├── closeX.png │ │ ├── controlbar-black-border.gif │ │ ├── controlbar-text-buttons.png │ │ ├── controlbar-white-small.gif │ │ ├── controlbar-white.gif │ │ ├── controlbar2.gif │ │ ├── controlbar3.gif │ │ ├── controlbar4-hover.gif │ │ ├── controlbar4.gif │ │ ├── fullexpand.gif │ │ ├── geckodimmer.png │ │ ├── icon.gif │ │ ├── loader.gif │ │ ├── loader.white.gif │ │ ├── outlines │ │ │ ├── Outlines.psd │ │ │ ├── beveled.png │ │ │ ├── drop-shadow.png │ │ │ ├── glossy-dark.png │ │ │ ├── outer-glow.png │ │ │ ├── rounded-black.png │ │ │ └── rounded-white.png │ │ ├── resize.gif │ │ ├── scrollarrows.png │ │ ├── zoomin.cur │ │ └── zoomout.cur │ ├── highslide-full.js │ ├── highslide-full.min.js │ ├── highslide-full.packed.js │ ├── highslide-ie6.css │ ├── highslide-with-gallery.js │ ├── highslide-with-gallery.min.js │ ├── highslide-with-gallery.packed.js │ ├── highslide-with-html.js │ ├── highslide-with-html.min.js │ ├── highslide-with-html.packed.js │ ├── highslide.css │ ├── highslide.js │ ├── highslide.min.js │ └── highslide.packed.js ├── image-picker │ ├── image-picker.css │ ├── image-picker.js │ └── image-picker.min.js ├── jquery.redirect.js ├── leader-line.min.js ├── localforage.nopromises.min.js ├── logo_varia.png ├── mirror.png ├── palettesRando.png ├── preset.js ├── rooms │ ├── AlphaPowerBombRoom.png │ ├── Aqueduct.png │ ├── BetaPowerBombRoom.png │ ├── BigPink.png │ ├── BillyMaysRoom.png │ ├── BlueBrinstar.png │ ├── BlueBrinstarEnergyTankRoom.png │ ├── BombTorizoRoom.png │ ├── BotwoonEnergyTankRoom.png │ ├── BowlingAlley.png │ ├── Brinstar.png │ ├── BrinstarHills.png │ ├── BrinstarReserveTankRoom.png │ ├── BubbleMountain.png │ ├── BubbleNorfairBottom.png │ ├── BubbleNorfairReserve.png │ ├── BubbleNorfairSpeed.png │ ├── BubbleNorfairWave.png │ ├── Cathedral.png │ ├── Crateria.png │ ├── CrateriaBombs.png │ ├── CrateriaGauntlet.png │ ├── CrateriaLandingSite.png │ ├── CrateriaMoat.png │ ├── CrateriaPowerBombRoom.png │ ├── CrateriaSuperRoom.png │ ├── CrateriaTerminator.png │ ├── Crocomire.png │ ├── CrocomireEscape.png │ ├── CrocomiresRoom.png │ ├── CrumbleShaft.png │ ├── DoubleChamber.png │ ├── DraygonsRoom.png │ ├── EarlySupersRoom.png │ ├── EastSandHole.png │ ├── EtecoonEnergyTankRoom.png │ ├── EtecoonSuperRoom.png │ ├── FirstMissileRoom.png │ ├── GauntletEnergyTankRoom.png │ ├── GoldenTorizosRoom.png │ ├── GrappleBeamRoom.png │ ├── GravitySuitRoom.png │ ├── GreenBrinstar.png │ ├── GreenBrinstarMainShaft.png │ ├── GreenBrinstarReserve.png │ ├── GreenBubblesMissileRoom.png │ ├── GreenHillZone.png │ ├── GreenPiratesShaft.png │ ├── HiJumpBootsRoom.png │ ├── HiJumpEnergyTankRoom.png │ ├── HopperEnergyTankRoom.png │ ├── IceBeamRoom.png │ ├── KraidRoom.png │ ├── KraidSubArea.png │ ├── LeftSandpit.png │ ├── LowerNorfairAfterAmphitheater.png │ ├── LowerNorfairBeforeAmphitheater.png │ ├── LowerNorfairEscapePowerBombRoom.png │ ├── LowerNorfairFirefleaRoom.png │ ├── LowerNorfairScrewAttack.png │ ├── LowerNorfairSpringBallMazeRoom.png │ ├── LowerNorfairWasteland.png │ ├── MainStreet.png │ ├── MamaTurtleRoom.png │ ├── Maridia.png │ ├── MaridiaForgottenHighway.png │ ├── MaridiaGreen.png │ ├── MaridiaPinkBottom.png │ ├── MaridiaPinkTop.png │ ├── MaridiaSandpits.png │ ├── MickeyMouseRoom.png │ ├── MorphBallRoom.png │ ├── MotherBrainRoom.png │ ├── Norfair.png │ ├── NorfairCathedral.png │ ├── NorfairEntrance.png │ ├── NorfairGrappleEscape.png │ ├── NorfairIce.png │ ├── NorfairReserveTankRoom.png │ ├── PhantoonsRoom.png │ ├── PinkBrinstar.png │ ├── PinkBrinstarPowerBombRoom.png │ ├── PitRoom.png │ ├── PlasmaRoom.png │ ├── PostCrocomireJumpRoom.png │ ├── PostCrocomireMissileRoom.png │ ├── PostCrocomirePowerBombRoom.png │ ├── PseudoPlasmaSparkRoom.png │ ├── RedBrinstarBottom.png │ ├── RedBrinstarMiddle.png │ ├── RedBrinstarTop.png │ ├── RidleyTankRoom.png │ ├── RidleysRoom.png │ ├── RightSandpit.png │ ├── ScrewAttackRoom.png │ ├── SpaceJumpRoom.png │ ├── SpazerRoom.png │ ├── SpeedBoosterHall.png │ ├── SpeedBoosterRoom.png │ ├── SporeSpawnSuperRoom.png │ ├── SpringBallRoom.png │ ├── TerminatorRoom.png │ ├── TheFinalMissile.png │ ├── TheMoat.png │ ├── ThePreciousRoom.png │ ├── ThreeMuskateersRoom.png │ ├── Tourian.png │ ├── TourianSubArea.png │ ├── VariaSuitRoom.png │ ├── WarehouseEnergyTankRoom.png │ ├── WarehouseKeyhunterRoom.png │ ├── Wasteland.png │ ├── WateringHole.png │ ├── WaterwayEnergyTankRoom.png │ ├── WaveBeamRoom.png │ ├── WestOcean.png │ ├── WestSandHole.png │ ├── WreckedShip.png │ ├── WreckedShipBack.png │ ├── WreckedShipBottom.png │ ├── WreckedShipEastMissileRoom.png │ ├── WreckedShipEastSuperRoom.png │ ├── WreckedShipEnergyTankRoom.png │ ├── WreckedShipGravity.png │ ├── WreckedShipMain.png │ ├── WreckedShipMainShaft.png │ ├── WreckedShipTop.png │ ├── WreckedShipWestSuperRoom.png │ └── XRayScopeRoom.png ├── routes-redirect.py ├── routes.py ├── samus_degrees.png ├── snes-controller.png ├── solver │ ├── samus_run_Gravity.gif │ ├── samus_run_Power.gif │ └── samus_run_Varia.gif ├── spc_js │ ├── spc_snes.js │ └── spc_snes.js.mem ├── start_locations │ ├── alpha_pb_blue_door.png │ ├── aqueduct_save_blue.png │ ├── aqueduct_start.png │ ├── big_pink_start.png │ ├── blue_bt_blue_door.png │ ├── bt_reserve_blue_door1.png │ ├── bt_reserve_blue_door2.png │ ├── bubble_mountain_start.png │ ├── business_center_start.png │ ├── ceres_start.png │ ├── etecoons_blue_door.png │ ├── etecoons_supers_start.png │ ├── firefleas_shot_blocks.png │ ├── firefleas_top_start.png │ ├── fune_removed.png │ ├── gauntlet_position.png │ ├── gauntlet_start.png │ ├── golden_four_start.png │ ├── green_bt_elevator_start.png │ ├── hellway_blue_door.png │ ├── hijump_blue_door.png │ ├── landing_site_start.png │ ├── mama_turtle_blue_door.png │ ├── mama_turtle_start.png │ ├── maridia_tube_opened.png │ ├── red_bt_blue_door.png │ ├── red_bt_elevator_start.png │ ├── speed_blue_door1.png │ ├── speed_blue_door2.png │ ├── sponge_bath_blue_door.png │ ├── watering_hole_start.png │ └── wrecked_ship_start.png ├── tracker_sprites │ ├── bin.svg │ ├── bosses │ │ └── MotherBrain.png │ ├── checkmark.svg │ ├── cloud_download.svg │ ├── cloud_upload.png │ ├── fast_forward.svg │ ├── games.svg │ ├── help.svg │ ├── items │ │ ├── Bomb.png │ │ ├── Botwoon.png │ │ ├── Charge.png │ │ ├── Crocomire.png │ │ ├── CrystalFlash.png │ │ ├── Draygon.png │ │ ├── ETank.png │ │ ├── GoldenTorizo.png │ │ ├── Grapple.png │ │ ├── Gravity.png │ │ ├── Gunship.png │ │ ├── Half_Varia.png │ │ ├── HiJump.png │ │ ├── Ice.png │ │ ├── Kraid.png │ │ ├── Missile.png │ │ ├── Morph.png │ │ ├── MotherBrain.png │ │ ├── No_Bomb.png │ │ ├── No_Charge.png │ │ ├── No_ETank.png │ │ ├── No_Grapple.png │ │ ├── No_Gravity.png │ │ ├── No_HiJump.png │ │ ├── No_Ice.png │ │ ├── No_Missile.png │ │ ├── No_Morph.png │ │ ├── No_Plasma.png │ │ ├── No_PowerBomb.png │ │ ├── No_Reserve.png │ │ ├── No_ScrewAttack.png │ │ ├── No_SpaceJump.png │ │ ├── No_Spazer.png │ │ ├── No_SpeedBooster.png │ │ ├── No_SpringBall.png │ │ ├── No_Super.png │ │ ├── No_Varia.png │ │ ├── No_Wave.png │ │ ├── No_XRayScope.png │ │ ├── Nothing.png │ │ ├── Phantoon.png │ │ ├── Plasma.png │ │ ├── PowerBomb.png │ │ ├── Reserve.png │ │ ├── Ridley.png │ │ ├── ScrewAttack.png │ │ ├── SpaceJump.png │ │ ├── Spazer.png │ │ ├── SpeedBooster.png │ │ ├── SporeSpawn.png │ │ ├── SpringBall.png │ │ ├── Super.png │ │ ├── Varia.png │ │ ├── Wave.png │ │ └── XRayScope.png │ ├── link.svg │ ├── locked.svg │ ├── marker_base.xcf │ ├── marker_easy.png │ ├── marker_hard.png │ ├── marker_hardcore.png │ ├── marker_harder.png │ ├── marker_mania.png │ ├── marker_medium.png │ ├── marker_select.xcf │ ├── marker_visited.xcf │ ├── nextgps.png │ ├── play.svg │ ├── portal.png │ ├── portal_boss.png │ ├── portal_escape.png │ ├── portal_maridia.png │ ├── portal_maridia_area.png │ ├── portal_maridia_area.xcf │ ├── portal_maridia_vanilla.png │ ├── portal_maridia_vanilla.xcf │ ├── puzzle.svg │ ├── record.svg │ ├── record_ko.svg │ ├── record_load.svg │ ├── record_ok.svg │ ├── refresh.svg │ ├── repeat.svg │ ├── right_arrow.svg │ ├── samusIcon.png │ ├── save.svg │ ├── shut_down.svg │ ├── skip_forward.svg │ ├── television.svg │ ├── tracker │ │ └── numbers │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ └── warning.svg └── vanilla.png ├── views ├── _autotracker.js ├── _randomizer_data.js ├── customizer.html ├── extStats.html ├── home.html ├── inc_area_map.svg ├── infos.html ├── plando.html ├── plandorepo.html ├── presets.html ├── progSpeedStats.html ├── randomizer.html ├── solver.html ├── stats.html ├── t_includes.html ├── t_js.html ├── t_main.html ├── t_style.html ├── tracker.html └── varia.css └── web2py ├── static ├── css │ ├── bootstrap.min.css │ ├── calendar.css │ ├── web2py-bootstrap3.css │ └── web2py.css └── js │ ├── bootstrap.min.js │ ├── calendar.js │ ├── jquery.js │ ├── modernizr-2.8.3.min.js │ ├── share.js │ ├── web2py-bootstrap3.js │ └── web2py.js └── views ├── layout.html └── web2py_ajax.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /community_presets/flo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/community_presets/flo.json -------------------------------------------------------------------------------- /community_presets/manu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/community_presets/manu.json -------------------------------------------------------------------------------- /customizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/customizer.py -------------------------------------------------------------------------------- /doc/base_asm_refactor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/base_asm_refactor.txt -------------------------------------------------------------------------------- /doc/boulders_ai.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/boulders_ai.asm -------------------------------------------------------------------------------- /doc/custom_music.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/custom_music.txt -------------------------------------------------------------------------------- /doc/ending_screen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/ending_screen.txt -------------------------------------------------------------------------------- /doc/etecoons_ai.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/etecoons_ai.asm -------------------------------------------------------------------------------- /doc/fastmajlocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/fastmajlocs.txt -------------------------------------------------------------------------------- /doc/horizontal_gadora.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/horizontal_gadora.txt -------------------------------------------------------------------------------- /doc/idees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/idees.txt -------------------------------------------------------------------------------- /doc/igt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/igt.txt -------------------------------------------------------------------------------- /doc/new_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/new_map.txt -------------------------------------------------------------------------------- /doc/objective.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/objective.txt -------------------------------------------------------------------------------- /doc/plms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/plms.txt -------------------------------------------------------------------------------- /doc/rando_refactor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/rando_refactor.txt -------------------------------------------------------------------------------- /doc/rta_ship.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/rta_ship.txt -------------------------------------------------------------------------------- /doc/ship.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/doc/ship.txt -------------------------------------------------------------------------------- /graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graph/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/graph.py -------------------------------------------------------------------------------- /graph/graph_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/graph_utils.py -------------------------------------------------------------------------------- /graph/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/location.py -------------------------------------------------------------------------------- /graph/mirror/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graph/mirror/graph_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/mirror/graph_access.py -------------------------------------------------------------------------------- /graph/mirror/graph_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/mirror/graph_helpers.py -------------------------------------------------------------------------------- /graph/mirror/graph_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/mirror/graph_locations.py -------------------------------------------------------------------------------- /graph/mirror/map_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/mirror/map_icons.py -------------------------------------------------------------------------------- /graph/mirror/map_tilecount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/mirror/map_tilecount.py -------------------------------------------------------------------------------- /graph/mirror/map_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/mirror/map_tiles.py -------------------------------------------------------------------------------- /graph/rotation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graph/rotation/graph_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/rotation/graph_access.py -------------------------------------------------------------------------------- /graph/rotation/graph_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/rotation/graph_helpers.py -------------------------------------------------------------------------------- /graph/rotation/graph_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/rotation/graph_locations.py -------------------------------------------------------------------------------- /graph/vanilla/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graph/vanilla/graph_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/vanilla/graph_access.py -------------------------------------------------------------------------------- /graph/vanilla/graph_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/vanilla/graph_helpers.py -------------------------------------------------------------------------------- /graph/vanilla/graph_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/vanilla/graph_locations.py -------------------------------------------------------------------------------- /graph/vanilla/map_tilecount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/vanilla/map_tilecount.py -------------------------------------------------------------------------------- /graph/vanilla/map_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/graph/vanilla/map_tiles.py -------------------------------------------------------------------------------- /logic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logic/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/logic/cache.py -------------------------------------------------------------------------------- /logic/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/logic/helpers.py -------------------------------------------------------------------------------- /logic/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/logic/logic.py -------------------------------------------------------------------------------- /logic/smbool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/logic/smbool.py -------------------------------------------------------------------------------- /logic/smboolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/logic/smboolmanager.py -------------------------------------------------------------------------------- /patches/.gitignore: -------------------------------------------------------------------------------- 1 | debug/* 2 | -------------------------------------------------------------------------------- /patches/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/Makefile -------------------------------------------------------------------------------- /patches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/Makefile -------------------------------------------------------------------------------- /patches/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/common/ips/.gitignore: -------------------------------------------------------------------------------- 1 | race_mode* 2 | -------------------------------------------------------------------------------- /patches/common/ips/AimAnyButton.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/AimAnyButton.ips -------------------------------------------------------------------------------- /patches/common/ips/Debug_Full.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/Debug_Full.ips -------------------------------------------------------------------------------- /patches/common/ips/area_rando_gate_crab_tunnel.ips: -------------------------------------------------------------------------------- 1 | PATCHċEOF -------------------------------------------------------------------------------- /patches/common/ips/base.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/base.ips -------------------------------------------------------------------------------- /patches/common/ips/beam_doors_gfx.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/beam_doors_gfx.ips -------------------------------------------------------------------------------- /patches/common/ips/beam_doors_plms.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/beam_doors_plms.ips -------------------------------------------------------------------------------- /patches/common/ips/better_reserves.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/better_reserves.ips -------------------------------------------------------------------------------- /patches/common/ips/bomb_torizo.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/bomb_torizo.ips -------------------------------------------------------------------------------- /patches/common/ips/color_blind.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/color_blind.ips -------------------------------------------------------------------------------- /patches/common/ips/credits.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/credits.ips -------------------------------------------------------------------------------- /patches/common/ips/custom_music.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/custom_music.ips -------------------------------------------------------------------------------- /patches/common/ips/custom_ship.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/custom_ship.ips -------------------------------------------------------------------------------- /patches/common/ips/door_transition.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/door_transition.ips -------------------------------------------------------------------------------- /patches/common/ips/dread_mode.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/dread_mode.ips -------------------------------------------------------------------------------- /patches/common/ips/elevators_speed.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/elevators_speed.ips -------------------------------------------------------------------------------- /patches/common/ips/endingtotals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/endingtotals.ips -------------------------------------------------------------------------------- /patches/common/ips/fast_doors.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/fast_doors.ips -------------------------------------------------------------------------------- /patches/common/ips/hard_mode.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/hard_mode.ips -------------------------------------------------------------------------------- /patches/common/ips/hell.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/hell.ips -------------------------------------------------------------------------------- /patches/common/ips/intro_text.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/intro_text.ips -------------------------------------------------------------------------------- /patches/common/ips/itemsounds.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/itemsounds.ips -------------------------------------------------------------------------------- /patches/common/ips/map.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/map.ips -------------------------------------------------------------------------------- /patches/common/ips/nerfed_charge.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/nerfed_charge.ips -------------------------------------------------------------------------------- /patches/common/ips/no_demo.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/no_demo.ips -------------------------------------------------------------------------------- /patches/common/ips/noflashing.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/noflashing.ips -------------------------------------------------------------------------------- /patches/common/ips/objectives.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/objectives.ips -------------------------------------------------------------------------------- /patches/common/ips/plm_spawn.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/plm_spawn.ips -------------------------------------------------------------------------------- /patches/common/ips/rando_speed.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/rando_speed.ips -------------------------------------------------------------------------------- /patches/common/ips/random_music.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/random_music.ips -------------------------------------------------------------------------------- /patches/common/ips/red_doors.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/red_doors.ips -------------------------------------------------------------------------------- /patches/common/ips/reset.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/reset.ips -------------------------------------------------------------------------------- /patches/common/ips/reveal_map.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/reveal_map.ips -------------------------------------------------------------------------------- /patches/common/ips/seed_display.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/seed_display.ips -------------------------------------------------------------------------------- /patches/common/ips/spinjumprestart.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/spinjumprestart.ips -------------------------------------------------------------------------------- /patches/common/ips/start.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/start.ips -------------------------------------------------------------------------------- /patches/common/ips/stats.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/stats.ips -------------------------------------------------------------------------------- /patches/common/ips/utils.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/utils.ips -------------------------------------------------------------------------------- /patches/common/ips/vanilla_music.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/vanilla_music.ips -------------------------------------------------------------------------------- /patches/common/ips/varia_hud.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/varia_hud.ips -------------------------------------------------------------------------------- /patches/common/ips/wake_zebes.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/wake_zebes.ips -------------------------------------------------------------------------------- /patches/common/ips/wh_open_tube.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/wh_open_tube.ips -------------------------------------------------------------------------------- /patches/common/ips/widescreen.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/ips/widescreen.ips -------------------------------------------------------------------------------- /patches/common/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/patches.py -------------------------------------------------------------------------------- /patches/common/src/AimAnyButton.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/AimAnyButton.asm -------------------------------------------------------------------------------- /patches/common/src/HardMode/core.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/HardMode/core.asm -------------------------------------------------------------------------------- /patches/common/src/HardMode/spikes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/HardMode/spikes.asm -------------------------------------------------------------------------------- /patches/common/src/base.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/base.asm -------------------------------------------------------------------------------- /patches/common/src/base/arrow_tile.gfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/base/arrow_tile.gfx -------------------------------------------------------------------------------- /patches/common/src/base/saveload.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/base/saveload.asm -------------------------------------------------------------------------------- /patches/common/src/beam_doors_plms.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/beam_doors_plms.asm -------------------------------------------------------------------------------- /patches/common/src/better_reserves.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/better_reserves.asm -------------------------------------------------------------------------------- /patches/common/src/bomb_torizo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/bomb_torizo.asm -------------------------------------------------------------------------------- /patches/common/src/credits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/credits.asm -------------------------------------------------------------------------------- /patches/common/src/credits/beams.gfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/credits/beams.gfx -------------------------------------------------------------------------------- /patches/common/src/credits/font3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/credits/font3.bin -------------------------------------------------------------------------------- /patches/common/src/custom_music.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/custom_music.asm -------------------------------------------------------------------------------- /patches/common/src/custom_ship.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/custom_ship.asm -------------------------------------------------------------------------------- /patches/common/src/door_transition.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/door_transition.asm -------------------------------------------------------------------------------- /patches/common/src/dread_mode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/dread_mode.asm -------------------------------------------------------------------------------- /patches/common/src/elevators_speed.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/elevators_speed.asm -------------------------------------------------------------------------------- /patches/common/src/endingtotals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/endingtotals.asm -------------------------------------------------------------------------------- /patches/common/src/fast_doors.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/fast_doors.asm -------------------------------------------------------------------------------- /patches/common/src/hard_mode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/hard_mode.asm -------------------------------------------------------------------------------- /patches/common/src/hell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/hell.asm -------------------------------------------------------------------------------- /patches/common/src/include/macros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/include/macros.asm -------------------------------------------------------------------------------- /patches/common/src/intro_text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/intro_text.asm -------------------------------------------------------------------------------- /patches/common/src/itemsounds.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/itemsounds.asm -------------------------------------------------------------------------------- /patches/common/src/map.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map.asm -------------------------------------------------------------------------------- /patches/common/src/map/HexMapTiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map/HexMapTiles.bin -------------------------------------------------------------------------------- /patches/common/src/map/Minimap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map/Minimap.asm -------------------------------------------------------------------------------- /patches/common/src/map/Misc_Banks.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map/Misc_Banks.asm -------------------------------------------------------------------------------- /patches/common/src/map/NoHexMap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map/NoHexMap.asm -------------------------------------------------------------------------------- /patches/common/src/map/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map/README.txt -------------------------------------------------------------------------------- /patches/common/src/map/hud.gfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map/hud.gfx -------------------------------------------------------------------------------- /patches/common/src/map/hud_tilemap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map/hud_tilemap.asm -------------------------------------------------------------------------------- /patches/common/src/map/minimap.gfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map/minimap.gfx -------------------------------------------------------------------------------- /patches/common/src/map/pause.gfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map/pause.gfx -------------------------------------------------------------------------------- /patches/common/src/map/pause_extra.gfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/map/pause_extra.gfx -------------------------------------------------------------------------------- /patches/common/src/nerfed_charge.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/nerfed_charge.asm -------------------------------------------------------------------------------- /patches/common/src/no_demo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/no_demo.asm -------------------------------------------------------------------------------- /patches/common/src/noflash/bosses.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/noflash/bosses.asm -------------------------------------------------------------------------------- /patches/common/src/noflash/escape.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/noflash/escape.asm -------------------------------------------------------------------------------- /patches/common/src/noflashing.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/noflashing.asm -------------------------------------------------------------------------------- /patches/common/src/objectives.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/objectives.asm -------------------------------------------------------------------------------- /patches/common/src/plm_spawn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/plm_spawn.asm -------------------------------------------------------------------------------- /patches/common/src/rando_speed.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/rando_speed.asm -------------------------------------------------------------------------------- /patches/common/src/random_music.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/random_music.asm -------------------------------------------------------------------------------- /patches/common/src/red_doors.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/red_doors.asm -------------------------------------------------------------------------------- /patches/common/src/reset.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/reset.asm -------------------------------------------------------------------------------- /patches/common/src/reveal_map.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/reveal_map.asm -------------------------------------------------------------------------------- /patches/common/src/seed_display.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/seed_display.asm -------------------------------------------------------------------------------- /patches/common/src/spinjumprestart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/spinjumprestart.asm -------------------------------------------------------------------------------- /patches/common/src/start.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/start.asm -------------------------------------------------------------------------------- /patches/common/src/stats.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/stats.asm -------------------------------------------------------------------------------- /patches/common/src/tables/big.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/big.tbl -------------------------------------------------------------------------------- /patches/common/src/tables/blue.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/blue.tbl -------------------------------------------------------------------------------- /patches/common/src/tables/cyan.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/cyan.tbl -------------------------------------------------------------------------------- /patches/common/src/tables/green.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/green.tbl -------------------------------------------------------------------------------- /patches/common/src/tables/menu.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/menu.tbl -------------------------------------------------------------------------------- /patches/common/src/tables/msgbox.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/msgbox.tbl -------------------------------------------------------------------------------- /patches/common/src/tables/orange.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/orange.tbl -------------------------------------------------------------------------------- /patches/common/src/tables/pause.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/pause.tbl -------------------------------------------------------------------------------- /patches/common/src/tables/pink.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/pink.tbl -------------------------------------------------------------------------------- /patches/common/src/tables/purple.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/purple.tbl -------------------------------------------------------------------------------- /patches/common/src/tables/yellow.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tables/yellow.tbl -------------------------------------------------------------------------------- /patches/common/src/tracking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/tracking.txt -------------------------------------------------------------------------------- /patches/common/src/utils.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/utils.asm -------------------------------------------------------------------------------- /patches/common/src/varia_hud.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/varia_hud.asm -------------------------------------------------------------------------------- /patches/common/src/wake_zebes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/wake_zebes.asm -------------------------------------------------------------------------------- /patches/common/src/wh_open_tube.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/src/wh_open_tube.asm -------------------------------------------------------------------------------- /patches/common/sym/area_ids.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /patches/common/sym/area_rando_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "full_refill": 9434881 3 | } -------------------------------------------------------------------------------- /patches/common/sym/credits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/sym/credits.json -------------------------------------------------------------------------------- /patches/common/sym/endingtotals.json: -------------------------------------------------------------------------------- 1 | { 2 | "total_items": 9168670 3 | } -------------------------------------------------------------------------------- /patches/common/sym/intro_text.json: -------------------------------------------------------------------------------- 1 | { 2 | "page1_text": 9225097 3 | } -------------------------------------------------------------------------------- /patches/common/sym/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/sym/map.json -------------------------------------------------------------------------------- /patches/common/sym/objectives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/sym/objectives.json -------------------------------------------------------------------------------- /patches/common/sym/plm_spawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/sym/plm_spawn.json -------------------------------------------------------------------------------- /patches/common/sym/seed_display.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/sym/seed_display.json -------------------------------------------------------------------------------- /patches/common/sym/start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/common/sym/start.json -------------------------------------------------------------------------------- /patches/common/sym/varia_hud.json: -------------------------------------------------------------------------------- 1 | { 2 | "scav_order": 10614112 3 | } -------------------------------------------------------------------------------- /patches/debug/vanilla.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/debug/vanilla.msl -------------------------------------------------------------------------------- /patches/ips.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/ips.pl -------------------------------------------------------------------------------- /patches/mirror/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/Makefile -------------------------------------------------------------------------------- /patches/mirror/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/mirror/ips/baby_kraid.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/baby_kraid.ips -------------------------------------------------------------------------------- /patches/mirror/ips/baby_room.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/baby_room.ips -------------------------------------------------------------------------------- /patches/mirror/ips/bank_83.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/bank_83.ips -------------------------------------------------------------------------------- /patches/mirror/ips/bank_8f.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/bank_8f.ips -------------------------------------------------------------------------------- /patches/mirror/ips/botwoon.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/botwoon.ips -------------------------------------------------------------------------------- /patches/mirror/ips/boulders.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/boulders.ips -------------------------------------------------------------------------------- /patches/mirror/ips/chainblocks.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/chainblocks.ips -------------------------------------------------------------------------------- /patches/mirror/ips/climb_supers.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/climb_supers.ips -------------------------------------------------------------------------------- /patches/mirror/ips/crab_mt_everest.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/crab_mt_everest.ips -------------------------------------------------------------------------------- /patches/mirror/ips/crab_shaft.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/crab_shaft.ips -------------------------------------------------------------------------------- /patches/mirror/ips/crocomire.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/crocomire.ips -------------------------------------------------------------------------------- /patches/mirror/ips/dachora.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/dachora.ips -------------------------------------------------------------------------------- /patches/mirror/ips/east_ocean.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/east_ocean.ips -------------------------------------------------------------------------------- /patches/mirror/ips/escape_animals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/escape_animals.ips -------------------------------------------------------------------------------- /patches/mirror/ips/etecoons.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/etecoons.ips -------------------------------------------------------------------------------- /patches/mirror/ips/high_jump.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/high_jump.ips -------------------------------------------------------------------------------- /patches/mirror/ips/kraid.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/kraid.ips -------------------------------------------------------------------------------- /patches/mirror/ips/kraid_save.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/kraid_save.ips -------------------------------------------------------------------------------- /patches/mirror/ips/mama_save.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/mama_save.ips -------------------------------------------------------------------------------- /patches/mirror/ips/map_data.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/map_data.ips -------------------------------------------------------------------------------- /patches/mirror/ips/map_data_area.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/map_data_area.ips -------------------------------------------------------------------------------- /patches/mirror/ips/map_icon_data.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/map_icon_data.ips -------------------------------------------------------------------------------- /patches/mirror/ips/mirrortroid.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/mirrortroid.ips -------------------------------------------------------------------------------- /patches/mirror/ips/moat.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/moat.ips -------------------------------------------------------------------------------- /patches/mirror/ips/mother_brain.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/mother_brain.ips -------------------------------------------------------------------------------- /patches/mirror/ips/open_zebetites.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/open_zebetites.ips -------------------------------------------------------------------------------- /patches/mirror/ips/rando_escape.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/rando_escape.ips -------------------------------------------------------------------------------- /patches/mirror/ips/red_tower.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/red_tower.ips -------------------------------------------------------------------------------- /patches/mirror/ips/remove_Crateria.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/remove_Crateria.ips -------------------------------------------------------------------------------- /patches/mirror/ips/remove_Kraid.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/remove_Kraid.ips -------------------------------------------------------------------------------- /patches/mirror/ips/remove_Norfair.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/remove_Norfair.ips -------------------------------------------------------------------------------- /patches/mirror/ips/reveal_map_data.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/reveal_map_data.ips -------------------------------------------------------------------------------- /patches/mirror/ips/ridley.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/ridley.ips -------------------------------------------------------------------------------- /patches/mirror/ips/rinkas.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/rinkas.ips -------------------------------------------------------------------------------- /patches/mirror/ips/snails.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/snails.ips -------------------------------------------------------------------------------- /patches/mirror/ips/spazer.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/spazer.ips -------------------------------------------------------------------------------- /patches/mirror/ips/spospo_save.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/spospo_save.ips -------------------------------------------------------------------------------- /patches/mirror/ips/torizos.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/torizos.ips -------------------------------------------------------------------------------- /patches/mirror/ips/varia_logo.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/varia_logo.ips -------------------------------------------------------------------------------- /patches/mirror/ips/ws_treadmill.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/ips/ws_treadmill.ips -------------------------------------------------------------------------------- /patches/mirror/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/patches.py -------------------------------------------------------------------------------- /patches/mirror/src/baby_room.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/baby_room.asm -------------------------------------------------------------------------------- /patches/mirror/src/bank_83.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/bank_83.asm -------------------------------------------------------------------------------- /patches/mirror/src/bank_8f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/bank_8f.asm -------------------------------------------------------------------------------- /patches/mirror/src/botwoon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/botwoon.asm -------------------------------------------------------------------------------- /patches/mirror/src/boulders.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/boulders.asm -------------------------------------------------------------------------------- /patches/mirror/src/chainblocks.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/chainblocks.asm -------------------------------------------------------------------------------- /patches/mirror/src/crab_mt_everest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/crab_mt_everest.asm -------------------------------------------------------------------------------- /patches/mirror/src/crocomire.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/crocomire.asm -------------------------------------------------------------------------------- /patches/mirror/src/escape_animals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/escape_animals.asm -------------------------------------------------------------------------------- /patches/mirror/src/etecoons.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/etecoons.asm -------------------------------------------------------------------------------- /patches/mirror/src/kraid.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/kraid.asm -------------------------------------------------------------------------------- /patches/mirror/src/map/brinstar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/brinstar.asm -------------------------------------------------------------------------------- /patches/mirror/src/map/brinstar.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/brinstar.bin -------------------------------------------------------------------------------- /patches/mirror/src/map/ceres.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/ceres.asm -------------------------------------------------------------------------------- /patches/mirror/src/map/ceres.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/ceres.bin -------------------------------------------------------------------------------- /patches/mirror/src/map/ceres_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/ceres_data.bin -------------------------------------------------------------------------------- /patches/mirror/src/map/crateria.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/crateria.asm -------------------------------------------------------------------------------- /patches/mirror/src/map/crateria.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/crateria.bin -------------------------------------------------------------------------------- /patches/mirror/src/map/maridia.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/maridia.asm -------------------------------------------------------------------------------- /patches/mirror/src/map/maridia.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/maridia.bin -------------------------------------------------------------------------------- /patches/mirror/src/map/norfair.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/norfair.asm -------------------------------------------------------------------------------- /patches/mirror/src/map/norfair.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/norfair.bin -------------------------------------------------------------------------------- /patches/mirror/src/map/norfair_alt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/norfair_alt.asm -------------------------------------------------------------------------------- /patches/mirror/src/map/tourian.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/tourian.asm -------------------------------------------------------------------------------- /patches/mirror/src/map/tourian.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map/tourian.bin -------------------------------------------------------------------------------- /patches/mirror/src/map_data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map_data.asm -------------------------------------------------------------------------------- /patches/mirror/src/map_data_area.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map_data_area.asm -------------------------------------------------------------------------------- /patches/mirror/src/map_icon_data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/map_icon_data.asm -------------------------------------------------------------------------------- /patches/mirror/src/mother_brain.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/mother_brain.asm -------------------------------------------------------------------------------- /patches/mirror/src/rando_escape.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/rando_escape.asm -------------------------------------------------------------------------------- /patches/mirror/src/remove_Crateria.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/remove_Crateria.asm -------------------------------------------------------------------------------- /patches/mirror/src/remove_Kraid.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/remove_Kraid.asm -------------------------------------------------------------------------------- /patches/mirror/src/remove_Norfair.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/remove_Norfair.asm -------------------------------------------------------------------------------- /patches/mirror/src/reveal_map_data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/reveal_map_data.asm -------------------------------------------------------------------------------- /patches/mirror/src/ridley.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/ridley.asm -------------------------------------------------------------------------------- /patches/mirror/src/rinkas.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/rinkas.asm -------------------------------------------------------------------------------- /patches/mirror/src/snails.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/snails.asm -------------------------------------------------------------------------------- /patches/mirror/src/torizos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/torizos.asm -------------------------------------------------------------------------------- /patches/mirror/src/ws_treadmill.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/src/ws_treadmill.asm -------------------------------------------------------------------------------- /patches/mirror/sym/bank_8f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/sym/bank_8f.json -------------------------------------------------------------------------------- /patches/mirror/sym/fix_save.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /patches/mirror/sym/map_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/sym/map_data.json -------------------------------------------------------------------------------- /patches/mirror/sym/rando_escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/mirror/sym/rando_escape.json -------------------------------------------------------------------------------- /patches/patchaccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/patchaccess.py -------------------------------------------------------------------------------- /patches/rotation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/rotation/ips/rotation.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/rotation/ips/rotation.ips -------------------------------------------------------------------------------- /patches/rotation/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/rotation/patches.py -------------------------------------------------------------------------------- /patches/vanilla/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/Makefile -------------------------------------------------------------------------------- /patches/vanilla/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/vanilla/ips/animal_enemies.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/animal_enemies.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/animals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/animals.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/climb_supers.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/climb_supers.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/crab_shaft.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/crab_shaft.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/dachora.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/dachora.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/draygonimals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/draygonimals.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/east_ocean.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/east_ocean.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/escapimals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/escapimals.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/gameend.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/gameend.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/high_jump.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/high_jump.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/kraid_save.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/kraid_save.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/low_timer.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/low_timer.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/mama_save.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/mama_save.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/map_data.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/map_data.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/map_data_area.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/map_data_area.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/metalimals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/metalimals.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/moat.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/moat.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/open_zebetites.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/open_zebetites.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/phantoonimals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/phantoonimals.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/rando_escape.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/rando_escape.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/red_tower.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/red_tower.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/remove_Kraid.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/remove_Kraid.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/remove_Norfair.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/remove_Norfair.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/ridleyimals.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/ridleyimals.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/spazer.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/spazer.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/spospo_save.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/spospo_save.ips -------------------------------------------------------------------------------- /patches/vanilla/ips/varia_logo.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/ips/varia_logo.ips -------------------------------------------------------------------------------- /patches/vanilla/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/patches.py -------------------------------------------------------------------------------- /patches/vanilla/src/bank_8f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/bank_8f.asm -------------------------------------------------------------------------------- /patches/vanilla/src/draygonimals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/draygonimals.asm -------------------------------------------------------------------------------- /patches/vanilla/src/gameend.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/gameend.asm -------------------------------------------------------------------------------- /patches/vanilla/src/map/brinstar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/brinstar.asm -------------------------------------------------------------------------------- /patches/vanilla/src/map/brinstar.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/brinstar.bin -------------------------------------------------------------------------------- /patches/vanilla/src/map/ceres.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/ceres.asm -------------------------------------------------------------------------------- /patches/vanilla/src/map/ceres.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/ceres.bin -------------------------------------------------------------------------------- /patches/vanilla/src/map/ceres_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/ceres_data.bin -------------------------------------------------------------------------------- /patches/vanilla/src/map/crateria.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/crateria.asm -------------------------------------------------------------------------------- /patches/vanilla/src/map/crateria.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/crateria.bin -------------------------------------------------------------------------------- /patches/vanilla/src/map/maridia.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/maridia.asm -------------------------------------------------------------------------------- /patches/vanilla/src/map/maridia.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/maridia.bin -------------------------------------------------------------------------------- /patches/vanilla/src/map/norfair.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/norfair.asm -------------------------------------------------------------------------------- /patches/vanilla/src/map/norfair.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/norfair.bin -------------------------------------------------------------------------------- /patches/vanilla/src/map/tourian.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/tourian.asm -------------------------------------------------------------------------------- /patches/vanilla/src/map/tourian.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map/tourian.bin -------------------------------------------------------------------------------- /patches/vanilla/src/map_data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map_data.asm -------------------------------------------------------------------------------- /patches/vanilla/src/map_data_area.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/map_data_area.asm -------------------------------------------------------------------------------- /patches/vanilla/src/metalimals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/metalimals.asm -------------------------------------------------------------------------------- /patches/vanilla/src/phantoonimals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/phantoonimals.asm -------------------------------------------------------------------------------- /patches/vanilla/src/rando_escape.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/rando_escape.asm -------------------------------------------------------------------------------- /patches/vanilla/src/remove_Kraid.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/remove_Kraid.asm -------------------------------------------------------------------------------- /patches/vanilla/src/remove_Norfair.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/remove_Norfair.asm -------------------------------------------------------------------------------- /patches/vanilla/src/ridleyimals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/src/ridleyimals.asm -------------------------------------------------------------------------------- /patches/vanilla/sym/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/vanilla/sym/bank_8f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/sym/bank_8f.json -------------------------------------------------------------------------------- /patches/vanilla/sym/map_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/sym/map_data.json -------------------------------------------------------------------------------- /patches/vanilla/sym/rando_escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/patches/vanilla/sym/rando_escape.json -------------------------------------------------------------------------------- /patches/vanilla/sym/reverse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rando/Choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/Choice.py -------------------------------------------------------------------------------- /rando/Chozo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/Chozo.py -------------------------------------------------------------------------------- /rando/Filler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/Filler.py -------------------------------------------------------------------------------- /rando/FillerProgSpeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/FillerProgSpeed.py -------------------------------------------------------------------------------- /rando/FillerRandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/FillerRandom.py -------------------------------------------------------------------------------- /rando/FillerScavenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/FillerScavenger.py -------------------------------------------------------------------------------- /rando/GraphBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/GraphBuilder.py -------------------------------------------------------------------------------- /rando/ItemLocContainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/ItemLocContainer.py -------------------------------------------------------------------------------- /rando/Items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/Items.py -------------------------------------------------------------------------------- /rando/MiniSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/MiniSolver.py -------------------------------------------------------------------------------- /rando/RandoExec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/RandoExec.py -------------------------------------------------------------------------------- /rando/RandoServices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/RandoServices.py -------------------------------------------------------------------------------- /rando/RandoSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/RandoSettings.py -------------------------------------------------------------------------------- /rando/RandoSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/RandoSetup.py -------------------------------------------------------------------------------- /rando/Restrictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/Restrictions.py -------------------------------------------------------------------------------- /rando/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rando/color_palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/color_palettes.py -------------------------------------------------------------------------------- /rando/palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/palettes.py -------------------------------------------------------------------------------- /rando/vanillaItemLocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando/vanillaItemLocations.py -------------------------------------------------------------------------------- /rando_presets/Chozo_Speedrun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/Chozo_Speedrun.json -------------------------------------------------------------------------------- /rando_presets/SGL23Online.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/SGL23Online.json -------------------------------------------------------------------------------- /rando_presets/SMRAT2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/SMRAT2021.json -------------------------------------------------------------------------------- /rando_presets/Season_Races.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/Season_Races.json -------------------------------------------------------------------------------- /rando_presets/VARIA_Weekly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/VARIA_Weekly.json -------------------------------------------------------------------------------- /rando_presets/all_random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/all_random.json -------------------------------------------------------------------------------- /rando_presets/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/default.json -------------------------------------------------------------------------------- /rando_presets/doors_long.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/doors_long.json -------------------------------------------------------------------------------- /rando_presets/doors_short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/doors_short.json -------------------------------------------------------------------------------- /rando_presets/free.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/free.json -------------------------------------------------------------------------------- /rando_presets/hardway2hell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/hardway2hell.json -------------------------------------------------------------------------------- /rando_presets/haste.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/haste.json -------------------------------------------------------------------------------- /rando_presets/highway2hell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/highway2hell.json -------------------------------------------------------------------------------- /rando_presets/hud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/hud.json -------------------------------------------------------------------------------- /rando_presets/hud_hard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/hud_hard.json -------------------------------------------------------------------------------- /rando_presets/hud_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/hud_start.json -------------------------------------------------------------------------------- /rando_presets/minimizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/minimizer.json -------------------------------------------------------------------------------- /rando_presets/minimizer_hardcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/minimizer_hardcore.json -------------------------------------------------------------------------------- /rando_presets/minimizer_maximizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/minimizer_maximizer.json -------------------------------------------------------------------------------- /rando_presets/objectives_bingo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/objectives_bingo.json -------------------------------------------------------------------------------- /rando_presets/objectives_long.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/objectives_long.json -------------------------------------------------------------------------------- /rando_presets/objectives_memes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/objectives_memes.json -------------------------------------------------------------------------------- /rando_presets/objectives_rampage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/objectives_rampage.json -------------------------------------------------------------------------------- /rando_presets/objectives_short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/objectives_short.json -------------------------------------------------------------------------------- /rando_presets/quite_random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/quite_random.json -------------------------------------------------------------------------------- /rando_presets/scavenger_hard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/scavenger_hard.json -------------------------------------------------------------------------------- /rando_presets/scavenger_random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/scavenger_random.json -------------------------------------------------------------------------------- /rando_presets/scavenger_speedrun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/scavenger_speedrun.json -------------------------------------------------------------------------------- /rando_presets/scavenger_visit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/scavenger_visit.json -------------------------------------------------------------------------------- /rando_presets/stupid_hard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/stupid_hard.json -------------------------------------------------------------------------------- /rando_presets/surprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/surprise.json -------------------------------------------------------------------------------- /rando_presets/vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/vanilla.json -------------------------------------------------------------------------------- /rando_presets/way_of_chozo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/way_of_chozo.json -------------------------------------------------------------------------------- /rando_presets/where_am_i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/where_am_i.json -------------------------------------------------------------------------------- /rando_presets/where_is_morph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rando_presets/where_is_morph.json -------------------------------------------------------------------------------- /randomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/randomizer.py -------------------------------------------------------------------------------- /randomizer_webservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/randomizer_webservice.py -------------------------------------------------------------------------------- /rom/.gitignore: -------------------------------------------------------------------------------- 1 | race_mode* 2 | -------------------------------------------------------------------------------- /rom/PaletteRando.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/PaletteRando.py -------------------------------------------------------------------------------- /rom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rom/addressTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/addressTypes.py -------------------------------------------------------------------------------- /rom/addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/addresses.py -------------------------------------------------------------------------------- /rom/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/compression.py -------------------------------------------------------------------------------- /rom/enemies_objectives_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/enemies_objectives_data.py -------------------------------------------------------------------------------- /rom/flavor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/flavor.py -------------------------------------------------------------------------------- /rom/ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/ips.py -------------------------------------------------------------------------------- /rom/leveldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/leveldata.py -------------------------------------------------------------------------------- /rom/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/map.py -------------------------------------------------------------------------------- /rom/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/palette.py -------------------------------------------------------------------------------- /rom/rom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/rom.py -------------------------------------------------------------------------------- /rom/rom_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/rom_options.py -------------------------------------------------------------------------------- /rom/rom_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/rom_patches.py -------------------------------------------------------------------------------- /rom/romloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/romloader.py -------------------------------------------------------------------------------- /rom/rompatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/rompatcher.py -------------------------------------------------------------------------------- /rom/romreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/romreader.py -------------------------------------------------------------------------------- /rom/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/rom/symbols.py -------------------------------------------------------------------------------- /solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver.py -------------------------------------------------------------------------------- /solver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solver/comeback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/comeback.py -------------------------------------------------------------------------------- /solver/commonSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/commonSolver.py -------------------------------------------------------------------------------- /solver/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/conf.py -------------------------------------------------------------------------------- /solver/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/container.py -------------------------------------------------------------------------------- /solver/difficultyDisplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/difficultyDisplayer.py -------------------------------------------------------------------------------- /solver/interactiveSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/interactiveSolver.py -------------------------------------------------------------------------------- /solver/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/modules.py -------------------------------------------------------------------------------- /solver/out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/out.py -------------------------------------------------------------------------------- /solver/randoSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/randoSolver.py -------------------------------------------------------------------------------- /solver/runtimeLimiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/runtimeLimiter.py -------------------------------------------------------------------------------- /solver/solverState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/solverState.py -------------------------------------------------------------------------------- /solver/standardSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/solver/standardSolver.py -------------------------------------------------------------------------------- /standard_presets/SMRAT2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/SMRAT2021.json -------------------------------------------------------------------------------- /standard_presets/Season_Races.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/Season_Races.json -------------------------------------------------------------------------------- /standard_presets/Torneio_SGPT3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/Torneio_SGPT3.json -------------------------------------------------------------------------------- /standard_presets/casual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/casual.json -------------------------------------------------------------------------------- /standard_presets/expert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/expert.json -------------------------------------------------------------------------------- /standard_presets/master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/master.json -------------------------------------------------------------------------------- /standard_presets/newbie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/newbie.json -------------------------------------------------------------------------------- /standard_presets/regular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/regular.json -------------------------------------------------------------------------------- /standard_presets/samus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/samus.json -------------------------------------------------------------------------------- /standard_presets/solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/solution.json -------------------------------------------------------------------------------- /standard_presets/veteran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/standard_presets/veteran.json -------------------------------------------------------------------------------- /tools/ItemsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/ItemsTest.py -------------------------------------------------------------------------------- /tools/MesenS_scripts/botwoon_debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/MesenS_scripts/botwoon_debug.lua -------------------------------------------------------------------------------- /tools/MesenS_scripts/crocomire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/MesenS_scripts/crocomire.lua -------------------------------------------------------------------------------- /tools/MesenS_scripts/kraid_debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/MesenS_scripts/kraid_debug.lua -------------------------------------------------------------------------------- /tools/MesenS_scripts/mb_debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/MesenS_scripts/mb_debug.lua -------------------------------------------------------------------------------- /tools/MesenS_scripts/projectiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/MesenS_scripts/projectiles.lua -------------------------------------------------------------------------------- /tools/MesenS_scripts/ridley_debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/MesenS_scripts/ridley_debug.lua -------------------------------------------------------------------------------- /tools/MesenS_scripts/samus_debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/MesenS_scripts/samus_debug.lua -------------------------------------------------------------------------------- /tools/MesenS_scripts/stats_debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/MesenS_scripts/stats_debug.lua -------------------------------------------------------------------------------- /tools/MesenS_scripts/timers_debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/MesenS_scripts/timers_debug.lua -------------------------------------------------------------------------------- /tools/MesenS_scripts/torizos_debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/MesenS_scripts/torizos_debug.lua -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/add_colorblind_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/add_colorblind_colors.py -------------------------------------------------------------------------------- /tools/add_nspc_tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/add_nspc_tracks.py -------------------------------------------------------------------------------- /tools/add_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/add_score.py -------------------------------------------------------------------------------- /tools/apply_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/apply_ips.py -------------------------------------------------------------------------------- /tools/archive_ips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/archive_ips.sh -------------------------------------------------------------------------------- /tools/autotracker/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/autotracker/data.js -------------------------------------------------------------------------------- /tools/autotracker/vanilla/Crateria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/autotracker/vanilla/Crateria.png -------------------------------------------------------------------------------- /tools/autotracker/vanilla/Draygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/autotracker/vanilla/Draygon.png -------------------------------------------------------------------------------- /tools/autotracker/vanilla/Kraid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/autotracker/vanilla/Kraid.png -------------------------------------------------------------------------------- /tools/autotracker/vanilla/Phantoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/autotracker/vanilla/Phantoon.png -------------------------------------------------------------------------------- /tools/autotracker/vanilla/Ridley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/autotracker/vanilla/Ridley.png -------------------------------------------------------------------------------- /tools/autotracker/vanilla/Tourian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/autotracker/vanilla/Tourian.png -------------------------------------------------------------------------------- /tools/backport_mirrortroid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/backport_mirrortroid.sh -------------------------------------------------------------------------------- /tools/bin_to_asm_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/bin_to_asm_data.py -------------------------------------------------------------------------------- /tools/blinking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/blinking.py -------------------------------------------------------------------------------- /tools/boss_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/boss_test.py -------------------------------------------------------------------------------- /tools/build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/build.mk -------------------------------------------------------------------------------- /tools/check_custom_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/check_custom_music.py -------------------------------------------------------------------------------- /tools/check_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/check_db.py -------------------------------------------------------------------------------- /tools/check_nspc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/check_nspc.py -------------------------------------------------------------------------------- /tools/clean_sprite_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/clean_sprite_ips.py -------------------------------------------------------------------------------- /tools/collect_stats.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/collect_stats.bash -------------------------------------------------------------------------------- /tools/compare_patch_in_two_roms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/compare_patch_in_two_roms.sh -------------------------------------------------------------------------------- /tools/complete_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/complete_ips.py -------------------------------------------------------------------------------- /tools/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/compress.py -------------------------------------------------------------------------------- /tools/convert_pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/convert_pal.py -------------------------------------------------------------------------------- /tools/darken_pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/darken_pal.py -------------------------------------------------------------------------------- /tools/decompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/decompress.py -------------------------------------------------------------------------------- /tools/dropExtStats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/dropExtStats.sh -------------------------------------------------------------------------------- /tools/dump_rom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/dump_rom.py -------------------------------------------------------------------------------- /tools/empty_escape_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/empty_escape_tiles.py -------------------------------------------------------------------------------- /tools/extract_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/extract_data.py -------------------------------------------------------------------------------- /tools/extract_doors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/extract_doors.py -------------------------------------------------------------------------------- /tools/extract_nspc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/extract_nspc.py -------------------------------------------------------------------------------- /tools/extract_ship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/extract_ship.py -------------------------------------------------------------------------------- /tools/extract_ship_gfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/extract_ship_gfx.py -------------------------------------------------------------------------------- /tools/extract_ship_gfx7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/extract_ship_gfx7.py -------------------------------------------------------------------------------- /tools/extract_ship_pal7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/extract_ship_pal7.py -------------------------------------------------------------------------------- /tools/fix_presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/fix_presets.py -------------------------------------------------------------------------------- /tools/flatten_vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/flatten_vcr.py -------------------------------------------------------------------------------- /tools/genExtStats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/genExtStats.sh -------------------------------------------------------------------------------- /tools/genProgSpeedStats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/genProgSpeedStats.sh -------------------------------------------------------------------------------- /tools/genReleaseStats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/genReleaseStats.sh -------------------------------------------------------------------------------- /tools/genTotalStats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/genTotalStats.sh -------------------------------------------------------------------------------- /tools/gen_83_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_83_map.py -------------------------------------------------------------------------------- /tools/gen_8f_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_8f_map.py -------------------------------------------------------------------------------- /tools/gen_ap_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_ap_exit.py -------------------------------------------------------------------------------- /tools/gen_area_in_rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_area_in_rooms.py -------------------------------------------------------------------------------- /tools/gen_areas_ids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_areas_ids.sh -------------------------------------------------------------------------------- /tools/gen_asm_dep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_asm_dep.sh -------------------------------------------------------------------------------- /tools/gen_autotracker_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_autotracker_data.py -------------------------------------------------------------------------------- /tools/gen_custom_music_specific_ips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_custom_music_specific_ips.sh -------------------------------------------------------------------------------- /tools/gen_door_asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_door_asm.py -------------------------------------------------------------------------------- /tools/gen_door_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_door_patches.py -------------------------------------------------------------------------------- /tools/gen_enemies_objectives_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_enemies_objectives_code.py -------------------------------------------------------------------------------- /tools/gen_enemies_objectives_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_enemies_objectives_data.py -------------------------------------------------------------------------------- /tools/gen_ips_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_ips_map.py -------------------------------------------------------------------------------- /tools/gen_locs_by_areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_locs_by_areas.py -------------------------------------------------------------------------------- /tools/gen_map_reveal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_map_reveal.py -------------------------------------------------------------------------------- /tools/gen_map_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_map_svg.py -------------------------------------------------------------------------------- /tools/gen_minimap_color_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_minimap_color_data.py -------------------------------------------------------------------------------- /tools/gen_minimap_color_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_minimap_color_data.sh -------------------------------------------------------------------------------- /tools/gen_mirror_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_mirror_layout.py -------------------------------------------------------------------------------- /tools/gen_mirror_layout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_mirror_layout.sh -------------------------------------------------------------------------------- /tools/gen_mirror_ship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_mirror_ship.py -------------------------------------------------------------------------------- /tools/gen_mirror_ships.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_mirror_ships.sh -------------------------------------------------------------------------------- /tools/gen_msl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_msl.py -------------------------------------------------------------------------------- /tools/gen_playlist_from_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_playlist_from_seed.py -------------------------------------------------------------------------------- /tools/gen_sprite_palettes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_sprite_palettes.sh -------------------------------------------------------------------------------- /tools/gen_sprite_patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_sprite_patches.sh -------------------------------------------------------------------------------- /tools/gen_syms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_syms.py -------------------------------------------------------------------------------- /tools/gen_vanilla_8f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_vanilla_8f.py -------------------------------------------------------------------------------- /tools/gen_vanilla_area_base_layout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_vanilla_area_base_layout.sh -------------------------------------------------------------------------------- /tools/gen_vanilla_itemlocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/gen_vanilla_itemlocs.py -------------------------------------------------------------------------------- /tools/get_door_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/get_door_id.py -------------------------------------------------------------------------------- /tools/get_patches_defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/get_patches_defs.py -------------------------------------------------------------------------------- /tools/get_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/get_stats.py -------------------------------------------------------------------------------- /tools/inject_ship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/inject_ship.py -------------------------------------------------------------------------------- /tools/inject_ship.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/inject_ship.sh -------------------------------------------------------------------------------- /tools/ips_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/ips_check.py -------------------------------------------------------------------------------- /tools/ips_to_asm_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/ips_to_asm_data.py -------------------------------------------------------------------------------- /tools/loadExtStats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/loadExtStats.sh -------------------------------------------------------------------------------- /tools/logo/genLogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/logo/genLogo.py -------------------------------------------------------------------------------- /tools/logo/title_logo_sm.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/logo/title_logo_sm.xcf -------------------------------------------------------------------------------- /tools/make_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/make_ips.py -------------------------------------------------------------------------------- /tools/make_ips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/make_ips.sh -------------------------------------------------------------------------------- /tools/map/gfx_bmp/pause_gfx_0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/gfx_bmp/pause_gfx_0.bmp -------------------------------------------------------------------------------- /tools/map/gfx_bmp/pause_gfx_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/gfx_bmp/pause_gfx_1.bmp -------------------------------------------------------------------------------- /tools/map/gfx_bmp/pause_gfx_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/gfx_bmp/pause_gfx_2.bmp -------------------------------------------------------------------------------- /tools/map/gfx_bmp/pause_gfx_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/gfx_bmp/pause_gfx_3.bmp -------------------------------------------------------------------------------- /tools/map/gfx_bmp/pause_gfx_4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/gfx_bmp/pause_gfx_4.bmp -------------------------------------------------------------------------------- /tools/map/gfx_bmp/pause_gfx_5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/gfx_bmp/pause_gfx_5.bmp -------------------------------------------------------------------------------- /tools/map/gfx_bmp/pause_gfx_6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/gfx_bmp/pause_gfx_6.bmp -------------------------------------------------------------------------------- /tools/map/gfx_bmp/pause_gfx_7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/gfx_bmp/pause_gfx_7.bmp -------------------------------------------------------------------------------- /tools/map/graph_area/alt_brinstar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/graph_area/alt_brinstar.json -------------------------------------------------------------------------------- /tools/map/graph_area/alt_crateria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/graph_area/alt_crateria.json -------------------------------------------------------------------------------- /tools/map/graph_area/alt_norfair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/graph_area/alt_norfair.json -------------------------------------------------------------------------------- /tools/map/graph_area/normal_ceres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/graph_area/normal_ceres.json -------------------------------------------------------------------------------- /tools/map/minimap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/minimap.py -------------------------------------------------------------------------------- /tools/map/mirror_offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map/mirror_offsets.py -------------------------------------------------------------------------------- /tools/map_area_palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_area_palettes.py -------------------------------------------------------------------------------- /tools/map_area_palettes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_area_palettes.sh -------------------------------------------------------------------------------- /tools/map_escape_rando.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_escape_rando.py -------------------------------------------------------------------------------- /tools/map_explored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_explored.py -------------------------------------------------------------------------------- /tools/map_glow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_glow.py -------------------------------------------------------------------------------- /tools/map_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_helper.py -------------------------------------------------------------------------------- /tools/map_icon_sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_icon_sprites.py -------------------------------------------------------------------------------- /tools/map_minimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_minimizer.py -------------------------------------------------------------------------------- /tools/map_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_mirror.py -------------------------------------------------------------------------------- /tools/map_mirror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_mirror.sh -------------------------------------------------------------------------------- /tools/map_mirror_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_mirror_area.py -------------------------------------------------------------------------------- /tools/map_mirror_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_mirror_icons.py -------------------------------------------------------------------------------- /tools/map_mirror_locs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_mirror_locs.py -------------------------------------------------------------------------------- /tools/map_read_area_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_read_area_icons.py -------------------------------------------------------------------------------- /tools/map_rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_rebuild.sh -------------------------------------------------------------------------------- /tools/map_replace_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_replace_tiles.py -------------------------------------------------------------------------------- /tools/map_replace_tiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_replace_tiles.sh -------------------------------------------------------------------------------- /tools/map_tilecount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/map_tilecount.py -------------------------------------------------------------------------------- /tools/merge_custom_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/merge_custom_music.py -------------------------------------------------------------------------------- /tools/merge_fast_doors_elevators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/merge_fast_doors_elevators.py -------------------------------------------------------------------------------- /tools/merge_stats.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/merge_stats.bash -------------------------------------------------------------------------------- /tools/minimizer_stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/minimizer_stats.sh -------------------------------------------------------------------------------- /tools/mirror_botwoon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/mirror_botwoon.py -------------------------------------------------------------------------------- /tools/mirror_bt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/mirror_bt.py -------------------------------------------------------------------------------- /tools/mirror_croc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/mirror_croc.py -------------------------------------------------------------------------------- /tools/mirror_mb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/mirror_mb.py -------------------------------------------------------------------------------- /tools/mirror_room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/mirror_room.py -------------------------------------------------------------------------------- /tools/pc_to_snes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/pc_to_snes.py -------------------------------------------------------------------------------- /tools/profiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/profiler.sh -------------------------------------------------------------------------------- /tools/resizeThumbnails.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/resizeThumbnails.sh -------------------------------------------------------------------------------- /tools/reverse_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/reverse_ips.py -------------------------------------------------------------------------------- /tools/rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/rooms.py -------------------------------------------------------------------------------- /tools/rooms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/rooms.txt -------------------------------------------------------------------------------- /tools/ship/example_ship.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/ship/example_ship.xcf -------------------------------------------------------------------------------- /tools/ship/slopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/ship/slopes.png -------------------------------------------------------------------------------- /tools/shrink_palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/shrink_palettes.py -------------------------------------------------------------------------------- /tools/snes_to_pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/snes_to_pc.py -------------------------------------------------------------------------------- /tools/strip_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/strip_ips.py -------------------------------------------------------------------------------- /tools/strip_mirrortroid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/strip_mirrortroid.sh -------------------------------------------------------------------------------- /tools/test_compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/test_compress.py -------------------------------------------------------------------------------- /tools/test_jm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/test_jm.sh -------------------------------------------------------------------------------- /tools/test_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/test_patch.py -------------------------------------------------------------------------------- /tools/update_nspc_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/update_nspc_metadata.py -------------------------------------------------------------------------------- /tools/update_save_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/update_save_name.py -------------------------------------------------------------------------------- /tools/write_obj_bg1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/write_obj_bg1.py -------------------------------------------------------------------------------- /tools/wtf_pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/tools/wtf_pal.py -------------------------------------------------------------------------------- /utils/.gitignore: -------------------------------------------------------------------------------- 1 | python_exec.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/utils/colors.py -------------------------------------------------------------------------------- /utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/utils/db.py -------------------------------------------------------------------------------- /utils/doorsmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/utils/doorsmanager.py -------------------------------------------------------------------------------- /utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/utils/log.py -------------------------------------------------------------------------------- /utils/objectives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/utils/objectives.py -------------------------------------------------------------------------------- /utils/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/utils/parameters.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/utils/vcr.py -------------------------------------------------------------------------------- /utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/utils/version.py -------------------------------------------------------------------------------- /web/SerpentineDBol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/SerpentineDBol.ttf -------------------------------------------------------------------------------- /web/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/backend/customizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/customizer.py -------------------------------------------------------------------------------- /web/backend/extStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/extStats.py -------------------------------------------------------------------------------- /web/backend/plando.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/plando.py -------------------------------------------------------------------------------- /web/backend/plandorepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/plandorepo.py -------------------------------------------------------------------------------- /web/backend/presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/presets.py -------------------------------------------------------------------------------- /web/backend/progSpeedStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/progSpeedStats.py -------------------------------------------------------------------------------- /web/backend/randomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/randomizer.py -------------------------------------------------------------------------------- /web/backend/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/solver.py -------------------------------------------------------------------------------- /web/backend/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/stats.py -------------------------------------------------------------------------------- /web/backend/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/tracker.py -------------------------------------------------------------------------------- /web/backend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/utils.py -------------------------------------------------------------------------------- /web/backend/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/backend/ws.py -------------------------------------------------------------------------------- /web/controllers/solver_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/controllers/solver_web.py -------------------------------------------------------------------------------- /web/database/create_extended_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/database/create_extended_stats.sql -------------------------------------------------------------------------------- /web/database/create_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/database/create_schema.sql -------------------------------------------------------------------------------- /web/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/build.sh -------------------------------------------------------------------------------- /web/docker/mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/mysql/Dockerfile -------------------------------------------------------------------------------- /web/docker/rm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/rm.sh -------------------------------------------------------------------------------- /web/docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/run.sh -------------------------------------------------------------------------------- /web/docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/start.sh -------------------------------------------------------------------------------- /web/docker/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/stop.sh -------------------------------------------------------------------------------- /web/docker/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/update.sh -------------------------------------------------------------------------------- /web/docker/web2py/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/web2py/Dockerfile -------------------------------------------------------------------------------- /web/docker/web2py/Dockerfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/web2py/Dockerfile.local -------------------------------------------------------------------------------- /web/docker/web2py/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/web2py/nginx.conf -------------------------------------------------------------------------------- /web/docker/web2py/web2py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/web2py/web2py -------------------------------------------------------------------------------- /web/docker/web2py/web2py.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/docker/web2py/web2py.conf -------------------------------------------------------------------------------- /web/install-redirect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/install-redirect.sh -------------------------------------------------------------------------------- /web/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/install.sh -------------------------------------------------------------------------------- /web/pull_latest_tracker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/pull_latest_tracker.sh -------------------------------------------------------------------------------- /web/static/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/FileSaver.js -------------------------------------------------------------------------------- /web/static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/ajax-loader.gif -------------------------------------------------------------------------------- /web/static/area_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/area_map.png -------------------------------------------------------------------------------- /web/static/area_map_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/area_map_thumbnail.png -------------------------------------------------------------------------------- /web/static/bootstrap-tour.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/bootstrap-tour.min.css -------------------------------------------------------------------------------- /web/static/bootstrap-tour.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/bootstrap-tour.min.js -------------------------------------------------------------------------------- /web/static/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/chosen-sprite.png -------------------------------------------------------------------------------- /web/static/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/chosen-sprite@2x.png -------------------------------------------------------------------------------- /web/static/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/chosen.css -------------------------------------------------------------------------------- /web/static/chosen.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/chosen.jquery.min.js -------------------------------------------------------------------------------- /web/static/crc32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/crc32.js -------------------------------------------------------------------------------- /web/static/crystal_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/crystal_flash.png -------------------------------------------------------------------------------- /web/static/dist/switchery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/dist/switchery.css -------------------------------------------------------------------------------- /web/static/dist/switchery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/dist/switchery.js -------------------------------------------------------------------------------- /web/static/dist/switchery.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/dist/switchery.min.css -------------------------------------------------------------------------------- /web/static/dist/switchery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/dist/switchery.min.js -------------------------------------------------------------------------------- /web/static/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/donate.png -------------------------------------------------------------------------------- /web/static/donate_randomizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/donate_randomizer.png -------------------------------------------------------------------------------- /web/static/donations_home.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/donations_home.xcf -------------------------------------------------------------------------------- /web/static/donations_randomizer.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/donations_randomizer.xcf -------------------------------------------------------------------------------- /web/static/excellentexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/excellentexport.js -------------------------------------------------------------------------------- /web/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/favicon.ico -------------------------------------------------------------------------------- /web/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/favicon.png -------------------------------------------------------------------------------- /web/static/help/backup_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/backup_copy.png -------------------------------------------------------------------------------- /web/static/help/backup_locks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/backup_locks.png -------------------------------------------------------------------------------- /web/static/help/backup_no_slots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/backup_no_slots.png -------------------------------------------------------------------------------- /web/static/help/bomb_torizo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/bomb_torizo.png -------------------------------------------------------------------------------- /web/static/help/bt_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/bt_map.png -------------------------------------------------------------------------------- /web/static/help/cathedral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/cathedral.png -------------------------------------------------------------------------------- /web/static/help/chozo_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/chozo_map.png -------------------------------------------------------------------------------- /web/static/help/climb_supers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/climb_supers.png -------------------------------------------------------------------------------- /web/static/help/crab_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/crab_gate.png -------------------------------------------------------------------------------- /web/static/help/crab_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/crab_hole.png -------------------------------------------------------------------------------- /web/static/help/crab_shaft_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/crab_shaft_save.png -------------------------------------------------------------------------------- /web/static/help/dachora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/dachora.png -------------------------------------------------------------------------------- /web/static/help/early_super.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/early_super.png -------------------------------------------------------------------------------- /web/static/help/fish_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/fish_access.png -------------------------------------------------------------------------------- /web/static/help/fish_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/fish_gate.png -------------------------------------------------------------------------------- /web/static/help/flashing_doors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/flashing_doors.gif -------------------------------------------------------------------------------- /web/static/help/greenhill_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/greenhill_gate.png -------------------------------------------------------------------------------- /web/static/help/greenhill_walljump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/greenhill_walljump.png -------------------------------------------------------------------------------- /web/static/help/high_jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/high_jump.png -------------------------------------------------------------------------------- /web/static/help/hud_chozo_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/hud_chozo_start.png -------------------------------------------------------------------------------- /web/static/help/hud_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/hud_full.png -------------------------------------------------------------------------------- /web/static/help/hud_major_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/hud_major_energy.png -------------------------------------------------------------------------------- /web/static/help/hud_scav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/hud_scav.png -------------------------------------------------------------------------------- /web/static/help/hud_scav_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/hud_scav_over.png -------------------------------------------------------------------------------- /web/static/help/hud_scav_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/hud_scav_pause.png -------------------------------------------------------------------------------- /web/static/help/ice_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/ice_door.png -------------------------------------------------------------------------------- /web/static/help/inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/inventory.png -------------------------------------------------------------------------------- /web/static/help/item_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/item_popup.png -------------------------------------------------------------------------------- /web/static/help/kraid_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/kraid_save.png -------------------------------------------------------------------------------- /web/static/help/ln_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/ln_access.png -------------------------------------------------------------------------------- /web/static/help/ln_chozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/ln_chozo.png -------------------------------------------------------------------------------- /web/static/help/ln_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/ln_gate.png -------------------------------------------------------------------------------- /web/static/help/load_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/load_popup.png -------------------------------------------------------------------------------- /web/static/help/main_street_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/main_street_save.png -------------------------------------------------------------------------------- /web/static/help/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/map.png -------------------------------------------------------------------------------- /web/static/help/minimizer_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/minimizer_example.png -------------------------------------------------------------------------------- /web/static/help/missile_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/missile_door.png -------------------------------------------------------------------------------- /web/static/help/mission_impossible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/mission_impossible.png -------------------------------------------------------------------------------- /web/static/help/moat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/moat.png -------------------------------------------------------------------------------- /web/static/help/objectives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/objectives.png -------------------------------------------------------------------------------- /web/static/help/plasma_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/plasma_door.png -------------------------------------------------------------------------------- /web/static/help/powerbomb_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/powerbomb_door.png -------------------------------------------------------------------------------- /web/static/help/rando_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/rando_popup.png -------------------------------------------------------------------------------- /web/static/help/red_tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/red_tower.png -------------------------------------------------------------------------------- /web/static/help/reveal_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/reveal_map.png -------------------------------------------------------------------------------- /web/static/help/spazer_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/spazer_block.png -------------------------------------------------------------------------------- /web/static/help/spazer_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/spazer_door.png -------------------------------------------------------------------------------- /web/static/help/spore_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/spore_save.png -------------------------------------------------------------------------------- /web/static/help/super_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/super_door.png -------------------------------------------------------------------------------- /web/static/help/tube_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/tube_access.png -------------------------------------------------------------------------------- /web/static/help/tube_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/tube_gate.png -------------------------------------------------------------------------------- /web/static/help/wave_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/wave_door.png -------------------------------------------------------------------------------- /web/static/help/west_sand_hall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/west_sand_hall.png -------------------------------------------------------------------------------- /web/static/help/ws_etank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/ws_etank.png -------------------------------------------------------------------------------- /web/static/help/ws_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/help/ws_save.png -------------------------------------------------------------------------------- /web/static/highslide/graphics/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/highslide/graphics/icon.gif -------------------------------------------------------------------------------- /web/static/highslide/highslide-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/highslide/highslide-full.js -------------------------------------------------------------------------------- /web/static/highslide/highslide-ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/highslide/highslide-ie6.css -------------------------------------------------------------------------------- /web/static/highslide/highslide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/highslide/highslide.css -------------------------------------------------------------------------------- /web/static/highslide/highslide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/highslide/highslide.js -------------------------------------------------------------------------------- /web/static/highslide/highslide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/highslide/highslide.min.js -------------------------------------------------------------------------------- /web/static/jquery.redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/jquery.redirect.js -------------------------------------------------------------------------------- /web/static/leader-line.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/leader-line.min.js -------------------------------------------------------------------------------- /web/static/logo_varia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/logo_varia.png -------------------------------------------------------------------------------- /web/static/mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/mirror.png -------------------------------------------------------------------------------- /web/static/palettesRando.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/palettesRando.png -------------------------------------------------------------------------------- /web/static/preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/preset.js -------------------------------------------------------------------------------- /web/static/rooms/Aqueduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/Aqueduct.png -------------------------------------------------------------------------------- /web/static/rooms/BetaPowerBombRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/BetaPowerBombRoom.png -------------------------------------------------------------------------------- /web/static/rooms/BigPink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/BigPink.png -------------------------------------------------------------------------------- /web/static/rooms/BillyMaysRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/BillyMaysRoom.png -------------------------------------------------------------------------------- /web/static/rooms/BlueBrinstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/BlueBrinstar.png -------------------------------------------------------------------------------- /web/static/rooms/BombTorizoRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/BombTorizoRoom.png -------------------------------------------------------------------------------- /web/static/rooms/BowlingAlley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/BowlingAlley.png -------------------------------------------------------------------------------- /web/static/rooms/Brinstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/Brinstar.png -------------------------------------------------------------------------------- /web/static/rooms/BrinstarHills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/BrinstarHills.png -------------------------------------------------------------------------------- /web/static/rooms/BubbleMountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/BubbleMountain.png -------------------------------------------------------------------------------- /web/static/rooms/BubbleNorfairWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/BubbleNorfairWave.png -------------------------------------------------------------------------------- /web/static/rooms/Cathedral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/Cathedral.png -------------------------------------------------------------------------------- /web/static/rooms/Crateria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/Crateria.png -------------------------------------------------------------------------------- /web/static/rooms/CrateriaBombs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/CrateriaBombs.png -------------------------------------------------------------------------------- /web/static/rooms/CrateriaGauntlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/CrateriaGauntlet.png -------------------------------------------------------------------------------- /web/static/rooms/CrateriaMoat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/CrateriaMoat.png -------------------------------------------------------------------------------- /web/static/rooms/CrateriaSuperRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/CrateriaSuperRoom.png -------------------------------------------------------------------------------- /web/static/rooms/Crocomire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/Crocomire.png -------------------------------------------------------------------------------- /web/static/rooms/CrocomireEscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/CrocomireEscape.png -------------------------------------------------------------------------------- /web/static/rooms/CrocomiresRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/CrocomiresRoom.png -------------------------------------------------------------------------------- /web/static/rooms/CrumbleShaft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/CrumbleShaft.png -------------------------------------------------------------------------------- /web/static/rooms/DoubleChamber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/DoubleChamber.png -------------------------------------------------------------------------------- /web/static/rooms/DraygonsRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/DraygonsRoom.png -------------------------------------------------------------------------------- /web/static/rooms/EarlySupersRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/EarlySupersRoom.png -------------------------------------------------------------------------------- /web/static/rooms/EastSandHole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/EastSandHole.png -------------------------------------------------------------------------------- /web/static/rooms/EtecoonSuperRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/EtecoonSuperRoom.png -------------------------------------------------------------------------------- /web/static/rooms/FirstMissileRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/FirstMissileRoom.png -------------------------------------------------------------------------------- /web/static/rooms/GoldenTorizosRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/GoldenTorizosRoom.png -------------------------------------------------------------------------------- /web/static/rooms/GrappleBeamRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/GrappleBeamRoom.png -------------------------------------------------------------------------------- /web/static/rooms/GravitySuitRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/GravitySuitRoom.png -------------------------------------------------------------------------------- /web/static/rooms/GreenBrinstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/GreenBrinstar.png -------------------------------------------------------------------------------- /web/static/rooms/GreenHillZone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/GreenHillZone.png -------------------------------------------------------------------------------- /web/static/rooms/GreenPiratesShaft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/GreenPiratesShaft.png -------------------------------------------------------------------------------- /web/static/rooms/HiJumpBootsRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/HiJumpBootsRoom.png -------------------------------------------------------------------------------- /web/static/rooms/IceBeamRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/IceBeamRoom.png -------------------------------------------------------------------------------- /web/static/rooms/KraidRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/KraidRoom.png -------------------------------------------------------------------------------- /web/static/rooms/KraidSubArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/KraidSubArea.png -------------------------------------------------------------------------------- /web/static/rooms/LeftSandpit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/LeftSandpit.png -------------------------------------------------------------------------------- /web/static/rooms/MainStreet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/MainStreet.png -------------------------------------------------------------------------------- /web/static/rooms/MamaTurtleRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/MamaTurtleRoom.png -------------------------------------------------------------------------------- /web/static/rooms/Maridia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/Maridia.png -------------------------------------------------------------------------------- /web/static/rooms/MaridiaGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/MaridiaGreen.png -------------------------------------------------------------------------------- /web/static/rooms/MaridiaPinkBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/MaridiaPinkBottom.png -------------------------------------------------------------------------------- /web/static/rooms/MaridiaPinkTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/MaridiaPinkTop.png -------------------------------------------------------------------------------- /web/static/rooms/MaridiaSandpits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/MaridiaSandpits.png -------------------------------------------------------------------------------- /web/static/rooms/MickeyMouseRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/MickeyMouseRoom.png -------------------------------------------------------------------------------- /web/static/rooms/MorphBallRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/MorphBallRoom.png -------------------------------------------------------------------------------- /web/static/rooms/MotherBrainRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/MotherBrainRoom.png -------------------------------------------------------------------------------- /web/static/rooms/Norfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/Norfair.png -------------------------------------------------------------------------------- /web/static/rooms/NorfairCathedral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/NorfairCathedral.png -------------------------------------------------------------------------------- /web/static/rooms/NorfairEntrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/NorfairEntrance.png -------------------------------------------------------------------------------- /web/static/rooms/NorfairIce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/NorfairIce.png -------------------------------------------------------------------------------- /web/static/rooms/PhantoonsRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/PhantoonsRoom.png -------------------------------------------------------------------------------- /web/static/rooms/PinkBrinstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/PinkBrinstar.png -------------------------------------------------------------------------------- /web/static/rooms/PitRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/PitRoom.png -------------------------------------------------------------------------------- /web/static/rooms/PlasmaRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/PlasmaRoom.png -------------------------------------------------------------------------------- /web/static/rooms/RedBrinstarBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/RedBrinstarBottom.png -------------------------------------------------------------------------------- /web/static/rooms/RedBrinstarMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/RedBrinstarMiddle.png -------------------------------------------------------------------------------- /web/static/rooms/RedBrinstarTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/RedBrinstarTop.png -------------------------------------------------------------------------------- /web/static/rooms/RidleyTankRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/RidleyTankRoom.png -------------------------------------------------------------------------------- /web/static/rooms/RidleysRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/RidleysRoom.png -------------------------------------------------------------------------------- /web/static/rooms/RightSandpit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/RightSandpit.png -------------------------------------------------------------------------------- /web/static/rooms/ScrewAttackRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/ScrewAttackRoom.png -------------------------------------------------------------------------------- /web/static/rooms/SpaceJumpRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/SpaceJumpRoom.png -------------------------------------------------------------------------------- /web/static/rooms/SpazerRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/SpazerRoom.png -------------------------------------------------------------------------------- /web/static/rooms/SpeedBoosterHall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/SpeedBoosterHall.png -------------------------------------------------------------------------------- /web/static/rooms/SpeedBoosterRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/SpeedBoosterRoom.png -------------------------------------------------------------------------------- /web/static/rooms/SpringBallRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/SpringBallRoom.png -------------------------------------------------------------------------------- /web/static/rooms/TerminatorRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/TerminatorRoom.png -------------------------------------------------------------------------------- /web/static/rooms/TheFinalMissile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/TheFinalMissile.png -------------------------------------------------------------------------------- /web/static/rooms/TheMoat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/TheMoat.png -------------------------------------------------------------------------------- /web/static/rooms/ThePreciousRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/ThePreciousRoom.png -------------------------------------------------------------------------------- /web/static/rooms/Tourian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/Tourian.png -------------------------------------------------------------------------------- /web/static/rooms/TourianSubArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/TourianSubArea.png -------------------------------------------------------------------------------- /web/static/rooms/VariaSuitRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/VariaSuitRoom.png -------------------------------------------------------------------------------- /web/static/rooms/Wasteland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/Wasteland.png -------------------------------------------------------------------------------- /web/static/rooms/WateringHole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/WateringHole.png -------------------------------------------------------------------------------- /web/static/rooms/WaveBeamRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/WaveBeamRoom.png -------------------------------------------------------------------------------- /web/static/rooms/WestOcean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/WestOcean.png -------------------------------------------------------------------------------- /web/static/rooms/WestSandHole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/WestSandHole.png -------------------------------------------------------------------------------- /web/static/rooms/WreckedShip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/WreckedShip.png -------------------------------------------------------------------------------- /web/static/rooms/WreckedShipBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/WreckedShipBack.png -------------------------------------------------------------------------------- /web/static/rooms/WreckedShipBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/WreckedShipBottom.png -------------------------------------------------------------------------------- /web/static/rooms/WreckedShipMain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/WreckedShipMain.png -------------------------------------------------------------------------------- /web/static/rooms/WreckedShipTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/WreckedShipTop.png -------------------------------------------------------------------------------- /web/static/rooms/XRayScopeRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/rooms/XRayScopeRoom.png -------------------------------------------------------------------------------- /web/static/routes-redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/routes-redirect.py -------------------------------------------------------------------------------- /web/static/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/routes.py -------------------------------------------------------------------------------- /web/static/samus_degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/samus_degrees.png -------------------------------------------------------------------------------- /web/static/snes-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/snes-controller.png -------------------------------------------------------------------------------- /web/static/solver/samus_run_Power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/solver/samus_run_Power.gif -------------------------------------------------------------------------------- /web/static/spc_js/spc_snes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/spc_js/spc_snes.js -------------------------------------------------------------------------------- /web/static/spc_js/spc_snes.js.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/spc_js/spc_snes.js.mem -------------------------------------------------------------------------------- /web/static/tracker_sprites/bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/tracker_sprites/bin.svg -------------------------------------------------------------------------------- /web/static/tracker_sprites/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/tracker_sprites/help.svg -------------------------------------------------------------------------------- /web/static/tracker_sprites/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/tracker_sprites/link.svg -------------------------------------------------------------------------------- /web/static/tracker_sprites/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/tracker_sprites/play.svg -------------------------------------------------------------------------------- /web/static/tracker_sprites/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/tracker_sprites/save.svg -------------------------------------------------------------------------------- /web/static/vanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/static/vanilla.png -------------------------------------------------------------------------------- /web/views/_autotracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/_autotracker.js -------------------------------------------------------------------------------- /web/views/_randomizer_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/_randomizer_data.js -------------------------------------------------------------------------------- /web/views/customizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/customizer.html -------------------------------------------------------------------------------- /web/views/extStats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/extStats.html -------------------------------------------------------------------------------- /web/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/home.html -------------------------------------------------------------------------------- /web/views/inc_area_map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/inc_area_map.svg -------------------------------------------------------------------------------- /web/views/infos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/infos.html -------------------------------------------------------------------------------- /web/views/plando.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/plando.html -------------------------------------------------------------------------------- /web/views/plandorepo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/plandorepo.html -------------------------------------------------------------------------------- /web/views/presets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/presets.html -------------------------------------------------------------------------------- /web/views/progSpeedStats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/progSpeedStats.html -------------------------------------------------------------------------------- /web/views/randomizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/randomizer.html -------------------------------------------------------------------------------- /web/views/solver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/solver.html -------------------------------------------------------------------------------- /web/views/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/stats.html -------------------------------------------------------------------------------- /web/views/t_includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/t_includes.html -------------------------------------------------------------------------------- /web/views/t_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/t_js.html -------------------------------------------------------------------------------- /web/views/t_main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/t_main.html -------------------------------------------------------------------------------- /web/views/t_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/t_style.html -------------------------------------------------------------------------------- /web/views/tracker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/tracker.html -------------------------------------------------------------------------------- /web/views/varia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/views/varia.css -------------------------------------------------------------------------------- /web/web2py/static/css/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/web2py/static/css/calendar.css -------------------------------------------------------------------------------- /web/web2py/static/css/web2py.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/web2py/static/css/web2py.css -------------------------------------------------------------------------------- /web/web2py/static/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/web2py/static/js/calendar.js -------------------------------------------------------------------------------- /web/web2py/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/web2py/static/js/jquery.js -------------------------------------------------------------------------------- /web/web2py/static/js/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/web2py/static/js/share.js -------------------------------------------------------------------------------- /web/web2py/static/js/web2py.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/web2py/static/js/web2py.js -------------------------------------------------------------------------------- /web/web2py/views/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/web2py/views/layout.html -------------------------------------------------------------------------------- /web/web2py/views/web2py_ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonlydude/RandomMetroidSolver/HEAD/web/web2py/views/web2py_ajax.html --------------------------------------------------------------------------------