Archipelago/worlds/tunic/regions.py

26 lines
923 B
Python
Raw Normal View History

2024-01-12 19:32:15 +00:00
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",
"Ruined Atoll", "Eastern Vault Fortress", "Beneath the Vault", "Quarry Back", "Quarry", "Swamp",
"Spirit Arena"},
"Overworld Holy Cross": set(),
2024-03-21 15:50:07 +00:00
"East Forest": set(),
2024-01-12 19:32:15 +00:00
"Dark Tomb": {"West Garden"},
2024-03-21 15:50:07 +00:00
"Beneath the Well": set(),
"West Garden": set(),
2024-01-12 19:32:15 +00:00
"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": {"Lower Quarry"},
2024-01-12 19:32:15 +00:00
"Lower Quarry": {"Rooted Ziggurat"},
"Rooted Ziggurat": set(),
"Swamp": {"Cathedral"},
"Cathedral": set(),
"Spirit Arena": set()
}