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.
This commit is contained in:
parent
54b200451d
commit
f6cb90daf9
|
@ -171,9 +171,9 @@ location_region_mapping: Dict[str, Dict[str, LocationData]] = {
|
||||||
"The Tower Chest": LocationData(110606, LocationFlag.main_world, "chest"),
|
"The Tower Chest": LocationData(110606, LocationFlag.main_world, "chest"),
|
||||||
"The Tower Pedestal": LocationData(110626, LocationFlag.main_world, "pedestal"),
|
"The Tower Pedestal": LocationData(110626, LocationFlag.main_world, "pedestal"),
|
||||||
},
|
},
|
||||||
"Wizard's Den": {
|
"Wizards' Den": {
|
||||||
"Mestarien Mestari": LocationData(110655, LocationFlag.main_world, "boss"),
|
"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 Chest": LocationData(110446, LocationFlag.main_world, "chest"),
|
||||||
"Wizards' Den Pedestal": LocationData(110466, LocationFlag.main_world, "pedestal"),
|
"Wizards' Den Pedestal": LocationData(110466, LocationFlag.main_world, "pedestal"),
|
||||||
},
|
},
|
||||||
|
|
|
@ -76,13 +76,15 @@ def create_all_regions_and_connections(multiworld: MultiWorld, player: int) -> N
|
||||||
# - Snow Chasm is disconnected from the Snowy Wasteland
|
# - Snow Chasm is disconnected from the Snowy Wasteland
|
||||||
# - Pyramid is connected to the Hiisi Base instead of the Desert due to similar difficulty
|
# - 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
|
# - 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]] = {
|
noita_connections: Dict[str, Set[str]] = {
|
||||||
"Menu": {"Forest"},
|
"Menu": {"Forest"},
|
||||||
"Forest": {"Mines", "Floating Island", "Desert", "Snowy Wasteland"},
|
"Forest": {"Mines", "Floating Island", "Desert", "Snowy Wasteland"},
|
||||||
"Snowy Wasteland": {"Lake", "Forest"},
|
"Snowy Wasteland": {"Forest"},
|
||||||
"Frozen Vault": {"The Vault"},
|
"Frozen Vault": {"The Vault"},
|
||||||
"Lake": {"Snowy Wasteland", "Desert"},
|
"Lake": {"The Laboratory"},
|
||||||
"Desert": {"Lake", "Forest"},
|
"Desert": {"Forest"},
|
||||||
"Floating Island": {"Forest"},
|
"Floating Island": {"Forest"},
|
||||||
"Pyramid": {"Hiisi Base"},
|
"Pyramid": {"Hiisi Base"},
|
||||||
"Overgrown Cavern": {"Sandcave", "Undeground Jungle"},
|
"Overgrown Cavern": {"Sandcave", "Undeground Jungle"},
|
||||||
|
@ -91,9 +93,9 @@ noita_connections: Dict[str, Set[str]] = {
|
||||||
###
|
###
|
||||||
"Mines": {"Collapsed Mines", "Coal Pits Holy Mountain", "Lava Lake", "Forest"},
|
"Mines": {"Collapsed Mines", "Coal Pits Holy Mountain", "Lava Lake", "Forest"},
|
||||||
"Collapsed Mines": {"Mines", "Dark Cave"},
|
"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"},
|
"Abyss Orb Room": {"Lava Lake"},
|
||||||
"Below Lava Lake": {"Lava Lake"},
|
"Below Lava Lake": {"Snowy Depths"},
|
||||||
"Dark Cave": {"Ancient Laboratory", "Collapsed Mines"},
|
"Dark Cave": {"Ancient Laboratory", "Collapsed Mines"},
|
||||||
"Ancient Laboratory": {"Dark Cave"},
|
"Ancient Laboratory": {"Dark Cave"},
|
||||||
|
|
||||||
|
@ -104,7 +106,7 @@ noita_connections: Dict[str, Set[str]] = {
|
||||||
|
|
||||||
###
|
###
|
||||||
"Snowy Depths Holy Mountain": {"Snowy Depths"},
|
"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"},
|
"Magical Temple": {"Snowy Depths"},
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -127,15 +129,15 @@ noita_connections: Dict[str, Set[str]] = {
|
||||||
###
|
###
|
||||||
"Temple of the Art Holy Mountain": {"Temple of the Art"},
|
"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",
|
"Temple of the Art": {"Temple of the Art Holy Mountain", "Laboratory Holy Mountain", "The Tower",
|
||||||
"Wizard's Den"},
|
"Wizards' Den"},
|
||||||
"Wizard's Den": {"Temple of the Art", "Powerplant"},
|
"Wizards' Den": {"Temple of the Art", "Powerplant"},
|
||||||
"Powerplant": {"Wizard's Den", "Deep Underground"},
|
"Powerplant": {"Wizards' Den", "Deep Underground"},
|
||||||
"The Tower": {"Forest"},
|
"The Tower": {"Forest"},
|
||||||
"Deep Underground": {},
|
"Deep Underground": {},
|
||||||
|
|
||||||
###
|
###
|
||||||
"Laboratory Holy Mountain": {"The Laboratory"},
|
"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": {},
|
"Friend Cave": {},
|
||||||
"The Work": {},
|
"The Work": {},
|
||||||
"The Work (Hell)": {},
|
"The Work (Hell)": {},
|
||||||
|
|
Loading…
Reference in New Issue