From d4eee7b768d97afcbd73f9d9a888e692302a2e24 Mon Sep 17 00:00:00 2001 From: Ibot02 Date: Sun, 24 Nov 2024 16:50:08 +0100 Subject: [PATCH] Hyrule Field: add missing south east door Co-authored-By: Henny022 --- tmc/logic/hyrule_field.logic | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/tmc/logic/hyrule_field.logic b/tmc/logic/hyrule_field.logic index 24ad98b..ddadeb0 100644 --- a/tmc/logic/hyrule_field.logic +++ b/tmc/logic/hyrule_field.logic @@ -252,11 +252,22 @@ area HyruleField: Main -> CenterTingleTreeEntrance: flag Caves.MagicBoomerang.AllTorches Main -> FairyFountainEntrance: fusion FairyFountain + node SouthEast: + door EastSouth + node SouthEastTrees: + set SouthEastTree1 + set SouthEastTree2 + set SouthEastTree3 + set SouthEastTree4 + SouthEast <-> Main: ( flag SouthEastTree1 | flag SouthEastTree2 | flag SouthEastTree3 | flag SouthEastTree4 ) + Main -> SouthEastTrees: ( helper AnySword | item FlameLantern | item BombBag | item LightArrows | hasExplosive ) + SouthEast -> SouthEastTrees: ( helper AnySword | item FlameLantern | item BombBag | item LightArrows | hasExplosive ) + node EastBombableRocks: set EastBombableRockOne set EastBombableRockTwo node NorthEast: - door NorthEast + door EastNorth warp Virtual.Zeffa.FluteAway Main -> RightBombableRocks: ( item BombBag | hasExplosive) NorthEast -> RightBombableRocks: ( item BombBag | hasExplosive )