├── .github └── workflows │ └── python-parse-test.yml ├── .gitignore ├── .tinyci ├── LICENSE ├── README.md ├── assembler.const ├── assembler.py ├── backgroundEditor.py ├── checkMetadata.py ├── docs ├── _config.yml ├── _includes │ └── head-custom.html ├── faq.html ├── favicon.ico ├── hack0.md ├── index.html ├── logo.png ├── plan-template.txt ├── style.css └── tips.html ├── dungeongen ├── constants.py ├── dungeongen.py ├── roomtemplate.py └── roomtemplates.py ├── entityData.py ├── entranceInfo.py ├── explorer.py ├── generator.py ├── gfx ├── AgesGirl.bin ├── AgesGirl.bin.png ├── AgesGirl.bin.txt ├── Bowwow.bin ├── Bowwow.bin.png ├── Bowwow.bin.txt ├── Bunny.bin ├── Bunny.bin.png ├── Bunny.bin.txt ├── GrandmaUlrira.bin ├── GrandmaUlrira.bin.png ├── GrandmaUlrira.bin.txt ├── Kirby.bin ├── Kirby.bin.png ├── Kirby.bin.txt ├── Linker.txt ├── Luigi.bin ├── Luigi.bin.png ├── Luigi.bin.txt ├── MMLink.bin ├── MMLink.bin.png ├── MMLink.bin.txt ├── Marin.bin ├── Marin.bin.png ├── Marin.bin.txt ├── MarinAlpha.bin ├── MarinAlpha.bin.png ├── MarinAlpha.bin.txt ├── Mario.bin ├── Mario.bin.png ├── Mario.bin.txt ├── Martha.bin ├── Martha.bin.png ├── Martha.bin.txt ├── Matty.bin ├── Matty.bin.names ├── Matty.bin.png ├── Matty.bin.txt ├── Meme.bin ├── Meme.bin.names ├── Meme.bin.png ├── Meme.bin.txt ├── NESLink.bin ├── NESLink.bin.names ├── NESLink.bin.png ├── NESLink.bin.txt ├── Ninten.bin ├── Ninten.bin.png ├── Ninten.bin.txt ├── Richard.bin ├── Richard.bin.png ├── Richard.bin.txt ├── Ricky.bin ├── Ricky.bin.png ├── Rooster.bin ├── Rooster.bin.png ├── Rooster.bin.txt ├── Rosa.bin ├── Rosa.bin.png ├── Rosa.bin.txt ├── Saria.bin ├── Saria.bin.png ├── Saria.bin.txt ├── Sig.bin ├── Sig.bin.names ├── Sig.bin.png ├── Sig.bin.txt ├── Subrosian.bin ├── Subrosian.bin.names ├── Subrosian.bin.png ├── Subrosian.bin.txt ├── Tarin.bin ├── Tarin.bin.png ├── Tarin.bin.txt ├── X.bin ├── X.bin.png ├── X.bin.txt ├── ZeroMeaning.txt ├── template.png ├── template_extended.png └── template_extended2.png ├── gfxconv.py ├── hints.py ├── itempool.py ├── launch_web_ui.py ├── locations ├── all.py ├── anglerKey.py ├── beachSword.py ├── birdKey.py ├── boomerangGuy.py ├── chest.py ├── constants.py ├── droppedKey.py ├── faceKey.py ├── fishingMinigame.py ├── goldLeaf.py ├── heartContainer.py ├── heartPiece.py ├── hookshot.py ├── instrument.py ├── itemInfo.py ├── items.py ├── keyLocation.py ├── keyhole.py ├── madBatter.py ├── owlStatue.py ├── seashell.py ├── shop.py ├── song.py ├── startItem.py ├── toadstool.py ├── tradeSequence.py ├── tunicFairy.py └── witch.py ├── logic ├── __init__.py ├── dungeon1.py ├── dungeon2.py ├── dungeon3.py ├── dungeon4.py ├── dungeon5.py ├── dungeon6.py ├── dungeon7.py ├── dungeon8.py ├── dungeonChain.py ├── dungeonColor.py ├── location.py ├── main.py ├── overworld.py └── requirements.py ├── main.py ├── mapexport.py ├── mapgen ├── __init__.py ├── enemygen.py ├── imagegenerator.py ├── locationgen.py ├── locations │ ├── base.py │ ├── chest.py │ ├── entrance.py │ ├── entrance_info.py │ └── seashell.py ├── logic.py ├── map.py ├── roomgen.py ├── roomtype │ ├── base.py │ ├── forest.py │ ├── mountain.py │ ├── town.py │ └── water.py ├── tileset.py ├── util.py └── wfc.py ├── musicData.py ├── patches ├── aesthetics.py ├── alttp.py ├── bank3e.asm │ ├── bowwow.asm │ ├── chest.asm │ ├── evilshop.asm │ ├── link.asm │ ├── main.asm │ ├── message.asm │ ├── multiworld.asm │ ├── nightmareminiboss.asm │ └── owl.asm ├── bank3e.py ├── bank3f.py ├── bingo.py ├── bomb.py ├── bowwow.py ├── cats │ ├── Aurene.bin │ ├── Garfield.bin │ ├── Marie.bin │ ├── Mausi.bin │ ├── ayrie.bin │ ├── bert.bin │ ├── binx.bin │ ├── carlo.bin │ ├── colby_jack.bin │ ├── dusty_daisy.bin │ ├── fluffy.bin │ ├── galactica.bin │ ├── henkie.bin │ ├── jack.bin │ ├── jose.bin │ ├── lola.bin │ ├── meep.bin │ ├── mora.bin │ ├── newton.bin │ ├── nyan.bin │ ├── patapouf.bin │ ├── pippin.bin │ ├── schoko.bin │ └── sunny.bin ├── chest.py ├── colorBook.py ├── core.py ├── desert.py ├── droppedKey.py ├── dungeon.py ├── endscreen.py ├── enemies.py ├── entrances.py ├── evilshop.py ├── extragfx.py ├── fishingMinigame.py ├── follower.py ├── goal.py ├── goldenLeaf.py ├── hardMode.py ├── health.py ├── heartPiece.py ├── instrument.py ├── inventory.py ├── madBatter.py ├── maptweaks.py ├── marin.txt ├── maze.py ├── multiworld.py ├── music.py ├── overworld.py ├── overworld │ ├── alttp │ │ ├── 00.json │ │ ├── 01.json │ │ ├── 02.json │ │ ├── 03.json │ │ ├── 04.json │ │ ├── 05.json │ │ ├── 06.json │ │ ├── 07.json │ │ ├── 08.json │ │ ├── 09.json │ │ ├── 0A.json │ │ ├── 0B.json │ │ ├── 0C.json │ │ ├── 0D.json │ │ ├── 0E.json │ │ ├── 0F.json │ │ ├── 10.json │ │ ├── 11.json │ │ ├── 12.json │ │ ├── 13.json │ │ ├── 14.json │ │ ├── 15.json │ │ ├── 16.json │ │ ├── 17.json │ │ ├── 18.json │ │ ├── 19.json │ │ ├── 1A.json │ │ ├── 1B.json │ │ ├── 1C.json │ │ ├── 1D.json │ │ ├── 1E.json │ │ ├── 1E8.json │ │ ├── 1F.json │ │ ├── 1F8.json │ │ ├── 20.json │ │ ├── 21.json │ │ ├── 22.json │ │ ├── 23.json │ │ ├── 24.json │ │ ├── 25.json │ │ ├── 26.json │ │ ├── 27.json │ │ ├── 28.json │ │ ├── 29.json │ │ ├── 2A.json │ │ ├── 2B.json │ │ ├── 2C.json │ │ ├── 2C8.json │ │ ├── 2D.json │ │ ├── 2DF.json │ │ ├── 2E.json │ │ ├── 2F.json │ │ ├── 30.json │ │ ├── 31.json │ │ ├── 32.json │ │ ├── 33.json │ │ ├── 34.json │ │ ├── 35.json │ │ ├── 36.json │ │ ├── 37.json │ │ ├── 38.json │ │ ├── 39.json │ │ ├── 3A.json │ │ ├── 3B.json │ │ ├── 3C.json │ │ ├── 3D.json │ │ ├── 3E.json │ │ ├── 3F.json │ │ ├── 40.json │ │ ├── 41.json │ │ ├── 42.json │ │ ├── 43.json │ │ ├── 44.json │ │ ├── 45.json │ │ ├── 46.json │ │ ├── 47.json │ │ ├── 48.json │ │ ├── 49.json │ │ ├── 4A.json │ │ ├── 4B.json │ │ ├── 4C.json │ │ ├── 4D.json │ │ ├── 4E.json │ │ ├── 4F.json │ │ ├── 50.json │ │ ├── 51.json │ │ ├── 52.json │ │ ├── 53.json │ │ ├── 54.json │ │ ├── 55.json │ │ ├── 56.json │ │ ├── 57.json │ │ ├── 58.json │ │ ├── 59.json │ │ ├── 5A.json │ │ ├── 5B.json │ │ ├── 5C.json │ │ ├── 5D.json │ │ ├── 5E.json │ │ ├── 5F.json │ │ ├── 60.json │ │ ├── 61.json │ │ ├── 62.json │ │ ├── 63.json │ │ ├── 64.json │ │ ├── 65.json │ │ ├── 66.json │ │ ├── 67.json │ │ ├── 68.json │ │ ├── 69.json │ │ ├── 6A.json │ │ ├── 6B.json │ │ ├── 6C.json │ │ ├── 6D.json │ │ ├── 6E.json │ │ ├── 6F.json │ │ ├── 70.json │ │ ├── 71.json │ │ ├── 72.json │ │ ├── 73.json │ │ ├── 74.json │ │ ├── 75.json │ │ ├── 76.json │ │ ├── 77.json │ │ ├── 78.json │ │ ├── 79.json │ │ ├── 7A.json │ │ ├── 7B.json │ │ ├── 7C.json │ │ ├── 7D.json │ │ ├── 7E.json │ │ ├── 7F.json │ │ ├── 80.json │ │ ├── 81.json │ │ ├── 82.json │ │ ├── 83.json │ │ ├── 84.json │ │ ├── 85.json │ │ ├── 86.json │ │ ├── 87.json │ │ ├── 88.json │ │ ├── 89.json │ │ ├── 8A.json │ │ ├── 8B.json │ │ ├── 8C.json │ │ ├── 8D.json │ │ ├── 8E.json │ │ ├── 8F.json │ │ ├── 90.json │ │ ├── 91.json │ │ ├── 92.json │ │ ├── 93.json │ │ ├── 94.json │ │ ├── 95.json │ │ ├── 96.json │ │ ├── 97.json │ │ ├── 98.json │ │ ├── 99.json │ │ ├── 9A.json │ │ ├── 9B.json │ │ ├── 9C.json │ │ ├── 9D.json │ │ ├── 9E.json │ │ ├── 9F.json │ │ ├── A0.json │ │ ├── A1.json │ │ ├── A2.json │ │ ├── A3.json │ │ ├── A4.json │ │ ├── A5.json │ │ ├── A6.json │ │ ├── A7.json │ │ ├── A8.json │ │ ├── A9.json │ │ ├── AA.json │ │ ├── AB.json │ │ ├── AC.json │ │ ├── AD.json │ │ ├── AE.json │ │ ├── AF.json │ │ ├── Alt06.json │ │ ├── Alt0E.json │ │ ├── Alt1B.json │ │ ├── Alt2B.json │ │ ├── Alt79.json │ │ ├── Alt8C.json │ │ ├── B0.json │ │ ├── B1.json │ │ ├── B2.json │ │ ├── B3.json │ │ ├── B4.json │ │ ├── B5.json │ │ ├── B6.json │ │ ├── B7.json │ │ ├── B8.json │ │ ├── B9.json │ │ ├── BA.json │ │ ├── BB.json │ │ ├── BC.json │ │ ├── BD.json │ │ ├── BE.json │ │ ├── BF.json │ │ ├── C0.json │ │ ├── C1.json │ │ ├── C2.json │ │ ├── C3.json │ │ ├── C4.json │ │ ├── C5.json │ │ ├── C6.json │ │ ├── C7.json │ │ ├── C8.json │ │ ├── C9.json │ │ ├── CA.json │ │ ├── CB.json │ │ ├── CC.json │ │ ├── CD.json │ │ ├── CE.json │ │ ├── CF.json │ │ ├── D0.json │ │ ├── D1.json │ │ ├── D2.json │ │ ├── D3.json │ │ ├── D4.json │ │ ├── D5.json │ │ ├── D6.json │ │ ├── D7.json │ │ ├── D8.json │ │ ├── D9.json │ │ ├── DA.json │ │ ├── DB.json │ │ ├── DC.json │ │ ├── DD.json │ │ ├── DE.json │ │ ├── DF.json │ │ ├── E0.json │ │ ├── E1.json │ │ ├── E2.json │ │ ├── E3.json │ │ ├── E4.json │ │ ├── E5.json │ │ ├── E6.json │ │ ├── E7.json │ │ ├── E8.json │ │ ├── E9.json │ │ ├── EA.json │ │ ├── EB.json │ │ ├── EC.json │ │ ├── ED.json │ │ ├── EE.json │ │ ├── EF.json │ │ ├── F0.json │ │ ├── F1.json │ │ ├── F2.json │ │ ├── F3.json │ │ ├── F4.json │ │ ├── F5.json │ │ ├── F6.json │ │ ├── F7.json │ │ ├── F8.json │ │ ├── F9.json │ │ ├── FA.json │ │ ├── FB.json │ │ ├── FC.json │ │ ├── FD.json │ │ ├── FE.json │ │ ├── FF.json │ │ ├── desert.png │ │ ├── hammer.png │ │ └── walrus.png │ └── dive │ │ ├── 00.json │ │ ├── 01.json │ │ ├── 06.json │ │ ├── 16.json │ │ ├── 62.json │ │ ├── 6C.json │ │ ├── 71.json │ │ ├── 72.json │ │ ├── 73.json │ │ ├── 81.json │ │ ├── 82.json │ │ ├── 83.json │ │ ├── 91.json │ │ ├── 92.json │ │ ├── 93.json │ │ ├── A1.json │ │ ├── A2.json │ │ ├── A3.json │ │ ├── B0.json │ │ ├── B1.json │ │ ├── B2.json │ │ └── B3.json ├── owl.py ├── phone.py ├── photographer.py ├── reduceRNG.py ├── rooster.py ├── save.py ├── seashell.py ├── shop.py ├── softlock.py ├── songs.py ├── tarin.py ├── titleScreen.py ├── tradeSequence.py ├── trendy.py ├── tunicFairy.py ├── weapons.py └── witch.py ├── plan.py ├── pointerTable.py ├── randomizer.py ├── rom.py ├── romTables.py ├── roomEditor.py ├── roomInfo.py ├── settings.py ├── spoilerLog.py ├── utils.py ├── worldSetup.py └── www ├── gfx2bin.html ├── index.html ├── js ├── options.js ├── ui.js └── worker.js ├── multiworld.html ├── mystery.html ├── plando.html └── style.css /.github/workflows/python-parse-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/.github/workflows/python-parse-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/.gitignore -------------------------------------------------------------------------------- /.tinyci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/.tinyci -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/README.md -------------------------------------------------------------------------------- /assembler.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/assembler.const -------------------------------------------------------------------------------- /assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/assembler.py -------------------------------------------------------------------------------- /backgroundEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/backgroundEditor.py -------------------------------------------------------------------------------- /checkMetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/checkMetadata.py -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/head-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/docs/_includes/head-custom.html -------------------------------------------------------------------------------- /docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/docs/faq.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/hack0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/docs/hack0.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/plan-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/docs/plan-template.txt -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/docs/style.css -------------------------------------------------------------------------------- /docs/tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/docs/tips.html -------------------------------------------------------------------------------- /dungeongen/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/dungeongen/constants.py -------------------------------------------------------------------------------- /dungeongen/dungeongen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/dungeongen/dungeongen.py -------------------------------------------------------------------------------- /dungeongen/roomtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/dungeongen/roomtemplate.py -------------------------------------------------------------------------------- /dungeongen/roomtemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/dungeongen/roomtemplates.py -------------------------------------------------------------------------------- /entityData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/entityData.py -------------------------------------------------------------------------------- /entranceInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/entranceInfo.py -------------------------------------------------------------------------------- /explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/explorer.py -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/generator.py -------------------------------------------------------------------------------- /gfx/AgesGirl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/AgesGirl.bin -------------------------------------------------------------------------------- /gfx/AgesGirl.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/AgesGirl.bin.png -------------------------------------------------------------------------------- /gfx/AgesGirl.bin.txt: -------------------------------------------------------------------------------- 1 | ZeroMeaning.txt -------------------------------------------------------------------------------- /gfx/Bowwow.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Bowwow.bin -------------------------------------------------------------------------------- /gfx/Bowwow.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Bowwow.bin.png -------------------------------------------------------------------------------- /gfx/Bowwow.bin.txt: -------------------------------------------------------------------------------- 1 | Linker.txt -------------------------------------------------------------------------------- /gfx/Bunny.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Bunny.bin -------------------------------------------------------------------------------- /gfx/Bunny.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Bunny.bin.png -------------------------------------------------------------------------------- /gfx/Bunny.bin.txt: -------------------------------------------------------------------------------- 1 | Linker.txt -------------------------------------------------------------------------------- /gfx/GrandmaUlrira.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/GrandmaUlrira.bin -------------------------------------------------------------------------------- /gfx/GrandmaUlrira.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/GrandmaUlrira.bin.png -------------------------------------------------------------------------------- /gfx/GrandmaUlrira.bin.txt: -------------------------------------------------------------------------------- 1 | ZeroMeaning.txt -------------------------------------------------------------------------------- /gfx/Kirby.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Kirby.bin -------------------------------------------------------------------------------- /gfx/Kirby.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Kirby.bin.png -------------------------------------------------------------------------------- /gfx/Kirby.bin.txt: -------------------------------------------------------------------------------- 1 | ZeroMeaning.txt -------------------------------------------------------------------------------- /gfx/Linker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Linker.txt -------------------------------------------------------------------------------- /gfx/Luigi.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Luigi.bin -------------------------------------------------------------------------------- /gfx/Luigi.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Luigi.bin.png -------------------------------------------------------------------------------- /gfx/Luigi.bin.txt: -------------------------------------------------------------------------------- 1 | Linker.txt -------------------------------------------------------------------------------- /gfx/MMLink.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/MMLink.bin -------------------------------------------------------------------------------- /gfx/MMLink.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/MMLink.bin.png -------------------------------------------------------------------------------- /gfx/MMLink.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/MMLink.bin.txt -------------------------------------------------------------------------------- /gfx/Marin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Marin.bin -------------------------------------------------------------------------------- /gfx/Marin.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Marin.bin.png -------------------------------------------------------------------------------- /gfx/Marin.bin.txt: -------------------------------------------------------------------------------- 1 | ZeroMeaning.txt -------------------------------------------------------------------------------- /gfx/MarinAlpha.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/MarinAlpha.bin -------------------------------------------------------------------------------- /gfx/MarinAlpha.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/MarinAlpha.bin.png -------------------------------------------------------------------------------- /gfx/MarinAlpha.bin.txt: -------------------------------------------------------------------------------- 1 | ZeroMeaning.txt -------------------------------------------------------------------------------- /gfx/Mario.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Mario.bin -------------------------------------------------------------------------------- /gfx/Mario.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Mario.bin.png -------------------------------------------------------------------------------- /gfx/Mario.bin.txt: -------------------------------------------------------------------------------- 1 | Linker.txt -------------------------------------------------------------------------------- /gfx/Martha.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Martha.bin -------------------------------------------------------------------------------- /gfx/Martha.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Martha.bin.png -------------------------------------------------------------------------------- /gfx/Martha.bin.txt: -------------------------------------------------------------------------------- 1 | ZeroMeaning.txt -------------------------------------------------------------------------------- /gfx/Matty.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Matty.bin -------------------------------------------------------------------------------- /gfx/Matty.bin.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Matty.bin.names -------------------------------------------------------------------------------- /gfx/Matty.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Matty.bin.png -------------------------------------------------------------------------------- /gfx/Matty.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Matty.bin.txt -------------------------------------------------------------------------------- /gfx/Meme.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Meme.bin -------------------------------------------------------------------------------- /gfx/Meme.bin.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Meme.bin.names -------------------------------------------------------------------------------- /gfx/Meme.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Meme.bin.png -------------------------------------------------------------------------------- /gfx/Meme.bin.txt: -------------------------------------------------------------------------------- 1 | Linker.txt -------------------------------------------------------------------------------- /gfx/NESLink.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/NESLink.bin -------------------------------------------------------------------------------- /gfx/NESLink.bin.names: -------------------------------------------------------------------------------- 1 | OCARINA:Flute 2 | -------------------------------------------------------------------------------- /gfx/NESLink.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/NESLink.bin.png -------------------------------------------------------------------------------- /gfx/NESLink.bin.txt: -------------------------------------------------------------------------------- 1 | ZeroMeaning.txt -------------------------------------------------------------------------------- /gfx/Ninten.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Ninten.bin -------------------------------------------------------------------------------- /gfx/Ninten.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Ninten.bin.png -------------------------------------------------------------------------------- /gfx/Ninten.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Ninten.bin.txt -------------------------------------------------------------------------------- /gfx/Richard.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Richard.bin -------------------------------------------------------------------------------- /gfx/Richard.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Richard.bin.png -------------------------------------------------------------------------------- /gfx/Richard.bin.txt: -------------------------------------------------------------------------------- 1 | Linker.txt -------------------------------------------------------------------------------- /gfx/Ricky.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Ricky.bin -------------------------------------------------------------------------------- /gfx/Ricky.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Ricky.bin.png -------------------------------------------------------------------------------- /gfx/Rooster.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Rooster.bin -------------------------------------------------------------------------------- /gfx/Rooster.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Rooster.bin.png -------------------------------------------------------------------------------- /gfx/Rooster.bin.txt: -------------------------------------------------------------------------------- 1 | ZeroMeaning.txt -------------------------------------------------------------------------------- /gfx/Rosa.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Rosa.bin -------------------------------------------------------------------------------- /gfx/Rosa.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Rosa.bin.png -------------------------------------------------------------------------------- /gfx/Rosa.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Rosa.bin.txt -------------------------------------------------------------------------------- /gfx/Saria.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Saria.bin -------------------------------------------------------------------------------- /gfx/Saria.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Saria.bin.png -------------------------------------------------------------------------------- /gfx/Saria.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Saria.bin.txt -------------------------------------------------------------------------------- /gfx/Sig.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Sig.bin -------------------------------------------------------------------------------- /gfx/Sig.bin.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Sig.bin.names -------------------------------------------------------------------------------- /gfx/Sig.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Sig.bin.png -------------------------------------------------------------------------------- /gfx/Sig.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Sig.bin.txt -------------------------------------------------------------------------------- /gfx/Subrosian.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Subrosian.bin -------------------------------------------------------------------------------- /gfx/Subrosian.bin.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Subrosian.bin.names -------------------------------------------------------------------------------- /gfx/Subrosian.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Subrosian.bin.png -------------------------------------------------------------------------------- /gfx/Subrosian.bin.txt: -------------------------------------------------------------------------------- 1 | ZeroMeaning.txt -------------------------------------------------------------------------------- /gfx/Tarin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Tarin.bin -------------------------------------------------------------------------------- /gfx/Tarin.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/Tarin.bin.png -------------------------------------------------------------------------------- /gfx/Tarin.bin.txt: -------------------------------------------------------------------------------- 1 | Linker.txt -------------------------------------------------------------------------------- /gfx/X.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/X.bin -------------------------------------------------------------------------------- /gfx/X.bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/X.bin.png -------------------------------------------------------------------------------- /gfx/X.bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/X.bin.txt -------------------------------------------------------------------------------- /gfx/ZeroMeaning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/ZeroMeaning.txt -------------------------------------------------------------------------------- /gfx/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/template.png -------------------------------------------------------------------------------- /gfx/template_extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/template_extended.png -------------------------------------------------------------------------------- /gfx/template_extended2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfx/template_extended2.png -------------------------------------------------------------------------------- /gfxconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/gfxconv.py -------------------------------------------------------------------------------- /hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/hints.py -------------------------------------------------------------------------------- /itempool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/itempool.py -------------------------------------------------------------------------------- /launch_web_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/launch_web_ui.py -------------------------------------------------------------------------------- /locations/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/all.py -------------------------------------------------------------------------------- /locations/anglerKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/anglerKey.py -------------------------------------------------------------------------------- /locations/beachSword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/beachSword.py -------------------------------------------------------------------------------- /locations/birdKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/birdKey.py -------------------------------------------------------------------------------- /locations/boomerangGuy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/boomerangGuy.py -------------------------------------------------------------------------------- /locations/chest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/chest.py -------------------------------------------------------------------------------- /locations/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/constants.py -------------------------------------------------------------------------------- /locations/droppedKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/droppedKey.py -------------------------------------------------------------------------------- /locations/faceKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/faceKey.py -------------------------------------------------------------------------------- /locations/fishingMinigame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/fishingMinigame.py -------------------------------------------------------------------------------- /locations/goldLeaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/goldLeaf.py -------------------------------------------------------------------------------- /locations/heartContainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/heartContainer.py -------------------------------------------------------------------------------- /locations/heartPiece.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/heartPiece.py -------------------------------------------------------------------------------- /locations/hookshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/hookshot.py -------------------------------------------------------------------------------- /locations/instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/instrument.py -------------------------------------------------------------------------------- /locations/itemInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/itemInfo.py -------------------------------------------------------------------------------- /locations/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/items.py -------------------------------------------------------------------------------- /locations/keyLocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/keyLocation.py -------------------------------------------------------------------------------- /locations/keyhole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/keyhole.py -------------------------------------------------------------------------------- /locations/madBatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/madBatter.py -------------------------------------------------------------------------------- /locations/owlStatue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/owlStatue.py -------------------------------------------------------------------------------- /locations/seashell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/seashell.py -------------------------------------------------------------------------------- /locations/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/shop.py -------------------------------------------------------------------------------- /locations/song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/song.py -------------------------------------------------------------------------------- /locations/startItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/startItem.py -------------------------------------------------------------------------------- /locations/toadstool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/toadstool.py -------------------------------------------------------------------------------- /locations/tradeSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/tradeSequence.py -------------------------------------------------------------------------------- /locations/tunicFairy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/tunicFairy.py -------------------------------------------------------------------------------- /locations/witch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/locations/witch.py -------------------------------------------------------------------------------- /logic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logic/dungeon1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/dungeon1.py -------------------------------------------------------------------------------- /logic/dungeon2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/dungeon2.py -------------------------------------------------------------------------------- /logic/dungeon3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/dungeon3.py -------------------------------------------------------------------------------- /logic/dungeon4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/dungeon4.py -------------------------------------------------------------------------------- /logic/dungeon5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/dungeon5.py -------------------------------------------------------------------------------- /logic/dungeon6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/dungeon6.py -------------------------------------------------------------------------------- /logic/dungeon7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/dungeon7.py -------------------------------------------------------------------------------- /logic/dungeon8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/dungeon8.py -------------------------------------------------------------------------------- /logic/dungeonChain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/dungeonChain.py -------------------------------------------------------------------------------- /logic/dungeonColor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/dungeonColor.py -------------------------------------------------------------------------------- /logic/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/location.py -------------------------------------------------------------------------------- /logic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/main.py -------------------------------------------------------------------------------- /logic/overworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/overworld.py -------------------------------------------------------------------------------- /logic/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/logic/requirements.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/main.py -------------------------------------------------------------------------------- /mapexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapexport.py -------------------------------------------------------------------------------- /mapgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/__init__.py -------------------------------------------------------------------------------- /mapgen/enemygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/enemygen.py -------------------------------------------------------------------------------- /mapgen/imagegenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/imagegenerator.py -------------------------------------------------------------------------------- /mapgen/locationgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/locationgen.py -------------------------------------------------------------------------------- /mapgen/locations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/locations/base.py -------------------------------------------------------------------------------- /mapgen/locations/chest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/locations/chest.py -------------------------------------------------------------------------------- /mapgen/locations/entrance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/locations/entrance.py -------------------------------------------------------------------------------- /mapgen/locations/entrance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/locations/entrance_info.py -------------------------------------------------------------------------------- /mapgen/locations/seashell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/locations/seashell.py -------------------------------------------------------------------------------- /mapgen/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/logic.py -------------------------------------------------------------------------------- /mapgen/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/map.py -------------------------------------------------------------------------------- /mapgen/roomgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/roomgen.py -------------------------------------------------------------------------------- /mapgen/roomtype/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/roomtype/base.py -------------------------------------------------------------------------------- /mapgen/roomtype/forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/roomtype/forest.py -------------------------------------------------------------------------------- /mapgen/roomtype/mountain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/roomtype/mountain.py -------------------------------------------------------------------------------- /mapgen/roomtype/town.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/roomtype/town.py -------------------------------------------------------------------------------- /mapgen/roomtype/water.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/roomtype/water.py -------------------------------------------------------------------------------- /mapgen/tileset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/tileset.py -------------------------------------------------------------------------------- /mapgen/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/util.py -------------------------------------------------------------------------------- /mapgen/wfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/mapgen/wfc.py -------------------------------------------------------------------------------- /musicData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/musicData.py -------------------------------------------------------------------------------- /patches/aesthetics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/aesthetics.py -------------------------------------------------------------------------------- /patches/alttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/alttp.py -------------------------------------------------------------------------------- /patches/bank3e.asm/bowwow.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bank3e.asm/bowwow.asm -------------------------------------------------------------------------------- /patches/bank3e.asm/chest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bank3e.asm/chest.asm -------------------------------------------------------------------------------- /patches/bank3e.asm/evilshop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bank3e.asm/evilshop.asm -------------------------------------------------------------------------------- /patches/bank3e.asm/link.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/bank3e.asm/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bank3e.asm/main.asm -------------------------------------------------------------------------------- /patches/bank3e.asm/message.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bank3e.asm/message.asm -------------------------------------------------------------------------------- /patches/bank3e.asm/multiworld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bank3e.asm/multiworld.asm -------------------------------------------------------------------------------- /patches/bank3e.asm/nightmareminiboss.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bank3e.asm/nightmareminiboss.asm -------------------------------------------------------------------------------- /patches/bank3e.asm/owl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bank3e.asm/owl.asm -------------------------------------------------------------------------------- /patches/bank3e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bank3e.py -------------------------------------------------------------------------------- /patches/bank3f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bank3f.py -------------------------------------------------------------------------------- /patches/bingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bingo.py -------------------------------------------------------------------------------- /patches/bomb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bomb.py -------------------------------------------------------------------------------- /patches/bowwow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/bowwow.py -------------------------------------------------------------------------------- /patches/cats/Aurene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/Aurene.bin -------------------------------------------------------------------------------- /patches/cats/Garfield.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/Garfield.bin -------------------------------------------------------------------------------- /patches/cats/Marie.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/Marie.bin -------------------------------------------------------------------------------- /patches/cats/Mausi.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/Mausi.bin -------------------------------------------------------------------------------- /patches/cats/ayrie.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/ayrie.bin -------------------------------------------------------------------------------- /patches/cats/bert.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/bert.bin -------------------------------------------------------------------------------- /patches/cats/binx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/binx.bin -------------------------------------------------------------------------------- /patches/cats/carlo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/carlo.bin -------------------------------------------------------------------------------- /patches/cats/colby_jack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/colby_jack.bin -------------------------------------------------------------------------------- /patches/cats/dusty_daisy.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/dusty_daisy.bin -------------------------------------------------------------------------------- /patches/cats/fluffy.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/fluffy.bin -------------------------------------------------------------------------------- /patches/cats/galactica.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/galactica.bin -------------------------------------------------------------------------------- /patches/cats/henkie.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/henkie.bin -------------------------------------------------------------------------------- /patches/cats/jack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/jack.bin -------------------------------------------------------------------------------- /patches/cats/jose.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/jose.bin -------------------------------------------------------------------------------- /patches/cats/lola.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/lola.bin -------------------------------------------------------------------------------- /patches/cats/meep.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/meep.bin -------------------------------------------------------------------------------- /patches/cats/mora.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/mora.bin -------------------------------------------------------------------------------- /patches/cats/newton.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/newton.bin -------------------------------------------------------------------------------- /patches/cats/nyan.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/nyan.bin -------------------------------------------------------------------------------- /patches/cats/patapouf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/patapouf.bin -------------------------------------------------------------------------------- /patches/cats/pippin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/pippin.bin -------------------------------------------------------------------------------- /patches/cats/schoko.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/schoko.bin -------------------------------------------------------------------------------- /patches/cats/sunny.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/cats/sunny.bin -------------------------------------------------------------------------------- /patches/chest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/chest.py -------------------------------------------------------------------------------- /patches/colorBook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/colorBook.py -------------------------------------------------------------------------------- /patches/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/core.py -------------------------------------------------------------------------------- /patches/desert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/desert.py -------------------------------------------------------------------------------- /patches/droppedKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/droppedKey.py -------------------------------------------------------------------------------- /patches/dungeon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/dungeon.py -------------------------------------------------------------------------------- /patches/endscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/endscreen.py -------------------------------------------------------------------------------- /patches/enemies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/enemies.py -------------------------------------------------------------------------------- /patches/entrances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/entrances.py -------------------------------------------------------------------------------- /patches/evilshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/evilshop.py -------------------------------------------------------------------------------- /patches/extragfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/extragfx.py -------------------------------------------------------------------------------- /patches/fishingMinigame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/fishingMinigame.py -------------------------------------------------------------------------------- /patches/follower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/follower.py -------------------------------------------------------------------------------- /patches/goal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/goal.py -------------------------------------------------------------------------------- /patches/goldenLeaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/goldenLeaf.py -------------------------------------------------------------------------------- /patches/hardMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/hardMode.py -------------------------------------------------------------------------------- /patches/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/health.py -------------------------------------------------------------------------------- /patches/heartPiece.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/heartPiece.py -------------------------------------------------------------------------------- /patches/instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/instrument.py -------------------------------------------------------------------------------- /patches/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/inventory.py -------------------------------------------------------------------------------- /patches/madBatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/madBatter.py -------------------------------------------------------------------------------- /patches/maptweaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/maptweaks.py -------------------------------------------------------------------------------- /patches/marin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/marin.txt -------------------------------------------------------------------------------- /patches/maze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/maze.py -------------------------------------------------------------------------------- /patches/multiworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/multiworld.py -------------------------------------------------------------------------------- /patches/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/music.py -------------------------------------------------------------------------------- /patches/overworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld.py -------------------------------------------------------------------------------- /patches/overworld/alttp/00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/00.json -------------------------------------------------------------------------------- /patches/overworld/alttp/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/01.json -------------------------------------------------------------------------------- /patches/overworld/alttp/02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/02.json -------------------------------------------------------------------------------- /patches/overworld/alttp/03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/03.json -------------------------------------------------------------------------------- /patches/overworld/alttp/04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/04.json -------------------------------------------------------------------------------- /patches/overworld/alttp/05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/05.json -------------------------------------------------------------------------------- /patches/overworld/alttp/06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/06.json -------------------------------------------------------------------------------- /patches/overworld/alttp/07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/07.json -------------------------------------------------------------------------------- /patches/overworld/alttp/08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/08.json -------------------------------------------------------------------------------- /patches/overworld/alttp/09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/09.json -------------------------------------------------------------------------------- /patches/overworld/alttp/0A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/0A.json -------------------------------------------------------------------------------- /patches/overworld/alttp/0B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/0B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/0C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/0C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/0D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/0D.json -------------------------------------------------------------------------------- /patches/overworld/alttp/0E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/0E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/0F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/0F.json -------------------------------------------------------------------------------- /patches/overworld/alttp/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/10.json -------------------------------------------------------------------------------- /patches/overworld/alttp/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/11.json -------------------------------------------------------------------------------- /patches/overworld/alttp/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/12.json -------------------------------------------------------------------------------- /patches/overworld/alttp/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/13.json -------------------------------------------------------------------------------- /patches/overworld/alttp/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/14.json -------------------------------------------------------------------------------- /patches/overworld/alttp/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/15.json -------------------------------------------------------------------------------- /patches/overworld/alttp/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/16.json -------------------------------------------------------------------------------- /patches/overworld/alttp/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/17.json -------------------------------------------------------------------------------- /patches/overworld/alttp/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/18.json -------------------------------------------------------------------------------- /patches/overworld/alttp/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/19.json -------------------------------------------------------------------------------- /patches/overworld/alttp/1A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/1A.json -------------------------------------------------------------------------------- /patches/overworld/alttp/1B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/1B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/1C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/1C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/1D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/1D.json -------------------------------------------------------------------------------- /patches/overworld/alttp/1E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/1E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/1E8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/1E8.json -------------------------------------------------------------------------------- /patches/overworld/alttp/1F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/1F.json -------------------------------------------------------------------------------- /patches/overworld/alttp/1F8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/1F8.json -------------------------------------------------------------------------------- /patches/overworld/alttp/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/20.json -------------------------------------------------------------------------------- /patches/overworld/alttp/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/21.json -------------------------------------------------------------------------------- /patches/overworld/alttp/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/22.json -------------------------------------------------------------------------------- /patches/overworld/alttp/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/23.json -------------------------------------------------------------------------------- /patches/overworld/alttp/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/24.json -------------------------------------------------------------------------------- /patches/overworld/alttp/25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/25.json -------------------------------------------------------------------------------- /patches/overworld/alttp/26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/26.json -------------------------------------------------------------------------------- /patches/overworld/alttp/27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/27.json -------------------------------------------------------------------------------- /patches/overworld/alttp/28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/28.json -------------------------------------------------------------------------------- /patches/overworld/alttp/29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/29.json -------------------------------------------------------------------------------- /patches/overworld/alttp/2A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/2A.json -------------------------------------------------------------------------------- /patches/overworld/alttp/2B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/2B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/2C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/2C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/2C8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/2C8.json -------------------------------------------------------------------------------- /patches/overworld/alttp/2D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/2D.json -------------------------------------------------------------------------------- /patches/overworld/alttp/2DF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/2DF.json -------------------------------------------------------------------------------- /patches/overworld/alttp/2E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/2E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/2F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/2F.json -------------------------------------------------------------------------------- /patches/overworld/alttp/30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/30.json -------------------------------------------------------------------------------- /patches/overworld/alttp/31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/31.json -------------------------------------------------------------------------------- /patches/overworld/alttp/32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/32.json -------------------------------------------------------------------------------- /patches/overworld/alttp/33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/33.json -------------------------------------------------------------------------------- /patches/overworld/alttp/34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/34.json -------------------------------------------------------------------------------- /patches/overworld/alttp/35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/35.json -------------------------------------------------------------------------------- /patches/overworld/alttp/36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/36.json -------------------------------------------------------------------------------- /patches/overworld/alttp/37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/37.json -------------------------------------------------------------------------------- /patches/overworld/alttp/38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/38.json -------------------------------------------------------------------------------- /patches/overworld/alttp/39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/39.json -------------------------------------------------------------------------------- /patches/overworld/alttp/3A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/3A.json -------------------------------------------------------------------------------- /patches/overworld/alttp/3B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/3B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/3C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/3C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/3D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/3D.json -------------------------------------------------------------------------------- /patches/overworld/alttp/3E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/3E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/3F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/3F.json -------------------------------------------------------------------------------- /patches/overworld/alttp/40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/40.json -------------------------------------------------------------------------------- /patches/overworld/alttp/41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/41.json -------------------------------------------------------------------------------- /patches/overworld/alttp/42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/42.json -------------------------------------------------------------------------------- /patches/overworld/alttp/43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/43.json -------------------------------------------------------------------------------- /patches/overworld/alttp/44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/44.json -------------------------------------------------------------------------------- /patches/overworld/alttp/45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/45.json -------------------------------------------------------------------------------- /patches/overworld/alttp/46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/46.json -------------------------------------------------------------------------------- /patches/overworld/alttp/47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/47.json -------------------------------------------------------------------------------- /patches/overworld/alttp/48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/48.json -------------------------------------------------------------------------------- /patches/overworld/alttp/49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/49.json -------------------------------------------------------------------------------- /patches/overworld/alttp/4A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/4A.json -------------------------------------------------------------------------------- /patches/overworld/alttp/4B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/4B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/4C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/4C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/4D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/4D.json -------------------------------------------------------------------------------- /patches/overworld/alttp/4E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/4E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/4F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/4F.json -------------------------------------------------------------------------------- /patches/overworld/alttp/50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/50.json -------------------------------------------------------------------------------- /patches/overworld/alttp/51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/51.json -------------------------------------------------------------------------------- /patches/overworld/alttp/52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/52.json -------------------------------------------------------------------------------- /patches/overworld/alttp/53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/53.json -------------------------------------------------------------------------------- /patches/overworld/alttp/54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/54.json -------------------------------------------------------------------------------- /patches/overworld/alttp/55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/55.json -------------------------------------------------------------------------------- /patches/overworld/alttp/56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/56.json -------------------------------------------------------------------------------- /patches/overworld/alttp/57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/57.json -------------------------------------------------------------------------------- /patches/overworld/alttp/58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/58.json -------------------------------------------------------------------------------- /patches/overworld/alttp/59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/59.json -------------------------------------------------------------------------------- /patches/overworld/alttp/5A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/5A.json -------------------------------------------------------------------------------- /patches/overworld/alttp/5B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/5B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/5C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/5C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/5D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/5D.json -------------------------------------------------------------------------------- /patches/overworld/alttp/5E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/5E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/5F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/5F.json -------------------------------------------------------------------------------- /patches/overworld/alttp/60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/60.json -------------------------------------------------------------------------------- /patches/overworld/alttp/61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/61.json -------------------------------------------------------------------------------- /patches/overworld/alttp/62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/62.json -------------------------------------------------------------------------------- /patches/overworld/alttp/63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/63.json -------------------------------------------------------------------------------- /patches/overworld/alttp/64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/64.json -------------------------------------------------------------------------------- /patches/overworld/alttp/65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/65.json -------------------------------------------------------------------------------- /patches/overworld/alttp/66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/66.json -------------------------------------------------------------------------------- /patches/overworld/alttp/67.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/67.json -------------------------------------------------------------------------------- /patches/overworld/alttp/68.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/68.json -------------------------------------------------------------------------------- /patches/overworld/alttp/69.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/69.json -------------------------------------------------------------------------------- /patches/overworld/alttp/6A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/6A.json -------------------------------------------------------------------------------- /patches/overworld/alttp/6B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/6B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/6C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/6C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/6D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/6D.json -------------------------------------------------------------------------------- /patches/overworld/alttp/6E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/6E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/6F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/6F.json -------------------------------------------------------------------------------- /patches/overworld/alttp/70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/70.json -------------------------------------------------------------------------------- /patches/overworld/alttp/71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/71.json -------------------------------------------------------------------------------- /patches/overworld/alttp/72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/72.json -------------------------------------------------------------------------------- /patches/overworld/alttp/73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/73.json -------------------------------------------------------------------------------- /patches/overworld/alttp/74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/74.json -------------------------------------------------------------------------------- /patches/overworld/alttp/75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/75.json -------------------------------------------------------------------------------- /patches/overworld/alttp/76.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/76.json -------------------------------------------------------------------------------- /patches/overworld/alttp/77.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/77.json -------------------------------------------------------------------------------- /patches/overworld/alttp/78.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/78.json -------------------------------------------------------------------------------- /patches/overworld/alttp/79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/79.json -------------------------------------------------------------------------------- /patches/overworld/alttp/7A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/7A.json -------------------------------------------------------------------------------- /patches/overworld/alttp/7B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/7B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/7C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/7C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/7D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/7D.json -------------------------------------------------------------------------------- /patches/overworld/alttp/7E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/7E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/7F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/7F.json -------------------------------------------------------------------------------- /patches/overworld/alttp/80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/80.json -------------------------------------------------------------------------------- /patches/overworld/alttp/81.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/81.json -------------------------------------------------------------------------------- /patches/overworld/alttp/82.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/82.json -------------------------------------------------------------------------------- /patches/overworld/alttp/83.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/83.json -------------------------------------------------------------------------------- /patches/overworld/alttp/84.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/84.json -------------------------------------------------------------------------------- /patches/overworld/alttp/85.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/85.json -------------------------------------------------------------------------------- /patches/overworld/alttp/86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/86.json -------------------------------------------------------------------------------- /patches/overworld/alttp/87.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/87.json -------------------------------------------------------------------------------- /patches/overworld/alttp/88.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/88.json -------------------------------------------------------------------------------- /patches/overworld/alttp/89.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/89.json -------------------------------------------------------------------------------- /patches/overworld/alttp/8A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/8A.json -------------------------------------------------------------------------------- /patches/overworld/alttp/8B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/8B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/8C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/8C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/8D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/8D.json -------------------------------------------------------------------------------- /patches/overworld/alttp/8E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/8E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/8F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/8F.json -------------------------------------------------------------------------------- /patches/overworld/alttp/90.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/90.json -------------------------------------------------------------------------------- /patches/overworld/alttp/91.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/91.json -------------------------------------------------------------------------------- /patches/overworld/alttp/92.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/92.json -------------------------------------------------------------------------------- /patches/overworld/alttp/93.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/93.json -------------------------------------------------------------------------------- /patches/overworld/alttp/94.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/94.json -------------------------------------------------------------------------------- /patches/overworld/alttp/95.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/95.json -------------------------------------------------------------------------------- /patches/overworld/alttp/96.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/96.json -------------------------------------------------------------------------------- /patches/overworld/alttp/97.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/97.json -------------------------------------------------------------------------------- /patches/overworld/alttp/98.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/98.json -------------------------------------------------------------------------------- /patches/overworld/alttp/99.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/99.json -------------------------------------------------------------------------------- /patches/overworld/alttp/9A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/9A.json -------------------------------------------------------------------------------- /patches/overworld/alttp/9B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/9B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/9C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/9C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/9D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/9D.json -------------------------------------------------------------------------------- /patches/overworld/alttp/9E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/9E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/9F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/9F.json -------------------------------------------------------------------------------- /patches/overworld/alttp/A0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/A0.json -------------------------------------------------------------------------------- /patches/overworld/alttp/A1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/A1.json -------------------------------------------------------------------------------- /patches/overworld/alttp/A2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/A2.json -------------------------------------------------------------------------------- /patches/overworld/alttp/A3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/A3.json -------------------------------------------------------------------------------- /patches/overworld/alttp/A4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/A4.json -------------------------------------------------------------------------------- /patches/overworld/alttp/A5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/A5.json -------------------------------------------------------------------------------- /patches/overworld/alttp/A6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/A6.json -------------------------------------------------------------------------------- /patches/overworld/alttp/A7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/A7.json -------------------------------------------------------------------------------- /patches/overworld/alttp/A8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/A8.json -------------------------------------------------------------------------------- /patches/overworld/alttp/A9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/A9.json -------------------------------------------------------------------------------- /patches/overworld/alttp/AA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/AA.json -------------------------------------------------------------------------------- /patches/overworld/alttp/AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/AB.json -------------------------------------------------------------------------------- /patches/overworld/alttp/AC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/AC.json -------------------------------------------------------------------------------- /patches/overworld/alttp/AD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/AD.json -------------------------------------------------------------------------------- /patches/overworld/alttp/AE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/AE.json -------------------------------------------------------------------------------- /patches/overworld/alttp/AF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/AF.json -------------------------------------------------------------------------------- /patches/overworld/alttp/Alt06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/Alt06.json -------------------------------------------------------------------------------- /patches/overworld/alttp/Alt0E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/Alt0E.json -------------------------------------------------------------------------------- /patches/overworld/alttp/Alt1B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/Alt1B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/Alt2B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/Alt2B.json -------------------------------------------------------------------------------- /patches/overworld/alttp/Alt79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/Alt79.json -------------------------------------------------------------------------------- /patches/overworld/alttp/Alt8C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/Alt8C.json -------------------------------------------------------------------------------- /patches/overworld/alttp/B0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/B0.json -------------------------------------------------------------------------------- /patches/overworld/alttp/B1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/B1.json -------------------------------------------------------------------------------- /patches/overworld/alttp/B2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/B2.json -------------------------------------------------------------------------------- /patches/overworld/alttp/B3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/B3.json -------------------------------------------------------------------------------- /patches/overworld/alttp/B4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/B4.json -------------------------------------------------------------------------------- /patches/overworld/alttp/B5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/B5.json -------------------------------------------------------------------------------- /patches/overworld/alttp/B6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/B6.json -------------------------------------------------------------------------------- /patches/overworld/alttp/B7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/B7.json -------------------------------------------------------------------------------- /patches/overworld/alttp/B8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/B8.json -------------------------------------------------------------------------------- /patches/overworld/alttp/B9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/B9.json -------------------------------------------------------------------------------- /patches/overworld/alttp/BA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/BA.json -------------------------------------------------------------------------------- /patches/overworld/alttp/BB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/BB.json -------------------------------------------------------------------------------- /patches/overworld/alttp/BC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/BC.json -------------------------------------------------------------------------------- /patches/overworld/alttp/BD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/BD.json -------------------------------------------------------------------------------- /patches/overworld/alttp/BE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/BE.json -------------------------------------------------------------------------------- /patches/overworld/alttp/BF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/BF.json -------------------------------------------------------------------------------- /patches/overworld/alttp/C0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/C0.json -------------------------------------------------------------------------------- /patches/overworld/alttp/C1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/C1.json -------------------------------------------------------------------------------- /patches/overworld/alttp/C2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/C2.json -------------------------------------------------------------------------------- /patches/overworld/alttp/C3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/C3.json -------------------------------------------------------------------------------- /patches/overworld/alttp/C4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/C4.json -------------------------------------------------------------------------------- /patches/overworld/alttp/C5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/C5.json -------------------------------------------------------------------------------- /patches/overworld/alttp/C6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/C6.json -------------------------------------------------------------------------------- /patches/overworld/alttp/C7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/C7.json -------------------------------------------------------------------------------- /patches/overworld/alttp/C8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/C8.json -------------------------------------------------------------------------------- /patches/overworld/alttp/C9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/C9.json -------------------------------------------------------------------------------- /patches/overworld/alttp/CA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/CA.json -------------------------------------------------------------------------------- /patches/overworld/alttp/CB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/CB.json -------------------------------------------------------------------------------- /patches/overworld/alttp/CC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/CC.json -------------------------------------------------------------------------------- /patches/overworld/alttp/CD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/CD.json -------------------------------------------------------------------------------- /patches/overworld/alttp/CE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/CE.json -------------------------------------------------------------------------------- /patches/overworld/alttp/CF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/CF.json -------------------------------------------------------------------------------- /patches/overworld/alttp/D0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/D0.json -------------------------------------------------------------------------------- /patches/overworld/alttp/D1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/D1.json -------------------------------------------------------------------------------- /patches/overworld/alttp/D2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/D2.json -------------------------------------------------------------------------------- /patches/overworld/alttp/D3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/D3.json -------------------------------------------------------------------------------- /patches/overworld/alttp/D4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/D4.json -------------------------------------------------------------------------------- /patches/overworld/alttp/D5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/D5.json -------------------------------------------------------------------------------- /patches/overworld/alttp/D6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/D6.json -------------------------------------------------------------------------------- /patches/overworld/alttp/D7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/D7.json -------------------------------------------------------------------------------- /patches/overworld/alttp/D8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/D8.json -------------------------------------------------------------------------------- /patches/overworld/alttp/D9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/D9.json -------------------------------------------------------------------------------- /patches/overworld/alttp/DA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/DA.json -------------------------------------------------------------------------------- /patches/overworld/alttp/DB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/DB.json -------------------------------------------------------------------------------- /patches/overworld/alttp/DC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/DC.json -------------------------------------------------------------------------------- /patches/overworld/alttp/DD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/DD.json -------------------------------------------------------------------------------- /patches/overworld/alttp/DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/DE.json -------------------------------------------------------------------------------- /patches/overworld/alttp/DF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/DF.json -------------------------------------------------------------------------------- /patches/overworld/alttp/E0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/E0.json -------------------------------------------------------------------------------- /patches/overworld/alttp/E1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/E1.json -------------------------------------------------------------------------------- /patches/overworld/alttp/E2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/E2.json -------------------------------------------------------------------------------- /patches/overworld/alttp/E3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/E3.json -------------------------------------------------------------------------------- /patches/overworld/alttp/E4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/E4.json -------------------------------------------------------------------------------- /patches/overworld/alttp/E5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/E5.json -------------------------------------------------------------------------------- /patches/overworld/alttp/E6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/E6.json -------------------------------------------------------------------------------- /patches/overworld/alttp/E7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/E7.json -------------------------------------------------------------------------------- /patches/overworld/alttp/E8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/E8.json -------------------------------------------------------------------------------- /patches/overworld/alttp/E9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/E9.json -------------------------------------------------------------------------------- /patches/overworld/alttp/EA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/EA.json -------------------------------------------------------------------------------- /patches/overworld/alttp/EB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/EB.json -------------------------------------------------------------------------------- /patches/overworld/alttp/EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/EC.json -------------------------------------------------------------------------------- /patches/overworld/alttp/ED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/ED.json -------------------------------------------------------------------------------- /patches/overworld/alttp/EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/EE.json -------------------------------------------------------------------------------- /patches/overworld/alttp/EF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/EF.json -------------------------------------------------------------------------------- /patches/overworld/alttp/F0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/F0.json -------------------------------------------------------------------------------- /patches/overworld/alttp/F1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/F1.json -------------------------------------------------------------------------------- /patches/overworld/alttp/F2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/F2.json -------------------------------------------------------------------------------- /patches/overworld/alttp/F3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/F3.json -------------------------------------------------------------------------------- /patches/overworld/alttp/F4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/F4.json -------------------------------------------------------------------------------- /patches/overworld/alttp/F5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/F5.json -------------------------------------------------------------------------------- /patches/overworld/alttp/F6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/F6.json -------------------------------------------------------------------------------- /patches/overworld/alttp/F7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/F7.json -------------------------------------------------------------------------------- /patches/overworld/alttp/F8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/F8.json -------------------------------------------------------------------------------- /patches/overworld/alttp/F9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/F9.json -------------------------------------------------------------------------------- /patches/overworld/alttp/FA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/FA.json -------------------------------------------------------------------------------- /patches/overworld/alttp/FB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/FB.json -------------------------------------------------------------------------------- /patches/overworld/alttp/FC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/FC.json -------------------------------------------------------------------------------- /patches/overworld/alttp/FD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/FD.json -------------------------------------------------------------------------------- /patches/overworld/alttp/FE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/FE.json -------------------------------------------------------------------------------- /patches/overworld/alttp/FF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/FF.json -------------------------------------------------------------------------------- /patches/overworld/alttp/desert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/desert.png -------------------------------------------------------------------------------- /patches/overworld/alttp/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/hammer.png -------------------------------------------------------------------------------- /patches/overworld/alttp/walrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/alttp/walrus.png -------------------------------------------------------------------------------- /patches/overworld/dive/00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/00.json -------------------------------------------------------------------------------- /patches/overworld/dive/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/01.json -------------------------------------------------------------------------------- /patches/overworld/dive/06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/06.json -------------------------------------------------------------------------------- /patches/overworld/dive/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/16.json -------------------------------------------------------------------------------- /patches/overworld/dive/62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/62.json -------------------------------------------------------------------------------- /patches/overworld/dive/6C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/6C.json -------------------------------------------------------------------------------- /patches/overworld/dive/71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/71.json -------------------------------------------------------------------------------- /patches/overworld/dive/72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/72.json -------------------------------------------------------------------------------- /patches/overworld/dive/73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/73.json -------------------------------------------------------------------------------- /patches/overworld/dive/81.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/81.json -------------------------------------------------------------------------------- /patches/overworld/dive/82.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/82.json -------------------------------------------------------------------------------- /patches/overworld/dive/83.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/83.json -------------------------------------------------------------------------------- /patches/overworld/dive/91.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/91.json -------------------------------------------------------------------------------- /patches/overworld/dive/92.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/92.json -------------------------------------------------------------------------------- /patches/overworld/dive/93.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/93.json -------------------------------------------------------------------------------- /patches/overworld/dive/A1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/A1.json -------------------------------------------------------------------------------- /patches/overworld/dive/A2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/A2.json -------------------------------------------------------------------------------- /patches/overworld/dive/A3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/A3.json -------------------------------------------------------------------------------- /patches/overworld/dive/B0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/B0.json -------------------------------------------------------------------------------- /patches/overworld/dive/B1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/B1.json -------------------------------------------------------------------------------- /patches/overworld/dive/B2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/B2.json -------------------------------------------------------------------------------- /patches/overworld/dive/B3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/overworld/dive/B3.json -------------------------------------------------------------------------------- /patches/owl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/owl.py -------------------------------------------------------------------------------- /patches/phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/phone.py -------------------------------------------------------------------------------- /patches/photographer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/photographer.py -------------------------------------------------------------------------------- /patches/reduceRNG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/reduceRNG.py -------------------------------------------------------------------------------- /patches/rooster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/rooster.py -------------------------------------------------------------------------------- /patches/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/save.py -------------------------------------------------------------------------------- /patches/seashell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/seashell.py -------------------------------------------------------------------------------- /patches/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/shop.py -------------------------------------------------------------------------------- /patches/softlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/softlock.py -------------------------------------------------------------------------------- /patches/songs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/songs.py -------------------------------------------------------------------------------- /patches/tarin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/tarin.py -------------------------------------------------------------------------------- /patches/titleScreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/titleScreen.py -------------------------------------------------------------------------------- /patches/tradeSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/tradeSequence.py -------------------------------------------------------------------------------- /patches/trendy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/trendy.py -------------------------------------------------------------------------------- /patches/tunicFairy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/tunicFairy.py -------------------------------------------------------------------------------- /patches/weapons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/weapons.py -------------------------------------------------------------------------------- /patches/witch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/patches/witch.py -------------------------------------------------------------------------------- /plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/plan.py -------------------------------------------------------------------------------- /pointerTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/pointerTable.py -------------------------------------------------------------------------------- /randomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/randomizer.py -------------------------------------------------------------------------------- /rom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/rom.py -------------------------------------------------------------------------------- /romTables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/romTables.py -------------------------------------------------------------------------------- /roomEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/roomEditor.py -------------------------------------------------------------------------------- /roomInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/roomInfo.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/settings.py -------------------------------------------------------------------------------- /spoilerLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/spoilerLog.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/utils.py -------------------------------------------------------------------------------- /worldSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/worldSetup.py -------------------------------------------------------------------------------- /www/gfx2bin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/www/gfx2bin.html -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/www/index.html -------------------------------------------------------------------------------- /www/js/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/www/js/options.js -------------------------------------------------------------------------------- /www/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/www/js/ui.js -------------------------------------------------------------------------------- /www/js/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/www/js/worker.js -------------------------------------------------------------------------------- /www/multiworld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/www/multiworld.html -------------------------------------------------------------------------------- /www/mystery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/www/mystery.html -------------------------------------------------------------------------------- /www/plando.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/www/plando.html -------------------------------------------------------------------------------- /www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daid/LADXR/HEAD/www/style.css --------------------------------------------------------------------------------