From f4c68d6658f02bf4b7d69d2a89b17993bb8405f5 Mon Sep 17 00:00:00 2001 From: Carter Hesterman Date: Tue, 26 Nov 2024 13:45:04 -0700 Subject: [PATCH] Minor updates and optimizations --- worlds/metroidprime/.gitignore | 1 + worlds/metroidprime/Config.py | 2 +- worlds/metroidprime/ItemPool.py | 42 +- worlds/metroidprime/Items.py | 6 +- worlds/metroidprime/Logic.py | 9 +- worlds/metroidprime/LogicCombat.py | 8 +- worlds/metroidprime/PrimeOptions.py | 9 +- worlds/metroidprime/Regions.py | 2 +- worlds/metroidprime/__init__.py | 4 +- .../metroidprime/data/BlastShieldRegions.py | 28 +- worlds/metroidprime/data/Tricks.py | 5 +- worlds/metroidprime/docs/en_Metroid Prime.md | 11 +- .../metroidprime/test/TestOutputGeneration.py | 2 +- .../test/data/all_randomized.json | 1167 ++++++-- .../test_output_generates_correctly.json | 2255 --------------- ...nerates_correctly_with_all_randomized.json | 2449 ----------------- ...tly_with_main_pb_and_missile_launcher.json | 2255 --------------- 17 files changed, 967 insertions(+), 7288 deletions(-) create mode 100644 worlds/metroidprime/.gitignore delete mode 100644 worlds/metroidprime/test/test_output/test_output_generates_correctly.json delete mode 100644 worlds/metroidprime/test/test_output/test_output_generates_correctly_with_all_randomized.json delete mode 100644 worlds/metroidprime/test/test_output/test_output_generates_correctly_with_main_pb_and_missile_launcher.json diff --git a/worlds/metroidprime/.gitignore b/worlds/metroidprime/.gitignore new file mode 100644 index 000000000000..6466672cd047 --- /dev/null +++ b/worlds/metroidprime/.gitignore @@ -0,0 +1 @@ +test/test_output \ No newline at end of file diff --git a/worlds/metroidprime/Config.py b/worlds/metroidprime/Config.py index 4da0d56e6177..82c5f96af7c9 100644 --- a/worlds/metroidprime/Config.py +++ b/worlds/metroidprime/Config.py @@ -73,7 +73,7 @@ def color_options_to_value(world: "MetroidPrimeWorld") -> List[float]: def make_artifact_hints(world: "MetroidPrimeWorld") -> Dict[str, str]: def make_artifact_hint(item: str) -> str: try: - if world.options.artifact_hints.value: + if world.options.artifact_hints: location = world.multiworld.find_item(item, world.player) player_string = ( f"{world.multiworld.player_name[location.player]}'s" diff --git a/worlds/metroidprime/ItemPool.py b/worlds/metroidprime/ItemPool.py index b76ff23ee3d3..404af7a2c724 100644 --- a/worlds/metroidprime/ItemPool.py +++ b/worlds/metroidprime/ItemPool.py @@ -1,5 +1,6 @@ from typing import TYPE_CHECKING, List from BaseClasses import ItemClassification +from .PrimeOptions import BlastShieldAvailableTypes, BlastShieldRandomization from .Items import ( PROGRESSIVE_ITEM_MAPPING, MetroidPrimeItem, @@ -26,7 +27,7 @@ def generate_start_inventory(world: "MetroidPrimeWorld") -> List[str]: for item in world.starting_room_data.selected_loadout.loadout ) - if not world.options.shuffle_scan_visor.value: + if not world.options.shuffle_scan_visor: starting_items.append(SuitUpgrade.Scan_Visor.value) return starting_items @@ -54,7 +55,9 @@ def generate_item_pool(world: "MetroidPrimeWorld") -> List[MetroidPrimeItem]: progressive_missiles = 8 for _ in range(progressive_missiles): items.append( - world.create_item(SuitUpgrade.Missile_Expansion.value, ItemClassification.progression) + world.create_item( + SuitUpgrade.Missile_Expansion.value, ItemClassification.progression + ) ) items.append( world.create_item( @@ -94,7 +97,7 @@ def generate_item_pool(world: "MetroidPrimeWorld") -> List[MetroidPrimeItem]: ) # Add beams and combos - if world.options.progressive_beam_upgrades.value: + if world.options.progressive_beam_upgrades: for progressive_item in PROGRESSIVE_ITEM_MAPPING: for index in range(3): items.append( @@ -106,28 +109,23 @@ def generate_item_pool(world: "MetroidPrimeWorld") -> List[MetroidPrimeItem]: ) ) else: - items.append(world.create_item(SuitUpgrade.Power_Beam.value)) - items.append(world.create_item(SuitUpgrade.Wave_Beam.value)) - items.append(world.create_item(SuitUpgrade.Ice_Beam.value)) - items.append(world.create_item(SuitUpgrade.Plasma_Beam.value)) - - items.append(world.create_item(SuitUpgrade.Charge_Beam.value)) - - items.append(world.create_item(SuitUpgrade.Super_Missile.value)) - combo_classification = ( ItemClassification.progression if requires_beam_combos_for_progression(world) else ItemClassification.useful ) - items.append( - world.create_item(SuitUpgrade.Wavebuster.value, combo_classification) - ) - items.append( - world.create_item(SuitUpgrade.Ice_Spreader.value, combo_classification) - ) - items.append( - world.create_item(SuitUpgrade.Flamethrower.value, combo_classification) + items.extend( + ( + world.create_item(SuitUpgrade.Power_Beam.value), + world.create_item(SuitUpgrade.Wave_Beam.value), + world.create_item(SuitUpgrade.Ice_Beam.value), + world.create_item(SuitUpgrade.Plasma_Beam.value), + world.create_item(SuitUpgrade.Charge_Beam.value), + world.create_item(SuitUpgrade.Super_Missile.value), + world.create_item(SuitUpgrade.Wavebuster.value, combo_classification), + world.create_item(SuitUpgrade.Ice_Spreader.value, combo_classification), + world.create_item(SuitUpgrade.Flamethrower.value, combo_classification), + ) ) assert world.starting_room_data.selected_loadout @@ -158,9 +156,9 @@ def generate_item_pool(world: "MetroidPrimeWorld") -> List[MetroidPrimeItem]: def requires_beam_combos_for_progression(world: "MetroidPrimeWorld") -> bool: return ( world.options.blast_shield_available_types.value - == world.options.blast_shield_available_types.option_all + == BlastShieldAvailableTypes.option_all and world.options.blast_shield_randomization.value - != world.options.blast_shield_randomization.option_none # type: ignore + != BlastShieldRandomization.option_none # type: ignore ) diff --git a/worlds/metroidprime/Items.py b/worlds/metroidprime/Items.py index fc2049323abc..13ec0b4a6cea 100644 --- a/worlds/metroidprime/Items.py +++ b/worlds/metroidprime/Items.py @@ -138,13 +138,13 @@ def get_progressive_upgrade_for_item(item: SuitUpgrade) -> Optional[ProgressiveU def __get_missile_item(world: "MetroidPrimeWorld") -> SuitUpgrade: - if world.options.missile_launcher.value: + if world.options.missile_launcher: return SuitUpgrade.Missile_Launcher return SuitUpgrade.Missile_Expansion def __get_power_bomb_item(world: "MetroidPrimeWorld") -> SuitUpgrade: - if world.options.main_power_bomb.value: + if world.options.main_power_bomb: return SuitUpgrade.Main_Power_Bomb return SuitUpgrade.Power_Bomb_Expansion @@ -156,7 +156,7 @@ def get_item_for_options( return __get_missile_item(world) if item == SuitUpgrade.Main_Power_Bomb: return __get_power_bomb_item(world) - if world.options.progressive_beam_upgrades.value: + if world.options.progressive_beam_upgrades: progressive_upgrade = get_progressive_upgrade_for_item(item) if progressive_upgrade is not None: return progressive_upgrade diff --git a/worlds/metroidprime/Logic.py b/worlds/metroidprime/Logic.py index 277a2cc77c00..ab8a4a1598af 100644 --- a/worlds/metroidprime/Logic.py +++ b/worlds/metroidprime/Logic.py @@ -34,7 +34,7 @@ def can_power_beam(world: "MetroidPrimeWorld", state: CollectionState) -> bool: def can_power_bomb(world: "MetroidPrimeWorld", state: CollectionState) -> bool: - if world.options.main_power_bomb.value: + if world.options.main_power_bomb: return state.has_all( [SuitUpgrade.Morph_Ball.value, SuitUpgrade.Main_Power_Bomb.value], world.player, @@ -55,7 +55,7 @@ def can_spider(world: "MetroidPrimeWorld", state: CollectionState) -> bool: def can_missile( world: "MetroidPrimeWorld", state: CollectionState, num_expansions: int = 1 ) -> bool: - if world.options.missile_launcher.value: + if world.options.missile_launcher: can_shoot = state.has(SuitUpgrade.Missile_Launcher.value, world.player) return can_shoot and ( num_expansions <= 1 @@ -106,8 +106,7 @@ def can_plasma_beam(world: "MetroidPrimeWorld", state: CollectionState) -> bool: ) -def can_melt_ice(world: "MetroidPrimeWorld", state: CollectionState) -> bool: - return can_plasma_beam(world, state) +can_melt_ice = can_plasma_beam def can_grapple(world: "MetroidPrimeWorld", state: CollectionState) -> bool: @@ -218,7 +217,7 @@ def can_scan(world: "MetroidPrimeWorld", state: CollectionState) -> bool: def can_heat(world: "MetroidPrimeWorld", state: CollectionState) -> bool: - if world.options.non_varia_heat_damage.value: + if world.options.non_varia_heat_damage: return state.has(SuitUpgrade.Varia_Suit.value, world.player) else: return state.has_any( diff --git a/worlds/metroidprime/LogicCombat.py b/worlds/metroidprime/LogicCombat.py index ed7369f3e09e..f001f729f565 100644 --- a/worlds/metroidprime/LogicCombat.py +++ b/worlds/metroidprime/LogicCombat.py @@ -30,14 +30,14 @@ def _can_combat_generic( minimal_tanks: int, requires_charge_beam: bool = True, ) -> bool: - difficulty = world.options.combat_logic_difficulty.value - if difficulty == CombatLogicDifficulty.NO_LOGIC.value: + difficulty = CombatLogicDifficulty(world.options.combat_logic_difficulty) + if difficulty == CombatLogicDifficulty.NO_LOGIC: return True - elif difficulty == CombatLogicDifficulty.NORMAL.value: + elif difficulty == CombatLogicDifficulty.NORMAL: return has_energy_tanks(world, state, normal_tanks) and ( can_charge_beam(world, state) or not requires_charge_beam ) - elif difficulty == CombatLogicDifficulty.MINIMAL.value: + elif difficulty == CombatLogicDifficulty.MINIMAL: return has_energy_tanks(world, state, minimal_tanks) and ( can_charge_beam(world, state) or not requires_charge_beam ) diff --git a/worlds/metroidprime/PrimeOptions.py b/worlds/metroidprime/PrimeOptions.py index 80a7f602d1e6..59e09af41f4e 100644 --- a/worlds/metroidprime/PrimeOptions.py +++ b/worlds/metroidprime/PrimeOptions.py @@ -119,14 +119,14 @@ class RemoveHiveMecha(Toggle): class FusionSuit(Toggle): - """Whether to use the fusion suit or not""" + """If enabled, will replace all the suits in game with the Fusion Suit variants (cosmetic only). Suit color randomization will have no effect if this is enabled""" display_name = "Fusion Suit" default = False class TrickDifficulty(Choice): - """Determines which tricks, if any, are required to complete the seed. This will affect the logic of the game.""" + """Determines which tricks, if any, are required to complete the seed. This will affect the logic of the game""" display_name = "Trick Difficulty" option_no_tricks = -1 @@ -137,15 +137,14 @@ class TrickDifficulty(Choice): class TrickAllowList(OptionList): - """A list of tricks to explicitly allow in logic, regardless of selected difficulty. Values should match the trick name found here: https://github.com/Electro1512/MetroidAPrime/blob/main/data/Tricks.py#L55 - For example, "Crashed Frigate Scan Dash" or "Alcove Escape" """ + """A list of trick names to explicitly allow in logic, regardless of selected difficulty. For example, "Crashed Frigate Scan Dash" or "Alcove Escape" """ display_name = "Trick Allow List" default = [] class TrickDenyList(OptionList): - """A list of tricks to explicitly deny in logic, regardless of selected difficulty. Values should match the trick name found here: https://github.com/Electro1512/MetroidAPrime/blob/main/data/Tricks.py#L55. For example, "Crashed Frigate Scan Dash" or "Alcove Escape" """ + """A list of trick names to explicitly deny in logic, regardless of selected difficulty. For example, "Crashed Frigate Scan Dash" or "Alcove Escape" """ display_name = "Trick Deny List" default = [] diff --git a/worlds/metroidprime/Regions.py b/worlds/metroidprime/Regions.py index 754b2a4838f7..efab876a0e43 100644 --- a/worlds/metroidprime/Regions.py +++ b/worlds/metroidprime/Regions.py @@ -40,7 +40,7 @@ def create_regions(world: "MetroidPrimeWorld", final_boss_selection: int): menu.connect(starting_room, "Starting Room") def can_access_elevator(world: "MetroidPrimeWorld", state: CollectionState) -> bool: - if world.options.pre_scan_elevators.value: + if world.options.pre_scan_elevators: return True return can_scan(world, state) diff --git a/worlds/metroidprime/__init__.py b/worlds/metroidprime/__init__.py index eff058f6a08b..150a25e90959 100644 --- a/worlds/metroidprime/__init__.py +++ b/worlds/metroidprime/__init__.py @@ -222,7 +222,7 @@ def generate_early(self) -> None: # Randomize Elevators if self.options.elevator_mapping: self.elevator_mapping = self.options.elevator_mapping.value - elif self.options.elevator_randomization.value: + elif self.options.elevator_randomization: self.elevator_mapping = get_random_elevator_mapping(self) self.options.elevator_mapping.value = self.elevator_mapping @@ -263,7 +263,7 @@ def set_rules(self) -> None: ) def post_fill(self) -> None: - if self.options.artifact_hints.value: + if self.options.artifact_hints: start_hints: typing.Set[str] = self.options.start_hints.value for i in artifact_table: start_hints.add(i) diff --git a/worlds/metroidprime/data/BlastShieldRegions.py b/worlds/metroidprime/data/BlastShieldRegions.py index 252d346995c4..21ff29967250 100644 --- a/worlds/metroidprime/data/BlastShieldRegions.py +++ b/worlds/metroidprime/data/BlastShieldRegions.py @@ -126,8 +126,8 @@ def __get_chozo_region(): BlastShieldRegion( name=RoomName.Arboretum, doors={ - RoomName.Arboretum: RoomName.Sunchamber_Lobby, - RoomName.Arboretum: RoomName.Gathering_Hall_Access, + RoomName.Sunchamber_Lobby: RoomName.Arboretum, + RoomName.Gathering_Hall_Access: RoomName.Arboretum, }, invalid_start_rooms=[ RoomName.Arboretum, @@ -200,9 +200,9 @@ def __get_chozo_region(): BlastShieldRegion( name=RoomName.Reflecting_Pool, doors={ - RoomName.Reflecting_Pool: RoomName.Antechamber, - RoomName.Reflecting_Pool: RoomName.Save_Station_3, - RoomName.Reflecting_Pool: RoomName.Transport_Access_South, + RoomName.Antechamber: RoomName.Reflecting_Pool, + RoomName.Save_Station_3: RoomName.Reflecting_Pool, + RoomName.Transport_Access_South: RoomName.Reflecting_Pool, }, ), ], @@ -307,8 +307,8 @@ def __get_phendrana_region(): name=RoomName.Ice_Ruins_East, can_be_locked=True, doors={ - RoomName.Phendrana_Shorelines: RoomName.Ice_Ruins_Access, - RoomName.Phendrana_Shorelines: RoomName.Plaza_Walkway, + RoomName.Ice_Ruins_Access: RoomName.Phendrana_Shorelines, + RoomName.Plaza_Walkway: RoomName.Phendrana_Shorelines, }, invalid_start_rooms=[ RoomName.Save_Station_B, @@ -536,8 +536,8 @@ def __get_phazon_region(): can_be_locked=True, doors={ RoomName.Central_Dynamo: RoomName.Quarantine_Access_A, - RoomName.Metroid_Quarantine_A: RoomName.Quarantine_Access_A, - RoomName.Metroid_Quarantine_A: RoomName.Elevator_Access_B, + RoomName.Quarantine_Access_A: RoomName.Metroid_Quarantine_A, + RoomName.Elevator_Access_B: RoomName.Metroid_Quarantine_A, }, ), BlastShieldRegion( @@ -578,6 +578,7 @@ def get_valid_blast_shield_regions_by_area( region = __get_magmoor_region() elif area == MetroidPrimeArea.Phazon_Mines: region = __get_phazon_region() + if not world.starting_room_data: return region.regions elif world.starting_room_data.area != area or ( @@ -587,8 +588,9 @@ def get_valid_blast_shield_regions_by_area( return region.regions return [ - region - for region in region.regions - if region.invalid_start_rooms is None - or RoomName(world.starting_room_data.name) not in region.invalid_start_rooms + blast_shield_region + for blast_shield_region in region.regions + if blast_shield_region.invalid_start_rooms is None + or RoomName(world.starting_room_data.name) + not in blast_shield_region.invalid_start_rooms ] diff --git a/worlds/metroidprime/data/Tricks.py b/worlds/metroidprime/data/Tricks.py index 9929fd8ef7b4..4891d2f2f58a 100644 --- a/worlds/metroidprime/data/Tricks.py +++ b/worlds/metroidprime/data/Tricks.py @@ -318,10 +318,9 @@ class Tricks: ) watery_hall_no_gravity_no_space_jump: TrickInfo = TrickInfo( "Watery Hall No Gravity No Space Jump", - "Reach the Watery Hall Underwater Item without Gravity Suit or Space Jump by using a slope jump", + "Reach the Watery Hall Underwater Item without Gravity Suit or Space Jump by using a slope jump or bomb jump", TrickDifficulty.Medium, - lambda world, state: can_move_underwater(world, state) == False - or can_bomb(world, state), + lambda world, state: True, ) furnace_no_spider_ball = TrickInfo( diff --git a/worlds/metroidprime/docs/en_Metroid Prime.md b/worlds/metroidprime/docs/en_Metroid Prime.md index a264f4f93ff7..5ab34210f456 100644 --- a/worlds/metroidprime/docs/en_Metroid Prime.md +++ b/worlds/metroidprime/docs/en_Metroid Prime.md @@ -2,10 +2,6 @@ An Archipelago implementation of Metroid Prime multiworld randomizer using [randomprime](https://github.com/randovania/randomprime/) -## Setup Guide - -To get started or for troubleshooting, see [the Setup Guide](./docs/setup_en.md). - ## What does randomization do to this game? In Metroid Prime, all suit upgrades and expansion items are shuffled into the multiworld, adding variety to the routes available for completing the game's objectives. @@ -18,7 +14,7 @@ The end goal of the randomizer game can consist of: - Defeating Ridley (configurable) - Defeating Metroid Prime (configurable) -If randomized, the end goal can be scanned in the Temple Security station. +The end goal can be scanned in the Temple Security station. ## Which items can be in another player's world? @@ -31,6 +27,7 @@ Multiworld items appear as one of the following: - Progression Item: Cog - Useful Item: Metroid Model with a random texture - Filler Item: Zoomer Model with a random texture +- Trap Item: Cog ## What versions of the Metroid Prime are supported? @@ -66,6 +63,10 @@ It is recommended to use a vanilla ISO with the latest release of [Dolphin](http - Not compatible - Practice Mod (The AP client is unable to connect to the game with this mod present.) +### Can tricks be included in logic? + +You can select a general difficulty of tricks you want to be allowed as well as explicitly include or exclude certain tricks via the options as well. For a comprehensive list of tricks and their associated difficulties, take a look at [this document](https://github.com/ArchipelagoMW/Archipelago/blob/main/worlds/metroidprime/data/Tricks.py) + ### Aside from item locations being shuffled, how does this differ from the vanilla game? Some of the changes include: diff --git a/worlds/metroidprime/test/TestOutputGeneration.py b/worlds/metroidprime/test/TestOutputGeneration.py index 90a007fde6b7..448ab585ae0d 100644 --- a/worlds/metroidprime/test/TestOutputGeneration.py +++ b/worlds/metroidprime/test/TestOutputGeneration.py @@ -63,7 +63,7 @@ class TestAllRandomizedOutput(MetroidPrimeTestBase): auto_construct = False options = { "elevator_randomization": True, - "door_randomization": "regional", + "door_color_randomization": "regional", "blast_shield_randomization": "mix_it_up", } diff --git a/worlds/metroidprime/test/data/all_randomized.json b/worlds/metroidprime/test/data/all_randomized.json index ee324beaf8fd..24e8171052fe 100644 --- a/worlds/metroidprime/test/data/all_randomized.json +++ b/worlds/metroidprime/test/data/all_randomized.json @@ -238,15 +238,15 @@ "powerBombArboretumSandstone": false, "artifactHints": { "Artifact of Chozo": "The &push;&main-color=#c300ff;Artifact of Chozo&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Shore Tunnel&pop;.", - "Artifact of Nature": "The &push;&main-color=#c300ff;Artifact of Nature&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Tower of Light&pop;.", + "Artifact of Nature": "The &push;&main-color=#c300ff;Artifact of Nature&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Quarantine Cave&pop;.", "Artifact of Sun": "The &push;&main-color=#c300ff;Artifact of Sun&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Hall of the Elders&pop;.", - "Artifact of World": "The &push;&main-color=#c300ff;Artifact of World&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Ice Ruins East - Behind Ice&pop;.", - "Artifact of Spirit": "The &push;&main-color=#c300ff;Artifact of Spirit&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phazon Mines: Metroid Quarantine B&pop;.", + "Artifact of World": "The &push;&main-color=#c300ff;Artifact of World&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Tallon Overworld: Hydro Access Tunnel&pop;.", + "Artifact of Spirit": "The &push;&main-color=#c300ff;Artifact of Spirit&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Tallon Overworld: Landing Site&pop;.", "Artifact of Newborn": "The &push;&main-color=#c300ff;Artifact of Newborn&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Gravity Chamber - Grapple Ledge&pop;.", - "Artifact of Truth": "The &push;&main-color=#c300ff;Artifact of Truth&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Sunchamber - Ghosts&pop;.", - "Artifact of Strength": "The &push;&main-color=#c300ff;Artifact of Strength&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Watery Hall - Underwater&pop;.", + "Artifact of Truth": "The &push;&main-color=#c300ff;Artifact of Truth&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Ruined Courtyard&pop;.", + "Artifact of Strength": "The &push;&main-color=#c300ff;Artifact of Strength&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Tower of Light&pop;.", "Artifact of Elder": "The &push;&main-color=#c300ff;Artifact of Elder&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Plasma Processing&pop;.", - "Artifact of Wild": "The &push;&main-color=#c300ff;Artifact of Wild&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Quarantine Cave&pop;.", + "Artifact of Wild": "The &push;&main-color=#c300ff;Artifact of Wild&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Tallon Overworld: Life Grove Tunnel&pop;.", "Artifact of Lifegiver": "The &push;&main-color=#c300ff;Artifact of Lifegiver&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Ruined Gallery - Missile Wall&pop;.", "Artifact of Warrior": "The &push;&main-color=#c300ff;Artifact of Warrior&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Storage Cavern&pop;." }, @@ -256,10 +256,10 @@ "Tallon Overworld": { "transports": { "Tallon Overworld North (Tallon Canyon)": "Chozo Ruins West (Main Plaza)", - "Tallon Overworld South (Great Tree Hall, Upper)": "Phendrana Drifts North (Phendrana Shorelines)", "Tallon Overworld East (Frigate Crash Site)": "Magmoor Caverns North (Lava Lake)", + "Tallon Overworld South (Great Tree Hall, Upper)": "Phazon Mines East (Main Quarry)", "Tallon Overworld West (Root Cave)": "Chozo Ruins East (Reflecting Pool, Save Station)", - "Tallon Overworld South (Great Tree Hall, Lower)": "Magmoor Caverns West (Monitor Station)", + "Tallon Overworld South (Great Tree Hall, Lower)": "Magmoor Caverns South (Magmoor Workstation, Debris)", "Artifact Temple": "Crater Entry Point" }, "rooms": { @@ -319,7 +319,7 @@ "pickups": [], "doors": { "1": { - "blastShieldType": "Power Bomb" + "blastShieldType": "Missile" } } }, @@ -327,10 +327,10 @@ "pickups": [ { "type": "Unknown Item 1", - "scanText": "Super Missile", - "hudmemoText": "Super Missile Acquired!", + "scanText": "Energy Tank", + "hudmemoText": "Energy Tank Acquired!", "currIncrease": 0, - "model": "Super Missile", + "model": "Energy Tank", "showIcon": true } ], @@ -338,7 +338,11 @@ }, "Frigate Access Tunnel": { "pickups": [], - "doors": {} + "doors": { + "1": { + "shieldType": "Wave Beam" + } + } }, "Frigate Crash Site": { "pickups": [ @@ -354,6 +358,12 @@ "doors": { "0": { "blastShieldType": "None" + }, + "1": { + "shieldType": "Wave Beam" + }, + "2": { + "shieldType": "Wave Beam" } } }, @@ -368,21 +378,21 @@ "showIcon": true } ], - "doors": { - "0": { - "blastShieldType": "Charge Beam" - } - } + "doors": {} }, "Great Tree Hall": { "pickups": [], "doors": { - "1": { + "2": { + "shieldType": "Blue", "blastShieldType": "Charge Beam" }, - "2": { + "3": { + "shieldType": "Wave Beam" + }, + "4": { "shieldType": "Blue", - "blastShieldType": "Power Bomb" + "blastShieldType": "Super Missile" } } }, @@ -394,10 +404,10 @@ "pickups": [ { "type": "Unknown Item 1", - "scanText": "X-Ray Visor", - "hudmemoText": "X-Ray Visor Acquired!", + "scanText": "Artifact of World", + "hudmemoText": "Artifact of World Acquired!", "currIncrease": 0, - "model": "X-Ray Visor", + "model": "Artifact of World", "showIcon": true } ], @@ -407,16 +417,16 @@ "pickups": [ { "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", + "scanText": "Artifact of Spirit", + "hudmemoText": "Artifact of Spirit Acquired!", "currIncrease": 0, - "model": "Power Bomb Expansion", + "model": "Artifact of Spirit", "showIcon": true } ], "doors": { "1": { - "blastShieldType": "Power Bomb" + "blastShieldType": "Missile" } } }, @@ -424,14 +434,18 @@ "pickups": [ { "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", + "scanText": "Artifact of Wild", + "hudmemoText": "Artifact of Wild Acquired!", "currIncrease": 0, - "model": "Energy Tank", + "model": "Artifact of Wild", "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + } + } }, "Life Grove": { "pickups": [ @@ -465,7 +479,14 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Wave Beam" + } + } }, "Root Cave": { "pickups": [ @@ -479,8 +500,14 @@ } ], "doors": { + "0": { + "blastShieldType": "Power Bomb" + }, "1": { "blastShieldType": "None" + }, + "2": { + "shieldType": "Ice Beam" } } }, @@ -489,19 +516,12 @@ "doors": { "0": { "blastShieldType": "None" - }, - "1": { - "blastShieldType": "Power Bomb" } } }, "Tallon Canyon": { "pickups": [], - "doors": { - "3": { - "blastShieldType": "Power Bomb" - } - } + "doors": {} }, "Temple Hall": { "pickups": [], @@ -525,11 +545,19 @@ }, "Transport to Chozo Ruins East": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + } + } }, "Transport to Chozo Ruins South": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + } + } }, "Transport to Chozo Ruins West": { "pickups": [], @@ -541,7 +569,11 @@ }, "Transport to Phazon Mines East": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + } + } }, "Transport Tunnel A": { "pickups": [], @@ -558,24 +590,46 @@ "showIcon": true } ], - "doors": {} + "doors": { + "1": { + "blastShieldType": "Power Bomb" + } + } }, "Transport Tunnel C": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Wave Beam" + } + } }, "Transport Tunnel D": { "pickups": [], "doors": { "0": { "shieldType": "Blue", - "blastShieldType": "Power Bomb" + "blastShieldType": "Charge Beam" + }, + "1": { + "shieldType": "Wave Beam" } } }, "Transport Tunnel E": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Blue", + "blastShieldType": "Super Missile" + } + } }, "Waterfall Cavern": { "pickups": [], @@ -590,9 +644,9 @@ "Chozo Ruins": { "transports": { "Chozo Ruins West (Main Plaza)": "Tallon Overworld North (Tallon Canyon)", - "Chozo Ruins North (Sun Tower)": "Phazon Mines West (Phazon Processing Center)", "Chozo Ruins East (Reflecting Pool, Save Station)": "Tallon Overworld West (Root Cave)", - "Chozo Ruins South (Reflecting Pool, Far End)": "Magmoor Caverns South (Magmoor Workstation, Debris)" + "Chozo Ruins South (Reflecting Pool, Far End)": "Phazon Mines West (Phazon Processing Center)", + "Chozo Ruins North (Sun Tower)": "Magmoor Caverns South (Magmoor Workstation, Save Station)" }, "rooms": { "Antechamber": { @@ -639,7 +693,7 @@ "pickups": [], "doors": { "0": { - "blastShieldType": "Super Missile" + "blastShieldType": "Power Bomb" } } }, @@ -664,20 +718,26 @@ ], "doors": { "0": { - "blastShieldType": "Super Missile" + "blastShieldType": "Power Bomb" } } }, "Crossway Access South": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Crossway Access West": { "pickups": [], "doors": { "0": { - "shieldType": "Blue", - "blastShieldType": "Missile" + "shieldType": "Ice Beam" } } }, @@ -693,8 +753,8 @@ } ], "doors": { - "1": { - "blastShieldType": "Missile" + "0": { + "shieldType": "Plasma Beam" }, "2": { "blastShieldType": "None" @@ -713,10 +773,10 @@ "pickups": [ { "type": "Unknown Item 1", - "scanText": "Wave Beam", - "hudmemoText": "Wave Beam Acquired!", + "scanText": "Missile Expansion", + "hudmemoText": "Missile Expansion Acquired!", "currIncrease": 0, - "model": "Wave Beam", + "model": "Missile", "showIcon": true }, { @@ -736,7 +796,15 @@ }, "East Furnace Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Blue", + "blastShieldType": "Super Missile" + } + } }, "Elder Chamber": { "pickups": [ @@ -749,7 +817,11 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + } + } }, "Elder Hall Access": { "pickups": [], @@ -790,7 +862,12 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Blue", + "blastShieldType": "Super Missile" + } + } }, "Gathering Hall Access": { "pickups": [], @@ -836,7 +913,16 @@ ], "doors": { "0": { - "blastShieldType": "Power Bomb" + "blastShieldType": "Missile" + }, + "2": { + "shieldType": "Plasma Beam" + }, + "3": { + "shieldType": "Plasma Beam" + }, + "4": { + "shieldType": "Plasma Beam" } } }, @@ -868,7 +954,11 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Ice Beam" + } + } }, "Main Plaza": { "pickups": [ @@ -933,13 +1023,17 @@ }, "Plaza Access": { "pickups": [], - "doors": {} + "doors": { + "1": { + "blastShieldType": "Missile" + } + } }, "Reflecting Pool Access": { "pickups": [], "doors": { "1": { - "blastShieldType": "Power Bomb" + "blastShieldType": "Missile" } } }, @@ -949,6 +1043,9 @@ "0": { "blastShieldType": "None" }, + "1": { + "shieldType": "Plasma Beam" + }, "3": { "blastShieldType": "None" } @@ -996,10 +1093,10 @@ "pickups": [ { "type": "Unknown Item 1", - "scanText": "Boost Ball", - "hudmemoText": "Boost Ball Acquired!", + "scanText": "Gravity Suit", + "hudmemoText": "Gravity Suit Acquired!", "currIncrease": 0, - "model": "Boost Ball", + "model": "Gravity Suit", "showIcon": true } ], @@ -1033,14 +1130,18 @@ }, { "type": "Unknown Item 1", - "scanText": "Charge Beam", - "hudmemoText": "Charge Beam Acquired!", + "scanText": "Boost Ball", + "hudmemoText": "Boost Ball Acquired!", "currIncrease": 0, - "model": "Charge Beam", + "model": "Boost Ball", "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Ice Beam" + } + } }, "Ruins Entrance": { "pickups": [], @@ -1098,10 +1199,10 @@ }, { "type": "Unknown Item 1", - "scanText": "Artifact of Truth", - "hudmemoText": "Artifact of Truth Acquired!", + "scanText": "Energy Tank", + "hudmemoText": "Energy Tank Acquired!", "currIncrease": 0, - "model": "Artifact of Truth", + "model": "Energy Tank", "showIcon": true } ], @@ -1122,24 +1223,39 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Ice Beam" + } + } }, "Tower of Light Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Ice Beam" + } + } }, "Tower of Light": { "pickups": [ { "type": "Unknown Item 1", - "scanText": "Artifact of Nature", - "hudmemoText": "Artifact of Nature Acquired!", + "scanText": "Artifact of Strength", + "hudmemoText": "Artifact of Strength Acquired!", "currIncrease": 0, - "model": "Artifact of Nature", + "model": "Artifact of Strength", "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Ice Beam" + }, + "1": { + "shieldType": "Ice Beam" + } + } }, "Training Chamber Access": { "pickups": [ @@ -1153,9 +1269,11 @@ } ], "doors": { + "0": { + "shieldType": "Ice Beam" + }, "1": { - "shieldType": "Blue", - "blastShieldType": "Bomb" + "shieldType": "Ice Beam" } } }, @@ -1172,8 +1290,7 @@ ], "doors": { "0": { - "shieldType": "Blue", - "blastShieldType": "Bomb" + "shieldType": "Ice Beam" } } }, @@ -1196,7 +1313,11 @@ }, "Transport Access South": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + } + } }, "Transport to Magmoor Caverns North": { "pickups": [], @@ -1229,7 +1350,11 @@ "showIcon": true } ], - "doors": {} + "doors": { + "1": { + "blastShieldType": "Missile" + } + } }, "Watery Hall Access": { "pickups": [ @@ -1260,10 +1385,10 @@ }, { "type": "Unknown Item 1", - "scanText": "Artifact of Strength", - "hudmemoText": "Artifact of Strength Acquired!", + "scanText": "Plasma Beam", + "hudmemoText": "Plasma Beam Acquired!", "currIncrease": 0, - "model": "Artifact of Strength", + "model": "Plasma Beam", "showIcon": true } ], @@ -1284,19 +1409,16 @@ }, "Magmoor Caverns": { "transports": { - "Magmoor Caverns East (Twin Fires)": "Phendrana Drifts South (Quarantine Cave)", "Magmoor Caverns North (Lava Lake)": "Tallon Overworld East (Frigate Crash Site)", - "Magmoor Caverns South (Magmoor Workstation, Save Station)": "Phazon Mines East (Main Quarry)", - "Magmoor Caverns South (Magmoor Workstation, Debris)": "Chozo Ruins South (Reflecting Pool, Far End)", - "Magmoor Caverns West (Monitor Station)": "Tallon Overworld South (Great Tree Hall, Lower)" + "Magmoor Caverns West (Monitor Station)": "Phendrana Drifts South (Quarantine Cave)", + "Magmoor Caverns South (Magmoor Workstation, Debris)": "Tallon Overworld South (Great Tree Hall, Lower)", + "Magmoor Caverns South (Magmoor Workstation, Save Station)": "Chozo Ruins North (Sun Tower)", + "Magmoor Caverns East (Twin Fires)": "Phendrana Drifts North (Phendrana Shorelines)" }, "rooms": { "Burning Trail": { "pickups": [], "doors": { - "1": { - "blastShieldType": "Power Bomb" - }, "2": { "blastShieldType": "None" } @@ -1306,10 +1428,10 @@ "pickups": [ { "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", + "scanText": "Power Bomb Expansion", + "hudmemoText": "Power Bomb Expansion Acquired!", "currIncrease": 0, - "model": "Missile", + "model": "Power Bomb Expansion", "showIcon": true }, { @@ -1321,11 +1443,19 @@ "showIcon": true } ], - "doors": {} + "doors": { + "1": { + "blastShieldType": "Charge Beam" + } + } }, "Geothermal Core": { "pickups": [], - "doors": {} + "doors": { + "1": { + "shieldType": "Wave Beam" + } + } }, "Lake Tunnel": { "pickups": [], @@ -1342,7 +1472,11 @@ "showIcon": true } ], - "doors": {} + "doors": { + "1": { + "blastShieldType": "Bomb" + } + } }, "Magmoor Workstation": { "pickups": [ @@ -1356,14 +1490,18 @@ } ], "doors": { - "1": { - "blastShieldType": "Charge Beam" + "2": { + "shieldType": "Plasma Beam" } } }, "Monitor Station": { "pickups": [], - "doors": {} + "doors": { + "2": { + "blastShieldType": "Bomb" + } + } }, "Monitor Tunnel": { "pickups": [], @@ -1371,11 +1509,22 @@ }, "North Core Tunnel": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Pit Tunnel": { "pickups": [], - "doors": {} + "doors": { + "1": { + "blastShieldType": "Bomb" + } + } }, "Plasma Processing": { "pickups": [ @@ -1425,7 +1574,14 @@ }, "South Core Tunnel": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Storage Cavern": { "pickups": [ @@ -1438,37 +1594,36 @@ "showIcon": true } ], - "doors": { - "0": { - "blastShieldType": "Charge Beam" - } - } - }, - "Transport to Chozo Ruins North": { - "pickups": [], "doors": { "0": { "blastShieldType": "Power Bomb" } } }, - "Transport to Phazon Mines West": { + "Transport to Chozo Ruins North": { "pickups": [], "doors": {} }, - "Transport to Phendrana Drifts North": { + "Transport to Phazon Mines West": { "pickups": [], "doors": { "0": { - "blastShieldType": "Power Bomb" + "shieldType": "Wave Beam" } } }, + "Transport to Phendrana Drifts North": { + "pickups": [], + "doors": {} + }, "Transport to Phendrana Drifts South": { "pickups": [], "doors": { "0": { "blastShieldType": "None" + }, + "1": { + "shieldType": "Plasma Beam" } } }, @@ -1487,19 +1642,26 @@ "showIcon": true } ], - "doors": { - "0": { - "blastShieldType": "Power Bomb" - } - } + "doors": {} }, "Transport Tunnel B": { "pickups": [], - "doors": {} + "doors": { + "1": { + "blastShieldType": "Charge Beam" + } + } }, "Transport Tunnel C": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Triclops Pit": { "pickups": [ @@ -1514,7 +1676,7 @@ ], "doors": { "1": { - "blastShieldType": "Charge Beam" + "blastShieldType": "Power Bomb" } } }, @@ -1524,7 +1686,11 @@ }, "Twin Fires": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + } + } }, "Warrior Shrine": { "pickups": [ @@ -1537,13 +1703,17 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "blastShieldType": "Bomb" + } + } }, "Workstation Tunnel": { "pickups": [], "doors": { - "1": { - "blastShieldType": "Charge Beam" + "0": { + "shieldType": "Wave Beam" } } } @@ -1551,13 +1721,20 @@ }, "Phendrana Drifts": { "transports": { - "Phendrana Drifts South (Quarantine Cave)": "Magmoor Caverns East (Twin Fires)", - "Phendrana Drifts North (Phendrana Shorelines)": "Tallon Overworld South (Great Tree Hall, Upper)" + "Phendrana Drifts South (Quarantine Cave)": "Magmoor Caverns West (Monitor Station)", + "Phendrana Drifts North (Phendrana Shorelines)": "Magmoor Caverns East (Twin Fires)" }, "rooms": { "Aether Lab Entryway": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Canyon Entryway": { "pickups": [], @@ -1569,7 +1746,14 @@ }, "Chamber Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Chapel of the Elders": { "pickups": [ @@ -1616,23 +1800,42 @@ "showIcon": true } ], - "doors": {} - }, - "Courtyard Entryway": { - "pickups": [], "doors": { + "0": { + "shieldType": "Blue", + "blastShieldType": "Super Missile" + }, "1": { - "blastShieldType": "Charge Beam" + "shieldType": "Plasma Beam" } } }, - "East Tower": { + "Courtyard Entryway": { "pickups": [], "doors": {} }, + "East Tower": { + "pickups": [], + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Blue", + "blastShieldType": "Super Missile" + } + } + }, "Frost Cave Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Frost Cave": { "pickups": [ @@ -1645,11 +1848,34 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + }, + "2": { + "shieldType": "Plasma Beam" + } + } }, "Frozen Pike": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + }, + "2": { + "shieldType": "Plasma Beam" + }, + "3": { + "shieldType": "Plasma Beam" + } + } }, "Gravity Chamber": { "pickups": [ @@ -1670,19 +1896,54 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Hunter Cave Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Hunter Cave": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Blue", + "blastShieldType": "Power Bomb" + }, + "2": { + "shieldType": "Plasma Beam" + }, + "3": { + "shieldType": "Plasma Beam" + } + } }, "Hydra Lab Entryway": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Ice Ruins Access": { "pickups": [], @@ -1692,10 +1953,10 @@ "pickups": [ { "type": "Unknown Item 1", - "scanText": "Artifact of World", - "hudmemoText": "Artifact of World Acquired!", + "scanText": "X-Ray Visor", + "hudmemoText": "X-Ray Visor Acquired!", "currIncrease": 0, - "model": "Artifact of World", + "model": "X-Ray Visor", "showIcon": true }, { @@ -1713,17 +1974,19 @@ "pickups": [ { "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", + "scanText": "Charge Beam", + "hudmemoText": "Charge Beam Acquired!", "currIncrease": 0, - "model": "Energy Tank", + "model": "Charge Beam", "showIcon": true } ], "doors": { + "0": { + "blastShieldType": "Missile" + }, "1": { - "shieldType": "Blue", - "blastShieldType": "Charge Beam" + "shieldType": "Plasma Beam" }, "2": { "blastShieldType": "None" @@ -1732,11 +1995,26 @@ }, "Lake Tunnel": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Lower Edge Tunnel": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Blue", + "blastShieldType": "Power Bomb" + } + } }, "Map Station": { "pickups": [], @@ -1744,11 +2022,25 @@ }, "North Quarantine Tunnel": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Observatory Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Observatory": { "pickups": [ @@ -1762,6 +2054,12 @@ } ], "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + }, "2": { "blastShieldType": "None" } @@ -1800,55 +2098,63 @@ } ], "doors": { - "3": { - "blastShieldType": "Super Missile" - }, - "4": { - "blastShieldType": "Bomb" + "1": { + "blastShieldType": "Missile" } } }, "Phendrana's Edge": { - "pickups": [], - "doors": {} - }, - "Pike Access": { "pickups": [], "doors": { + "0": { + "shieldType": "Plasma Beam" + }, "1": { - "shieldType": "Blue", - "blastShieldType": "Missile" + "shieldType": "Plasma Beam" + }, + "2": { + "shieldType": "Ice Beam" } } }, - "Plaza Walkway": { + "Pike Access": { "pickups": [], "doors": { "0": { - "blastShieldType": "Bomb" + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Wave Beam" } } }, + "Plaza Walkway": { + "pickups": [], + "doors": {} + }, "Quarantine Access": { "pickups": [], - "doors": { - "1": { - "blastShieldType": "Super Missile" - } - } + "doors": {} }, "Quarantine Cave": { "pickups": [ { "type": "Unknown Item 1", - "scanText": "Artifact of Wild", - "hudmemoText": "Artifact of Wild Acquired!", + "scanText": "Artifact of Nature", + "hudmemoText": "Artifact of Nature Acquired!", "currIncrease": 0, - "model": "Artifact of Wild", + "model": "Artifact of Nature", "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Quarantine Monitor": { "pickups": [ @@ -1865,7 +2171,14 @@ }, "Research Core Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Research Core": { "pickups": [ @@ -1880,14 +2193,23 @@ ], "doors": { "0": { - "shieldType": "Blue", - "blastShieldType": "Missile" + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Plasma Beam" } } }, "Research Entrance": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "2": { + "shieldType": "Plasma Beam" + } + } }, "Research Lab Aether": { "pickups": [ @@ -1908,7 +2230,14 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Research Lab Hydra": { "pickups": [ @@ -1921,16 +2250,23 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Ruined Courtyard": { "pickups": [ { "type": "Unknown Item 1", - "scanText": "Plasma Beam", - "hudmemoText": "Plasma Beam Acquired!", + "scanText": "Artifact of Truth", + "hudmemoText": "Artifact of Truth Acquired!", "currIncrease": 0, - "model": "Plasma Beam", + "model": "Artifact of Truth", "showIcon": true } ], @@ -1938,16 +2274,17 @@ "1": { "blastShieldType": "None" }, - "3": { - "blastShieldType": "Super Missile" + "2": { + "shieldType": "Blue", + "blastShieldType": "Power Bomb" } } }, "Ruins Entryway": { "pickups": [], "doors": { - "1": { - "blastShieldType": "Super Missile" + "0": { + "blastShieldType": "Missile" } } }, @@ -1965,7 +2302,11 @@ }, "Save Station C": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + } + } }, "Save Station D": { "pickups": [], @@ -1994,11 +2335,26 @@ }, "South Quarantine Tunnel": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Specimen Storage": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Blue", + "blastShieldType": "Power Bomb" + } + } }, "Storage Cave": { "pickups": [ @@ -2011,11 +2367,19 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Ice Beam" + } + } }, "Temple Entryway": { "pickups": [], - "doors": {} + "doors": { + "1": { + "blastShieldType": "Missile" + } + } }, "Transport Access": { "pickups": [ @@ -2028,11 +2392,25 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Transport to Magmoor Caverns South": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Transport to Magmoor Caverns West": { "pickups": [], @@ -2040,13 +2418,23 @@ }, "Upper Edge Tunnel": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "West Tower Entrance": { "pickups": [], "doors": { "0": { "blastShieldType": "None" + }, + "1": { + "shieldType": "Plasma Beam" } } }, @@ -2055,6 +2443,9 @@ "doors": { "0": { "blastShieldType": "None" + }, + "1": { + "shieldType": "Plasma Beam" } } } @@ -2062,8 +2453,8 @@ }, "Phazon Mines": { "transports": { - "Phazon Mines West (Phazon Processing Center)": "Chozo Ruins North (Sun Tower)", - "Phazon Mines East (Main Quarry)": "Magmoor Caverns South (Magmoor Workstation, Save Station)" + "Phazon Mines East (Main Quarry)": "Tallon Overworld South (Great Tree Hall, Upper)", + "Phazon Mines West (Phazon Processing Center)": "Chozo Ruins South (Reflecting Pool, Far End)" }, "rooms": { "Central Dynamo": { @@ -2077,32 +2468,72 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + }, + "2": { + "shieldType": "Plasma Beam" + } + } }, "Dynamo Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Elevator A": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Elevator Access A": { "pickups": [], "doors": { "0": { - "shieldType": "Blue", - "blastShieldType": "Charge Beam" + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" } } }, "Elevator Access B": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Wave Beam" + } + } }, "Elevator B": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Wave Beam" + } + } }, "Elite Control Access": { "pickups": [ @@ -2116,9 +2547,11 @@ } ], "doors": { + "0": { + "shieldType": "Plasma Beam" + }, "1": { - "shieldType": "Blue", - "blastShieldType": "Power Bomb" + "shieldType": "Ice Beam" } } }, @@ -2126,18 +2559,27 @@ "pickups": [], "doors": { "0": { - "shieldType": "Blue", - "blastShieldType": "Super Missile" + "shieldType": "Plasma Beam" }, "1": { + "shieldType": "Ice Beam" + }, + "2": { "shieldType": "Blue", - "blastShieldType": "Power Bomb" + "blastShieldType": "Charge Beam" } } }, "Elite Quarters Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Wave Beam" + } + } }, "Elite Quarters": { "pickups": [ @@ -2150,16 +2592,23 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Wave Beam" + } + } }, "Elite Research": { "pickups": [ { "type": "Unknown Item 1", - "scanText": "Gravity Suit", - "hudmemoText": "Gravity Suit Acquired!", + "scanText": "Super Missile", + "hudmemoText": "Super Missile Acquired!", "currIncrease": 0, - "model": "Gravity Suit", + "model": "Super Missile", "showIcon": true }, { @@ -2171,11 +2620,25 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Fungal Hall A": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Fungal Hall Access": { "pickups": [ @@ -2201,7 +2664,17 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Wave Beam" + }, + "2": { + "shieldType": "Wave Beam" + } + } }, "Main Quarry": { "pickups": [ @@ -2218,6 +2691,15 @@ "0": { "shieldType": "Blue", "blastShieldType": "Super Missile" + }, + "1": { + "shieldType": "Ice Beam" + }, + "2": { + "shieldType": "Ice Beam" + }, + "3": { + "shieldType": "Plasma Beam" } } }, @@ -2225,67 +2707,118 @@ "pickups": [], "doors": { "0": { - "shieldType": "Blue", - "blastShieldType": "Super Missile" + "shieldType": "Plasma Beam" }, "1": { "shieldType": "Blue", - "blastShieldType": "Missile" + "blastShieldType": "Charge Beam" } } }, "Map Station Mines": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + } + } }, "Metroid Quarantine A": { "pickups": [ { "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", + "scanText": "Wave Beam", + "hudmemoText": "Wave Beam Acquired!", "currIncrease": 0, - "model": "Missile", + "model": "Wave Beam", "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Blue", + "blastShieldType": "Super Missile" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Metroid Quarantine B": { "pickups": [ { "type": "Unknown Item 1", - "scanText": "Artifact of Spirit", - "hudmemoText": "Artifact of Spirit Acquired!", + "scanText": "Missile Expansion", + "hudmemoText": "Missile Expansion Acquired!", "currIncrease": 0, - "model": "Artifact of Spirit", + "model": "Missile", "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Wave Beam" + }, + "2": { + "shieldType": "Wave Beam" + } + } }, "Mine Security Station": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Ice Beam" + }, + "2": { + "shieldType": "Wave Beam" + } + } }, "Missile Station Mines": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + } + } }, "Omega Research": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + }, + "2": { + "shieldType": "Plasma Beam" + } + } }, "Ore Processing": { "pickups": [], "doors": { "0": { "shieldType": "Blue", - "blastShieldType": "Super Missile" + "blastShieldType": "Missile" }, - "3": { + "1": { "shieldType": "Blue", - "blastShieldType": "Charge Beam" + "blastShieldType": "Bomb" + }, + "2": { + "shieldType": "Plasma Beam" + }, + "3": { + "shieldType": "Plasma Beam" } } }, @@ -2300,7 +2833,14 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Wave Beam" + } + } }, "Phazon Processing Center": { "pickups": [ @@ -2314,9 +2854,15 @@ } ], "doors": { + "0": { + "shieldType": "Plasma Beam" + }, "1": { "shieldType": "Blue", - "blastShieldType": "Missile" + "blastShieldType": "Charge Beam" + }, + "2": { + "shieldType": "Wave Beam" } } }, @@ -2331,40 +2877,84 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Wave Beam" + } + } }, "Quarantine Access A": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Blue", + "blastShieldType": "Super Missile" + } + } }, "Quarantine Access B": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + }, + "1": { + "shieldType": "Wave Beam" + } + } }, "Quarry Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Ice Beam" + }, + "1": { + "shieldType": "Ice Beam" + } + } }, "Research Access": { "pickups": [], "doors": { "0": { "shieldType": "Blue", - "blastShieldType": "Super Missile" + "blastShieldType": "Missile" + }, + "1": { + "shieldType": "Plasma Beam" } } }, "Save Station Mines A": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Ice Beam" + } + } }, "Save Station Mines B": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + } + } }, "Save Station Mines C": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + } + } }, "Security Access A": { "pickups": [ @@ -2377,11 +2967,25 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Security Access B": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Ice Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Storage Depot A": { "pickups": [ @@ -2394,7 +2998,11 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Wave Beam" + } + } }, "Storage Depot B": { "pickups": [ @@ -2407,19 +3015,39 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Blue", + "blastShieldType": "Bomb" + } + } }, "Transport Access": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Plasma Beam" + } + } }, "Transport to Magmoor Caverns South": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + } + } }, "Transport to Tallon Overworld South": { "pickups": [], - "doors": {} + "doors": { + "0": { + "shieldType": "Ice Beam" + } + } }, "Ventilation Shaft": { "pickups": [ @@ -2432,7 +3060,15 @@ "showIcon": true } ], - "doors": {} + "doors": { + "0": { + "shieldType": "Plasma Beam" + }, + "1": { + "shieldType": "Blue", + "blastShieldType": "Charge Beam" + } + } }, "Waste Disposal": { "pickups": [], @@ -2440,6 +3076,9 @@ "0": { "shieldType": "Blue", "blastShieldType": "Super Missile" + }, + "1": { + "shieldType": "Plasma Beam" } } } diff --git a/worlds/metroidprime/test/test_output/test_output_generates_correctly.json b/worlds/metroidprime/test/test_output/test_output_generates_correctly.json deleted file mode 100644 index 7228191b3e45..000000000000 --- a/worlds/metroidprime/test/test_output/test_output_generates_correctly.json +++ /dev/null @@ -1,2255 +0,0 @@ -{ - "$schema": "https://randovania.org/randomprime/randomprime.schema.json", - "inputIso": "prime.iso", - "outputIso": "prime_out.iso", - "forceVanillaLayout": false, - "strg": { - "3012146902": [ - "Objective data decoded\n", - "Mission Objectives", - "Current Mission: Retrieve 12 Chozo Artifacts\nDefeat Meta Ridley\nDefeat Metroid Prime" - ], - "1343145632": [ - "[ Log Book ]", - "Pirate Data", - "Chozo Lore", - "Creatures", - "Research", - "Artifacts", - "LOG BOOK", - "OPTIONS", - "INVENTORY", - "[ Inventory ]", - "Arm Cannon", - "Morph Ball", - "Suits", - "Visors", - "Secondary Items", - "[ Options ]", - "Visor", - "Display", - "Sound", - "Controller", - "Quit Game", - "Visor Opacity", - "Helmet Opacity", - "HUD Lag", - "Hint System", - "Screen Brightness", - "Screen Offset X", - "Screen Offset Y", - "Screen Stretch", - "SFX Volume", - "Music Volume", - "Sound Mode", - "Reverse Y-Axis", - "Rumble", - "Swap Beam Controls", - "Restore Defaults", - "Power Beam", - "Ice Beam", - "Wave Beam", - "Plasma Beam", - "Phazon Beam", - "Super Missile", - "Ice Spreader", - "Wavebuster", - "Flamethrower", - "Phazon Combo", - "Morph Ball", - "Boost Ball", - "Spider Ball", - "Morph Ball Bomb", - "Power Bomb", - "Power Suit", - "Varia Suit", - "Gravity Suit", - "Phazon Suit", - "Energy Tank", - "Combat Visor", - "Scan Visor", - "X-Ray Visor", - "Thermal Visor", - "Space Jump Boots", - "Grapple Beam", - "Missile Launcher", - "Charge Beam", - "Beam Combo", - "[??????]\n\n", - "The &main-color=#89D6FF;Combat Visor&main-color=#FF6705B3; is your default Visor. It provides you with a Heads-Up Display (HUD) containing radar, mini-map, lock-on reticules, threat assessment, energy gauge, and Missile count.\n\nPress &image=SA,3.0,0.6,0.85,F13452F8,C042EC91; to select the Combat Visor.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nIcons for the Arm Cannons you possess are shown in the lower-right corner of the Combat Visor.\n\nIcons for the Visors you possess are shown in the lower-left corner of the Combat Visor.\n\n", - "The &main-color=#89D6FF;Scan Visor&main-color=#FF6705B3; is used to collect data. Some devices will activate when scanned.\n\nPress &image=SA,3.0,0.6,0.85,F13452F8,B306E26F; to select the Scan Visor. Move the Visor over targets with this symbol &image=SI,0.70,0.68,FD41E145;, then press and hold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; to scan. \n\nUse &image=SI,0.6,0.85,F13452F8; to select another available Visor or press &image=SI,0.70,0.68,05AF9CAA; to turn the Visor off.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nMission-critical scan targets &image=SI,0.70,0.68,BCE843F2; will be red in color. \n\nScanning enemies with this Visor can reveal their vulnerabilities.\n\nYou will be unable to fire any weapons while the Scan Visor is active.\n\nScanned data vital to the success of the mission is downloaded and stored in the &main-color=#89D6FF;Log Book&main-color=#FF6705B3; section of the Pause Screen. \n\nPress &image=A,3.0,08A2E4B9,F2425B21; on this screen to access the Log Book.\n", - "The &main-color=#89D6FF;X-Ray Visor&main-color=#FF6705B3; can see through certain types of materials. \n\nPress &image=SA,3.0,0.6,0.85,F13452F8,8ADA8184; to select the X-Ray Visor.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe X-Ray Visor can reveal invisible items, areas, and enemies.\n\nRobotic enemies jam the X-Ray Visor's frequency. Eliminate them to restore function to the Visor.\n", - "The &main-color=#89D6FF;Thermal Visor&main-color=#FF6705B3; allows you to see in the infrared spectrum. Hot objects are bright in the Visor, while colder ones are dim.\n\nPress &image=SA,3.0,0.6,0.85,F13452F8,5F556002; to select the Thermal Visor.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Thermal Visor will show the weak points of certain foes.\n\nUse the Thermal Visor to see in total darkness and poor weather conditions. \n\nBrightly lit areas, explosions, and intense heat can impair the Thermal Visor.\n\nEnemies with temperatures close to their surroundings will be tough to spot with this Visor.\n", - "The &main-color=#89D6FF;Power Beam&main-color=#FF6705B3; is the default Arm Cannon. It has the best rate of fire.\n\nPress &image=SA,3.0,0.6,0.85,2A13C23E,A91A7703; to select the Power Beam as your active weapon.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Power Beam can be used to open Blue Doors.\n\nIf you see your shots ricochet, cease fire. The Power Beam is not working against that target.\n\nYou can use the Power Beam to quickly clear an area of weak foes.\n", - "\nThe &main-color=#89D6FF;Super Missile&main-color=#FF6705B3; is the &main-color=#89D6FF;Power&main-color=#FF6705B3; Charge Combo.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nSuper Missile is a Single Shot Charge Combo. Each shot costs 5 Missiles.\n\nSuper Missiles can destroy objects made of &main-color=#89D6FF;Cordite&main-color=#FF6705B3;.\n", - "The &main-color=#89D6FF;Ice Beam&main-color=#FF6705B3; can freeze enemies solid. Hits from the Ice Beam may also slow foes down. \n\nPress &image=SA,3.0,0.6,0.85,2A13C23E,12A12131; to select the Ice Beam as your active weapon.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nUse the Ice Beam to open White Doors.\n\nThe Ice Beam is quite effective against fire-based creatures.\n\nCharge the Ice Beam to increase the time an enemy will stay frozen when hit.\n\nSome frozen enemies can be shattered by Missile hits.\n", - "\nThe &main-color=#89D6FF;Ice Spreader&main-color=#FF6705B3; is the &main-color=#89D6FF;Ice&main-color=#FF6705B3; Charge Combo. It can freeze targets in a wide area.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nIce Spreader is a Single Shot Charge Combo. Each shot costs 10 Missiles.\n\nIce Spreader is limited against aerial targets.\n", - "The&main-color=#89D6FF; Wave Beam&main-color=#FF6705B3; fires powerful electric bolts. This weapon has a limited homing capability as well.\n\nPress &image=SA,3.0,0.6,0.85,2A13C23E,CD7B1ACA; to select the Wave Beam as your active weapon.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFire the Wave Beam to open Purple Doors.\n\nThe Wave Beam won't home in on targets without a lock-on. Press and hold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; to lock on.\n\nCharge the Wave Beam to fire a fierce electric blast. Enemies struck by this blast will be enveloped in electrical energy for a few moments.\n", - "\nThe &main-color=#89D6FF;Wavebuster&main-color=#FF6705B3; is the &main-color=#89D6FF;Wave&main-color=#FF6705B3; Charge Combo. This potent blast auto-seeks targets in the area.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Wavebuster is a Sustained Fire Charge Combo. It costs 10 Missiles to activate, then 5 Missiles per second afterward.\n\nThe Wavebuster will seek enemies without a lock-on.\n\n\n\n\n\n\n\n\n\n\n", - "The&main-color=#89D6FF; Plasma Beam&main-color=#FF6705B3; fires streams of molten energy. This Beam can ignite flammable objects and enemies.\n\nPress &image=SA,3.0,0.6,0.85,A9798329,2A13C23E; to select the Plasma Beam as your active weapon.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFire the Plasma Beam to open Red Doors.\n\nThe Plasma Beam is very effective against cold-based enemies.\n\nCharge the Plasma Beam to fire a sphere of plasma. Enemies struck by this blast will be engulfed in flames for a few moments.\n", - "\nThe &main-color=#89D6FF;Flamethrower&main-color=#FF6705B3; is the &main-color=#89D6FF;Plasma&main-color=#FF6705B3; Charge Combo. You can sweep its stream of flame across multiple targets.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFlamethrower is a Sustained Fire Charge Combo. It costs 10 Missiles to activate, then 5 Missiles per second afterward.\n\nThe Flamethrower is most effective against multiple targets in an area.\n", - "The viral corruption of the Power Suit has altered the Arm Cannon as well. It is now capable of firing the powerful&main-color=#89D6FF; Phazon Beam&main-color=#FF6705B3;.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Phazon Beam appears to trigger in the presence of high concentrations of Phazon.\n\nRegular Arm Cannon functions return when Phazon is not present.\n\nThe Charge Beam does not function when the Phazon Beam is active.\n", - "The &main-color=#89D6FF;Space Jump Boots&main-color=#FF6705B3; increase the leaping capability of the Power Suit through the use of boot-mounted thrusters. \n\nPress &image=SI,0.70,0.68,833BEE04; to jump, then press &image=SI,0.70,0.68,833BEE04; again during the jump to use the Space Jump Boots.\n\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nTiming is important when using the Space Jump Boots. \n\nExperiment to discover ways to increase the height and length of your jumps.\n", - "The &main-color=#89D6FF;Grapple Beam&main-color=#FF6705B3; allows you to swing back and forth from special points in the environment. \n\nGrapple Points appear in your Visor as a &image=SI,0.70,0.68,2702E5E0; icon. \n\nPress and hold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; to fire the Grapple Beam. \n\nHold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; down to stay connected; let go to release.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Grapple Beam can be used to cross large gaps.\n\nUse the &image=SA,7.0,0.6,1.0,C6C483AC,4050F102,8B0C22A7,4050F102,3A446C61,BCD01ECF,778CCD6A,BCD01ECF; while grappling to swing in different directions.\n", - "The &main-color=#89D6FF;Missile Launcher&main-color=#FF6705B3; adds ballistic weapon capability to the Arm Cannon.\n\nPress &image=SI,1.0,0.68,EA2A1C5C; to fire the Missile Launcher. Press &image=SI,0.70,0.68,05AF9CAA; to return to Beam mode.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nMissiles fired with a lock-on will seek their targets.\n\nMissiles can destroy objects made from &main-color=#89D6FF;Radion&main-color=#FF6705B3; or &main-color=#89D6FF;Brinstone&main-color=#FF6705B3;.\n\nThere are Charge Combo enhancements scattered throughout the environment. They use the Missile Launcher and the Charge Beam in tandem to fire more effective blasts.\n\nEach Missile Expansion you find will increase the number of Missiles you can carry by 5.\n", - "The &main-color=#89D6FF;Power Suit&main-color=#FF6705B3; is an advanced Chozo exoskeleton modified for use by Samus Aran. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Power Suit provides life-support functions and is well shielded from attack. \n \nThe modular nature of the Power Suit allows for the addition of weapons, Visors, and other gear as needed.\n\nThe Power Suit's shielding loses energy with each hit; collect energy when possible to keep the shielding charged.\n", - "The &main-color=#89D6FF;Varia Suit&main-color=#FF6705B3; adds increased heat resistance to the Power Suit.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThis modification increases your defensive shielding.\n\nWhile the Varia Suit can handle higher temperatures than normal, extreme heat sources and heat-based attacks will still cause damage.", - "The &main-color=#89D6FF;Gravity Suit&main-color=#FF6705B3; eliminates the effects of liquid on movement.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThis modification improves your defensive shielding.\n\nThe Gravity Suit allows for improved movement in liquid environments, but does not reduce damage delivered when exposed to hazardous fluids.\n\nVisor modifications in the Gravity Suit make it easier to see underwater.", - "The Power Suit has been corrupted by viral exposure, turning it into the &main-color=#89D6FF;Phazon Suit&main-color=#FF6705B3;. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe viral corruption of the Power Suit has some beneficial side effects. \n\nThe suit is now resistant to the effects of Blue Phazon. The suit is not invulnerable to the effects of all Phazon, however.\n\nIn addition to Phazon resistance, the corruption has dramatically increased defensive shielding levels.", - "The &main-color=#89D6FF;Energy Tanks&main-color=#FF6705B3; increase the power level available to your Suit's defense screens.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nEach Energy Tank increases your Suit's energy by 100 units. The more energy your Suit has, the longer you can stay alive.\n\nYou can fully recharge your Energy Tanks at Save Stations. Your gunship has this capability as well.", - "The &main-color=#89D6FF;Morph Ball&main-color=#FF6705B3; changes your Suit into a compact, mobile sphere. \n\nPress &image=SI,0.70,1.0,2176CFF9; to enter Morph Ball mode.\n\nPress &image=SI,0.70,1.0,2176CFF9; again to leave Morph Ball mode.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nLike the Power Suit, the Morph Ball is modular. There are several modifications that can be added to improve performance.", - "The &main-color=#89D6FF;Boost Ball&main-color=#FF6705B3; can be used to increase the Morph Ball's speed for short periods.\n\nPress and hold &image=SI,0.70,0.68,833BEE04; to charge, then release &image=SI,0.70,0.68,833BEE04; to trigger a quick boost of speed.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nWhen charging, the longer you hold &image=SI,0.70,0.68,833BEE04;, the longer (and faster) the Boost Charge will be.\n\nThroughout the environment you will encounter U-shaped channels known as half-pipes. Using the Boost Ball in these areas will let you reach higher places. \n\nBuild a charge as you descend in the half-pipe, then trigger the Boost as you ascend the other side. This will give you the speed and momentum you need to reach new heights.\n", - "The &main-color=#89D6FF;Spider Ball&main-color=#FF6705B3; allows you to move the Morph Ball along magnetic rails.\n\nPress and hold &image=A,3.0,08A2E4B9,F2425B21; to activate the Spider Ball ability.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFollow the magnetic rails to explore new areas.\n\nThe Morph Ball Bomb can be used to trigger a Bomb Jump while attached to a rail.\n\n\n", - "The &main-color=#89D6FF;Morph Ball Bomb&main-color=#FF6705B3; is the default weapon for the Morph Ball.\n\nPress &image=SI,0.70,0.68,05AF9CAA; when in Morph Ball mode to drop a Morph Ball Bomb. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Morph Ball Bomb can be used to break cracked walls and activate certain devices.\n\nIf the Morph Ball is near a Morph Ball Bomb when it explodes, it will be popped a short distance into the air. This is called a&main-color=#89D6FF; Bomb Jump&main-color=#FF6705B3;. \n\nWhen a Morph Ball Bomb explodes, it must be close to the enemy to be effective.\n\nThe Morph Ball Bomb can easily break items made of&main-color=#89D6FF; Sandstone&main-color=#FF6705B3; or&main-color=#89D6FF; Talloric Alloy&main-color=#FF6705B3;.\n", - "The &main-color=#89D6FF;Power Bomb&main-color=#FF6705B3; is the strongest Morph Ball weapon.\n\nPress &image=SI,1.0,0.68,EA2A1C5C; when in Morph Ball mode to drop a Power Bomb. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nPower Bombs do not have unlimited ammo. Use them wisely.\n\nThe Power Bomb can destroy many materials, including &main-color=#89D6FF;Bendezium&main-color=#FF6705B3;.\n\nEach Power Bomb Expansion you find will increase the number of Power Bombs you can carry by 1.\n", - "The &main-color=#89D6FF;Charge Beam&main-color=#FF6705B3; allows you to increase the damage and effectiveness of the Arm Cannon.\n\nPress and hold &image=SI,0.70,0.68,05AF9CAA; to charge the Arm Cannon, then release &image=SI,0.70,0.68,05AF9CAA; to fire.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Charge Beam has a limited 'tractor beam' capacity. Use it to pull small objects to you.\n\nThere are Charge Combo enhancements scattered through the environment. They use the Charge Beam and the Missile Launcher in tandem to fire more effective blasts.\n\nThe Charge Beam increases the performance of each Arm Cannon mode.\n", - "The &main-color=#89D6FF;Charge Combos&main-color=#FF6705B3; allow you to fire the Missile Launcher and Arm Cannon together. The combined attacks are stronger than normal blasts.\n\nThe Arm Cannon must be charged to use a Charge Combo.\n\nWhen your Arm Cannon is charged, press &image=SI,1.0,0.68,EA2A1C5C; to fire the Charge Combo.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe &main-color=#89D6FF;Single Shot&main-color=#FF6705B3; Charge Combos fire one blast at a time. Each shot uses a number of Missiles.\n\n&main-color=#89D6FF;Sustained Fire&main-color=#FF6705B3; Charge Combos will fire as long as you have Missiles. Hold &image=SI,0.70,0.68,05AF9CAA; down after you fire. It takes ten Missiles to trigger these Charge Combos, then five Missiles per second afterward.\n\nPage down for information on the individual Charge Combos. \n\nThis data will download to the Log Book after each Charge Combo is acquired. \n\n\n\n\n\n\n\n\n\n", - "On", - "Off", - "Mono", - "Stereo", - "Dolby", - "Zoom" - ] - }, - "preferences": { - "forceFusion": false, - "cacheDir": "cache", - "qolGeneral": true, - "qolGameBreaking": true, - "qolCosmetic": true, - "qolCutscenes": "Skippable", - "qolPickupScans": true, - "mapDefaultState": "Always", - "artifactHintBehavior": "All", - "skipSplashScreens": false, - "quickplay": false, - "quickpatch": false, - "quiet": false, - "suitColors": { - "gravityDeg": 0, - "phazonDeg": 0, - "powerDeg": 0, - "variaDeg": 0 - } - }, - "tweaks": {}, - "gameConfig": { - "mainMenuMessage": "Archipelago Metroid Prime", - "startingRoom": "Tallon Overworld:Landing Site", - "springBall": true, - "warpToStart": true, - "multiworldDolPatches": false, - "nonvariaHeatDamage": true, - "staggeredSuitDamage": "Progressive", - "heatDamagePerSec": 10.0, - "poisonDamagePerSec": 0.11, - "phazonDamagePerSec": 0.964, - "phazonDamageModifier": "Default", - "autoEnabledElevators": true, - "skipRidley": false, - "removeHiveMecha": false, - "startingItems": { - "combatVisor": true, - "powerSuit": true, - "powerBeam": true, - "scanVisor": true, - "missiles": 0, - "energyTanks": 0, - "powerBombs": 0, - "wave": false, - "ice": false, - "plasma": false, - "charge": false, - "morphBall": false, - "bombs": false, - "spiderBall": false, - "boostBall": false, - "variaSuit": false, - "gravitySuit": false, - "phazonSuit": false, - "thermalVisor": false, - "xray": false, - "spaceJump": false, - "grapple": false, - "superMissile": false, - "wavebuster": false, - "iceSpreader": false, - "flamethrower": false - }, - "disableItemLoss": true, - "startingVisor": "Combat", - "startingBeam": "Power", - "enableIceTraps": false, - "missileStationPbRefill": true, - "doorOpenMode": "Original", - "etankCapacity": 100, - "itemMaxCapacity": { - "Power Beam": 1, - "Ice Beam": 1, - "Wave Beam": 1, - "Plasma Beam": 1, - "Missile": 999, - "Scan Visor": 1, - "Morph Ball Bomb": 1, - "Power Bomb": 99, - "Flamethrower": 1, - "Thermal Visor": 1, - "Charge Beam": 1, - "Super Missile": 1, - "Grapple Beam": 1, - "X-Ray Visor": 1, - "Ice Spreader": 1, - "Space Jump Boots": 1, - "Morph Ball": 1, - "Combat Visor": 1, - "Boost Ball": 1, - "Spider Ball": 1, - "Power Suit": 1, - "Gravity Suit": 1, - "Varia Suit": 1, - "Phazon Suit": 1, - "Energy Tank": 99, - "Unknown Item 1": 2147483647, - "Health Refill": 2147483647, - "Unknown Item 2": 2147483647, - "Wavebuster": 1, - "Artifact Of Truth": 1, - "Artifact Of Strength": 1, - "Artifact Of Elder": 1, - "Artifact Of Wild": 1, - "Artifact Of Lifegiver": 1, - "Artifact Of Warrior": 1, - "Artifact Of Chozo": 1, - "Artifact Of Nature": 1, - "Artifact Of Sun": 1, - "Artifact Of World": 1, - "Artifact Of Spirit": 1, - "Artifact Of Newborn": 1 - }, - "phazonEliteWithoutDynamo": true, - "mainPlazaDoor": true, - "backwardsLabs": true, - "backwardsFrigate": true, - "backwardsUpperMines": true, - "backwardsLowerMines": false, - "patchPowerConduits": false, - "removeMineSecurityStationLocks": false, - "powerBombArboretumSandstone": false, - "artifactHints": { - "Artifact of Chozo": "The &push;&main-color=#c300ff;Artifact of Chozo&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Shore Tunnel&pop;.", - "Artifact of Nature": "The &push;&main-color=#c300ff;Artifact of Nature&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Quarantine Cave&pop;.", - "Artifact of Sun": "The &push;&main-color=#c300ff;Artifact of Sun&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Hall of the Elders&pop;.", - "Artifact of World": "The &push;&main-color=#c300ff;Artifact of World&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Fiery Shores - Morph Track&pop;.", - "Artifact of Spirit": "The &push;&main-color=#c300ff;Artifact of Spirit&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Tallon Overworld: Landing Site&pop;.", - "Artifact of Newborn": "The &push;&main-color=#c300ff;Artifact of Newborn&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Gravity Chamber - Grapple Ledge&pop;.", - "Artifact of Truth": "The &push;&main-color=#c300ff;Artifact of Truth&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Ruined Courtyard&pop;.", - "Artifact of Strength": "The &push;&main-color=#c300ff;Artifact of Strength&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Tower of Light&pop;.", - "Artifact of Elder": "The &push;&main-color=#c300ff;Artifact of Elder&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Plasma Processing&pop;.", - "Artifact of Wild": "The &push;&main-color=#c300ff;Artifact of Wild&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Tallon Overworld: Life Grove Tunnel&pop;.", - "Artifact of Lifegiver": "The &push;&main-color=#c300ff;Artifact of Lifegiver&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Ruined Gallery - Missile Wall&pop;.", - "Artifact of Warrior": "The &push;&main-color=#c300ff;Artifact of Warrior&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Storage Cavern&pop;." - }, - "requiredArtifactCount": 12 - }, - "levelData": { - "Tallon Overworld": { - "transports": { - "Tallon Overworld North (Tallon Canyon)": "Chozo Ruins West (Main Plaza)", - "Tallon Overworld West (Root Cave)": "Magmoor Caverns East (Twin Fires)", - "Tallon Overworld East (Frigate Crash Site)": "Chozo Ruins East (Reflecting Pool, Save Station)", - "Tallon Overworld South (Great Tree Hall, Upper)": "Chozo Ruins South (Reflecting Pool, Far End)", - "Tallon Overworld South (Great Tree Hall, Lower)": "Phazon Mines East (Main Quarry)", - "Artifact Temple": "Crater Entry Point" - }, - "rooms": { - "Alcove": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Arbor Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Artifact Temple": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Biohazard Containment": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Canyon Cavern": { - "pickups": [], - "doors": {} - }, - "Cargo Freight Lift to Deck Gamma": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Frigate Access Tunnel": { - "pickups": [], - "doors": {} - }, - "Frigate Crash Site": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Great Tree Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Great Tree Hall": { - "pickups": [], - "doors": {} - }, - "Gully": { - "pickups": [], - "doors": {} - }, - "Hydro Access Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "X-Ray Visor", - "hudmemoText": "X-Ray Visor Acquired!", - "currIncrease": 0, - "model": "X-Ray Visor", - "showIcon": true - } - ], - "doors": {} - }, - "Landing Site": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Spirit", - "hudmemoText": "Artifact of Spirit Acquired!", - "currIncrease": 0, - "model": "Artifact of Spirit", - "showIcon": true - } - ], - "doors": {} - }, - "Life Grove Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Wild", - "hudmemoText": "Artifact of Wild Acquired!", - "currIncrease": 0, - "model": "Artifact of Wild", - "showIcon": true - } - ], - "doors": {} - }, - "Life Grove": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Overgrown Cavern": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Root Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Root Tunnel": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Tallon Canyon": { - "pickups": [], - "doors": {} - }, - "Temple Hall": { - "pickups": [], - "doors": {} - }, - "Temple Lobby": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Temple Security Station": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Transport to Chozo Ruins East": { - "pickups": [], - "doors": {} - }, - "Transport to Chozo Ruins South": { - "pickups": [], - "doors": {} - }, - "Transport to Chozo Ruins West": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns East": { - "pickups": [], - "doors": {} - }, - "Transport to Phazon Mines East": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel A": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Transport Tunnel C": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel D": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel E": { - "pickups": [], - "doors": {} - }, - "Waterfall Cavern": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - } - } - }, - "Chozo Ruins": { - "transports": { - "Chozo Ruins West (Main Plaza)": "Tallon Overworld North (Tallon Canyon)", - "Chozo Ruins North (Sun Tower)": "Magmoor Caverns North (Lava Lake)", - "Chozo Ruins East (Reflecting Pool, Save Station)": "Tallon Overworld East (Frigate Crash Site)", - "Chozo Ruins South (Reflecting Pool, Far End)": "Tallon Overworld South (Great Tree Hall, Upper)" - }, - "rooms": { - "Antechamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Missile" - } - } - }, - "Arboretum Access": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Arboretum": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - }, - "1": { - "blastShieldType": "Missile" - }, - "2": { - "blastShieldType": "Missile" - } - } - }, - "Burn Dome Access": { - "pickups": [], - "doors": {} - }, - "Burn Dome": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Crossway Access South": { - "pickups": [], - "doors": {} - }, - "Crossway Access West": { - "pickups": [], - "doors": {} - }, - "Crossway": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "2": { - "blastShieldType": "Missile" - } - } - }, - "Dynamo Access": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Dynamo": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Wave Beam", - "hudmemoText": "Wave Beam Acquired!", - "currIncrease": 0, - "model": "Wave Beam", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "East Atrium": { - "pickups": [], - "doors": {} - }, - "East Furnace Access": { - "pickups": [], - "doors": {} - }, - "Elder Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Elder Hall Access": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Energy Core Access": { - "pickups": [], - "doors": {} - }, - "Energy Core": { - "pickups": [], - "doors": {} - }, - "Eyon Tunnel": { - "pickups": [], - "doors": {} - }, - "Furnace": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Gathering Hall Access": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - }, - "1": { - "blastShieldType": "Missile" - } - } - }, - "Gathering Hall": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - }, - "2": { - "blastShieldType": "Missile" - } - } - }, - "Hall of the Elders": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Sun", - "hudmemoText": "Artifact of Sun Acquired!", - "currIncrease": 0, - "model": "Artifact of Sun", - "showIcon": true - } - ], - "doors": {} - }, - "Hive Totem": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Magma Pool": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Main Plaza": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "2": { - "blastShieldType": "Missile" - } - } - }, - "Map Station": { - "pickups": [], - "doors": {} - }, - "Meditation Fountain": { - "pickups": [], - "doors": {} - }, - "North Atrium": { - "pickups": [], - "doors": {} - }, - "Nursery Access": { - "pickups": [], - "doors": {} - }, - "Piston Tunnel": { - "pickups": [], - "doors": {} - }, - "Plaza Access": { - "pickups": [], - "doors": {} - }, - "Reflecting Pool Access": { - "pickups": [], - "doors": {} - }, - "Reflecting Pool": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - }, - "3": { - "blastShieldType": "Missile" - } - } - }, - "Ruined Fountain Access": { - "pickups": [], - "doors": {} - }, - "Ruined Fountain": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Varia Suit", - "hudmemoText": "Varia Suit Acquired!", - "currIncrease": 0, - "model": "Varia Suit", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Gallery": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Lifegiver", - "hudmemoText": "Artifact of Lifegiver Acquired!", - "currIncrease": 0, - "model": "Artifact of Lifegiver", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Nursery": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Plasma Beam", - "hudmemoText": "Plasma Beam Acquired!", - "currIncrease": 0, - "model": "Plasma Beam", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Shrine Access": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Ruined Shrine": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Morph Ball", - "hudmemoText": "Morph Ball Acquired!", - "currIncrease": 0, - "model": "Morph Ball", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Spider Ball", - "hudmemoText": "Spider Ball Acquired!", - "currIncrease": 0, - "model": "Spider Ball", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Boost Ball", - "hudmemoText": "Boost Ball Acquired!", - "currIncrease": 0, - "model": "Boost Ball", - "showIcon": true - } - ], - "doors": {} - }, - "Ruins Entrance": { - "pickups": [], - "doors": {} - }, - "Save Station 1": { - "pickups": [], - "doors": {} - }, - "Save Station 2": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Save Station 3": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Sun Tower": { - "pickups": [], - "doors": {} - }, - "Sun Tower Access": { - "pickups": [], - "doors": {} - }, - "Sunchamber Access": { - "pickups": [], - "doors": {} - }, - "Sunchamber Lobby": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Sunchamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Totem Access": { - "pickups": [], - "doors": {} - }, - "Tower Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Tower of Light Access": { - "pickups": [], - "doors": {} - }, - "Tower of Light": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Strength", - "hudmemoText": "Artifact of Strength Acquired!", - "currIncrease": 0, - "model": "Artifact of Strength", - "showIcon": true - } - ], - "doors": {} - }, - "Training Chamber Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Training Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Transport Access North": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Transport Access South": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns North": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld East": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld North": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld South": { - "pickups": [], - "doors": {} - }, - "Vault Access": { - "pickups": [], - "doors": {} - }, - "Vault": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Watery Hall Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Watery Hall": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Morph Ball Bomb", - "hudmemoText": "Morph Ball Bomb Acquired!", - "currIncrease": 0, - "model": "Morph Ball Bomb", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Charge Beam", - "hudmemoText": "Charge Beam Acquired!", - "currIncrease": 0, - "model": "Charge Beam", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Missile" - }, - "1": { - "blastShieldType": "Missile" - } - } - }, - "West Furnace Access": { - "pickups": [], - "doors": {} - } - } - }, - "Magmoor Caverns": { - "transports": { - "Magmoor Caverns North (Lava Lake)": "Chozo Ruins North (Sun Tower)", - "Magmoor Caverns West (Monitor Station)": "Phendrana Drifts North (Phendrana Shorelines)", - "Magmoor Caverns East (Twin Fires)": "Tallon Overworld West (Root Cave)", - "Magmoor Caverns South (Magmoor Workstation, Save Station)": "Phendrana Drifts South (Quarantine Cave)", - "Magmoor Caverns South (Magmoor Workstation, Debris)": "Phazon Mines West (Phazon Processing Center)" - }, - "rooms": { - "Burning Trail": { - "pickups": [], - "doors": { - "2": { - "blastShieldType": "Missile" - } - } - }, - "Fiery Shores": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of World", - "hudmemoText": "Artifact of World Acquired!", - "currIncrease": 0, - "model": "Artifact of World", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Geothermal Core": { - "pickups": [], - "doors": {} - }, - "Lake Tunnel": { - "pickups": [], - "doors": {} - }, - "Lava Lake": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Magmoor Workstation": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Monitor Station": { - "pickups": [], - "doors": {} - }, - "Monitor Tunnel": { - "pickups": [], - "doors": {} - }, - "North Core Tunnel": { - "pickups": [], - "doors": {} - }, - "Pit Tunnel": { - "pickups": [], - "doors": {} - }, - "Plasma Processing": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Elder", - "hudmemoText": "Artifact of Elder Acquired!", - "currIncrease": 0, - "model": "Artifact of Elder", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue" - } - } - }, - "Save Station Magmoor A": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Save Station Magmoor B": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Shore Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Chozo", - "hudmemoText": "Artifact of Chozo Acquired!", - "currIncrease": 0, - "model": "Artifact of Chozo", - "showIcon": true - } - ], - "doors": {} - }, - "South Core Tunnel": { - "pickups": [], - "doors": {} - }, - "Storage Cavern": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Warrior", - "hudmemoText": "Artifact of Warrior Acquired!", - "currIncrease": 0, - "model": "Artifact of Warrior", - "showIcon": true - } - ], - "doors": {} - }, - "Transport to Chozo Ruins North": { - "pickups": [], - "doors": {} - }, - "Transport to Phazon Mines West": { - "pickups": [], - "doors": {} - }, - "Transport to Phendrana Drifts North": { - "pickups": [], - "doors": {} - }, - "Transport to Phendrana Drifts South": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Transport to Tallon Overworld West": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Transport Tunnel B": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel C": { - "pickups": [], - "doors": {} - }, - "Triclops Pit": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Flamethrower", - "hudmemoText": "Flamethrower Acquired!", - "currIncrease": 0, - "model": "Flamethrower", - "showIcon": true - } - ], - "doors": {} - }, - "Twin Fires Tunnel": { - "pickups": [], - "doors": {} - }, - "Twin Fires": { - "pickups": [], - "doors": {} - }, - "Warrior Shrine": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Gravity Suit", - "hudmemoText": "Gravity Suit Acquired!", - "currIncrease": 0, - "model": "Gravity Suit", - "showIcon": true - } - ], - "doors": {} - }, - "Workstation Tunnel": { - "pickups": [], - "doors": {} - } - } - }, - "Phendrana Drifts": { - "transports": { - "Phendrana Drifts North (Phendrana Shorelines)": "Magmoor Caverns West (Monitor Station)", - "Phendrana Drifts South (Quarantine Cave)": "Magmoor Caverns South (Magmoor Workstation, Save Station)" - }, - "rooms": { - "Aether Lab Entryway": { - "pickups": [], - "doors": {} - }, - "Canyon Entryway": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Chamber Access": { - "pickups": [], - "doors": {} - }, - "Chapel of the Elders": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue" - } - } - }, - "Chapel Tunnel": { - "pickups": [], - "doors": {} - }, - "Chozo Ice Temple": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Control Tower": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Courtyard Entryway": { - "pickups": [], - "doors": {} - }, - "East Tower": { - "pickups": [], - "doors": {} - }, - "Frost Cave Access": { - "pickups": [], - "doors": {} - }, - "Frost Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Frozen Pike": { - "pickups": [], - "doors": {} - }, - "Gravity Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Grapple Beam", - "hudmemoText": "Grapple Beam Acquired!", - "currIncrease": 0, - "model": "Grapple Beam", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Artifact of Newborn", - "hudmemoText": "Artifact of Newborn Acquired!", - "currIncrease": 0, - "model": "Artifact of Newborn", - "showIcon": true - } - ], - "doors": {} - }, - "Hunter Cave Access": { - "pickups": [], - "doors": {} - }, - "Hunter Cave": { - "pickups": [], - "doors": {} - }, - "Hydra Lab Entryway": { - "pickups": [], - "doors": {} - }, - "Ice Ruins Access": { - "pickups": [], - "doors": {} - }, - "Ice Ruins East": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Space Jump Boots", - "hudmemoText": "Space Jump Boots Acquired!", - "currIncrease": 0, - "model": "Space Jump Boots", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Ice Ruins West": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Ice Beam", - "hudmemoText": "Ice Beam Acquired!", - "currIncrease": 0, - "model": "Ice Beam", - "showIcon": true - } - ], - "doors": { - "2": { - "blastShieldType": "Missile" - } - } - }, - "Lake Tunnel": { - "pickups": [], - "doors": {} - }, - "Lower Edge Tunnel": { - "pickups": [], - "doors": {} - }, - "Map Station": { - "pickups": [], - "doors": {} - }, - "North Quarantine Tunnel": { - "pickups": [], - "doors": {} - }, - "Observatory Access": { - "pickups": [], - "doors": {} - }, - "Observatory": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "2": { - "blastShieldType": "Missile" - } - } - }, - "Phendrana Canyon": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Phendrana Shorelines": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Phendrana's Edge": { - "pickups": [], - "doors": {} - }, - "Pike Access": { - "pickups": [], - "doors": {} - }, - "Plaza Walkway": { - "pickups": [], - "doors": {} - }, - "Quarantine Access": { - "pickups": [], - "doors": {} - }, - "Quarantine Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Nature", - "hudmemoText": "Artifact of Nature Acquired!", - "currIncrease": 0, - "model": "Artifact of Nature", - "showIcon": true - } - ], - "doors": {} - }, - "Quarantine Monitor": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Research Core Access": { - "pickups": [], - "doors": {} - }, - "Research Core": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Research Entrance": { - "pickups": [], - "doors": {} - }, - "Research Lab Aether": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Research Lab Hydra": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Ice Spreader", - "hudmemoText": "Ice Spreader Acquired!", - "currIncrease": 0, - "model": "Ice Spreader", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Courtyard": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Truth", - "hudmemoText": "Artifact of Truth Acquired!", - "currIncrease": 0, - "model": "Artifact of Truth", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Ruins Entryway": { - "pickups": [], - "doors": {} - }, - "Save Station A": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Save Station B": { - "pickups": [], - "doors": {} - }, - "Save Station C": { - "pickups": [], - "doors": {} - }, - "Save Station D": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Security Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Shoreline Entrance": { - "pickups": [], - "doors": {} - }, - "South Quarantine Tunnel": { - "pickups": [], - "doors": {} - }, - "Specimen Storage": { - "pickups": [], - "doors": {} - }, - "Storage Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Thermal Visor", - "hudmemoText": "Thermal Visor Acquired!", - "currIncrease": 0, - "model": "Thermal Visor", - "showIcon": true - } - ], - "doors": {} - }, - "Temple Entryway": { - "pickups": [], - "doors": {} - }, - "Transport Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Wavebuster", - "hudmemoText": "Wavebuster Acquired!", - "currIncrease": 0, - "model": "Wavebuster", - "showIcon": true - } - ], - "doors": {} - }, - "Transport to Magmoor Caverns South": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns West": { - "pickups": [], - "doors": {} - }, - "Upper Edge Tunnel": { - "pickups": [], - "doors": {} - }, - "West Tower Entrance": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "West Tower": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - } - } - }, - "Phazon Mines": { - "transports": { - "Phazon Mines East (Main Quarry)": "Tallon Overworld South (Great Tree Hall, Lower)", - "Phazon Mines West (Phazon Processing Center)": "Magmoor Caverns South (Magmoor Workstation, Debris)" - }, - "rooms": { - "Central Dynamo": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Dynamo Access": { - "pickups": [], - "doors": {} - }, - "Elevator A": { - "pickups": [], - "doors": {} - }, - "Elevator Access A": { - "pickups": [], - "doors": {} - }, - "Elevator Access B": { - "pickups": [], - "doors": {} - }, - "Elevator B": { - "pickups": [], - "doors": {} - }, - "Elite Control Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Phazon Suit", - "hudmemoText": "Phazon Suit Acquired!", - "currIncrease": 0, - "model": "Phazon Suit", - "showIcon": true - } - ], - "doors": {} - }, - "Elite Control": { - "pickups": [], - "doors": {} - }, - "Elite Quarters Access": { - "pickups": [], - "doors": {} - }, - "Elite Quarters": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Elite Research": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Super Missile", - "hudmemoText": "Super Missile Acquired!", - "currIncrease": 0, - "model": "Super Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Fungal Hall A": { - "pickups": [], - "doors": {} - }, - "Fungal Hall Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Fungal Hall B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Main Quarry": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Maintenance Tunnel": { - "pickups": [], - "doors": {} - }, - "Map Station Mines": { - "pickups": [], - "doors": {} - }, - "Metroid Quarantine A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Metroid Quarantine B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Mine Security Station": { - "pickups": [], - "doors": {} - }, - "Missile Station Mines": { - "pickups": [], - "doors": {} - }, - "Omega Research": { - "pickups": [], - "doors": {} - }, - "Ore Processing": { - "pickups": [], - "doors": {} - }, - "Phazon Mining Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Phazon Processing Center": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Processing Center Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Quarantine Access A": { - "pickups": [], - "doors": {} - }, - "Quarantine Access B": { - "pickups": [], - "doors": {} - }, - "Quarry Access": { - "pickups": [], - "doors": {} - }, - "Research Access": { - "pickups": [], - "doors": {} - }, - "Save Station Mines A": { - "pickups": [], - "doors": {} - }, - "Save Station Mines B": { - "pickups": [], - "doors": {} - }, - "Save Station Mines C": { - "pickups": [], - "doors": {} - }, - "Security Access A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Security Access B": { - "pickups": [], - "doors": {} - }, - "Storage Depot A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Storage Depot B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Transport Access": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns South": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld South": { - "pickups": [], - "doors": {} - }, - "Ventilation Shaft": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Waste Disposal": { - "pickups": [], - "doors": {} - } - } - } - } -} \ No newline at end of file diff --git a/worlds/metroidprime/test/test_output/test_output_generates_correctly_with_all_randomized.json b/worlds/metroidprime/test/test_output/test_output_generates_correctly_with_all_randomized.json deleted file mode 100644 index b8547a4af4fd..000000000000 --- a/worlds/metroidprime/test/test_output/test_output_generates_correctly_with_all_randomized.json +++ /dev/null @@ -1,2449 +0,0 @@ -{ - "$schema": "https://randovania.org/randomprime/randomprime.schema.json", - "inputIso": "prime.iso", - "outputIso": "prime_out.iso", - "forceVanillaLayout": false, - "strg": { - "3012146902": [ - "Objective data decoded\n", - "Mission Objectives", - "Current Mission: Retrieve 12 Chozo Artifacts\nDefeat Meta Ridley\nDefeat Metroid Prime" - ], - "1343145632": [ - "[ Log Book ]", - "Pirate Data", - "Chozo Lore", - "Creatures", - "Research", - "Artifacts", - "LOG BOOK", - "OPTIONS", - "INVENTORY", - "[ Inventory ]", - "Arm Cannon", - "Morph Ball", - "Suits", - "Visors", - "Secondary Items", - "[ Options ]", - "Visor", - "Display", - "Sound", - "Controller", - "Quit Game", - "Visor Opacity", - "Helmet Opacity", - "HUD Lag", - "Hint System", - "Screen Brightness", - "Screen Offset X", - "Screen Offset Y", - "Screen Stretch", - "SFX Volume", - "Music Volume", - "Sound Mode", - "Reverse Y-Axis", - "Rumble", - "Swap Beam Controls", - "Restore Defaults", - "Power Beam", - "Ice Beam", - "Wave Beam", - "Plasma Beam", - "Phazon Beam", - "Super Missile", - "Ice Spreader", - "Wavebuster", - "Flamethrower", - "Phazon Combo", - "Morph Ball", - "Boost Ball", - "Spider Ball", - "Morph Ball Bomb", - "Power Bomb", - "Power Suit", - "Varia Suit", - "Gravity Suit", - "Phazon Suit", - "Energy Tank", - "Combat Visor", - "Scan Visor", - "X-Ray Visor", - "Thermal Visor", - "Space Jump Boots", - "Grapple Beam", - "Missile Launcher", - "Charge Beam", - "Beam Combo", - "[??????]\n\n", - "The &main-color=#89D6FF;Combat Visor&main-color=#FF6705B3; is your default Visor. It provides you with a Heads-Up Display (HUD) containing radar, mini-map, lock-on reticules, threat assessment, energy gauge, and Missile count.\n\nPress &image=SA,3.0,0.6,0.85,F13452F8,C042EC91; to select the Combat Visor.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nIcons for the Arm Cannons you possess are shown in the lower-right corner of the Combat Visor.\n\nIcons for the Visors you possess are shown in the lower-left corner of the Combat Visor.\n\n", - "The &main-color=#89D6FF;Scan Visor&main-color=#FF6705B3; is used to collect data. Some devices will activate when scanned.\n\nPress &image=SA,3.0,0.6,0.85,F13452F8,B306E26F; to select the Scan Visor. Move the Visor over targets with this symbol &image=SI,0.70,0.68,FD41E145;, then press and hold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; to scan. \n\nUse &image=SI,0.6,0.85,F13452F8; to select another available Visor or press &image=SI,0.70,0.68,05AF9CAA; to turn the Visor off.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nMission-critical scan targets &image=SI,0.70,0.68,BCE843F2; will be red in color. \n\nScanning enemies with this Visor can reveal their vulnerabilities.\n\nYou will be unable to fire any weapons while the Scan Visor is active.\n\nScanned data vital to the success of the mission is downloaded and stored in the &main-color=#89D6FF;Log Book&main-color=#FF6705B3; section of the Pause Screen. \n\nPress &image=A,3.0,08A2E4B9,F2425B21; on this screen to access the Log Book.\n", - "The &main-color=#89D6FF;X-Ray Visor&main-color=#FF6705B3; can see through certain types of materials. \n\nPress &image=SA,3.0,0.6,0.85,F13452F8,8ADA8184; to select the X-Ray Visor.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe X-Ray Visor can reveal invisible items, areas, and enemies.\n\nRobotic enemies jam the X-Ray Visor's frequency. Eliminate them to restore function to the Visor.\n", - "The &main-color=#89D6FF;Thermal Visor&main-color=#FF6705B3; allows you to see in the infrared spectrum. Hot objects are bright in the Visor, while colder ones are dim.\n\nPress &image=SA,3.0,0.6,0.85,F13452F8,5F556002; to select the Thermal Visor.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Thermal Visor will show the weak points of certain foes.\n\nUse the Thermal Visor to see in total darkness and poor weather conditions. \n\nBrightly lit areas, explosions, and intense heat can impair the Thermal Visor.\n\nEnemies with temperatures close to their surroundings will be tough to spot with this Visor.\n", - "The &main-color=#89D6FF;Power Beam&main-color=#FF6705B3; is the default Arm Cannon. It has the best rate of fire.\n\nPress &image=SA,3.0,0.6,0.85,2A13C23E,A91A7703; to select the Power Beam as your active weapon.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Power Beam can be used to open Blue Doors.\n\nIf you see your shots ricochet, cease fire. The Power Beam is not working against that target.\n\nYou can use the Power Beam to quickly clear an area of weak foes.\n", - "\nThe &main-color=#89D6FF;Super Missile&main-color=#FF6705B3; is the &main-color=#89D6FF;Power&main-color=#FF6705B3; Charge Combo.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nSuper Missile is a Single Shot Charge Combo. Each shot costs 5 Missiles.\n\nSuper Missiles can destroy objects made of &main-color=#89D6FF;Cordite&main-color=#FF6705B3;.\n", - "The &main-color=#89D6FF;Ice Beam&main-color=#FF6705B3; can freeze enemies solid. Hits from the Ice Beam may also slow foes down. \n\nPress &image=SA,3.0,0.6,0.85,2A13C23E,12A12131; to select the Ice Beam as your active weapon.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nUse the Ice Beam to open White Doors.\n\nThe Ice Beam is quite effective against fire-based creatures.\n\nCharge the Ice Beam to increase the time an enemy will stay frozen when hit.\n\nSome frozen enemies can be shattered by Missile hits.\n", - "\nThe &main-color=#89D6FF;Ice Spreader&main-color=#FF6705B3; is the &main-color=#89D6FF;Ice&main-color=#FF6705B3; Charge Combo. It can freeze targets in a wide area.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nIce Spreader is a Single Shot Charge Combo. Each shot costs 10 Missiles.\n\nIce Spreader is limited against aerial targets.\n", - "The&main-color=#89D6FF; Wave Beam&main-color=#FF6705B3; fires powerful electric bolts. This weapon has a limited homing capability as well.\n\nPress &image=SA,3.0,0.6,0.85,2A13C23E,CD7B1ACA; to select the Wave Beam as your active weapon.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFire the Wave Beam to open Purple Doors.\n\nThe Wave Beam won't home in on targets without a lock-on. Press and hold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; to lock on.\n\nCharge the Wave Beam to fire a fierce electric blast. Enemies struck by this blast will be enveloped in electrical energy for a few moments.\n", - "\nThe &main-color=#89D6FF;Wavebuster&main-color=#FF6705B3; is the &main-color=#89D6FF;Wave&main-color=#FF6705B3; Charge Combo. This potent blast auto-seeks targets in the area.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Wavebuster is a Sustained Fire Charge Combo. It costs 10 Missiles to activate, then 5 Missiles per second afterward.\n\nThe Wavebuster will seek enemies without a lock-on.\n\n\n\n\n\n\n\n\n\n\n", - "The&main-color=#89D6FF; Plasma Beam&main-color=#FF6705B3; fires streams of molten energy. This Beam can ignite flammable objects and enemies.\n\nPress &image=SA,3.0,0.6,0.85,A9798329,2A13C23E; to select the Plasma Beam as your active weapon.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFire the Plasma Beam to open Red Doors.\n\nThe Plasma Beam is very effective against cold-based enemies.\n\nCharge the Plasma Beam to fire a sphere of plasma. Enemies struck by this blast will be engulfed in flames for a few moments.\n", - "\nThe &main-color=#89D6FF;Flamethrower&main-color=#FF6705B3; is the &main-color=#89D6FF;Plasma&main-color=#FF6705B3; Charge Combo. You can sweep its stream of flame across multiple targets.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFlamethrower is a Sustained Fire Charge Combo. It costs 10 Missiles to activate, then 5 Missiles per second afterward.\n\nThe Flamethrower is most effective against multiple targets in an area.\n", - "The viral corruption of the Power Suit has altered the Arm Cannon as well. It is now capable of firing the powerful&main-color=#89D6FF; Phazon Beam&main-color=#FF6705B3;.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Phazon Beam appears to trigger in the presence of high concentrations of Phazon.\n\nRegular Arm Cannon functions return when Phazon is not present.\n\nThe Charge Beam does not function when the Phazon Beam is active.\n", - "The &main-color=#89D6FF;Space Jump Boots&main-color=#FF6705B3; increase the leaping capability of the Power Suit through the use of boot-mounted thrusters. \n\nPress &image=SI,0.70,0.68,833BEE04; to jump, then press &image=SI,0.70,0.68,833BEE04; again during the jump to use the Space Jump Boots.\n\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nTiming is important when using the Space Jump Boots. \n\nExperiment to discover ways to increase the height and length of your jumps.\n", - "The &main-color=#89D6FF;Grapple Beam&main-color=#FF6705B3; allows you to swing back and forth from special points in the environment. \n\nGrapple Points appear in your Visor as a &image=SI,0.70,0.68,2702E5E0; icon. \n\nPress and hold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; to fire the Grapple Beam. \n\nHold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; down to stay connected; let go to release.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Grapple Beam can be used to cross large gaps.\n\nUse the &image=SA,7.0,0.6,1.0,C6C483AC,4050F102,8B0C22A7,4050F102,3A446C61,BCD01ECF,778CCD6A,BCD01ECF; while grappling to swing in different directions.\n", - "The &main-color=#89D6FF;Missile Launcher&main-color=#FF6705B3; adds ballistic weapon capability to the Arm Cannon.\n\nPress &image=SI,1.0,0.68,EA2A1C5C; to fire the Missile Launcher. Press &image=SI,0.70,0.68,05AF9CAA; to return to Beam mode.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nMissiles fired with a lock-on will seek their targets.\n\nMissiles can destroy objects made from &main-color=#89D6FF;Radion&main-color=#FF6705B3; or &main-color=#89D6FF;Brinstone&main-color=#FF6705B3;.\n\nThere are Charge Combo enhancements scattered throughout the environment. They use the Missile Launcher and the Charge Beam in tandem to fire more effective blasts.\n\nEach Missile Expansion you find will increase the number of Missiles you can carry by 5.\n", - "The &main-color=#89D6FF;Power Suit&main-color=#FF6705B3; is an advanced Chozo exoskeleton modified for use by Samus Aran. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Power Suit provides life-support functions and is well shielded from attack. \n \nThe modular nature of the Power Suit allows for the addition of weapons, Visors, and other gear as needed.\n\nThe Power Suit's shielding loses energy with each hit; collect energy when possible to keep the shielding charged.\n", - "The &main-color=#89D6FF;Varia Suit&main-color=#FF6705B3; adds increased heat resistance to the Power Suit.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThis modification increases your defensive shielding.\n\nWhile the Varia Suit can handle higher temperatures than normal, extreme heat sources and heat-based attacks will still cause damage.", - "The &main-color=#89D6FF;Gravity Suit&main-color=#FF6705B3; eliminates the effects of liquid on movement.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThis modification improves your defensive shielding.\n\nThe Gravity Suit allows for improved movement in liquid environments, but does not reduce damage delivered when exposed to hazardous fluids.\n\nVisor modifications in the Gravity Suit make it easier to see underwater.", - "The Power Suit has been corrupted by viral exposure, turning it into the &main-color=#89D6FF;Phazon Suit&main-color=#FF6705B3;. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe viral corruption of the Power Suit has some beneficial side effects. \n\nThe suit is now resistant to the effects of Blue Phazon. The suit is not invulnerable to the effects of all Phazon, however.\n\nIn addition to Phazon resistance, the corruption has dramatically increased defensive shielding levels.", - "The &main-color=#89D6FF;Energy Tanks&main-color=#FF6705B3; increase the power level available to your Suit's defense screens.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nEach Energy Tank increases your Suit's energy by 100 units. The more energy your Suit has, the longer you can stay alive.\n\nYou can fully recharge your Energy Tanks at Save Stations. Your gunship has this capability as well.", - "The &main-color=#89D6FF;Morph Ball&main-color=#FF6705B3; changes your Suit into a compact, mobile sphere. \n\nPress &image=SI,0.70,1.0,2176CFF9; to enter Morph Ball mode.\n\nPress &image=SI,0.70,1.0,2176CFF9; again to leave Morph Ball mode.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nLike the Power Suit, the Morph Ball is modular. There are several modifications that can be added to improve performance.", - "The &main-color=#89D6FF;Boost Ball&main-color=#FF6705B3; can be used to increase the Morph Ball's speed for short periods.\n\nPress and hold &image=SI,0.70,0.68,833BEE04; to charge, then release &image=SI,0.70,0.68,833BEE04; to trigger a quick boost of speed.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nWhen charging, the longer you hold &image=SI,0.70,0.68,833BEE04;, the longer (and faster) the Boost Charge will be.\n\nThroughout the environment you will encounter U-shaped channels known as half-pipes. Using the Boost Ball in these areas will let you reach higher places. \n\nBuild a charge as you descend in the half-pipe, then trigger the Boost as you ascend the other side. This will give you the speed and momentum you need to reach new heights.\n", - "The &main-color=#89D6FF;Spider Ball&main-color=#FF6705B3; allows you to move the Morph Ball along magnetic rails.\n\nPress and hold &image=A,3.0,08A2E4B9,F2425B21; to activate the Spider Ball ability.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFollow the magnetic rails to explore new areas.\n\nThe Morph Ball Bomb can be used to trigger a Bomb Jump while attached to a rail.\n\n\n", - "The &main-color=#89D6FF;Morph Ball Bomb&main-color=#FF6705B3; is the default weapon for the Morph Ball.\n\nPress &image=SI,0.70,0.68,05AF9CAA; when in Morph Ball mode to drop a Morph Ball Bomb. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Morph Ball Bomb can be used to break cracked walls and activate certain devices.\n\nIf the Morph Ball is near a Morph Ball Bomb when it explodes, it will be popped a short distance into the air. This is called a&main-color=#89D6FF; Bomb Jump&main-color=#FF6705B3;. \n\nWhen a Morph Ball Bomb explodes, it must be close to the enemy to be effective.\n\nThe Morph Ball Bomb can easily break items made of&main-color=#89D6FF; Sandstone&main-color=#FF6705B3; or&main-color=#89D6FF; Talloric Alloy&main-color=#FF6705B3;.\n", - "The &main-color=#89D6FF;Power Bomb&main-color=#FF6705B3; is the strongest Morph Ball weapon.\n\nPress &image=SI,1.0,0.68,EA2A1C5C; when in Morph Ball mode to drop a Power Bomb. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nPower Bombs do not have unlimited ammo. Use them wisely.\n\nThe Power Bomb can destroy many materials, including &main-color=#89D6FF;Bendezium&main-color=#FF6705B3;.\n\nEach Power Bomb Expansion you find will increase the number of Power Bombs you can carry by 1.\n", - "The &main-color=#89D6FF;Charge Beam&main-color=#FF6705B3; allows you to increase the damage and effectiveness of the Arm Cannon.\n\nPress and hold &image=SI,0.70,0.68,05AF9CAA; to charge the Arm Cannon, then release &image=SI,0.70,0.68,05AF9CAA; to fire.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Charge Beam has a limited 'tractor beam' capacity. Use it to pull small objects to you.\n\nThere are Charge Combo enhancements scattered through the environment. They use the Charge Beam and the Missile Launcher in tandem to fire more effective blasts.\n\nThe Charge Beam increases the performance of each Arm Cannon mode.\n", - "The &main-color=#89D6FF;Charge Combos&main-color=#FF6705B3; allow you to fire the Missile Launcher and Arm Cannon together. The combined attacks are stronger than normal blasts.\n\nThe Arm Cannon must be charged to use a Charge Combo.\n\nWhen your Arm Cannon is charged, press &image=SI,1.0,0.68,EA2A1C5C; to fire the Charge Combo.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe &main-color=#89D6FF;Single Shot&main-color=#FF6705B3; Charge Combos fire one blast at a time. Each shot uses a number of Missiles.\n\n&main-color=#89D6FF;Sustained Fire&main-color=#FF6705B3; Charge Combos will fire as long as you have Missiles. Hold &image=SI,0.70,0.68,05AF9CAA; down after you fire. It takes ten Missiles to trigger these Charge Combos, then five Missiles per second afterward.\n\nPage down for information on the individual Charge Combos. \n\nThis data will download to the Log Book after each Charge Combo is acquired. \n\n\n\n\n\n\n\n\n\n", - "On", - "Off", - "Mono", - "Stereo", - "Dolby", - "Zoom" - ] - }, - "preferences": { - "forceFusion": false, - "cacheDir": "cache", - "qolGeneral": true, - "qolGameBreaking": true, - "qolCosmetic": true, - "qolCutscenes": "Skippable", - "qolPickupScans": true, - "mapDefaultState": "Always", - "artifactHintBehavior": "All", - "skipSplashScreens": false, - "quickplay": false, - "quickpatch": false, - "quiet": false, - "suitColors": { - "gravityDeg": 0, - "phazonDeg": 0, - "powerDeg": 0, - "variaDeg": 0 - } - }, - "tweaks": {}, - "gameConfig": { - "mainMenuMessage": "Archipelago Metroid Prime", - "startingRoom": "Chozo Ruins:Save Station 1", - "springBall": true, - "warpToStart": true, - "multiworldDolPatches": false, - "nonvariaHeatDamage": true, - "staggeredSuitDamage": "Progressive", - "heatDamagePerSec": 10.0, - "poisonDamagePerSec": 0.11, - "phazonDamagePerSec": 0.964, - "phazonDamageModifier": "Default", - "autoEnabledElevators": true, - "skipRidley": false, - "removeHiveMecha": false, - "startingItems": { - "combatVisor": true, - "powerSuit": true, - "powerBeam": true, - "scanVisor": true, - "missiles": 0, - "energyTanks": 0, - "powerBombs": 0, - "wave": false, - "ice": false, - "plasma": false, - "charge": false, - "morphBall": false, - "bombs": false, - "spiderBall": false, - "boostBall": false, - "variaSuit": false, - "gravitySuit": false, - "phazonSuit": false, - "thermalVisor": false, - "xray": false, - "spaceJump": false, - "grapple": false, - "superMissile": false, - "wavebuster": false, - "iceSpreader": false, - "flamethrower": false - }, - "disableItemLoss": true, - "startingVisor": "Combat", - "startingBeam": "Power", - "enableIceTraps": false, - "missileStationPbRefill": true, - "doorOpenMode": "Original", - "etankCapacity": 100, - "itemMaxCapacity": { - "Power Beam": 1, - "Ice Beam": 1, - "Wave Beam": 1, - "Plasma Beam": 1, - "Missile": 999, - "Scan Visor": 1, - "Morph Ball Bomb": 1, - "Power Bomb": 99, - "Flamethrower": 1, - "Thermal Visor": 1, - "Charge Beam": 1, - "Super Missile": 1, - "Grapple Beam": 1, - "X-Ray Visor": 1, - "Ice Spreader": 1, - "Space Jump Boots": 1, - "Morph Ball": 1, - "Combat Visor": 1, - "Boost Ball": 1, - "Spider Ball": 1, - "Power Suit": 1, - "Gravity Suit": 1, - "Varia Suit": 1, - "Phazon Suit": 1, - "Energy Tank": 99, - "Unknown Item 1": 2147483647, - "Health Refill": 2147483647, - "Unknown Item 2": 2147483647, - "Wavebuster": 1, - "Artifact Of Truth": 1, - "Artifact Of Strength": 1, - "Artifact Of Elder": 1, - "Artifact Of Wild": 1, - "Artifact Of Lifegiver": 1, - "Artifact Of Warrior": 1, - "Artifact Of Chozo": 1, - "Artifact Of Nature": 1, - "Artifact Of Sun": 1, - "Artifact Of World": 1, - "Artifact Of Spirit": 1, - "Artifact Of Newborn": 1 - }, - "phazonEliteWithoutDynamo": true, - "mainPlazaDoor": true, - "backwardsLabs": true, - "backwardsFrigate": true, - "backwardsUpperMines": true, - "backwardsLowerMines": false, - "patchPowerConduits": false, - "removeMineSecurityStationLocks": false, - "powerBombArboretumSandstone": false, - "artifactHints": { - "Artifact of Chozo": "The &push;&main-color=#c300ff;Artifact of Chozo&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Shore Tunnel&pop;.", - "Artifact of Nature": "The &push;&main-color=#c300ff;Artifact of Nature&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Tower of Light&pop;.", - "Artifact of Sun": "The &push;&main-color=#c300ff;Artifact of Sun&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Hall of the Elders&pop;.", - "Artifact of World": "The &push;&main-color=#c300ff;Artifact of World&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Ice Ruins East - Behind Ice&pop;.", - "Artifact of Spirit": "The &push;&main-color=#c300ff;Artifact of Spirit&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phazon Mines: Metroid Quarantine B&pop;.", - "Artifact of Newborn": "The &push;&main-color=#c300ff;Artifact of Newborn&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Gravity Chamber - Grapple Ledge&pop;.", - "Artifact of Truth": "The &push;&main-color=#c300ff;Artifact of Truth&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Sunchamber - Ghosts&pop;.", - "Artifact of Strength": "The &push;&main-color=#c300ff;Artifact of Strength&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Watery Hall - Underwater&pop;.", - "Artifact of Elder": "The &push;&main-color=#c300ff;Artifact of Elder&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Plasma Processing&pop;.", - "Artifact of Wild": "The &push;&main-color=#c300ff;Artifact of Wild&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Quarantine Cave&pop;.", - "Artifact of Lifegiver": "The &push;&main-color=#c300ff;Artifact of Lifegiver&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Ruined Gallery - Missile Wall&pop;.", - "Artifact of Warrior": "The &push;&main-color=#c300ff;Artifact of Warrior&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Storage Cavern&pop;." - }, - "requiredArtifactCount": 12 - }, - "levelData": { - "Tallon Overworld": { - "transports": { - "Tallon Overworld North (Tallon Canyon)": "Chozo Ruins West (Main Plaza)", - "Tallon Overworld South (Great Tree Hall, Upper)": "Phendrana Drifts North (Phendrana Shorelines)", - "Tallon Overworld East (Frigate Crash Site)": "Magmoor Caverns North (Lava Lake)", - "Tallon Overworld West (Root Cave)": "Chozo Ruins East (Reflecting Pool, Save Station)", - "Tallon Overworld South (Great Tree Hall, Lower)": "Magmoor Caverns West (Monitor Station)", - "Artifact Temple": "Crater Entry Point" - }, - "rooms": { - "Alcove": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Arbor Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Artifact Temple": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Biohazard Containment": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Canyon Cavern": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Power Bomb" - } - } - }, - "Cargo Freight Lift to Deck Gamma": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Super Missile", - "hudmemoText": "Super Missile Acquired!", - "currIncrease": 0, - "model": "Super Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Frigate Access Tunnel": { - "pickups": [], - "doors": {} - }, - "Frigate Crash Site": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Great Tree Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Charge Beam" - } - } - }, - "Great Tree Hall": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Charge Beam" - }, - "2": { - "shieldType": "Blue", - "blastShieldType": "Power Bomb" - } - } - }, - "Gully": { - "pickups": [], - "doors": {} - }, - "Hydro Access Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "X-Ray Visor", - "hudmemoText": "X-Ray Visor Acquired!", - "currIncrease": 0, - "model": "X-Ray Visor", - "showIcon": true - } - ], - "doors": {} - }, - "Landing Site": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Power Bomb" - } - } - }, - "Life Grove Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Life Grove": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Overgrown Cavern": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Root Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "None" - } - } - }, - "Root Tunnel": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - }, - "1": { - "blastShieldType": "Power Bomb" - } - } - }, - "Tallon Canyon": { - "pickups": [], - "doors": { - "3": { - "blastShieldType": "Power Bomb" - } - } - }, - "Temple Hall": { - "pickups": [], - "doors": {} - }, - "Temple Lobby": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "None" - } - } - }, - "Temple Security Station": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "None" - } - } - }, - "Transport to Chozo Ruins East": { - "pickups": [], - "doors": {} - }, - "Transport to Chozo Ruins South": { - "pickups": [], - "doors": {} - }, - "Transport to Chozo Ruins West": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns East": { - "pickups": [], - "doors": {} - }, - "Transport to Phazon Mines East": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel A": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Transport Tunnel C": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel D": { - "pickups": [], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Power Bomb" - } - } - }, - "Transport Tunnel E": { - "pickups": [], - "doors": {} - }, - "Waterfall Cavern": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "None" - } - } - } - } - }, - "Chozo Ruins": { - "transports": { - "Chozo Ruins West (Main Plaza)": "Tallon Overworld North (Tallon Canyon)", - "Chozo Ruins North (Sun Tower)": "Phazon Mines West (Phazon Processing Center)", - "Chozo Ruins East (Reflecting Pool, Save Station)": "Tallon Overworld West (Root Cave)", - "Chozo Ruins South (Reflecting Pool, Far End)": "Magmoor Caverns South (Magmoor Workstation, Debris)" - }, - "rooms": { - "Antechamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "None" - } - } - }, - "Arboretum Access": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Arboretum": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - }, - "1": { - "blastShieldType": "None" - }, - "2": { - "blastShieldType": "None" - } - } - }, - "Burn Dome Access": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Super Missile" - } - } - }, - "Burn Dome": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Super Missile" - } - } - }, - "Crossway Access South": { - "pickups": [], - "doors": {} - }, - "Crossway Access West": { - "pickups": [], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Missile" - } - } - }, - "Crossway": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - }, - "2": { - "blastShieldType": "None" - } - } - }, - "Dynamo Access": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Dynamo": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Wave Beam", - "hudmemoText": "Wave Beam Acquired!", - "currIncrease": 0, - "model": "Wave Beam", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "East Atrium": { - "pickups": [], - "doors": {} - }, - "East Furnace Access": { - "pickups": [], - "doors": {} - }, - "Elder Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Flamethrower", - "hudmemoText": "Flamethrower Acquired!", - "currIncrease": 0, - "model": "Flamethrower", - "showIcon": true - } - ], - "doors": {} - }, - "Elder Hall Access": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "None" - } - } - }, - "Energy Core Access": { - "pickups": [], - "doors": {} - }, - "Energy Core": { - "pickups": [], - "doors": {} - }, - "Eyon Tunnel": { - "pickups": [], - "doors": {} - }, - "Furnace": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Ice Beam", - "hudmemoText": "Ice Beam Acquired!", - "currIncrease": 0, - "model": "Ice Beam", - "showIcon": true - } - ], - "doors": {} - }, - "Gathering Hall Access": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - }, - "1": { - "blastShieldType": "None" - } - } - }, - "Gathering Hall": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "None" - }, - "2": { - "blastShieldType": "None" - } - } - }, - "Hall of the Elders": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Sun", - "hudmemoText": "Artifact of Sun Acquired!", - "currIncrease": 0, - "model": "Artifact of Sun", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Power Bomb" - } - } - }, - "Hive Totem": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "None" - } - } - }, - "Magma Pool": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Main Plaza": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "2": { - "blastShieldType": "None" - } - } - }, - "Map Station": { - "pickups": [], - "doors": {} - }, - "Meditation Fountain": { - "pickups": [], - "doors": {} - }, - "North Atrium": { - "pickups": [], - "doors": {} - }, - "Nursery Access": { - "pickups": [], - "doors": {} - }, - "Piston Tunnel": { - "pickups": [], - "doors": {} - }, - "Plaza Access": { - "pickups": [], - "doors": {} - }, - "Reflecting Pool Access": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Power Bomb" - } - } - }, - "Reflecting Pool": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - }, - "3": { - "blastShieldType": "None" - } - } - }, - "Ruined Fountain Access": { - "pickups": [], - "doors": {} - }, - "Ruined Fountain": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Space Jump Boots", - "hudmemoText": "Space Jump Boots Acquired!", - "currIncrease": 0, - "model": "Space Jump Boots", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Gallery": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Lifegiver", - "hudmemoText": "Artifact of Lifegiver Acquired!", - "currIncrease": 0, - "model": "Artifact of Lifegiver", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Nursery": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Boost Ball", - "hudmemoText": "Boost Ball Acquired!", - "currIncrease": 0, - "model": "Boost Ball", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Shrine Access": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "None" - } - } - }, - "Ruined Shrine": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Morph Ball", - "hudmemoText": "Morph Ball Acquired!", - "currIncrease": 0, - "model": "Morph Ball", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Spider Ball", - "hudmemoText": "Spider Ball Acquired!", - "currIncrease": 0, - "model": "Spider Ball", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Charge Beam", - "hudmemoText": "Charge Beam Acquired!", - "currIncrease": 0, - "model": "Charge Beam", - "showIcon": true - } - ], - "doors": {} - }, - "Ruins Entrance": { - "pickups": [], - "doors": {} - }, - "Save Station 1": { - "pickups": [], - "doors": {} - }, - "Save Station 2": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Save Station 3": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Sun Tower": { - "pickups": [], - "doors": {} - }, - "Sun Tower Access": { - "pickups": [], - "doors": {} - }, - "Sunchamber Access": { - "pickups": [], - "doors": {} - }, - "Sunchamber Lobby": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "None" - } - } - }, - "Sunchamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Artifact of Truth", - "hudmemoText": "Artifact of Truth Acquired!", - "currIncrease": 0, - "model": "Artifact of Truth", - "showIcon": true - } - ], - "doors": {} - }, - "Totem Access": { - "pickups": [], - "doors": {} - }, - "Tower Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Varia Suit", - "hudmemoText": "Varia Suit Acquired!", - "currIncrease": 0, - "model": "Varia Suit", - "showIcon": true - } - ], - "doors": {} - }, - "Tower of Light Access": { - "pickups": [], - "doors": {} - }, - "Tower of Light": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Nature", - "hudmemoText": "Artifact of Nature Acquired!", - "currIncrease": 0, - "model": "Artifact of Nature", - "showIcon": true - } - ], - "doors": {} - }, - "Training Chamber Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "shieldType": "Blue", - "blastShieldType": "Bomb" - } - } - }, - "Training Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Bomb" - } - } - }, - "Transport Access North": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Transport Access South": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns North": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld East": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld North": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld South": { - "pickups": [], - "doors": {} - }, - "Vault Access": { - "pickups": [], - "doors": {} - }, - "Vault": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Watery Hall Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "None" - } - } - }, - "Watery Hall": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Morph Ball Bomb", - "hudmemoText": "Morph Ball Bomb Acquired!", - "currIncrease": 0, - "model": "Morph Ball Bomb", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Artifact of Strength", - "hudmemoText": "Artifact of Strength Acquired!", - "currIncrease": 0, - "model": "Artifact of Strength", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "None" - }, - "1": { - "blastShieldType": "None" - } - } - }, - "West Furnace Access": { - "pickups": [], - "doors": {} - } - } - }, - "Magmoor Caverns": { - "transports": { - "Magmoor Caverns East (Twin Fires)": "Phendrana Drifts South (Quarantine Cave)", - "Magmoor Caverns North (Lava Lake)": "Tallon Overworld East (Frigate Crash Site)", - "Magmoor Caverns South (Magmoor Workstation, Save Station)": "Phazon Mines East (Main Quarry)", - "Magmoor Caverns South (Magmoor Workstation, Debris)": "Chozo Ruins South (Reflecting Pool, Far End)", - "Magmoor Caverns West (Monitor Station)": "Tallon Overworld South (Great Tree Hall, Lower)" - }, - "rooms": { - "Burning Trail": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Power Bomb" - }, - "2": { - "blastShieldType": "None" - } - } - }, - "Fiery Shores": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Geothermal Core": { - "pickups": [], - "doors": {} - }, - "Lake Tunnel": { - "pickups": [], - "doors": {} - }, - "Lava Lake": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Magmoor Workstation": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Charge Beam" - } - } - }, - "Monitor Station": { - "pickups": [], - "doors": {} - }, - "Monitor Tunnel": { - "pickups": [], - "doors": {} - }, - "North Core Tunnel": { - "pickups": [], - "doors": {} - }, - "Pit Tunnel": { - "pickups": [], - "doors": {} - }, - "Plasma Processing": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Elder", - "hudmemoText": "Artifact of Elder Acquired!", - "currIncrease": 0, - "model": "Artifact of Elder", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue" - } - } - }, - "Save Station Magmoor A": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Save Station Magmoor B": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Shore Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Chozo", - "hudmemoText": "Artifact of Chozo Acquired!", - "currIncrease": 0, - "model": "Artifact of Chozo", - "showIcon": true - } - ], - "doors": {} - }, - "South Core Tunnel": { - "pickups": [], - "doors": {} - }, - "Storage Cavern": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Warrior", - "hudmemoText": "Artifact of Warrior Acquired!", - "currIncrease": 0, - "model": "Artifact of Warrior", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Charge Beam" - } - } - }, - "Transport to Chozo Ruins North": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Power Bomb" - } - } - }, - "Transport to Phazon Mines West": { - "pickups": [], - "doors": {} - }, - "Transport to Phendrana Drifts North": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Power Bomb" - } - } - }, - "Transport to Phendrana Drifts South": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Transport to Tallon Overworld West": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Power Bomb" - } - } - }, - "Transport Tunnel B": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel C": { - "pickups": [], - "doors": {} - }, - "Triclops Pit": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Charge Beam" - } - } - }, - "Twin Fires Tunnel": { - "pickups": [], - "doors": {} - }, - "Twin Fires": { - "pickups": [], - "doors": {} - }, - "Warrior Shrine": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Workstation Tunnel": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Charge Beam" - } - } - } - } - }, - "Phendrana Drifts": { - "transports": { - "Phendrana Drifts South (Quarantine Cave)": "Magmoor Caverns East (Twin Fires)", - "Phendrana Drifts North (Phendrana Shorelines)": "Tallon Overworld South (Great Tree Hall, Upper)" - }, - "rooms": { - "Aether Lab Entryway": { - "pickups": [], - "doors": {} - }, - "Canyon Entryway": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "None" - } - } - }, - "Chamber Access": { - "pickups": [], - "doors": {} - }, - "Chapel of the Elders": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue" - } - } - }, - "Chapel Tunnel": { - "pickups": [], - "doors": {} - }, - "Chozo Ice Temple": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Control Tower": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Courtyard Entryway": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Charge Beam" - } - } - }, - "East Tower": { - "pickups": [], - "doors": {} - }, - "Frost Cave Access": { - "pickups": [], - "doors": {} - }, - "Frost Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Frozen Pike": { - "pickups": [], - "doors": {} - }, - "Gravity Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Grapple Beam", - "hudmemoText": "Grapple Beam Acquired!", - "currIncrease": 0, - "model": "Grapple Beam", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Artifact of Newborn", - "hudmemoText": "Artifact of Newborn Acquired!", - "currIncrease": 0, - "model": "Artifact of Newborn", - "showIcon": true - } - ], - "doors": {} - }, - "Hunter Cave Access": { - "pickups": [], - "doors": {} - }, - "Hunter Cave": { - "pickups": [], - "doors": {} - }, - "Hydra Lab Entryway": { - "pickups": [], - "doors": {} - }, - "Ice Ruins Access": { - "pickups": [], - "doors": {} - }, - "Ice Ruins East": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of World", - "hudmemoText": "Artifact of World Acquired!", - "currIncrease": 0, - "model": "Artifact of World", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Ice Ruins West": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": { - "1": { - "shieldType": "Blue", - "blastShieldType": "Charge Beam" - }, - "2": { - "blastShieldType": "None" - } - } - }, - "Lake Tunnel": { - "pickups": [], - "doors": {} - }, - "Lower Edge Tunnel": { - "pickups": [], - "doors": {} - }, - "Map Station": { - "pickups": [], - "doors": {} - }, - "North Quarantine Tunnel": { - "pickups": [], - "doors": {} - }, - "Observatory Access": { - "pickups": [], - "doors": {} - }, - "Observatory": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "2": { - "blastShieldType": "None" - } - } - }, - "Phendrana Canyon": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Phendrana Shorelines": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "3": { - "blastShieldType": "Super Missile" - }, - "4": { - "blastShieldType": "Bomb" - } - } - }, - "Phendrana's Edge": { - "pickups": [], - "doors": {} - }, - "Pike Access": { - "pickups": [], - "doors": { - "1": { - "shieldType": "Blue", - "blastShieldType": "Missile" - } - } - }, - "Plaza Walkway": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Bomb" - } - } - }, - "Quarantine Access": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Super Missile" - } - } - }, - "Quarantine Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Wild", - "hudmemoText": "Artifact of Wild Acquired!", - "currIncrease": 0, - "model": "Artifact of Wild", - "showIcon": true - } - ], - "doors": {} - }, - "Quarantine Monitor": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Research Core Access": { - "pickups": [], - "doors": {} - }, - "Research Core": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Missile" - } - } - }, - "Research Entrance": { - "pickups": [], - "doors": {} - }, - "Research Lab Aether": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Research Lab Hydra": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Ice Spreader", - "hudmemoText": "Ice Spreader Acquired!", - "currIncrease": 0, - "model": "Ice Spreader", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Courtyard": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Plasma Beam", - "hudmemoText": "Plasma Beam Acquired!", - "currIncrease": 0, - "model": "Plasma Beam", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "None" - }, - "3": { - "blastShieldType": "Super Missile" - } - } - }, - "Ruins Entryway": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Super Missile" - } - } - }, - "Save Station A": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Save Station B": { - "pickups": [], - "doors": {} - }, - "Save Station C": { - "pickups": [], - "doors": {} - }, - "Save Station D": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "Security Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Shoreline Entrance": { - "pickups": [], - "doors": {} - }, - "South Quarantine Tunnel": { - "pickups": [], - "doors": {} - }, - "Specimen Storage": { - "pickups": [], - "doors": {} - }, - "Storage Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Thermal Visor", - "hudmemoText": "Thermal Visor Acquired!", - "currIncrease": 0, - "model": "Thermal Visor", - "showIcon": true - } - ], - "doors": {} - }, - "Temple Entryway": { - "pickups": [], - "doors": {} - }, - "Transport Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Transport to Magmoor Caverns South": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns West": { - "pickups": [], - "doors": {} - }, - "Upper Edge Tunnel": { - "pickups": [], - "doors": {} - }, - "West Tower Entrance": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - }, - "West Tower": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "None" - } - } - } - } - }, - "Phazon Mines": { - "transports": { - "Phazon Mines West (Phazon Processing Center)": "Chozo Ruins North (Sun Tower)", - "Phazon Mines East (Main Quarry)": "Magmoor Caverns South (Magmoor Workstation, Save Station)" - }, - "rooms": { - "Central Dynamo": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Dynamo Access": { - "pickups": [], - "doors": {} - }, - "Elevator A": { - "pickups": [], - "doors": {} - }, - "Elevator Access A": { - "pickups": [], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Charge Beam" - } - } - }, - "Elevator Access B": { - "pickups": [], - "doors": {} - }, - "Elevator B": { - "pickups": [], - "doors": {} - }, - "Elite Control Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Phazon Suit", - "hudmemoText": "Phazon Suit Acquired!", - "currIncrease": 0, - "model": "Phazon Suit", - "showIcon": true - } - ], - "doors": { - "1": { - "shieldType": "Blue", - "blastShieldType": "Power Bomb" - } - } - }, - "Elite Control": { - "pickups": [], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Super Missile" - }, - "1": { - "shieldType": "Blue", - "blastShieldType": "Power Bomb" - } - } - }, - "Elite Quarters Access": { - "pickups": [], - "doors": {} - }, - "Elite Quarters": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Elite Research": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Gravity Suit", - "hudmemoText": "Gravity Suit Acquired!", - "currIncrease": 0, - "model": "Gravity Suit", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Wavebuster", - "hudmemoText": "Wavebuster Acquired!", - "currIncrease": 0, - "model": "Wavebuster", - "showIcon": true - } - ], - "doors": {} - }, - "Fungal Hall A": { - "pickups": [], - "doors": {} - }, - "Fungal Hall Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Fungal Hall B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Main Quarry": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Super Missile" - } - } - }, - "Maintenance Tunnel": { - "pickups": [], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Super Missile" - }, - "1": { - "shieldType": "Blue", - "blastShieldType": "Missile" - } - } - }, - "Map Station Mines": { - "pickups": [], - "doors": {} - }, - "Metroid Quarantine A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Metroid Quarantine B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Spirit", - "hudmemoText": "Artifact of Spirit Acquired!", - "currIncrease": 0, - "model": "Artifact of Spirit", - "showIcon": true - } - ], - "doors": {} - }, - "Mine Security Station": { - "pickups": [], - "doors": {} - }, - "Missile Station Mines": { - "pickups": [], - "doors": {} - }, - "Omega Research": { - "pickups": [], - "doors": {} - }, - "Ore Processing": { - "pickups": [], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Super Missile" - }, - "3": { - "shieldType": "Blue", - "blastShieldType": "Charge Beam" - } - } - }, - "Phazon Mining Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Phazon Processing Center": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "shieldType": "Blue", - "blastShieldType": "Missile" - } - } - }, - "Processing Center Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Quarantine Access A": { - "pickups": [], - "doors": {} - }, - "Quarantine Access B": { - "pickups": [], - "doors": {} - }, - "Quarry Access": { - "pickups": [], - "doors": {} - }, - "Research Access": { - "pickups": [], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Super Missile" - } - } - }, - "Save Station Mines A": { - "pickups": [], - "doors": {} - }, - "Save Station Mines B": { - "pickups": [], - "doors": {} - }, - "Save Station Mines C": { - "pickups": [], - "doors": {} - }, - "Security Access A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Security Access B": { - "pickups": [], - "doors": {} - }, - "Storage Depot A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Storage Depot B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Transport Access": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns South": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld South": { - "pickups": [], - "doors": {} - }, - "Ventilation Shaft": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Waste Disposal": { - "pickups": [], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Super Missile" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/worlds/metroidprime/test/test_output/test_output_generates_correctly_with_main_pb_and_missile_launcher.json b/worlds/metroidprime/test/test_output/test_output_generates_correctly_with_main_pb_and_missile_launcher.json deleted file mode 100644 index 082fe9e01ecc..000000000000 --- a/worlds/metroidprime/test/test_output/test_output_generates_correctly_with_main_pb_and_missile_launcher.json +++ /dev/null @@ -1,2255 +0,0 @@ -{ - "$schema": "https://randovania.org/randomprime/randomprime.schema.json", - "inputIso": "prime.iso", - "outputIso": "prime_out.iso", - "forceVanillaLayout": false, - "strg": { - "3012146902": [ - "Objective data decoded\n", - "Mission Objectives", - "Current Mission: Retrieve 12 Chozo Artifacts\nDefeat Meta Ridley\nDefeat Metroid Prime" - ], - "1343145632": [ - "[ Log Book ]", - "Pirate Data", - "Chozo Lore", - "Creatures", - "Research", - "Artifacts", - "LOG BOOK", - "OPTIONS", - "INVENTORY", - "[ Inventory ]", - "Arm Cannon", - "Morph Ball", - "Suits", - "Visors", - "Secondary Items", - "[ Options ]", - "Visor", - "Display", - "Sound", - "Controller", - "Quit Game", - "Visor Opacity", - "Helmet Opacity", - "HUD Lag", - "Hint System", - "Screen Brightness", - "Screen Offset X", - "Screen Offset Y", - "Screen Stretch", - "SFX Volume", - "Music Volume", - "Sound Mode", - "Reverse Y-Axis", - "Rumble", - "Swap Beam Controls", - "Restore Defaults", - "Power Beam", - "Ice Beam", - "Wave Beam", - "Plasma Beam", - "Phazon Beam", - "Super Missile", - "Ice Spreader", - "Wavebuster", - "Flamethrower", - "Phazon Combo", - "Morph Ball", - "Boost Ball", - "Spider Ball", - "Morph Ball Bomb", - "Power Bomb", - "Power Suit", - "Varia Suit", - "Gravity Suit", - "Phazon Suit", - "Energy Tank", - "Combat Visor", - "Scan Visor", - "X-Ray Visor", - "Thermal Visor", - "Space Jump Boots", - "Grapple Beam", - "Missile Launcher", - "Charge Beam", - "Beam Combo", - "[??????]\n\n", - "The &main-color=#89D6FF;Combat Visor&main-color=#FF6705B3; is your default Visor. It provides you with a Heads-Up Display (HUD) containing radar, mini-map, lock-on reticules, threat assessment, energy gauge, and Missile count.\n\nPress &image=SA,3.0,0.6,0.85,F13452F8,C042EC91; to select the Combat Visor.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nIcons for the Arm Cannons you possess are shown in the lower-right corner of the Combat Visor.\n\nIcons for the Visors you possess are shown in the lower-left corner of the Combat Visor.\n\n", - "The &main-color=#89D6FF;Scan Visor&main-color=#FF6705B3; is used to collect data. Some devices will activate when scanned.\n\nPress &image=SA,3.0,0.6,0.85,F13452F8,B306E26F; to select the Scan Visor. Move the Visor over targets with this symbol &image=SI,0.70,0.68,FD41E145;, then press and hold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; to scan. \n\nUse &image=SI,0.6,0.85,F13452F8; to select another available Visor or press &image=SI,0.70,0.68,05AF9CAA; to turn the Visor off.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nMission-critical scan targets &image=SI,0.70,0.68,BCE843F2; will be red in color. \n\nScanning enemies with this Visor can reveal their vulnerabilities.\n\nYou will be unable to fire any weapons while the Scan Visor is active.\n\nScanned data vital to the success of the mission is downloaded and stored in the &main-color=#89D6FF;Log Book&main-color=#FF6705B3; section of the Pause Screen. \n\nPress &image=A,3.0,08A2E4B9,F2425B21; on this screen to access the Log Book.\n", - "The &main-color=#89D6FF;X-Ray Visor&main-color=#FF6705B3; can see through certain types of materials. \n\nPress &image=SA,3.0,0.6,0.85,F13452F8,8ADA8184; to select the X-Ray Visor.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe X-Ray Visor can reveal invisible items, areas, and enemies.\n\nRobotic enemies jam the X-Ray Visor's frequency. Eliminate them to restore function to the Visor.\n", - "The &main-color=#89D6FF;Thermal Visor&main-color=#FF6705B3; allows you to see in the infrared spectrum. Hot objects are bright in the Visor, while colder ones are dim.\n\nPress &image=SA,3.0,0.6,0.85,F13452F8,5F556002; to select the Thermal Visor.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Thermal Visor will show the weak points of certain foes.\n\nUse the Thermal Visor to see in total darkness and poor weather conditions. \n\nBrightly lit areas, explosions, and intense heat can impair the Thermal Visor.\n\nEnemies with temperatures close to their surroundings will be tough to spot with this Visor.\n", - "The &main-color=#89D6FF;Power Beam&main-color=#FF6705B3; is the default Arm Cannon. It has the best rate of fire.\n\nPress &image=SA,3.0,0.6,0.85,2A13C23E,A91A7703; to select the Power Beam as your active weapon.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Power Beam can be used to open Blue Doors.\n\nIf you see your shots ricochet, cease fire. The Power Beam is not working against that target.\n\nYou can use the Power Beam to quickly clear an area of weak foes.\n", - "\nThe &main-color=#89D6FF;Super Missile&main-color=#FF6705B3; is the &main-color=#89D6FF;Power&main-color=#FF6705B3; Charge Combo.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nSuper Missile is a Single Shot Charge Combo. Each shot costs 5 Missiles.\n\nSuper Missiles can destroy objects made of &main-color=#89D6FF;Cordite&main-color=#FF6705B3;.\n", - "The &main-color=#89D6FF;Ice Beam&main-color=#FF6705B3; can freeze enemies solid. Hits from the Ice Beam may also slow foes down. \n\nPress &image=SA,3.0,0.6,0.85,2A13C23E,12A12131; to select the Ice Beam as your active weapon.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nUse the Ice Beam to open White Doors.\n\nThe Ice Beam is quite effective against fire-based creatures.\n\nCharge the Ice Beam to increase the time an enemy will stay frozen when hit.\n\nSome frozen enemies can be shattered by Missile hits.\n", - "\nThe &main-color=#89D6FF;Ice Spreader&main-color=#FF6705B3; is the &main-color=#89D6FF;Ice&main-color=#FF6705B3; Charge Combo. It can freeze targets in a wide area.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nIce Spreader is a Single Shot Charge Combo. Each shot costs 10 Missiles.\n\nIce Spreader is limited against aerial targets.\n", - "The&main-color=#89D6FF; Wave Beam&main-color=#FF6705B3; fires powerful electric bolts. This weapon has a limited homing capability as well.\n\nPress &image=SA,3.0,0.6,0.85,2A13C23E,CD7B1ACA; to select the Wave Beam as your active weapon.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFire the Wave Beam to open Purple Doors.\n\nThe Wave Beam won't home in on targets without a lock-on. Press and hold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; to lock on.\n\nCharge the Wave Beam to fire a fierce electric blast. Enemies struck by this blast will be enveloped in electrical energy for a few moments.\n", - "\nThe &main-color=#89D6FF;Wavebuster&main-color=#FF6705B3; is the &main-color=#89D6FF;Wave&main-color=#FF6705B3; Charge Combo. This potent blast auto-seeks targets in the area.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Wavebuster is a Sustained Fire Charge Combo. It costs 10 Missiles to activate, then 5 Missiles per second afterward.\n\nThe Wavebuster will seek enemies without a lock-on.\n\n\n\n\n\n\n\n\n\n\n", - "The&main-color=#89D6FF; Plasma Beam&main-color=#FF6705B3; fires streams of molten energy. This Beam can ignite flammable objects and enemies.\n\nPress &image=SA,3.0,0.6,0.85,A9798329,2A13C23E; to select the Plasma Beam as your active weapon.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFire the Plasma Beam to open Red Doors.\n\nThe Plasma Beam is very effective against cold-based enemies.\n\nCharge the Plasma Beam to fire a sphere of plasma. Enemies struck by this blast will be engulfed in flames for a few moments.\n", - "\nThe &main-color=#89D6FF;Flamethrower&main-color=#FF6705B3; is the &main-color=#89D6FF;Plasma&main-color=#FF6705B3; Charge Combo. You can sweep its stream of flame across multiple targets.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFlamethrower is a Sustained Fire Charge Combo. It costs 10 Missiles to activate, then 5 Missiles per second afterward.\n\nThe Flamethrower is most effective against multiple targets in an area.\n", - "The viral corruption of the Power Suit has altered the Arm Cannon as well. It is now capable of firing the powerful&main-color=#89D6FF; Phazon Beam&main-color=#FF6705B3;.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Phazon Beam appears to trigger in the presence of high concentrations of Phazon.\n\nRegular Arm Cannon functions return when Phazon is not present.\n\nThe Charge Beam does not function when the Phazon Beam is active.\n", - "The &main-color=#89D6FF;Space Jump Boots&main-color=#FF6705B3; increase the leaping capability of the Power Suit through the use of boot-mounted thrusters. \n\nPress &image=SI,0.70,0.68,833BEE04; to jump, then press &image=SI,0.70,0.68,833BEE04; again during the jump to use the Space Jump Boots.\n\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nTiming is important when using the Space Jump Boots. \n\nExperiment to discover ways to increase the height and length of your jumps.\n", - "The &main-color=#89D6FF;Grapple Beam&main-color=#FF6705B3; allows you to swing back and forth from special points in the environment. \n\nGrapple Points appear in your Visor as a &image=SI,0.70,0.68,2702E5E0; icon. \n\nPress and hold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; to fire the Grapple Beam. \n\nHold &image=SA,3.0,1.0,1.0,46434ED3,34E79314; down to stay connected; let go to release.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Grapple Beam can be used to cross large gaps.\n\nUse the &image=SA,7.0,0.6,1.0,C6C483AC,4050F102,8B0C22A7,4050F102,3A446C61,BCD01ECF,778CCD6A,BCD01ECF; while grappling to swing in different directions.\n", - "The &main-color=#89D6FF;Missile Launcher&main-color=#FF6705B3; adds ballistic weapon capability to the Arm Cannon.\n\nPress &image=SI,1.0,0.68,EA2A1C5C; to fire the Missile Launcher. Press &image=SI,0.70,0.68,05AF9CAA; to return to Beam mode.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nMissiles fired with a lock-on will seek their targets.\n\nMissiles can destroy objects made from &main-color=#89D6FF;Radion&main-color=#FF6705B3; or &main-color=#89D6FF;Brinstone&main-color=#FF6705B3;.\n\nThere are Charge Combo enhancements scattered throughout the environment. They use the Missile Launcher and the Charge Beam in tandem to fire more effective blasts.\n\nEach Missile Expansion you find will increase the number of Missiles you can carry by 5.\n", - "The &main-color=#89D6FF;Power Suit&main-color=#FF6705B3; is an advanced Chozo exoskeleton modified for use by Samus Aran. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Power Suit provides life-support functions and is well shielded from attack. \n \nThe modular nature of the Power Suit allows for the addition of weapons, Visors, and other gear as needed.\n\nThe Power Suit's shielding loses energy with each hit; collect energy when possible to keep the shielding charged.\n", - "The &main-color=#89D6FF;Varia Suit&main-color=#FF6705B3; adds increased heat resistance to the Power Suit.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThis modification increases your defensive shielding.\n\nWhile the Varia Suit can handle higher temperatures than normal, extreme heat sources and heat-based attacks will still cause damage.", - "The &main-color=#89D6FF;Gravity Suit&main-color=#FF6705B3; eliminates the effects of liquid on movement.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThis modification improves your defensive shielding.\n\nThe Gravity Suit allows for improved movement in liquid environments, but does not reduce damage delivered when exposed to hazardous fluids.\n\nVisor modifications in the Gravity Suit make it easier to see underwater.", - "The Power Suit has been corrupted by viral exposure, turning it into the &main-color=#89D6FF;Phazon Suit&main-color=#FF6705B3;. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe viral corruption of the Power Suit has some beneficial side effects. \n\nThe suit is now resistant to the effects of Blue Phazon. The suit is not invulnerable to the effects of all Phazon, however.\n\nIn addition to Phazon resistance, the corruption has dramatically increased defensive shielding levels.", - "The &main-color=#89D6FF;Energy Tanks&main-color=#FF6705B3; increase the power level available to your Suit's defense screens.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nEach Energy Tank increases your Suit's energy by 100 units. The more energy your Suit has, the longer you can stay alive.\n\nYou can fully recharge your Energy Tanks at Save Stations. Your gunship has this capability as well.", - "The &main-color=#89D6FF;Morph Ball&main-color=#FF6705B3; changes your Suit into a compact, mobile sphere. \n\nPress &image=SI,0.70,1.0,2176CFF9; to enter Morph Ball mode.\n\nPress &image=SI,0.70,1.0,2176CFF9; again to leave Morph Ball mode.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nLike the Power Suit, the Morph Ball is modular. There are several modifications that can be added to improve performance.", - "The &main-color=#89D6FF;Boost Ball&main-color=#FF6705B3; can be used to increase the Morph Ball's speed for short periods.\n\nPress and hold &image=SI,0.70,0.68,833BEE04; to charge, then release &image=SI,0.70,0.68,833BEE04; to trigger a quick boost of speed.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nWhen charging, the longer you hold &image=SI,0.70,0.68,833BEE04;, the longer (and faster) the Boost Charge will be.\n\nThroughout the environment you will encounter U-shaped channels known as half-pipes. Using the Boost Ball in these areas will let you reach higher places. \n\nBuild a charge as you descend in the half-pipe, then trigger the Boost as you ascend the other side. This will give you the speed and momentum you need to reach new heights.\n", - "The &main-color=#89D6FF;Spider Ball&main-color=#FF6705B3; allows you to move the Morph Ball along magnetic rails.\n\nPress and hold &image=A,3.0,08A2E4B9,F2425B21; to activate the Spider Ball ability.\n \n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nFollow the magnetic rails to explore new areas.\n\nThe Morph Ball Bomb can be used to trigger a Bomb Jump while attached to a rail.\n\n\n", - "The &main-color=#89D6FF;Morph Ball Bomb&main-color=#FF6705B3; is the default weapon for the Morph Ball.\n\nPress &image=SI,0.70,0.68,05AF9CAA; when in Morph Ball mode to drop a Morph Ball Bomb. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Morph Ball Bomb can be used to break cracked walls and activate certain devices.\n\nIf the Morph Ball is near a Morph Ball Bomb when it explodes, it will be popped a short distance into the air. This is called a&main-color=#89D6FF; Bomb Jump&main-color=#FF6705B3;. \n\nWhen a Morph Ball Bomb explodes, it must be close to the enemy to be effective.\n\nThe Morph Ball Bomb can easily break items made of&main-color=#89D6FF; Sandstone&main-color=#FF6705B3; or&main-color=#89D6FF; Talloric Alloy&main-color=#FF6705B3;.\n", - "The &main-color=#89D6FF;Power Bomb&main-color=#FF6705B3; is the strongest Morph Ball weapon.\n\nPress &image=SI,1.0,0.68,EA2A1C5C; when in Morph Ball mode to drop a Power Bomb. \n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nPower Bombs do not have unlimited ammo. Use them wisely.\n\nThe Power Bomb can destroy many materials, including &main-color=#89D6FF;Bendezium&main-color=#FF6705B3;.\n\nEach Power Bomb Expansion you find will increase the number of Power Bombs you can carry by 1.\n", - "The &main-color=#89D6FF;Charge Beam&main-color=#FF6705B3; allows you to increase the damage and effectiveness of the Arm Cannon.\n\nPress and hold &image=SI,0.70,0.68,05AF9CAA; to charge the Arm Cannon, then release &image=SI,0.70,0.68,05AF9CAA; to fire.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe Charge Beam has a limited 'tractor beam' capacity. Use it to pull small objects to you.\n\nThere are Charge Combo enhancements scattered through the environment. They use the Charge Beam and the Missile Launcher in tandem to fire more effective blasts.\n\nThe Charge Beam increases the performance of each Arm Cannon mode.\n", - "The &main-color=#89D6FF;Charge Combos&main-color=#FF6705B3; allow you to fire the Missile Launcher and Arm Cannon together. The combined attacks are stronger than normal blasts.\n\nThe Arm Cannon must be charged to use a Charge Combo.\n\nWhen your Arm Cannon is charged, press &image=SI,1.0,0.68,EA2A1C5C; to fire the Charge Combo.\n\n&main-color=#89D6FF;Samus's Notes:&main-color=#FF6705B3;\nThe &main-color=#89D6FF;Single Shot&main-color=#FF6705B3; Charge Combos fire one blast at a time. Each shot uses a number of Missiles.\n\n&main-color=#89D6FF;Sustained Fire&main-color=#FF6705B3; Charge Combos will fire as long as you have Missiles. Hold &image=SI,0.70,0.68,05AF9CAA; down after you fire. It takes ten Missiles to trigger these Charge Combos, then five Missiles per second afterward.\n\nPage down for information on the individual Charge Combos. \n\nThis data will download to the Log Book after each Charge Combo is acquired. \n\n\n\n\n\n\n\n\n\n", - "On", - "Off", - "Mono", - "Stereo", - "Dolby", - "Zoom" - ] - }, - "preferences": { - "forceFusion": false, - "cacheDir": "cache", - "qolGeneral": true, - "qolGameBreaking": true, - "qolCosmetic": true, - "qolCutscenes": "Skippable", - "qolPickupScans": true, - "mapDefaultState": "Always", - "artifactHintBehavior": "All", - "skipSplashScreens": false, - "quickplay": false, - "quickpatch": false, - "quiet": false, - "suitColors": { - "gravityDeg": 0, - "phazonDeg": 0, - "powerDeg": 0, - "variaDeg": 0 - } - }, - "tweaks": {}, - "gameConfig": { - "mainMenuMessage": "Archipelago Metroid Prime", - "startingRoom": "Tallon Overworld:Landing Site", - "springBall": true, - "warpToStart": true, - "multiworldDolPatches": false, - "nonvariaHeatDamage": true, - "staggeredSuitDamage": "Progressive", - "heatDamagePerSec": 10.0, - "poisonDamagePerSec": 0.11, - "phazonDamagePerSec": 0.964, - "phazonDamageModifier": "Default", - "autoEnabledElevators": true, - "skipRidley": false, - "removeHiveMecha": false, - "startingItems": { - "combatVisor": true, - "powerSuit": true, - "powerBeam": true, - "scanVisor": true, - "missiles": 0, - "energyTanks": 0, - "powerBombs": 0, - "wave": false, - "ice": false, - "plasma": false, - "charge": false, - "morphBall": false, - "bombs": false, - "spiderBall": false, - "boostBall": false, - "variaSuit": false, - "gravitySuit": false, - "phazonSuit": false, - "thermalVisor": false, - "xray": false, - "spaceJump": false, - "grapple": false, - "superMissile": false, - "wavebuster": false, - "iceSpreader": false, - "flamethrower": false - }, - "disableItemLoss": true, - "startingVisor": "Combat", - "startingBeam": "Power", - "enableIceTraps": false, - "missileStationPbRefill": true, - "doorOpenMode": "Original", - "etankCapacity": 100, - "itemMaxCapacity": { - "Power Beam": 1, - "Ice Beam": 1, - "Wave Beam": 1, - "Plasma Beam": 1, - "Missile": 999, - "Scan Visor": 1, - "Morph Ball Bomb": 1, - "Power Bomb": 99, - "Flamethrower": 1, - "Thermal Visor": 1, - "Charge Beam": 1, - "Super Missile": 1, - "Grapple Beam": 1, - "X-Ray Visor": 1, - "Ice Spreader": 1, - "Space Jump Boots": 1, - "Morph Ball": 1, - "Combat Visor": 1, - "Boost Ball": 1, - "Spider Ball": 1, - "Power Suit": 1, - "Gravity Suit": 1, - "Varia Suit": 1, - "Phazon Suit": 1, - "Energy Tank": 99, - "Unknown Item 1": 2147483647, - "Health Refill": 2147483647, - "Unknown Item 2": 2147483647, - "Wavebuster": 1, - "Artifact Of Truth": 1, - "Artifact Of Strength": 1, - "Artifact Of Elder": 1, - "Artifact Of Wild": 1, - "Artifact Of Lifegiver": 1, - "Artifact Of Warrior": 1, - "Artifact Of Chozo": 1, - "Artifact Of Nature": 1, - "Artifact Of Sun": 1, - "Artifact Of World": 1, - "Artifact Of Spirit": 1, - "Artifact Of Newborn": 1 - }, - "phazonEliteWithoutDynamo": true, - "mainPlazaDoor": true, - "backwardsLabs": true, - "backwardsFrigate": true, - "backwardsUpperMines": true, - "backwardsLowerMines": false, - "patchPowerConduits": false, - "removeMineSecurityStationLocks": false, - "powerBombArboretumSandstone": false, - "artifactHints": { - "Artifact of Chozo": "The &push;&main-color=#c300ff;Artifact of Chozo&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Shore Tunnel&pop;.", - "Artifact of Nature": "The &push;&main-color=#c300ff;Artifact of Nature&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Tower of Light&pop;.", - "Artifact of Sun": "The &push;&main-color=#c300ff;Artifact of Sun&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Hall of the Elders&pop;.", - "Artifact of World": "The &push;&main-color=#c300ff;Artifact of World&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Security Cave&pop;.", - "Artifact of Spirit": "The &push;&main-color=#c300ff;Artifact of Spirit&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Tallon Overworld: Landing Site&pop;.", - "Artifact of Newborn": "The &push;&main-color=#c300ff;Artifact of Newborn&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Gravity Chamber - Grapple Ledge&pop;.", - "Artifact of Truth": "The &push;&main-color=#c300ff;Artifact of Truth&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Sunchamber - Ghosts&pop;.", - "Artifact of Strength": "The &push;&main-color=#c300ff;Artifact of Strength&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phazon Mines: Elite Research - Phazon Elite&pop;.", - "Artifact of Elder": "The &push;&main-color=#c300ff;Artifact of Elder&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Plasma Processing&pop;.", - "Artifact of Wild": "The &push;&main-color=#c300ff;Artifact of Wild&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Phendrana Drifts: Quarantine Cave&pop;.", - "Artifact of Lifegiver": "The &push;&main-color=#c300ff;Artifact of Lifegiver&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Chozo Ruins: Ruined Gallery - Missile Wall&pop;.", - "Artifact of Warrior": "The &push;&main-color=#c300ff;Artifact of Warrior&pop; can be found in &push;&main-color=#d4cc33;your&pop; &push;&main-color=#89a1ff;Magmoor Caverns: Storage Cavern&pop;." - }, - "requiredArtifactCount": 12 - }, - "levelData": { - "Tallon Overworld": { - "transports": { - "Tallon Overworld North (Tallon Canyon)": "Chozo Ruins West (Main Plaza)", - "Tallon Overworld West (Root Cave)": "Magmoor Caverns East (Twin Fires)", - "Tallon Overworld East (Frigate Crash Site)": "Chozo Ruins East (Reflecting Pool, Save Station)", - "Tallon Overworld South (Great Tree Hall, Upper)": "Chozo Ruins South (Reflecting Pool, Far End)", - "Tallon Overworld South (Great Tree Hall, Lower)": "Phazon Mines East (Main Quarry)", - "Artifact Temple": "Crater Entry Point" - }, - "rooms": { - "Alcove": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Arbor Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb (Main)", - "hudmemoText": "Power Bomb (Main) Acquired!", - "currIncrease": 0, - "model": "Power Bomb", - "showIcon": true - } - ], - "doors": {} - }, - "Artifact Temple": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Biohazard Containment": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Canyon Cavern": { - "pickups": [], - "doors": {} - }, - "Cargo Freight Lift to Deck Gamma": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Charge Beam", - "hudmemoText": "Charge Beam Acquired!", - "currIncrease": 0, - "model": "Charge Beam", - "showIcon": true - } - ], - "doors": {} - }, - "Frigate Access Tunnel": { - "pickups": [], - "doors": {} - }, - "Frigate Crash Site": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Great Tree Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Great Tree Hall": { - "pickups": [], - "doors": {} - }, - "Gully": { - "pickups": [], - "doors": {} - }, - "Hydro Access Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Landing Site": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Spirit", - "hudmemoText": "Artifact of Spirit Acquired!", - "currIncrease": 0, - "model": "Artifact of Spirit", - "showIcon": true - } - ], - "doors": {} - }, - "Life Grove Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Life Grove": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Overgrown Cavern": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Root Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Root Tunnel": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Tallon Canyon": { - "pickups": [], - "doors": {} - }, - "Temple Hall": { - "pickups": [], - "doors": {} - }, - "Temple Lobby": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Temple Security Station": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Transport to Chozo Ruins East": { - "pickups": [], - "doors": {} - }, - "Transport to Chozo Ruins South": { - "pickups": [], - "doors": {} - }, - "Transport to Chozo Ruins West": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns East": { - "pickups": [], - "doors": {} - }, - "Transport to Phazon Mines East": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel A": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Transport Tunnel C": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel D": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel E": { - "pickups": [], - "doors": {} - }, - "Waterfall Cavern": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - } - } - }, - "Chozo Ruins": { - "transports": { - "Chozo Ruins West (Main Plaza)": "Tallon Overworld North (Tallon Canyon)", - "Chozo Ruins North (Sun Tower)": "Magmoor Caverns North (Lava Lake)", - "Chozo Ruins East (Reflecting Pool, Save Station)": "Tallon Overworld East (Frigate Crash Site)", - "Chozo Ruins South (Reflecting Pool, Far End)": "Tallon Overworld South (Great Tree Hall, Upper)" - }, - "rooms": { - "Antechamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue", - "blastShieldType": "Missile" - } - } - }, - "Arboretum Access": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Arboretum": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - }, - "1": { - "blastShieldType": "Missile" - }, - "2": { - "blastShieldType": "Missile" - } - } - }, - "Burn Dome Access": { - "pickups": [], - "doors": {} - }, - "Burn Dome": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Crossway Access South": { - "pickups": [], - "doors": {} - }, - "Crossway Access West": { - "pickups": [], - "doors": {} - }, - "Crossway": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "2": { - "blastShieldType": "Missile" - } - } - }, - "Dynamo Access": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Dynamo": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Wave Beam", - "hudmemoText": "Wave Beam Acquired!", - "currIncrease": 0, - "model": "Wave Beam", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "East Atrium": { - "pickups": [], - "doors": {} - }, - "East Furnace Access": { - "pickups": [], - "doors": {} - }, - "Elder Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Elder Hall Access": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Energy Core Access": { - "pickups": [], - "doors": {} - }, - "Energy Core": { - "pickups": [], - "doors": {} - }, - "Eyon Tunnel": { - "pickups": [], - "doors": {} - }, - "Furnace": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Gathering Hall Access": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - }, - "1": { - "blastShieldType": "Missile" - } - } - }, - "Gathering Hall": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - }, - "2": { - "blastShieldType": "Missile" - } - } - }, - "Hall of the Elders": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Sun", - "hudmemoText": "Artifact of Sun Acquired!", - "currIncrease": 0, - "model": "Artifact of Sun", - "showIcon": true - } - ], - "doors": {} - }, - "Hive Totem": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Launcher", - "hudmemoText": "Missile Launcher Acquired!", - "currIncrease": 0, - "model": "Shiny Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Magma Pool": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Main Plaza": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "2": { - "blastShieldType": "Missile" - } - } - }, - "Map Station": { - "pickups": [], - "doors": {} - }, - "Meditation Fountain": { - "pickups": [], - "doors": {} - }, - "North Atrium": { - "pickups": [], - "doors": {} - }, - "Nursery Access": { - "pickups": [], - "doors": {} - }, - "Piston Tunnel": { - "pickups": [], - "doors": {} - }, - "Plaza Access": { - "pickups": [], - "doors": {} - }, - "Reflecting Pool Access": { - "pickups": [], - "doors": {} - }, - "Reflecting Pool": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - }, - "3": { - "blastShieldType": "Missile" - } - } - }, - "Ruined Fountain Access": { - "pickups": [], - "doors": {} - }, - "Ruined Fountain": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Space Jump Boots", - "hudmemoText": "Space Jump Boots Acquired!", - "currIncrease": 0, - "model": "Space Jump Boots", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Gallery": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Lifegiver", - "hudmemoText": "Artifact of Lifegiver Acquired!", - "currIncrease": 0, - "model": "Artifact of Lifegiver", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Nursery": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Gravity Suit", - "hudmemoText": "Gravity Suit Acquired!", - "currIncrease": 0, - "model": "Gravity Suit", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Shrine Access": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Ruined Shrine": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Morph Ball", - "hudmemoText": "Morph Ball Acquired!", - "currIncrease": 0, - "model": "Morph Ball", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Spider Ball", - "hudmemoText": "Spider Ball Acquired!", - "currIncrease": 0, - "model": "Spider Ball", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Boost Ball", - "hudmemoText": "Boost Ball Acquired!", - "currIncrease": 0, - "model": "Boost Ball", - "showIcon": true - } - ], - "doors": {} - }, - "Ruins Entrance": { - "pickups": [], - "doors": {} - }, - "Save Station 1": { - "pickups": [], - "doors": {} - }, - "Save Station 2": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Save Station 3": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Sun Tower": { - "pickups": [], - "doors": {} - }, - "Sun Tower Access": { - "pickups": [], - "doors": {} - }, - "Sunchamber Access": { - "pickups": [], - "doors": {} - }, - "Sunchamber Lobby": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Sunchamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Artifact of Truth", - "hudmemoText": "Artifact of Truth Acquired!", - "currIncrease": 0, - "model": "Artifact of Truth", - "showIcon": true - } - ], - "doors": {} - }, - "Totem Access": { - "pickups": [], - "doors": {} - }, - "Tower Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Varia Suit", - "hudmemoText": "Varia Suit Acquired!", - "currIncrease": 0, - "model": "Varia Suit", - "showIcon": true - } - ], - "doors": {} - }, - "Tower of Light Access": { - "pickups": [], - "doors": {} - }, - "Tower of Light": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Nature", - "hudmemoText": "Artifact of Nature Acquired!", - "currIncrease": 0, - "model": "Artifact of Nature", - "showIcon": true - } - ], - "doors": {} - }, - "Training Chamber Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Training Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Transport Access North": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Transport Access South": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns North": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld East": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld North": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld South": { - "pickups": [], - "doors": {} - }, - "Vault Access": { - "pickups": [], - "doors": {} - }, - "Vault": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Watery Hall Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Watery Hall": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Morph Ball Bomb", - "hudmemoText": "Morph Ball Bomb Acquired!", - "currIncrease": 0, - "model": "Morph Ball Bomb", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Super Missile", - "hudmemoText": "Super Missile Acquired!", - "currIncrease": 0, - "model": "Super Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "blastShieldType": "Missile" - }, - "1": { - "blastShieldType": "Missile" - } - } - }, - "West Furnace Access": { - "pickups": [], - "doors": {} - } - } - }, - "Magmoor Caverns": { - "transports": { - "Magmoor Caverns North (Lava Lake)": "Chozo Ruins North (Sun Tower)", - "Magmoor Caverns West (Monitor Station)": "Phendrana Drifts North (Phendrana Shorelines)", - "Magmoor Caverns East (Twin Fires)": "Tallon Overworld West (Root Cave)", - "Magmoor Caverns South (Magmoor Workstation, Save Station)": "Phendrana Drifts South (Quarantine Cave)", - "Magmoor Caverns South (Magmoor Workstation, Debris)": "Phazon Mines West (Phazon Processing Center)" - }, - "rooms": { - "Burning Trail": { - "pickups": [], - "doors": { - "2": { - "blastShieldType": "Missile" - } - } - }, - "Fiery Shores": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Geothermal Core": { - "pickups": [], - "doors": {} - }, - "Lake Tunnel": { - "pickups": [], - "doors": {} - }, - "Lava Lake": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Magmoor Workstation": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Monitor Station": { - "pickups": [], - "doors": {} - }, - "Monitor Tunnel": { - "pickups": [], - "doors": {} - }, - "North Core Tunnel": { - "pickups": [], - "doors": {} - }, - "Pit Tunnel": { - "pickups": [], - "doors": {} - }, - "Plasma Processing": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Elder", - "hudmemoText": "Artifact of Elder Acquired!", - "currIncrease": 0, - "model": "Artifact of Elder", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue" - } - } - }, - "Save Station Magmoor A": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Save Station Magmoor B": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Shore Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Chozo", - "hudmemoText": "Artifact of Chozo Acquired!", - "currIncrease": 0, - "model": "Artifact of Chozo", - "showIcon": true - } - ], - "doors": {} - }, - "South Core Tunnel": { - "pickups": [], - "doors": {} - }, - "Storage Cavern": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Warrior", - "hudmemoText": "Artifact of Warrior Acquired!", - "currIncrease": 0, - "model": "Artifact of Warrior", - "showIcon": true - } - ], - "doors": {} - }, - "Transport to Chozo Ruins North": { - "pickups": [], - "doors": {} - }, - "Transport to Phazon Mines West": { - "pickups": [], - "doors": {} - }, - "Transport to Phendrana Drifts North": { - "pickups": [], - "doors": {} - }, - "Transport to Phendrana Drifts South": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Transport to Tallon Overworld West": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Transport Tunnel B": { - "pickups": [], - "doors": {} - }, - "Transport Tunnel C": { - "pickups": [], - "doors": {} - }, - "Triclops Pit": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Flamethrower", - "hudmemoText": "Flamethrower Acquired!", - "currIncrease": 0, - "model": "Flamethrower", - "showIcon": true - } - ], - "doors": {} - }, - "Twin Fires Tunnel": { - "pickups": [], - "doors": {} - }, - "Twin Fires": { - "pickups": [], - "doors": {} - }, - "Warrior Shrine": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Ice Beam", - "hudmemoText": "Ice Beam Acquired!", - "currIncrease": 0, - "model": "Ice Beam", - "showIcon": true - } - ], - "doors": {} - }, - "Workstation Tunnel": { - "pickups": [], - "doors": {} - } - } - }, - "Phendrana Drifts": { - "transports": { - "Phendrana Drifts North (Phendrana Shorelines)": "Magmoor Caverns West (Monitor Station)", - "Phendrana Drifts South (Quarantine Cave)": "Magmoor Caverns South (Magmoor Workstation, Save Station)" - }, - "rooms": { - "Aether Lab Entryway": { - "pickups": [], - "doors": {} - }, - "Canyon Entryway": { - "pickups": [], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Chamber Access": { - "pickups": [], - "doors": {} - }, - "Chapel of the Elders": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "0": { - "shieldType": "Blue" - } - } - }, - "Chapel Tunnel": { - "pickups": [], - "doors": {} - }, - "Chozo Ice Temple": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Control Tower": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Courtyard Entryway": { - "pickups": [], - "doors": {} - }, - "East Tower": { - "pickups": [], - "doors": {} - }, - "Frost Cave Access": { - "pickups": [], - "doors": {} - }, - "Frost Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Frozen Pike": { - "pickups": [], - "doors": {} - }, - "Gravity Chamber": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Grapple Beam", - "hudmemoText": "Grapple Beam Acquired!", - "currIncrease": 0, - "model": "Grapple Beam", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Artifact of Newborn", - "hudmemoText": "Artifact of Newborn Acquired!", - "currIncrease": 0, - "model": "Artifact of Newborn", - "showIcon": true - } - ], - "doors": {} - }, - "Hunter Cave Access": { - "pickups": [], - "doors": {} - }, - "Hunter Cave": { - "pickups": [], - "doors": {} - }, - "Hydra Lab Entryway": { - "pickups": [], - "doors": {} - }, - "Ice Ruins Access": { - "pickups": [], - "doors": {} - }, - "Ice Ruins East": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "X-Ray Visor", - "hudmemoText": "X-Ray Visor Acquired!", - "currIncrease": 0, - "model": "X-Ray Visor", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Power Bomb Expansion", - "hudmemoText": "Power Bomb Expansion Acquired!", - "currIncrease": 0, - "model": "Power Bomb Expansion", - "showIcon": true - } - ], - "doors": {} - }, - "Ice Ruins West": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": { - "2": { - "blastShieldType": "Missile" - } - } - }, - "Lake Tunnel": { - "pickups": [], - "doors": {} - }, - "Lower Edge Tunnel": { - "pickups": [], - "doors": {} - }, - "Map Station": { - "pickups": [], - "doors": {} - }, - "North Quarantine Tunnel": { - "pickups": [], - "doors": {} - }, - "Observatory Access": { - "pickups": [], - "doors": {} - }, - "Observatory": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": { - "2": { - "blastShieldType": "Missile" - } - } - }, - "Phendrana Canyon": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Phendrana Shorelines": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Phendrana's Edge": { - "pickups": [], - "doors": {} - }, - "Pike Access": { - "pickups": [], - "doors": {} - }, - "Plaza Walkway": { - "pickups": [], - "doors": {} - }, - "Quarantine Access": { - "pickups": [], - "doors": {} - }, - "Quarantine Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Wild", - "hudmemoText": "Artifact of Wild Acquired!", - "currIncrease": 0, - "model": "Artifact of Wild", - "showIcon": true - } - ], - "doors": {} - }, - "Quarantine Monitor": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Research Core Access": { - "pickups": [], - "doors": {} - }, - "Research Core": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Research Entrance": { - "pickups": [], - "doors": {} - }, - "Research Lab Aether": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Research Lab Hydra": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Ice Spreader", - "hudmemoText": "Ice Spreader Acquired!", - "currIncrease": 0, - "model": "Ice Spreader", - "showIcon": true - } - ], - "doors": {} - }, - "Ruined Courtyard": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Plasma Beam", - "hudmemoText": "Plasma Beam Acquired!", - "currIncrease": 0, - "model": "Plasma Beam", - "showIcon": true - } - ], - "doors": { - "1": { - "blastShieldType": "Missile" - } - } - }, - "Ruins Entryway": { - "pickups": [], - "doors": {} - }, - "Save Station A": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Save Station B": { - "pickups": [], - "doors": {} - }, - "Save Station C": { - "pickups": [], - "doors": {} - }, - "Save Station D": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "Security Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of World", - "hudmemoText": "Artifact of World Acquired!", - "currIncrease": 0, - "model": "Artifact of World", - "showIcon": true - } - ], - "doors": {} - }, - "Shoreline Entrance": { - "pickups": [], - "doors": {} - }, - "South Quarantine Tunnel": { - "pickups": [], - "doors": {} - }, - "Specimen Storage": { - "pickups": [], - "doors": {} - }, - "Storage Cave": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Thermal Visor", - "hudmemoText": "Thermal Visor Acquired!", - "currIncrease": 0, - "model": "Thermal Visor", - "showIcon": true - } - ], - "doors": {} - }, - "Temple Entryway": { - "pickups": [], - "doors": {} - }, - "Transport Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Wavebuster", - "hudmemoText": "Wavebuster Acquired!", - "currIncrease": 0, - "model": "Wavebuster", - "showIcon": true - } - ], - "doors": {} - }, - "Transport to Magmoor Caverns South": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns West": { - "pickups": [], - "doors": {} - }, - "Upper Edge Tunnel": { - "pickups": [], - "doors": {} - }, - "West Tower Entrance": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - }, - "West Tower": { - "pickups": [], - "doors": { - "0": { - "blastShieldType": "Missile" - } - } - } - } - }, - "Phazon Mines": { - "transports": { - "Phazon Mines East (Main Quarry)": "Tallon Overworld South (Great Tree Hall, Lower)", - "Phazon Mines West (Phazon Processing Center)": "Magmoor Caverns South (Magmoor Workstation, Debris)" - }, - "rooms": { - "Central Dynamo": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Dynamo Access": { - "pickups": [], - "doors": {} - }, - "Elevator A": { - "pickups": [], - "doors": {} - }, - "Elevator Access A": { - "pickups": [], - "doors": {} - }, - "Elevator Access B": { - "pickups": [], - "doors": {} - }, - "Elevator B": { - "pickups": [], - "doors": {} - }, - "Elite Control Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Phazon Suit", - "hudmemoText": "Phazon Suit Acquired!", - "currIncrease": 0, - "model": "Phazon Suit", - "showIcon": true - } - ], - "doors": {} - }, - "Elite Control": { - "pickups": [], - "doors": {} - }, - "Elite Quarters Access": { - "pickups": [], - "doors": {} - }, - "Elite Quarters": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Elite Research": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Artifact of Strength", - "hudmemoText": "Artifact of Strength Acquired!", - "currIncrease": 0, - "model": "Artifact of Strength", - "showIcon": true - }, - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Fungal Hall A": { - "pickups": [], - "doors": {} - }, - "Fungal Hall Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Fungal Hall B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Main Quarry": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Maintenance Tunnel": { - "pickups": [], - "doors": {} - }, - "Map Station Mines": { - "pickups": [], - "doors": {} - }, - "Metroid Quarantine A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Metroid Quarantine B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Mine Security Station": { - "pickups": [], - "doors": {} - }, - "Missile Station Mines": { - "pickups": [], - "doors": {} - }, - "Omega Research": { - "pickups": [], - "doors": {} - }, - "Ore Processing": { - "pickups": [], - "doors": {} - }, - "Phazon Mining Tunnel": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Phazon Processing Center": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Processing Center Access": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Quarantine Access A": { - "pickups": [], - "doors": {} - }, - "Quarantine Access B": { - "pickups": [], - "doors": {} - }, - "Quarry Access": { - "pickups": [], - "doors": {} - }, - "Research Access": { - "pickups": [], - "doors": {} - }, - "Save Station Mines A": { - "pickups": [], - "doors": {} - }, - "Save Station Mines B": { - "pickups": [], - "doors": {} - }, - "Save Station Mines C": { - "pickups": [], - "doors": {} - }, - "Security Access A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Security Access B": { - "pickups": [], - "doors": {} - }, - "Storage Depot A": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Storage Depot B": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Energy Tank", - "hudmemoText": "Energy Tank Acquired!", - "currIncrease": 0, - "model": "Energy Tank", - "showIcon": true - } - ], - "doors": {} - }, - "Transport Access": { - "pickups": [], - "doors": {} - }, - "Transport to Magmoor Caverns South": { - "pickups": [], - "doors": {} - }, - "Transport to Tallon Overworld South": { - "pickups": [], - "doors": {} - }, - "Ventilation Shaft": { - "pickups": [ - { - "type": "Unknown Item 1", - "scanText": "Missile Expansion", - "hudmemoText": "Missile Expansion Acquired!", - "currIncrease": 0, - "model": "Missile", - "showIcon": true - } - ], - "doors": {} - }, - "Waste Disposal": { - "pickups": [], - "doors": {} - } - } - } - } -} \ No newline at end of file