TUNIC: Add an ER static connection, modify an nmg rule (#2802)

* Add laurels connection at monastery front

* Removed an entrance rule to prevent people from being expected to softlock themselves
This commit is contained in:
Scipio Wright
2024-02-10 21:15:46 -05:00
committed by GitHub
parent a6deffb9f2
commit 151e2c3ac2
3 changed files with 10 additions and 3 deletions

View File

@@ -444,6 +444,13 @@ def set_er_region_rules(world: "TunicWorld", ability_unlocks: Dict[str, int], re
regions["Quarry"].connect(
connecting_region=regions["Quarry Monastery Entry"])
regions["Quarry Monastery Entry"].connect(
connecting_region=regions["Quarry Back"],
rule=lambda state: state.has(laurels, player))
regions["Quarry Back"].connect(
connecting_region=regions["Quarry Monastery Entry"],
rule=lambda state: state.has(laurels, player))
regions["Monastery Rope"].connect(
connecting_region=regions["Quarry Back"])