@@ -76,13 +76,15 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N
76
76
# - Snow Chasm is disconnected from the Snowy Wasteland
77
77
# - Pyramid is connected to the Hiisi Base instead of the Desert due to similar difficulty
78
78
# - 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
79
81
noita_connections : Dict [str , Set [str ]] = {
80
82
"Menu" : {"Forest" },
81
83
"Forest" : {"Mines" , "Floating Island" , "Desert" , "Snowy Wasteland" },
82
- "Snowy Wasteland" : {"Lake" , " Forest" },
84
+ "Snowy Wasteland" : {"Forest" },
83
85
"Frozen Vault" : {"The Vault" },
84
- "Lake" : {"Snowy Wasteland" , "Desert " },
85
- "Desert" : {"Lake" , " Forest" },
86
+ "Lake" : {"The Laboratory " },
87
+ "Desert" : {"Forest" },
86
88
"Floating Island" : {"Forest" },
87
89
"Pyramid" : {"Hiisi Base" },
88
90
"Overgrown Cavern" : {"Sandcave" , "Undeground Jungle" },
@@ -91,9 +93,9 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N
91
93
###
92
94
"Mines" : {"Collapsed Mines" , "Coal Pits Holy Mountain" , "Lava Lake" , "Forest" },
93
95
"Collapsed Mines" : {"Mines" , "Dark Cave" },
94
- "Lava Lake" : {"Mines" , "Abyss Orb Room" , "Below Lava Lake" },
96
+ "Lava Lake" : {"Mines" , "Abyss Orb Room" },
95
97
"Abyss Orb Room" : {"Lava Lake" },
96
- "Below Lava Lake" : {"Lava Lake " },
98
+ "Below Lava Lake" : {"Snowy Depths " },
97
99
"Dark Cave" : {"Ancient Laboratory" , "Collapsed Mines" },
98
100
"Ancient Laboratory" : {"Dark Cave" },
99
101
@@ -104,7 +106,7 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N
104
106
105
107
###
106
108
"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" },
108
110
"Magical Temple" : {"Snowy Depths" },
109
111
110
112
###
@@ -127,15 +129,15 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N
127
129
###
128
130
"Temple of the Art Holy Mountain" : {"Temple of the Art" },
129
131
"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" },
133
135
"The Tower" : {"Forest" },
134
136
"Deep Underground" : {},
135
137
136
138
###
137
139
"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" },
139
141
"Friend Cave" : {},
140
142
"The Work" : {},
141
143
"The Work (Hell)" : {},
0 commit comments