Skip to content

Commit

Permalink
Noita: Region connection edits (ArchipelagoMW#1855)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ScipioWright authored Jun 5, 2023
1 parent 54b2004 commit f6cb90d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions worlds/noita/Locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
},
Expand Down
22 changes: 12 additions & 10 deletions worlds/noita/Regions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand All @@ -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"},

Expand All @@ -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"},

###
Expand All @@ -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)": {},
Expand Down

0 comments on commit f6cb90d

Please sign in to comment.