1679 lines
136 KiB
Python
1679 lines
136 KiB
Python
|
|
from BaseClasses import Door, DoorType, Direction, CrystalBarrier, Portal
|
|
from RoomData import PairedDoor
|
|
|
|
# constants
|
|
We = Direction.West
|
|
Ea = Direction.East
|
|
So = Direction.South
|
|
No = Direction.North
|
|
Up = Direction.Up
|
|
Dn = Direction.Down
|
|
# door offsets
|
|
Top = 0
|
|
Left = 0
|
|
Mid = 1
|
|
Bot = 2
|
|
Right = 2
|
|
# layer numbers
|
|
High = 0
|
|
Low = 1
|
|
# Quadrants - just been using this in my head - no reason to keep them labeled this way
|
|
A = 0
|
|
S = 1
|
|
Z = 2
|
|
X = 3
|
|
# Layer transitions
|
|
HTH = 0 # High to High 00
|
|
HTL = 1 # High to Low 01
|
|
LTH = 2 # Low to High 10
|
|
LTL = 3 # Low to Low 11
|
|
# Type Shortcuts
|
|
Nrml = DoorType.Normal
|
|
StrS = DoorType.StraightStairs
|
|
Hole = DoorType.Hole
|
|
Warp = DoorType.Warp
|
|
Sprl = DoorType.SpiralStairs
|
|
Lddr = DoorType.Ladder
|
|
Open = DoorType.Open
|
|
Lgcl = DoorType.Logical
|
|
Intr = DoorType.Interior
|
|
|
|
|
|
def create_doors(world, player):
|
|
doors = [
|
|
# hyrule castle
|
|
create_door(player, 'Hyrule Castle Lobby W', Nrml).dir(We, 0x61, Mid, High).toggler().pos(0),
|
|
create_door(player, 'Hyrule Castle Lobby E', Nrml).dir(Ea, 0x61, Mid, High).toggler().pos(2),
|
|
create_door(player, 'Hyrule Castle Lobby WN', Nrml).dir(We, 0x61, Top, High).pos(1),
|
|
create_door(player, 'Hyrule Castle Lobby S', Nrml).dir(So, 0x61, Mid, High).pos(4).portal(Z, 0x22, 1),
|
|
create_door(player, 'Hyrule Castle Lobby North Stairs', StrS).dir(No, 0x61, Mid, High),
|
|
create_door(player, 'Hyrule Castle West Lobby E', Nrml).dir(Ea, 0x60, Mid, Low).toggler().pos(1),
|
|
create_door(player, 'Hyrule Castle West Lobby N', Nrml).dir(No, 0x60, Right, Low).pos(0),
|
|
create_door(player, 'Hyrule Castle West Lobby EN', Nrml).dir(Ea, 0x60, Top, High).pos(3),
|
|
create_door(player, 'Hyrule Castle West Lobby S', Nrml).dir(So, 0x60, Right, High).pos(2).portal(X, 0x02),
|
|
create_door(player, 'Hyrule Castle East Lobby W', Nrml).dir(We, 0x62, Mid, Low).toggler().pos(0),
|
|
create_door(player, 'Hyrule Castle East Lobby N', Nrml).dir(No, 0x62, Mid, High).pos(3),
|
|
create_door(player, 'Hyrule Castle East Lobby NW', Nrml).dir(No, 0x62, Left, Low).pos(2),
|
|
create_door(player, 'Hyrule Castle East Lobby S', Nrml).dir(So, 0x62, Left, High).pos(1).portal(Z, 0x22),
|
|
create_door(player, 'Hyrule Castle East Hall W', Nrml).dir(We, 0x52, Top, Low).pos(0),
|
|
create_door(player, 'Hyrule Castle East Hall S', Nrml).dir(So, 0x52, Mid, High).pos(2).portal(Z, 0x22),
|
|
create_door(player, 'Hyrule Castle East Hall SW', Nrml).dir(So, 0x52, Left, Low).pos(1).portal(Z, 0x22, 1),
|
|
create_door(player, 'Hyrule Castle West Hall E', Nrml).dir(Ea, 0x50, Top, Low).pos(0),
|
|
create_door(player, 'Hyrule Castle West Hall S', Nrml).dir(So, 0x50, Right, Low).pos(1).portal(X, 0x02, 1),
|
|
create_door(player, 'Hyrule Castle Back Hall W', Nrml).dir(We, 0x01, Top, Low).pos(0),
|
|
create_door(player, 'Hyrule Castle Back Hall E', Nrml).dir(Ea, 0x01, Top, Low).pos(1),
|
|
create_door(player, 'Hyrule Castle Back Hall Down Stairs', Sprl).dir(Dn, 0x01, 0, HTL).ss(A, 0x2a, 0x00),
|
|
create_door(player, 'Hyrule Castle Throne Room Tapestry', Lgcl),
|
|
create_door(player, 'Hyrule Castle Tapestry Backwards', Lgcl),
|
|
create_door(player, 'Hyrule Castle Throne Room N', Nrml).dir(No, 0x51, Mid, High).pos(0),
|
|
create_door(player, 'Hyrule Castle Throne Room South Stairs', StrS).dir(So, 0x51, Mid, Low),
|
|
|
|
# hyrule dungeon level
|
|
create_door(player, 'Hyrule Dungeon Map Room Up Stairs', Sprl).dir(Up, 0x72, 0, LTH).ss(A, 0x4b, 0xec),
|
|
create_door(player, 'Hyrule Dungeon Map Room Key Door S', Intr).dir(So, 0x72, Mid, High).small_key().pos(0),
|
|
create_door(player, 'Hyrule Dungeon North Abyss Key Door N', Intr).dir(No, 0x72, Mid, High).small_key().pos(0),
|
|
create_door(player, 'Hyrule Dungeon North Abyss South Edge', Open).dir(So, 0x72, None, Low).edge(0, Z, 0x10),
|
|
create_door(player, 'Hyrule Dungeon North Abyss Catwalk Edge', Open).dir(So, 0x72, None, High).edge(1, Z, 0x08),
|
|
create_door(player, 'Hyrule Dungeon North Abyss Catwalk Dropdown', Lgcl),
|
|
create_door(player, 'Hyrule Dungeon South Abyss North Edge', Open).dir(No, 0x82, None, Low).edge(0, A, 0x10),
|
|
create_door(player, 'Hyrule Dungeon South Abyss West Edge', Open).dir(We, 0x82, None, Low).edge(3, Z, 0x18),
|
|
create_door(player, 'Hyrule Dungeon South Abyss Catwalk North Edge', Open).dir(No, 0x82, None, High).edge(1, A, 0x08),
|
|
create_door(player, 'Hyrule Dungeon South Abyss Catwalk West Edge', Open).dir(We, 0x82, None, High).edge(4, A, 0x10),
|
|
create_door(player, 'Hyrule Dungeon Guardroom Catwalk Edge', Open).dir(Ea, 0x81, None, High).edge(3, S, 0x10),
|
|
create_door(player, 'Hyrule Dungeon Guardroom Abyss Edge', Open).dir(Ea, 0x81, None, Low).edge(4, X, 0x18),
|
|
create_door(player, 'Hyrule Dungeon Guardroom N', Nrml).dir(No, 0x81, Left, Low).pos(0),
|
|
create_door(player, 'Hyrule Dungeon Armory S', Nrml).dir(So, 0x71, Left, Low).trap(0x2).pos(1).portal(Z, 0x00, 1),
|
|
create_door(player, 'Hyrule Dungeon Armory ES', Intr).dir(Ea, 0x71, Left, Low).pos(2),
|
|
create_door(player, 'Hyrule Dungeon Armory Boomerang WS', Intr).dir(We, 0x71, Left, Low).pos(2),
|
|
create_door(player, 'Hyrule Dungeon Armory Interior Key Door N', Intr).dir(No, 0x71, Left, High).small_key().pos(0),
|
|
create_door(player, 'Hyrule Dungeon Armory Interior Key Door S', Intr).dir(So, 0x71, Left, High).small_key().pos(0),
|
|
create_door(player, 'Hyrule Dungeon Armory Down Stairs', Sprl).dir(Dn, 0x71, 0, HTL).ss(A, 0x11, 0xa8, True),
|
|
create_door(player, 'Hyrule Dungeon Staircase Up Stairs', Sprl).dir(Up, 0x70, 2, LTH).ss(A, 0x32, 0x94, True),
|
|
create_door(player, 'Hyrule Dungeon Staircase Down Stairs', Sprl).dir(Dn, 0x70, 1, HTH).ss(A, 0x11, 0x58),
|
|
create_door(player, 'Hyrule Dungeon Cellblock Up Stairs', Sprl).dir(Up, 0x80, 0, HTH).ss(A, 0x1a, 0x44),
|
|
create_door(player, 'Hyrule Dungeon Cellblock Door', Lgcl).big_key(),
|
|
create_door(player, 'Hyrule Dungeon Cell Exit', Lgcl),
|
|
|
|
# sewers
|
|
create_door(player, 'Sewers Behind Tapestry S', Nrml).dir(So, 0x41, Mid, High).no_exit().trap(0x4).pos(0).portal(Z, 0x22),
|
|
create_door(player, 'Sewers Behind Tapestry Down Stairs', Sprl).dir(Dn, 0x41, 0, HTH).ss(S, 0x12, 0xb0),
|
|
create_door(player, 'Sewers Rope Room Up Stairs', Sprl).dir(Up, 0x42, 0, HTH).ss(S, 0x1b, 0x9c),
|
|
create_door(player, 'Sewers Rope Room North Stairs', StrS).dir(No, 0x42, Mid, High),
|
|
create_door(player, 'Sewers Dark Cross South Stairs', StrS).dir(So, 0x32, Mid, High),
|
|
create_door(player, 'Sewers Dark Cross Key Door N', Nrml).dir(No, 0x32, Mid, High).small_key().pos(0),
|
|
create_door(player, 'Sewers Water S', Nrml).dir(So, 0x22, Mid, High).small_key().pos(0).portal(Z, 0x22),
|
|
create_door(player, 'Sewers Water W', Nrml).dir(We, 0x22, Bot, High).pos(1),
|
|
create_door(player, 'Sewers Dark Aquabats ES', Nrml).dir(Ea, 0x21, Bot, High).pos(2),
|
|
create_door(player, 'Sewers Dark Aquabats N', Intr).dir(No, 0x21, Mid, High).pos(1),
|
|
create_door(player, 'Sewers Key Rat S', Intr).dir(So, 0x21, Mid, High).pos(1),
|
|
create_door(player, 'Sewers Key Rat NE', Nrml).dir(No, 0x21, Right, High).small_key().pos(0),
|
|
create_door(player, 'Sewers Secret Room Key Door S', Nrml).dir(So, 0x11, Right, High).small_key().pos(2).portal(X, 0x02),
|
|
create_door(player, 'Sewers Rat Path WS', Intr).dir(We, 0x11, Bot, High).pos(1),
|
|
create_door(player, 'Sewers Rat Path WN', Intr).dir(We, 0x11, Top, High).pos(0),
|
|
create_door(player, 'Sewers Secret Room ES', Intr).dir(Ea, 0x11, Bot, High).pos(1),
|
|
create_door(player, 'Sewers Secret Room EN', Intr).dir(Ea, 0x11, Top, High).pos(0),
|
|
create_door(player, 'Sewers Secret Room Push Block', Lgcl),
|
|
create_door(player, 'Sewers Secret Room Up Stairs', Sprl).dir(Up, 0x11, 0, LTH).ss(S, 0x33, 0x6c, True),
|
|
create_door(player, 'Sewers Pull Switch Down Stairs', Sprl).dir(Dn, 0x02, 0, HTL).ss(S, 0x12, 0x80),
|
|
create_door(player, 'Sewers Yet More Rats S', Intr).dir(So, 0x02, Mid, Low).pos(1),
|
|
create_door(player, 'Sewers Pull Switch N', Intr).dir(No, 0x02, Mid, Low).pos(1),
|
|
create_door(player, 'Sewers Pull Switch S', Nrml).dir(So, 0x02, Mid, Low).trap(0x4).toggler().pos(0).portal(Z, 0x20, 1),
|
|
# logically one way the sanc, but should be linked - also toggle
|
|
create_door(player, 'Sanctuary N', Nrml).dir(No, 0x12, Mid, High).no_exit().toggler().pos(0),
|
|
create_door(player, 'Sanctuary S', Nrml).dir(So, 0x12, Mid, High).pos(2).portal(Z, 0x22, 1),
|
|
create_door(player, 'Sanctuary Mirror Route', Lgcl),
|
|
|
|
# Eastern Palace
|
|
create_door(player, 'Eastern Lobby S', Nrml).dir(So, 0xc9, Mid, High).pos(4).portal(Z, 0x20),
|
|
create_door(player, 'Eastern Lobby N', Intr).dir(No, 0xc9, Mid, High).pos(0),
|
|
create_door(player, 'Eastern Lobby Bridge S', Intr).dir(So, 0xc9, Mid, High).pos(0),
|
|
create_door(player, 'Eastern Lobby NW', Intr).dir(No, 0xc9, Left, High).pos(2),
|
|
create_door(player, 'Eastern Lobby Left Ledge SW', Intr).dir(So, 0xc9, Left, High).pos(2),
|
|
create_door(player, 'Eastern Lobby NE', Intr).dir(No, 0xc9, Right, High).pos(3),
|
|
create_door(player, 'Eastern Lobby Right Ledge SE', Intr).dir(So, 0xc9, Right, High).pos(3),
|
|
create_door(player, 'Eastern Lobby Bridge N', Nrml).dir(No, 0xc9, Mid, High).pos(1).trap(0x2),
|
|
create_door(player, 'Eastern Cannonball S', Nrml).dir(So, 0xb9, Mid, High).pos(2).portal(Z, 0x22),
|
|
create_door(player, 'Eastern Cannonball N', Nrml).dir(No, 0xb9, Mid, High).pos(1),
|
|
create_door(player, 'Eastern Cannonball Ledge WN', Nrml).dir(We, 0xb9, Top, High).pos(3),
|
|
create_door(player, 'Eastern Cannonball Ledge Key Door EN', Nrml).dir(Ea, 0xb9, Top, High).small_key().pos(0),
|
|
create_door(player, 'Eastern Courtyard Ledge S', Nrml).dir(So, 0xa9, Mid, High).pos(5).portal(Z, 0x22),
|
|
create_door(player, 'Eastern Courtyard Ledge W', Nrml).dir(We, 0xa9, Mid, High).trap(0x4).pos(0),
|
|
create_door(player, 'Eastern Courtyard Ledge E', Nrml).dir(Ea, 0xa9, Mid, High).trap(0x2).pos(1),
|
|
create_door(player, 'Eastern East Wing W', Nrml).dir(We, 0xaa, Mid, High).pos(4),
|
|
create_door(player, 'Eastern East Wing EN', Intr).dir(Ea, 0xaa, Top, High).pos(2),
|
|
create_door(player, 'Eastern Pot Switch WN', Intr).dir(We, 0xaa, Top, High).pos(2),
|
|
create_door(player, 'Eastern East Wing ES', Intr).dir(Ea, 0xaa, Bot, High).pos(3),
|
|
create_door(player, 'Eastern Map Balcony WS', Intr).dir(We, 0xaa, Bot, High).pos(3),
|
|
create_door(player, 'Eastern Pot Switch SE', Intr).dir(So, 0xaa, Right, High).pos(0),
|
|
create_door(player, 'Eastern Map Room NE', Intr).dir(No, 0xaa, Right, High).pos(0),
|
|
create_door(player, 'Eastern Map Balcony Hook Path', Lgcl),
|
|
create_door(player, 'Eastern Map Room Drop Down', Lgcl),
|
|
create_door(player, 'Eastern West Wing E', Nrml).dir(Ea, 0xa8, Mid, High).pos(5),
|
|
create_door(player, 'Eastern West Wing WS', Intr).dir(We, 0xa8, Bot, High).pos(0),
|
|
create_door(player, 'Eastern Stalfos Spawn ES', Intr).dir(Ea, 0xa8, Bot, High).pos(0),
|
|
create_door(player, 'Eastern Stalfos Spawn NW', Intr).dir(No, 0xa8, Left, High).pos(1),
|
|
create_door(player, 'Eastern Compass Room SW', Intr).dir(So, 0xa8, Left, High).pos(1),
|
|
create_door(player, 'Eastern Compass Room EN', Intr).dir(Ea, 0xa8, Top, High).pos(3),
|
|
create_door(player, 'Eastern Hint Tile WN', Intr).dir(We, 0xa8, Top, High).pos(3),
|
|
create_door(player, 'Eastern Hint Tile EN', Nrml).dir(Ea, 0xa8, Top, Low).pos(4),
|
|
create_door(player, 'Eastern Hint Tile Blocked Path SE', Nrml).dir(So, 0xa8, Right, High).small_key().pos(2).kill().portal(X, 0x02),
|
|
create_door(player, 'Eastern Hint Tile Push Block', Lgcl),
|
|
create_door(player, 'Eastern Courtyard WN', Nrml).dir(We, 0xa9, Top, Low).pos(3),
|
|
create_door(player, 'Eastern Courtyard EN', Nrml).dir(Ea, 0xa9, Top, Low).pos(4),
|
|
create_door(player, 'Eastern Courtyard N', Nrml).dir(No, 0xa9, Mid, High).big_key().pos(2),
|
|
create_door(player, 'Eastern Courtyard Potholes', Hole),
|
|
create_door(player, 'Eastern Fairies\' Warp', Warp),
|
|
create_door(player, 'Eastern Map Valley WN', Nrml).dir(We, 0xaa, Top, Low).pos(1),
|
|
create_door(player, 'Eastern Map Valley SW', Nrml).dir(So, 0xaa, Left, High).pos(5).portal(Z, 0x02),
|
|
create_door(player, 'Eastern Dark Square NW', Nrml).dir(No, 0xba, Left, High).trap(0x2).pos(1),
|
|
create_door(player, 'Eastern Dark Square Key Door WN', Nrml).dir(We, 0xba, Top, High).small_key().pos(0),
|
|
create_door(player, 'Eastern Dark Square EN', Intr).dir(Ea, 0xba, Top, High).pos(2),
|
|
create_door(player, 'Eastern Dark Pots WN', Intr).dir(We, 0xba, Top, High).pos(2),
|
|
create_door(player, 'Eastern Big Key EN', Nrml).dir(Ea, 0xb8, Top, High).pos(1),
|
|
create_door(player, 'Eastern Big Key NE', Nrml).dir(No, 0xb8, Right, High).big_key().pos(0),
|
|
create_door(player, 'Eastern Darkness S', Nrml).dir(So, 0x99, Mid, High).small_key().pos(1).portal(Z, 0x20),
|
|
create_door(player, 'Eastern Darkness NE', Intr).dir(No, 0x99, Right, High).pos(2),
|
|
create_door(player, 'Eastern Rupees SE', Intr).dir(So, 0x99, Right, High).pos(2),
|
|
# Up is a keydoor and down is not. Only the up stairs should be considered a key door for now.
|
|
create_door(player, 'Eastern Darkness Up Stairs', Sprl).dir(Up, 0x99, 0, HTH).ss(Z, 0x1a, 0x6c, False, True).small_key().pos(0),
|
|
create_door(player, 'Eastern Attic Start Down Stairs', Sprl).dir(Dn, 0xda, 0, HTH).ss(Z, 0x11, 0x80, True, True),
|
|
create_door(player, 'Eastern Attic Start WS', Nrml).dir(We, 0xda, Bot, High).trap(0x4).pos(0),
|
|
create_door(player, 'Eastern False Switches ES', Nrml).dir(Ea, 0xd9, Bot, High).trap(0x1).pos(2),
|
|
create_door(player, 'Eastern False Switches WS', Intr).dir(We, 0xd9, Bot, High).pos(1),
|
|
create_door(player, 'Eastern Cannonball Hell ES', Intr).dir(Ea, 0xd9, Bot, High).pos(1),
|
|
create_door(player, 'Eastern Cannonball Hell WS', Nrml).dir(We, 0xd9, Bot, High).trap(0x4).pos(0),
|
|
create_door(player, 'Eastern Single Eyegore ES', Nrml).dir(Ea, 0xd8, Bot, High).pos(2),
|
|
create_door(player, 'Eastern Single Eyegore NE', Intr).dir(No, 0xd8, Right, High).pos(1),
|
|
create_door(player, 'Eastern Duo Eyegores SE', Intr).dir(So, 0xd8, Right, High).pos(1),
|
|
create_door(player, 'Eastern Duo Eyegores NE', Nrml).dir(No, 0xd8, Right, High).trap(0x4).pos(0),
|
|
create_door(player, 'Eastern Boss SE', Nrml).dir(So, 0xc8, Right, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'Eastern Palace Boss', Lgcl),
|
|
|
|
# Desert Palace
|
|
create_door(player, 'Desert Main Lobby S', Nrml).dir(So, 0x84, Mid, High).pos(0).portal(Z, 0x22),
|
|
create_door(player, 'Desert Main Lobby NW Edge', Open).dir(No, 0x84, None, High).edge(3, A, 0x20),
|
|
create_door(player, 'Desert Main Lobby N Edge', Open).dir(No, 0x84, None, High).edge(4, A, 0xa0),
|
|
create_door(player, 'Desert Main Lobby NE Edge', Open).dir(No, 0x84, None, High).edge(5, S, 0x20),
|
|
create_door(player, 'Desert Main Lobby E Edge', Open).dir(Ea, 0x84, None, High).edge(5, S, 0xa0),
|
|
create_door(player, 'Desert Main Lobby Left Path', Lgcl),
|
|
create_door(player, 'Desert Main Lobby Right Path', Lgcl),
|
|
create_door(player, 'Desert Left Alcove Path', Lgcl),
|
|
create_door(player, 'Desert Right Alcove Path', Lgcl),
|
|
create_door(player, 'Desert Dead End Edge', Open).dir(So, 0x74, None, High).edge(4, Z, 0xa0),
|
|
create_door(player, 'Desert East Wing W Edge', Open).dir(We, 0x85, None, High).edge(5, A, 0xa0),
|
|
create_door(player, 'Desert East Wing N Edge', Open).dir(No, 0x85, None, High).edge(6, A, 0x20),
|
|
create_door(player, 'Desert East Lobby S', Nrml).dir(So, 0x85, Right, High).pos(2).portal(X, 0x00),
|
|
create_door(player, 'Desert East Lobby WS', Intr).dir(We, 0x85, Bot, High).pos(3),
|
|
create_door(player, 'Desert East Wing ES', Intr).dir(Ea, 0x85, Bot, High).pos(3),
|
|
create_door(player, 'Desert East Wing Key Door EN', Intr).dir(Ea, 0x85, Top, High).small_key().pos(1),
|
|
create_door(player, 'Desert Compass Key Door WN', Intr).dir(We, 0x85, Top, High).small_key().pos(1),
|
|
create_door(player, 'Desert Compass NE', Nrml).dir(No, 0x85, Right, High).trap(0x4).pos(0),
|
|
create_door(player, 'Desert Cannonball S', Nrml).dir(So, 0x75, Right, High).pos(1).portal(X, 0x02),
|
|
create_door(player, 'Desert Arrow Pot Corner S Edge', Open).dir(So, 0x75, None, High).edge(6, Z, 0x20),
|
|
create_door(player, 'Desert Arrow Pot Corner W Edge', Open).dir(We, 0x75, None, High).edge(2, Z, 0x20),
|
|
create_door(player, 'Desert Arrow Pot Corner NW', Intr).dir(No, 0x75, Left, High).pos(0),
|
|
create_door(player, 'Desert Trap Room SW', Intr).dir(So, 0x75, Left, High).pos(0),
|
|
create_door(player, 'Desert North Hall SE Edge', Open).dir(So, 0x74, None, High).edge(5, X, 0x20),
|
|
create_door(player, 'Desert North Hall SW Edge', Open).dir(So, 0x74, None, High).edge(3, Z, 0x20),
|
|
create_door(player, 'Desert North Hall W Edge', Open).dir(We, 0x74, None, High).edge(1, Z, 0x20),
|
|
create_door(player, 'Desert North Hall E Edge', Open).dir(Ea, 0x74, None, High).edge(2, X, 0x20),
|
|
create_door(player, 'Desert North Hall NW', Intr).dir(No, 0x74, Left, High).pos(1),
|
|
create_door(player, 'Desert Map SW', Intr).dir(So, 0x74, Left, High).pos(1),
|
|
create_door(player, 'Desert North Hall NE', Intr).dir(No, 0x74, Right, High).pos(0),
|
|
create_door(player, 'Desert Map SE', Intr).dir(So, 0x74, Right, High).pos(0),
|
|
create_door(player, 'Desert Sandworm Corner S Edge', Open).dir(So, 0x73, None, High).edge(2, X, 0x20),
|
|
create_door(player, 'Desert Sandworm Corner E Edge', Open).dir(Ea, 0x73, None, High).edge(1, X, 0x20),
|
|
create_door(player, 'Desert Sandworm Corner NE', Intr).dir(No, 0x73, Right, High).pos(2),
|
|
create_door(player, 'Desert Bonk Torch SE', Intr).dir(So, 0x73, Right, High).pos(2),
|
|
create_door(player, 'Desert Sandworm Corner WS', Intr).dir(We, 0x73, Bot, High).pos(1),
|
|
create_door(player, 'Desert Circle of Pots ES', Intr).dir(Ea, 0x73, Bot, High).pos(1),
|
|
create_door(player, 'Desert Circle of Pots NW', Intr).dir(No, 0x73, Left, High).pos(0),
|
|
create_door(player, 'Desert Big Chest SW', Intr).dir(So, 0x73, Left, High).pos(0),
|
|
create_door(player, 'Desert West Wing N Edge', Open).dir(No, 0x83, None, High).edge(2, S, 0x20),
|
|
create_door(player, 'Desert West Wing WS', Intr).dir(We, 0x83, Bot, High).pos(2),
|
|
create_door(player, 'Desert West S', Nrml).dir(So, 0x83, Left, High).pos(1).portal(Z, 0x00),
|
|
create_door(player, 'Desert West Lobby ES', Intr).dir(Ea, 0x83, Bot, High).pos(2),
|
|
create_door(player, 'Desert West Lobby NW', Intr).dir(No, 0x83, Left, High).pos(0),
|
|
create_door(player, 'Desert Fairy Fountain SW', Intr).dir(So, 0x83, Left, High).pos(0),
|
|
# Desert Back
|
|
create_door(player, 'Desert Back Lobby S', Nrml).dir(So, 0x63, Left, High).pos(2).portal(Z, 0x00),
|
|
create_door(player, 'Desert Back Lobby NW', Intr).dir(No, 0x63, Left, High).pos(1),
|
|
create_door(player, 'Desert Tiles 1 SW', Intr).dir(So, 0x63, Left, High).pos(1),
|
|
create_door(player, 'Desert Tiles 1 Up Stairs', Sprl).dir(Up, 0x63, 0, HTH).ss(A, 0x1b, 0x6c, True).small_key().pos(0),
|
|
create_door(player, 'Desert Bridge Down Stairs', Sprl).dir(Dn, 0x53, 0, HTH).ss(A, 0x0f, 0x80, True),
|
|
create_door(player, 'Desert Bridge SW', Intr).dir(So, 0x53, Left, High).pos(0),
|
|
create_door(player, 'Desert Four Statues NW', Intr).dir(No, 0x53, Left, High).pos(0),
|
|
create_door(player, 'Desert Four Statues ES', Intr).dir(Ea, 0x53, Bot, High).pos(1),
|
|
create_door(player, 'Desert Beamos Hall WS', Intr).dir(We, 0x53, Bot, High).pos(1),
|
|
create_door(player, 'Desert Beamos Hall NE', Nrml).dir(No, 0x53, Right, High).small_key().pos(2),
|
|
create_door(player, 'Desert Tiles 2 SE', Nrml).dir(So, 0x43, Right, High).small_key().pos(2).kill().portal(X, 0x00),
|
|
create_door(player, 'Desert Tiles 2 NE', Intr).dir(No, 0x43, Right, High).small_key().pos(1),
|
|
create_door(player, 'Desert Wall Slide SE', Intr).dir(So, 0x43, Right, High).small_key().pos(1),
|
|
create_door(player, 'Desert Wall Slide NW', Nrml).dir(No, 0x43, Left, High).big_key().pos(0).no_entrance(),
|
|
create_door(player, 'Desert Boss SW', Nrml).dir(So, 0x33, Left, High).no_exit().trap(0x4).pos(0).portal(Z, 0x00),
|
|
create_door(player, 'Desert Palace Boss', Lgcl),
|
|
|
|
# Hera
|
|
create_door(player, 'Hera Lobby S', Nrml).dir(So, 0x77, Mid, Low).pos(0).portal(Z, 0x22, 1),
|
|
create_door(player, 'Hera Lobby to Front Barrier - Blue', Lgcl),
|
|
create_door(player, 'Hera Lobby to Crystal', Lgcl),
|
|
create_door(player, 'Hera Lobby Crystal Exit', Lgcl),
|
|
create_door(player, 'Hera Front to Lobby Barrier - Blue', Lgcl),
|
|
create_door(player, 'Hera Front to Crystal', Lgcl),
|
|
create_door(player, 'Hera Front Crystal Exit', Lgcl),
|
|
create_door(player, 'Hera Front to Down Stairs Barrier - Blue', Lgcl),
|
|
create_door(player, 'Hera Down Stairs to Front Barrier - Blue', Lgcl),
|
|
create_door(player, 'Hera Down Stairs Landing to Ranged Crystal', Lgcl),
|
|
create_door(player, 'Hera Down Stairs Landing Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'Hera Front to Up Stairs Barrier - Orange', Lgcl),
|
|
create_door(player, 'Hera Up Stairs to Front Barrier - Orange', Lgcl),
|
|
create_door(player, 'Hera Up Stairs Landing to Ranged Crystal', Lgcl),
|
|
create_door(player, 'Hera Up Stairs Landing Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'Hera Front to Back Barrier - Orange', Lgcl),
|
|
create_door(player, 'Hera Front to Back Bypass', Lgcl),
|
|
create_door(player, 'Hera Back to Front Barrier - Orange', Lgcl),
|
|
create_door(player, 'Hera Back to Ranged Crystal', Lgcl),
|
|
create_door(player, 'Hera Back Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'Hera Lobby Down Stairs', Sprl).dir(Dn, 0x77, 3, HTL).ss(Z, 0x21, 0x90, False, True),
|
|
create_door(player, 'Hera Lobby Key Stairs', Sprl).dir(Dn, 0x77, 1, HTL).ss(A, 0x12, 0x80).small_key().pos(1),
|
|
create_door(player, 'Hera Lobby Up Stairs', Sprl).dir(Up, 0x77, 2, HTL).ss(X, 0x2b, 0x5c, False, True),
|
|
create_door(player, 'Hera Basement Cage Up Stairs', Sprl).dir(Up, 0x87, 3, LTH).ss(Z, 0x42, 0x7c, True, True),
|
|
create_door(player, 'Hera Basement Cage to Crystal', Lgcl),
|
|
create_door(player, 'Hera Basement Cage Crystal Exit', Lgcl),
|
|
create_door(player, 'Hera Tile Room Up Stairs', Sprl).dir(Up, 0x87, 1, LTH).ss(A, 0x32, 0x6c, True, True),
|
|
create_door(player, 'Hera Tile Room EN', Intr).dir(Ea, 0x87, Top, High).pos(0),
|
|
create_door(player, 'Hera Tridorm WN', Intr).dir(We, 0x87, Top, High).pos(0),
|
|
create_door(player, 'Hera Tridorm to Crystal', Lgcl),
|
|
create_door(player, 'Hera Tridorm Crystal Exit', Lgcl),
|
|
create_door(player, 'Hera Tridorm SE', Intr).dir(So, 0x87, Right, High).pos(1),
|
|
create_door(player, 'Hera Torches NE', Intr).dir(No, 0x87, Right, High).pos(1),
|
|
create_door(player, 'Hera Beetles Down Stairs', Sprl).dir(Dn, 0x31, 2, LTH).ss(X, 0x3a, 0x70, True, True),
|
|
create_door(player, 'Hera Beetles WS', Intr).dir(We, 0x31, Bot, High).pos(1),
|
|
create_door(player, 'Hera Beetles Holes Front', Hole),
|
|
create_door(player, 'Hera Beetles Holes Landing', Hole),
|
|
create_door(player, 'Hera Startile Corner ES', Intr).dir(Ea, 0x31, Bot, High).pos(1),
|
|
create_door(player, 'Hera Startile Corner NW', Intr).dir(No, 0x31, Left, High).big_key().pos(0),
|
|
create_door(player, 'Hera Startile Corner Holes Front', Hole),
|
|
create_door(player, 'Hera Startile Corner Holes Landing', Hole),
|
|
# technically ugly but causes lots of failures in basic
|
|
create_door(player, 'Hera Startile Wide SW', Intr).dir(So, 0x31, Left, High).pos(0),
|
|
create_door(player, 'Hera Startile Wide Up Stairs', Sprl).dir(Up, 0x31, 0, HTH).ss(S, 0x6b, 0xac, False, True),
|
|
create_door(player, 'Hera Startile Wide Holes', Hole),
|
|
create_door(player, 'Hera Startile Wide to Crystal', Lgcl),
|
|
create_door(player, 'Hera Startile Wide Crystal Exit', Lgcl),
|
|
create_door(player, 'Hera 4F Down Stairs', Sprl).dir(Dn, 0x27, 0, HTH).ss(S, 0x62, 0xc0),
|
|
create_door(player, 'Hera 4F Up Stairs', Sprl).dir(Up, 0x27, 1, HTH).ss(A, 0x6b, 0x2c),
|
|
create_door(player, 'Hera 4F Holes', Hole),
|
|
create_door(player, 'Hera Big Chest Hook Path', Lgcl),
|
|
create_door(player, 'Hera Big Chest Landing Exit', Lgcl),
|
|
create_door(player, 'Hera Big Chest Landing Holes', Hole),
|
|
create_door(player, 'Hera 5F Down Stairs', Sprl).dir(Dn, 0x17, 1, HTH).ss(A, 0x62, 0x40),
|
|
create_door(player, 'Hera 5F Up Stairs', Sprl).dir(Up, 0x17, 0, HTH).ss(S, 0x6a, 0x9c),
|
|
create_door(player, 'Hera 5F Star Hole', Hole),
|
|
create_door(player, 'Hera 5F Pothole Chain', Hole),
|
|
create_door(player, 'Hera 5F Normal Holes', Hole),
|
|
create_door(player, 'Hera 5F Orange Path', Lgcl),
|
|
create_door(player, 'Hera Fairies\' Warp', Warp),
|
|
create_door(player, 'Hera Boss Down Stairs', Sprl).dir(Dn, 0x07, 0, HTH).ss(S, 0x61, 0xb0).kill(),
|
|
create_door(player, 'Hera Boss Outer Hole', Hole),
|
|
create_door(player, 'Hera Boss Inner Hole', Hole),
|
|
create_door(player, 'Tower of Hera Boss', Lgcl),
|
|
|
|
# Castle Tower
|
|
create_door(player, 'Tower Lobby S', Nrml).dir(So, 0xe0, Left, High).pos(3).portal(Z, 0x00),
|
|
create_door(player, 'Tower Lobby NW', Intr).dir(No, 0xe0, Left, High).pos(1),
|
|
create_door(player, 'Tower Gold Knights SW', Intr).dir(So, 0xe0, Left, High).pos(1),
|
|
create_door(player, 'Tower Gold Knights EN', Intr).dir(Ea, 0xe0, Top, High).pos(0),
|
|
create_door(player, 'Tower Room 03 WN', Intr).dir(We, 0xe0, Bot, High).pos(0),
|
|
create_door(player, 'Tower Room 03 Up Stairs', Sprl).dir(Up, 0xe0, 0, HTH).ss(S, 0x1a, 0x6c, True, True).small_key().pos(2),
|
|
create_door(player, 'Tower Lone Statue Down Stairs', Sprl).dir(Dn, 0xd0, 0, HTH).ss(S, 0x11, 0x80, True, True),
|
|
create_door(player, 'Tower Lone Statue WN', Intr).dir(We, 0xd0, Top, High).pos(1),
|
|
create_door(player, 'Tower Dark Maze EN', Intr).dir(Ea, 0xd0, Top, High).pos(1),
|
|
create_door(player, 'Tower Dark Maze ES', Intr).dir(Ea, 0xd0, Bot, High).small_key().pos(0),
|
|
create_door(player, 'Tower Dark Chargers WS', Intr).dir(We, 0xd0, Bot, High).small_key().pos(0),
|
|
create_door(player, 'Tower Dark Chargers Up Stairs', Sprl).dir(Up, 0xd0, 2, HTH).ss(X, 0x1b, 0x8c, True, True),
|
|
create_door(player, 'Tower Dual Statues Down Stairs', Sprl).dir(Dn, 0xc0, 2, HTH).ss(X, 0x12, 0xa0, True, True),
|
|
create_door(player, 'Tower Dual Statues WS', Intr).dir(We, 0xc0, Bot, High).pos(1),
|
|
create_door(player, 'Tower Dark Pits ES', Intr).dir(Ea, 0xc0, Bot, High).pos(1),
|
|
create_door(player, 'Tower Dark Pits EN', Intr).dir(Ea, 0xc0, Top, High).pos(0),
|
|
create_door(player, 'Tower Dark Archers WN', Intr).dir(We, 0xc0, Top, High).pos(0),
|
|
create_door(player, 'Tower Dark Archers Up Stairs', Sprl).dir(Up, 0xc0, 0, HTH).ss(S, 0x1b, 0x6c, True, True).small_key().pos(2),
|
|
create_door(player, 'Tower Red Spears Down Stairs', Sprl).dir(Dn, 0xb0, 0, HTH).ss(S, 0x12, 0x80, True, True),
|
|
create_door(player, 'Tower Red Spears WN', Intr).dir(We, 0xb0, Top, High).pos(1),
|
|
create_door(player, 'Tower Red Guards EN', Intr).dir(Ea, 0xb0, Top, High).pos(1),
|
|
create_door(player, 'Tower Red Guards SW', Intr).dir(So, 0xb0, Left, High).pos(0),
|
|
create_door(player, 'Tower Circle of Pots NW', Intr).dir(No, 0xb0, Left, High).pos(0),
|
|
create_door(player, 'Tower Circle of Pots ES', Intr).dir(Ea, 0xb0, Bot, High).small_key().pos(2),
|
|
create_door(player, 'Tower Pacifist Run WS', Intr).dir(We, 0xb0, Bot, High).small_key().pos(2),
|
|
create_door(player, 'Tower Pacifist Run Up Stairs', Sprl).dir(Up, 0xb0, 2, LTH).ss(X, 0x33, 0x8c, True, True),
|
|
create_door(player, 'Tower Push Statue Down Stairs', Sprl).dir(Dn, 0x40, 0, HTL).ss(X, 0x12, 0xa0, True, True).kill(),
|
|
create_door(player, 'Tower Push Statue WS', Intr).dir(We, 0x40, Bot, Low).pos(0),
|
|
create_door(player, 'Tower Catwalk ES', Intr).dir(Ea, 0x40, Bot, Low).pos(0),
|
|
create_door(player, 'Tower Catwalk North Stairs', StrS).dir(No, 0x40, Left, High),
|
|
create_door(player, 'Tower Antechamber South Stairs', StrS).dir(So, 0x30, Left, High),
|
|
create_door(player, 'Tower Antechamber NW', Intr).dir(No, 0x30, Left, High).pos(1),
|
|
create_door(player, 'Tower Altar SW', Intr).dir(So, 0x30, Left, High).no_exit().trap(0x2).pos(1),
|
|
create_door(player, 'Tower Altar NW', Nrml).dir(No, 0x30, Left, High).pos(0),
|
|
create_door(player, 'Tower Agahnim 1 SW', Nrml).dir(So, 0x20, Left, High).no_exit().trap(0x4).pos(0),
|
|
|
|
# Palace of Darkness
|
|
create_door(player, 'PoD Lobby S', Nrml).dir(So, 0x4a, Mid, High).pos(4).portal(Z, 0x20),
|
|
create_door(player, 'PoD Lobby N', Intr).dir(No, 0x4a, Mid, High).pos(3),
|
|
create_door(player, 'PoD Lobby NW', Intr).dir(No, 0x4a, Left, High).pos(0),
|
|
create_door(player, 'PoD Lobby NE', Intr).dir(No, 0x4a, Right, High).pos(1),
|
|
create_door(player, 'PoD Left Cage SW', Intr).dir(So, 0x4a, Left, High).pos(0),
|
|
create_door(player, 'PoD Middle Cage S', Intr).dir(So, 0x4a, Mid, High).pos(3),
|
|
create_door(player, 'PoD Middle Cage SE', Intr).dir(So, 0x4a, Right, High).pos(1),
|
|
create_door(player, 'PoD Left Cage Down Stairs', Sprl).dir(Dn, 0x4a, 1, HTH).ss(A, 0x12, 0x80, False, True),
|
|
create_door(player, 'PoD Middle Cage Down Stairs', Sprl).dir(Dn, 0x4a, 0, HTH).ss(S, 0x12, 0x80, False, True),
|
|
create_door(player, 'PoD Middle Cage N', Nrml).dir(No, 0x4a, Mid, High).small_key().pos(2),
|
|
create_door(player, 'PoD Shooter Room Up Stairs', Sprl).dir(Up, 0x09, 1, HTH).ss(A, 0x1b, 0x6c, True, True),
|
|
create_door(player, 'PoD Warp Room Up Stairs', Sprl).dir(Up, 0x09, 0, HTH).ss(S, 0x1a, 0x6c, True, True),
|
|
create_door(player, 'PoD Warp Room Warp', Warp),
|
|
create_door(player, 'PoD Pit Room S', Nrml).dir(So, 0x3a, Mid, High).small_key().pos(0).portal(Z, 0x22),
|
|
create_door(player, 'PoD Pit Room NW', Nrml).dir(No, 0x3a, Left, High).pos(1),
|
|
create_door(player, 'PoD Pit Room NE', Nrml).dir(No, 0x3a, Right, High).pos(2),
|
|
create_door(player, 'PoD Pit Room Freefall', Hole),
|
|
create_door(player, 'PoD Pit Room Bomb Hole', Hole),
|
|
create_door(player, 'PoD Pit Room Block Path N', Lgcl),
|
|
create_door(player, 'PoD Pit Room Block Path S', Lgcl),
|
|
create_door(player, 'PoD Big Key Landing Hole', Hole),
|
|
create_door(player, 'PoD Big Key Landing Down Stairs', Sprl).dir(Dn, 0x3a, 0, HTH).ss(A, 0x11, 0x00).kill(),
|
|
create_door(player, 'PoD Basement Ledge Up Stairs', Sprl).dir(Up, 0x0a, 0, HTH).ss(A, 0x1a, 0xec).small_key().pos(0),
|
|
create_door(player, 'PoD Basement Ledge Drop Down', Lgcl),
|
|
create_door(player, 'PoD Stalfos Basement Warp', Warp),
|
|
create_door(player, 'PoD Arena Main SW', Nrml).dir(So, 0x2a, Left, High).pos(4).portal(Z, 0x22),
|
|
create_door(player, 'PoD Arena Bridge SE', Nrml).dir(So, 0x2a, Right, High).pos(5).portal(X, 0x22),
|
|
create_door(player, 'PoD Arena Main NW', Nrml).dir(No, 0x2a, Left, High).small_key().pos(1),
|
|
create_door(player, 'PoD Arena Main NE', Nrml).dir(No, 0x2a, Right, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'PoD Arena Crystals E', Nrml).dir(Ea, 0x2a, Mid, High).pos(3),
|
|
create_door(player, 'PoD Arena Landing Bonk Path', Lgcl),
|
|
create_door(player, 'PoD Arena North Drop Down', Lgcl),
|
|
create_door(player, 'PoD Arena Bridge Drop Down', Lgcl),
|
|
create_door(player, 'PoD Arena North to Landing Barrier - Orange', Lgcl),
|
|
create_door(player, 'PoD Arena Main to Ranged Crystal', Lgcl),
|
|
create_door(player, 'PoD Arena Main to Landing Barrier - Blue', Lgcl),
|
|
create_door(player, 'PoD Arena Main to Landing Bypass', Lgcl),
|
|
create_door(player, 'PoD Arena Main to Right Bypass', Lgcl),
|
|
create_door(player, 'PoD Arena Main Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'PoD Arena Bridge to Ranged Crystal', Lgcl),
|
|
create_door(player, 'PoD Arena Bridge Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'PoD Arena Landing to Main Barrier - Blue', Lgcl),
|
|
create_door(player, 'PoD Arena Landing to Right Barrier - Blue', Lgcl),
|
|
create_door(player, 'PoD Arena Landing to North Barrier - Orange', Lgcl),
|
|
create_door(player, 'PoD Arena Right to Landing Barrier - Blue', Lgcl),
|
|
create_door(player, 'PoD Arena Right to Ranged Crystal', Lgcl), # considered out of logic
|
|
create_door(player, 'PoD Arena Right Ranged Crystal Exit', Lgcl).no_exit(), # blocked here for pre-validate
|
|
create_door(player, 'PoD Arena Ledge to Ranged Crystal', Lgcl), # considered out of logic
|
|
create_door(player, 'PoD Arena Ledge Ranged Crystal Exit', Lgcl).no_exit(), # blocked here for pre-validate
|
|
create_door(player, 'PoD Arena Ledge ES', Nrml).dir(Ea, 0x2a, Bot, High).pos(2),
|
|
create_door(player, 'PoD Sexy Statue W', Nrml).dir(We, 0x2b, Mid, High).pos(3),
|
|
create_door(player, 'PoD Sexy Statue NW', Nrml).dir(No, 0x2b, Left, High).trap(0x1).pos(2),
|
|
create_door(player, 'PoD Map Balcony Drop Down', Lgcl),
|
|
create_door(player, 'PoD Map Balcony to Ranged Crystal', Lgcl),
|
|
create_door(player, 'PoD Map Balcony Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'PoD Map Balcony ES', Intr).dir(Ea, 0x2b, Bot, High).pos(0),
|
|
create_door(player, 'PoD Fairy Pool WS', Intr).dir(We, 0x2b, Bot, High).pos(0),
|
|
create_door(player, 'PoD Map Balcony WS', Nrml).dir(We, 0x2b, Bot, High).pos(1),
|
|
create_door(player, 'PoD Map Balcony South Stairs', StrS).dir(So, 0x2b, Left, High),
|
|
create_door(player, 'PoD Conveyor North Stairs', StrS).dir(No, 0x3b, Left, High),
|
|
create_door(player, 'PoD Conveyor SW', Nrml).dir(So, 0x3b, Left, High).pos(0).portal(Z, 0x02),
|
|
create_door(player, 'PoD Mimics 1 NW', Nrml).dir(No, 0x4b, Left, High).trap(0x4).pos(0),
|
|
create_door(player, 'PoD Mimics 1 SW', Intr).dir(So, 0x4b, Left, High).pos(1),
|
|
create_door(player, 'PoD Jelly Hall NW', Intr).dir(No, 0x4b, Left, High).pos(1),
|
|
create_door(player, 'PoD Jelly Hall NE', Intr).dir(No, 0x4b, Right, High).pos(2),
|
|
create_door(player, 'PoD Warp Hint SE', Intr).dir(So, 0x4b, Right, High).pos(2),
|
|
create_door(player, 'PoD Warp Hint Warp', Warp),
|
|
create_door(player, 'PoD Falling Bridge SW', Nrml).dir(So, 0x1a, Left, High).small_key().pos(3).portal(Z, 0x02),
|
|
create_door(player, 'PoD Falling Bridge WN', Nrml).dir(We, 0x1a, Top, High).small_key().pos(1),
|
|
create_door(player, 'PoD Falling Bridge EN', Intr).dir(Ea, 0x1a, Top, High).pos(4),
|
|
create_door(player, 'PoD Falling Bridge Path N', Lgcl),
|
|
create_door(player, 'PoD Falling Bridge Path S', Lgcl),
|
|
create_door(player, 'PoD Falling Bridge Mid Path S', Lgcl),
|
|
create_door(player, 'PoD Falling Bridge Mid Path N', Lgcl),
|
|
create_door(player, 'PoD Big Chest Balcony W', Nrml).dir(We, 0x1a, Mid, High).pos(2),
|
|
create_door(player, 'PoD Dark Maze EN', Nrml).dir(Ea, 0x19, Top, High).small_key().pos(1),
|
|
create_door(player, 'PoD Dark Maze E', Nrml).dir(Ea, 0x19, Mid, High).pos(0),
|
|
create_door(player, 'PoD Compass Room WN', Intr).dir(We, 0x1a, Top, High).pos(4),
|
|
create_door(player, 'PoD Compass Room SE', Intr).dir(So, 0x1a, Mid, High).small_key().pos(0),
|
|
create_door(player, 'PoD Harmless Hellway NE', Intr).dir(No, 0x1a, Right, High).small_key().pos(0),
|
|
create_door(player, 'PoD Harmless Hellway SE', Nrml).dir(So, 0x1a, Right, High).pos(5).portal(X, 0x00),
|
|
create_door(player, 'PoD Compass Room W Down Stairs', Sprl).dir(Dn, 0x1a, 0, HTH).ss(S, 0x12, 0x50, True, True),
|
|
create_door(player, 'PoD Compass Room E Down Stairs', Sprl).dir(Dn, 0x1a, 1, HTH).ss(S, 0x11, 0xb0, True, True),
|
|
create_door(player, 'PoD Dark Basement W Up Stairs', Sprl).dir(Up, 0x6a, 0, HTH).ss(S, 0x1b, 0x3c, True),
|
|
create_door(player, 'PoD Dark Basement E Up Stairs', Sprl).dir(Up, 0x6a, 1, HTH).ss(S, 0x1b, 0x9c, True),
|
|
create_door(player, 'PoD Dark Alley NE', Nrml).dir(No, 0x6a, Right, High).big_key().pos(0),
|
|
create_door(player, 'PoD Mimics 2 SW', Nrml).dir(So, 0x1b, Left, High).pos(1).portal(Z, 0x00),
|
|
create_door(player, 'PoD Mimics 2 NW', Intr).dir(No, 0x1b, Left, High).pos(0),
|
|
create_door(player, 'PoD Bow Statue SW', Intr).dir(So, 0x1b, Left, High).pos(0),
|
|
create_door(player, 'PoD Bow Statue Left to Right Barrier - Orange', Lgcl),
|
|
create_door(player, 'PoD Bow Statue Left to Right Bypass', Lgcl),
|
|
create_door(player, 'PoD Bow Statue Left to Crystal', Lgcl),
|
|
create_door(player, 'PoD Bow Statue Left Crystal Exit', Lgcl),
|
|
create_door(player, 'PoD Bow Statue Right to Left Barrier - Orange', Lgcl),
|
|
create_door(player, 'PoD Bow Statue Right to Ranged Crystal', Lgcl),
|
|
create_door(player, 'PoD Bow Statue Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'PoD Bow Statue Down Ladder', Lddr).dir(So, 0x1b, 1, High).no_entrance(),
|
|
create_door(player, 'PoD Dark Pegs Up Ladder', Lddr).dir(No, 0x0b, 0, High),
|
|
create_door(player, 'PoD Dark Pegs Landing to Right', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Landing to Ranged Crystal', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Right to Landing', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Right to Middle Barrier - Orange', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Right to Middle Bypass', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Middle to Right Barrier - Orange', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Middle to Left Barrier - Blue', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Middle to Ranged Crystal', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Middle to Left Bypass', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Left to Middle Barrier - Blue', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Left to Ranged Crystal', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Landing Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Middle Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs Left Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'PoD Dark Pegs WN', Intr).dir(We, 0x0b, Mid, High).small_key().pos(2),
|
|
create_door(player, 'PoD Lonely Turtle SW', Intr).dir(So, 0x0b, Mid, High).pos(0),
|
|
create_door(player, 'PoD Lonely Turtle EN', Intr).dir(Ea, 0x0b, Mid, High).small_key().pos(2),
|
|
create_door(player, 'PoD Turtle Party ES', Intr).dir(Ea, 0x0b, Mid, High).pos(1),
|
|
create_door(player, 'PoD Turtle Party NW', Intr).dir(No, 0x0b, Mid, High).pos(0),
|
|
create_door(player, 'PoD Callback WS', Intr).dir(We, 0x0b, Mid, High).pos(1),
|
|
create_door(player, 'PoD Callback Warp', Warp),
|
|
create_door(player, 'PoD Boss SE', Nrml).dir(So, 0x5a, Right, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'Palace of Darkness Boss', Lgcl),
|
|
|
|
create_door(player, 'Swamp Lobby S', Nrml).dir(So, 0x28, Mid, High).pos(1).portal(Z, 0x22),
|
|
create_door(player, 'Swamp Lobby Moat', Lgcl),
|
|
create_door(player, 'Swamp Entrance Down Stairs', Sprl).dir(Dn, 0x28, 0, HTH).ss(A, 0x11, 0x80).small_key().pos(0),
|
|
create_door(player, 'Swamp Entrance Moat', Lgcl),
|
|
create_door(player, 'Swamp Pot Row Up Stairs', Sprl).dir(Up, 0x38, 0, HTH).ss(A, 0x1a, 0x6c, True),
|
|
create_door(player, 'Swamp Pot Row WN', Nrml).dir(We, 0x38, Top, High).pos(0),
|
|
create_door(player, 'Swamp Pot Row WS', Nrml).dir(We, 0x38, Bot, High).small_key().pos(1),
|
|
create_door(player, 'Swamp Map Ledge EN', Nrml).dir(Ea, 0x37, Top, High).pos(1),
|
|
create_door(player, 'Swamp Trench 1 Approach ES', Nrml).dir(Ea, 0x37, Bot, High).small_key().pos(3),
|
|
create_door(player, 'Swamp Trench 1 Approach Dry', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Approach Key', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Approach Swim Depart', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Nexus Approach', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Nexus Key', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Nexus N', Intr).dir(No, 0x37, Mid, Low).pos(5),
|
|
create_door(player, 'Swamp Trench 1 Alcove S', Intr).dir(So, 0x37, Mid, Low).pos(5),
|
|
create_door(player, 'Swamp Trench 1 Key Ledge Dry', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Key Approach', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Key Ledge Depart', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Key Ledge NW', Intr).dir(No, 0x37, Left, High).small_key().pos(2),
|
|
create_door(player, 'Swamp Trench 1 Departure Dry', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Departure Approach', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Departure Key', Lgcl),
|
|
create_door(player, 'Swamp Trench 1 Departure WS', Nrml).dir(We, 0x37, Bot, High).pos(4),
|
|
create_door(player, 'Swamp Hammer Switch SW', Intr).dir(So, 0x37, Left, High).small_key().pos(2),
|
|
create_door(player, 'Swamp Hammer Switch WN', Nrml).dir(We, 0x37, Top, High).pos(0),
|
|
create_door(player, 'Swamp Hub ES', Nrml).dir(Ea, 0x36, Bot, High).pos(4),
|
|
create_door(player, 'Swamp Hub S', Nrml).dir(So, 0x36, Mid, High).pos(5).portal(Z, 0x22, 1),
|
|
create_door(player, 'Swamp Hub WS', Nrml).dir(We, 0x36, Bot, High).pos(3),
|
|
create_door(player, 'Swamp Hub WN', Nrml).dir(We, 0x36, Top, High).small_key().pos(2),
|
|
create_door(player, 'Swamp Hub Hook Path', Lgcl),
|
|
create_door(player, 'Swamp Hub Side Hook Path', Lgcl),
|
|
create_door(player, 'Swamp Hub Dead Ledge EN', Nrml).dir(Ea, 0x36, Top, High).pos(0),
|
|
create_door(player, 'Swamp Hub North Ledge N', Nrml).dir(No, 0x36, Mid, High).small_key().pos(1),
|
|
create_door(player, 'Swamp Hub North Ledge Drop Down', Lgcl),
|
|
create_door(player, 'Swamp Donut Top N', Nrml).dir(No, 0x46, Mid, High).pos(0),
|
|
create_door(player, 'Swamp Donut Top SE', Intr).dir(So, 0x46, Right, High).pos(2),
|
|
create_door(player, 'Swamp Donut Bottom NE', Intr).dir(No, 0x46, Right, High).pos(2),
|
|
create_door(player, 'Swamp Donut Bottom NW', Intr).dir(No, 0x46, Left, High).pos(1),
|
|
create_door(player, 'Swamp Compass Donut SW', Intr).dir(So, 0x46, Left, High).pos(1),
|
|
create_door(player, 'Swamp Compass Donut Push Block', Lgcl),
|
|
create_door(player, 'Swamp Crystal Switch EN', Nrml).dir(Ea, 0x35, Top, High).small_key().pos(0),
|
|
create_door(player, 'Swamp Crystal Switch SE', Intr).dir(So, 0x35, Right, High).pos(3),
|
|
create_door(player, 'Swamp Crystal Switch Outer to Inner Barrier - Blue', Lgcl),
|
|
create_door(player, 'Swamp Crystal Switch Outer to Ranged Crystal', Lgcl),
|
|
create_door(player, 'Swamp Crystal Switch Outer to Inner Bypass', Lgcl),
|
|
create_door(player, 'Swamp Crystal Switch Outer Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'Swamp Crystal Switch Inner to Outer Barrier - Blue', Lgcl),
|
|
create_door(player, 'Swamp Crystal Switch Inner to Outer Bypass', Lgcl),
|
|
create_door(player, 'Swamp Crystal Switch Inner to Crystal', Lgcl),
|
|
create_door(player, 'Swamp Crystal Switch Inner Crystal Exit', Lgcl),
|
|
create_door(player, 'Swamp Shortcut NE', Intr).dir(No, 0x35, Right, High).pos(3),
|
|
create_door(player, 'Swamp Shortcut Blue Barrier', Lgcl),
|
|
create_door(player, 'Swamp Trench 2 Pots ES', Nrml).dir(Ea, 0x35, Bot, High).pos(4),
|
|
create_door(player, 'Swamp Trench 2 Pots Blue Barrier', Lgcl),
|
|
create_door(player, 'Swamp Trench 2 Pots Dry', Lgcl),
|
|
create_door(player, 'Swamp Trench 2 Pots Wet', Lgcl),
|
|
create_door(player, 'Swamp Trench 2 Blocks Pots', Lgcl),
|
|
create_door(player, 'Swamp Trench 2 Blocks N', Intr).dir(No, 0x35, Mid, Low).pos(5),
|
|
create_door(player, 'Swamp Trench 2 Alcove S', Intr).dir(So, 0x35, Mid, Low).pos(5),
|
|
create_door(player, 'Swamp Trench 2 Departure Wet', Lgcl),
|
|
create_door(player, 'Swamp Trench 2 Departure WS', Nrml).dir(We, 0x35, Bot, High).pos(2),
|
|
create_door(player, 'Swamp Big Key Ledge WN', Nrml).dir(We, 0x35, Top, High).pos(1),
|
|
create_door(player, 'Swamp West Shallows ES', Nrml).dir(Ea, 0x34, Bot, High).pos(1),
|
|
create_door(player, 'Swamp West Shallows Push Blocks', Lgcl),
|
|
create_door(player, 'Swamp West Block Path Up Stairs', Sprl).dir(Up, 0x34, 0, HTH).ss(Z, 0x1b, 0x6c),
|
|
create_door(player, 'Swamp West Block Path Drop Down', Lgcl),
|
|
create_door(player, 'Swamp West Ledge Drop Down', Lgcl),
|
|
create_door(player, 'Swamp West Ledge Hook Path', Lgcl),
|
|
create_door(player, 'Swamp Barrier Ledge Drop Down', Lgcl),
|
|
create_door(player, 'Swamp Barrier Ledge - Orange', Lgcl),
|
|
create_door(player, 'Swamp Barrier EN', Nrml).dir(Ea, 0x34, Top, High).pos(0),
|
|
create_door(player, 'Swamp Barrier - Orange', Lgcl),
|
|
create_door(player, 'Swamp Barrier Ledge Hook Path', Lgcl),
|
|
create_door(player, 'Swamp Attic Down Stairs', Sprl).dir(Dn, 0x54, 0, HTH).ss(Z, 0x12, 0x80).kill(),
|
|
create_door(player, 'Swamp Attic Left Pit', Hole),
|
|
create_door(player, 'Swamp Attic Right Pit', Hole),
|
|
create_door(player, 'Swamp Push Statue S', Nrml).dir(So, 0x26, Mid, High).small_key().pos(0).portal(Z, 0x20),
|
|
create_door(player, 'Swamp Push Statue NW', Intr).dir(No, 0x26, Left, High).pos(1),
|
|
create_door(player, 'Swamp Push Statue NE', Intr).dir(No, 0x26, Right, High).pos(2),
|
|
create_door(player, 'Swamp Push Statue Down Stairs', Sprl).dir(Dn, 0x26, 2, HTH).ss(X, 0x12, 0xc0, False, True),
|
|
create_door(player, 'Swamp Shooters SW', Intr).dir(So, 0x26, Left, High).pos(1),
|
|
create_door(player, 'Swamp Shooters EN', Intr).dir(Ea, 0x26, Top, High).pos(3),
|
|
create_door(player, 'Swamp Left Elbow WN', Intr).dir(We, 0x26, Top, High).pos(3),
|
|
create_door(player, 'Swamp Left Elbow Down Stairs', Sprl).dir(Dn, 0x26, 0, HTH).ss(S, 0x11, 0x40, True, True),
|
|
create_door(player, 'Swamp Right Elbow SE', Intr).dir(So, 0x26, Right, High).pos(2),
|
|
create_door(player, 'Swamp Right Elbow Down Stairs', Sprl).dir(Dn, 0x26, 1, HTH).ss(S, 0x12, 0xb0, True, True),
|
|
create_door(player, 'Swamp Drain Left Up Stairs', Sprl).dir(Up, 0x76, 0, HTH).ss(S, 0x1b, 0x2c, True, True),
|
|
create_door(player, 'Swamp Drain WN', Intr).dir(We, 0x76, Top, Low).pos(0),
|
|
create_door(player, 'Swamp Drain Right Switch', Lgcl),
|
|
create_door(player, 'Swamp Drain Right Up Stairs', Sprl).dir(Up, 0x76, 1, HTH).ss(S, 0x1b, 0x9c, True, True).kill(),
|
|
create_door(player, 'Swamp Flooded Room Up Stairs', Sprl).dir(Up, 0x76, 2, HTH).ss(X, 0x1a, 0xac, True, True),
|
|
create_door(player, 'Swamp Flooded Room WS', Intr).dir(We, 0x76, Bot, Low).pos(1),
|
|
create_door(player, 'Swamp Flooded Spot Ladder', Lgcl),
|
|
create_door(player, 'Swamp Flooded Room Ladder', Lgcl),
|
|
create_door(player, 'Swamp Basement Shallows NW', Nrml).dir(No, 0x76, Left, High).toggler().pos(2),
|
|
create_door(player, 'Swamp Basement Shallows EN', Intr).dir(Ea, 0x76, Top, High).pos(0),
|
|
create_door(player, 'Swamp Basement Shallows ES', Intr).dir(Ea, 0x76, Bot, High).pos(1),
|
|
create_door(player, 'Swamp Waterfall Room SW', Nrml).dir(So, 0x66, Left, Low).toggler().pos(1).portal(Z, 0x20, 1),
|
|
create_door(player, 'Swamp Waterfall Room NW', Intr).dir(No, 0x66, Left, Low).pos(3),
|
|
create_door(player, 'Swamp Waterfall Room NE', Intr).dir(No, 0x66, Right, Low).pos(0),
|
|
create_door(player, 'Swamp Refill SW', Intr).dir(So, 0x66, Left, Low).pos(3),
|
|
create_door(player, 'Swamp Behind Waterfall SE', Intr).dir(So, 0x66, Right, Low).pos(0),
|
|
create_door(player, 'Swamp Behind Waterfall Up Stairs', Sprl).dir(Up, 0x66, 0, HTH).ss(S, 0x1a, 0x6c, True, True),
|
|
create_door(player, 'Swamp C Down Stairs', Sprl).dir(Dn, 0x16, 0, HTH).ss(S, 0x11, 0x80, True, True),
|
|
create_door(player, 'Swamp C SE', Intr).dir(So, 0x16, Right, High).pos(2),
|
|
create_door(player, 'Swamp Waterway NE', Intr).dir(No, 0x16, Right, High).pos(2),
|
|
create_door(player, 'Swamp Waterway N', Intr).dir(No, 0x16, Mid, High).pos(0),
|
|
create_door(player, 'Swamp Waterway NW', Intr).dir(No, 0x16, Left, High).small_key().pos(1),
|
|
create_door(player, 'Swamp I S', Intr).dir(So, 0x16, Mid, High).pos(0),
|
|
create_door(player, 'Swamp T SW', Intr).dir(So, 0x16, Left, High).small_key().pos(1),
|
|
create_door(player, 'Swamp T NW', Nrml).dir(No, 0x16, Left, High).pos(3),
|
|
create_door(player, 'Swamp Boss SW', Nrml).dir(So, 0x06, Left, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'Swamp Palace Boss', Lgcl),
|
|
|
|
create_door(player, 'Skull 1 Lobby S', Nrml).dir(So, 0x58, Left, High).pos(4).portal(Z, 0x00),
|
|
create_door(player, 'Skull 1 Lobby WS', Nrml).dir(We, 0x58, Bot, High).small_key().pos(1),
|
|
create_door(player, 'Skull 1 Lobby ES', Intr).dir(Ea, 0x58, Bot, High).pos(5),
|
|
create_door(player, 'Skull Map Room WS', Intr).dir(We, 0x58, Bot, High).pos(5),
|
|
create_door(player, 'Skull Map Room SE', Nrml).dir(So, 0x58, Right, High).small_key().pos(2).portal(X, 0x02),
|
|
create_door(player, 'Skull Pot Circle WN', Intr).dir(We, 0x58, Top, High).pos(3),
|
|
create_door(player, 'Skull Pull Switch EN', Intr).dir(Ea, 0x58, Top, High).pos(3),
|
|
create_door(player, 'Skull Pot Circle Star Path', Lgcl),
|
|
create_door(player, 'Skull Pull Switch S', Intr).dir(So, 0x58, Left, High).pos(0),
|
|
create_door(player, 'Skull Big Chest N', Intr).dir(No, 0x58, Left, High).no_exit().pos(0),
|
|
create_door(player, 'Skull Big Chest Hookpath', Lgcl),
|
|
create_door(player, 'Skull Pinball NE', Nrml).dir(No, 0x68, Right, High).small_key().pos(1),
|
|
create_door(player, 'Skull Pinball WS', Nrml).dir(We, 0x68, Bot, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'Skull Compass Room NE', Nrml).dir(No, 0x67, Right, High).pos(0),
|
|
create_door(player, 'Skull Compass Room ES', Nrml).dir(Ea, 0x67, Bot, High).pos(2),
|
|
create_door(player, 'Skull Left Drop ES', Intr).dir(Ea, 0x67, Bot, High).pos(1),
|
|
create_door(player, 'Skull Compass Room WS', Intr).dir(We, 0x67, Bot, High).pos(1),
|
|
create_door(player, 'Skull Pot Prison ES', Nrml).dir(Ea, 0x57, Bot, High).small_key().pos(2),
|
|
create_door(player, 'Skull Pot Prison SE', Nrml).dir(So, 0x57, Right, High).pos(5).portal(X, 0x00),
|
|
create_door(player, 'Skull 2 East Lobby SW', Nrml).dir(So, 0x57, Left, High).pos(3).portal(Z, 0x00),
|
|
create_door(player, 'Skull 2 East Lobby WS', Nrml).dir(We, 0x57, Bot, High).pos(4),
|
|
create_door(player, 'Skull 2 East Lobby NW', Intr).dir(No, 0x57, Left, High).pos(1),
|
|
create_door(player, 'Skull Big Key SW', Intr).dir(So, 0x57, Left, High).pos(1),
|
|
create_door(player, 'Skull Big Key EN', Intr).dir(Ea, 0x57, Top, High).pos(0),
|
|
create_door(player, 'Skull Lone Pot WN', Intr).dir(We, 0x57, Top, High).pos(0),
|
|
create_door(player, 'Skull Small Hall ES', Nrml).dir(Ea, 0x56, Bot, High).pos(3),
|
|
create_door(player, 'Skull Small Hall WS', Intr).dir(We, 0x56, Bot, High).pos(2),
|
|
create_door(player, 'Skull 2 West Lobby S', Nrml).dir(So, 0x56, Left, High).pos(1).portal(Z, 0x00),
|
|
create_door(player, 'Skull 2 West Lobby ES', Intr).dir(Ea, 0x56, Bot, High).pos(2),
|
|
create_door(player, 'Skull 2 West Lobby NW', Intr).dir(No, 0x56, Left, High).small_key().pos(0),
|
|
create_door(player, 'Skull 2 West Lobby Pits', Lgcl),
|
|
create_door(player, 'Skull 2 West Lobby Ledge Pits', Lgcl),
|
|
create_door(player, 'Skull X Room SW', Intr).dir(So, 0x56, Left, High).small_key().pos(0),
|
|
create_door(player, 'Skull Back Drop Star Path', Lgcl),
|
|
create_door(player, 'Skull 3 Lobby SW', Nrml).dir(So, 0x59, Left, High).pos(1).portal(Z, 0x02),
|
|
create_door(player, 'Skull 3 Lobby NW', Nrml).dir(No, 0x59, Left, High).small_key().pos(0),
|
|
create_door(player, 'Skull 3 Lobby EN', Intr).dir(Ea, 0x59, Top, High).pos(2),
|
|
create_door(player, 'Skull East Bridge WN', Intr).dir(We, 0x59, Top, High).pos(2),
|
|
create_door(player, 'Skull East Bridge WS', Intr).dir(We, 0x59, Bot, High).pos(3),
|
|
create_door(player, 'Skull West Bridge Nook ES', Intr).dir(Ea, 0x59, Bot, High).pos(3),
|
|
create_door(player, 'Skull Star Pits SW', Nrml).dir(So, 0x49, Left, High).small_key().pos(2).portal(Z, 0x00),
|
|
create_door(player, 'Skull Star Pits ES', Intr).dir(Ea, 0x49, Bot, High).pos(3),
|
|
create_door(player, 'Skull Torch Room WS', Intr).dir(We, 0x49, Bot, High).pos(3),
|
|
create_door(player, 'Skull Torch Room WN', Intr).dir(We, 0x49, Top, High).pos(1),
|
|
create_door(player, 'Skull Vines EN', Intr).dir(Ea, 0x49, Top, High).pos(1),
|
|
create_door(player, 'Skull Vines NW', Nrml).dir(No, 0x49, Left, High).pos(0),
|
|
create_door(player, 'Skull Spike Corner SW', Nrml).dir(So, 0x39, Left, High).no_exit().trap(0x4).pos(0).portal(Z, 0x00),
|
|
create_door(player, 'Skull Spike Corner ES', Intr).dir(Ea, 0x39, Bot, High).small_key().pos(1),
|
|
create_door(player, 'Skull Final Drop WS', Intr).dir(We, 0x39, Bot, High).small_key().pos(1),
|
|
create_door(player, 'Skull Final Drop Hole', Hole),
|
|
create_door(player, 'Skull Woods Boss', Lgcl),
|
|
|
|
create_door(player, 'Thieves Lobby S', Nrml).dir(So, 0xdb, Mid, High).pos(1).portal(Z, 0x22),
|
|
create_door(player, 'Thieves Lobby N Edge', Open).dir(No, 0xdb, None, Low).edge(7, A, 0x10),
|
|
create_door(player, 'Thieves Lobby NE Edge', Open).dir(No, 0xdb, None, Low).edge(8, S, 0x18),
|
|
create_door(player, 'Thieves Lobby E', Nrml).dir(Ea, 0xdb, Mid, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'Thieves Big Chest Nook ES Edge', Open).dir(Ea, 0xdb, None, Low).edge(8, X, 0x50),
|
|
create_door(player, 'Thieves Ambush S Edge', Open).dir(So, 0xcb, None, Low).edge(7, Z, 0x10),
|
|
create_door(player, 'Thieves Ambush SE Edge', Open).dir(So, 0xcb, None, Low).edge(8, X, 0x18),
|
|
create_door(player, 'Thieves Ambush ES Edge', Open).dir(Ea, 0xcb, None, Low).edge(6, X, 0x50),
|
|
create_door(player, 'Thieves Ambush EN Edge', Open).dir(Ea, 0xcb, None, Low).edge(7, S, 0x50),
|
|
create_door(player, 'Thieves Ambush E', Nrml).dir(Ea, 0xcb, Mid, High).pos(0),
|
|
create_door(player, 'Thieves BK Corner WN Edge', Open).dir(We, 0xcc, None, Low).edge(7, A, 0x50),
|
|
create_door(player, 'Thieves BK Corner WS Edge', Open).dir(We, 0xcc, None, Low).edge(6, Z, 0x50),
|
|
create_door(player, 'Thieves BK Corner S Edge', Open).dir(So, 0xcc, None, Low).edge(10, Z, 0x10),
|
|
create_door(player, 'Thieves BK Corner SW Edge', Open).dir(So, 0xcc, None, Low).edge(9, Z, 0x18),
|
|
create_door(player, 'Thieves Rail Ledge Drop Down', Lgcl),
|
|
create_door(player, 'Thieves Rail Ledge W', Nrml).dir(We, 0xcc, Mid, High).pos(2),
|
|
create_door(player, 'Thieves Rail Ledge NW', Nrml).dir(No, 0xcc, Left, High).pos(1),
|
|
create_door(player, 'Thieves BK Corner NE', Nrml).dir(No, 0xcc, Right, High).big_key().pos(0),
|
|
create_door(player, 'Thieves Compass Room NW Edge', Open).dir(No, 0xdc, None, Low).edge(9, A, 0x18),
|
|
create_door(player, 'Thieves Compass Room N Edge', Open).dir(No, 0xdc, None, Low).edge(10, A, 0x10),
|
|
create_door(player, 'Thieves Compass Room WS Edge', Open).dir(We, 0xdc, None, Low).edge(8, Z, 0x50),
|
|
create_door(player, 'Thieves Compass Room W', Nrml).dir(We, 0xdc, Mid, High).pos(0),
|
|
create_door(player, 'Thieves Hallway SE', Nrml).dir(So, 0xbc, Right, High).small_key().pos(1).portal(X, 0x02),
|
|
create_door(player, 'Thieves Hallway NE', Nrml).dir(No, 0xbc, Right, High).pos(7),
|
|
create_door(player, 'Thieves Pot Alcove Mid WS', Nrml).dir(We, 0xbc, Bot, High).pos(5),
|
|
create_door(player, 'Thieves Pot Alcove Bottom SW', Nrml).dir(So, 0xbc, Left, High).pos(3).portal(Z, 0x00),
|
|
create_door(player, 'Thieves Conveyor Maze WN', Nrml).dir(We, 0xbc, Top, High).pos(4),
|
|
create_door(player, 'Thieves Hallway WS', Intr).dir(We, 0xbc, Bot, High).small_key().pos(0),
|
|
create_door(player, 'Thieves Pot Alcove Mid ES', Intr).dir(Ea, 0xbc, Bot, High).small_key().pos(0),
|
|
create_door(player, 'Thieves Conveyor Maze SW', Intr).dir(So, 0xbc, Left, High).pos(6),
|
|
create_door(player, 'Thieves Pot Alcove Top NW', Intr).dir(No, 0xbc, Left, High).pos(6),
|
|
create_door(player, 'Thieves Conveyor Maze EN', Intr).dir(Ea, 0xbc, Top, High).pos(2),
|
|
create_door(player, 'Thieves Hallway WN', Intr).dir(We, 0xbc, Top, High).no_exit().trap(0x1).pos(2),
|
|
create_door(player, 'Thieves Conveyor Maze Down Stairs', Sprl).dir(Dn, 0xbc, 0, HTH).ss(A, 0x11, 0x80, True, True),
|
|
create_door(player, 'Thieves Boss SE', Nrml).dir(So, 0xac, Right, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'Thieves Spike Track ES', Nrml).dir(Ea, 0xbb, Bot, High).pos(5),
|
|
create_door(player, 'Thieves Hellway NW', Nrml).dir(No, 0xbb, Left, High).pos(0),
|
|
create_door(player, 'Thieves Triple Bypass EN', Nrml).dir(Ea, 0xbb, Top, High).pos(4),
|
|
create_door(player, 'Thieves Hellway Orange Barrier', Lgcl),
|
|
create_door(player, 'Thieves Hellway Crystal Orange Barrier', Lgcl),
|
|
create_door(player, 'Thieves Hellway Blue Barrier', Lgcl),
|
|
create_door(player, 'Thieves Hellway Crystal Blue Barrier', Lgcl),
|
|
create_door(player, 'Thieves Spike Track WS', Intr).dir(We, 0xbb, Bot, High).pos(2),
|
|
create_door(player, 'Thieves Hellway Crystal ES', Intr).dir(Ea, 0xbb, Bot, High).pos(2),
|
|
create_door(player, 'Thieves Spike Track NE', Intr).dir(No, 0xbb, Right, High).pos(3),
|
|
create_door(player, 'Thieves Triple Bypass SE', Intr).dir(So, 0xbb, Right, High).pos(3),
|
|
create_door(player, 'Thieves Hellway Crystal EN', Intr).dir(Ea, 0xbb, Top, High).pos(1),
|
|
create_door(player, 'Thieves Triple Bypass WN', Intr).dir(We, 0xbb, Top, High).pos(1),
|
|
create_door(player, 'Thieves Spike Switch SW', Nrml).dir(So, 0xab, Left, High).pos(1).portal(Z, 0x00),
|
|
create_door(player, 'Thieves Spike Switch Up Stairs', Sprl).dir(Up, 0xab, 0, HTH).ss(Z, 0x1a, 0x6c, True, True).small_key().pos(0),
|
|
create_door(player, 'Thieves Attic Down Stairs', Sprl).dir(Dn, 0x64, 0, HTH).ss(Z, 0x11, 0x80, True, True),
|
|
create_door(player, 'Thieves Attic ES', Intr).dir(Ea, 0x64, Bot, High).pos(0),
|
|
create_door(player, 'Thieves Attic Orange Barrier', Lgcl),
|
|
create_door(player, 'Thieves Attic Blue Barrier', Lgcl),
|
|
create_door(player, 'Thieves Attic Hint Orange Barrier', Lgcl),
|
|
create_door(player, 'Thieves Attic Switch Blue Barrier', Lgcl),
|
|
create_door(player, 'Thieves Cricket Hall Left WS', Intr).dir(We, 0x64, Bot, High).pos(0),
|
|
create_door(player, 'Thieves Cricket Hall Left Edge', Open).dir(Ea, 0x64, None, High).edge(0, X, 0x30),
|
|
create_door(player, 'Thieves Cricket Hall Right Edge', Open).dir(We, 0x65, None, High).edge(0, Z, 0x30),
|
|
create_door(player, 'Thieves Cricket Hall Right ES', Intr).dir(Ea, 0x65, Bot, High).pos(0),
|
|
create_door(player, 'Thieves Attic Window WS', Intr).dir(We, 0x65, Bot, High).pos(0),
|
|
create_door(player, 'Thieves Basement Block Up Stairs', Sprl).dir(Up, 0x45, 0, HTH).ss(A, 0x1a, 0x6c, True, True),
|
|
create_door(player, 'Thieves Basement Block WN', Nrml).dir(We, 0x45, Top, High).trap(0x4).pos(0),
|
|
create_door(player, 'Thieves Basement Block Path', Lgcl),
|
|
create_door(player, 'Thieves Blocked Entry Path', Lgcl),
|
|
create_door(player, 'Thieves Lonely Zazak WS', Nrml).dir(We, 0x45, Bot, High).pos(2),
|
|
create_door(player, 'Thieves Blocked Entry SW', Intr).dir(So, 0x45, Left, High).pos(1),
|
|
create_door(player, 'Thieves Lonely Zazak NW', Intr).dir(No, 0x45, Left, High).pos(1),
|
|
create_door(player, 'Thieves Lonely Zazak ES', Intr).dir(Ea, 0x45, Right, High).pos(3),
|
|
create_door(player, 'Thieves Blind\'s Cell WS', Intr).dir(We, 0x45, Right, High).pos(3),
|
|
create_door(player, "Thieves Blind's Cell Door", Lgcl).big_key(),
|
|
create_door(player, "Thieves Blind's Cell Exit", Lgcl),
|
|
create_door(player, 'Thieves Conveyor Bridge EN', Nrml).dir(Ea, 0x44, Top, High).pos(2),
|
|
create_door(player, 'Thieves Conveyor Bridge ES', Nrml).dir(Ea, 0x44, Bot, High).pos(3),
|
|
create_door(player, 'Thieves Conveyor Bridge Block Path', Lgcl),
|
|
create_door(player, 'Thieves Conveyor Block Path', Lgcl),
|
|
create_door(player, 'Thieves Conveyor Bridge WS', Intr).dir(We, 0x44, Bot, High).small_key().pos(1),
|
|
create_door(player, 'Thieves Big Chest Room ES', Intr).dir(Ea, 0x44, Bot, High).small_key().pos(1),
|
|
create_door(player, 'Thieves Conveyor Block WN', Intr).dir(We, 0x44, Top, High).pos(0),
|
|
create_door(player, 'Thieves Trap EN', Intr).dir(Ea, 0x44, Left, Top).pos(0),
|
|
create_door(player, 'Revealing Light', Lgcl),
|
|
create_door(player, 'Thieves Town Boss', Lgcl),
|
|
|
|
create_door(player, 'Ice Lobby SE', Nrml).dir(So, 0x0e, Right, High).pos(2).portal(X, 0x00),
|
|
create_door(player, 'Ice Lobby WS', Intr).dir(We, 0x0e, Bot, High).pos(1),
|
|
create_door(player, 'Ice Jelly Key ES', Intr).dir(Ea, 0x0e, Bot, High).pos(1),
|
|
create_door(player, 'Ice Jelly Key Down Stairs', Sprl).dir(Dn, 0x0e, 0, HTH).ss(Z, 0x11, 0x80, True, True).small_key().pos(0),
|
|
create_door(player, 'Ice Floor Switch Up Stairs', Sprl).dir(Up, 0x1e, 0, HTH).ss(Z, 0x1a, 0x6c, True, True),
|
|
create_door(player, 'Ice Floor Switch ES', Intr).dir(Ea, 0x1e, Bot, High).pos(1),
|
|
create_door(player, 'Ice Cross Left WS', Intr).dir(We, 0x1e, Bot, High).pos(1),
|
|
create_door(player, 'Ice Cross Top NE', Intr).dir(No, 0x1e, Right, High).pos(2),
|
|
create_door(player, 'Ice Bomb Drop SE', Intr).dir(So, 0x1e, Right, High).pos(2),
|
|
create_door(player, 'Ice Cross Left Push Block', Lgcl), # dynamic
|
|
create_door(player, 'Ice Cross Bottom Push Block Left', Lgcl),
|
|
create_door(player, 'Ice Cross Bottom Push Block Right', Lgcl), # dynamic
|
|
create_door(player, 'Ice Cross Right Push Block Top', Lgcl),
|
|
create_door(player, 'Ice Cross Right Push Block Bottom', Lgcl), # dynamic
|
|
create_door(player, 'Ice Cross Top Push Block Bottom', Lgcl), # dynamic
|
|
create_door(player, 'Ice Cross Top Push Block Right', Lgcl), # dynamic
|
|
create_door(player, 'Ice Cross Bottom SE', Nrml).dir(So, 0x1e, Right, High).pos(3).portal(X, 0x00),
|
|
create_door(player, 'Ice Cross Right ES', Nrml).dir(Ea, 0x1e, Bot, High).trap(0x4).pos(0),
|
|
create_door(player, 'Ice Bomb Drop Path', Lgcl),
|
|
create_door(player, 'Ice Bomb Drop Hole', Hole),
|
|
create_door(player, 'Ice Compass Room NE', Nrml).dir(No, 0x2e, Right, High).pos(0),
|
|
create_door(player, 'Ice Pengator Switch WS', Nrml).dir(We, 0x1f, Bot, High).trap(0x4).pos(0),
|
|
create_door(player, 'Ice Pengator Switch ES', Intr).dir(Ea, 0x1f, Bot, High).pos(1),
|
|
create_door(player, 'Ice Dead End WS', Intr).dir(We, 0x1f, Bot, High).pos(1),
|
|
create_door(player, 'Ice Big Key Push Block', Lgcl),
|
|
create_door(player, 'Ice Big Key Down Ladder', Lddr).dir(So, 0x1f, 3, High),
|
|
create_door(player, 'Ice Stalfos Hint SE', Intr).dir(So, 0x3e, Right, High).pos(0),
|
|
create_door(player, 'Ice Conveyor NE', Intr).dir(No, 0x3e, Right, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'Ice Conveyor to Crystal', Lgcl),
|
|
create_door(player, 'Ice Conveyor Crystal Exit', Lgcl),
|
|
create_door(player, 'Ice Conveyor SW', Nrml).dir(So, 0x3e, Left, High).small_key().pos(1).portal(Z, 0x20),
|
|
create_door(player, 'Ice Bomb Jump NW', Nrml).dir(No, 0x4e, Left, High).small_key().pos(1),
|
|
create_door(player, 'Ice Bomb Jump Ledge Orange Barrier', Lgcl),
|
|
create_door(player, 'Ice Bomb Jump Catwalk Orange Barrier', Lgcl),
|
|
create_door(player, 'Ice Bomb Jump EN', Intr).dir(Ea, 0x4e, Top, High).pos(0),
|
|
create_door(player, 'Ice Narrow Corridor WN', Intr).dir(We, 0x4e, Top, High).pos(0),
|
|
create_door(player, 'Ice Narrow Corridor Down Stairs', Sprl).dir(Dn, 0x4e, 0, HTH).ss(S, 0x52, 0xc0, True, True),
|
|
create_door(player, 'Ice Pengator Trap Up Stairs', Sprl).dir(Up, 0x6e, 0, HTH).ss(S, 0x5a, 0xac, True, True),
|
|
create_door(player, 'Ice Pengator Trap NE', Nrml).dir(No, 0x6e, Right, High).trap(0x4).pos(0),
|
|
create_door(player, 'Ice Spike Cross SE', Nrml).dir(So, 0x5e, Right, High).pos(2).portal(X, 0x00),
|
|
create_door(player, 'Ice Spike Cross ES', Nrml).dir(Ea, 0x5e, Bot, High).small_key().pos(0),
|
|
create_door(player, 'Ice Spike Cross WS', Intr).dir(We, 0x5e, Bot, High).pos(3),
|
|
create_door(player, 'Ice Firebar ES', Intr).dir(Ea, 0x5e, Bot, High).pos(3),
|
|
create_door(player, 'Ice Firebar Down Ladder', Lddr).dir(So, 0x5e, 5, High),
|
|
create_door(player, 'Ice Spike Cross NE', Intr).dir(No, 0x5e, Right, High).pos(1),
|
|
create_door(player, 'Ice Falling Square SE', Intr).dir(So, 0x5e, Right, High).no_exit().trap(0x1).pos(1),
|
|
create_door(player, 'Ice Falling Square Hole', Hole),
|
|
create_door(player, 'Ice Spike Room WS', Nrml).dir(We, 0x5f, Bot, High).small_key().pos(0),
|
|
create_door(player, 'Ice Spike Room Down Stairs', Sprl).dir(Dn, 0x5f, 3, HTH).ss(Z, 0x11, 0x48, True, True),
|
|
create_door(player, 'Ice Spike Room Up Stairs', Sprl).dir(Up, 0x5f, 4, HTH).ss(Z, 0x1a, 0xa4, True, True),
|
|
create_door(player, 'Ice Right H Path', Lgcl),
|
|
create_door(player, 'Ice Hammer Block Path', Lgcl),
|
|
create_door(player, 'Ice Hammer Block Down Stairs', Sprl).dir(Dn, 0x3f, 0, HTH).ss(Z, 0x11, 0xb8, True, True).kill(),
|
|
create_door(player, 'Ice Hammer Block ES', Intr).dir(Ea, 0x3f, Bot, High).pos(0),
|
|
create_door(player, 'Ice Tongue Pull WS', Intr).dir(We, 0x3f, Bot, High).pos(0),
|
|
create_door(player, 'Ice Tongue Pull Up Ladder', Lddr).dir(No, 0x3f, 2, High),
|
|
create_door(player, 'Ice Freezors Up Ladder', Lddr).dir(No, 0x7e, 4, High),
|
|
create_door(player, 'Ice Freezors Hole', Hole),
|
|
create_door(player, 'Ice Freezors Bomb Hole', Hole), # combine these two? -- they have to lead to the same spot
|
|
create_door(player, 'Ice Freezors Ledge Hole', Hole),
|
|
create_door(player, 'Ice Freezors Ledge ES', Intr).dir(Ea, 0x7e, Bot, High).pos(1),
|
|
create_door(player, 'Ice Tall Hint WS', Intr).dir(We, 0x7e, Bot, High).pos(1),
|
|
create_door(player, 'Ice Tall Hint EN', Nrml).dir(Ea, 0x7e, Top, High).pos(2),
|
|
create_door(player, 'Ice Tall Hint SE', Nrml).dir(So, 0x7e, Right, High).small_key().pos(0).portal(X, 0x02),
|
|
create_door(player, 'Ice Hookshot Ledge WN', Nrml).dir(We, 0x7f, Top, High).no_exit().trap(0x4).pos(0).kill(),
|
|
create_door(player, 'Ice Hookshot Ledge Path', Lgcl),
|
|
create_door(player, 'Ice Hookshot Balcony Path', Lgcl),
|
|
create_door(player, 'Ice Hookshot Balcony SW', Intr).dir(So, 0x7f, Left, High).pos(1),
|
|
create_door(player, 'Ice Spikeball NW', Intr).dir(No, 0x7f, Left, High).pos(1),
|
|
create_door(player, 'Ice Spikeball Up Stairs', Sprl).dir(Up, 0x7f, 0, HTH).ss(Z, 0x1a, 0x34, True, True),
|
|
create_door(player, 'Ice Lonely Freezor NE', Nrml).dir(No, 0x8e, Right, High).small_key().pos(0),
|
|
create_door(player, 'Ice Lonely Freezor Down Stairs', Sprl).dir(Dn, 0x8e, 0, HTH).ss(S, 0x11, 0x50, True, True),
|
|
create_door(player, 'Iced T EN', Nrml).dir(Ea, 0xae, Top, High).pos(0),
|
|
create_door(player, 'Iced T Up Stairs', Sprl).dir(Up, 0xae, 0, HTH).ss(S, 0x1a, 0x3c, True, True),
|
|
create_door(player, 'Ice Catwalk WN', Nrml).dir(We, 0xaf, Top, High).pos(1),
|
|
create_door(player, 'Ice Catwalk NW', Nrml).dir(No, 0xaf, Left, High).pos(0),
|
|
create_door(player, 'Ice Many Pots SW', Nrml).dir(So, 0x9f, Left, High).trap(0x2).pos(1).portal(Z, 0x00),
|
|
create_door(player, 'Ice Many Pots WS', Nrml).dir(We, 0x9f, Bot, High).trap(0x4).pos(0),
|
|
create_door(player, 'Ice Crystal Right ES', Nrml).dir(Ea, 0x9e, Bot, High).pos(3),
|
|
create_door(player, 'Ice Crystal Right Orange Barrier', Lgcl),
|
|
create_door(player, 'Ice Crystal Right Blue Hole', Hole), # combine holes again??
|
|
create_door(player, 'Ice Crystal Left Orange Barrier', Lgcl),
|
|
create_door(player, 'Ice Crystal Left Blue Barrier', Lgcl),
|
|
create_door(player, 'Ice Crystal Block Exit', Lgcl),
|
|
create_door(player, 'Ice Crystal Block Hole', Hole),
|
|
create_door(player, 'Ice Crystal Left WS', Intr).dir(We, 0x9e, Bot, High).pos(2),
|
|
create_door(player, 'Ice Big Chest View ES', Intr).dir(Ea, 0x9e, Bot, High).pos(2),
|
|
create_door(player, 'Ice Big Chest Landing Push Blocks', Lgcl),
|
|
create_door(player, 'Ice Crystal Right NE', Intr).dir(No, 0x9e, Right, High).big_key().pos(1),
|
|
create_door(player, 'Ice Backwards Room SE', Intr).dir(So, 0x9e, Right, High).pos(1),
|
|
create_door(player, 'Ice Backwards Room Down Stairs', Sprl).dir(Dn, 0x9e, 0, HTH).ss(S, 0x11, 0x80, True, True).small_key().pos(0),
|
|
create_door(player, 'Ice Backwards Room Hole', Hole),
|
|
create_door(player, 'Ice Anti-Fairy Up Stairs', Sprl).dir(Up, 0xbe, 0, HTH).ss(S, 0x1a, 0x6c, True, True),
|
|
create_door(player, 'Ice Anti-Fairy SE', Intr).dir(So, 0xbe, Right, High).pos(2),
|
|
create_door(player, 'Ice Switch Room NE', Intr).dir(No, 0xbe, Right, High).pos(2),
|
|
create_door(player, 'Ice Switch Room ES', Nrml).dir(Ea, 0xbe, Bot, High).small_key().pos(1),
|
|
create_door(player, 'Ice Switch Room SE', Nrml).dir(So, 0xbe, Right, High).trap(0x4).pos(0).portal(X, 0x00),
|
|
create_door(player, 'Ice Refill WS', Nrml).dir(We, 0xbf, Bot, High).small_key().pos(0),
|
|
create_door(player, 'Ice Refill to Crystal', Lgcl),
|
|
create_door(player, 'Ice Refill Crystal Exit', Lgcl),
|
|
|
|
create_door(player, 'Ice Fairy Warp', Warp),
|
|
create_door(player, 'Ice Antechamber NE', Nrml).dir(No, 0xce, Right, High).trap(0x4).pos(0),
|
|
create_door(player, 'Ice Antechamber Hole', Hole),
|
|
create_door(player, 'Ice Palace Boss', Lgcl),
|
|
|
|
create_door(player, 'Mire Lobby S', Nrml).dir(So, 0x98, Left, High).pos(0).portal(Z, 0x20),
|
|
create_door(player, 'Mire Lobby Gap', Lgcl),
|
|
create_door(player, 'Mire Post-Gap Gap', Lgcl),
|
|
create_door(player, 'Mire Post-Gap Down Stairs', Sprl).dir(Dn, 0x98, 0, HTH).ss(X, 0x11, 0x90, False, True),
|
|
create_door(player, 'Mire 2 Up Stairs', Sprl).dir(Up, 0xd2, 0, HTH).ss(X, 0x1a, 0x7c, False, True),
|
|
create_door(player, 'Mire 2 NE', Nrml).dir(No, 0xd2, Right, High).trap(0x4).pos(0),
|
|
create_door(player, 'Mire Hub SE', Nrml).dir(So, 0xc2, Right, High).pos(5).portal(X, 0x22),
|
|
create_door(player, 'Mire Hub ES', Nrml).dir(Ea, 0xc2, Bot, High).pos(6),
|
|
create_door(player, 'Mire Hub E', Nrml).dir(Ea, 0xc2, Mid, High).pos(4),
|
|
create_door(player, 'Mire Hub NE', Nrml).dir(No, 0xc2, Right, High).pos(7),
|
|
create_door(player, 'Mire Hub WN', Nrml).dir(We, 0xc2, Top, High).pos(3),
|
|
create_door(player, 'Mire Hub WS', Nrml).dir(We, 0xc2, Bot, High).small_key().pos(1),
|
|
create_door(player, 'Mire Hub Upper Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Hub Lower Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Hub Right Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Hub Top Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Hub Switch Blue Barrier N', Lgcl),
|
|
create_door(player, 'Mire Hub Switch Blue Barrier S', Lgcl),
|
|
create_door(player, 'Mire Hub Right EN', Nrml).dir(Ea, 0xc2, Top, High).small_key().pos(0),
|
|
create_door(player, 'Mire Hub Top NW', Nrml).dir(No, 0xc2, Left, High).pos(2),
|
|
create_door(player, 'Mire Lone Shooter WS', Nrml).dir(We, 0xc3, Bot, High).pos(6),
|
|
create_door(player, 'Mire Lone Shooter ES', Intr).dir(Ea, 0xc3, Bot, High).pos(3),
|
|
create_door(player, 'Mire Falling Bridge WS', Intr).dir(We, 0xc3, Bot, High).no_exit().trap(0x8).pos(3),
|
|
create_door(player, 'Mire Falling Bridge W', Intr).dir(We, 0xc3, Mid, High).pos(2),
|
|
create_door(player, 'Mire Failure Bridge E', Intr).dir(Ea, 0xc3, Mid, High).no_exit().trap(0x1).pos(2),
|
|
create_door(player, 'Mire Failure Bridge W', Nrml).dir(We, 0xc3, Mid, High).pos(5),
|
|
create_door(player, 'Mire Falling Bridge WN', Intr).dir(We, 0xc3, Top, High).pos(1),
|
|
create_door(player, 'Mire Falling Bridge Hook Path', Lgcl),
|
|
create_door(player, 'Mire Falling Bridge Hook Only Path', Lgcl),
|
|
create_door(player, 'Mire Falling Bridge Primary Path', Lgcl), # dynamic
|
|
create_door(player, 'Mire Falling Bridge Failure Path', Lgcl),
|
|
create_door(player, 'Mire Map Spike Side EN', Intr).dir(Ea, 0xc3, Top, High).no_exit().trap(0x2).pos(1),
|
|
create_door(player, 'Mire Map Spot WN', Nrml).dir(We, 0xc3, Top, High).small_key().pos(0),
|
|
create_door(player, 'Mire Crystal Dead End NW', Nrml).dir(No, 0xc3, Left, High).pos(4),
|
|
create_door(player, 'Mire Map Spike Side Drop Down', Lgcl),
|
|
create_door(player, 'Mire Map Spike Side Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Map Spot Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Crystal Dead End Left Barrier', Lgcl),
|
|
create_door(player, 'Mire Crystal Dead End Right Barrier', Lgcl),
|
|
create_door(player, 'Mire Hidden Shooters SE', Nrml).dir(So, 0xb2, Right, High).pos(6).portal(X, 0x00),
|
|
create_door(player, 'Mire Hidden Shooters ES', Nrml).dir(Ea, 0xb2, Bot, High).pos(7),
|
|
create_door(player, 'Mire Hidden Shooters WS', Intr).dir(We, 0xb2, Bot, High).pos(1),
|
|
create_door(player, 'Mire Cross ES', Intr).dir(Ea, 0xb2, Bot, High).pos(1),
|
|
create_door(player, 'Mire Hidden Shooters Block Path S', Lgcl),
|
|
create_door(player, 'Mire Hidden Shooters Block Path N', Lgcl),
|
|
create_door(player, 'Mire Hidden Shooters NE', Intr).dir(No, 0xb2, Right, High).pos(2),
|
|
create_door(player, 'Mire Minibridge SE', Intr).dir(So, 0xb2, Right, High).pos(2),
|
|
create_door(player, 'Mire Cross SW', Nrml).dir(So, 0xb2, Left, High).pos(5).portal(Z, 0x00),
|
|
create_door(player, 'Mire Minibridge NE', Nrml).dir(No, 0xb2, Right, High).pos(4),
|
|
create_door(player, 'Mire BK Door Room EN', Nrml).dir(Ea, 0xb2, Top, Low).pos(3),
|
|
create_door(player, 'Mire BK Door Room N', Nrml).dir(No, 0xb2, Mid, High).big_key().pos(0),
|
|
create_door(player, 'Mire Spikes WS', Nrml).dir(We, 0xb3, Bot, High).pos(3),
|
|
create_door(player, 'Mire Spikes SW', Nrml).dir(So, 0xb3, Left, High).pos(4).portal(Z, 0x00),
|
|
create_door(player, 'Mire Spikes NW', Intr).dir(No, 0xb3, Left, High).small_key().pos(0),
|
|
create_door(player, 'Mire Ledgehop SW', Intr).dir(So, 0xb3, Left, High).small_key().pos(0),
|
|
create_door(player, 'Mire Ledgehop WN', Nrml).dir(We, 0xb3, Top, Low).pos(1),
|
|
create_door(player, 'Mire Ledgehop NW', Nrml).dir(No, 0xb3, Left, High).pos(2),
|
|
create_door(player, 'Mire Bent Bridge SW', Nrml).dir(So, 0xa3, Left, High).pos(1).portal(Z, 0x02),
|
|
create_door(player, 'Mire Bent Bridge W', Nrml).dir(We, 0xa3, Mid, High).pos(0),
|
|
create_door(player, 'Mire Over Bridge E', Nrml).dir(Ea, 0xa2, Mid, High).pos(2),
|
|
create_door(player, 'Mire Over Bridge W', Nrml).dir(We, 0xa2, Mid, High).pos(1),
|
|
create_door(player, 'Mire Right Bridge SE', Nrml).dir(So, 0xa2, Right, High).pos(3).portal(X, 0x22),
|
|
create_door(player, 'Mire Left Bridge S', Nrml).dir(So, 0xa2, Mid, High).small_key().pos(0).portal(Z, 0x22),
|
|
create_door(player, 'Mire Left Bridge Hook Path', Lgcl),
|
|
create_door(player, 'Mire Left Bridge Down Stairs', Sprl).dir(Dn, 0xa2, 0, HTL).ss(A, 0x12, 0x00),
|
|
create_door(player, 'Mire Fishbone E', Nrml).dir(Ea, 0xa1, Mid, High).pos(1),
|
|
create_door(player, 'Mire Fishbone Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Fishbone Blue Barrier Bypass', Lgcl).no_exit(), # considered out of logic
|
|
create_door(player, 'Mire South Fish Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Fishbone SE', Nrml).dir(So, 0xa1, Right, High).small_key().pos(0),
|
|
create_door(player, 'Mire Spike Barrier NE', Nrml).dir(No, 0xb1, Right, High).small_key().pos(1),
|
|
create_door(player, 'Mire Spike Barrier SE', Nrml).dir(So, 0xb1, Right, High).pos(2).portal(X, 0x02),
|
|
create_door(player, 'Mire Spike Barrier ES', Intr).dir(Ea, 0xb1, Bot, High).pos(3),
|
|
create_door(player, 'Mire Square Rail WS', Intr).dir(We, 0xb1, Bot, High).pos(3),
|
|
create_door(player, 'Mire Square Rail NW', Intr).dir(No, 0xb1, Left, High).big_key().pos(0),
|
|
create_door(player, 'Mire Lone Warp SW', Intr).dir(So, 0xb1, Left, High).pos(0),
|
|
create_door(player, 'Mire Lone Warp Warp', Warp),
|
|
create_door(player, 'Mire Wizzrobe Bypass EN', Nrml).dir(Ea, 0xc1, Top, High).pos(5),
|
|
create_door(player, 'Mire Wizzrobe Bypass NE', Nrml).dir(No, 0xc1, Right, High).pos(6),
|
|
create_door(player, 'Mire Conveyor Crystal ES', Nrml).dir(Ea, 0xc1, Bot, High).small_key().pos(1),
|
|
create_door(player, 'Mire Conveyor Crystal SE', Nrml).dir(So, 0xc1, Right, High).pos(7).portal(X, 0x00),
|
|
create_door(player, 'Mire Conveyor Crystal WS', Intr).dir(We, 0xc1, Bot, High).small_key().pos(0),
|
|
create_door(player, 'Mire Conveyor to Crystal', Lgcl),
|
|
create_door(player, 'Mire Conveyor Crystal Exit', Lgcl),
|
|
create_door(player, 'Mire Tile Room ES', Intr).dir(Ea, 0xc1, Bot, High).small_key().pos(0),
|
|
create_door(player, 'Mire Tile Room SW', Nrml).dir(So, 0xc1, Left, High).pos(4).portal(Z, 0x00),
|
|
create_door(player, 'Mire Tile Room NW', Intr).dir(No, 0xc1, Left, High).pos(3),
|
|
create_door(player, 'Mire Compass Room SW', Intr).dir(So, 0xc1, Left, High).pos(3),
|
|
create_door(player, 'Mire Compass Room EN', Intr).dir(Ea, 0xc1, Top, High).pos(2),
|
|
create_door(player, 'Mire Wizzrobe Bypass WN', Intr).dir(We, 0xc1, Top, High).no_exit().trap(0x1).pos(2),
|
|
create_door(player, 'Mire Compass Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Compass Chest Exit', Lgcl),
|
|
create_door(player, 'Mire Neglected Room NE', Nrml).dir(No, 0xd1, Right, High).pos(2),
|
|
create_door(player, 'Mire Conveyor Barrier NW', Nrml).dir(No, 0xd1, Left, High).pos(1),
|
|
create_door(player, 'Mire Conveyor Barrier Up Stairs', Sprl).dir(Up, 0xd1, 0, HTH).ss(A, 0x1a, 0x9c, True),
|
|
create_door(player, 'Mire Neglected Room SE', Intr).dir(So, 0xd1, Right, High).pos(3),
|
|
create_door(player, 'Mire Chest View NE', Intr).dir(No, 0xd1, Right, High).pos(3),
|
|
create_door(player, 'Mire BK Chest Ledge WS', Intr).dir(We, 0xd1, Bot, High).pos(0),
|
|
create_door(player, 'Mire Warping Pool ES', Intr).dir(Ea, 0xd1, Bot, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'Mire Warping Pool Warp', Warp),
|
|
create_door(player, 'Mire Torches Top Down Stairs', Sprl).dir(Dn, 0x97, 0, HTH).ss(A, 0x11, 0xb0, True).kill(),
|
|
create_door(player, 'Mire Torches Top SW', Intr).dir(So, 0x97, Left, High).pos(1),
|
|
create_door(player, 'Mire Torches Bottom Holes', Hole),
|
|
create_door(player, 'Mire Torches Bottom NW', Intr).dir(No, 0x97, Left, High).pos(1),
|
|
create_door(player, 'Mire Torches Bottom ES', Intr).dir(Ea, 0x97, Bot, High).pos(0),
|
|
create_door(player, 'Mire Torches Top Holes', Hole),
|
|
create_door(player, 'Mire Attic Hint WS', Intr).dir(We, 0x97, Bot, High).pos(0),
|
|
create_door(player, 'Mire Attic Hint Hole', Hole),
|
|
create_door(player, 'Mire Dark Shooters Up Stairs', Sprl).dir(Up, 0x93, 0, LTH).ss(A, 0x32, 0xec),
|
|
create_door(player, 'Mire Dark Shooters SW', Intr).dir(So, 0x93, Left, High).pos(0),
|
|
create_door(player, 'Mire Block X NW', Intr).dir(No, 0x93, Left, High).pos(0),
|
|
create_door(player, 'Mire Dark Shooters SE', Intr).dir(So, 0x93, Right, High).small_key().pos(1),
|
|
create_door(player, 'Mire Key Rupees NE', Intr).dir(No, 0x93, Right, High).small_key().pos(1),
|
|
create_door(player, 'Mire Block X WS', Nrml).dir(We, 0x93, Bot, High).pos(2),
|
|
create_door(player, 'Mire Tall Dark and Roomy ES', Nrml).dir(Ea, 0x92, Bot, High).pos(4),
|
|
create_door(player, 'Mire Tall Dark and Roomy WN', Intr).dir(We, 0x92, Top, High).pos(0),
|
|
create_door(player, 'Mire Shooter Rupees EN', Intr).dir(Ea, 0x92, Top, High).pos(0),
|
|
create_door(player, 'Mire Tall Dark and Roomy WS', Intr).dir(We, 0x92, Bot, High).pos(3),
|
|
create_door(player, 'Mire Tall Dark and Roomy to Ranged Crystal', Lgcl),
|
|
create_door(player, 'Mire Tall Dark and Roomy Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'Mire Crystal Right ES', Intr).dir(Ea, 0x92, Bot, High).pos(3),
|
|
create_door(player, 'Mire Crystal Mid NW', Intr).dir(No, 0x92, Left, High).pos(1),
|
|
create_door(player, 'Mire Crystal Top SW', Intr).dir(So, 0x92, Left, High).pos(1),
|
|
create_door(player, 'Mire Crystal Right Orange Barrier', Lgcl),
|
|
create_door(player, 'Mire Crystal Mid Orange Barrier', Lgcl),
|
|
create_door(player, 'Mire Crystal Mid Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Crystal Left Blue Barrier', Lgcl),
|
|
create_door(player, 'Mire Crystal Left WS', Nrml).dir(We, 0x92, Bot, High).pos(2),
|
|
create_door(player, 'Mire Falling Foes ES', Nrml).dir(Ea, 0x91, Bot, High).pos(0),
|
|
create_door(player, 'Mire Falling Foes Up Stairs', Sprl).dir(Up, 0x91, 0, HTH).ss(S, 0x9b, 0x6c, True),
|
|
create_door(player, 'Mire Firesnake Skip Down Stairs', Sprl).dir(Dn, 0xa0, 0, HTH).ss(S, 0x92, 0x80, True, True),
|
|
create_door(player, 'Mire Firesnake Skip Orange Barrier', Lgcl),
|
|
create_door(player, 'Mire Antechamber Orange Barrier', Lgcl),
|
|
create_door(player, 'Mire Antechamber NW', Nrml).dir(No, 0xa0, Left, High).big_key().pos(0),
|
|
create_door(player, 'Mire Boss SW', Nrml).dir(So, 0x90, Left, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'Misery Mire Boss', Lgcl),
|
|
|
|
create_door(player, 'TR Main Lobby SE', Nrml).dir(So, 0xd6, Right, High).pos(1).portal(X, 0x02),
|
|
create_door(player, 'TR Lobby Ledge NE', Nrml).dir(No, 0xd6, Right, High).pos(2),
|
|
create_door(player, 'TR Main Lobby Gap', Lgcl),
|
|
create_door(player, 'TR Lobby Ledge Gap', Lgcl),
|
|
create_door(player, 'TR Compass Room NW', Nrml).dir(No, 0xd6, Left, High).pos(0),
|
|
create_door(player, 'TR Hub SW', Nrml).dir(So, 0xc6, Left, High).pos(4).portal(Z, 0x22),
|
|
create_door(player, 'TR Hub SE', Nrml).dir(So, 0xc6, Right, High).pos(5).portal(X, 0x22),
|
|
create_door(player, 'TR Hub ES', Nrml).dir(Ea, 0xc6, Bot, High).pos(3),
|
|
create_door(player, 'TR Hub EN', Nrml).dir(Ea, 0xc6, Top, High).pos(2),
|
|
create_door(player, 'TR Hub NW', Nrml).dir(No, 0xc6, Left, High).small_key().pos(0),
|
|
create_door(player, 'TR Hub NE', Nrml).dir(No, 0xc6, Right, High).pos(1),
|
|
create_door(player, 'TR Hub Path', Lgcl),
|
|
create_door(player, 'TR Hub Ledges Path', Lgcl),
|
|
create_door(player, 'TR Torches Ledge WS', Nrml).dir(We, 0xc7, Bot, High).pos(2),
|
|
create_door(player, 'TR Torches WN', Nrml).dir(We, 0xc7, Top, High).pos(1),
|
|
create_door(player, 'TR Torches NW', Nrml).dir(No, 0xc7, Left, High).trap(0x4).pos(0),
|
|
create_door(player, 'TR Roller Room SW', Nrml).dir(So, 0xb7, Left, High).pos(0).portal(Z, 0x02),
|
|
create_door(player, 'TR Pokey 1 SW', Nrml).dir(So, 0xb6, Left, High).small_key().pos(2).portal(Z, 0x00),
|
|
create_door(player, 'TR Tile Room SE', Nrml).dir(So, 0xb6, Right, High).pos(4).portal(X, 0x00),
|
|
create_door(player, 'TR Tile Room NE', Intr).dir(No, 0xb6, Right, High).pos(1),
|
|
create_door(player, 'TR Refill SE', Intr).dir(So, 0xb6, Right, High).pos(1),
|
|
create_door(player, 'TR Pokey 1 NW', Intr).dir(No, 0xb6, Left, High).small_key().pos(3),
|
|
create_door(player, 'TR Chain Chomps SW', Intr).dir(So, 0xb6, Left, High).small_key().pos(3),
|
|
create_door(player, 'TR Chain Chomps Top to Bottom Barrier - Orange', Lgcl),
|
|
create_door(player, 'TR Chain Chomps Top to Crystal', Lgcl),
|
|
create_door(player, 'TR Chain Chomps Top Crystal Exit', Lgcl),
|
|
create_door(player, 'TR Chain Chomps Bottom to Top Barrier - Orange', Lgcl),
|
|
create_door(player, 'TR Chain Chomps Bottom to Ranged Crystal', Lgcl),
|
|
create_door(player, 'TR Chain Chomps Bottom Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'TR Chain Chomps Down Stairs', Sprl).dir(Dn, 0xb6, 0, HTH).ss(A, 0x12, 0x80, True, True).small_key().pos(0),
|
|
create_door(player, 'TR Pipe Pit Up Stairs', Sprl).dir(Up, 0x15, 0, HTH).ss(A, 0x1b, 0x6c),
|
|
create_door(player, 'TR Pipe Pit WN', Nrml).dir(We, 0x15, Top, High).pos(1),
|
|
create_door(player, 'TR Pipe Ledge WS', Nrml).dir(We, 0x15, Bot, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'TR Pipe Ledge Drop Down', Lgcl),
|
|
create_door(player, 'TR Lava Dual Pipes EN', Nrml).dir(Ea, 0x14, Top, High).pos(5),
|
|
create_door(player, 'TR Lava Dual Pipes WN', Nrml).dir(We, 0x14, Top, High).pos(3),
|
|
create_door(player, 'TR Lava Dual Pipes SW', Nrml).dir(So, 0x14, Left, High).pos(4).portal(Z, 0x22),
|
|
create_door(player, 'TR Lava Island WS', Nrml).dir(We, 0x14, Bot, High).small_key().pos(1),
|
|
create_door(player, 'TR Lava Island ES', Nrml).dir(Ea, 0x14, Bot, High).pos(6),
|
|
create_door(player, 'TR Lava Escape SE', Nrml).dir(So, 0x14, Right, High).small_key().pos(0).portal(X, 0x22),
|
|
create_door(player, 'TR Lava Escape NW', Nrml).dir(No, 0x14, Left, High).pos(2),
|
|
create_door(player, 'TR Pokey 2 EN', Nrml).dir(Ea, 0x13, Top, High).pos(1),
|
|
create_door(player, 'TR Pokey 2 Top to Bottom Barrier - Blue', Lgcl),
|
|
create_door(player, 'TR Pokey 2 Top to Crystal', Lgcl),
|
|
create_door(player, 'TR Pokey 2 Top Crystal Exit', Lgcl),
|
|
create_door(player, 'TR Pokey 2 Bottom to Top Barrier - Blue', Lgcl),
|
|
create_door(player, 'TR Pokey 2 Bottom to Ranged Crystal', Lgcl),
|
|
create_door(player, 'TR Pokey 2 Bottom Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'TR Pokey 2 ES', Nrml).dir(Ea, 0x13, Bot, High).small_key().pos(0),
|
|
create_door(player, 'TR Twin Pokeys NW', Nrml).dir(No, 0x24, Left, High).pos(5),
|
|
create_door(player, 'TR Twin Pokeys SW', Intr).dir(So, 0x24, Left, High).pos(2),
|
|
create_door(player, 'TR Hallway NW', Intr).dir(No, 0x24, Left, High).pos(2),
|
|
create_door(player, 'TR Hallway WS', Nrml).dir(We, 0x24, Bot, High).pos(6),
|
|
create_door(player, 'TR Twin Pokeys EN', Intr).dir(Ea, 0x24, Top, High).pos(1),
|
|
create_door(player, 'TR Dodgers WN', Intr).dir(We, 0x24, Top, High).pos(1),
|
|
create_door(player, 'TR Hallway ES', Intr).dir(Ea, 0x24, Bot, High).pos(7),
|
|
create_door(player, 'TR Big View WS', Intr).dir(We, 0x24, Bot, High).pos(7),
|
|
create_door(player, 'TR Big Chest Gap', Lgcl),
|
|
create_door(player, 'TR Big Chest Entrance SE', Nrml).dir(So, 0x24, Right, High).pos(4).kill().portal(X, 0x00),
|
|
create_door(player, 'TR Big Chest Entrance Gap', Lgcl),
|
|
create_door(player, 'TR Big Chest NE', Intr).dir(No, 0x24, Right, High).pos(3),
|
|
create_door(player, 'TR Dodgers SE', Intr).dir(So, 0x24, Right, High).no_exit().trap(0x8).pos(3),
|
|
create_door(player, 'TR Dodgers NE', Nrml).dir(No, 0x24, Right, High).big_key().pos(0),
|
|
create_door(player, 'TR Lazy Eyes SE', Nrml).dir(So, 0x23, Right, High).pos(0).portal(X, 0x00),
|
|
create_door(player, 'TR Lazy Eyes ES', Nrml).dir(Ea, 0x23, Bot, High).pos(1),
|
|
create_door(player, 'TR Dash Room SW', Nrml).dir(So, 0x04, Left, High).pos(4).portal(Z, 0x00),
|
|
create_door(player, 'TR Dash Room ES', Intr).dir(Ea, 0x04, Bot, High).pos(2),
|
|
create_door(player, 'TR Tongue Pull WS', Intr).dir(We, 0x04, Bot, High).pos(2),
|
|
create_door(player, 'TR Tongue Pull NE', Intr).dir(No, 0x04, Right, High).pos(3),
|
|
create_door(player, 'TR Rupees SE', Intr).dir(So, 0x04, Right, High).pos(3),
|
|
create_door(player, 'TR Dash Room NW', Intr).dir(No, 0x04, Left, High).pos(1),
|
|
create_door(player, 'TR Crystaroller SW', Intr).dir(So, 0x04, Left, High).pos(1),
|
|
create_door(player, 'TR Crystaroller Bottom to Middle Barrier - Orange', Lgcl),
|
|
create_door(player, 'TR Crystaroller Bottom to Ranged Crystal', Lgcl),
|
|
create_door(player, 'TR Crystaroller Middle to Bottom Barrier - Orange', Lgcl),
|
|
create_door(player, 'TR Crystaroller Middle to Bottom Bypass', Lgcl),
|
|
create_door(player, 'TR Crystaroller Middle to Chest Barrier - Blue', Lgcl),
|
|
create_door(player, 'TR Crystaroller Middle to Top Barrier - Orange', Lgcl),
|
|
create_door(player, 'TR Crystaroller Middle to Ranged Crystal', Lgcl),
|
|
create_door(player, 'TR Crystaroller Top to Middle Barrier - Orange', Lgcl),
|
|
create_door(player, 'TR Crystaroller Top to Crystal', Lgcl),
|
|
create_door(player, 'TR Crystaroller Top Crystal Exit', Lgcl),
|
|
create_door(player, 'TR Crystaroller Chest to Middle Barrier - Blue', Lgcl),
|
|
create_door(player, 'TR Crystaroller Middle Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'TR Crystaroller Bottom Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'TR Crystaroller Down Stairs', Sprl).dir(Dn, 0x04, 0, HTH).ss(A, 0x12, 0x80, True, True).small_key().pos(0),
|
|
create_door(player, 'TR Dark Ride Up Stairs', Sprl).dir(Up, 0xb5, 0, HTH).ss(A, 0x1b, 0x6c),
|
|
create_door(player, 'TR Dark Ride SW', Nrml).dir(So, 0xb5, Left, High).trap(0x4).pos(0).portal(Z, 0x22),
|
|
create_door(player, 'TR Dark Ride Normal Path', Lgcl),
|
|
create_door(player, 'TR Dark Ride Ledge Path', Lgcl),
|
|
create_door(player, 'TR Dark Ride Backward Path', Lgcl),
|
|
create_door(player, 'TR Dark Ride Return Path', Lgcl),
|
|
create_door(player, 'TR Dash Bridge NW', Nrml).dir(No, 0xc5, Left, High).pos(1),
|
|
create_door(player, 'TR Dash Bridge SW', Nrml).dir(So, 0xc5, Left, High).pos(2).portal(Z, 0x02),
|
|
create_door(player, 'TR Dash Bridge WS', Nrml).dir(We, 0xc5, Bot, High).small_key().pos(0),
|
|
create_door(player, 'TR Eye Bridge NW', Nrml).dir(No, 0xd5, Left, High).pos(1),
|
|
create_door(player, 'TR Eye Bridge SW', Nrml).dir(So, 0xd5, Left, High).pos(0).portal(Z, 0x02),
|
|
create_door(player, 'TR Crystal Maze ES', Nrml).dir(Ea, 0xc4, Bot, High).small_key().pos(0),
|
|
create_door(player, 'TR Crystal Maze Start to Interior Barrier - Blue', Lgcl),
|
|
create_door(player, 'TR Crystal Maze Start to Crystal', Lgcl),
|
|
create_door(player, 'TR Crystal Maze Start Crystal Exit', Lgcl),
|
|
create_door(player, 'TR Crystal Maze Interior to Start Barrier - Blue', Lgcl),
|
|
create_door(player, 'TR Crystal Maze Interior to End Barrier - Blue', Lgcl),
|
|
create_door(player, 'TR Crystal Maze Interior to End Bypass', Lgcl),
|
|
create_door(player, 'TR Crystal Maze Interior to Start Bypass', Lgcl),
|
|
create_door(player, 'TR Crystal Maze End to Interior Barrier - Blue', Lgcl),
|
|
create_door(player, 'TR Crystal Maze End to Ranged Crystal', Lgcl),
|
|
create_door(player, 'TR Crystal Maze End Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'TR Crystal Maze North Stairs', StrS).dir(No, 0xc4, Mid, High),
|
|
create_door(player, 'TR Final Abyss South Stairs', StrS).dir(So, 0xb4, Mid, High),
|
|
create_door(player, 'TR Final Abyss Balcony Path', Lgcl),
|
|
create_door(player, 'TR Final Abyss Ledge Path', Lgcl),
|
|
create_door(player, 'TR Final Abyss NW', Nrml).dir(No, 0xb4, Left, High).big_key().pos(0),
|
|
create_door(player, 'TR Boss SW', Nrml).dir(So, 0xa4, Left, High).no_exit().trap(0x4).pos(0).portal(Z, 0x00),
|
|
create_door(player, 'Turtle Rock Boss', Lgcl),
|
|
|
|
create_door(player, 'GT Lobby S', Nrml).dir(So, 0x0c, Mid, High).pos(0).portal(Z, 0x22),
|
|
create_door(player, 'GT Lobby Left Down Stairs', Sprl).dir(Dn, 0x0c, 1, HTL).ss(A, 0x0f, 0x80),
|
|
create_door(player, 'GT Lobby Up Stairs', Sprl).dir(Up, 0x0c, 2, HTH).ss(A, 0x1b, 0xec),
|
|
create_door(player, 'GT Lobby Right Down Stairs', Sprl).dir(Dn, 0x0c, 0, HTL).ss(S, 0x12, 0x80),
|
|
create_door(player, 'GT Torch Up Stairs', Sprl).dir(Up, 0x8c, 1, LTH).ss(A, 0x33, 0x6c, True, True),
|
|
create_door(player, 'GT Torch WN', Nrml).dir(We, 0x8c, Top, High).pos(3),
|
|
create_door(player, 'GT Hope Room Up Stairs', Sprl).dir(Up, 0x8c, 0, LTH).ss(S, 0x33, 0x6c, True, True),
|
|
create_door(player, 'GT Hope Room EN', Nrml).dir(Ea, 0x8c, Top, High).trap(0x4).pos(0),
|
|
create_door(player, 'GT Torch EN', Intr).dir(Ea, 0x8c, Top, High).small_key().pos(2),
|
|
create_door(player, 'GT Hope Room WN', Intr).dir(We, 0x8c, Top, High).small_key().pos(2),
|
|
create_door(player, 'GT Torch SW', Intr).dir(So, 0x8c, Left, High).no_exit().trap(0x2).pos(1),
|
|
create_door(player, 'GT Big Chest NW', Intr).dir(No, 0x8c, Left, High).pos(1),
|
|
create_door(player, 'GT Blocked Stairs Down Stairs', Sprl).dir(Dn, 0x8c, 3, HTH).ss(Z, 0x12, 0x40, True, True).kill(),
|
|
create_door(player, 'GT Blocked Stairs Block Path', Lgcl),
|
|
create_door(player, 'GT Big Chest SW', Nrml).dir(So, 0x8c, Left, High).pos(4).portal(Z, 0x00),
|
|
create_door(player, 'GT Bob\'s Room SE', Nrml).dir(So, 0x8c, Right, High).pos(5).kill().portal(X, 0x00),
|
|
create_door(player, 'GT Bob\'s Room Hole', Hole),
|
|
create_door(player, 'GT Tile Room WN', Nrml).dir(We, 0x8d, Top, High).pos(2),
|
|
create_door(player, 'GT Tile Room EN', Intr).dir(Ea, 0x8d, Top, High).small_key().pos(1),
|
|
create_door(player, 'GT Speed Torch WN', Intr).dir(We, 0x8d, Top, High).small_key().pos(1),
|
|
create_door(player, 'GT Speed Torch NE', Nrml).dir(No, 0x8d, Right, High).pos(3),
|
|
create_door(player, 'GT Speed Torch South Path', Lgcl),
|
|
create_door(player, 'GT Speed Torch North Path', Lgcl),
|
|
create_door(player, 'GT Speed Torch WS', Intr).dir(We, 0x8d, Bot, High).pos(4),
|
|
create_door(player, 'GT Pots n Blocks ES', Intr).dir(Ea, 0x8d, Bot, High).pos(4),
|
|
create_door(player, 'GT Speed Torch SE', Nrml).dir(So, 0x8d, Right, High).trap(0x4).pos(0).portal(X, 0x02),
|
|
create_door(player, 'GT Crystal Conveyor NE', Nrml).dir(No, 0x9d, Right, High).pos(0).kill(),
|
|
create_door(player, 'GT Crystal Conveyor to Corner Barrier - Blue', Lgcl),
|
|
create_door(player, 'GT Crystal Conveyor to Ranged Crystal', Lgcl),
|
|
create_door(player, 'GT Crystal Conveyor Corner to Left Bypass', Lgcl),
|
|
create_door(player, 'GT Crystal Conveyor Corner to Barrier - Blue', Lgcl),
|
|
create_door(player, 'GT Crystal Conveyor Corner to Barrier - Orange', Lgcl),
|
|
create_door(player, 'GT Crystal Conveyor Corner to Ranged Crystal', Lgcl),
|
|
create_door(player, 'GT Crystal Conveyor Left to Corner Barrier - Orange', Lgcl),
|
|
create_door(player, 'GT Crystal Conveyor Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'GT Crystal Conveyor Corner Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'GT Crystal Conveyor WN', Intr).dir(We, 0x9d, Top, High).pos(2),
|
|
create_door(player, 'GT Compass Room EN', Intr).dir(Ea, 0x9d, Top, High).pos(2),
|
|
create_door(player, 'GT Compass Room Warp', Warp),
|
|
create_door(player, 'GT Invisible Bridges WS', Nrml).dir(We, 0x9d, Bot, High).pos(1),
|
|
create_door(player, 'GT Invisible Catwalk ES', Nrml).dir(Ea, 0x9c, Bot, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'GT Invisible Catwalk WS', Nrml).dir(We, 0x9c, Bot, High).pos(3),
|
|
create_door(player, 'GT Invisible Catwalk NW', Nrml).dir(No, 0x9c, Left, High).pos(1),
|
|
create_door(player, 'GT Invisible Catwalk NE', Nrml).dir(No, 0x9c, Right, High).pos(2),
|
|
create_door(player, 'GT Conveyor Cross EN', Nrml).dir(Ea, 0x8b, Top, High).pos(2),
|
|
create_door(player, 'GT Conveyor Cross WN', Intr).dir(We, 0x8b, Top, High).pos(0),
|
|
create_door(player, 'GT Conveyor Cross Hammer Path', Lgcl),
|
|
create_door(player, 'GT Conveyor Cross Hookshot Path', Lgcl),
|
|
create_door(player, 'GT Hookshot EN', Intr).dir(Ea, 0x8b, Top, High).pos(0),
|
|
create_door(player, 'GT Hookshot East-Mid Path', Lgcl),
|
|
create_door(player, 'GT Hookshot Mid-East Path', Lgcl),
|
|
create_door(player, 'GT Hookshot North-Mid Path', Lgcl),
|
|
create_door(player, 'GT Hookshot Mid-North Path', Lgcl),
|
|
create_door(player, 'GT Hookshot South-Mid Path', Lgcl),
|
|
create_door(player, 'GT Hookshot Mid-South Path', Lgcl),
|
|
create_door(player, 'GT Hookshot Platform Blue Barrier', Lgcl),
|
|
create_door(player, 'GT Hookshot Entry Blue Barrier', Lgcl),
|
|
create_door(player, 'GT Hookshot Platform Barrier Bypass', Lgcl),
|
|
create_door(player, 'GT Hookshot South Entry to Ranged Crystal', Lgcl),
|
|
create_door(player, 'GT HookShot South Entry Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'GT Hookshot NW', Nrml).dir(No, 0x8b, Left, High).pos(4),
|
|
create_door(player, 'GT Hookshot ES', Intr).dir(Ea, 0x8b, Bot, High).small_key().pos(1),
|
|
create_door(player, 'GT Map Room WS', Intr).dir(We, 0x8b, Bot, High).small_key().pos(1),
|
|
create_door(player, 'GT Hookshot SW', Nrml).dir(So, 0x8b, Left, High).pos(3).portal(Z, 0x02),
|
|
create_door(player, 'GT Double Switch NW', Nrml).dir(No, 0x9b, Left, High).pos(1).kill(),
|
|
create_door(player, 'GT Double Switch Entry to Pot Corners Barrier - Orange', Lgcl),
|
|
create_door(player, 'GT Double Switch Entry to Left Barrier - Orange', Lgcl),
|
|
create_door(player, 'GT Double Switch Entry to Ranged Switches', Lgcl), # considered out of logic
|
|
create_door(player, 'GT Double Switch Entry Ranged Switches Exit', Lgcl).no_exit(), # blocked here for reasons
|
|
create_door(player, 'GT Double Switch Left to Crystal', Lgcl),
|
|
create_door(player, 'GT Double Switch Left Crystal Exit', Lgcl),
|
|
create_door(player, 'GT Double Switch Left to Entry Barrier - Orange', Lgcl),
|
|
create_door(player, 'GT Double Switch Left to Pot Corners Bypass', Lgcl),
|
|
create_door(player, 'GT Double Switch Left to Entry Bypass', Lgcl),
|
|
create_door(player, 'GT Double Switch Left to Exit Bypass', Lgcl).no_exit(), # considered out of logic
|
|
create_door(player, 'GT Double Switch Pot Corners to Entry Barrier - Orange', Lgcl),
|
|
create_door(player, 'GT Double Switch Pot Corners to Exit Barrier - Blue', Lgcl),
|
|
create_door(player, 'GT Double Switch Pot Corners to Ranged Switches', Lgcl), # considered out of logic
|
|
create_door(player, 'GT Double Switch Pot Corners Ranged Switches Exit', Lgcl).no_exit(), # blocked here
|
|
create_door(player, 'GT Double Switch Exit to Blue Barrier', Lgcl),
|
|
create_door(player, 'GT Double Switch EN', Intr).dir(Ea, 0x9b, Top, High).small_key().pos(0),
|
|
create_door(player, 'GT Spike Crystals WN', Intr).dir(We, 0x9b, Top, High).small_key().pos(0),
|
|
create_door(player, 'GT Spike Crystal Left to Right Barrier - Orange', Lgcl),
|
|
create_door(player, 'GT Spike Crystal Right to Left Barrier - Orange', Lgcl),
|
|
create_door(player, 'GT Spike Crystal Left to Right Bypass', Lgcl),
|
|
create_door(player, 'GT Spike Crystals Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Left Section Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Mid Section Left Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Mid Section Right Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Right Section Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Pit Section Warp Spot', Lgcl),
|
|
create_door(player, 'GT Warp Maze Exit Section Warp Spot', Lgcl),
|
|
create_door(player, 'GT Warp Maze - Pit Exit Warp', Warp),
|
|
create_door(player, 'GT Warp Maze (Pits) ES', Nrml).dir(Ea, 0x9b, Bot, High).pos(2),
|
|
create_door(player, 'GT Firesnake Room Hook Path', Lgcl),
|
|
create_door(player, 'GT Firesnake Room SW', Intr).dir(So, 0x7d, Left, High).small_key().pos(2),
|
|
create_door(player, 'GT Warp Maze (Rails) NW', Intr).dir(No, 0x7d, Left, High).small_key().pos(2),
|
|
create_door(player, 'GT Warp Maze - Rail Choice Left Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Rail Choice Right Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Rando Rail Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Main Rails Best Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Main Rails Mid Left Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Main Rails Mid Right Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Main Rails Right Top Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Main Rails Right Mid Warp', Warp),
|
|
create_door(player, 'GT Warp Maze - Pot Rail Warp', Warp),
|
|
create_door(player, 'GT Warp Maze (Rails) WS', Nrml).dir(We, 0x7d, Bot, High).pos(1),
|
|
create_door(player, 'GT Petting Zoo SE', Nrml).dir(So, 0x7d, Right, High).trap(0x4).pos(0).portal(X, 0x00),
|
|
create_door(player, 'GT Conveyor Star Pits EN', Nrml).dir(Ea, 0x7b, Top, High).small_key().pos(1),
|
|
create_door(player, 'GT Hidden Star ES', Nrml).dir(Ea, 0x7b, Bot, High).pos(2).kill(),
|
|
create_door(player, 'GT Hidden Star Warp', Warp),
|
|
create_door(player, 'GT DMs Room SW', Nrml).dir(So, 0x7b, Left, High).trap(0x4).pos(0).portal(Z, 0x00),
|
|
create_door(player, 'GT Falling Bridge WN', Nrml).dir(We, 0x7c, Top, High).small_key().pos(2),
|
|
create_door(player, 'GT Falling Bridge WS', Nrml).dir(We, 0x7c, Bot, High).pos(3),
|
|
create_door(player, 'GT Randomizer Room ES', Nrml).dir(Ea, 0x7c, Bot, High).pos(1),
|
|
create_door(player, 'GT Ice Armos NE', Intr).dir(No, 0x1c, Right, High).pos(0),
|
|
create_door(player, 'GT Big Key Room SE', Intr).dir(So, 0x1c, Right, High).pos(0),
|
|
create_door(player, 'GT Ice Armos WS', Intr).dir(We, 0x1c, Bot, High).pos(1),
|
|
create_door(player, 'GT Four Torches ES', Intr).dir(Ea, 0x1c, Bot, High).no_exit().trap(0x2).pos(1),
|
|
create_door(player, 'GT Four Torches NW', Intr).dir(No, 0x1c, Left, High).pos(2),
|
|
create_door(player, 'GT Fairy Abyss SW', Intr).dir(So, 0x1c, Left, High).pos(2),
|
|
create_door(player, 'GT Four Torches Up Stairs', Sprl).dir(Up, 0x1c, 0, HTH).ss(Z, 0x1b, 0x2c, True, True),
|
|
create_door(player, 'GT Crystal Paths Down Stairs', Sprl).dir(Dn, 0x6b, 0, HTH).ss(A, 0x12, 0x00, False, True),
|
|
create_door(player, 'GT Crystal Paths SW', Intr).dir(So, 0x6b, Left, High).pos(3),
|
|
create_door(player, 'GT Mimics 1 NW', Intr).dir(No, 0x6b, Left, High).pos(3),
|
|
create_door(player, 'GT Mimics 1 ES', Intr).dir(Ea, 0x6b, Bot, High).pos(2),
|
|
create_door(player, 'GT Mimics 2 WS', Intr).dir(We, 0x6b, Bot, High).pos(2),
|
|
create_door(player, 'GT Mimics 2 NE', Intr).dir(No, 0x6b, Right, High).pos(1),
|
|
create_door(player, 'GT Dash Hall SE', Intr).dir(So, 0x6b, Right, High).pos(1),
|
|
create_door(player, 'GT Dash Hall NE', Nrml).dir(No, 0x6b, Right, High).big_key().pos(0),
|
|
create_door(player, 'GT Hidden Spikes SE', Nrml).dir(So, 0x5b, Right, High).small_key().pos(0).portal(X, 0x02),
|
|
create_door(player, 'GT Hidden Spikes EN', Nrml).dir(Ea, 0x5b, Top, High).trap(0x2).pos(1),
|
|
create_door(player, 'GT Cannonball Bridge WN', Nrml).dir(We, 0x5c, Top, High).pos(1),
|
|
create_door(player, 'GT Cannonball Bridge SE', Intr).dir(So, 0x5c, Right, High).pos(0),
|
|
create_door(player, 'GT Refill NE', Intr).dir(No, 0x5c, Right, High).pos(0),
|
|
create_door(player, 'GT Cannonball Bridge Up Stairs', Sprl).dir(Up, 0x5c, 0, HTH).ss(S, 0x1a, 0x6c, True),
|
|
create_door(player, 'GT Gauntlet 1 Down Stairs', Sprl).dir(Dn, 0x5d, 0, HTH).ss(S, 0x11, 0x80, True, True),
|
|
create_door(player, 'GT Gauntlet 1 WN', Intr).dir(We, 0x5d, Top, High).pos(2),
|
|
create_door(player, 'GT Gauntlet 2 EN', Intr).dir(Ea, 0x5d, Top, High).pos(2),
|
|
create_door(player, 'GT Gauntlet 2 SW', Intr).dir(So, 0x5d, Left, High).pos(0),
|
|
create_door(player, 'GT Gauntlet 3 NW', Intr).dir(No, 0x5d, Left, High).pos(0),
|
|
create_door(player, 'GT Gauntlet 3 SW', Nrml).dir(So, 0x5d, Left, High).trap(0x2).pos(1).portal(Z, 0x00),
|
|
create_door(player, 'GT Gauntlet 4 NW', Nrml).dir(No, 0x6d, Left, High).trap(0x4).pos(0),
|
|
create_door(player, 'GT Gauntlet 4 SW', Intr).dir(So, 0x6d, Left, High).pos(1),
|
|
create_door(player, 'GT Gauntlet 5 NW', Intr).dir(No, 0x6d, Left, High).pos(1),
|
|
create_door(player, 'GT Gauntlet 5 WS', Nrml).dir(We, 0x6d, Bot, High).trap(0x1).pos(2),
|
|
create_door(player, 'GT Beam Dash ES', Nrml).dir(Ea, 0x6c, Bot, High).pos(2).kill(),
|
|
create_door(player, 'GT Beam Dash WS', Intr).dir(We, 0x6c, Bot, High).pos(0),
|
|
create_door(player, 'GT Lanmolas 2 ES', Intr).dir(Ea, 0x6c, Bot, High).pos(0),
|
|
create_door(player, 'GT Lanmolas 2 NW', Intr).dir(No, 0x6c, Left, High).pos(1),
|
|
create_door(player, 'GT Quad Pot SW', Intr).dir(So, 0x6c, Left, High).no_exit().trap(0x2).pos(1),
|
|
create_door(player, 'GT Quad Pot Up Stairs', Sprl).dir(Up, 0x6c, 0, HTH).ss(A, 0x1b, 0x6c, True, True),
|
|
create_door(player, 'GT Wizzrobes 1 Down Stairs', Sprl).dir(Dn, 0xa5, 0, HTH).ss(A, 0x12, 0x80, True, True),
|
|
create_door(player, 'GT Wizzrobes 1 SW', Intr).dir(So, 0xa5, Left, High).pos(2),
|
|
create_door(player, 'GT Dashing Bridge NW', Intr).dir(No, 0xa5, Left, High).pos(2),
|
|
create_door(player, 'GT Dashing Bridge NE', Intr).dir(No, 0xa5, Right, High).pos(1),
|
|
create_door(player, 'GT Wizzrobes 2 SE', Intr).dir(So, 0xa5, Right, High).pos(1),
|
|
create_door(player, 'GT Wizzrobes 2 NE', Nrml).dir(No, 0xa5, Right, High).trap(0x4).pos(0),
|
|
create_door(player, 'GT Conveyor Bridge SE', Nrml).dir(So, 0x95, Right, High).pos(0).portal(X, 0x02),
|
|
create_door(player, 'GT Conveyor Bridge EN', Nrml).dir(Ea, 0x95, Top, High).pos(1),
|
|
create_door(player, 'GT Torch Cross WN', Nrml).dir(We, 0x96, Top, High).pos(1),
|
|
create_door(player, 'GT Torch Cross ES', Intr).dir(Ea, 0x96, Bot, High).pos(0),
|
|
create_door(player, 'GT Staredown WS', Intr).dir(We, 0x96, Bot, High).pos(0),
|
|
create_door(player, 'GT Staredown Up Ladder', Lddr).dir(No, 0x96, 6, High),
|
|
create_door(player, 'GT Falling Torches Down Ladder', Lddr).dir(So, 0x3d, 7, High),
|
|
create_door(player, 'GT Falling Torches NE', Intr).dir(No, 0x3d, Right, High).pos(0),
|
|
create_door(player, 'GT Mini Helmasaur Room SE', Intr).dir(So, 0x3d, Right, High).pos(0),
|
|
create_door(player, 'GT Falling Torches Hole', Hole),
|
|
create_door(player, 'GT Mini Helmasaur Room WN', Intr).dir(We, 0x3d, Top, High).small_key().pos(1),
|
|
create_door(player, 'GT Bomb Conveyor EN', Intr).dir(Ea, 0x3d, Top, High).small_key().pos(1),
|
|
create_door(player, 'GT Bomb Conveyor SW', Intr).dir(So, 0x3d, Left, High).pos(3),
|
|
create_door(player, 'GT Crystal Circles NW', Intr).dir(No, 0x3d, Left, High).pos(3),
|
|
create_door(player, 'GT Crystal Circles Barrier - Orange', Lgcl),
|
|
create_door(player, 'GT Crystal Inner Circle Barrier - Orange', Lgcl),
|
|
create_door(player, 'GT Crystal Circles to Ranged Crystal', Lgcl),
|
|
create_door(player, 'GT Crystal Circles Ranged Crystal Exit', Lgcl),
|
|
create_door(player, 'GT Crystal Circles SW', Nrml).dir(So, 0x3d, Left, High).small_key().pos(2).portal(Z, 0x00),
|
|
create_door(player, 'GT Left Moldorm Ledge NW', Nrml).dir(No, 0x4d, Left, High).small_key().pos(0).kill(),
|
|
create_door(player, 'GT Left Moldorm Ledge Drop Down', Lgcl),
|
|
create_door(player, 'GT Right Moldorm Ledge Drop Down', Lgcl),
|
|
create_door(player, 'GT Moldorm Gap', Lgcl),
|
|
create_door(player, 'GT Moldorm Hole', Hole),
|
|
create_door(player, 'GT Validation Block Path', Lgcl),
|
|
create_door(player, 'GT Validation WS', Nrml).dir(We, 0x4d, Bot, High).pos(1),
|
|
create_door(player, 'GT Right Moldorm Ledge Down Stairs', Sprl).dir(Dn, 0x4d, 0, HTH).ss(S, 0x12, 0x80).kill(),
|
|
create_door(player, 'GT Moldorm Pit Up Stairs', Sprl).dir(Up, 0xa6, 0, HTH).ss(S, 0x1b, 0x6c),
|
|
create_door(player, 'GT Frozen Over ES', Nrml).dir(Ea, 0x4c, Bot, High).no_exit().trap(0x4).pos(0),
|
|
create_door(player, 'GT Frozen Over Up Stairs', Sprl).dir(Up, 0x4c, 0, HTH).ss(S, 0x1a, 0x6c, True),
|
|
create_door(player, 'GT Brightly Lit Hall Down Stairs', Sprl).dir(Dn, 0x1d, 0, HTH).ss(S, 0x11, 0x80, False, True),
|
|
create_door(player, 'GT Brightly Lit Hall NW', Nrml).dir(No, 0x1d, Left, High).big_key().pos(0),
|
|
create_door(player, 'GT Agahnim 2 SW', Nrml).dir(So, 0x0d, Left, High).no_exit().trap(0x4).pos(0)
|
|
]
|
|
|
|
world.doors += doors
|
|
world.initialize_doors(doors)
|
|
|
|
create_paired_doors(world, player)
|
|
|
|
# swamp events
|
|
world.get_door('Swamp Trench 1 Approach Key', player).event('Trench 1 Switch')
|
|
world.get_door('Swamp Trench 1 Approach Swim Depart', player).event('Trench 1 Switch')
|
|
world.get_door('Swamp Trench 1 Key Approach', player).event('Trench 1 Switch')
|
|
world.get_door('Swamp Trench 1 Key Ledge Depart', player).event('Trench 1 Switch')
|
|
world.get_door('Swamp Trench 1 Departure Approach', player).event('Trench 1 Switch')
|
|
world.get_door('Swamp Trench 1 Departure Key', player).event('Trench 1 Switch')
|
|
world.get_door('Swamp Trench 2 Pots Wet', player).event('Trench 2 Switch')
|
|
world.get_door('Swamp Trench 2 Departure Wet', player).event('Trench 2 Switch')
|
|
world.get_door('Swamp Drain WN', player).event('Swamp Drain')
|
|
world.get_door('Swamp Flooded Room WS', player).event('Swamp Drain')
|
|
world.get_door('Swamp Drain Right Switch', player).event('Swamp Drain')
|
|
world.get_door('Swamp Flooded Room Ladder', player).event('Swamp Drain')
|
|
|
|
if world.mode[player] == 'standard' and 'Zelda Herself' not in [i.name for i in world.precollected_items if i.player == player]:
|
|
if world.default_zelda_region[player] == 'Thieves Blind\'s Cell':
|
|
zelda_location = 'Suspicious Maiden'
|
|
else:
|
|
zelda_location = 'Zelda Pickup'
|
|
world.get_door('Hyrule Castle Throne Room Tapestry', player).event(zelda_location)
|
|
world.get_door('Hyrule Castle Tapestry Backwards', player).event(zelda_location)
|
|
|
|
# crystal switches and barriers
|
|
world.get_door('Hera Lobby Crystal Exit', player).c_switch()
|
|
world.get_door('Hera Lobby to Front Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Hera Front to Lobby Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Hera Front Crystal Exit', player).c_switch()
|
|
world.get_door('Hera Front to Down Stairs Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Hera Down Stairs to Front Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Hera Down Stairs Landing Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('Hera Front to Up Stairs Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Hera Up Stairs to Front Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Hera Up Stairs Landing Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('Hera Front to Back Bypass', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Hera Front to Back Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Hera Back to Front Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Hera Back Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('Hera Basement Cage Crystal Exit', player).c_switch()
|
|
world.get_door('Hera Tile Room Up Stairs', player).c_switch()
|
|
world.get_door('Hera Tile Room EN', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Hera Tridorm WN', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Hera Tridorm Crystal Exit', player).c_switch()
|
|
world.get_door('Hera Tridorm SE', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Hera Beetles Down Stairs', player).c_switch()
|
|
world.get_door('Hera Beetles WS', player).c_switch()
|
|
world.get_door('Hera Beetles Holes Front', player).c_switch()
|
|
world.get_door('Hera Beetles Holes Landing', player).c_switch()
|
|
world.get_door('Hera Startile Wide Crystal Exit', player).c_switch()
|
|
world.get_door('Hera 5F Orange Path', player).barrier(CrystalBarrier.Orange)
|
|
|
|
world.get_door('PoD Arena North to Landing Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('PoD Arena Main to Landing Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('PoD Arena Main to Landing Bypass', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('PoD Arena Main to Right Bypass', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('PoD Arena Main Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('PoD Arena Bridge Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('PoD Arena Landing to Main Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('PoD Arena Landing to Right Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('PoD Arena Landing to North Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('PoD Arena Right to Landing Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('PoD Arena Right Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('PoD Arena Ledge Ranged Crystal Exit', player).c_switch()
|
|
|
|
world.get_door('PoD Sexy Statue W', player).c_switch()
|
|
world.get_door('PoD Sexy Statue NW', player).c_switch()
|
|
world.get_door('PoD Map Balcony Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('PoD Bow Statue Left Crystal Exit', player).c_switch()
|
|
world.get_door('PoD Bow Statue Left to Right Bypass', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('PoD Bow Statue Left to Right Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('PoD Bow Statue Right to Left Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('PoD Bow Statue Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('PoD Dark Pegs Right to Middle Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('PoD Dark Pegs Right to Middle Bypass', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('PoD Dark Pegs Middle to Right Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('PoD Dark Pegs Middle to Left Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('PoD Dark Pegs Middle to Left Bypass', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('PoD Dark Pegs Left to Middle Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('PoD Dark Pegs Landing Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('PoD Dark Pegs Middle Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('PoD Dark Pegs Left Ranged Crystal Exit', player).c_switch()
|
|
|
|
world.get_door('Swamp Crystal Switch Outer to Inner Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Swamp Crystal Switch Outer to Inner Bypass', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Swamp Crystal Switch Inner to Outer Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Swamp Crystal Switch Inner to Outer Bypass', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Swamp Crystal Switch Inner Crystal Exit', player).c_switch()
|
|
world.get_door('Swamp Crystal Switch Outer Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('Swamp Shortcut Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Swamp Trench 2 Pots Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Swamp Barrier Ledge - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Swamp Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
|
|
world.get_door('Thieves Spike Switch Up Stairs', player).c_switch()
|
|
world.get_door('Thieves Spike Switch SW', player).c_switch()
|
|
world.get_door('Thieves Attic ES', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Thieves Hellway Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Thieves Hellway Crystal Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Thieves Triple Bypass SE', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Thieves Triple Bypass WN', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Thieves Triple Bypass EN', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Thieves Hellway Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Thieves Hellway Crystal Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Thieves Attic Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Thieves Attic Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Thieves Attic Hint Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Thieves Attic Switch Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
|
|
world.get_door('Ice Bomb Drop SE', player).c_switch()
|
|
world.get_door('Ice Conveyor Crystal Exit', player).c_switch()
|
|
world.get_door('Ice Refill Crystal Exit', player).c_switch()
|
|
world.get_door('Ice Bomb Drop Hole', player).barrier(CrystalBarrier.Orange) # not required to hit switch w/ bomb
|
|
world.get_door('Ice Bomb Jump Ledge Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Ice Bomb Jump Catwalk Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Ice Crystal Right Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Ice Crystal Right Blue Hole', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Ice Crystal Left Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Ice Crystal Left Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Ice Backwards Room Hole', player).barrier(CrystalBarrier.Blue)
|
|
|
|
world.get_door('Mire Fishbone E', player).c_switch()
|
|
world.get_door('Mire Conveyor Crystal Exit', player).c_switch()
|
|
world.get_door('Mire Tall Dark and Roomy Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('Mire Crystal Top SW', player).c_switch()
|
|
world.get_door('Mire Falling Foes ES', player).c_switch()
|
|
world.get_door('Mire Falling Foes Up Stairs', player).c_switch()
|
|
world.get_door('Mire Hub Upper Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Hub Lower Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Hub Right Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Hub Top Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Hub Switch Blue Barrier N', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Hub Switch Blue Barrier S', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Map Spike Side Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Map Spot Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Crystal Dead End Left Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Crystal Dead End Right Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Fishbone Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Fishbone Blue Barrier Bypass', player).barrier(CrystalBarrier.Orange)
|
|
|
|
world.get_door('Mire South Fish Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Compass Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Crystal Mid Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Crystal Left Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('Mire Crystal Right Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Mire Crystal Mid Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Mire Firesnake Skip Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('Mire Antechamber Orange Barrier', player).barrier(CrystalBarrier.Orange)
|
|
|
|
world.get_door('TR Chain Chomps Top Crystal Exit', player).c_switch()
|
|
world.get_door('TR Chain Chomps Top to Bottom Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('TR Chain Chomps Bottom to Top Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('TR Chain Chomps Bottom Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('TR Pokey 2 Top Crystal Exit', player).c_switch()
|
|
world.get_door('TR Pokey 2 Top to Bottom Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('TR Pokey 2 Bottom to Top Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('TR Pokey 2 Bottom Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('TR Crystaroller Bottom to Middle Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('TR Crystaroller Middle to Bottom Bypass', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('TR Crystaroller Middle to Bottom Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('TR Crystaroller Middle to Chest Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('TR Crystaroller Chest to Middle Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('TR Crystaroller Middle to Top Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('TR Crystaroller Top to Middle Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('TR Crystaroller Middle Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('TR Crystaroller Bottom Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('TR Crystaroller Top Crystal Exit', player).c_switch()
|
|
world.get_door('TR Crystal Maze Start Crystal Exit', player).c_switch()
|
|
world.get_door('TR Crystal Maze Start to Interior Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('TR Crystal Maze Interior to Start Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('TR Crystal Maze Interior to End Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('TR Crystal Maze Interior to End Bypass', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('TR Crystal Maze Interior to Start Bypass', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('TR Crystal Maze End to Interior Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('TR Crystal Maze End Ranged Crystal Exit', player).c_switch()
|
|
|
|
world.get_door('GT Crystal Conveyor to Corner Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('GT Crystal Conveyor Corner to Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('GT Crystal Conveyor Corner to Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Crystal Conveyor Left to Corner Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Crystal Conveyor Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('GT Crystal Conveyor Corner Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('GT Crystal Conveyor Corner to Left Bypass', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('GT Hookshot South-Mid Path', player).c_switch()
|
|
world.get_door('GT Hookshot ES', player).c_switch()
|
|
world.get_door('GT Hookshot Platform Barrier Bypass', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Hookshot Platform Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('GT HookShot South Entry Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('GT Spike Crystals WN', player).c_switch()
|
|
world.get_door('GT Spike Crystals Warp', player).c_switch()
|
|
world.get_door('GT Crystal Paths Down Stairs', player).c_switch()
|
|
world.get_door('GT Crystal Paths SW', player).c_switch()
|
|
world.get_door('GT Hidden Spikes SE', player).c_switch()
|
|
world.get_door('GT Hidden Spikes EN', player).c_switch()
|
|
world.get_door('GT Crystal Circles Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Crystal Inner Circle Barrier - Orange', player).c_switch()
|
|
world.get_door('GT Crystal Circles Ranged Crystal Exit', player).c_switch()
|
|
world.get_door('GT Hookshot Entry Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('GT Double Switch Entry to Pot Corners Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Double Switch Entry to Left Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Double Switch Entry Ranged Switches Exit', player).c_switch()
|
|
world.get_door('GT Double Switch Left Crystal Exit', player).c_switch()
|
|
world.get_door('GT Double Switch Left to Entry Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Double Switch Left to Entry Bypass', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('GT Double Switch Left to Pot Corners Bypass', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('GT Double Switch Left to Exit Bypass', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Double Switch Pot Corners to Entry Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Double Switch Pot Corners to Exit Barrier - Blue', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('GT Double Switch Pot Corners Ranged Switches Exit', player).c_switch()
|
|
world.get_door('GT Double Switch Exit to Blue Barrier', player).barrier(CrystalBarrier.Blue)
|
|
world.get_door('GT Spike Crystal Left to Right Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Spike Crystal Right to Left Barrier - Orange', player).barrier(CrystalBarrier.Orange)
|
|
world.get_door('GT Spike Crystal Left to Right Bypass', player).barrier(CrystalBarrier.Blue)
|
|
|
|
world.get_door('Sanctuary Mirror Route', player).barrier(CrystalBarrier.Orange)
|
|
|
|
# kill certain doors
|
|
if world.intensity[player] == 1: # due to ladder & warp being fixed
|
|
world.get_door('PoD Mimics 2 SW', player).kill()
|
|
|
|
|
|
# nifty dynamic logical doors:
|
|
south_controller = world.get_door('Ice Cross Bottom SE', player)
|
|
east_controller = world.get_door('Ice Cross Right ES', player)
|
|
controller_door(south_controller, world.get_door('Ice Cross Left Push Block', player))
|
|
controller_door(south_controller, world.get_door('Ice Cross Right Push Block Bottom', player))
|
|
controller_door(south_controller, world.get_door('Ice Cross Top Push Block Bottom', player))
|
|
controller_door(east_controller, world.get_door('Ice Cross Bottom Push Block Right', player))
|
|
controller_door(east_controller, world.get_door('Ice Cross Top Push Block Right', player))
|
|
primary_controller = world.get_door('Mire Falling Bridge WS', player)
|
|
controller_door(primary_controller, world.get_door('Mire Falling Bridge Primary Path', player))
|
|
|
|
assign_entrances(world, player)
|
|
|
|
create_portals(world, player)
|
|
|
|
# static portal flags
|
|
world.get_door('Sanctuary S', player).dead_end(allowPassage=True)
|
|
if not world.is_dark_chapel_start(player) and world.shuffle[player] not in ['lean', 'swapped', 'crossed', 'insanity']:
|
|
world.get_door('Sanctuary S', player).lw_restricted = True
|
|
world.get_door('Eastern Hint Tile Blocked Path SE', player).passage = False
|
|
world.get_door('TR Big Chest Entrance SE', player).passage = False
|
|
world.get_door('Sewers Secret Room Key Door S', player).dungeonLink = 'Hyrule Castle'
|
|
world.get_door('Desert Cannonball S', player).dead_end()
|
|
world.get_door('Desert Boss SW', player).dead_end()
|
|
world.get_door('Desert Boss SW', player).dungeonLink = 'Desert Palace'
|
|
world.get_door('Skull 1 Lobby S', player).dungeonLink = 'Skull Woods'
|
|
world.get_door('Skull Map Room SE', player).dungeonLink = 'Skull Woods'
|
|
world.get_door('Skull Spike Corner SW', player).dungeonLink = 'Skull Woods'
|
|
world.get_door('Skull Spike Corner SW', player).dead_end()
|
|
world.get_door('Thieves Pot Alcove Bottom SW', player).dead_end()
|
|
world.get_door('Ice Conveyor SW', player).dead_end(allowPassage=True)
|
|
world.get_door('Mire Right Bridge SE', player).dead_end(allowPassage=True)
|
|
world.get_door('TR Roller Room SW', player).dead_end()
|
|
world.get_door('TR Tile Room SE', player).dead_end()
|
|
world.get_door('TR Boss SW', player).dead_end()
|
|
world.get_door('TR Boss SW', player).dungeonLink = 'Turtle Rock'
|
|
world.get_door('GT Petting Zoo SE', player).dead_end()
|
|
world.get_door('GT DMs Room SW', player).dead_end()
|
|
world.get_door("GT Bob\'s Room SE", player).passage = False
|
|
world.get_door('Desert Tiles 2 SE', player).bk_shuffle_req = True # key-drop note: allows this to be a portal
|
|
world.get_door('Swamp Lobby S', player).standard_restricted = True
|
|
world.get_door('Sanctuary S', player).standard_restricted = True
|
|
world.get_door('PoD Mimics 2 SW', player).rupee_bow_restricted = True # bow statue
|
|
# enemizer logic could get rid of the following restriction
|
|
world.get_door('PoD Pit Room S', player).rupee_bow_restricted = True # so mimics 1 shouldn't be required
|
|
|
|
# can't unlink from boss right now
|
|
world.get_door('Hera Lobby S', player).dungeonLink = 'Tower of Hera'
|
|
# can't unlink from skull woods right now
|
|
world.get_door('Skull 2 West Lobby S', player).dungeonLink = 'Skull Woods'
|
|
|
|
set_special_dungeon_links(world, player)
|
|
|
|
|
|
def create_portals(world, player):
|
|
dungeon_portals = [
|
|
create_portal(player, 'Sanctuary', world.get_door('Sanctuary S', player), 0x02, 0x02),
|
|
create_portal(player, 'Hyrule Castle West', world.get_door('Hyrule Castle West Lobby S', player), 0x03, 0x04),
|
|
create_portal(player, 'Hyrule Castle South', world.get_door('Hyrule Castle Lobby S', player), 0x04, 0x06),
|
|
create_portal(player, 'Hyrule Castle East', world.get_door('Hyrule Castle East Lobby S', player), 0x05, 0x08),
|
|
create_portal(player, 'Eastern', world.get_door('Eastern Lobby S', player), 0x08, 0x12, 0),
|
|
create_portal(player, 'Desert South', world.get_door('Desert Main Lobby S', player), 0x09, 0x14),
|
|
create_portal(player, 'Desert East', world.get_door('Desert East Lobby S', player), 0x0a, 0x16),
|
|
create_portal(player, 'Desert West', world.get_door('Desert West S', player), 0x0b, 0x18),
|
|
create_portal(player, 'Desert Back', world.get_door('Desert Back Lobby S', player), 0x0c, 0x1a, 1),
|
|
create_portal(player, 'Turtle Rock Lazy Eyes', world.get_door('TR Lazy Eyes SE', player), 0x15, 0x2c),
|
|
create_portal(player, 'Turtle Rock Eye Bridge', world.get_door('TR Eye Bridge SW', player), 0x18, 0x32),
|
|
create_portal(player, 'Turtle Rock Chest', world.get_door('TR Big Chest Entrance SE', player), 0x19, 0x34),
|
|
create_portal(player, 'Agahnims Tower', world.get_door('Tower Lobby S', player), 0x24, 0x4a),
|
|
create_portal(player, 'Swamp', world.get_door('Swamp Lobby S', player), 0x25, 0x4c, 4),
|
|
create_portal(player, 'Palace of Darkness', world.get_door('PoD Lobby S', player), 0x26, 0x4e, 5),
|
|
create_portal(player, 'Mire', world.get_door('Mire Lobby S', player), 0x27, 0x50, 7),
|
|
create_portal(player, 'Skull 2 West', world.get_door('Skull 2 West Lobby S', player), 0x28, 0x52),
|
|
create_portal(player, 'Skull 2 East', world.get_door('Skull 2 East Lobby SW', player), 0x29, 0x54),
|
|
create_portal(player, 'Skull 1', world.get_door('Skull 1 Lobby S', player), 0x2a, 0x56),
|
|
create_portal(player, 'Skull 3', world.get_door('Skull 3 Lobby SW', player), 0x2b, 0x58, 6),
|
|
create_portal(player, 'Ice', world.get_door('Ice Lobby SE', player), 0x2d, 0x5c, 8),
|
|
create_portal(player, 'Hera', world.get_door('Hera Lobby S', player), 0x33, 0x5a, 2),
|
|
create_portal(player, 'Thieves Town', world.get_door('Thieves Lobby S', player), 0x34, 0x6a, 10),
|
|
create_portal(player, 'Turtle Rock Main', world.get_door('TR Main Lobby SE', player), 0x35, 0x68, 9),
|
|
create_portal(player, 'Ganons Tower', world.get_door('GT Lobby S', player), 0x37, 0x70),
|
|
]
|
|
world.dungeon_portals[player] += dungeon_portals
|
|
|
|
|
|
def set_special_dungeon_links(world, player):
|
|
world.get_door('Ice Spike Cross SE', player).dungeonLink = 'linkIceFalls'
|
|
world.get_door('Ice Tall Hint SE', player).dungeonLink = 'linkIceFalls'
|
|
world.get_door('Ice Switch Room SE', player).dungeonLink = 'linkIceFalls'
|
|
|
|
world.get_door('Ice Cross Bottom SE', player).dungeonLink = 'linkIceFalls2'
|
|
world.get_door('Ice Conveyor SW', player).dungeonLink = 'linkIceFalls2'
|
|
|
|
|
|
def reset_portals(world, player):
|
|
world.dungeon_portals[player].clear()
|
|
world._portal_cache.clear()
|
|
create_portals(world, player)
|
|
set_special_dungeon_links(world, player)
|
|
|
|
|
|
def create_paired_doors(world, player):
|
|
world.paired_doors[player] = [
|
|
PairedDoor('Sewers Secret Room Key Door S', 'Sewers Key Rat NE', True),
|
|
PairedDoor('TR Pokey 2 ES', 'TR Lava Island WS', True), # TR Pokey Key
|
|
PairedDoor('TR Dodgers NE', 'TR Lava Escape SE', True), # TR Big key door by pipes
|
|
PairedDoor('PoD Falling Bridge WN', 'PoD Dark Maze EN', True), # Pod Dark maze door
|
|
PairedDoor('PoD Dark Maze E', 'PoD Big Chest Balcony W', True), # PoD Bombable by Big Chest
|
|
PairedDoor('PoD Arena Main NW', 'PoD Falling Bridge SW', True), # Pod key door by bridge
|
|
PairedDoor('Sewers Dark Cross Key Door N', 'Sewers Water S', True),
|
|
PairedDoor('Swamp Hub WN', 'Swamp Crystal Switch EN', True), # Swamp key door crystal switch
|
|
PairedDoor('Swamp Hub North Ledge N', 'Swamp Push Statue S', True), # Swamp key door above big chest
|
|
PairedDoor('PoD Map Balcony WS', 'PoD Arena Ledge ES', True), # Pod bombable by arena
|
|
PairedDoor('Swamp Hub Dead Ledge EN', 'Swamp Hammer Switch WN', True), # Swamp bombable to random pots
|
|
PairedDoor('Swamp Pot Row WN', 'Swamp Map Ledge EN', True), # Swamp bombable to map chest
|
|
PairedDoor('Swamp Pot Row WS', 'Swamp Trench 1 Approach ES', True), # Swamp key door early room $38
|
|
PairedDoor('PoD Middle Cage N', 'PoD Pit Room S', True),
|
|
PairedDoor('GT Crystal Circles SW', 'GT Left Moldorm Ledge NW', True), # GT moldorm key door
|
|
PairedDoor('Ice Conveyor SW', 'Ice Bomb Jump NW', True), # Ice BJ key door
|
|
PairedDoor('Desert Tiles 2 SE', 'Desert Beamos Hall NE', True),
|
|
PairedDoor('Skull 3 Lobby NW', 'Skull Star Pits SW', True), # Skull 3 key door
|
|
PairedDoor('Skull 1 Lobby WS', 'Skull Pot Prison ES', True), # Skull 1 key door - pot prison to big chest
|
|
PairedDoor('Skull Map Room SE', 'Skull Pinball NE', True), # Skull 1 - pinball key door
|
|
PairedDoor('GT Dash Hall NE', 'GT Hidden Spikes SE', True), # gt main big key door
|
|
PairedDoor('Ice Spike Cross ES', 'Ice Spike Room WS', True), # ice door to spike chest
|
|
PairedDoor('GT Conveyor Star Pits EN', 'GT Falling Bridge WN', True), # gt right side key door to cape bridge
|
|
PairedDoor('GT Warp Maze (Rails) WS', 'GT Randomizer Room ES', True), # gt bombable to rando room
|
|
PairedDoor('Ice Tall Hint SE', 'Ice Lonely Freezor NE', True), # ice's big icy room key door to lonely freezor
|
|
PairedDoor('Eastern Courtyard N', 'Eastern Darkness S', True),
|
|
PairedDoor('Mire Fishbone SE', 'Mire Spike Barrier NE', True), # mire fishbone key door
|
|
PairedDoor('Mire BK Door Room N', 'Mire Left Bridge S', True), # mire big key door to bridges
|
|
PairedDoor('Eastern Big Key NE', 'Eastern Hint Tile Blocked Path SE', True),
|
|
PairedDoor('TR Hub NW', 'TR Pokey 1 SW', True), # TR somaria hub to pokey
|
|
PairedDoor('Eastern Dark Square Key Door WN', 'Eastern Cannonball Ledge Key Door EN', True),
|
|
PairedDoor('Thieves Rail Ledge NW', 'Thieves Pot Alcove Bottom SW', True), # TT random bomb to pots
|
|
PairedDoor('Thieves BK Corner NE', 'Thieves Hallway SE', True), # TT big key door
|
|
PairedDoor('Ice Switch Room ES', 'Ice Refill WS', True), # Ice last key door to crystal switch
|
|
PairedDoor('Mire Hub WS', 'Mire Conveyor Crystal ES', True), # mire hub key door to attic
|
|
PairedDoor('Mire Hub Right EN', 'Mire Map Spot WN', True), # mire hub key door to map
|
|
PairedDoor('TR Dash Bridge WS', 'TR Crystal Maze ES', True), # tr last key door to switch maze
|
|
PairedDoor('Thieves Ambush E', 'Thieves Rail Ledge W', True) # TT dashable above
|
|
]
|
|
|
|
|
|
def assign_entrances(world, player):
|
|
for door in world.doors:
|
|
if door.player == player:
|
|
entrance = world.check_for_entrance(door.name, player)
|
|
if entrance is not None:
|
|
door.entrance = entrance
|
|
entrance.door = door
|
|
|
|
|
|
def controller_door(controller, dependent):
|
|
dependent.controller = controller
|
|
controller.dependents.append(dependent)
|
|
|
|
|
|
def create_door(player, name, door_type):
|
|
return Door(player, name, door_type)
|
|
|
|
|
|
def ugly_door(door):
|
|
door.ugly = True
|
|
return door
|
|
|
|
|
|
def create_portal(player, name, door, ent, ext, boss_exit_idx=-1):
|
|
door.entranceFlag = True
|
|
return Portal(player, name, door, ent, ext, boss_exit_idx)
|