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:
parent
fa2816822b
commit
bb0948154d
|
@ -1,26 +1,24 @@
|
||||||
from typing import Dict, Set
|
tunic_regions: dict[str, tuple[str]] = {
|
||||||
|
"Menu": ("Overworld",),
|
||||||
tunic_regions: Dict[str, Set[str]] = {
|
"Overworld": ("Overworld Holy Cross", "East Forest", "Dark Tomb", "Beneath the Well", "West Garden",
|
||||||
"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",
|
"Ruined Atoll", "Eastern Vault Fortress", "Beneath the Vault", "Quarry Back", "Quarry", "Swamp",
|
||||||
"Spirit Arena"},
|
"Spirit Arena"),
|
||||||
"Overworld Holy Cross": set(),
|
"Overworld Holy Cross": tuple(),
|
||||||
"East Forest": set(),
|
"East Forest": tuple(),
|
||||||
"Dark Tomb": {"West Garden"},
|
"Dark Tomb": ("West Garden",),
|
||||||
"Beneath the Well": set(),
|
"Beneath the Well": tuple(),
|
||||||
"West Garden": set(),
|
"West Garden": tuple(),
|
||||||
"Ruined Atoll": {"Frog's Domain", "Library"},
|
"Ruined Atoll": ("Frog's Domain", "Library"),
|
||||||
"Frog's Domain": set(),
|
"Frog's Domain": tuple(),
|
||||||
"Library": set(),
|
"Library": tuple(),
|
||||||
"Eastern Vault Fortress": {"Beneath the Vault"},
|
"Eastern Vault Fortress": ("Beneath the Vault",),
|
||||||
"Beneath the Vault": {"Eastern Vault Fortress"},
|
"Beneath the Vault": ("Eastern Vault Fortress",),
|
||||||
"Quarry Back": {"Quarry"},
|
"Quarry Back": ("Quarry",),
|
||||||
"Quarry": {"Monastery", "Lower Quarry"},
|
"Quarry": ("Monastery", "Lower Quarry"),
|
||||||
"Monastery": set(),
|
"Monastery": tuple(),
|
||||||
"Lower Quarry": {"Rooted Ziggurat"},
|
"Lower Quarry": ("Rooted Ziggurat",),
|
||||||
"Rooted Ziggurat": set(),
|
"Rooted Ziggurat": tuple(),
|
||||||
"Swamp": {"Cathedral"},
|
"Swamp": ("Cathedral",),
|
||||||
"Cathedral": set(),
|
"Cathedral": tuple(),
|
||||||
"Spirit Arena": set()
|
"Spirit Arena": tuple()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue