forked from ArchipelagoMW/Archipelago
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'frlg-stable' of https://github.com/vyneras/Archipelago …
…into frlg-stable
- Loading branch information
Showing
10 changed files
with
142 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,24 @@ | ||
from typing import Dict, Set | ||
|
||
tunic_regions: Dict[str, Set[str]] = { | ||
"Menu": {"Overworld"}, | ||
"Overworld": {"Overworld Holy Cross", "East Forest", "Dark Tomb", "Beneath the Well", "West Garden", | ||
tunic_regions: dict[str, tuple[str]] = { | ||
"Menu": ("Overworld",), | ||
"Overworld": ("Overworld Holy Cross", "East Forest", "Dark Tomb", "Beneath the Well", "West Garden", | ||
"Ruined Atoll", "Eastern Vault Fortress", "Beneath the Vault", "Quarry Back", "Quarry", "Swamp", | ||
"Spirit Arena"}, | ||
"Overworld Holy Cross": set(), | ||
"East Forest": set(), | ||
"Dark Tomb": {"West Garden"}, | ||
"Beneath the Well": set(), | ||
"West Garden": set(), | ||
"Ruined Atoll": {"Frog's Domain", "Library"}, | ||
"Frog's Domain": set(), | ||
"Library": set(), | ||
"Eastern Vault Fortress": {"Beneath the Vault"}, | ||
"Beneath the Vault": {"Eastern Vault Fortress"}, | ||
"Quarry Back": {"Quarry"}, | ||
"Quarry": {"Monastery", "Lower Quarry"}, | ||
"Monastery": set(), | ||
"Lower Quarry": {"Rooted Ziggurat"}, | ||
"Rooted Ziggurat": set(), | ||
"Swamp": {"Cathedral"}, | ||
"Cathedral": set(), | ||
"Spirit Arena": set() | ||
"Spirit Arena"), | ||
"Overworld Holy Cross": tuple(), | ||
"East Forest": tuple(), | ||
"Dark Tomb": ("West Garden",), | ||
"Beneath the Well": tuple(), | ||
"West Garden": tuple(), | ||
"Ruined Atoll": ("Frog's Domain", "Library"), | ||
"Frog's Domain": tuple(), | ||
"Library": tuple(), | ||
"Eastern Vault Fortress": ("Beneath the Vault",), | ||
"Beneath the Vault": ("Eastern Vault Fortress",), | ||
"Quarry Back": ("Quarry",), | ||
"Quarry": ("Monastery", "Lower Quarry"), | ||
"Monastery": tuple(), | ||
"Lower Quarry": ("Rooted Ziggurat",), | ||
"Rooted Ziggurat": tuple(), | ||
"Swamp": ("Cathedral",), | ||
"Cathedral": tuple(), | ||
"Spirit Arena": tuple() | ||
} |