Skip to content

Noita: Add Meat Realm #3119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion worlds/noita/locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,9 @@ class LocationFlag(IntEnum):
"Unohdettu": LocationData(110653, LocationFlag.main_world, "boss"),
"Snow Chasm Orb": LocationData(110667, LocationFlag.main_world, "orb"),
},
"Deep Underground": {
"Meat Realm": {
"Meat Realm Chest": LocationData(110086, LocationFlag.main_world, "chest"),
"Meat Realm Pedestal": LocationData(110106, LocationFlag.main_world, "pedestal"),
"Limatoukka": LocationData(110647, LocationFlag.main_world, "boss"),
},
"The Laboratory": {
Expand Down
2 changes: 1 addition & 1 deletion worlds/noita/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class PathOption(Choice):
"""Choose where you would like Hidden Chest and Pedestal checks to be placed.
Main Path includes the main 7 biomes you typically go through to get to the final boss.
Side Path includes the Lukki Lair and Fungal Caverns. 9 biomes total.
Main World includes the full world (excluding parallel worlds). 14 biomes total.
Main World includes the full world (excluding parallel worlds). 15 biomes total.
Note: The Collapsed Mines have been combined into the Mines as the biome is tiny."""
display_name = "Path Option"
option_main_path = 1
Expand Down
2 changes: 1 addition & 1 deletion worlds/noita/regions.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def create_all_regions_and_connections(world: "NoitaWorld") -> None:
"Temple of the Art Holy Mountain": ["Temple of the Art"],
"Temple of the Art": ["Laboratory Holy Mountain", "The Tower", "Wizards' Den"],
"Wizards' Den": ["Powerplant"],
"Powerplant": ["Deep Underground"],
"Powerplant": ["Meat Realm"],

###
"Laboratory Holy Mountain": ["The Laboratory"],
Expand Down
Loading