From f6cb90daf9629cf31cc69b25ddd06e3731dbe1fe Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Mon, 5 Jun 2023 13:32:33 -0400 Subject: [PATCH] Noita: Region connection edits (#1855) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Shifts the Lake region to be connected to The Laboratory, so that the Lake boss is late game instead of early game. Shifts the Below Lava Lake region to be connected to the Snowy Depths, so instead of being early game it's early-mid game (since that's when you would be expected to be able to have decent enough digging or a Sädekivi. --- worlds/noita/Locations.py | 4 ++-- worlds/noita/Regions.py | 22 ++++++++++++---------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/worlds/noita/Locations.py b/worlds/noita/Locations.py index bbfae1c94341..6ad7b14258c2 100644 --- a/worlds/noita/Locations.py +++ b/worlds/noita/Locations.py @@ -171,9 +171,9 @@ class LocationFlag(IntEnum): "The Tower Chest": LocationData(110606, LocationFlag.main_world, "chest"), "The Tower Pedestal": LocationData(110626, LocationFlag.main_world, "pedestal"), }, - "Wizard's Den": { + "Wizards' Den": { "Mestarien Mestari": LocationData(110655, LocationFlag.main_world, "boss"), - "Wizard's Den Orb": LocationData(110668, LocationFlag.main_world, "orb"), + "Wizards' Den Orb": LocationData(110668, LocationFlag.main_world, "orb"), "Wizards' Den Chest": LocationData(110446, LocationFlag.main_world, "chest"), "Wizards' Den Pedestal": LocationData(110466, LocationFlag.main_world, "pedestal"), }, diff --git a/worlds/noita/Regions.py b/worlds/noita/Regions.py index c6dac74d1362..93d5a19a0bb5 100644 --- a/worlds/noita/Regions.py +++ b/worlds/noita/Regions.py @@ -76,13 +76,15 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N # - Snow Chasm is disconnected from the Snowy Wasteland # - Pyramid is connected to the Hiisi Base instead of the Desert due to similar difficulty # - Frozen Vault is connected to the Vault instead of the Snowy Wasteland due to similar difficulty +# - Lake is connected to The Laboratory, since the boss is hard without specific set-ups (which means late game) +# - Snowy Depths connects to Lava Lake orb since you need digging for it, so fairly early is acceptable noita_connections: Dict[str, Set[str]] = { "Menu": {"Forest"}, "Forest": {"Mines", "Floating Island", "Desert", "Snowy Wasteland"}, - "Snowy Wasteland": {"Lake", "Forest"}, + "Snowy Wasteland": {"Forest"}, "Frozen Vault": {"The Vault"}, - "Lake": {"Snowy Wasteland", "Desert"}, - "Desert": {"Lake", "Forest"}, + "Lake": {"The Laboratory"}, + "Desert": {"Forest"}, "Floating Island": {"Forest"}, "Pyramid": {"Hiisi Base"}, "Overgrown Cavern": {"Sandcave", "Undeground Jungle"}, @@ -91,9 +93,9 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N ### "Mines": {"Collapsed Mines", "Coal Pits Holy Mountain", "Lava Lake", "Forest"}, "Collapsed Mines": {"Mines", "Dark Cave"}, - "Lava Lake": {"Mines", "Abyss Orb Room", "Below Lava Lake"}, + "Lava Lake": {"Mines", "Abyss Orb Room"}, "Abyss Orb Room": {"Lava Lake"}, - "Below Lava Lake": {"Lava Lake"}, + "Below Lava Lake": {"Snowy Depths"}, "Dark Cave": {"Ancient Laboratory", "Collapsed Mines"}, "Ancient Laboratory": {"Dark Cave"}, @@ -104,7 +106,7 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N ### "Snowy Depths Holy Mountain": {"Snowy Depths"}, - "Snowy Depths": {"Snowy Depths Holy Mountain", "Hiisi Base Holy Mountain", "Magical Temple"}, + "Snowy Depths": {"Snowy Depths Holy Mountain", "Hiisi Base Holy Mountain", "Magical Temple", "Below Lava Lake"}, "Magical Temple": {"Snowy Depths"}, ### @@ -127,15 +129,15 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N ### "Temple of the Art Holy Mountain": {"Temple of the Art"}, "Temple of the Art": {"Temple of the Art Holy Mountain", "Laboratory Holy Mountain", "The Tower", - "Wizard's Den"}, - "Wizard's Den": {"Temple of the Art", "Powerplant"}, - "Powerplant": {"Wizard's Den", "Deep Underground"}, + "Wizards' Den"}, + "Wizards' Den": {"Temple of the Art", "Powerplant"}, + "Powerplant": {"Wizards' Den", "Deep Underground"}, "The Tower": {"Forest"}, "Deep Underground": {}, ### "Laboratory Holy Mountain": {"The Laboratory"}, - "The Laboratory": {"Laboratory Holy Mountain", "The Work", "Friend Cave", "The Work (Hell)"}, + "The Laboratory": {"Laboratory Holy Mountain", "The Work", "Friend Cave", "The Work (Hell)", "Lake"}, "Friend Cave": {}, "The Work": {}, "The Work (Hell)": {},