TUNIC: Make the standard entrances get made with tuples instead of sets (#4546)

Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com>
This commit is contained in:
Scipio Wright 2025-01-24 12:42:31 -05:00 committed by GitHub
parent fa2816822b
commit bb0948154d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 22 additions and 24 deletions

View File

@ -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()
}