mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00

* Move a couple locations to monastery * Connect Quarry Back to Monastery * Quarry Back -> Monastery with laurels, Monastery -> Monastery Back with wand/sword * Add Monastery Back region * Move a couple non-ER locations to monastery back * Monastery front -> back with sword, wand, or laurels zip * also laurels zip for non-ER
26 lines
1014 B
Python
26 lines
1014 B
Python
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": 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", "Monastery"),
|
|
"Quarry": ("Monastery", "Lower Quarry"),
|
|
"Monastery": ("Monastery Back",),
|
|
"Monastery Back": tuple(),
|
|
"Lower Quarry": ("Rooted Ziggurat",),
|
|
"Rooted Ziggurat": tuple(),
|
|
"Swamp": ("Cathedral",),
|
|
"Cathedral": tuple(),
|
|
"Spirit Arena": tuple()
|
|
}
|