Skip to content

Commit f6cb90d

Browse files
authored
Noita: Region connection edits (#1855)
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.
1 parent 54b2004 commit f6cb90d

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

worlds/noita/Locations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ class LocationFlag(IntEnum):
171171
"The Tower Chest": LocationData(110606, LocationFlag.main_world, "chest"),
172172
"The Tower Pedestal": LocationData(110626, LocationFlag.main_world, "pedestal"),
173173
},
174-
"Wizard's Den": {
174+
"Wizards' Den": {
175175
"Mestarien Mestari": LocationData(110655, LocationFlag.main_world, "boss"),
176-
"Wizard's Den Orb": LocationData(110668, LocationFlag.main_world, "orb"),
176+
"Wizards' Den Orb": LocationData(110668, LocationFlag.main_world, "orb"),
177177
"Wizards' Den Chest": LocationData(110446, LocationFlag.main_world, "chest"),
178178
"Wizards' Den Pedestal": LocationData(110466, LocationFlag.main_world, "pedestal"),
179179
},

worlds/noita/Regions.py

+12-10
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,15 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N
7676
# - Snow Chasm is disconnected from the Snowy Wasteland
7777
# - Pyramid is connected to the Hiisi Base instead of the Desert due to similar difficulty
7878
# - Frozen Vault is connected to the Vault instead of the Snowy Wasteland due to similar difficulty
79+
# - Lake is connected to The Laboratory, since the boss is hard without specific set-ups (which means late game)
80+
# - Snowy Depths connects to Lava Lake orb since you need digging for it, so fairly early is acceptable
7981
noita_connections: Dict[str, Set[str]] = {
8082
"Menu": {"Forest"},
8183
"Forest": {"Mines", "Floating Island", "Desert", "Snowy Wasteland"},
82-
"Snowy Wasteland": {"Lake", "Forest"},
84+
"Snowy Wasteland": {"Forest"},
8385
"Frozen Vault": {"The Vault"},
84-
"Lake": {"Snowy Wasteland", "Desert"},
85-
"Desert": {"Lake", "Forest"},
86+
"Lake": {"The Laboratory"},
87+
"Desert": {"Forest"},
8688
"Floating Island": {"Forest"},
8789
"Pyramid": {"Hiisi Base"},
8890
"Overgrown Cavern": {"Sandcave", "Undeground Jungle"},
@@ -91,9 +93,9 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N
9193
###
9294
"Mines": {"Collapsed Mines", "Coal Pits Holy Mountain", "Lava Lake", "Forest"},
9395
"Collapsed Mines": {"Mines", "Dark Cave"},
94-
"Lava Lake": {"Mines", "Abyss Orb Room", "Below Lava Lake"},
96+
"Lava Lake": {"Mines", "Abyss Orb Room"},
9597
"Abyss Orb Room": {"Lava Lake"},
96-
"Below Lava Lake": {"Lava Lake"},
98+
"Below Lava Lake": {"Snowy Depths"},
9799
"Dark Cave": {"Ancient Laboratory", "Collapsed Mines"},
98100
"Ancient Laboratory": {"Dark Cave"},
99101

@@ -104,7 +106,7 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N
104106

105107
###
106108
"Snowy Depths Holy Mountain": {"Snowy Depths"},
107-
"Snowy Depths": {"Snowy Depths Holy Mountain", "Hiisi Base Holy Mountain", "Magical Temple"},
109+
"Snowy Depths": {"Snowy Depths Holy Mountain", "Hiisi Base Holy Mountain", "Magical Temple", "Below Lava Lake"},
108110
"Magical Temple": {"Snowy Depths"},
109111

110112
###
@@ -127,15 +129,15 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N
127129
###
128130
"Temple of the Art Holy Mountain": {"Temple of the Art"},
129131
"Temple of the Art": {"Temple of the Art Holy Mountain", "Laboratory Holy Mountain", "The Tower",
130-
"Wizard's Den"},
131-
"Wizard's Den": {"Temple of the Art", "Powerplant"},
132-
"Powerplant": {"Wizard's Den", "Deep Underground"},
132+
"Wizards' Den"},
133+
"Wizards' Den": {"Temple of the Art", "Powerplant"},
134+
"Powerplant": {"Wizards' Den", "Deep Underground"},
133135
"The Tower": {"Forest"},
134136
"Deep Underground": {},
135137

136138
###
137139
"Laboratory Holy Mountain": {"The Laboratory"},
138-
"The Laboratory": {"Laboratory Holy Mountain", "The Work", "Friend Cave", "The Work (Hell)"},
140+
"The Laboratory": {"Laboratory Holy Mountain", "The Work", "Friend Cave", "The Work (Hell)", "Lake"},
139141
"Friend Cave": {},
140142
"The Work": {},
141143
"The Work (Hell)": {},

0 commit comments

Comments
 (0)