-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-By: Henny022 <[email protected]>
- Loading branch information
Showing
1 changed file
with
69 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,70 @@ | ||
area HouseInteriors4: | ||
room Farm | ||
room LonLonEast | ||
room LonLonWest | ||
room Lumberjack | ||
room MayorCabin | ||
room Swiftblade | ||
room Farm: | ||
node Main: | ||
door South | ||
room LonLonEast: | ||
node Main: | ||
door South | ||
door West | ||
node MainMinish: | ||
door SouthMinish | ||
npc Cow | ||
npc Talon | ||
room LonLonWest: | ||
node Main: | ||
chest Pot | ||
target South | ||
node MainMinish: | ||
door SouthMinish | ||
Main -> MainMinish: item CanTurnMinish | ||
MainMinish -> Main: item CanGrow | ||
node MainUnlocked: | ||
warp South | ||
warp East | ||
npc Malon | ||
node MainEnterFromEast: | ||
target East | ||
Main <-> MainUnlocked: HyruleField.LonLon.OpenWestRanchDoor | ||
MainEnterFromEast -> Main: HyruleField.LonLon.OpenWestRanchDoor | ||
room Lumberjack: | ||
node Main: | ||
door South | ||
npc Mutoh | ||
npc Mack | ||
npc Bremor | ||
npc Brent | ||
node MainMinish: | ||
door NorthMinish | ||
door MinishHouse | ||
Main -> MainMinish: item CanTurnMinish | ||
MainMinish -> Main: item CanGrow | ||
room MayorCabin: | ||
node Main: | ||
door South | ||
node MainItem: | ||
chest Item | ||
Main <-> MainItem: flag HasPushedItem | ||
node MainMinish: | ||
door NorthMinish | ||
node PushBookshelf: | ||
set BookshelfMoved | ||
MainMinish -> PushBookshelf: item PowerBracelets | ||
node ShelfTopMinish: | ||
set HasPushedItem | ||
MainMinish -> ShelfTopMinish: ( flag BookshelfMoved & flag HouseInteriors2.Library.BookQuestStart ) | ||
room Swiftblade: | ||
node Main: | ||
door South | ||
npc Swiftblade | ||
node SpinScroll: | ||
chest SpinScroll | ||
Main <-> SpinScroll: helper AnySword | ||
node RockScroll: | ||
chest RockScroll | ||
SpinScroll <-> RockScroll: item WhiteSword | ||
node DashScroll: | ||
chest DashScroll | ||
RockScroll <-> DashScroll: item Boots | ||
node DownScroll: | ||
chest DownScroll | ||
RockScroll <-> DownScroll: item Cape |