├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github └── workflows │ ├── apt-deps.txt │ ├── clang-format.yml │ ├── generate-builds.yml │ ├── gtar │ ├── macports-deps.txt │ ├── pr-artifacts.yml │ └── test-builds-on-distros.yml ├── .gitignore ├── .gitmodules ├── .vscode └── tasks.json ├── CMake ├── Default.cmake ├── DefaultCXX.cmake ├── FindOgg.cmake ├── FindOpus.cmake ├── FindOpusFile.cmake ├── FindVorbis.cmake ├── Packaging-2.cmake ├── Packaging.cmake ├── Utils.cmake ├── automate-vcpkg.cmake ├── lus-cvars.cmake └── soh-cvars.cmake ├── CMakeLists.txt ├── Dockerfile ├── README.md ├── copy-existing-otrs.cmake ├── docs ├── BUILDING.md ├── CREDITS.md ├── CUSTOM_MUSIC.md ├── GAME_CONTROLLER_DB.md ├── MODDING.md ├── VERSIONING.md ├── poweredbylus.darkmode.png ├── poweredbylus.lightmode.png ├── shiptitle.darkmode.png ├── shiptitle.lightmode.png └── supportedHashes.json ├── run-clang-format.ps1 ├── run-clang-format.sh ├── scripts ├── linux │ └── appimage │ │ ├── build.sh │ │ └── soh.desktop ├── switch │ └── build.sh └── wiiu │ └── build.sh └── soh ├── .clang-format ├── .clang-tidy ├── .gitattributes ├── .gitignore ├── .gitrepo ├── CMake ├── Default.cmake ├── DefaultCXX.cmake ├── Linux32bit-toolchain.cmake └── Utils.cmake ├── CMakeLists.txt ├── Resource.rc ├── SHIPOFHARKINIAN.ico ├── SHIPOFHARKINIAN.manifest ├── assets ├── .gitignore ├── code │ ├── fbdemo_circle │ │ └── z_fbdemo_circle.h │ ├── fbdemo_triforce │ │ └── z_fbdemo_triforce.h │ └── fbdemo_wipe1 │ │ └── z_fbdemo_wipe1.h ├── custom │ ├── accessibility │ │ └── texts │ │ │ ├── filechoose_eng.json │ │ │ ├── filechoose_fra.json │ │ │ ├── filechoose_ger.json │ │ │ ├── kaleidoscope_eng.json │ │ │ ├── kaleidoscope_fra.json │ │ │ ├── kaleidoscope_ger.json │ │ │ ├── misc_eng.json │ │ │ ├── misc_fra.json │ │ │ ├── misc_ger.json │ │ │ ├── scenes_eng.json │ │ │ ├── scenes_fra.json │ │ │ └── scenes_ger.json │ ├── fonts │ │ ├── Fipps-Regular.otf │ │ ├── Inconsolata-Regular.ttf │ │ ├── Montserrat-Regular.ttf │ │ └── PressStart2P-Regular.ttf │ ├── helpers │ │ └── cosmetics │ │ │ └── gEndGrayscaleAndEndDlistDL │ ├── objects │ │ ├── gameplay_dangeon_keep │ │ │ ├── PotBaseNoise_8 │ │ │ ├── PotFaceNoise_16 │ │ │ ├── PotFaceYellow_16 │ │ │ ├── PotFace_32 │ │ │ ├── gRandoPotDL │ │ │ ├── gRandoPotDL_tri_0 │ │ │ ├── gRandoPotDL_tri_1 │ │ │ ├── gRandoPotDL_tri_2 │ │ │ ├── gRandoPotDL_tri_3 │ │ │ ├── gRandoPotDL_tri_4 │ │ │ ├── gRandoPotDL_vtx_0 │ │ │ ├── gRandoPotDL_vtx_1 │ │ │ ├── gRandoPotDL_vtx_2 │ │ │ ├── gRandoPotDL_vtx_3 │ │ │ ├── gRandoPotDL_vtx_4 │ │ │ ├── mat_gRandoPotDL_f3dlite_potbase │ │ │ ├── mat_gRandoPotDL_f3dlite_potbottom │ │ │ ├── mat_gRandoPotDL_f3dlite_potface │ │ │ ├── mat_gRandoPotDL_f3dlite_potrim │ │ │ └── mat_gRandoPotDL_f3dlite_potvoid │ │ ├── gameplay_field_keep │ │ │ ├── BushTex.rgba16 │ │ │ ├── LeafTex.rgba16 │ │ │ ├── flower_bosskey_tex.rgba16 │ │ │ ├── flower_bronze_tex.rgba16 │ │ │ ├── flower_fairy_tex.rgba16 │ │ │ ├── flower_gold_tex.rgba16 │ │ │ ├── flower_heart_tex.rgba16 │ │ │ ├── flower_mask_tex.rgba16 │ │ │ ├── flower_random_tex.rgba16 │ │ │ ├── flower_silver_tex.rgba16 │ │ │ ├── flower_token_tex.rgba16 │ │ │ ├── gFieldBushBossKeyDL │ │ │ ├── gFieldBushBossKeyDL_tri_0 │ │ │ ├── gFieldBushBossKeyDL_tri_1 │ │ │ ├── gFieldBushBossKeyDL_tri_2 │ │ │ ├── gFieldBushBossKeyDL_vtx_0 │ │ │ ├── gFieldBushBossKeyDL_vtx_1 │ │ │ ├── gFieldBushBossKeyDL_vtx_2 │ │ │ ├── gFieldBushBossKeyDL_vtx_cull │ │ │ ├── gFieldBushFairyDL │ │ │ ├── gFieldBushFairyDL_tri_0 │ │ │ ├── gFieldBushFairyDL_tri_1 │ │ │ ├── gFieldBushFairyDL_tri_2 │ │ │ ├── gFieldBushFairyDL_vtx_0 │ │ │ ├── gFieldBushFairyDL_vtx_1 │ │ │ ├── gFieldBushFairyDL_vtx_2 │ │ │ ├── gFieldBushFairyDL_vtx_cull │ │ │ ├── gFieldBushHeartDL │ │ │ ├── gFieldBushHeartDL_tri_0 │ │ │ ├── gFieldBushHeartDL_tri_1 │ │ │ ├── gFieldBushHeartDL_tri_2 │ │ │ ├── gFieldBushHeartDL_vtx_0 │ │ │ ├── gFieldBushHeartDL_vtx_1 │ │ │ ├── gFieldBushHeartDL_vtx_2 │ │ │ ├── gFieldBushHeartDL_vtx_cull │ │ │ ├── gFieldBushJunkDL │ │ │ ├── gFieldBushJunkDL_tri_0 │ │ │ ├── gFieldBushJunkDL_vtx_0 │ │ │ ├── gFieldBushJunkDL_vtx_cull │ │ │ ├── gFieldBushMajorDL │ │ │ ├── gFieldBushMajorDL_tri_0 │ │ │ ├── gFieldBushMajorDL_tri_1 │ │ │ ├── gFieldBushMajorDL_tri_2 │ │ │ ├── gFieldBushMajorDL_vtx_0 │ │ │ ├── gFieldBushMajorDL_vtx_1 │ │ │ ├── gFieldBushMajorDL_vtx_2 │ │ │ ├── gFieldBushMajorDL_vtx_cull │ │ │ ├── gFieldBushMaskDL │ │ │ ├── gFieldBushMaskDL_tri_0 │ │ │ ├── gFieldBushMaskDL_tri_1 │ │ │ ├── gFieldBushMaskDL_tri_2 │ │ │ ├── gFieldBushMaskDL_vtx_0 │ │ │ ├── gFieldBushMaskDL_vtx_1 │ │ │ ├── gFieldBushMaskDL_vtx_2 │ │ │ ├── gFieldBushMaskDL_vtx_cull │ │ │ ├── gFieldBushMinorDL │ │ │ ├── gFieldBushMinorDL_tri_0 │ │ │ ├── gFieldBushMinorDL_tri_1 │ │ │ ├── gFieldBushMinorDL_tri_2 │ │ │ ├── gFieldBushMinorDL_vtx_0 │ │ │ ├── gFieldBushMinorDL_vtx_1 │ │ │ ├── gFieldBushMinorDL_vtx_2 │ │ │ ├── gFieldBushMinorDL_vtx_cull │ │ │ ├── gFieldBushRandomDL │ │ │ ├── gFieldBushRandomDL_tri_0 │ │ │ ├── gFieldBushRandomDL_tri_1 │ │ │ ├── gFieldBushRandomDL_tri_2 │ │ │ ├── gFieldBushRandomDL_vtx_0 │ │ │ ├── gFieldBushRandomDL_vtx_1 │ │ │ ├── gFieldBushRandomDL_vtx_2 │ │ │ ├── gFieldBushRandomDL_vtx_cull │ │ │ ├── gFieldBushSmallKeyDL │ │ │ ├── gFieldBushSmallKeyDL_tri_0 │ │ │ ├── gFieldBushSmallKeyDL_tri_1 │ │ │ ├── gFieldBushSmallKeyDL_tri_2 │ │ │ ├── gFieldBushSmallKeyDL_vtx_0 │ │ │ ├── gFieldBushSmallKeyDL_vtx_1 │ │ │ ├── gFieldBushSmallKeyDL_vtx_2 │ │ │ ├── gFieldBushSmallKeyDL_vtx_cull │ │ │ ├── gFieldBushTokenDL │ │ │ ├── gFieldBushTokenDL_tri_0 │ │ │ ├── gFieldBushTokenDL_tri_1 │ │ │ ├── gFieldBushTokenDL_tri_2 │ │ │ ├── gFieldBushTokenDL_vtx_0 │ │ │ ├── gFieldBushTokenDL_vtx_1 │ │ │ ├── gFieldBushTokenDL_vtx_2 │ │ │ ├── gFieldBushTokenDL_vtx_cull │ │ │ ├── mat_gFieldBushBossKeyDL_f3dlite_flower_bosskey │ │ │ ├── mat_gFieldBushBossKeyDL_f3dlite_leaf │ │ │ ├── mat_gFieldBushBossKeyDL_f3dlite_shrubbery │ │ │ ├── mat_gFieldBushFairyDL_f3dlite_flower_fairy │ │ │ ├── mat_gFieldBushFairyDL_f3dlite_leaf │ │ │ ├── mat_gFieldBushFairyDL_f3dlite_shrubbery │ │ │ ├── mat_gFieldBushHeartDL_f3dlite_flower_heart │ │ │ ├── mat_gFieldBushHeartDL_f3dlite_leaf │ │ │ ├── mat_gFieldBushHeartDL_f3dlite_shrubbery │ │ │ ├── mat_gFieldBushJunkDL_f3dlite_shrubbery │ │ │ ├── mat_gFieldBushMajorDL_f3dlite_flower_gold │ │ │ ├── mat_gFieldBushMajorDL_f3dlite_leaf │ │ │ ├── mat_gFieldBushMajorDL_f3dlite_shrubbery │ │ │ ├── mat_gFieldBushMaskDL_f3dlite_flower_mask │ │ │ ├── mat_gFieldBushMaskDL_f3dlite_leaf │ │ │ ├── mat_gFieldBushMaskDL_f3dlite_shrubbery │ │ │ ├── mat_gFieldBushMinorDL_f3dlite_flower_bronze │ │ │ ├── mat_gFieldBushMinorDL_f3dlite_leaf │ │ │ ├── mat_gFieldBushMinorDL_f3dlite_shrubbery │ │ │ ├── mat_gFieldBushRandomDL_f3dlite_flower_random │ │ │ ├── mat_gFieldBushRandomDL_f3dlite_leaf │ │ │ ├── mat_gFieldBushRandomDL_f3dlite_shrubbery │ │ │ ├── mat_gFieldBushSmallKeyDL_f3dlite_flower_silver │ │ │ ├── mat_gFieldBushSmallKeyDL_f3dlite_leaf │ │ │ ├── mat_gFieldBushSmallKeyDL_f3dlite_shrubbery │ │ │ ├── mat_gFieldBushTokenDL_f3dlite_flower_token │ │ │ ├── mat_gFieldBushTokenDL_f3dlite_leaf │ │ │ ├── mat_gFieldBushTokenDL_f3dlite_shrubbery │ │ │ └── model.xml │ │ ├── gameplay_keep │ │ │ ├── LeafTex.rgba16 │ │ │ ├── StemTex.rgba16 │ │ │ ├── flower_bosskey_tex.rgba16 │ │ │ ├── flower_bronze_tex.rgba16 │ │ │ ├── flower_fairy_tex.rgba16 │ │ │ ├── flower_gold_tex.rgba16 │ │ │ ├── flower_heart_tex.rgba16 │ │ │ ├── flower_mask_tex.rgba16 │ │ │ ├── flower_random_tex.rgba16 │ │ │ ├── flower_silver_tex.rgba16 │ │ │ ├── flower_token_tex.rgba16 │ │ │ ├── gGrassBunchTex.rgba16 │ │ │ ├── gRandoCuttableGrassBossKeyDL │ │ │ ├── gRandoCuttableGrassBossKeyDL_tri_0 │ │ │ ├── gRandoCuttableGrassBossKeyDL_tri_1 │ │ │ ├── gRandoCuttableGrassBossKeyDL_tri_2 │ │ │ ├── gRandoCuttableGrassBossKeyDL_tri_3 │ │ │ ├── gRandoCuttableGrassBossKeyDL_vtx_0 │ │ │ ├── gRandoCuttableGrassBossKeyDL_vtx_1 │ │ │ ├── gRandoCuttableGrassBossKeyDL_vtx_2 │ │ │ ├── gRandoCuttableGrassBossKeyDL_vtx_3 │ │ │ ├── gRandoCuttableGrassBossKeyDL_vtx_cull │ │ │ ├── gRandoCuttableGrassFairyDL │ │ │ ├── gRandoCuttableGrassFairyDL_tri_0 │ │ │ ├── gRandoCuttableGrassFairyDL_tri_1 │ │ │ ├── gRandoCuttableGrassFairyDL_tri_2 │ │ │ ├── gRandoCuttableGrassFairyDL_tri_3 │ │ │ ├── gRandoCuttableGrassFairyDL_vtx_0 │ │ │ ├── gRandoCuttableGrassFairyDL_vtx_1 │ │ │ ├── gRandoCuttableGrassFairyDL_vtx_2 │ │ │ ├── gRandoCuttableGrassFairyDL_vtx_3 │ │ │ ├── gRandoCuttableGrassFairyDL_vtx_cull │ │ │ ├── gRandoCuttableGrassHeartDL │ │ │ ├── gRandoCuttableGrassHeartDL_tri_0 │ │ │ ├── gRandoCuttableGrassHeartDL_tri_1 │ │ │ ├── gRandoCuttableGrassHeartDL_tri_2 │ │ │ ├── gRandoCuttableGrassHeartDL_tri_3 │ │ │ ├── gRandoCuttableGrassHeartDL_vtx_0 │ │ │ ├── gRandoCuttableGrassHeartDL_vtx_1 │ │ │ ├── gRandoCuttableGrassHeartDL_vtx_2 │ │ │ ├── gRandoCuttableGrassHeartDL_vtx_3 │ │ │ ├── gRandoCuttableGrassHeartDL_vtx_cull │ │ │ ├── gRandoCuttableGrassJunkDL │ │ │ ├── gRandoCuttableGrassJunkDL_tri_0 │ │ │ ├── gRandoCuttableGrassJunkDL_vtx_0 │ │ │ ├── gRandoCuttableGrassJunkDL_vtx_cull │ │ │ ├── gRandoCuttableGrassMajorDL │ │ │ ├── gRandoCuttableGrassMajorDL_tri_0 │ │ │ ├── gRandoCuttableGrassMajorDL_tri_1 │ │ │ ├── gRandoCuttableGrassMajorDL_tri_2 │ │ │ ├── gRandoCuttableGrassMajorDL_tri_3 │ │ │ ├── gRandoCuttableGrassMajorDL_vtx_0 │ │ │ ├── gRandoCuttableGrassMajorDL_vtx_1 │ │ │ ├── gRandoCuttableGrassMajorDL_vtx_2 │ │ │ ├── gRandoCuttableGrassMajorDL_vtx_3 │ │ │ ├── gRandoCuttableGrassMajorDL_vtx_cull │ │ │ ├── gRandoCuttableGrassMaskDL │ │ │ ├── gRandoCuttableGrassMaskDL_tri_0 │ │ │ ├── gRandoCuttableGrassMaskDL_tri_1 │ │ │ ├── gRandoCuttableGrassMaskDL_tri_2 │ │ │ ├── gRandoCuttableGrassMaskDL_tri_3 │ │ │ ├── gRandoCuttableGrassMaskDL_vtx_0 │ │ │ ├── gRandoCuttableGrassMaskDL_vtx_1 │ │ │ ├── gRandoCuttableGrassMaskDL_vtx_2 │ │ │ ├── gRandoCuttableGrassMaskDL_vtx_3 │ │ │ ├── gRandoCuttableGrassMaskDL_vtx_cull │ │ │ ├── gRandoCuttableGrassMinorDL │ │ │ ├── gRandoCuttableGrassMinorDL_tri_0 │ │ │ ├── gRandoCuttableGrassMinorDL_tri_1 │ │ │ ├── gRandoCuttableGrassMinorDL_tri_2 │ │ │ ├── gRandoCuttableGrassMinorDL_tri_3 │ │ │ ├── gRandoCuttableGrassMinorDL_vtx_0 │ │ │ ├── gRandoCuttableGrassMinorDL_vtx_1 │ │ │ ├── gRandoCuttableGrassMinorDL_vtx_2 │ │ │ ├── gRandoCuttableGrassMinorDL_vtx_3 │ │ │ ├── gRandoCuttableGrassMinorDL_vtx_cull │ │ │ ├── gRandoCuttableGrassRandomDL │ │ │ ├── gRandoCuttableGrassRandomDL_tri_0 │ │ │ ├── gRandoCuttableGrassRandomDL_tri_1 │ │ │ ├── gRandoCuttableGrassRandomDL_tri_2 │ │ │ ├── gRandoCuttableGrassRandomDL_tri_3 │ │ │ ├── gRandoCuttableGrassRandomDL_vtx_0 │ │ │ ├── gRandoCuttableGrassRandomDL_vtx_1 │ │ │ ├── gRandoCuttableGrassRandomDL_vtx_2 │ │ │ ├── gRandoCuttableGrassRandomDL_vtx_3 │ │ │ ├── gRandoCuttableGrassRandomDL_vtx_cull │ │ │ ├── gRandoCuttableGrassSmallKeyDL │ │ │ ├── gRandoCuttableGrassSmallKeyDL_tri_0 │ │ │ ├── gRandoCuttableGrassSmallKeyDL_tri_1 │ │ │ ├── gRandoCuttableGrassSmallKeyDL_tri_2 │ │ │ ├── gRandoCuttableGrassSmallKeyDL_tri_3 │ │ │ ├── gRandoCuttableGrassSmallKeyDL_vtx_0 │ │ │ ├── gRandoCuttableGrassSmallKeyDL_vtx_1 │ │ │ ├── gRandoCuttableGrassSmallKeyDL_vtx_2 │ │ │ ├── gRandoCuttableGrassSmallKeyDL_vtx_3 │ │ │ ├── gRandoCuttableGrassSmallKeyDL_vtx_cull │ │ │ ├── gRandoCuttableGrassTokenDL │ │ │ ├── gRandoCuttableGrassTokenDL_tri_0 │ │ │ ├── gRandoCuttableGrassTokenDL_tri_1 │ │ │ ├── gRandoCuttableGrassTokenDL_tri_2 │ │ │ ├── gRandoCuttableGrassTokenDL_tri_3 │ │ │ ├── gRandoCuttableGrassTokenDL_vtx_0 │ │ │ ├── gRandoCuttableGrassTokenDL_vtx_1 │ │ │ ├── gRandoCuttableGrassTokenDL_vtx_2 │ │ │ ├── gRandoCuttableGrassTokenDL_vtx_3 │ │ │ ├── gRandoCuttableGrassTokenDL_vtx_cull │ │ │ ├── mat_gRandoCuttableGrassBossKeyDL_f3dlite_Grass │ │ │ ├── mat_gRandoCuttableGrassBossKeyDL_f3dlite_flower_bosskey │ │ │ ├── mat_gRandoCuttableGrassBossKeyDL_f3dlite_leaf │ │ │ ├── mat_gRandoCuttableGrassBossKeyDL_f3dlite_material │ │ │ ├── mat_gRandoCuttableGrassFairyDL_f3dlite_Grass │ │ │ ├── mat_gRandoCuttableGrassFairyDL_f3dlite_flower_fairy │ │ │ ├── mat_gRandoCuttableGrassFairyDL_f3dlite_leaf │ │ │ ├── mat_gRandoCuttableGrassFairyDL_f3dlite_material │ │ │ ├── mat_gRandoCuttableGrassHeartDL_f3dlite_Grass │ │ │ ├── mat_gRandoCuttableGrassHeartDL_f3dlite_flower_heart │ │ │ ├── mat_gRandoCuttableGrassHeartDL_f3dlite_leaf │ │ │ ├── mat_gRandoCuttableGrassHeartDL_f3dlite_material │ │ │ ├── mat_gRandoCuttableGrassJunkDL_f3dlite_Grass │ │ │ ├── mat_gRandoCuttableGrassMajorDL_f3dlite_Grass │ │ │ ├── mat_gRandoCuttableGrassMajorDL_f3dlite_flower_gold │ │ │ ├── mat_gRandoCuttableGrassMajorDL_f3dlite_leaf │ │ │ ├── mat_gRandoCuttableGrassMajorDL_f3dlite_material │ │ │ ├── mat_gRandoCuttableGrassMaskDL_f3dlite_Grass │ │ │ ├── mat_gRandoCuttableGrassMaskDL_f3dlite_flower_mask │ │ │ ├── mat_gRandoCuttableGrassMaskDL_f3dlite_leaf │ │ │ ├── mat_gRandoCuttableGrassMaskDL_f3dlite_material │ │ │ ├── mat_gRandoCuttableGrassMinorDL_f3dlite_Grass │ │ │ ├── mat_gRandoCuttableGrassMinorDL_f3dlite_flower_bronze │ │ │ ├── mat_gRandoCuttableGrassMinorDL_f3dlite_leaf │ │ │ ├── mat_gRandoCuttableGrassMinorDL_f3dlite_material │ │ │ ├── mat_gRandoCuttableGrassRandomDL_f3dlite_Grass │ │ │ ├── mat_gRandoCuttableGrassRandomDL_f3dlite_flower_random │ │ │ ├── mat_gRandoCuttableGrassRandomDL_f3dlite_leaf │ │ │ ├── mat_gRandoCuttableGrassRandomDL_f3dlite_material │ │ │ ├── mat_gRandoCuttableGrassSmallKeyDL_f3dlite_Grass │ │ │ ├── mat_gRandoCuttableGrassSmallKeyDL_f3dlite_flower_silver │ │ │ ├── mat_gRandoCuttableGrassSmallKeyDL_f3dlite_leaf │ │ │ ├── mat_gRandoCuttableGrassSmallKeyDL_f3dlite_material │ │ │ ├── mat_gRandoCuttableGrassTokenDL_f3dlite_Grass │ │ │ ├── mat_gRandoCuttableGrassTokenDL_f3dlite_flower_token │ │ │ ├── mat_gRandoCuttableGrassTokenDL_f3dlite_leaf │ │ │ ├── mat_gRandoCuttableGrassTokenDL_f3dlite_material │ │ │ └── model.xml │ │ ├── object_bombchubag │ │ │ ├── Hilite_new │ │ │ ├── gBombchuBagBodyDL │ │ │ ├── gBombchuBagBodyDL_tri_0 │ │ │ ├── gBombchuBagBodyDL_tri_1 │ │ │ ├── gBombchuBagBodyDL_vtx_0 │ │ │ ├── gBombchuBagBodyDL_vtx_1 │ │ │ ├── gBombchuBagMaskDL │ │ │ ├── gBombchuBagMaskDL_tri_0 │ │ │ ├── gBombchuBagMaskDL_vtx_0 │ │ │ ├── mat_gBombchuBagBodyDL_f3dlite_bag_body_matte │ │ │ ├── mat_gBombchuBagBodyDL_f3dlite_bag_body_shine │ │ │ └── mat_gBombchuBagMaskDL_f3dlite_bag_mask │ │ ├── object_boss_soul │ │ │ ├── BarkOrHorns │ │ │ ├── LightNoise │ │ │ ├── gGIBossSoulSkullDL │ │ │ ├── gGIBossSoulSkullDL_tri_0 │ │ │ ├── gGIBossSoulSkullDL_tri_1 │ │ │ ├── gGIBossSoulSkullDL_tri_2 │ │ │ ├── gGIBossSoulSkullDL_tri_3 │ │ │ ├── gGIBossSoulSkullDL_tri_4 │ │ │ ├── gGIBossSoulSkullDL_vtx_0 │ │ │ ├── gGIBossSoulSkullDL_vtx_1 │ │ │ ├── gGIBossSoulSkullDL_vtx_2 │ │ │ ├── gGIBossSoulSkullDL_vtx_3 │ │ │ ├── gGIBossSoulSkullDL_vtx_4 │ │ │ ├── gGIBossSoulSkullDL_vtx_cull │ │ │ ├── heart1 │ │ │ ├── mat_gGIBossSoulSkullDL_Black │ │ │ ├── mat_gGIBossSoulSkullDL_Horns │ │ │ ├── mat_gGIBossSoulSkullDL_Jewel │ │ │ ├── mat_gGIBossSoulSkullDL_Skull1 │ │ │ └── mat_gGIBossSoulSkullDL_f3dlite_material │ │ ├── object_bosskey │ │ │ ├── Hilite_Caustics2 │ │ │ ├── Hilite_new │ │ │ ├── gBossKeyCustomDL │ │ │ ├── gBossKeyCustomDL_tri_0 │ │ │ ├── gBossKeyCustomDL_vtx_0 │ │ │ ├── gBossKeyIconFireTempleDL │ │ │ ├── gBossKeyIconFireTempleDL_tri_0 │ │ │ ├── gBossKeyIconFireTempleDL_vtx_0 │ │ │ ├── gBossKeyIconForestTempleDL │ │ │ ├── gBossKeyIconForestTempleDL_tri_0 │ │ │ ├── gBossKeyIconForestTempleDL_vtx_0 │ │ │ ├── gBossKeyIconGanonsCastleDL │ │ │ ├── gBossKeyIconGanonsCastleDL_tri_0 │ │ │ ├── gBossKeyIconGanonsCastleDL_vtx_0 │ │ │ ├── gBossKeyIconShadowTempleDL │ │ │ ├── gBossKeyIconShadowTempleDL_tri_0 │ │ │ ├── gBossKeyIconShadowTempleDL_vtx_0 │ │ │ ├── gBossKeyIconSpiritTempleDL │ │ │ ├── gBossKeyIconSpiritTempleDL_tri_0 │ │ │ ├── gBossKeyIconSpiritTempleDL_vtx_0 │ │ │ ├── gBossKeyIconWaterTempleDL │ │ │ ├── gBossKeyIconWaterTempleDL_tri_0 │ │ │ ├── gBossKeyIconWaterTempleDL_vtx_0 │ │ │ ├── mat_gBossKeyCustomDL_f3dlite_BossKeyMetal_Custom │ │ │ ├── mat_gBossKeyIconFireTempleDL_f3dlite_BossKeyGem_FireTemple │ │ │ ├── mat_gBossKeyIconForestTempleDL_f3dlite_BossKeyGem_ForestTemple │ │ │ ├── mat_gBossKeyIconGanonsCastleDL_f3dlite_BossKeyGem_GanonsCastle │ │ │ ├── mat_gBossKeyIconShadowTempleDL_f3dlite_BossKeyGem_ShadowTemple │ │ │ ├── mat_gBossKeyIconSpiritTempleDL_f3dlite_BossKeyGem_SpiritTemple │ │ │ └── mat_gBossKeyIconWaterTempleDL_f3dlite_BossKeyGem_WaterTemple │ │ ├── object_box │ │ │ ├── gChristmasGreenTreasureChestFrontTex.rgb5a1.png │ │ │ ├── gChristmasGreenTreasureChestSideAndTopTex.rgb5a1.png │ │ │ ├── gChristmasRedTreasureChestFrontTex.rgb5a1.png │ │ │ ├── gChristmasRedTreasureChestSideAndTopTex.rgb5a1.png │ │ │ ├── gGoldTreasureChestFrontTex.rgb5a1.png │ │ │ ├── gGoldTreasureChestSideAndTopTex.rgb5a1.png │ │ │ ├── gKeyTreasureChestFrontTex.rgb5a1.png │ │ │ ├── gKeyTreasureChestSideAndTopTex.rgb5a1.png │ │ │ ├── gSkullTreasureChestFrontTex.rgb5a1.png │ │ │ └── gSkullTreasureChestSideAndTopTex.rgb5a1.png │ │ ├── object_gi_fishing_pole │ │ │ ├── eff_unknown_10_i8 │ │ │ ├── eff_unknown_10_i8_png │ │ │ ├── gFishingPoleGiDL │ │ │ ├── gFishingPoleGiDL_tri_0 │ │ │ ├── gFishingPoleGiDL_tri_1 │ │ │ ├── gFishingPoleGiDL_tri_2 │ │ │ ├── gFishingPoleGiDL_tri_3 │ │ │ ├── gFishingPoleGiDL_tri_4 │ │ │ ├── gFishingPoleGiDL_tri_5 │ │ │ ├── gFishingPoleGiDL_tri_6 │ │ │ ├── gFishingPoleGiDL_tri_7 │ │ │ ├── gFishingPoleGiDL_vtx_0 │ │ │ ├── gFishingPoleGiDL_vtx_1 │ │ │ ├── gFishingPoleGiDL_vtx_2 │ │ │ ├── gFishingPoleGiDL_vtx_3 │ │ │ ├── gFishingPoleGiDL_vtx_4 │ │ │ ├── gFishingPoleGiDL_vtx_5 │ │ │ ├── gFishingPoleGiDL_vtx_6 │ │ │ ├── gFishingPoleGiDL_vtx_7 │ │ │ ├── gFishingPoleGiDL_vtx_cull │ │ │ ├── mat_gFishingPoleGiDL_black │ │ │ ├── mat_gFishingPoleGiDL_f3dlite_material_006 │ │ │ ├── mat_gFishingPoleGiDL_line │ │ │ ├── mat_gFishingPoleGiDL_reel_accent_001 │ │ │ ├── mat_gFishingPoleGiDL_reel_handle_metal │ │ │ ├── mat_gFishingPoleGiDL_reel_metal_001 │ │ │ ├── mat_gFishingPoleGiDL_reel_white │ │ │ └── mat_gFishingPoleGiDL_wood │ │ ├── object_housekey │ │ │ ├── Hilite_new │ │ │ ├── HouseKey_Tag │ │ │ ├── gHouseKeyDL │ │ │ ├── gHouseKeyDL_tri_0 │ │ │ ├── gHouseKeyDL_tri_1 │ │ │ ├── gHouseKeyDL_tri_2 │ │ │ ├── gHouseKeyDL_vtx_0 │ │ │ ├── gHouseKeyDL_vtx_1 │ │ │ ├── gHouseKeyDL_vtx_2 │ │ │ ├── mat_gHouseKeyDL_f3dlite_housekeymetal │ │ │ ├── mat_gHouseKeyDL_f3dlite_housekeyringmetal │ │ │ └── mat_gHouseKeyDL_f3dlite_housekeytag │ │ ├── object_key │ │ │ ├── Hilite_new │ │ │ ├── gSkeletonKeyDL │ │ │ ├── gSkeletonKeyDL_tri_0 │ │ │ ├── gSkeletonKeyDL_tri_1 │ │ │ ├── gSkeletonKeyDL_vtx_0 │ │ │ ├── gSkeletonKeyDL_vtx_1 │ │ │ ├── gSmallKeyCustomDL │ │ │ ├── gSmallKeyCustomDL_tri_0 │ │ │ ├── gSmallKeyCustomDL_vtx_0 │ │ │ ├── gSmallKeyIconBottomoftheWellDL │ │ │ ├── gSmallKeyIconBottomoftheWellDL_tri_0 │ │ │ ├── gSmallKeyIconBottomoftheWellDL_vtx_0 │ │ │ ├── gSmallKeyIconFireTempleDL │ │ │ ├── gSmallKeyIconFireTempleDL_tri_0 │ │ │ ├── gSmallKeyIconFireTempleDL_vtx_0 │ │ │ ├── gSmallKeyIconForestTempleDL │ │ │ ├── gSmallKeyIconForestTempleDL_tri_0 │ │ │ ├── gSmallKeyIconForestTempleDL_vtx_0 │ │ │ ├── gSmallKeyIconGanonsCastleDL │ │ │ ├── gSmallKeyIconGanonsCastleDL_tri_0 │ │ │ ├── gSmallKeyIconGanonsCastleDL_vtx_0 │ │ │ ├── gSmallKeyIconGerudoFortressDL │ │ │ ├── gSmallKeyIconGerudoFortressDL_tri_0 │ │ │ ├── gSmallKeyIconGerudoFortressDL_vtx_0 │ │ │ ├── gSmallKeyIconGerudoTrainingGroundDL │ │ │ ├── gSmallKeyIconGerudoTrainingGroundDL_tri_0 │ │ │ ├── gSmallKeyIconGerudoTrainingGroundDL_vtx_0 │ │ │ ├── gSmallKeyIconShadowTempleDL │ │ │ ├── gSmallKeyIconShadowTempleDL_tri_0 │ │ │ ├── gSmallKeyIconShadowTempleDL_vtx_0 │ │ │ ├── gSmallKeyIconSpiritTempleDL │ │ │ ├── gSmallKeyIconSpiritTempleDL_tri_0 │ │ │ ├── gSmallKeyIconSpiritTempleDL_vtx_0 │ │ │ ├── gSmallKeyIconTreasureChestGameDL │ │ │ ├── gSmallKeyIconTreasureChestGameDL_tri_0 │ │ │ ├── gSmallKeyIconTreasureChestGameDL_vtx_0 │ │ │ ├── gSmallKeyIconWaterTempleDL │ │ │ ├── gSmallKeyIconWaterTempleDL_tri_0 │ │ │ ├── gSmallKeyIconWaterTempleDL_vtx_0 │ │ │ ├── mat_gSkeletonKeyDL_f3dlite_KeyMetal_Skeleton │ │ │ ├── mat_gSkeletonKeyDL_f3dlite_KeyMetal_SkeletonShade │ │ │ ├── mat_gSmallKeyCustomDL_f3dlite_KeyMetal_Small │ │ │ ├── mat_gSmallKeyIconBottomoftheWellDL_f3dlite_IconMetal_BottomoftheWell │ │ │ ├── mat_gSmallKeyIconFireTempleDL_f3dlite_IconMetal_FireTemple │ │ │ ├── mat_gSmallKeyIconForestTempleDL_f3dlite_IconMetal_ForestTemple │ │ │ ├── mat_gSmallKeyIconGanonsCastleDL_f3dlite_IconMetal_GanonsCastle │ │ │ ├── mat_gSmallKeyIconGerudoFortressDL_f3dlite_IconMetal_GerudoFortress │ │ │ ├── mat_gSmallKeyIconGerudoTrainingGroundDL_f3dlite_IconMetal_GerudoTrainingGround │ │ │ ├── mat_gSmallKeyIconShadowTempleDL_f3dlite_IconMetal_ShadowTemple │ │ │ ├── mat_gSmallKeyIconSpiritTempleDL_f3dlite_IconMetal_SpiritTemple │ │ │ ├── mat_gSmallKeyIconTreasureChestGameDL_f3dlite_IconMetal_TreasureChestGame │ │ │ └── mat_gSmallKeyIconWaterTempleDL_f3dlite_IconMetal_WaterTemple │ │ ├── object_keyring │ │ │ ├── Hilite_new │ │ │ ├── Hilite_new.rgba16 │ │ │ ├── gKeyringIconBottomoftheWellDL │ │ │ ├── gKeyringIconBottomoftheWellDL_tri_0 │ │ │ ├── gKeyringIconBottomoftheWellDL_vtx_0 │ │ │ ├── gKeyringIconFireTempleDL │ │ │ ├── gKeyringIconFireTempleDL_tri_0 │ │ │ ├── gKeyringIconFireTempleDL_vtx_0 │ │ │ ├── gKeyringIconForestTempleDL │ │ │ ├── gKeyringIconForestTempleDL_tri_0 │ │ │ ├── gKeyringIconForestTempleDL_vtx_0 │ │ │ ├── gKeyringIconGanonsCastleDL │ │ │ ├── gKeyringIconGanonsCastleDL_tri_0 │ │ │ ├── gKeyringIconGanonsCastleDL_vtx_0 │ │ │ ├── gKeyringIconGerudoFortressDL │ │ │ ├── gKeyringIconGerudoFortressDL_tri_0 │ │ │ ├── gKeyringIconGerudoFortressDL_vtx_0 │ │ │ ├── gKeyringIconGerudoFortressDL_vtx_cull │ │ │ ├── gKeyringIconGerudoTrainingGroundDL │ │ │ ├── gKeyringIconGerudoTrainingGroundDL_tri_0 │ │ │ ├── gKeyringIconGerudoTrainingGroundDL_vtx_0 │ │ │ ├── gKeyringIconShadowTempleDL │ │ │ ├── gKeyringIconShadowTempleDL_tri_0 │ │ │ ├── gKeyringIconShadowTempleDL_vtx_0 │ │ │ ├── gKeyringIconSpiritTempleDL │ │ │ ├── gKeyringIconSpiritTempleDL_tri_0 │ │ │ ├── gKeyringIconSpiritTempleDL_vtx_0 │ │ │ ├── gKeyringIconTreasureChestGameDL │ │ │ ├── gKeyringIconTreasureChestGameDL_tri_0 │ │ │ ├── gKeyringIconTreasureChestGameDL_vtx_0 │ │ │ ├── gKeyringIconWaterTempleDL │ │ │ ├── gKeyringIconWaterTempleDL_tri_0 │ │ │ ├── gKeyringIconWaterTempleDL_vtx_0 │ │ │ ├── gKeyringKeysBottomoftheWellDL │ │ │ ├── gKeyringKeysBottomoftheWellDL_tri_0 │ │ │ ├── gKeyringKeysBottomoftheWellDL_vtx_0 │ │ │ ├── gKeyringKeysBottomoftheWellMQDL │ │ │ ├── gKeyringKeysBottomoftheWellMQDL_tri_0 │ │ │ ├── gKeyringKeysBottomoftheWellMQDL_vtx_0 │ │ │ ├── gKeyringKeysFireTempleDL │ │ │ ├── gKeyringKeysFireTempleDL_tri_0 │ │ │ ├── gKeyringKeysFireTempleDL_vtx_0 │ │ │ ├── gKeyringKeysFireTempleMQDL │ │ │ ├── gKeyringKeysFireTempleMQDL_tri_0 │ │ │ ├── gKeyringKeysFireTempleMQDL_vtx_0 │ │ │ ├── gKeyringKeysForestTempleDL │ │ │ ├── gKeyringKeysForestTempleDL_tri_0 │ │ │ ├── gKeyringKeysForestTempleDL_vtx_0 │ │ │ ├── gKeyringKeysForestTempleMQDL │ │ │ ├── gKeyringKeysForestTempleMQDL_tri_0 │ │ │ ├── gKeyringKeysForestTempleMQDL_vtx_0 │ │ │ ├── gKeyringKeysGanonsCastleDL │ │ │ ├── gKeyringKeysGanonsCastleDL_tri_0 │ │ │ ├── gKeyringKeysGanonsCastleDL_vtx_0 │ │ │ ├── gKeyringKeysGanonsCastleMQDL │ │ │ ├── gKeyringKeysGanonsCastleMQDL_tri_0 │ │ │ ├── gKeyringKeysGanonsCastleMQDL_vtx_0 │ │ │ ├── gKeyringKeysGerudoFortressDL │ │ │ ├── gKeyringKeysGerudoFortressDL_tri_0 │ │ │ ├── gKeyringKeysGerudoFortressDL_vtx_0 │ │ │ ├── gKeyringKeysGerudoTrainingGroundDL │ │ │ ├── gKeyringKeysGerudoTrainingGroundDL_tri_0 │ │ │ ├── gKeyringKeysGerudoTrainingGroundDL_vtx_0 │ │ │ ├── gKeyringKeysGerudoTrainingGroundMQDL │ │ │ ├── gKeyringKeysGerudoTrainingGroundMQDL_tri_0 │ │ │ ├── gKeyringKeysGerudoTrainingGroundMQDL_vtx_0 │ │ │ ├── gKeyringKeysShadowTempleDL │ │ │ ├── gKeyringKeysShadowTempleDL_tri_0 │ │ │ ├── gKeyringKeysShadowTempleDL_vtx_0 │ │ │ ├── gKeyringKeysShadowTempleMQDL │ │ │ ├── gKeyringKeysShadowTempleMQDL_tri_0 │ │ │ ├── gKeyringKeysShadowTempleMQDL_vtx_0 │ │ │ ├── gKeyringKeysSpiritTempleDL │ │ │ ├── gKeyringKeysSpiritTempleDL_tri_0 │ │ │ ├── gKeyringKeysSpiritTempleDL_vtx_0 │ │ │ ├── gKeyringKeysSpiritTempleMQDL │ │ │ ├── gKeyringKeysSpiritTempleMQDL_tri_0 │ │ │ ├── gKeyringKeysSpiritTempleMQDL_vtx_0 │ │ │ ├── gKeyringKeysTreasureChestGameDL │ │ │ ├── gKeyringKeysTreasureChestGameDL_tri_0 │ │ │ ├── gKeyringKeysTreasureChestGameDL_vtx_0 │ │ │ ├── gKeyringKeysWaterTempleDL │ │ │ ├── gKeyringKeysWaterTempleDL_tri_0 │ │ │ ├── gKeyringKeysWaterTempleDL_vtx_0 │ │ │ ├── gKeyringKeysWaterTempleMQDL │ │ │ ├── gKeyringKeysWaterTempleMQDL_tri_0 │ │ │ ├── gKeyringKeysWaterTempleMQDL_vtx_0 │ │ │ ├── gKeyringRingDL │ │ │ ├── gKeyringRingDL_tri_0 │ │ │ ├── gKeyringRingDL_vtx_0 │ │ │ ├── mat_gKeyringIconBottomoftheWellDL_f3dlite_IconMetal_BottomoftheWell │ │ │ ├── mat_gKeyringIconFireTempleDL_f3dlite_IconMetal_FireTemple │ │ │ ├── mat_gKeyringIconForestTempleDL_f3dlite_IconMetal_ForestTemple │ │ │ ├── mat_gKeyringIconGanonsCastleDL_f3dlite_IconMetal_GanonsCastle │ │ │ ├── mat_gKeyringIconGerudoFortressDL_f3dlite_IconMetal_GerudoFortress │ │ │ ├── mat_gKeyringIconGerudoTrainingGroundDL_f3dlite_IconMetal_GerudoTrainingGround │ │ │ ├── mat_gKeyringIconShadowTempleDL_f3dlite_IconMetal_ShadowTemple │ │ │ ├── mat_gKeyringIconSpiritTempleDL_f3dlite_IconMetal_SpiritTemple │ │ │ ├── mat_gKeyringIconTreasureChestGameDL_f3dlite_IconMetal_TreasureChestGame │ │ │ ├── mat_gKeyringIconWaterTempleDL_f3dlite_IconMetal_WaterTemple │ │ │ ├── mat_gKeyringKeysBottomoftheWellDL_f3dlite_KeyMetal_BottomoftheWell │ │ │ ├── mat_gKeyringKeysBottomoftheWellMQDL_f3dlite_KeyMetal_BottomoftheWell │ │ │ ├── mat_gKeyringKeysFireTempleDL_f3dlite_KeyMetal_FireTemple │ │ │ ├── mat_gKeyringKeysFireTempleMQDL_f3dlite_KeyMetal_FireTemple │ │ │ ├── mat_gKeyringKeysForestTempleDL_f3dlite_KeyMetal_ForestTemple │ │ │ ├── mat_gKeyringKeysForestTempleMQDL_f3dlite_KeyMetal_ForestTemple │ │ │ ├── mat_gKeyringKeysGanonsCastleDL_f3dlite_KeyMetal_GanonsCastle │ │ │ ├── mat_gKeyringKeysGanonsCastleMQDL_f3dlite_KeyMetal_GanonsCastle │ │ │ ├── mat_gKeyringKeysGerudoFortressDL_f3dlite_KeyMetal_GerudoFortress │ │ │ ├── mat_gKeyringKeysGerudoTrainingGroundDL_f3dlite_KeyMetal_GerudoTrainingGround │ │ │ ├── mat_gKeyringKeysGerudoTrainingGroundMQDL_f3dlite_KeyMetal_GerudoTrainingGround │ │ │ ├── mat_gKeyringKeysShadowTempleDL_f3dlite_KeyMetal_ShadowTemple │ │ │ ├── mat_gKeyringKeysShadowTempleMQDL_f3dlite_KeyMetal_ShadowTemple │ │ │ ├── mat_gKeyringKeysSpiritTempleDL_f3dlite_KeyMetal_SpiritTemple │ │ │ ├── mat_gKeyringKeysSpiritTempleMQDL_f3dlite_KeyMetal_SpiritTemple │ │ │ ├── mat_gKeyringKeysTreasureChestGameDL_f3dlite_KeyMetal_TreasureChestGame │ │ │ ├── mat_gKeyringKeysWaterTempleDL_f3dlite_KeyMetal_WaterTemple │ │ │ ├── mat_gKeyringKeysWaterTempleMQDL_f3dlite_KeyMetal_WaterTemple │ │ │ ├── mat_gKeyringRingDL_f3dlite_KeyRingMetal │ │ │ └── model.xml │ │ ├── object_kibako │ │ │ ├── bosskey_crate_top │ │ │ ├── gSmallBossKeyCrateDL │ │ │ ├── gSmallBossKeyCrateDL_tri_0 │ │ │ ├── gSmallBossKeyCrateDL_vtx_0 │ │ │ ├── gSmallBossKeyCrateDL_vtx_cull │ │ │ ├── gSmallHeartCrateDL │ │ │ ├── gSmallHeartCrateDL_tri_0 │ │ │ ├── gSmallHeartCrateDL_vtx_0 │ │ │ ├── gSmallHeartCrateDL_vtx_cull │ │ │ ├── gSmallJunkCrateDL │ │ │ ├── gSmallJunkCrateDL_tri_0 │ │ │ ├── gSmallJunkCrateDL_vtx_0 │ │ │ ├── gSmallJunkCrateDL_vtx_cull │ │ │ ├── gSmallMajorCrateDL │ │ │ ├── gSmallMajorCrateDL_tri_0 │ │ │ ├── gSmallMajorCrateDL_vtx_0 │ │ │ ├── gSmallMajorCrateDL_vtx_cull │ │ │ ├── gSmallMinorCrateDL │ │ │ ├── gSmallMinorCrateDL_tri_0 │ │ │ ├── gSmallMinorCrateDL_vtx_0 │ │ │ ├── gSmallMinorCrateDL_vtx_cull │ │ │ ├── gSmallRandoCrateDL │ │ │ ├── gSmallRandoCrateDL_tri_0 │ │ │ ├── gSmallRandoCrateDL_vtx_0 │ │ │ ├── gSmallRandoCrateDL_vtx_cull │ │ │ ├── gSmallSmallKeyCrateDL │ │ │ ├── gSmallSmallKeyCrateDL_tri_0 │ │ │ ├── gSmallSmallKeyCrateDL_vtx_0 │ │ │ ├── gSmallSmallKeyCrateDL_vtx_cull │ │ │ ├── gSmallTokenCrateDL │ │ │ ├── gSmallTokenCrateDL_tri_0 │ │ │ ├── gSmallTokenCrateDL_vtx_0 │ │ │ ├── gSmallTokenCrateDL_vtx_cull │ │ │ ├── heart_crate_top │ │ │ ├── junk_crate_top │ │ │ ├── major_crate_top │ │ │ ├── mat_gSmallBossKeyCrateDL_f3dlite_smallcrate_bosskey │ │ │ ├── mat_gSmallHeartCrateDL_f3dlite_smallcrate_heart │ │ │ ├── mat_gSmallJunkCrateDL_f3dlite_smallcrate_junk │ │ │ ├── mat_gSmallMajorCrateDL_f3dlite_smallcrate_major │ │ │ ├── mat_gSmallMinorCrateDL_f3dlite_smallcrate_minor │ │ │ ├── mat_gSmallRandoCrateDL_f3dlite_smallcrate_rando │ │ │ ├── mat_gSmallSmallKeyCrateDL_f3dlite_smallcrate_smallkey │ │ │ ├── mat_gSmallTokenCrateDL_f3dlite_smallcrate_token │ │ │ ├── minor_crate_top │ │ │ ├── rando_crate_top │ │ │ ├── smallkey_crate_top │ │ │ └── token_crate_top │ │ ├── object_kibako2 │ │ │ ├── bosskey_crate_side │ │ │ ├── bosskey_crate_top │ │ │ ├── gLargeBossKeyCrateDL │ │ │ ├── gLargeBossKeyCrateDL_tri_0 │ │ │ ├── gLargeBossKeyCrateDL_tri_1 │ │ │ ├── gLargeBossKeyCrateDL_vtx_0 │ │ │ ├── gLargeBossKeyCrateDL_vtx_1 │ │ │ ├── gLargeBossKeyCrateDL_vtx_cull │ │ │ ├── gLargeHeartCrateDL │ │ │ ├── gLargeHeartCrateDL_tri_0 │ │ │ ├── gLargeHeartCrateDL_tri_1 │ │ │ ├── gLargeHeartCrateDL_vtx_0 │ │ │ ├── gLargeHeartCrateDL_vtx_1 │ │ │ ├── gLargeHeartCrateDL_vtx_cull │ │ │ ├── gLargeJunkCrateDL │ │ │ ├── gLargeJunkCrateDL_tri_0 │ │ │ ├── gLargeJunkCrateDL_tri_1 │ │ │ ├── gLargeJunkCrateDL_vtx_0 │ │ │ ├── gLargeJunkCrateDL_vtx_1 │ │ │ ├── gLargeJunkCrateDL_vtx_cull │ │ │ ├── gLargeMajorCrateDL │ │ │ ├── gLargeMajorCrateDL_tri_0 │ │ │ ├── gLargeMajorCrateDL_tri_1 │ │ │ ├── gLargeMajorCrateDL_vtx_0 │ │ │ ├── gLargeMajorCrateDL_vtx_1 │ │ │ ├── gLargeMajorCrateDL_vtx_cull │ │ │ ├── gLargeMinorCrateDL │ │ │ ├── gLargeMinorCrateDL_tri_0 │ │ │ ├── gLargeMinorCrateDL_tri_1 │ │ │ ├── gLargeMinorCrateDL_vtx_0 │ │ │ ├── gLargeMinorCrateDL_vtx_1 │ │ │ ├── gLargeMinorCrateDL_vtx_cull │ │ │ ├── gLargeRandoCrateDL │ │ │ ├── gLargeRandoCrateDL_tri_0 │ │ │ ├── gLargeRandoCrateDL_tri_1 │ │ │ ├── gLargeRandoCrateDL_vtx_0 │ │ │ ├── gLargeRandoCrateDL_vtx_1 │ │ │ ├── gLargeRandoCrateDL_vtx_cull │ │ │ ├── gLargeSmallKeyCrateDL │ │ │ ├── gLargeSmallKeyCrateDL_tri_0 │ │ │ ├── gLargeSmallKeyCrateDL_tri_1 │ │ │ ├── gLargeSmallKeyCrateDL_vtx_0 │ │ │ ├── gLargeSmallKeyCrateDL_vtx_1 │ │ │ ├── gLargeSmallKeyCrateDL_vtx_cull │ │ │ ├── gLargeTokenCrateDL │ │ │ ├── gLargeTokenCrateDL_tri_0 │ │ │ ├── gLargeTokenCrateDL_tri_1 │ │ │ ├── gLargeTokenCrateDL_vtx_0 │ │ │ ├── gLargeTokenCrateDL_vtx_1 │ │ │ ├── gLargeTokenCrateDL_vtx_cull │ │ │ ├── heart_crate_side │ │ │ ├── heart_crate_top │ │ │ ├── junk_crate_side │ │ │ ├── junk_crate_top │ │ │ ├── major_crate_side │ │ │ ├── major_crate_top │ │ │ ├── mask_crate_side │ │ │ ├── mask_crate_top │ │ │ ├── mat_gLargeBossKeyCrateDL_f3dlite_crate_side_bosskey │ │ │ ├── mat_gLargeBossKeyCrateDL_f3dlite_crate_top_bosskey │ │ │ ├── mat_gLargeHeartCrateDL_f3dlite_crate_side_heart │ │ │ ├── mat_gLargeHeartCrateDL_f3dlite_crate_top_heart │ │ │ ├── mat_gLargeJunkCrateDL_f3dlite_crate_side_junk │ │ │ ├── mat_gLargeJunkCrateDL_f3dlite_crate_top_junk │ │ │ ├── mat_gLargeMajorCrateDL_f3dlite_crate_side_major │ │ │ ├── mat_gLargeMajorCrateDL_f3dlite_crate_top_major │ │ │ ├── mat_gLargeMinorCrateDL_f3dlite_crate_side_minor │ │ │ ├── mat_gLargeMinorCrateDL_f3dlite_crate_top_minor │ │ │ ├── mat_gLargeRandoCrateDL_f3dlite_crate_side_rando │ │ │ ├── mat_gLargeRandoCrateDL_f3dlite_crate_top_rando │ │ │ ├── mat_gLargeSmallKeyCrateDL_f3dlite_crate_side_smallkey │ │ │ ├── mat_gLargeSmallKeyCrateDL_f3dlite_crate_top_smallkey │ │ │ ├── mat_gLargeTokenCrateDL_f3dlite_crate_side_token │ │ │ ├── mat_gLargeTokenCrateDL_f3dlite_crate_top_token │ │ │ ├── minor_crate_side │ │ │ ├── minor_crate_top │ │ │ ├── rando_crate_side │ │ │ ├── rando_crate_top │ │ │ ├── smallkey_crate_side │ │ │ ├── smallkey_crate_top │ │ │ ├── token_crate_side │ │ │ └── token_crate_top │ │ ├── object_mag │ │ │ ├── gTitleBossRushSubtitleTex.rgba32.png │ │ │ └── gTitleRandomizerSubtitleTex.rgba32.png │ │ ├── object_mystery_item │ │ │ ├── gMysteryItemDL │ │ │ ├── gMysteryItemDL_tri_0 │ │ │ ├── gMysteryItemDL_tri_1 │ │ │ ├── gMysteryItemDL_vtx_0 │ │ │ ├── gMysteryItemDL_vtx_1 │ │ │ ├── gMysteryItemDL_vtx_cull │ │ │ ├── mat_gMysteryItemDL_f3dlite_mysteryItem_light_material │ │ │ ├── mat_gMysteryItemDL_f3dlite_mysteryItem_material │ │ │ └── noise_tex │ │ ├── object_ocarina_a_button │ │ │ ├── gOcarinaAButtonDL │ │ │ ├── gOcarinaAButtonDL_tri_0 │ │ │ ├── gOcarinaAButtonDL_tri_1 │ │ │ ├── gOcarinaAButtonDL_vtx_0 │ │ │ ├── gOcarinaAButtonDL_vtx_1 │ │ │ ├── gOcarinaAButtonDL_vtx_cull │ │ │ ├── mat_gOcarinaAButtonDL_f3dlite_ocarina_A_button_edge │ │ │ ├── mat_gOcarinaAButtonDL_f3dlite_ocarina_A_button_surface │ │ │ └── noise_tex │ │ ├── object_ocarina_c_down_button │ │ │ ├── gOcarinaCDownButtonDL │ │ │ ├── gOcarinaCDownButtonDL_tri_0 │ │ │ ├── gOcarinaCDownButtonDL_tri_1 │ │ │ ├── gOcarinaCDownButtonDL_vtx_0 │ │ │ ├── gOcarinaCDownButtonDL_vtx_1 │ │ │ ├── gOcarinaCDownButtonDL_vtx_cull │ │ │ ├── mat_gOcarinaCDownButtonDL_f3dlite_ocarina_C_button_edge │ │ │ ├── mat_gOcarinaCDownButtonDL_f3dlite_ocarina_C_button_surface │ │ │ └── noise_tex │ │ ├── object_ocarina_c_left_button │ │ │ ├── gOcarinaCLeftButtonDL │ │ │ ├── gOcarinaCLeftButtonDL_tri_0 │ │ │ ├── gOcarinaCLeftButtonDL_tri_1 │ │ │ ├── gOcarinaCLeftButtonDL_vtx_0 │ │ │ ├── gOcarinaCLeftButtonDL_vtx_1 │ │ │ ├── gOcarinaCLeftButtonDL_vtx_cull │ │ │ ├── mat_gOcarinaCLeftButtonDL_f3dlite_ocarina_C_button_edge │ │ │ ├── mat_gOcarinaCLeftButtonDL_f3dlite_ocarina_C_button_surface │ │ │ └── noise_tex │ │ ├── object_ocarina_c_right_button │ │ │ ├── gOcarinaCRightButtonDL │ │ │ ├── gOcarinaCRightButtonDL_tri_0 │ │ │ ├── gOcarinaCRightButtonDL_tri_1 │ │ │ ├── gOcarinaCRightButtonDL_vtx_0 │ │ │ ├── gOcarinaCRightButtonDL_vtx_1 │ │ │ ├── gOcarinaCRightButtonDL_vtx_cull │ │ │ ├── mat_gOcarinaCRightButtonDL_f3dlite_ocarina_C_button_edge │ │ │ ├── mat_gOcarinaCRightButtonDL_f3dlite_ocarina_C_button_surface │ │ │ └── noise_tex │ │ ├── object_ocarina_c_up_button │ │ │ ├── gOcarinaCUpButtonDL │ │ │ ├── gOcarinaCUpButtonDL_tri_0 │ │ │ ├── gOcarinaCUpButtonDL_tri_1 │ │ │ ├── gOcarinaCUpButtonDL_vtx_0 │ │ │ ├── gOcarinaCUpButtonDL_vtx_1 │ │ │ ├── gOcarinaCUpButtonDL_vtx_cull │ │ │ ├── mat_gOcarinaCUpButtonDL_f3dlite_ocarina_C_button_edge │ │ │ ├── mat_gOcarinaCUpButtonDL_f3dlite_ocarina_C_button_surface │ │ │ └── noise_tex │ │ ├── object_triforce_completed │ │ │ ├── gTriforcePieceCompletedDL │ │ │ ├── gTriforcePieceCompletedDL_tri_0 │ │ │ ├── gTriforcePieceCompletedDL_tri_1 │ │ │ ├── gTriforcePieceCompletedDL_vtx_0 │ │ │ ├── gTriforcePieceCompletedDL_vtx_1 │ │ │ ├── mat_gTriforcePieceCompletedDL_f3dlite_triforce_edges │ │ │ ├── mat_gTriforcePieceCompletedDL_f3dlite_triforce_surface │ │ │ └── noise_tex │ │ ├── object_triforce_piece_0 │ │ │ ├── gTriforcePiece0DL │ │ │ ├── gTriforcePiece0DL_tri_0 │ │ │ ├── gTriforcePiece0DL_tri_1 │ │ │ ├── gTriforcePiece0DL_tri_2 │ │ │ ├── gTriforcePiece0DL_vtx_0 │ │ │ ├── gTriforcePiece0DL_vtx_1 │ │ │ ├── gTriforcePiece0DL_vtx_2 │ │ │ ├── mat_gTriforcePiece0DL_f3dlite_shard_edge │ │ │ ├── mat_gTriforcePiece0DL_f3dlite_triforce_edges │ │ │ ├── mat_gTriforcePiece0DL_f3dlite_triforce_surface │ │ │ └── noise_tex │ │ ├── object_triforce_piece_1 │ │ │ ├── gTriforcePiece1DL │ │ │ ├── gTriforcePiece1DL_tri_0 │ │ │ ├── gTriforcePiece1DL_tri_1 │ │ │ ├── gTriforcePiece1DL_vtx_0 │ │ │ ├── gTriforcePiece1DL_vtx_1 │ │ │ ├── mat_gTriforcePiece1DL_f3dlite_shard_edge │ │ │ ├── mat_gTriforcePiece1DL_f3dlite_triforce_surface │ │ │ └── noise_tex │ │ └── object_triforce_piece_2 │ │ │ ├── gTriforcePiece2DL │ │ │ ├── gTriforcePiece2DL_tri_0 │ │ │ ├── gTriforcePiece2DL_tri_1 │ │ │ ├── gTriforcePiece2DL_tri_2 │ │ │ ├── gTriforcePiece2DL_vtx_0 │ │ │ ├── gTriforcePiece2DL_vtx_1 │ │ │ ├── gTriforcePiece2DL_vtx_2 │ │ │ ├── mat_gTriforcePiece2DL_f3dlite_shard_edge │ │ │ ├── mat_gTriforcePiece2DL_f3dlite_triforce_edges │ │ │ ├── mat_gTriforcePiece2DL_f3dlite_triforce_surface │ │ │ └── noise_tex │ ├── presets │ │ ├── Main Default.json │ │ ├── Main Enhanced.json │ │ ├── Main Randomizer.json │ │ ├── Main Vanilla+.json │ │ ├── Rando Advanced.json │ │ ├── Rando Beginner.json │ │ ├── Rando Default.json │ │ ├── Rando Hell Mode.json │ │ └── Rando Standard.json │ ├── scenes │ │ └── shared │ │ │ └── syotes_scene │ │ │ └── syotes_room_0 │ └── textures │ │ ├── buttons │ │ ├── ABtn.png │ │ ├── ABtnOutline.png │ │ ├── AnalogStick.png │ │ ├── AnalogStickOutline.png │ │ ├── BBtn.png │ │ ├── BBtnOutline.png │ │ ├── CDown.png │ │ ├── CDownOutline.png │ │ ├── CLeft.png │ │ ├── CLeftOutline.png │ │ ├── CRight.png │ │ ├── CRightOutline.png │ │ ├── CUp.png │ │ ├── CUpOutline.png │ │ ├── DPadDown.png │ │ ├── DPadDownOutline.png │ │ ├── DPadLeft.png │ │ ├── DPadLeftOutline.png │ │ ├── DPadRight.png │ │ ├── DPadRightOutline.png │ │ ├── DPadUp.png │ │ ├── DPadUpOutline.png │ │ ├── InputViewerBackground.png │ │ ├── LBtn.png │ │ ├── LBtnOutline.png │ │ ├── Mod1.png │ │ ├── Mod1Outline.png │ │ ├── Mod2.png │ │ ├── Mod2Outline.png │ │ ├── RBtn.png │ │ ├── RBtnOutline.png │ │ ├── RightStick.png │ │ ├── RightStickOutline.png │ │ ├── StartBtn.png │ │ ├── StartBtnOutline.png │ │ ├── ZBtn.png │ │ └── ZBtnOutline.png │ │ ├── icons │ │ └── gIcon.png │ │ ├── nintendo_rogo_static │ │ ├── SoHShiny │ │ ├── gShipLogoDL │ │ ├── gShipLogoDL_tri_0 │ │ ├── gShipLogoDL_tri_1 │ │ ├── gShipLogoDL_tri_2 │ │ ├── gShipLogoDL_tri_3 │ │ ├── gShipLogoDL_vtx_0 │ │ ├── gShipLogoDL_vtx_1 │ │ ├── gShipLogoDL_vtx_2 │ │ ├── gShipLogoDL_vtx_3 │ │ ├── mat_gShipLogoDL_f3d_material │ │ ├── mat_gShipLogoDL_f3d_material_001 │ │ ├── mat_gShipLogoDL_f3d_material_002 │ │ ├── mat_gShipLogoDL_f3d_material_003 │ │ ├── mat_revert_gShipLogoDL_f3d_material │ │ ├── mat_revert_gShipLogoDL_f3d_material_001 │ │ ├── mat_revert_gShipLogoDL_f3d_material_002 │ │ ├── mat_revert_gShipLogoDL_f3d_material_003 │ │ └── nintendo_rogo_static_Tex_LUS_000000 │ │ ├── parameter_static │ │ ├── gArrowDown.ia16.png │ │ ├── gArrowUp.ia16.png │ │ ├── gBossSoul.rgba32.png │ │ ├── gDPad.ia16.png │ │ ├── gMoon.rgba32.png │ │ ├── gNavi.rgba32.png │ │ ├── gSplitEntrance.rgba32.png │ │ ├── gSun.rgba32.png │ │ ├── gTriforcePiece.rgba32.png │ │ └── gWTriforcePiece.rgba32.png │ │ ├── title_static │ │ ├── gFileSelBossRushSettingsENGTex.ia8.png │ │ ├── gFileSelBossRushSettingsFRATex.ia8.png │ │ ├── gFileSelBossRushSettingsGERTex.ia8.png │ │ ├── gFileSelBossRushSettingsJPNTex.ia8.png │ │ ├── gFileSelMQButtonTex.ia16.png │ │ ├── gFileSelPleaseChooseAQuestENGTex.ia8.png │ │ ├── gFileSelPleaseChooseAQuestFRATex.ia8.png │ │ ├── gFileSelPleaseChooseAQuestGERTex.ia8.png │ │ ├── gFileSelPleaseChooseAQuestJPNTex.ia8.png │ │ └── gFileSelRANDButtonTex.ia16.png │ │ └── virtual │ │ └── gEmptyTexture.rgba32.png ├── extractor │ ├── Config_GC_MQ_D.xml │ ├── Config_GC_MQ_NTSC_J.xml │ ├── Config_GC_MQ_NTSC_U.xml │ ├── Config_GC_MQ_PAL_F.xml │ ├── Config_GC_NMQ_D.xml │ ├── Config_GC_NMQ_NTSC_J.xml │ ├── Config_GC_NMQ_NTSC_J_CE.xml │ ├── Config_GC_NMQ_NTSC_U.xml │ ├── Config_GC_NMQ_PAL_F.xml │ ├── Config_N64_NTSC_10.xml │ ├── Config_N64_NTSC_11.xml │ ├── Config_N64_NTSC_12.xml │ ├── Config_N64_PAL_10.xml │ ├── Config_N64_PAL_11.xml │ ├── TexturePool.xml │ ├── filelists │ │ ├── dbg.txt │ │ ├── gamecube.txt │ │ ├── gamecube_pal.txt │ │ ├── ntsc_12_oot.txt │ │ ├── ntsc_oot.txt │ │ └── pal_oot.txt │ └── symbols │ │ ├── ActorList_OoTMqDbg.txt │ │ ├── ObjectList_OoTMqDbg.txt │ │ └── SymbolMap_OoTMqDbg.txt ├── misc │ └── link_animetion │ │ └── link_animetion.h ├── objects │ ├── gameplay_dangeon_keep │ │ └── gameplay_dangeon_keep.h │ ├── gameplay_field_keep │ │ └── gameplay_field_keep.h │ ├── gameplay_keep │ │ └── gameplay_keep.h │ ├── object_Bb │ │ └── object_Bb.h │ ├── object_ahg │ │ └── object_ahg.h │ ├── object_am │ │ └── object_am.h │ ├── object_ane │ │ └── object_ane.h │ ├── object_ani │ │ └── object_ani.h │ ├── object_anubice │ │ └── object_anubice.h │ ├── object_aob │ │ └── object_aob.h │ ├── object_b_heart │ │ └── object_b_heart.h │ ├── object_bba │ │ └── object_bba.h │ ├── object_bdan_objects │ │ └── object_bdan_objects.h │ ├── object_bdoor │ │ └── object_bdoor.h │ ├── object_bg │ │ └── object_bg.h │ ├── object_bigokuta │ │ └── object_bigokuta.h │ ├── object_bird │ │ └── object_bird.h │ ├── object_bji │ │ └── object_bji.h │ ├── object_bl │ │ └── object_bl.h │ ├── object_blkobj │ │ └── object_blkobj.h │ ├── object_bob │ │ └── object_bob.h │ ├── object_boj │ │ └── object_boj.h │ ├── object_bombf │ │ └── object_bombf.h │ ├── object_bombiwa │ │ └── object_bombiwa.h │ ├── object_bowl │ │ └── object_bowl.h │ ├── object_box │ │ └── object_box.h │ ├── object_brob │ │ └── object_brob.h │ ├── object_bubble │ │ └── object_bubble.h │ ├── object_bv │ │ └── object_bv.h │ ├── object_bw │ │ └── object_bw.h │ ├── object_bwall │ │ └── object_bwall.h │ ├── object_bxa │ │ └── object_bxa.h │ ├── object_cne │ │ └── object_cne.h │ ├── object_cob │ │ └── object_cob.h │ ├── object_cow │ │ └── object_cow.h │ ├── object_crow │ │ └── object_crow.h │ ├── object_cs │ │ └── object_cs.h │ ├── object_d_elevator │ │ └── object_d_elevator.h │ ├── object_d_hsblock │ │ └── object_d_hsblock.h │ ├── object_d_lift │ │ └── object_d_lift.h │ ├── object_daiku │ │ └── object_daiku.h │ ├── object_ddan_objects │ │ └── object_ddan_objects.h │ ├── object_dekubaba │ │ └── object_dekubaba.h │ ├── object_dekujr │ │ └── object_dekujr.h │ ├── object_dekunuts │ │ └── object_dekunuts.h │ ├── object_demo_6k │ │ └── object_demo_6k.h │ ├── object_demo_kekkai │ │ └── object_demo_kekkai.h │ ├── object_demo_tre_lgt │ │ └── object_demo_tre_lgt.h │ ├── object_dh │ │ └── object_dh.h │ ├── object_dnk │ │ └── object_dnk.h │ ├── object_dns │ │ └── object_dns.h │ ├── object_dodojr │ │ └── object_dodojr.h │ ├── object_dodongo │ │ └── object_dodongo.h │ ├── object_dog │ │ └── object_dog.h │ ├── object_door_gerudo │ │ └── object_door_gerudo.h │ ├── object_door_killer │ │ └── object_door_killer.h │ ├── object_ds │ │ └── object_ds.h │ ├── object_ds2 │ │ └── object_ds2.h │ ├── object_du │ │ └── object_du.h │ ├── object_dy_obj │ │ └── object_dy_obj.h │ ├── object_ec │ │ └── object_ec.h │ ├── object_efc_crystal_light │ │ └── object_efc_crystal_light.h │ ├── object_efc_doughnut │ │ └── object_efc_doughnut.h │ ├── object_efc_erupc │ │ └── object_efc_erupc.h │ ├── object_efc_fire_ball │ │ └── object_efc_fire_ball.h │ ├── object_efc_flash │ │ └── object_efc_flash.h │ ├── object_efc_lgt_shower │ │ └── object_efc_lgt_shower.h │ ├── object_efc_star_field │ │ └── object_efc_star_field.h │ ├── object_efc_tw │ │ └── object_efc_tw.h │ ├── object_ei │ │ └── object_ei.h │ ├── object_fa │ │ └── object_fa.h │ ├── object_fd │ │ └── object_fd.h │ ├── object_fd2 │ │ └── object_fd2.h │ ├── object_fhg │ │ └── object_fhg.h │ ├── object_fire │ │ └── object_fire.h │ ├── object_firefly │ │ └── object_firefly.h │ ├── object_fish │ │ └── object_fish.h │ ├── object_fr │ │ └── object_fr.h │ ├── object_fu │ │ └── object_fu.h │ ├── object_fw │ │ └── object_fw.h │ ├── object_fz │ │ └── object_fz.h │ ├── object_ganon │ │ └── object_ganon.h │ ├── object_ganon2 │ │ └── object_ganon2.h │ ├── object_ganon_anime1 │ │ └── object_ganon_anime1.h │ ├── object_ganon_anime2 │ │ └── object_ganon_anime2.h │ ├── object_ganon_anime3 │ │ └── object_ganon_anime3.h │ ├── object_ganon_objects │ │ └── object_ganon_objects.h │ ├── object_ge1 │ │ └── object_ge1.h │ ├── object_geff │ │ └── object_geff.h │ ├── object_geldb │ │ └── object_geldb.h │ ├── object_gi_arrow │ │ └── object_gi_arrow.h │ ├── object_gi_arrowcase │ │ └── object_gi_arrowcase.h │ ├── object_gi_bean │ │ └── object_gi_bean.h │ ├── object_gi_bomb_1 │ │ └── object_gi_bomb_1.h │ ├── object_gi_bomb_2 │ │ └── object_gi_bomb_2.h │ ├── object_gi_bombpouch │ │ └── object_gi_bombpouch.h │ ├── object_gi_boomerang │ │ └── object_gi_boomerang.h │ ├── object_gi_boots_2 │ │ └── object_gi_boots_2.h │ ├── object_gi_bosskey │ │ └── object_gi_bosskey.h │ ├── object_gi_bottle │ │ └── object_gi_bottle.h │ ├── object_gi_bottle_letter │ │ └── object_gi_bottle_letter.h │ ├── object_gi_bow │ │ └── object_gi_bow.h │ ├── object_gi_bracelet │ │ └── object_gi_bracelet.h │ ├── object_gi_brokensword │ │ └── object_gi_brokensword.h │ ├── object_gi_butterfly │ │ └── object_gi_butterfly.h │ ├── object_gi_clothes │ │ └── object_gi_clothes.h │ ├── object_gi_coin │ │ └── object_gi_coin.h │ ├── object_gi_compass │ │ └── object_gi_compass.h │ ├── object_gi_dekupouch │ │ └── object_gi_dekupouch.h │ ├── object_gi_egg │ │ └── object_gi_egg.h │ ├── object_gi_eye_lotion │ │ └── object_gi_eye_lotion.h │ ├── object_gi_fire │ │ └── object_gi_fire.h │ ├── object_gi_fish │ │ └── object_gi_fish.h │ ├── object_gi_frog │ │ └── object_gi_frog.h │ ├── object_gi_gerudo │ │ └── object_gi_gerudo.h │ ├── object_gi_gerudomask │ │ └── object_gi_gerudomask.h │ ├── object_gi_ghost │ │ └── object_gi_ghost.h │ ├── object_gi_glasses │ │ └── object_gi_glasses.h │ ├── object_gi_gloves │ │ └── object_gi_gloves.h │ ├── object_gi_goddess │ │ └── object_gi_goddess.h │ ├── object_gi_golonmask │ │ └── object_gi_golonmask.h │ ├── object_gi_grass │ │ └── object_gi_grass.h │ ├── object_gi_hammer │ │ └── object_gi_hammer.h │ ├── object_gi_heart │ │ └── object_gi_heart.h │ ├── object_gi_hearts │ │ └── object_gi_hearts.h │ ├── object_gi_hookshot │ │ └── object_gi_hookshot.h │ ├── object_gi_hoverboots │ │ └── object_gi_hoverboots.h │ ├── object_gi_insect │ │ └── object_gi_insect.h │ ├── object_gi_jewel │ │ └── object_gi_jewel.h │ ├── object_gi_key │ │ └── object_gi_key.h │ ├── object_gi_ki_tan_mask │ │ └── object_gi_ki_tan_mask.h │ ├── object_gi_letter │ │ └── object_gi_letter.h │ ├── object_gi_liquid │ │ └── object_gi_liquid.h │ ├── object_gi_longsword │ │ └── object_gi_longsword.h │ ├── object_gi_m_arrow │ │ └── object_gi_m_arrow.h │ ├── object_gi_magicpot │ │ └── object_gi_magicpot.h │ ├── object_gi_map │ │ └── object_gi_map.h │ ├── object_gi_medal │ │ └── object_gi_medal.h │ ├── object_gi_melody │ │ └── object_gi_melody.h │ ├── object_gi_milk │ │ └── object_gi_milk.h │ ├── object_gi_mushroom │ │ └── object_gi_mushroom.h │ ├── object_gi_niwatori │ │ └── object_gi_niwatori.h │ ├── object_gi_nuts │ │ └── object_gi_nuts.h │ ├── object_gi_ocarina │ │ └── object_gi_ocarina.h │ ├── object_gi_ocarina_0 │ │ └── object_gi_ocarina_0.h │ ├── object_gi_pachinko │ │ └── object_gi_pachinko.h │ ├── object_gi_powder │ │ └── object_gi_powder.h │ ├── object_gi_prescription │ │ └── object_gi_prescription.h │ ├── object_gi_purse │ │ └── object_gi_purse.h │ ├── object_gi_rabit_mask │ │ └── object_gi_rabit_mask.h │ ├── object_gi_redead_mask │ │ └── object_gi_redead_mask.h │ ├── object_gi_rupy │ │ └── object_gi_rupy.h │ ├── object_gi_saw │ │ └── object_gi_saw.h │ ├── object_gi_scale │ │ └── object_gi_scale.h │ ├── object_gi_seed │ │ └── object_gi_seed.h │ ├── object_gi_shield_1 │ │ └── object_gi_shield_1.h │ ├── object_gi_shield_2 │ │ └── object_gi_shield_2.h │ ├── object_gi_shield_3 │ │ └── object_gi_shield_3.h │ ├── object_gi_skj_mask │ │ └── object_gi_skj_mask.h │ ├── object_gi_soldout │ │ └── object_gi_soldout.h │ ├── object_gi_soul │ │ └── object_gi_soul.h │ ├── object_gi_stick │ │ └── object_gi_stick.h │ ├── object_gi_sutaru │ │ └── object_gi_sutaru.h │ ├── object_gi_sword_1 │ │ └── object_gi_sword_1.h │ ├── object_gi_ticketstone │ │ └── object_gi_ticketstone.h │ ├── object_gi_truth_mask │ │ └── object_gi_truth_mask.h │ ├── object_gi_zoramask │ │ └── object_gi_zoramask.h │ ├── object_gj │ │ └── object_gj.h │ ├── object_gjyo_objects │ │ └── object_gjyo_objects.h │ ├── object_gla │ │ └── object_gla.h │ ├── object_gm │ │ └── object_gm.h │ ├── object_gnd │ │ └── object_gnd.h │ ├── object_gnd_magic │ │ └── object_gnd_magic.h │ ├── object_gndd │ │ └── object_gndd.h │ ├── object_god_lgt │ │ └── object_god_lgt.h │ ├── object_gol │ │ └── object_gol.h │ ├── object_goma │ │ └── object_goma.h │ ├── object_goroiwa │ │ └── object_goroiwa.h │ ├── object_gr │ │ └── object_gr.h │ ├── object_gs │ │ └── object_gs.h │ ├── object_gt │ │ └── object_gt.h │ ├── object_haka │ │ └── object_haka.h │ ├── object_haka_door │ │ └── object_haka_door.h │ ├── object_haka_objects │ │ └── object_haka_objects.h │ ├── object_hakach_objects │ │ └── object_hakach_objects.h │ ├── object_hata │ │ └── object_hata.h │ ├── object_heavy_object │ │ └── object_heavy_object.h │ ├── object_hidan_objects │ │ └── object_hidan_objects.h │ ├── object_hintnuts │ │ └── object_hintnuts.h │ ├── object_hni │ │ └── object_hni.h │ ├── object_horse │ │ └── object_horse.h │ ├── object_horse_ganon │ │ └── object_horse_ganon.h │ ├── object_horse_link_child │ │ └── object_horse_link_child.h │ ├── object_horse_normal │ │ └── object_horse_normal.h │ ├── object_horse_zelda │ │ └── object_horse_zelda.h │ ├── object_hs │ │ └── object_hs.h │ ├── object_human │ │ └── object_human.h │ ├── object_ice_objects │ │ └── object_ice_objects.h │ ├── object_ik │ │ └── object_ik.h │ ├── object_im │ │ └── object_im.h │ ├── object_in │ │ └── object_in.h │ ├── object_ingate │ │ └── object_ingate.h │ ├── object_jj │ │ └── object_jj.h │ ├── object_js │ │ └── object_js.h │ ├── object_jya_door │ │ └── object_jya_door.h │ ├── object_jya_iron │ │ └── object_jya_iron.h │ ├── object_jya_obj │ │ └── object_jya_obj.h │ ├── object_ka │ │ └── object_ka.h │ ├── object_kanban │ │ └── object_kanban.h │ ├── object_kibako2 │ │ └── object_kibako2.h │ ├── object_kingdodongo │ │ └── object_kingdodongo.h │ ├── object_km1 │ │ └── object_km1.h │ ├── object_kusa │ │ └── object_kusa.h │ ├── object_kw1 │ │ └── object_kw1.h │ ├── object_kz │ │ └── object_kz.h │ ├── object_light_ring │ │ └── object_light_ring.h │ ├── object_lightbox │ │ └── object_lightbox.h │ ├── object_lightswitch │ │ └── object_lightswitch.h │ ├── object_link_boy │ │ └── object_link_boy.h │ ├── object_link_child │ │ └── object_link_child.h │ ├── object_ma1 │ │ └── object_ma1.h │ ├── object_ma2 │ │ └── object_ma2.h │ ├── object_mag │ │ └── object_mag.h │ ├── object_mamenoki │ │ └── object_mamenoki.h │ ├── object_mastergolon │ │ └── object_mastergolon.h │ ├── object_masterkokiri │ │ └── object_masterkokiri.h │ ├── object_masterkokirihead │ │ └── object_masterkokirihead.h │ ├── object_masterzoora │ │ └── object_masterzoora.h │ ├── object_mb │ │ └── object_mb.h │ ├── object_md │ │ └── object_md.h │ ├── object_medal │ │ └── object_medal.h │ ├── object_menkuri_objects │ │ └── object_menkuri_objects.h │ ├── object_mir_ray │ │ └── object_mir_ray.h │ ├── object_mizu_objects │ │ └── object_mizu_objects.h │ ├── object_mjin │ │ └── object_mjin.h │ ├── object_mjin_dark │ │ └── object_mjin_dark.h │ ├── object_mjin_flame │ │ └── object_mjin_flame.h │ ├── object_mjin_flash │ │ └── object_mjin_flash.h │ ├── object_mjin_ice │ │ └── object_mjin_ice.h │ ├── object_mjin_oka │ │ └── object_mjin_oka.h │ ├── object_mjin_soul │ │ └── object_mjin_soul.h │ ├── object_mjin_wind │ │ └── object_mjin_wind.h │ ├── object_mk │ │ └── object_mk.h │ ├── object_mm │ │ └── object_mm.h │ ├── object_mo │ │ └── object_mo.h │ ├── object_mori_hineri1 │ │ └── object_mori_hineri1.h │ ├── object_mori_hineri1a │ │ └── object_mori_hineri1a.h │ ├── object_mori_hineri2 │ │ └── object_mori_hineri2.h │ ├── object_mori_hineri2a │ │ └── object_mori_hineri2a.h │ ├── object_mori_objects │ │ └── object_mori_objects.h │ ├── object_mori_tex │ │ └── object_mori_tex.h │ ├── object_ms │ │ └── object_ms.h │ ├── object_mu │ │ └── object_mu.h │ ├── object_nb │ │ └── object_nb.h │ ├── object_niw │ │ └── object_niw.h │ ├── object_nwc │ │ └── object_nwc.h │ ├── object_ny │ │ └── object_ny.h │ ├── object_oA1 │ │ └── object_oA1.h │ ├── object_oA10 │ │ └── object_oA10.h │ ├── object_oA11 │ │ └── object_oA11.h │ ├── object_oA2 │ │ └── object_oA2.h │ ├── object_oA3 │ │ └── object_oA3.h │ ├── object_oA4 │ │ └── object_oA4.h │ ├── object_oA5 │ │ └── object_oA5.h │ ├── object_oA6 │ │ └── object_oA6.h │ ├── object_oA7 │ │ └── object_oA7.h │ ├── object_oA8 │ │ └── object_oA8.h │ ├── object_oA9 │ │ └── object_oA9.h │ ├── object_oB1 │ │ └── object_oB1.h │ ├── object_oB2 │ │ └── object_oB2.h │ ├── object_oB3 │ │ └── object_oB3.h │ ├── object_oB4 │ │ └── object_oB4.h │ ├── object_oE1 │ │ └── object_oE1.h │ ├── object_oE10 │ │ └── object_oE10.h │ ├── object_oE11 │ │ └── object_oE11.h │ ├── object_oE12 │ │ └── object_oE12.h │ ├── object_oE1s │ │ └── object_oE1s.h │ ├── object_oE2 │ │ └── object_oE2.h │ ├── object_oE3 │ │ └── object_oE3.h │ ├── object_oE4 │ │ └── object_oE4.h │ ├── object_oE4s │ │ └── object_oE4s.h │ ├── object_oE5 │ │ └── object_oE5.h │ ├── object_oE6 │ │ └── object_oE6.h │ ├── object_oE7 │ │ └── object_oE7.h │ ├── object_oE8 │ │ └── object_oE8.h │ ├── object_oE9 │ │ └── object_oE9.h │ ├── object_oE_anime │ │ └── object_oE_anime.h │ ├── object_oF1d_map │ │ └── object_oF1d_map.h │ ├── object_oF1s │ │ └── object_oF1s.h │ ├── object_o_anime │ │ └── object_o_anime.h │ ├── object_okuta │ │ └── object_okuta.h │ ├── object_opening_demo1 │ │ └── object_opening_demo1.h │ ├── object_os │ │ └── object_os.h │ ├── object_os_anime │ │ └── object_os_anime.h │ ├── object_ossan │ │ └── object_ossan.h │ ├── object_ouke_haka │ │ └── object_ouke_haka.h │ ├── object_owl │ │ └── object_owl.h │ ├── object_peehat │ │ └── object_peehat.h │ ├── object_po_composer │ │ └── object_po_composer.h │ ├── object_po_field │ │ └── object_po_field.h │ ├── object_po_sisters │ │ └── object_po_sisters.h │ ├── object_poh │ │ └── object_poh.h │ ├── object_ps │ │ └── object_ps.h │ ├── object_pu_box │ │ └── object_pu_box.h │ ├── object_rd │ │ └── object_rd.h │ ├── object_reeba │ │ └── object_reeba.h │ ├── object_relay_objects │ │ └── object_relay_objects.h │ ├── object_rl │ │ └── object_rl.h │ ├── object_rr │ │ └── object_rr.h │ ├── object_rs │ │ └── object_rs.h │ ├── object_ru1 │ │ └── object_ru1.h │ ├── object_ru2 │ │ └── object_ru2.h │ ├── object_sa │ │ └── object_sa.h │ ├── object_sb │ │ └── object_sb.h │ ├── object_sd │ │ └── object_sd.h │ ├── object_shop_dungen │ │ └── object_shop_dungen.h │ ├── object_shopnuts │ │ └── object_shopnuts.h │ ├── object_siofuki │ │ └── object_siofuki.h │ ├── object_sk2 │ │ └── object_sk2.h │ ├── object_skb │ │ └── object_skb.h │ ├── object_skj │ │ └── object_skj.h │ ├── object_spot00_break │ │ └── object_spot00_break.h │ ├── object_spot00_objects │ │ └── object_spot00_objects.h │ ├── object_spot01_matoya │ │ └── object_spot01_matoya.h │ ├── object_spot01_matoyab │ │ └── object_spot01_matoyab.h │ ├── object_spot01_objects │ │ └── object_spot01_objects.h │ ├── object_spot01_objects2 │ │ └── object_spot01_objects2.h │ ├── object_spot02_objects │ │ └── object_spot02_objects.h │ ├── object_spot03_object │ │ └── object_spot03_object.h │ ├── object_spot04_objects │ │ └── object_spot04_objects.h │ ├── object_spot05_objects │ │ └── object_spot05_objects.h │ ├── object_spot06_objects │ │ └── object_spot06_objects.h │ ├── object_spot07_object │ │ └── object_spot07_object.h │ ├── object_spot08_obj │ │ └── object_spot08_obj.h │ ├── object_spot09_obj │ │ └── object_spot09_obj.h │ ├── object_spot11_obj │ │ └── object_spot11_obj.h │ ├── object_spot12_obj │ │ └── object_spot12_obj.h │ ├── object_spot15_obj │ │ └── object_spot15_obj.h │ ├── object_spot16_obj │ │ └── object_spot16_obj.h │ ├── object_spot17_obj │ │ └── object_spot17_obj.h │ ├── object_spot18_obj │ │ └── object_spot18_obj.h │ ├── object_ssh │ │ └── object_ssh.h │ ├── object_sst │ │ └── object_sst.h │ ├── object_st │ │ └── object_st.h │ ├── object_stream │ │ └── object_stream.h │ ├── object_syokudai │ │ └── object_syokudai.h │ ├── object_ta │ │ └── object_ta.h │ ├── object_timeblock │ │ └── object_timeblock.h │ ├── object_tite │ │ └── object_tite.h │ ├── object_tk │ │ └── object_tk.h │ ├── object_toki_objects │ │ └── object_toki_objects.h │ ├── object_torch2 │ │ └── object_torch2.h │ ├── object_toryo │ │ └── object_toryo.h │ ├── object_tp │ │ └── object_tp.h │ ├── object_tr │ │ └── object_tr.h │ ├── object_trap │ │ └── object_trap.h │ ├── object_triforce_spot │ │ └── object_triforce_spot.h │ ├── object_ts │ │ └── object_ts.h │ ├── object_tsubo │ │ └── object_tsubo.h │ ├── object_tw │ │ └── object_tw.h │ ├── object_umajump │ │ └── object_umajump.h │ ├── object_vali │ │ └── object_vali.h │ ├── object_vase │ │ └── object_vase.h │ ├── object_vm │ │ └── object_vm.h │ ├── object_wallmaster │ │ └── object_wallmaster.h │ ├── object_warp1 │ │ └── object_warp1.h │ ├── object_warp2 │ │ └── object_warp2.h │ ├── object_wf │ │ └── object_wf.h │ ├── object_wood02 │ │ └── object_wood02.h │ ├── object_xc │ │ └── object_xc.h │ ├── object_yabusame_point │ │ └── object_yabusame_point.h │ ├── object_ydan_objects │ │ └── object_ydan_objects.h │ ├── object_yukabyun │ │ └── object_yukabyun.h │ ├── object_zf │ │ └── object_zf.h │ ├── object_zg │ │ └── object_zg.h │ ├── object_zl1 │ │ └── object_zl1.h │ ├── object_zl2 │ │ └── object_zl2.h │ ├── object_zl2_anime1 │ │ └── object_zl2_anime1.h │ ├── object_zl2_anime2 │ │ └── object_zl2_anime2.h │ ├── object_zl4 │ │ └── object_zl4.h │ └── object_zo │ │ └── object_zo.h ├── overlays │ ├── ovl_Arrow_Fire │ │ └── ovl_Arrow_Fire.h │ ├── ovl_Arrow_Ice │ │ └── ovl_Arrow_Ice.h │ ├── ovl_Arrow_Light │ │ └── ovl_Arrow_Light.h │ ├── ovl_Bg_Ganon_Otyuka │ │ └── ovl_Bg_Ganon_Otyuka.h │ ├── ovl_Bg_Jya_Cobra │ │ └── ovl_Bg_Jya_Cobra.h │ ├── ovl_Boss_Dodongo │ │ └── ovl_Boss_Dodongo.h │ ├── ovl_Boss_Ganon │ │ └── ovl_Boss_Ganon.h │ ├── ovl_Boss_Ganon2 │ │ └── ovl_Boss_Ganon2.h │ ├── ovl_Boss_Sst │ │ └── ovl_Boss_Sst.h │ ├── ovl_Demo_Shd │ │ └── ovl_Demo_Shd.h │ ├── ovl_Elf_Msg │ │ └── ovl_Elf_Msg.h │ ├── ovl_Elf_Msg2 │ │ └── ovl_Elf_Msg2.h │ ├── ovl_En_Bili │ │ └── ovl_En_Bili.h │ ├── ovl_En_Clear_Tag │ │ └── ovl_En_Clear_Tag.h │ ├── ovl_En_Ganon_Mant │ │ └── ovl_En_Ganon_Mant.h │ ├── ovl_En_Ganon_Organ │ │ └── ovl_En_Ganon_Organ.h │ ├── ovl_En_Holl │ │ └── ovl_En_Holl.h │ ├── ovl_En_Jsjutan │ │ └── ovl_En_Jsjutan.h │ ├── ovl_En_Kanban │ │ └── ovl_En_Kanban.h │ ├── ovl_En_Sda │ │ └── ovl_En_Sda.h │ ├── ovl_En_Ssh │ │ └── ovl_En_Ssh.h │ ├── ovl_En_St │ │ └── ovl_En_St.h │ ├── ovl_En_Sth │ │ └── ovl_En_Sth.h │ ├── ovl_End_Title │ │ └── ovl_End_Title.h │ ├── ovl_File_Choose │ │ └── ovl_file_choose.h │ ├── ovl_Magic_Dark │ │ └── ovl_Magic_Dark.h │ ├── ovl_Magic_Fire │ │ └── ovl_Magic_Fire.h │ ├── ovl_Magic_Wind │ │ └── ovl_Magic_Wind.h │ ├── ovl_Oceff_Spot │ │ └── ovl_Oceff_Spot.h │ ├── ovl_Oceff_Storm │ │ └── ovl_Oceff_Storm.h │ ├── ovl_Oceff_Wipe │ │ └── ovl_Oceff_Wipe.h │ ├── ovl_Oceff_Wipe2 │ │ └── ovl_Oceff_Wipe2.h │ ├── ovl_Oceff_Wipe3 │ │ └── ovl_Oceff_Wipe3.h │ └── ovl_Oceff_Wipe4 │ │ └── ovl_Oceff_Wipe4.h ├── scenes │ ├── dungeons │ │ ├── Bmori1 │ │ │ ├── Bmori1_room_0.h │ │ │ ├── Bmori1_room_1.h │ │ │ ├── Bmori1_room_10.h │ │ │ ├── Bmori1_room_11.h │ │ │ ├── Bmori1_room_12.h │ │ │ ├── Bmori1_room_13.h │ │ │ ├── Bmori1_room_14.h │ │ │ ├── Bmori1_room_15.h │ │ │ ├── Bmori1_room_16.h │ │ │ ├── Bmori1_room_17.h │ │ │ ├── Bmori1_room_18.h │ │ │ ├── Bmori1_room_19.h │ │ │ ├── Bmori1_room_2.h │ │ │ ├── Bmori1_room_20.h │ │ │ ├── Bmori1_room_21.h │ │ │ ├── Bmori1_room_22.h │ │ │ ├── Bmori1_room_3.h │ │ │ ├── Bmori1_room_4.h │ │ │ ├── Bmori1_room_5.h │ │ │ ├── Bmori1_room_6.h │ │ │ ├── Bmori1_room_7.h │ │ │ ├── Bmori1_room_8.h │ │ │ ├── Bmori1_room_9.h │ │ │ └── Bmori1_scene.h │ │ ├── FIRE_bs │ │ │ ├── FIRE_bs_room_0.h │ │ │ ├── FIRE_bs_room_1.h │ │ │ └── FIRE_bs_scene.h │ │ ├── HAKAdan │ │ │ ├── HAKAdan_room_0.h │ │ │ ├── HAKAdan_room_1.h │ │ │ ├── HAKAdan_room_10.h │ │ │ ├── HAKAdan_room_11.h │ │ │ ├── HAKAdan_room_12.h │ │ │ ├── HAKAdan_room_13.h │ │ │ ├── HAKAdan_room_14.h │ │ │ ├── HAKAdan_room_15.h │ │ │ ├── HAKAdan_room_16.h │ │ │ ├── HAKAdan_room_17.h │ │ │ ├── HAKAdan_room_18.h │ │ │ ├── HAKAdan_room_19.h │ │ │ ├── HAKAdan_room_2.h │ │ │ ├── HAKAdan_room_20.h │ │ │ ├── HAKAdan_room_21.h │ │ │ ├── HAKAdan_room_22.h │ │ │ ├── HAKAdan_room_3.h │ │ │ ├── HAKAdan_room_4.h │ │ │ ├── HAKAdan_room_5.h │ │ │ ├── HAKAdan_room_6.h │ │ │ ├── HAKAdan_room_7.h │ │ │ ├── HAKAdan_room_8.h │ │ │ ├── HAKAdan_room_9.h │ │ │ └── HAKAdan_scene.h │ │ ├── HAKAdanCH │ │ │ ├── HAKAdanCH_room_0.h │ │ │ ├── HAKAdanCH_room_1.h │ │ │ ├── HAKAdanCH_room_2.h │ │ │ ├── HAKAdanCH_room_3.h │ │ │ ├── HAKAdanCH_room_4.h │ │ │ ├── HAKAdanCH_room_5.h │ │ │ ├── HAKAdanCH_room_6.h │ │ │ └── HAKAdanCH_scene.h │ │ ├── HAKAdan_bs │ │ │ ├── HAKAdan_bs_room_0.h │ │ │ ├── HAKAdan_bs_room_1.h │ │ │ └── HAKAdan_bs_scene.h │ │ ├── HIDAN │ │ │ ├── HIDAN_room_0.h │ │ │ ├── HIDAN_room_1.h │ │ │ ├── HIDAN_room_10.h │ │ │ ├── HIDAN_room_11.h │ │ │ ├── HIDAN_room_12.h │ │ │ ├── HIDAN_room_13.h │ │ │ ├── HIDAN_room_14.h │ │ │ ├── HIDAN_room_15.h │ │ │ ├── HIDAN_room_16.h │ │ │ ├── HIDAN_room_17.h │ │ │ ├── HIDAN_room_18.h │ │ │ ├── HIDAN_room_19.h │ │ │ ├── HIDAN_room_2.h │ │ │ ├── HIDAN_room_20.h │ │ │ ├── HIDAN_room_21.h │ │ │ ├── HIDAN_room_22.h │ │ │ ├── HIDAN_room_23.h │ │ │ ├── HIDAN_room_24.h │ │ │ ├── HIDAN_room_25.h │ │ │ ├── HIDAN_room_26.h │ │ │ ├── HIDAN_room_3.h │ │ │ ├── HIDAN_room_4.h │ │ │ ├── HIDAN_room_5.h │ │ │ ├── HIDAN_room_6.h │ │ │ ├── HIDAN_room_7.h │ │ │ ├── HIDAN_room_8.h │ │ │ ├── HIDAN_room_9.h │ │ │ └── HIDAN_scene.h │ │ ├── MIZUsin │ │ │ ├── MIZUsin_room_0.h │ │ │ ├── MIZUsin_room_1.h │ │ │ ├── MIZUsin_room_10.h │ │ │ ├── MIZUsin_room_11.h │ │ │ ├── MIZUsin_room_12.h │ │ │ ├── MIZUsin_room_13.h │ │ │ ├── MIZUsin_room_14.h │ │ │ ├── MIZUsin_room_15.h │ │ │ ├── MIZUsin_room_16.h │ │ │ ├── MIZUsin_room_17.h │ │ │ ├── MIZUsin_room_18.h │ │ │ ├── MIZUsin_room_19.h │ │ │ ├── MIZUsin_room_2.h │ │ │ ├── MIZUsin_room_20.h │ │ │ ├── MIZUsin_room_21.h │ │ │ ├── MIZUsin_room_22.h │ │ │ ├── MIZUsin_room_3.h │ │ │ ├── MIZUsin_room_4.h │ │ │ ├── MIZUsin_room_5.h │ │ │ ├── MIZUsin_room_6.h │ │ │ ├── MIZUsin_room_7.h │ │ │ ├── MIZUsin_room_8.h │ │ │ ├── MIZUsin_room_9.h │ │ │ └── MIZUsin_scene.h │ │ ├── MIZUsin_bs │ │ │ ├── MIZUsin_bs_room_0.h │ │ │ ├── MIZUsin_bs_room_1.h │ │ │ └── MIZUsin_bs_scene.h │ │ ├── bdan │ │ │ ├── bdan_room_0.h │ │ │ ├── bdan_room_1.h │ │ │ ├── bdan_room_10.h │ │ │ ├── bdan_room_11.h │ │ │ ├── bdan_room_12.h │ │ │ ├── bdan_room_13.h │ │ │ ├── bdan_room_14.h │ │ │ ├── bdan_room_15.h │ │ │ ├── bdan_room_2.h │ │ │ ├── bdan_room_3.h │ │ │ ├── bdan_room_4.h │ │ │ ├── bdan_room_5.h │ │ │ ├── bdan_room_6.h │ │ │ ├── bdan_room_7.h │ │ │ ├── bdan_room_8.h │ │ │ ├── bdan_room_9.h │ │ │ └── bdan_scene.h │ │ ├── bdan_boss │ │ │ ├── bdan_boss_room_0.h │ │ │ ├── bdan_boss_room_1.h │ │ │ └── bdan_boss_scene.h │ │ ├── ddan │ │ │ ├── ddan_room_0.h │ │ │ ├── ddan_room_1.h │ │ │ ├── ddan_room_10.h │ │ │ ├── ddan_room_11.h │ │ │ ├── ddan_room_12.h │ │ │ ├── ddan_room_13.h │ │ │ ├── ddan_room_14.h │ │ │ ├── ddan_room_15.h │ │ │ ├── ddan_room_16.h │ │ │ ├── ddan_room_2.h │ │ │ ├── ddan_room_3.h │ │ │ ├── ddan_room_4.h │ │ │ ├── ddan_room_5.h │ │ │ ├── ddan_room_6.h │ │ │ ├── ddan_room_7.h │ │ │ ├── ddan_room_8.h │ │ │ ├── ddan_room_9.h │ │ │ └── ddan_scene.h │ │ ├── ddan_boss │ │ │ ├── ddan_boss_room_0.h │ │ │ ├── ddan_boss_room_1.h │ │ │ └── ddan_boss_scene.h │ │ ├── ganon │ │ │ ├── ganon_room_0.h │ │ │ ├── ganon_room_1.h │ │ │ ├── ganon_room_2.h │ │ │ ├── ganon_room_3.h │ │ │ ├── ganon_room_4.h │ │ │ ├── ganon_room_5.h │ │ │ ├── ganon_room_6.h │ │ │ ├── ganon_room_7.h │ │ │ ├── ganon_room_8.h │ │ │ ├── ganon_room_9.h │ │ │ └── ganon_scene.h │ │ ├── ganon_boss │ │ │ ├── ganon_boss_room_0.h │ │ │ └── ganon_boss_scene.h │ │ ├── ganon_demo │ │ │ ├── ganon_demo_room_0.h │ │ │ └── ganon_demo_scene.h │ │ ├── ganon_final │ │ │ ├── ganon_final_room_0.h │ │ │ └── ganon_final_scene.h │ │ ├── ganon_sonogo │ │ │ ├── ganon_sonogo_room_0.h │ │ │ ├── ganon_sonogo_room_1.h │ │ │ ├── ganon_sonogo_room_2.h │ │ │ ├── ganon_sonogo_room_3.h │ │ │ ├── ganon_sonogo_room_4.h │ │ │ └── ganon_sonogo_scene.h │ │ ├── ganon_tou │ │ │ ├── ganon_tou_room_0.h │ │ │ └── ganon_tou_scene.h │ │ ├── ganontika │ │ │ ├── ganontika_room_0.h │ │ │ ├── ganontika_room_1.h │ │ │ ├── ganontika_room_10.h │ │ │ ├── ganontika_room_11.h │ │ │ ├── ganontika_room_12.h │ │ │ ├── ganontika_room_13.h │ │ │ ├── ganontika_room_14.h │ │ │ ├── ganontika_room_15.h │ │ │ ├── ganontika_room_16.h │ │ │ ├── ganontika_room_17.h │ │ │ ├── ganontika_room_18.h │ │ │ ├── ganontika_room_19.h │ │ │ ├── ganontika_room_2.h │ │ │ ├── ganontika_room_3.h │ │ │ ├── ganontika_room_4.h │ │ │ ├── ganontika_room_5.h │ │ │ ├── ganontika_room_6.h │ │ │ ├── ganontika_room_7.h │ │ │ ├── ganontika_room_8.h │ │ │ ├── ganontika_room_9.h │ │ │ └── ganontika_scene.h │ │ ├── ganontikasonogo │ │ │ ├── ganontikasonogo_room_0.h │ │ │ ├── ganontikasonogo_room_1.h │ │ │ └── ganontikasonogo_scene.h │ │ ├── gerudoway │ │ │ ├── gerudoway_room_0.h │ │ │ ├── gerudoway_room_1.h │ │ │ ├── gerudoway_room_2.h │ │ │ ├── gerudoway_room_3.h │ │ │ ├── gerudoway_room_4.h │ │ │ ├── gerudoway_room_5.h │ │ │ └── gerudoway_scene.h │ │ ├── ice_doukutu │ │ │ ├── ice_doukutu_room_0.h │ │ │ ├── ice_doukutu_room_1.h │ │ │ ├── ice_doukutu_room_10.h │ │ │ ├── ice_doukutu_room_11.h │ │ │ ├── ice_doukutu_room_2.h │ │ │ ├── ice_doukutu_room_3.h │ │ │ ├── ice_doukutu_room_4.h │ │ │ ├── ice_doukutu_room_5.h │ │ │ ├── ice_doukutu_room_6.h │ │ │ ├── ice_doukutu_room_7.h │ │ │ ├── ice_doukutu_room_8.h │ │ │ ├── ice_doukutu_room_9.h │ │ │ └── ice_doukutu_scene.h │ │ ├── jyasinboss │ │ │ ├── jyasinboss_room_0.h │ │ │ ├── jyasinboss_room_1.h │ │ │ ├── jyasinboss_room_2.h │ │ │ ├── jyasinboss_room_3.h │ │ │ └── jyasinboss_scene.h │ │ ├── jyasinzou │ │ │ ├── jyasinzou_room_0.h │ │ │ ├── jyasinzou_room_1.h │ │ │ ├── jyasinzou_room_10.h │ │ │ ├── jyasinzou_room_11.h │ │ │ ├── jyasinzou_room_12.h │ │ │ ├── jyasinzou_room_13.h │ │ │ ├── jyasinzou_room_14.h │ │ │ ├── jyasinzou_room_15.h │ │ │ ├── jyasinzou_room_16.h │ │ │ ├── jyasinzou_room_17.h │ │ │ ├── jyasinzou_room_18.h │ │ │ ├── jyasinzou_room_19.h │ │ │ ├── jyasinzou_room_2.h │ │ │ ├── jyasinzou_room_20.h │ │ │ ├── jyasinzou_room_21.h │ │ │ ├── jyasinzou_room_22.h │ │ │ ├── jyasinzou_room_23.h │ │ │ ├── jyasinzou_room_24.h │ │ │ ├── jyasinzou_room_25.h │ │ │ ├── jyasinzou_room_26.h │ │ │ ├── jyasinzou_room_27.h │ │ │ ├── jyasinzou_room_28.h │ │ │ ├── jyasinzou_room_3.h │ │ │ ├── jyasinzou_room_4.h │ │ │ ├── jyasinzou_room_5.h │ │ │ ├── jyasinzou_room_6.h │ │ │ ├── jyasinzou_room_7.h │ │ │ ├── jyasinzou_room_8.h │ │ │ ├── jyasinzou_room_9.h │ │ │ └── jyasinzou_scene.h │ │ ├── men │ │ │ ├── men_room_0.h │ │ │ ├── men_room_1.h │ │ │ ├── men_room_10.h │ │ │ ├── men_room_2.h │ │ │ ├── men_room_3.h │ │ │ ├── men_room_4.h │ │ │ ├── men_room_5.h │ │ │ ├── men_room_6.h │ │ │ ├── men_room_7.h │ │ │ ├── men_room_8.h │ │ │ ├── men_room_9.h │ │ │ └── men_scene.h │ │ ├── moribossroom │ │ │ ├── moribossroom_room_0.h │ │ │ ├── moribossroom_room_1.h │ │ │ └── moribossroom_scene.h │ │ ├── ydan │ │ │ ├── ydan_room_0.h │ │ │ ├── ydan_room_1.h │ │ │ ├── ydan_room_10.h │ │ │ ├── ydan_room_11.h │ │ │ ├── ydan_room_2.h │ │ │ ├── ydan_room_3.h │ │ │ ├── ydan_room_4.h │ │ │ ├── ydan_room_5.h │ │ │ ├── ydan_room_6.h │ │ │ ├── ydan_room_7.h │ │ │ ├── ydan_room_8.h │ │ │ ├── ydan_room_9.h │ │ │ └── ydan_scene.h │ │ └── ydan_boss │ │ │ ├── ydan_boss_room_0.h │ │ │ ├── ydan_boss_room_1.h │ │ │ └── ydan_boss_scene.h │ ├── indoors │ │ ├── bowling │ │ │ ├── bowling_room_0.h │ │ │ └── bowling_scene.h │ │ ├── daiyousei_izumi │ │ │ ├── daiyousei_izumi_room_0.h │ │ │ └── daiyousei_izumi_scene.h │ │ ├── hairal_niwa │ │ │ ├── hairal_niwa_room_0.h │ │ │ └── hairal_niwa_scene.h │ │ ├── hairal_niwa2 │ │ │ ├── hairal_niwa2_room_0.h │ │ │ └── hairal_niwa2_scene.h │ │ ├── hairal_niwa_n │ │ │ ├── hairal_niwa_n_room_0.h │ │ │ └── hairal_niwa_n_scene.h │ │ ├── hakasitarelay │ │ │ ├── hakasitarelay_room_0.h │ │ │ ├── hakasitarelay_room_1.h │ │ │ ├── hakasitarelay_room_2.h │ │ │ ├── hakasitarelay_room_3.h │ │ │ ├── hakasitarelay_room_4.h │ │ │ ├── hakasitarelay_room_5.h │ │ │ ├── hakasitarelay_room_6.h │ │ │ └── hakasitarelay_scene.h │ │ ├── hut │ │ │ ├── hut_room_0.h │ │ │ └── hut_scene.h │ │ ├── hylia_labo │ │ │ ├── hylia_labo_room_0.h │ │ │ └── hylia_labo_scene.h │ │ ├── impa │ │ │ ├── impa_room_0.h │ │ │ └── impa_scene.h │ │ ├── kakariko │ │ │ ├── kakariko_room_0.h │ │ │ └── kakariko_scene.h │ │ ├── kenjyanoma │ │ │ ├── kenjyanoma_room_0.h │ │ │ └── kenjyanoma_scene.h │ │ ├── kokiri_home │ │ │ ├── kokiri_home_room_0.h │ │ │ └── kokiri_home_scene.h │ │ ├── kokiri_home3 │ │ │ ├── kokiri_home3_room_0.h │ │ │ └── kokiri_home3_scene.h │ │ ├── kokiri_home4 │ │ │ ├── kokiri_home4_room_0.h │ │ │ └── kokiri_home4_scene.h │ │ ├── kokiri_home5 │ │ │ ├── kokiri_home5_room_0.h │ │ │ └── kokiri_home5_scene.h │ │ ├── labo │ │ │ ├── labo_room_0.h │ │ │ └── labo_scene.h │ │ ├── link_home │ │ │ ├── link_home_room_0.h │ │ │ └── link_home_scene.h │ │ ├── mahouya │ │ │ ├── mahouya_room_0.h │ │ │ └── mahouya_scene.h │ │ ├── malon_stable │ │ │ ├── malon_stable_room_0.h │ │ │ └── malon_stable_scene.h │ │ ├── miharigoya │ │ │ ├── miharigoya_room_0.h │ │ │ └── miharigoya_scene.h │ │ ├── nakaniwa │ │ │ ├── nakaniwa_room_0.h │ │ │ └── nakaniwa_scene.h │ │ ├── syatekijyou │ │ │ ├── syatekijyou_room_0.h │ │ │ └── syatekijyou_scene.h │ │ ├── takaraya │ │ │ ├── takaraya_room_0.h │ │ │ ├── takaraya_room_1.h │ │ │ ├── takaraya_room_2.h │ │ │ ├── takaraya_room_3.h │ │ │ ├── takaraya_room_4.h │ │ │ ├── takaraya_room_5.h │ │ │ ├── takaraya_room_6.h │ │ │ └── takaraya_scene.h │ │ ├── tent │ │ │ ├── tent_room_0.h │ │ │ └── tent_scene.h │ │ ├── tokinoma │ │ │ ├── tokinoma_room_0.h │ │ │ ├── tokinoma_room_1.h │ │ │ └── tokinoma_scene.h │ │ ├── yousei_izumi_tate │ │ │ ├── yousei_izumi_tate_room_0.h │ │ │ └── yousei_izumi_tate_scene.h │ │ └── yousei_izumi_yoko │ │ │ ├── yousei_izumi_yoko_room_0.h │ │ │ └── yousei_izumi_yoko_scene.h │ ├── misc │ │ ├── enrui │ │ │ ├── enrui_room_0.h │ │ │ └── enrui_scene.h │ │ ├── entra_n │ │ │ ├── entra_n_room_0.h │ │ │ └── entra_n_scene.h │ │ ├── hakaana │ │ │ ├── hakaana_room_0.h │ │ │ └── hakaana_scene.h │ │ ├── hakaana2 │ │ │ ├── hakaana2_room_0.h │ │ │ └── hakaana2_scene.h │ │ ├── hakaana_ouke │ │ │ ├── hakaana_ouke_room_0.h │ │ │ ├── hakaana_ouke_room_1.h │ │ │ ├── hakaana_ouke_room_2.h │ │ │ └── hakaana_ouke_scene.h │ │ ├── hiral_demo │ │ │ ├── hiral_demo_room_0.h │ │ │ └── hiral_demo_scene.h │ │ ├── kakariko3 │ │ │ ├── kakariko3_room_0.h │ │ │ └── kakariko3_scene.h │ │ ├── kakusiana │ │ │ ├── kakusiana_room_0.h │ │ │ ├── kakusiana_room_1.h │ │ │ ├── kakusiana_room_10.h │ │ │ ├── kakusiana_room_11.h │ │ │ ├── kakusiana_room_12.h │ │ │ ├── kakusiana_room_13.h │ │ │ ├── kakusiana_room_2.h │ │ │ ├── kakusiana_room_3.h │ │ │ ├── kakusiana_room_4.h │ │ │ ├── kakusiana_room_5.h │ │ │ ├── kakusiana_room_6.h │ │ │ ├── kakusiana_room_7.h │ │ │ ├── kakusiana_room_8.h │ │ │ ├── kakusiana_room_9.h │ │ │ └── kakusiana_scene.h │ │ ├── kinsuta │ │ │ ├── kinsuta_room_0.h │ │ │ └── kinsuta_scene.h │ │ ├── market_alley │ │ │ ├── market_alley_room_0.h │ │ │ └── market_alley_scene.h │ │ ├── market_alley_n │ │ │ ├── market_alley_n_room_0.h │ │ │ └── market_alley_n_scene.h │ │ ├── market_day │ │ │ ├── market_day_room_0.h │ │ │ └── market_day_scene.h │ │ ├── market_night │ │ │ ├── market_night_room_0.h │ │ │ └── market_night_scene.h │ │ ├── market_ruins │ │ │ ├── market_ruins_room_0.h │ │ │ └── market_ruins_scene.h │ │ ├── shrine │ │ │ ├── shrine_room_0.h │ │ │ └── shrine_scene.h │ │ ├── shrine_n │ │ │ ├── shrine_n_room_0.h │ │ │ └── shrine_n_scene.h │ │ ├── shrine_r │ │ │ ├── shrine_r_room_0.h │ │ │ └── shrine_r_scene.h │ │ └── turibori │ │ │ ├── turibori_room_0.h │ │ │ └── turibori_scene.h │ ├── overworld │ │ ├── entra │ │ │ ├── entra_room_0.h │ │ │ └── entra_scene.h │ │ ├── souko │ │ │ ├── souko_room_0.h │ │ │ ├── souko_room_1.h │ │ │ ├── souko_room_2.h │ │ │ └── souko_scene.h │ │ ├── spot00 │ │ │ ├── spot00_room_0.h │ │ │ └── spot00_scene.h │ │ ├── spot01 │ │ │ ├── spot01_room_0.h │ │ │ └── spot01_scene.h │ │ ├── spot02 │ │ │ ├── spot02_room_0.h │ │ │ ├── spot02_room_1.h │ │ │ └── spot02_scene.h │ │ ├── spot03 │ │ │ ├── spot03_room_0.h │ │ │ ├── spot03_room_1.h │ │ │ └── spot03_scene.h │ │ ├── spot04 │ │ │ ├── spot04_room_0.h │ │ │ ├── spot04_room_1.h │ │ │ ├── spot04_room_2.h │ │ │ └── spot04_scene.h │ │ ├── spot05 │ │ │ ├── spot05_room_0.h │ │ │ └── spot05_scene.h │ │ ├── spot06 │ │ │ ├── spot06_room_0.h │ │ │ └── spot06_scene.h │ │ ├── spot07 │ │ │ ├── spot07_room_0.h │ │ │ ├── spot07_room_1.h │ │ │ └── spot07_scene.h │ │ ├── spot08 │ │ │ ├── spot08_room_0.h │ │ │ └── spot08_scene.h │ │ ├── spot09 │ │ │ ├── spot09_room_0.h │ │ │ └── spot09_scene.h │ │ ├── spot10 │ │ │ ├── spot10_room_0.h │ │ │ ├── spot10_room_1.h │ │ │ ├── spot10_room_2.h │ │ │ ├── spot10_room_3.h │ │ │ ├── spot10_room_4.h │ │ │ ├── spot10_room_5.h │ │ │ ├── spot10_room_6.h │ │ │ ├── spot10_room_7.h │ │ │ ├── spot10_room_8.h │ │ │ ├── spot10_room_9.h │ │ │ └── spot10_scene.h │ │ ├── spot11 │ │ │ ├── spot11_room_0.h │ │ │ └── spot11_scene.h │ │ ├── spot12 │ │ │ ├── spot12_room_0.h │ │ │ ├── spot12_room_1.h │ │ │ └── spot12_scene.h │ │ ├── spot13 │ │ │ ├── spot13_room_0.h │ │ │ ├── spot13_room_1.h │ │ │ └── spot13_scene.h │ │ ├── spot15 │ │ │ ├── spot15_room_0.h │ │ │ └── spot15_scene.h │ │ ├── spot16 │ │ │ ├── spot16_room_0.h │ │ │ └── spot16_scene.h │ │ ├── spot17 │ │ │ ├── spot17_room_0.h │ │ │ ├── spot17_room_1.h │ │ │ └── spot17_scene.h │ │ ├── spot18 │ │ │ ├── spot18_room_0.h │ │ │ ├── spot18_room_1.h │ │ │ ├── spot18_room_2.h │ │ │ ├── spot18_room_3.h │ │ │ └── spot18_scene.h │ │ └── spot20 │ │ │ ├── spot20_room_0.h │ │ │ └── spot20_scene.h │ ├── shops │ │ ├── alley_shop │ │ │ ├── alley_shop_room_0.h │ │ │ └── alley_shop_scene.h │ │ ├── drag │ │ │ ├── drag_room_0.h │ │ │ └── drag_scene.h │ │ ├── face_shop │ │ │ ├── face_shop_room_0.h │ │ │ └── face_shop_scene.h │ │ ├── golon │ │ │ ├── golon_room_0.h │ │ │ └── golon_scene.h │ │ ├── kokiri_shop │ │ │ ├── kokiri_shop_room_0.h │ │ │ └── kokiri_shop_scene.h │ │ ├── night_shop │ │ │ ├── night_shop_room_0.h │ │ │ └── night_shop_scene.h │ │ ├── shop1 │ │ │ ├── shop1_room_0.h │ │ │ └── shop1_scene.h │ │ └── zoora │ │ │ ├── zoora_room_0.h │ │ │ └── zoora_scene.h │ └── test_levels │ │ ├── besitu │ │ ├── besitu_room_0.h │ │ └── besitu_scene.h │ │ ├── depth_test │ │ ├── depth_test_room_0.h │ │ └── depth_test_scene.h │ │ ├── sasatest │ │ ├── sasatest_room_0.h │ │ └── sasatest_scene.h │ │ ├── sutaru │ │ ├── sutaru_room_0.h │ │ └── sutaru_scene.h │ │ ├── syotes │ │ ├── syotes_room_0.h │ │ └── syotes_scene.h │ │ ├── syotes2 │ │ ├── syotes2_room_0.h │ │ └── syotes2_scene.h │ │ ├── test01 │ │ ├── test01_room_0.h │ │ └── test01_scene.h │ │ └── testroom │ │ ├── testroom_room_0.h │ │ ├── testroom_room_1.h │ │ ├── testroom_room_2.h │ │ ├── testroom_room_3.h │ │ ├── testroom_room_4.h │ │ └── testroom_scene.h ├── soh_assets.h ├── sources │ ├── potshuffle │ │ ├── MysteryPot.blend │ │ ├── PotBaseNoise_8.png │ │ └── PotFace_32.png │ └── triforce-hunt │ │ ├── paths.txt │ │ ├── textures │ │ └── noise_tex.png │ │ ├── triforce_complete.blend │ │ ├── triforce_shard_0.blend │ │ ├── triforce_shard_1.blend │ │ └── triforce_shard_2.blend ├── textures │ ├── backgrounds │ │ ├── vr_ALVR_pal_static.h │ │ ├── vr_ALVR_static.h │ │ ├── vr_DGVR_pal_static.h │ │ ├── vr_DGVR_static.h │ │ ├── vr_FCVR_pal_static.h │ │ ├── vr_FCVR_static.h │ │ ├── vr_GLVR_pal_static.h │ │ ├── vr_GLVR_static.h │ │ ├── vr_IPVR_pal_static.h │ │ ├── vr_IPVR_static.h │ │ ├── vr_K3VR_pal_static.h │ │ ├── vr_K3VR_static.h │ │ ├── vr_K4VR_pal_static.h │ │ ├── vr_K4VR_static.h │ │ ├── vr_K5VR_pal_static.h │ │ ├── vr_K5VR_static.h │ │ ├── vr_KHVR_pal_static.h │ │ ├── vr_KHVR_static.h │ │ ├── vr_KKRVR_pal_static.h │ │ ├── vr_KKRVR_static.h │ │ ├── vr_KR3VR_pal_static.h │ │ ├── vr_KR3VR_static.h │ │ ├── vr_KSVR_pal_static.h │ │ ├── vr_KSVR_static.h │ │ ├── vr_LBVR_pal_static.h │ │ ├── vr_LBVR_static.h │ │ ├── vr_LHVR_pal_static.h │ │ ├── vr_LHVR_static.h │ │ ├── vr_MDVR_pal_static.h │ │ ├── vr_MDVR_static.h │ │ ├── vr_MLVR_pal_static.h │ │ ├── vr_MLVR_static.h │ │ ├── vr_MNVR_pal_static.h │ │ ├── vr_MNVR_static.h │ │ ├── vr_NSVR_pal_static.h │ │ ├── vr_NSVR_static.h │ │ ├── vr_RUVR_pal_static.h │ │ ├── vr_RUVR_static.h │ │ ├── vr_SP1a_pal_static.h │ │ ├── vr_SP1a_static.h │ │ ├── vr_TTVR_pal_static.h │ │ ├── vr_TTVR_static.h │ │ ├── vr_ZRVR_pal_static.h │ │ └── vr_ZRVR_static.h │ ├── boss_title_cards │ │ ├── .gitempty │ │ ├── object_bv.h │ │ ├── object_fd.h │ │ ├── object_fhg.h │ │ ├── object_ganon.h │ │ ├── object_ganon2.h │ │ ├── object_goma.h │ │ ├── object_kingdodongo.h │ │ ├── object_mo.h │ │ ├── object_sst.h │ │ └── object_tw.h │ ├── do_action_static │ │ └── do_action_static.h │ ├── icon_item_24_static │ │ └── icon_item_24_static.h │ ├── icon_item_dungeon_static │ │ └── icon_item_dungeon_static.h │ ├── icon_item_field_static │ │ └── icon_item_field_static.h │ ├── icon_item_fra_static │ │ └── icon_item_fra_static.h │ ├── icon_item_gameover_static │ │ └── icon_item_gameover_static.h │ ├── icon_item_ger_static │ │ └── icon_item_ger_static.h │ ├── icon_item_jpn_static │ │ └── icon_item_jpn_static.h │ ├── icon_item_nes_static │ │ └── icon_item_nes_static.h │ ├── icon_item_static │ │ └── icon_item_static.h │ ├── item_name_static │ │ └── item_name_static.h │ ├── kanji │ │ └── kanji.h │ ├── map_48x85_static │ │ └── map_48x85_static.h │ ├── map_grand_static │ │ └── map_grand_static.h │ ├── map_i_static │ │ └── map_i_static.h │ ├── map_name_static │ │ └── map_name_static.h │ ├── message_static │ │ └── message_static.h │ ├── message_texture_static │ │ └── message_texture_static.h │ ├── nes_font_static │ │ └── nes_font_static.h │ ├── nintendo_rogo_static │ │ └── nintendo_rogo_static.h │ ├── parameter_static │ │ └── parameter_static.h │ ├── place_title_cards │ │ ├── g_pn_01.h │ │ ├── g_pn_02.h │ │ ├── g_pn_03.h │ │ ├── g_pn_04.h │ │ ├── g_pn_05.h │ │ ├── g_pn_06.h │ │ ├── g_pn_07.h │ │ ├── g_pn_08.h │ │ ├── g_pn_09.h │ │ ├── g_pn_10.h │ │ ├── g_pn_11.h │ │ ├── g_pn_12.h │ │ ├── g_pn_13.h │ │ ├── g_pn_14.h │ │ ├── g_pn_15.h │ │ ├── g_pn_16.h │ │ ├── g_pn_17.h │ │ ├── g_pn_18.h │ │ ├── g_pn_19.h │ │ ├── g_pn_20.h │ │ ├── g_pn_21.h │ │ ├── g_pn_22.h │ │ ├── g_pn_23.h │ │ ├── g_pn_24.h │ │ ├── g_pn_25.h │ │ ├── g_pn_26.h │ │ ├── g_pn_27.h │ │ ├── g_pn_28.h │ │ ├── g_pn_29.h │ │ ├── g_pn_30.h │ │ ├── g_pn_31.h │ │ ├── g_pn_32.h │ │ ├── g_pn_33.h │ │ ├── g_pn_34.h │ │ ├── g_pn_35.h │ │ ├── g_pn_36.h │ │ ├── g_pn_37.h │ │ ├── g_pn_38.h │ │ ├── g_pn_39.h │ │ ├── g_pn_40.h │ │ ├── g_pn_41.h │ │ ├── g_pn_42.h │ │ ├── g_pn_43.h │ │ ├── g_pn_44.h │ │ ├── g_pn_45.h │ │ ├── g_pn_46.h │ │ ├── g_pn_47.h │ │ ├── g_pn_48.h │ │ ├── g_pn_49.h │ │ ├── g_pn_50.h │ │ ├── g_pn_51.h │ │ ├── g_pn_52.h │ │ ├── g_pn_53.h │ │ ├── g_pn_54.h │ │ ├── g_pn_55.h │ │ ├── g_pn_56.h │ │ └── g_pn_57.h │ ├── skyboxes │ │ ├── vr_cloud0_pal_static.h │ │ ├── vr_cloud0_static.h │ │ ├── vr_cloud1_pal_static.h │ │ ├── vr_cloud1_static.h │ │ ├── vr_cloud2_pal_static.h │ │ ├── vr_cloud2_static.h │ │ ├── vr_cloud3_pal_static.h │ │ ├── vr_cloud3_static.h │ │ ├── vr_fine0_pal_static.h │ │ ├── vr_fine0_static.h │ │ ├── vr_fine1_pal_static.h │ │ ├── vr_fine1_static.h │ │ ├── vr_fine2_pal_static.h │ │ ├── vr_fine2_static.h │ │ ├── vr_fine3_pal_static.h │ │ ├── vr_fine3_static.h │ │ ├── vr_holy0_pal_static.h │ │ ├── vr_holy0_static.h │ │ ├── vr_holy1_pal_static.h │ │ └── vr_holy1_static.h │ └── title_static │ │ └── title_static.h └── xml │ ├── GC_MQ_D │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_Elf_Msg.xml │ │ ├── ovl_Elf_Msg2.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa2.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ ├── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ │ └── test_levels │ │ │ ├── besitu.xml │ │ │ ├── depth_test.xml │ │ │ ├── sasatest.xml │ │ │ ├── sutaru.xml │ │ │ ├── syotes.xml │ │ │ ├── syotes2.xml │ │ │ ├── test01.xml │ │ │ └── testroom.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_fra_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_ger_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── GC_MQ_NTSC_J │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_jpn_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── kanji.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── GC_MQ_NTSC_U │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_jpn_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── kanji.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── GC_MQ_PAL_F │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_fra_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_ger_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── GC_NMQ_D │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_Elf_Msg.xml │ │ ├── ovl_Elf_Msg2.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa2.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ ├── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ │ └── test_levels │ │ │ ├── besitu.xml │ │ │ ├── depth_test.xml │ │ │ ├── sasatest.xml │ │ │ ├── sutaru.xml │ │ │ ├── syotes.xml │ │ │ ├── syotes2.xml │ │ │ ├── test01.xml │ │ │ └── testroom.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_fra_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_ger_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── GC_NMQ_NTSC_J │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_jpn_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── kanji.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── GC_NMQ_NTSC_J_CE │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_jpn_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── kanji.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── GC_NMQ_NTSC_U │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_jpn_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── kanji.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── GC_NMQ_PAL_F │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_fra_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_ger_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── N64_NTSC_10 │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_jpn_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── kanji.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── N64_NTSC_11 │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_jpn_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── kanji.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── N64_NTSC_12 │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_jpn_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── kanji.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ ├── N64_PAL_10 │ ├── audio │ │ └── Audio.xml │ ├── code │ │ ├── fbdemo_circle.xml │ │ ├── fbdemo_triforce.xml │ │ ├── fbdemo_wipe1.xml │ │ └── sys_matrix.xml │ ├── misc │ │ └── link_animetion.xml │ ├── objects │ │ ├── gameplay_dangeon_keep.xml │ │ ├── gameplay_field_keep.xml │ │ ├── gameplay_keep.xml │ │ ├── object_Bb.xml │ │ ├── object_ahg.xml │ │ ├── object_am.xml │ │ ├── object_ane.xml │ │ ├── object_ani.xml │ │ ├── object_anubice.xml │ │ ├── object_aob.xml │ │ ├── object_b_heart.xml │ │ ├── object_bba.xml │ │ ├── object_bdan_objects.xml │ │ ├── object_bdoor.xml │ │ ├── object_bg.xml │ │ ├── object_bigokuta.xml │ │ ├── object_bird.xml │ │ ├── object_bji.xml │ │ ├── object_bl.xml │ │ ├── object_blkobj.xml │ │ ├── object_bob.xml │ │ ├── object_boj.xml │ │ ├── object_bombf.xml │ │ ├── object_bombiwa.xml │ │ ├── object_bowl.xml │ │ ├── object_box.xml │ │ ├── object_brob.xml │ │ ├── object_bubble.xml │ │ ├── object_bv.xml │ │ ├── object_bw.xml │ │ ├── object_bwall.xml │ │ ├── object_bxa.xml │ │ ├── object_cne.xml │ │ ├── object_cob.xml │ │ ├── object_cow.xml │ │ ├── object_crow.xml │ │ ├── object_cs.xml │ │ ├── object_d_elevator.xml │ │ ├── object_d_hsblock.xml │ │ ├── object_d_lift.xml │ │ ├── object_daiku.xml │ │ ├── object_ddan_objects.xml │ │ ├── object_dekubaba.xml │ │ ├── object_dekujr.xml │ │ ├── object_dekunuts.xml │ │ ├── object_demo_6k.xml │ │ ├── object_demo_kekkai.xml │ │ ├── object_demo_tre_lgt.xml │ │ ├── object_dh.xml │ │ ├── object_dnk.xml │ │ ├── object_dns.xml │ │ ├── object_dodojr.xml │ │ ├── object_dodongo.xml │ │ ├── object_dog.xml │ │ ├── object_door_gerudo.xml │ │ ├── object_door_killer.xml │ │ ├── object_ds.xml │ │ ├── object_ds2.xml │ │ ├── object_du.xml │ │ ├── object_dy_obj.xml │ │ ├── object_ec.xml │ │ ├── object_efc_crystal_light.xml │ │ ├── object_efc_doughnut.xml │ │ ├── object_efc_erupc.xml │ │ ├── object_efc_fire_ball.xml │ │ ├── object_efc_flash.xml │ │ ├── object_efc_lgt_shower.xml │ │ ├── object_efc_star_field.xml │ │ ├── object_efc_tw.xml │ │ ├── object_ei.xml │ │ ├── object_fa.xml │ │ ├── object_fd.xml │ │ ├── object_fd2.xml │ │ ├── object_fhg.xml │ │ ├── object_fire.xml │ │ ├── object_firefly.xml │ │ ├── object_fish.xml │ │ ├── object_fr.xml │ │ ├── object_fu.xml │ │ ├── object_fw.xml │ │ ├── object_fz.xml │ │ ├── object_ganon.xml │ │ ├── object_ganon2.xml │ │ ├── object_ganon_anime1.xml │ │ ├── object_ganon_anime2.xml │ │ ├── object_ganon_anime3.xml │ │ ├── object_ganon_objects.xml │ │ ├── object_ge1.xml │ │ ├── object_geff.xml │ │ ├── object_geldb.xml │ │ ├── object_gi_arrow.xml │ │ ├── object_gi_arrowcase.xml │ │ ├── object_gi_bean.xml │ │ ├── object_gi_bomb_1.xml │ │ ├── object_gi_bomb_2.xml │ │ ├── object_gi_bombpouch.xml │ │ ├── object_gi_boomerang.xml │ │ ├── object_gi_boots_2.xml │ │ ├── object_gi_bosskey.xml │ │ ├── object_gi_bottle.xml │ │ ├── object_gi_bottle_letter.xml │ │ ├── object_gi_bow.xml │ │ ├── object_gi_bracelet.xml │ │ ├── object_gi_brokensword.xml │ │ ├── object_gi_butterfly.xml │ │ ├── object_gi_clothes.xml │ │ ├── object_gi_coin.xml │ │ ├── object_gi_compass.xml │ │ ├── object_gi_dekupouch.xml │ │ ├── object_gi_egg.xml │ │ ├── object_gi_eye_lotion.xml │ │ ├── object_gi_fire.xml │ │ ├── object_gi_fish.xml │ │ ├── object_gi_frog.xml │ │ ├── object_gi_gerudo.xml │ │ ├── object_gi_gerudomask.xml │ │ ├── object_gi_ghost.xml │ │ ├── object_gi_glasses.xml │ │ ├── object_gi_gloves.xml │ │ ├── object_gi_goddess.xml │ │ ├── object_gi_golonmask.xml │ │ ├── object_gi_grass.xml │ │ ├── object_gi_hammer.xml │ │ ├── object_gi_heart.xml │ │ ├── object_gi_hearts.xml │ │ ├── object_gi_hookshot.xml │ │ ├── object_gi_hoverboots.xml │ │ ├── object_gi_insect.xml │ │ ├── object_gi_jewel.xml │ │ ├── object_gi_key.xml │ │ ├── object_gi_ki_tan_mask.xml │ │ ├── object_gi_letter.xml │ │ ├── object_gi_liquid.xml │ │ ├── object_gi_longsword.xml │ │ ├── object_gi_m_arrow.xml │ │ ├── object_gi_magicpot.xml │ │ ├── object_gi_map.xml │ │ ├── object_gi_medal.xml │ │ ├── object_gi_melody.xml │ │ ├── object_gi_milk.xml │ │ ├── object_gi_mushroom.xml │ │ ├── object_gi_niwatori.xml │ │ ├── object_gi_nuts.xml │ │ ├── object_gi_ocarina.xml │ │ ├── object_gi_ocarina_0.xml │ │ ├── object_gi_pachinko.xml │ │ ├── object_gi_powder.xml │ │ ├── object_gi_prescription.xml │ │ ├── object_gi_purse.xml │ │ ├── object_gi_rabit_mask.xml │ │ ├── object_gi_redead_mask.xml │ │ ├── object_gi_rupy.xml │ │ ├── object_gi_saw.xml │ │ ├── object_gi_scale.xml │ │ ├── object_gi_seed.xml │ │ ├── object_gi_shield_1.xml │ │ ├── object_gi_shield_2.xml │ │ ├── object_gi_shield_3.xml │ │ ├── object_gi_skj_mask.xml │ │ ├── object_gi_soldout.xml │ │ ├── object_gi_soul.xml │ │ ├── object_gi_stick.xml │ │ ├── object_gi_sutaru.xml │ │ ├── object_gi_sword_1.xml │ │ ├── object_gi_ticketstone.xml │ │ ├── object_gi_truth_mask.xml │ │ ├── object_gi_zoramask.xml │ │ ├── object_gj.xml │ │ ├── object_gjyo_objects.xml │ │ ├── object_gla.xml │ │ ├── object_gm.xml │ │ ├── object_gnd.xml │ │ ├── object_gnd_magic.xml │ │ ├── object_gndd.xml │ │ ├── object_god_lgt.xml │ │ ├── object_gol.xml │ │ ├── object_goma.xml │ │ ├── object_goroiwa.xml │ │ ├── object_gr.xml │ │ ├── object_gs.xml │ │ ├── object_gt.xml │ │ ├── object_haka.xml │ │ ├── object_haka_door.xml │ │ ├── object_haka_objects.xml │ │ ├── object_hakach_objects.xml │ │ ├── object_hata.xml │ │ ├── object_heavy_object.xml │ │ ├── object_hidan_objects.xml │ │ ├── object_hintnuts.xml │ │ ├── object_hni.xml │ │ ├── object_horse.xml │ │ ├── object_horse_ganon.xml │ │ ├── object_horse_link_child.xml │ │ ├── object_horse_normal.xml │ │ ├── object_horse_zelda.xml │ │ ├── object_hs.xml │ │ ├── object_human.xml │ │ ├── object_ice_objects.xml │ │ ├── object_ik.xml │ │ ├── object_im.xml │ │ ├── object_in.xml │ │ ├── object_ingate.xml │ │ ├── object_jj.xml │ │ ├── object_js.xml │ │ ├── object_jya_door.xml │ │ ├── object_jya_iron.xml │ │ ├── object_jya_obj.xml │ │ ├── object_ka.xml │ │ ├── object_kanban.xml │ │ ├── object_kibako2.xml │ │ ├── object_kingdodongo.xml │ │ ├── object_km1.xml │ │ ├── object_kusa.xml │ │ ├── object_kw1.xml │ │ ├── object_kz.xml │ │ ├── object_light_ring.xml │ │ ├── object_lightbox.xml │ │ ├── object_lightswitch.xml │ │ ├── object_link_boy.xml │ │ ├── object_link_child.xml │ │ ├── object_ma1.xml │ │ ├── object_ma2.xml │ │ ├── object_mag.xml │ │ ├── object_mamenoki.xml │ │ ├── object_mastergolon.xml │ │ ├── object_masterkokiri.xml │ │ ├── object_masterkokirihead.xml │ │ ├── object_masterzoora.xml │ │ ├── object_mb.xml │ │ ├── object_md.xml │ │ ├── object_medal.xml │ │ ├── object_menkuri_objects.xml │ │ ├── object_mir_ray.xml │ │ ├── object_mizu_objects.xml │ │ ├── object_mjin.xml │ │ ├── object_mjin_dark.xml │ │ ├── object_mjin_flame.xml │ │ ├── object_mjin_flash.xml │ │ ├── object_mjin_ice.xml │ │ ├── object_mjin_oka.xml │ │ ├── object_mjin_soul.xml │ │ ├── object_mjin_wind.xml │ │ ├── object_mk.xml │ │ ├── object_mm.xml │ │ ├── object_mo.xml │ │ ├── object_mori_hineri1.xml │ │ ├── object_mori_hineri1a.xml │ │ ├── object_mori_hineri2.xml │ │ ├── object_mori_hineri2a.xml │ │ ├── object_mori_objects.xml │ │ ├── object_mori_tex.xml │ │ ├── object_ms.xml │ │ ├── object_mu.xml │ │ ├── object_nb.xml │ │ ├── object_niw.xml │ │ ├── object_nwc.xml │ │ ├── object_ny.xml │ │ ├── object_oA1.xml │ │ ├── object_oA10.xml │ │ ├── object_oA11.xml │ │ ├── object_oA2.xml │ │ ├── object_oA3.xml │ │ ├── object_oA4.xml │ │ ├── object_oA5.xml │ │ ├── object_oA6.xml │ │ ├── object_oA7.xml │ │ ├── object_oA8.xml │ │ ├── object_oA9.xml │ │ ├── object_oB1.xml │ │ ├── object_oB2.xml │ │ ├── object_oB3.xml │ │ ├── object_oB4.xml │ │ ├── object_oE1.xml │ │ ├── object_oE10.xml │ │ ├── object_oE11.xml │ │ ├── object_oE12.xml │ │ ├── object_oE1s.xml │ │ ├── object_oE2.xml │ │ ├── object_oE3.xml │ │ ├── object_oE4.xml │ │ ├── object_oE4s.xml │ │ ├── object_oE5.xml │ │ ├── object_oE6.xml │ │ ├── object_oE7.xml │ │ ├── object_oE8.xml │ │ ├── object_oE9.xml │ │ ├── object_oE_anime.xml │ │ ├── object_oF1d_map.xml │ │ ├── object_oF1s.xml │ │ ├── object_o_anime.xml │ │ ├── object_okuta.xml │ │ ├── object_opening_demo1.xml │ │ ├── object_os.xml │ │ ├── object_os_anime.xml │ │ ├── object_ossan.xml │ │ ├── object_ouke_haka.xml │ │ ├── object_owl.xml │ │ ├── object_peehat.xml │ │ ├── object_po_composer.xml │ │ ├── object_po_field.xml │ │ ├── object_po_sisters.xml │ │ ├── object_poh.xml │ │ ├── object_ps.xml │ │ ├── object_pu_box.xml │ │ ├── object_rd.xml │ │ ├── object_reeba.xml │ │ ├── object_relay_objects.xml │ │ ├── object_rl.xml │ │ ├── object_rr.xml │ │ ├── object_rs.xml │ │ ├── object_ru1.xml │ │ ├── object_ru2.xml │ │ ├── object_sa.xml │ │ ├── object_sb.xml │ │ ├── object_sd.xml │ │ ├── object_shop_dungen.xml │ │ ├── object_shopnuts.xml │ │ ├── object_siofuki.xml │ │ ├── object_sk2.xml │ │ ├── object_skb.xml │ │ ├── object_skj.xml │ │ ├── object_spot00_break.xml │ │ ├── object_spot00_objects.xml │ │ ├── object_spot01_matoya.xml │ │ ├── object_spot01_matoyab.xml │ │ ├── object_spot01_objects.xml │ │ ├── object_spot01_objects2.xml │ │ ├── object_spot02_objects.xml │ │ ├── object_spot03_object.xml │ │ ├── object_spot04_objects.xml │ │ ├── object_spot05_objects.xml │ │ ├── object_spot06_objects.xml │ │ ├── object_spot07_object.xml │ │ ├── object_spot08_obj.xml │ │ ├── object_spot09_obj.xml │ │ ├── object_spot11_obj.xml │ │ ├── object_spot12_obj.xml │ │ ├── object_spot15_obj.xml │ │ ├── object_spot16_obj.xml │ │ ├── object_spot17_obj.xml │ │ ├── object_spot18_obj.xml │ │ ├── object_ssh.xml │ │ ├── object_sst.xml │ │ ├── object_st.xml │ │ ├── object_stream.xml │ │ ├── object_syokudai.xml │ │ ├── object_ta.xml │ │ ├── object_timeblock.xml │ │ ├── object_tite.xml │ │ ├── object_tk.xml │ │ ├── object_toki_objects.xml │ │ ├── object_torch2.xml │ │ ├── object_toryo.xml │ │ ├── object_tp.xml │ │ ├── object_tr.xml │ │ ├── object_trap.xml │ │ ├── object_triforce_spot.xml │ │ ├── object_ts.xml │ │ ├── object_tsubo.xml │ │ ├── object_tw.xml │ │ ├── object_umajump.xml │ │ ├── object_vali.xml │ │ ├── object_vase.xml │ │ ├── object_vm.xml │ │ ├── object_wallmaster.xml │ │ ├── object_warp1.xml │ │ ├── object_warp2.xml │ │ ├── object_wf.xml │ │ ├── object_wood02.xml │ │ ├── object_xc.xml │ │ ├── object_yabusame_point.xml │ │ ├── object_ydan_objects.xml │ │ ├── object_yukabyun.xml │ │ ├── object_zf.xml │ │ ├── object_zg.xml │ │ ├── object_zl1.xml │ │ ├── object_zl2.xml │ │ ├── object_zl2_anime1.xml │ │ ├── object_zl2_anime2.xml │ │ ├── object_zl4.xml │ │ └── object_zo.xml │ ├── overlays │ │ ├── ovl_Arrow_Fire.xml │ │ ├── ovl_Arrow_Ice.xml │ │ ├── ovl_Arrow_Light.xml │ │ ├── ovl_Bg_Ganon_Otyuka.xml │ │ ├── ovl_Bg_Jya_Cobra.xml │ │ ├── ovl_Boss_Dodongo.xml │ │ ├── ovl_Boss_Ganon.xml │ │ ├── ovl_Boss_Ganon2.xml │ │ ├── ovl_Boss_Sst.xml │ │ ├── ovl_Demo_Shd.xml │ │ ├── ovl_En_Bili.xml │ │ ├── ovl_En_Clear_Tag.xml │ │ ├── ovl_En_Ganon_Mant.xml │ │ ├── ovl_En_Ganon_Organ.xml │ │ ├── ovl_En_Holl.xml │ │ ├── ovl_En_Jsjutan.xml │ │ ├── ovl_En_Kanban.xml │ │ ├── ovl_En_Sda.xml │ │ ├── ovl_En_Ssh.xml │ │ ├── ovl_En_St.xml │ │ ├── ovl_En_Sth.xml │ │ ├── ovl_End_Title.xml │ │ ├── ovl_File_Choose.xml │ │ ├── ovl_Magic_Dark.xml │ │ ├── ovl_Magic_Fire.xml │ │ ├── ovl_Magic_Wind.xml │ │ ├── ovl_Oceff_Spot.xml │ │ ├── ovl_Oceff_Storm.xml │ │ ├── ovl_Oceff_Wipe.xml │ │ ├── ovl_Oceff_Wipe2.xml │ │ ├── ovl_Oceff_Wipe3.xml │ │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ │ ├── dungeons │ │ │ ├── Bmori1.xml │ │ │ ├── FIRE_bs.xml │ │ │ ├── HAKAdan.xml │ │ │ ├── HAKAdanCH.xml │ │ │ ├── HAKAdan_bs.xml │ │ │ ├── HIDAN.xml │ │ │ ├── MIZUsin.xml │ │ │ ├── MIZUsin_bs.xml │ │ │ ├── bdan.xml │ │ │ ├── bdan_boss.xml │ │ │ ├── ddan.xml │ │ │ ├── ddan_boss.xml │ │ │ ├── ganon.xml │ │ │ ├── ganon_boss.xml │ │ │ ├── ganon_demo.xml │ │ │ ├── ganon_final.xml │ │ │ ├── ganon_sonogo.xml │ │ │ ├── ganon_tou.xml │ │ │ ├── ganontika.xml │ │ │ ├── ganontikasonogo.xml │ │ │ ├── gerudoway.xml │ │ │ ├── ice_doukutu.xml │ │ │ ├── jyasinboss.xml │ │ │ ├── jyasinzou.xml │ │ │ ├── men.xml │ │ │ ├── moribossroom.xml │ │ │ ├── ydan.xml │ │ │ └── ydan_boss.xml │ │ ├── indoors │ │ │ ├── bowling.xml │ │ │ ├── daiyousei_izumi.xml │ │ │ ├── hairal_niwa.xml │ │ │ ├── hairal_niwa_n.xml │ │ │ ├── hakasitarelay.xml │ │ │ ├── hut.xml │ │ │ ├── hylia_labo.xml │ │ │ ├── impa.xml │ │ │ ├── kakariko.xml │ │ │ ├── kenjyanoma.xml │ │ │ ├── kokiri_home.xml │ │ │ ├── kokiri_home3.xml │ │ │ ├── kokiri_home4.xml │ │ │ ├── kokiri_home5.xml │ │ │ ├── labo.xml │ │ │ ├── link_home.xml │ │ │ ├── mahouya.xml │ │ │ ├── malon_stable.xml │ │ │ ├── miharigoya.xml │ │ │ ├── nakaniwa.xml │ │ │ ├── syatekijyou.xml │ │ │ ├── takaraya.xml │ │ │ ├── tent.xml │ │ │ ├── tokinoma.xml │ │ │ ├── yousei_izumi_tate.xml │ │ │ └── yousei_izumi_yoko.xml │ │ ├── misc │ │ │ ├── enrui.xml │ │ │ ├── entra_n.xml │ │ │ ├── hakaana.xml │ │ │ ├── hakaana2.xml │ │ │ ├── hakaana_ouke.xml │ │ │ ├── hiral_demo.xml │ │ │ ├── kakariko3.xml │ │ │ ├── kakusiana.xml │ │ │ ├── kinsuta.xml │ │ │ ├── market_alley.xml │ │ │ ├── market_alley_n.xml │ │ │ ├── market_day.xml │ │ │ ├── market_night.xml │ │ │ ├── market_ruins.xml │ │ │ ├── shrine.xml │ │ │ ├── shrine_n.xml │ │ │ ├── shrine_r.xml │ │ │ └── turibori.xml │ │ ├── overworld │ │ │ ├── entra.xml │ │ │ ├── souko.xml │ │ │ ├── spot00.xml │ │ │ ├── spot01.xml │ │ │ ├── spot02.xml │ │ │ ├── spot03.xml │ │ │ ├── spot04.xml │ │ │ ├── spot05.xml │ │ │ ├── spot06.xml │ │ │ ├── spot07.xml │ │ │ ├── spot08.xml │ │ │ ├── spot09.xml │ │ │ ├── spot10.xml │ │ │ ├── spot11.xml │ │ │ ├── spot12.xml │ │ │ ├── spot13.xml │ │ │ ├── spot15.xml │ │ │ ├── spot16.xml │ │ │ ├── spot17.xml │ │ │ ├── spot18.xml │ │ │ └── spot20.xml │ │ └── shops │ │ │ ├── alley_shop.xml │ │ │ ├── drag.xml │ │ │ ├── face_shop.xml │ │ │ ├── golon.xml │ │ │ ├── kokiri_shop.xml │ │ │ ├── night_shop.xml │ │ │ ├── shop1.xml │ │ │ └── zoora.xml │ ├── text │ │ ├── elf_message_field.xml │ │ ├── elf_message_ydan.xml │ │ └── message_data_static.xml │ └── textures │ │ ├── backgrounds.xml │ │ ├── boss_title_cards.xml │ │ ├── do_action_static.xml │ │ ├── icon_item_24_static.xml │ │ ├── icon_item_dungeon_static.xml │ │ ├── icon_item_field_static.xml │ │ ├── icon_item_fra_static.xml │ │ ├── icon_item_gameover_static.xml │ │ ├── icon_item_ger_static.xml │ │ ├── icon_item_nes_static.xml │ │ ├── icon_item_static.xml │ │ ├── item_name_static.xml │ │ ├── map_48x85_static.xml │ │ ├── map_grand_static.xml │ │ ├── map_i_static.xml │ │ ├── map_name_static.xml │ │ ├── message_static.xml │ │ ├── message_texture_static.xml │ │ ├── nes_font_static.xml │ │ ├── nintendo_rogo_static.xml │ │ ├── parameter_static.xml │ │ ├── place_title_cards.xml │ │ ├── skyboxes.xml │ │ └── title_static.xml │ └── N64_PAL_11 │ ├── audio │ └── Audio.xml │ ├── code │ ├── fbdemo_circle.xml │ ├── fbdemo_triforce.xml │ ├── fbdemo_wipe1.xml │ └── sys_matrix.xml │ ├── misc │ └── link_animetion.xml │ ├── objects │ ├── gameplay_dangeon_keep.xml │ ├── gameplay_field_keep.xml │ ├── gameplay_keep.xml │ ├── object_Bb.xml │ ├── object_ahg.xml │ ├── object_am.xml │ ├── object_ane.xml │ ├── object_ani.xml │ ├── object_anubice.xml │ ├── object_aob.xml │ ├── object_b_heart.xml │ ├── object_bba.xml │ ├── object_bdan_objects.xml │ ├── object_bdoor.xml │ ├── object_bg.xml │ ├── object_bigokuta.xml │ ├── object_bird.xml │ ├── object_bji.xml │ ├── object_bl.xml │ ├── object_blkobj.xml │ ├── object_bob.xml │ ├── object_boj.xml │ ├── object_bombf.xml │ ├── object_bombiwa.xml │ ├── object_bowl.xml │ ├── object_box.xml │ ├── object_brob.xml │ ├── object_bubble.xml │ ├── object_bv.xml │ ├── object_bw.xml │ ├── object_bwall.xml │ ├── object_bxa.xml │ ├── object_cne.xml │ ├── object_cob.xml │ ├── object_cow.xml │ ├── object_crow.xml │ ├── object_cs.xml │ ├── object_d_elevator.xml │ ├── object_d_hsblock.xml │ ├── object_d_lift.xml │ ├── object_daiku.xml │ ├── object_ddan_objects.xml │ ├── object_dekubaba.xml │ ├── object_dekujr.xml │ ├── object_dekunuts.xml │ ├── object_demo_6k.xml │ ├── object_demo_kekkai.xml │ ├── object_demo_tre_lgt.xml │ ├── object_dh.xml │ ├── object_dnk.xml │ ├── object_dns.xml │ ├── object_dodojr.xml │ ├── object_dodongo.xml │ ├── object_dog.xml │ ├── object_door_gerudo.xml │ ├── object_door_killer.xml │ ├── object_ds.xml │ ├── object_ds2.xml │ ├── object_du.xml │ ├── object_dy_obj.xml │ ├── object_ec.xml │ ├── object_efc_crystal_light.xml │ ├── object_efc_doughnut.xml │ ├── object_efc_erupc.xml │ ├── object_efc_fire_ball.xml │ ├── object_efc_flash.xml │ ├── object_efc_lgt_shower.xml │ ├── object_efc_star_field.xml │ ├── object_efc_tw.xml │ ├── object_ei.xml │ ├── object_fa.xml │ ├── object_fd.xml │ ├── object_fd2.xml │ ├── object_fhg.xml │ ├── object_fire.xml │ ├── object_firefly.xml │ ├── object_fish.xml │ ├── object_fr.xml │ ├── object_fu.xml │ ├── object_fw.xml │ ├── object_fz.xml │ ├── object_ganon.xml │ ├── object_ganon2.xml │ ├── object_ganon_anime1.xml │ ├── object_ganon_anime2.xml │ ├── object_ganon_anime3.xml │ ├── object_ganon_objects.xml │ ├── object_ge1.xml │ ├── object_geff.xml │ ├── object_geldb.xml │ ├── object_gi_arrow.xml │ ├── object_gi_arrowcase.xml │ ├── object_gi_bean.xml │ ├── object_gi_bomb_1.xml │ ├── object_gi_bomb_2.xml │ ├── object_gi_bombpouch.xml │ ├── object_gi_boomerang.xml │ ├── object_gi_boots_2.xml │ ├── object_gi_bosskey.xml │ ├── object_gi_bottle.xml │ ├── object_gi_bottle_letter.xml │ ├── object_gi_bow.xml │ ├── object_gi_bracelet.xml │ ├── object_gi_brokensword.xml │ ├── object_gi_butterfly.xml │ ├── object_gi_clothes.xml │ ├── object_gi_coin.xml │ ├── object_gi_compass.xml │ ├── object_gi_dekupouch.xml │ ├── object_gi_egg.xml │ ├── object_gi_eye_lotion.xml │ ├── object_gi_fire.xml │ ├── object_gi_fish.xml │ ├── object_gi_frog.xml │ ├── object_gi_gerudo.xml │ ├── object_gi_gerudomask.xml │ ├── object_gi_ghost.xml │ ├── object_gi_glasses.xml │ ├── object_gi_gloves.xml │ ├── object_gi_goddess.xml │ ├── object_gi_golonmask.xml │ ├── object_gi_grass.xml │ ├── object_gi_hammer.xml │ ├── object_gi_heart.xml │ ├── object_gi_hearts.xml │ ├── object_gi_hookshot.xml │ ├── object_gi_hoverboots.xml │ ├── object_gi_insect.xml │ ├── object_gi_jewel.xml │ ├── object_gi_key.xml │ ├── object_gi_ki_tan_mask.xml │ ├── object_gi_letter.xml │ ├── object_gi_liquid.xml │ ├── object_gi_longsword.xml │ ├── object_gi_m_arrow.xml │ ├── object_gi_magicpot.xml │ ├── object_gi_map.xml │ ├── object_gi_medal.xml │ ├── object_gi_melody.xml │ ├── object_gi_milk.xml │ ├── object_gi_mushroom.xml │ ├── object_gi_niwatori.xml │ ├── object_gi_nuts.xml │ ├── object_gi_ocarina.xml │ ├── object_gi_ocarina_0.xml │ ├── object_gi_pachinko.xml │ ├── object_gi_powder.xml │ ├── object_gi_prescription.xml │ ├── object_gi_purse.xml │ ├── object_gi_rabit_mask.xml │ ├── object_gi_redead_mask.xml │ ├── object_gi_rupy.xml │ ├── object_gi_saw.xml │ ├── object_gi_scale.xml │ ├── object_gi_seed.xml │ ├── object_gi_shield_1.xml │ ├── object_gi_shield_2.xml │ ├── object_gi_shield_3.xml │ ├── object_gi_skj_mask.xml │ ├── object_gi_soldout.xml │ ├── object_gi_soul.xml │ ├── object_gi_stick.xml │ ├── object_gi_sutaru.xml │ ├── object_gi_sword_1.xml │ ├── object_gi_ticketstone.xml │ ├── object_gi_truth_mask.xml │ ├── object_gi_zoramask.xml │ ├── object_gj.xml │ ├── object_gjyo_objects.xml │ ├── object_gla.xml │ ├── object_gm.xml │ ├── object_gnd.xml │ ├── object_gnd_magic.xml │ ├── object_gndd.xml │ ├── object_god_lgt.xml │ ├── object_gol.xml │ ├── object_goma.xml │ ├── object_goroiwa.xml │ ├── object_gr.xml │ ├── object_gs.xml │ ├── object_gt.xml │ ├── object_haka.xml │ ├── object_haka_door.xml │ ├── object_haka_objects.xml │ ├── object_hakach_objects.xml │ ├── object_hata.xml │ ├── object_heavy_object.xml │ ├── object_hidan_objects.xml │ ├── object_hintnuts.xml │ ├── object_hni.xml │ ├── object_horse.xml │ ├── object_horse_ganon.xml │ ├── object_horse_link_child.xml │ ├── object_horse_normal.xml │ ├── object_horse_zelda.xml │ ├── object_hs.xml │ ├── object_human.xml │ ├── object_ice_objects.xml │ ├── object_ik.xml │ ├── object_im.xml │ ├── object_in.xml │ ├── object_ingate.xml │ ├── object_jj.xml │ ├── object_js.xml │ ├── object_jya_door.xml │ ├── object_jya_iron.xml │ ├── object_jya_obj.xml │ ├── object_ka.xml │ ├── object_kanban.xml │ ├── object_kibako2.xml │ ├── object_kingdodongo.xml │ ├── object_km1.xml │ ├── object_kusa.xml │ ├── object_kw1.xml │ ├── object_kz.xml │ ├── object_light_ring.xml │ ├── object_lightbox.xml │ ├── object_lightswitch.xml │ ├── object_link_boy.xml │ ├── object_link_child.xml │ ├── object_ma1.xml │ ├── object_ma2.xml │ ├── object_mag.xml │ ├── object_mamenoki.xml │ ├── object_mastergolon.xml │ ├── object_masterkokiri.xml │ ├── object_masterkokirihead.xml │ ├── object_masterzoora.xml │ ├── object_mb.xml │ ├── object_md.xml │ ├── object_medal.xml │ ├── object_menkuri_objects.xml │ ├── object_mir_ray.xml │ ├── object_mizu_objects.xml │ ├── object_mjin.xml │ ├── object_mjin_dark.xml │ ├── object_mjin_flame.xml │ ├── object_mjin_flash.xml │ ├── object_mjin_ice.xml │ ├── object_mjin_oka.xml │ ├── object_mjin_soul.xml │ ├── object_mjin_wind.xml │ ├── object_mk.xml │ ├── object_mm.xml │ ├── object_mo.xml │ ├── object_mori_hineri1.xml │ ├── object_mori_hineri1a.xml │ ├── object_mori_hineri2.xml │ ├── object_mori_hineri2a.xml │ ├── object_mori_objects.xml │ ├── object_mori_tex.xml │ ├── object_ms.xml │ ├── object_mu.xml │ ├── object_nb.xml │ ├── object_niw.xml │ ├── object_nwc.xml │ ├── object_ny.xml │ ├── object_oA1.xml │ ├── object_oA10.xml │ ├── object_oA11.xml │ ├── object_oA2.xml │ ├── object_oA3.xml │ ├── object_oA4.xml │ ├── object_oA5.xml │ ├── object_oA6.xml │ ├── object_oA7.xml │ ├── object_oA8.xml │ ├── object_oA9.xml │ ├── object_oB1.xml │ ├── object_oB2.xml │ ├── object_oB3.xml │ ├── object_oB4.xml │ ├── object_oE1.xml │ ├── object_oE10.xml │ ├── object_oE11.xml │ ├── object_oE12.xml │ ├── object_oE1s.xml │ ├── object_oE2.xml │ ├── object_oE3.xml │ ├── object_oE4.xml │ ├── object_oE4s.xml │ ├── object_oE5.xml │ ├── object_oE6.xml │ ├── object_oE7.xml │ ├── object_oE8.xml │ ├── object_oE9.xml │ ├── object_oE_anime.xml │ ├── object_oF1d_map.xml │ ├── object_oF1s.xml │ ├── object_o_anime.xml │ ├── object_okuta.xml │ ├── object_opening_demo1.xml │ ├── object_os.xml │ ├── object_os_anime.xml │ ├── object_ossan.xml │ ├── object_ouke_haka.xml │ ├── object_owl.xml │ ├── object_peehat.xml │ ├── object_po_composer.xml │ ├── object_po_field.xml │ ├── object_po_sisters.xml │ ├── object_poh.xml │ ├── object_ps.xml │ ├── object_pu_box.xml │ ├── object_rd.xml │ ├── object_reeba.xml │ ├── object_relay_objects.xml │ ├── object_rl.xml │ ├── object_rr.xml │ ├── object_rs.xml │ ├── object_ru1.xml │ ├── object_ru2.xml │ ├── object_sa.xml │ ├── object_sb.xml │ ├── object_sd.xml │ ├── object_shop_dungen.xml │ ├── object_shopnuts.xml │ ├── object_siofuki.xml │ ├── object_sk2.xml │ ├── object_skb.xml │ ├── object_skj.xml │ ├── object_spot00_break.xml │ ├── object_spot00_objects.xml │ ├── object_spot01_matoya.xml │ ├── object_spot01_matoyab.xml │ ├── object_spot01_objects.xml │ ├── object_spot01_objects2.xml │ ├── object_spot02_objects.xml │ ├── object_spot03_object.xml │ ├── object_spot04_objects.xml │ ├── object_spot05_objects.xml │ ├── object_spot06_objects.xml │ ├── object_spot07_object.xml │ ├── object_spot08_obj.xml │ ├── object_spot09_obj.xml │ ├── object_spot11_obj.xml │ ├── object_spot12_obj.xml │ ├── object_spot15_obj.xml │ ├── object_spot16_obj.xml │ ├── object_spot17_obj.xml │ ├── object_spot18_obj.xml │ ├── object_ssh.xml │ ├── object_sst.xml │ ├── object_st.xml │ ├── object_stream.xml │ ├── object_syokudai.xml │ ├── object_ta.xml │ ├── object_timeblock.xml │ ├── object_tite.xml │ ├── object_tk.xml │ ├── object_toki_objects.xml │ ├── object_torch2.xml │ ├── object_toryo.xml │ ├── object_tp.xml │ ├── object_tr.xml │ ├── object_trap.xml │ ├── object_triforce_spot.xml │ ├── object_ts.xml │ ├── object_tsubo.xml │ ├── object_tw.xml │ ├── object_umajump.xml │ ├── object_vali.xml │ ├── object_vase.xml │ ├── object_vm.xml │ ├── object_wallmaster.xml │ ├── object_warp1.xml │ ├── object_warp2.xml │ ├── object_wf.xml │ ├── object_wood02.xml │ ├── object_xc.xml │ ├── object_yabusame_point.xml │ ├── object_ydan_objects.xml │ ├── object_yukabyun.xml │ ├── object_zf.xml │ ├── object_zg.xml │ ├── object_zl1.xml │ ├── object_zl2.xml │ ├── object_zl2_anime1.xml │ ├── object_zl2_anime2.xml │ ├── object_zl4.xml │ └── object_zo.xml │ ├── overlays │ ├── ovl_Arrow_Fire.xml │ ├── ovl_Arrow_Ice.xml │ ├── ovl_Arrow_Light.xml │ ├── ovl_Bg_Ganon_Otyuka.xml │ ├── ovl_Bg_Jya_Cobra.xml │ ├── ovl_Boss_Dodongo.xml │ ├── ovl_Boss_Ganon.xml │ ├── ovl_Boss_Ganon2.xml │ ├── ovl_Boss_Sst.xml │ ├── ovl_Demo_Shd.xml │ ├── ovl_En_Bili.xml │ ├── ovl_En_Clear_Tag.xml │ ├── ovl_En_Ganon_Mant.xml │ ├── ovl_En_Ganon_Organ.xml │ ├── ovl_En_Holl.xml │ ├── ovl_En_Jsjutan.xml │ ├── ovl_En_Kanban.xml │ ├── ovl_En_Sda.xml │ ├── ovl_En_Ssh.xml │ ├── ovl_En_St.xml │ ├── ovl_En_Sth.xml │ ├── ovl_End_Title.xml │ ├── ovl_File_Choose.xml │ ├── ovl_Magic_Dark.xml │ ├── ovl_Magic_Fire.xml │ ├── ovl_Magic_Wind.xml │ ├── ovl_Oceff_Spot.xml │ ├── ovl_Oceff_Storm.xml │ ├── ovl_Oceff_Wipe.xml │ ├── ovl_Oceff_Wipe2.xml │ ├── ovl_Oceff_Wipe3.xml │ └── ovl_Oceff_Wipe4.xml │ ├── scenes │ ├── dungeons │ │ ├── Bmori1.xml │ │ ├── FIRE_bs.xml │ │ ├── HAKAdan.xml │ │ ├── HAKAdanCH.xml │ │ ├── HAKAdan_bs.xml │ │ ├── HIDAN.xml │ │ ├── MIZUsin.xml │ │ ├── MIZUsin_bs.xml │ │ ├── bdan.xml │ │ ├── bdan_boss.xml │ │ ├── ddan.xml │ │ ├── ddan_boss.xml │ │ ├── ganon.xml │ │ ├── ganon_boss.xml │ │ ├── ganon_demo.xml │ │ ├── ganon_final.xml │ │ ├── ganon_sonogo.xml │ │ ├── ganon_tou.xml │ │ ├── ganontika.xml │ │ ├── ganontikasonogo.xml │ │ ├── gerudoway.xml │ │ ├── ice_doukutu.xml │ │ ├── jyasinboss.xml │ │ ├── jyasinzou.xml │ │ ├── men.xml │ │ ├── moribossroom.xml │ │ ├── ydan.xml │ │ └── ydan_boss.xml │ ├── indoors │ │ ├── bowling.xml │ │ ├── daiyousei_izumi.xml │ │ ├── hairal_niwa.xml │ │ ├── hairal_niwa_n.xml │ │ ├── hakasitarelay.xml │ │ ├── hut.xml │ │ ├── hylia_labo.xml │ │ ├── impa.xml │ │ ├── kakariko.xml │ │ ├── kenjyanoma.xml │ │ ├── kokiri_home.xml │ │ ├── kokiri_home3.xml │ │ ├── kokiri_home4.xml │ │ ├── kokiri_home5.xml │ │ ├── labo.xml │ │ ├── link_home.xml │ │ ├── mahouya.xml │ │ ├── malon_stable.xml │ │ ├── miharigoya.xml │ │ ├── nakaniwa.xml │ │ ├── syatekijyou.xml │ │ ├── takaraya.xml │ │ ├── tent.xml │ │ ├── tokinoma.xml │ │ ├── yousei_izumi_tate.xml │ │ └── yousei_izumi_yoko.xml │ ├── misc │ │ ├── enrui.xml │ │ ├── entra_n.xml │ │ ├── hakaana.xml │ │ ├── hakaana2.xml │ │ ├── hakaana_ouke.xml │ │ ├── hiral_demo.xml │ │ ├── kakariko3.xml │ │ ├── kakusiana.xml │ │ ├── kinsuta.xml │ │ ├── market_alley.xml │ │ ├── market_alley_n.xml │ │ ├── market_day.xml │ │ ├── market_night.xml │ │ ├── market_ruins.xml │ │ ├── shrine.xml │ │ ├── shrine_n.xml │ │ ├── shrine_r.xml │ │ └── turibori.xml │ ├── overworld │ │ ├── entra.xml │ │ ├── souko.xml │ │ ├── spot00.xml │ │ ├── spot01.xml │ │ ├── spot02.xml │ │ ├── spot03.xml │ │ ├── spot04.xml │ │ ├── spot05.xml │ │ ├── spot06.xml │ │ ├── spot07.xml │ │ ├── spot08.xml │ │ ├── spot09.xml │ │ ├── spot10.xml │ │ ├── spot11.xml │ │ ├── spot12.xml │ │ ├── spot13.xml │ │ ├── spot15.xml │ │ ├── spot16.xml │ │ ├── spot17.xml │ │ ├── spot18.xml │ │ └── spot20.xml │ └── shops │ │ ├── alley_shop.xml │ │ ├── drag.xml │ │ ├── face_shop.xml │ │ ├── golon.xml │ │ ├── kokiri_shop.xml │ │ ├── night_shop.xml │ │ ├── shop1.xml │ │ └── zoora.xml │ ├── text │ ├── elf_message_field.xml │ ├── elf_message_ydan.xml │ └── message_data_static.xml │ └── textures │ ├── backgrounds.xml │ ├── boss_title_cards.xml │ ├── do_action_static.xml │ ├── icon_item_24_static.xml │ ├── icon_item_dungeon_static.xml │ ├── icon_item_field_static.xml │ ├── icon_item_fra_static.xml │ ├── icon_item_gameover_static.xml │ ├── icon_item_ger_static.xml │ ├── icon_item_nes_static.xml │ ├── icon_item_static.xml │ ├── item_name_static.xml │ ├── map_48x85_static.xml │ ├── map_grand_static.xml │ ├── map_i_static.xml │ ├── map_name_static.xml │ ├── message_static.xml │ ├── message_texture_static.xml │ ├── nes_font_static.xml │ ├── nintendo_rogo_static.xml │ ├── parameter_static.xml │ ├── place_title_cards.xml │ ├── skyboxes.xml │ └── title_static.xml ├── fixbaserom.py ├── format.sh ├── icon.jpg ├── include ├── align_asset_macro.h ├── alignment.h ├── alloca.h ├── attributes.h ├── command_macros_base.h ├── fp.h ├── functions.h ├── gfx.h ├── global.h ├── ichain.h ├── libc │ ├── math.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ └── stdlib.h ├── macro.inc ├── macros.h ├── message_data_fmt.h ├── message_data_static.h ├── message_data_textbox_types.h ├── regs.h ├── segment_symbols.h ├── sequence.h ├── sfx.h ├── tables │ ├── actor_table.h │ ├── dmadata_table.h │ ├── dmadata_table_mqdbg.h │ ├── effect_ss_table.h │ ├── entrance_table.h │ ├── object_table.h │ └── scene_table.h ├── unk.h ├── variables.h ├── vt.h ├── z64.h ├── z64actor.h ├── z64actor_enum.h ├── z64animation.h ├── z64audio.h ├── z64bgcheck.h ├── z64camera.h ├── z64collision_check.h ├── z64cutscene.h ├── z64cutscene_commands.h ├── z64dma.h ├── z64effect.h ├── z64elf_message.h ├── z64environment.h ├── z64interface.h ├── z64item.h ├── z64light.h ├── z64map_mark.h ├── z64math.h ├── z64object.h ├── z64player.h ├── z64save.h ├── z64scene.h ├── z64scene_enum.h ├── z64skin.h ├── z64transition.h └── z64vis.h ├── macosx ├── Info.plist.in └── sohIcon.png ├── platform └── pathconf.c ├── properties.h.in ├── resource.h ├── soh ├── ActorDB.cpp ├── ActorDB.h ├── CrashHandlerExp.h ├── CrashHandlerExt.cpp ├── Enhancements │ ├── AssignableTunicsAndBoots.cpp │ ├── BootToDebugWarpScreen.cpp │ ├── Cheats │ │ ├── DekuStick.cpp │ │ ├── EasyFrameAdvance.cpp │ │ ├── EasyISG.cpp │ │ ├── EasyQPA.cpp │ │ ├── FreezeTime.cpp │ │ ├── Infinite │ │ │ ├── Ammo.cpp │ │ │ ├── Health.cpp │ │ │ ├── Magic.cpp │ │ │ ├── Money.cpp │ │ │ └── NayrusLove.cpp │ │ ├── MoonJump.cpp │ │ ├── NoKeeseGuayTarget.cpp │ │ ├── NoRedeadFreeze.cpp │ │ └── UnrestrictedItems.cpp │ ├── Difficulty │ │ ├── BonkDamage.cpp │ │ ├── CuccosToReturn.cpp │ │ ├── DampeFire.cpp │ │ ├── HyperEnemies.cpp │ │ ├── PermanentLosses.cpp │ │ ├── SwitchTimerMultiplier.cpp │ │ └── TreesDropSticks.cpp │ ├── DisableSandstorm.cpp │ ├── ExtraModes │ │ ├── HurtContainer.cpp │ │ ├── MirroredWorld.cpp │ │ ├── RupeeDash.cpp │ │ └── ShadowTag.cpp │ ├── ExtraTraps.cpp │ ├── FileSelectEnhancements.cpp │ ├── FileSelectEnhancements.h │ ├── Fixes │ │ ├── BrokenGiantsKnife.cpp │ │ ├── DekuNutUpgradeFix.cpp │ │ ├── DirtPathFix.cpp │ │ ├── FloorSwitches.cpp │ │ └── HammerHandFix.cpp │ ├── GameplayStats │ │ └── BossDefeatTimestamps.cpp │ ├── Graphics │ │ ├── AgeDependentEquipment.cpp │ │ ├── Disable2DBackgrounds.cpp │ │ └── ToTMedallions.cpp │ ├── Presets │ │ ├── Presets.cpp │ │ └── Presets.h │ ├── QoL │ │ ├── Autosave.cpp │ │ ├── DaytimeGS.cpp │ │ ├── OpenAllHours.cpp │ │ ├── PauseWarp.cpp │ │ └── ResetNaviTimer.cpp │ ├── RebottleBlueFire.cpp │ ├── RemoveSpinAttackDarkness.cpp │ ├── ResetGameplayFrames.cpp │ ├── Restorations │ │ ├── BottleAdventure.cpp │ │ ├── GraveHoleJumps.cpp │ │ ├── N64WeirdFrames │ │ │ ├── N64WeirdFrames.cpp │ │ │ ├── WeirdAnimation.cpp │ │ │ └── WeirdAnimation.h │ │ ├── PauseBufferInputs.cpp │ │ └── WideShutterDoorRanges.cpp │ ├── SkipAmyPuzzle.cpp │ ├── TimeDisplay │ │ ├── TimeDisplay.cpp │ │ └── TimeDisplay.h │ ├── TimeSavers │ │ ├── CrawlSpeed.cpp │ │ ├── DampeAllNight.cpp │ │ ├── FasterBeanSkulltula.cpp │ │ ├── FasterBottleEmpty.cpp │ │ ├── FasterHeavyBlockLift.cpp │ │ ├── FasterPauseMenu.cpp │ │ ├── FasterRupeeAccumulator.cpp │ │ ├── FasterShadowShip.cpp │ │ ├── SkipCutscene │ │ │ ├── SkipIntro.cpp │ │ │ └── Story │ │ │ │ ├── SkipBlueWarp.cpp │ │ │ │ ├── SkipDekuTreeIntro.cpp │ │ │ │ ├── SkipLostWoodsBridge.cpp │ │ │ │ ├── SkipToGivingZeldasLetter.cpp │ │ │ │ └── SkipZeldaFleeingCastle.cpp │ │ └── SkipMiscInteractions │ │ │ ├── MoveJabuJabuElevator.cpp │ │ │ ├── MoveMidoInKokiriForest.cpp │ │ │ └── SkipChildRutoInteractions.cpp │ ├── audio │ │ ├── AudioCollection.cpp │ │ ├── AudioCollection.h │ │ ├── AudioEditor.cpp │ │ ├── AudioEditor.h │ │ └── AudioHooks.cpp │ ├── bootcommands.c │ ├── bootcommands.h │ ├── boss-rush │ │ ├── BossRush.cpp │ │ └── BossRush.h │ ├── controls │ │ ├── InputViewer.cpp │ │ ├── InputViewer.h │ │ ├── Mouse.cpp │ │ ├── Mouse.h │ │ ├── SohInputEditorWindow.cpp │ │ └── SohInputEditorWindow.h │ ├── cosmetics │ │ ├── A11yNoScreenFlashForFinishingBlow.cpp │ │ ├── CosmeticsEditor.cpp │ │ ├── CosmeticsEditor.h │ │ ├── CustomLogoTitle.cpp │ │ ├── CustomSkeletons.cpp │ │ ├── NoMasterSword.cpp │ │ ├── TimeFlowFileSelect.cpp │ │ ├── authenticGfxPatches.cpp │ │ ├── authenticGfxPatches.h │ │ └── cosmeticsTypes.h │ ├── custom-message │ │ ├── CustomMessageInterfaceAddon.h │ │ ├── CustomMessageManager.cpp │ │ ├── CustomMessageManager.h │ │ └── CustomMessageTypes.h │ ├── debugconsole.cpp │ ├── debugconsole.h │ ├── debugger │ │ ├── MessageViewer.cpp │ │ ├── MessageViewer.h │ │ ├── SohConsoleWindow.cpp │ │ ├── SohConsoleWindow.h │ │ ├── SohGfxDebuggerWindow.cpp │ │ ├── SohGfxDebuggerWindow.h │ │ ├── SohStatsWindow.cpp │ │ ├── SohStatsWindow.h │ │ ├── actorViewer.cpp │ │ ├── actorViewer.h │ │ ├── colViewer.cpp │ │ ├── colViewer.h │ │ ├── debugSaveEditor.cpp │ │ ├── debugSaveEditor.h │ │ ├── dlViewer.cpp │ │ ├── dlViewer.h │ │ ├── hookDebugger.cpp │ │ ├── hookDebugger.h │ │ ├── performanceTimer.cpp │ │ ├── performanceTimer.h │ │ ├── valueViewer.cpp │ │ └── valueViewer.h │ ├── enemyrandomizer.cpp │ ├── enemyrandomizer.h │ ├── enhancementTypes.h │ ├── game-interactor │ │ ├── GameInteractionEffect.cpp │ │ ├── GameInteractionEffect.h │ │ ├── GameInteractor.cpp │ │ ├── GameInteractor.h │ │ ├── GameInteractor_HookTable.h │ │ ├── GameInteractor_Hooks.cpp │ │ ├── GameInteractor_Hooks.h │ │ ├── GameInteractor_RawAction.cpp │ │ ├── GameInteractor_State.cpp │ │ └── vanilla-behavior │ │ │ └── GIVanillaBehavior.h │ ├── gameconsole.c │ ├── gameconsole.h │ ├── gameplaystats.cpp │ ├── gameplaystats.h │ ├── gameplaystatswindow.h │ ├── item-tables │ │ ├── ItemTableManager.cpp │ │ ├── ItemTableManager.h │ │ └── ItemTableTypes.h │ ├── kaleido.cpp │ ├── kaleido.h │ ├── mod_menu.cpp │ ├── mod_menu.h │ ├── mods.cpp │ ├── mods.h │ ├── nametag.cpp │ ├── nametag.h │ ├── randomizer │ │ ├── 3drando │ │ │ ├── LICENSE.md │ │ │ ├── custom_messages.cpp │ │ │ ├── custom_messages.hpp │ │ │ ├── fill.cpp │ │ │ ├── fill.hpp │ │ │ ├── hint_list.cpp │ │ │ ├── hint_list │ │ │ │ ├── hint_list_exclude_dungeon.cpp │ │ │ │ ├── hint_list_exclude_overworld.cpp │ │ │ │ └── hint_list_item.cpp │ │ │ ├── hints.cpp │ │ │ ├── hints.hpp │ │ │ ├── item_pool.cpp │ │ │ ├── item_pool.hpp │ │ │ ├── menu.cpp │ │ │ ├── menu.hpp │ │ │ ├── playthrough.cpp │ │ │ ├── playthrough.hpp │ │ │ ├── pool_functions.hpp │ │ │ ├── rando_main.cpp │ │ │ ├── rando_main.hpp │ │ │ ├── random.cpp │ │ │ ├── random.hpp │ │ │ ├── shops.cpp │ │ │ ├── shops.hpp │ │ │ ├── spoiler_log.cpp │ │ │ ├── spoiler_log.hpp │ │ │ ├── starting_inventory.cpp │ │ │ ├── starting_inventory.hpp │ │ │ └── text.hpp │ │ ├── Bombchus.cpp │ │ ├── ColoredMapsAndCompasses.cpp │ │ ├── LockOverworldDoors.cpp │ │ ├── Plandomizer.cpp │ │ ├── Plandomizer.h │ │ ├── ShuffleBeehives.cpp │ │ ├── ShuffleCows.cpp │ │ ├── ShuffleCrates.cpp │ │ ├── ShuffleFairies.cpp │ │ ├── ShuffleFreestanding.cpp │ │ ├── ShuffleGrass.cpp │ │ ├── ShufflePots.cpp │ │ ├── ShuffleSongs.cpp │ │ ├── ShuffleTradeItems.c │ │ ├── ShuffleTradeItems.h │ │ ├── ShuffleTrees.cpp │ │ ├── context.cpp │ │ ├── context.h │ │ ├── draw.cpp │ │ ├── draw.h │ │ ├── dungeon.cpp │ │ ├── dungeon.h │ │ ├── entrance.cpp │ │ ├── entrance.h │ │ ├── fishsanity.cpp │ │ ├── fishsanity.h │ │ ├── hint.cpp │ │ ├── hint.h │ │ ├── hook_handlers.cpp │ │ ├── hook_handlers.h │ │ ├── item.cpp │ │ ├── item.h │ │ ├── item_list.cpp │ │ ├── item_location.cpp │ │ ├── item_location.h │ │ ├── item_override.cpp │ │ ├── item_override.h │ │ ├── location.cpp │ │ ├── location.h │ │ ├── location_access.cpp │ │ ├── location_access.h │ │ ├── location_access │ │ │ ├── dungeons │ │ │ │ ├── bottom_of_the_well.cpp │ │ │ │ ├── deku_tree.cpp │ │ │ │ ├── dodongos_cavern.cpp │ │ │ │ ├── fire_temple.cpp │ │ │ │ ├── forest_temple.cpp │ │ │ │ ├── ganons_castle.cpp │ │ │ │ ├── gerudo_training_ground.cpp │ │ │ │ ├── ice_cavern.cpp │ │ │ │ ├── jabujabus_belly.cpp │ │ │ │ ├── shadow_temple.cpp │ │ │ │ ├── spirit_temple.cpp │ │ │ │ └── water_temple.cpp │ │ │ └── overworld │ │ │ │ ├── castle_grounds.cpp │ │ │ │ ├── death_mountain_crater.cpp │ │ │ │ ├── death_mountain_trail.cpp │ │ │ │ ├── desert_colossus.cpp │ │ │ │ ├── gerudo_fortress.cpp │ │ │ │ ├── gerudo_valley.cpp │ │ │ │ ├── goron_city.cpp │ │ │ │ ├── graveyard.cpp │ │ │ │ ├── haunted_wasteland.cpp │ │ │ │ ├── hyrule_field.cpp │ │ │ │ ├── kakariko.cpp │ │ │ │ ├── kokiri_forest.cpp │ │ │ │ ├── lake_hylia.cpp │ │ │ │ ├── lon_lon_ranch.cpp │ │ │ │ ├── lost_woods.cpp │ │ │ │ ├── market.cpp │ │ │ │ ├── sacred_forest_meadow.cpp │ │ │ │ ├── temple_of_time.cpp │ │ │ │ ├── thieves_hideout.cpp │ │ │ │ ├── zoras_domain.cpp │ │ │ │ ├── zoras_fountain.cpp │ │ │ │ └── zoras_river.cpp │ │ ├── location_list.cpp │ │ ├── logic.cpp │ │ ├── logic.h │ │ ├── option.cpp │ │ ├── option.h │ │ ├── option_descriptions.cpp │ │ ├── rando_hash.h │ │ ├── randomizer.cpp │ │ ├── randomizer.h │ │ ├── randomizerTypes.h │ │ ├── randomizer_check_objects.cpp │ │ ├── randomizer_check_objects.h │ │ ├── randomizer_check_tracker.cpp │ │ ├── randomizer_check_tracker.h │ │ ├── randomizer_entrance.c │ │ ├── randomizer_entrance.h │ │ ├── randomizer_entrance_tracker.cpp │ │ ├── randomizer_entrance_tracker.h │ │ ├── randomizer_grotto.c │ │ ├── randomizer_grotto.h │ │ ├── randomizer_inf.h │ │ ├── randomizer_item_tracker.cpp │ │ ├── randomizer_item_tracker.h │ │ ├── randomizer_settings_window.h │ │ ├── savefile.cpp │ │ ├── savefile.h │ │ ├── settings.cpp │ │ ├── settings.h │ │ ├── static_data.cpp │ │ ├── static_data.h │ │ ├── trial.cpp │ │ ├── trial.h │ │ ├── tricks.cpp │ │ └── tricks.h │ ├── savestates.cpp │ ├── savestates.h │ ├── savestates_extern.inc │ ├── speechsynthesizer │ │ ├── DarwinSpeechSynthesizer.h │ │ ├── DarwinSpeechSynthesizer.mm │ │ ├── ESpeakSpeechSynthesizer.cpp │ │ ├── ESpeakSpeechSynthesizer.h │ │ ├── SAPISpeechSynthesizer.cpp │ │ ├── SAPISpeechSynthesizer.h │ │ ├── SpeechLogger.cpp │ │ ├── SpeechLogger.h │ │ ├── SpeechSynthesizer.cpp │ │ └── SpeechSynthesizer.h │ ├── timesaver_hook_handlers.cpp │ ├── timesaver_hook_handlers.h │ ├── timesplits │ │ ├── TimeSplits.cpp │ │ └── TimeSplits.h │ └── tts │ │ ├── tts.cpp │ │ └── tts.h ├── Extractor │ ├── Extract.cpp │ ├── Extract.h │ ├── FastCrc32C.c │ └── portable-file-dialogs.h ├── GameVersions.h ├── GbiWrap.cpp ├── Network │ ├── Anchor │ │ ├── Anchor.cpp │ │ ├── Anchor.h │ │ ├── AnchorRoomWindow.cpp │ │ ├── DummyPlayer.cpp │ │ ├── HookHandlers.cpp │ │ ├── JsonConversions.hpp │ │ ├── Menu.cpp │ │ └── Packets │ │ │ ├── AllClientState.cpp │ │ │ ├── DamagePlayer.cpp │ │ │ ├── DisableAnchor.cpp │ │ │ ├── EntranceDiscovered.cpp │ │ │ ├── GameComplete.cpp │ │ │ ├── GiveItem.cpp │ │ │ ├── Handshake.cpp │ │ │ ├── OcarinaSfx.cpp │ │ │ ├── PlayerSfx.cpp │ │ │ ├── PlayerUpdate.cpp │ │ │ ├── RequestTeamState.cpp │ │ │ ├── RequestTeleport.cpp │ │ │ ├── ServerMessage.cpp │ │ │ ├── SetCheckStatus.cpp │ │ │ ├── SetFlag.cpp │ │ │ ├── TeleportTo.cpp │ │ │ ├── UnsetFlag.cpp │ │ │ ├── UpdateBeansCount.cpp │ │ │ ├── UpdateClientState.cpp │ │ │ ├── UpdateDungeonItems.cpp │ │ │ ├── UpdateRoomState.cpp │ │ │ └── UpdateTeamState.cpp │ ├── CrowdControl │ │ ├── CrowdControl.cpp │ │ ├── CrowdControl.h │ │ ├── CrowdControlTypes.h │ │ └── ShipOfHarkinian.cs │ ├── Network.cpp │ ├── Network.h │ └── Sail │ │ ├── Sail.cpp │ │ └── Sail.h ├── Notification │ ├── Notification.cpp │ └── Notification.h ├── OTRAudio.h ├── OTRGlobals.cpp ├── OTRGlobals.h ├── ObjectExtension │ ├── ActorListIndex.cpp │ ├── ActorListIndex.h │ ├── ActorMaximumHealth.cpp │ ├── ActorMaximumHealth.h │ ├── ObjectExtension.cpp │ └── ObjectExtension.h ├── ResourceManagerHelpers.cpp ├── ResourceManagerHelpers.h ├── SaveManager.cpp ├── SaveManager.h ├── ShipInit.hpp ├── ShipUtils.cpp ├── ShipUtils.h ├── SohGui │ ├── ImGuiUtils.cpp │ ├── ImGuiUtils.h │ ├── Menu.cpp │ ├── Menu.h │ ├── MenuTypes.h │ ├── ResolutionEditor.cpp │ ├── ResolutionEditor.h │ ├── SohGui.cpp │ ├── SohGui.hpp │ ├── SohMenu.cpp │ ├── SohMenu.h │ ├── SohMenuBar.cpp │ ├── SohMenuBar.h │ ├── SohMenuDevTools.cpp │ ├── SohMenuEnhancements.cpp │ ├── SohMenuNetwork.cpp │ ├── SohMenuRandomizer.cpp │ ├── SohMenuSettings.cpp │ ├── SohModals.cpp │ ├── SohModals.h │ ├── UIWidgets.cpp │ └── UIWidgets.hpp ├── config │ ├── ConfigMigrators.h │ ├── ConfigUpdaters.cpp │ └── ConfigUpdaters.h ├── cvar_prefixes.h ├── frame_interpolation.cpp ├── frame_interpolation.h ├── framebuffer_effects.c ├── framebuffer_effects.h ├── gu_pc.c ├── mixer.c ├── mixer.h ├── mq_asset_hacks.h ├── resource │ ├── importer │ │ ├── AnimationFactory.cpp │ │ ├── AnimationFactory.h │ │ ├── ArrayFactory.cpp │ │ ├── ArrayFactory.h │ │ ├── AudioSampleFactory.cpp │ │ ├── AudioSampleFactory.h │ │ ├── AudioSequenceFactory.cpp │ │ ├── AudioSequenceFactory.h │ │ ├── AudioSoundFontFactory.cpp │ │ ├── AudioSoundFontFactory.h │ │ ├── BackgroundFactory.cpp │ │ ├── BackgroundFactory.h │ │ ├── CollisionHeaderFactory.cpp │ │ ├── CollisionHeaderFactory.h │ │ ├── CutsceneFactory.cpp │ │ ├── CutsceneFactory.h │ │ ├── PathFactory.cpp │ │ ├── PathFactory.h │ │ ├── PlayerAnimationFactory.cpp │ │ ├── PlayerAnimationFactory.h │ │ ├── SceneFactory.cpp │ │ ├── SceneFactory.h │ │ ├── SkeletonFactory.cpp │ │ ├── SkeletonFactory.h │ │ ├── SkeletonLimbFactory.cpp │ │ ├── SkeletonLimbFactory.h │ │ ├── TextFactory.cpp │ │ ├── TextFactory.h │ │ └── scenecommand │ │ │ ├── EndMarkerFactory.cpp │ │ │ ├── EndMarkerFactory.h │ │ │ ├── SceneCommandFactory.cpp │ │ │ ├── SceneCommandFactory.h │ │ │ ├── SetActorListFactory.cpp │ │ │ ├── SetActorListFactory.h │ │ │ ├── SetAlternateHeadersFactory.cpp │ │ │ ├── SetAlternateHeadersFactory.h │ │ │ ├── SetCameraSettingsFactory.cpp │ │ │ ├── SetCameraSettingsFactory.h │ │ │ ├── SetCollisionHeaderFactory.cpp │ │ │ ├── SetCollisionHeaderFactory.h │ │ │ ├── SetCsCameraFactory.cpp │ │ │ ├── SetCsCameraFactory.h │ │ │ ├── SetCutscenesFactory.cpp │ │ │ ├── SetCutscenesFactory.h │ │ │ ├── SetEchoSettingsFactory.cpp │ │ │ ├── SetEchoSettingsFactory.h │ │ │ ├── SetEntranceListFactory.cpp │ │ │ ├── SetEntranceListFactory.h │ │ │ ├── SetExitListFactory.cpp │ │ │ ├── SetExitListFactory.h │ │ │ ├── SetLightListFactory.cpp │ │ │ ├── SetLightListFactory.h │ │ │ ├── SetLightingSettingsFactory.cpp │ │ │ ├── SetLightingSettingsFactory.h │ │ │ ├── SetMeshFactory.cpp │ │ │ ├── SetMeshFactory.h │ │ │ ├── SetObjectListFactory.cpp │ │ │ ├── SetObjectListFactory.h │ │ │ ├── SetPathwaysFactory.cpp │ │ │ ├── SetPathwaysFactory.h │ │ │ ├── SetRoomBehaviorFactory.cpp │ │ │ ├── SetRoomBehaviorFactory.h │ │ │ ├── SetRoomListFactory.cpp │ │ │ ├── SetRoomListFactory.h │ │ │ ├── SetSkyboxModifierFactory.cpp │ │ │ ├── SetSkyboxModifierFactory.h │ │ │ ├── SetSkyboxSettingsFactory.cpp │ │ │ ├── SetSkyboxSettingsFactory.h │ │ │ ├── SetSoundSettingsFactory.cpp │ │ │ ├── SetSoundSettingsFactory.h │ │ │ ├── SetSpecialObjectsFactory.cpp │ │ │ ├── SetSpecialObjectsFactory.h │ │ │ ├── SetStartPositionListFactory.cpp │ │ │ ├── SetStartPositionListFactory.h │ │ │ ├── SetTimeSettingsFactory.cpp │ │ │ ├── SetTimeSettingsFactory.h │ │ │ ├── SetTransitionActorListFactory.cpp │ │ │ ├── SetTransitionActorListFactory.h │ │ │ ├── SetWindSettingsFactory.cpp │ │ │ └── SetWindSettingsFactory.h │ ├── logging │ │ ├── PathLogger.cpp │ │ ├── PathLogger.h │ │ ├── SceneCommandLoggers.cpp │ │ └── SceneCommandLoggers.h │ └── type │ │ ├── Animation.cpp │ │ ├── Animation.h │ │ ├── Array.cpp │ │ ├── Array.h │ │ ├── AudioSample.cpp │ │ ├── AudioSample.h │ │ ├── AudioSequence.cpp │ │ ├── AudioSequence.h │ │ ├── AudioSoundFont.cpp │ │ ├── AudioSoundFont.h │ │ ├── Background.cpp │ │ ├── Background.h │ │ ├── CollisionHeader.cpp │ │ ├── CollisionHeader.h │ │ ├── Cutscene.cpp │ │ ├── Cutscene.h │ │ ├── Path.cpp │ │ ├── Path.h │ │ ├── PlayerAnimation.cpp │ │ ├── PlayerAnimation.h │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── Skeleton.cpp │ │ ├── Skeleton.h │ │ ├── SkeletonLimb.cpp │ │ ├── SkeletonLimb.h │ │ ├── SohResourceType.h │ │ ├── Text.cpp │ │ ├── Text.h │ │ └── scenecommand │ │ ├── EndMarker.cpp │ │ ├── EndMarker.h │ │ ├── RomFile.h │ │ ├── SceneCommand.h │ │ ├── SetActorList.cpp │ │ ├── SetActorList.h │ │ ├── SetAlternateHeaders.cpp │ │ ├── SetAlternateHeaders.h │ │ ├── SetCameraSettings.cpp │ │ ├── SetCameraSettings.h │ │ ├── SetCollisionHeader.cpp │ │ ├── SetCollisionHeader.h │ │ ├── SetCsCamera.cpp │ │ ├── SetCsCamera.h │ │ ├── SetCutscenes.cpp │ │ ├── SetCutscenes.h │ │ ├── SetEchoSettings.cpp │ │ ├── SetEchoSettings.h │ │ ├── SetEntranceList.cpp │ │ ├── SetEntranceList.h │ │ ├── SetExitList.cpp │ │ ├── SetExitList.h │ │ ├── SetLightList.cpp │ │ ├── SetLightList.h │ │ ├── SetLightingSettings.cpp │ │ ├── SetLightingSettings.h │ │ ├── SetMesh.cpp │ │ ├── SetMesh.h │ │ ├── SetObjectList.cpp │ │ ├── SetObjectList.h │ │ ├── SetPathways.cpp │ │ ├── SetPathways.h │ │ ├── SetRoomBehavior.cpp │ │ ├── SetRoomBehavior.h │ │ ├── SetRoomList.cpp │ │ ├── SetRoomList.h │ │ ├── SetSkyboxModifier.cpp │ │ ├── SetSkyboxModifier.h │ │ ├── SetSkyboxSettings.cpp │ │ ├── SetSkyboxSettings.h │ │ ├── SetSoundSettings.cpp │ │ ├── SetSoundSettings.h │ │ ├── SetSpecialObjects.cpp │ │ ├── SetSpecialObjects.h │ │ ├── SetStartPositionList.cpp │ │ ├── SetStartPositionList.h │ │ ├── SetTimeSettings.cpp │ │ ├── SetTimeSettings.h │ │ ├── SetTransitionActorList.cpp │ │ ├── SetTransitionActorList.h │ │ ├── SetWindSettings.cpp │ │ └── SetWindSettings.h ├── stubs.c ├── util.cpp ├── util.h ├── z_message_OTR.cpp ├── z_play_otr.cpp └── z_scene_otr.cpp └── src ├── boot ├── boot_main.c ├── build.c.in ├── idle.c ├── is_debug.c ├── logutils.c ├── stackcheck.c ├── viconfig.c ├── yaz0.c ├── z_locale.c └── z_std_dma.c ├── buffers ├── gfxbuffers.c ├── heaps.c └── zbuffer.c ├── code ├── PreRender.c ├── TwoHeadArena.c ├── __osMalloc.c ├── audioMgr.c ├── audio_data.c ├── audio_effects.c ├── audio_heap.c ├── audio_init_params.c ├── audio_load.c ├── audio_playback.c ├── audio_seqplayer.c ├── audio_sound_params.c ├── audio_synthesis.c ├── code_800430A0.c ├── code_8006C3A0.c ├── code_8006C510.c ├── code_800A9F30.c ├── code_800BB0A0.c ├── code_800C3C20.c ├── code_800D2E30.c ├── code_800D31A0.c ├── code_800E4FE0.c ├── code_800E6840.c ├── code_800EC960.c ├── code_800F7260.c ├── code_800F9280.c ├── code_800FBCE0.c ├── code_800FC620.c ├── code_800FCE80.c ├── code_800FD970.c ├── code_801067F0.c ├── code_801068B0.c ├── db_camera.c ├── debug_malloc.c ├── fault.c ├── fault_drawer.c ├── flg_set.c ├── game.c ├── gamealloc.c ├── gfxprint.c ├── graph.c ├── irqmgr.c ├── jpegdecoder.c ├── jpegutils.c ├── listalloc.c ├── loadfragment2.c ├── logseverity.c ├── main.c ├── mempak.c ├── mtxuty-cvt.c ├── padmgr.c ├── padsetup.c ├── padutils.c ├── printutils.c ├── relocation.c ├── sched.c ├── shrink_window.c ├── sleep.c ├── speed_meter.c ├── sys_cfb.c ├── sys_math.c ├── sys_math3d.c ├── sys_math_atan.c ├── sys_matrix.c ├── sys_ucode.c ├── system_malloc.c ├── title_setup.c ├── ucode_disas.c ├── z_DLF.c ├── z_actor.c ├── z_bg_item.c ├── z_bgcheck.c ├── z_camera.c ├── z_camera_data.inc ├── z_cheap_proc.c ├── z_collision_btltbls.c ├── z_collision_check.c ├── z_common_data.c ├── z_construct.c ├── z_debug.c ├── z_debug_display.c ├── z_demo.c ├── z_draw.c ├── z_eff_blure.c ├── z_eff_shield_particle.c ├── z_eff_spark.c ├── z_eff_ss_dead.c ├── z_effect.c ├── z_effect_soft_sprite.c ├── z_effect_soft_sprite_dlftbls.c ├── z_effect_soft_sprite_old_init.c ├── z_elf_message.c ├── z_en_a_keep.c ├── z_en_item00.c ├── z_face_reaction.c ├── z_fbdemo.c ├── z_fbdemo_circle.c ├── z_fbdemo_fade.c ├── z_fbdemo_triforce.c ├── z_fbdemo_wipe1.c ├── z_fcurve_data_skelanime.c ├── z_frame_advance.c ├── z_game_dlftbls.c ├── z_game_over.c ├── z_horse.c ├── z_inventory.c ├── z_jpeg.c ├── z_kaleido_manager.c ├── z_kaleido_scope_call.c ├── z_kaleido_setup.c ├── z_kanfont.c ├── z_kanji.c ├── z_kankyo.c ├── z_lib.c ├── z_lifemeter.c ├── z_lights.c ├── z_malloc.c ├── z_map_data.c ├── z_map_exp.c ├── z_map_mark.c ├── z_message_PAL.c ├── z_moji.c ├── z_msgevent.c ├── z_olib.c ├── z_onepointdemo.c ├── z_onepointdemo_data.inc ├── z_parameter.c ├── z_path.c ├── z_play.c ├── z_player_call.c ├── z_player_lib.c ├── z_prenmi.c ├── z_prenmi_buff.c ├── z_quake.c ├── z_rcp.c ├── z_room.c ├── z_sample.c ├── z_scene.c ├── z_scene_table.c ├── z_skelanime.c ├── z_skin.c ├── z_skin_awb.c ├── z_skin_matrix.c ├── z_sound_source.c ├── z_sram.c ├── z_ss_sram.c ├── z_view.c ├── z_vimode.c ├── z_viscvg.c ├── z_vismono.c ├── z_viszbuf.c ├── z_vr_box.c └── z_vr_box_draw.c ├── dmadata └── dmadata.c ├── elf_message ├── elf_message_field.c └── elf_message_ydan.c ├── libultra ├── gu │ ├── cosf.c │ ├── coss.c │ ├── guLookAt.c │ ├── guLookAtHilite.c │ ├── guPerspectiveF.c │ ├── guPosition.c │ ├── guS2DInitBg.c │ ├── lookat.c │ ├── lookathil.c │ ├── ortho.c │ ├── perspective.c │ ├── position.c │ ├── rotate.c │ ├── sinf.c │ ├── sins.c │ ├── sintable.c │ ├── sqrtf.c │ └── us2dex.c ├── io │ ├── aigetlen.c │ ├── aisetfreq.c │ ├── aisetnextbuf.c │ ├── cartrominit.c │ ├── contpfs.c │ ├── contquery.c │ ├── contramread.c │ ├── contramwrite.c │ ├── contreaddata.c │ ├── controller.c │ ├── contsetch.c │ ├── crc.c │ ├── devmgr.c │ ├── dpgetstat.c │ ├── dpsetstat.c │ ├── driverominit.c │ ├── epidma.c │ ├── epirawdma.c │ ├── epirawread.c │ ├── epirawwrite.c │ ├── epiread.c │ ├── epiwrite.c │ ├── motor.c │ ├── pfsallocatefile.c │ ├── pfschecker.c │ ├── pfsdeletefile.c │ ├── pfsfilestate.c │ ├── pfsfindfile.c │ ├── pfsfreeblocks.c │ ├── pfsgetstatus.c │ ├── pfsinitpak.c │ ├── pfsisplug.c │ ├── pfsreadwritefile.c │ ├── pfsselectbank.c │ ├── piacs.c │ ├── pigetcmdq.c │ ├── pimgr.c │ ├── pirawdma.c │ ├── si.c │ ├── siacs.c │ ├── sirawdma.c │ ├── sirawread.c │ ├── sirawwrite.c │ ├── sp.c │ ├── spgetstat.c │ ├── sprawdma.c │ ├── spsetpc.c │ ├── spsetstat.c │ ├── sptask.c │ ├── sptaskyield.c │ ├── sptaskyielded.c │ ├── vi.c │ ├── viblack.c │ ├── viextend.c │ ├── vigetcurrcontext.c │ ├── vigetcurrframebuf.c │ ├── vigetnextframebuf.c │ ├── vimgr.c │ ├── vimodefpallan1.c │ ├── vimodempallan1.c │ ├── vimodentsclan1.c │ ├── vimodepallan1.c │ ├── visetevent.c │ ├── visetmode.c │ ├── visetspecial.c │ ├── visetxscale.c │ ├── visetyscale.c │ ├── viswapbuf.c │ └── viswapcontext.c ├── libc │ ├── absf.c │ ├── ldiv.c │ ├── ll.c │ ├── llcvt.c │ ├── sprintf.c │ └── sqrt.c ├── os │ ├── afterprenmi.c │ ├── createmesgqueue.c │ ├── createthread.c │ ├── dequeuethread.c │ ├── destroythread.c │ ├── getactivequeue.c │ ├── getcurrfaultedthread.c │ ├── gethwintrroutine.c │ ├── getmemsize.c │ ├── getthreadid.c │ ├── getthreadpri.c │ ├── gettime.c │ ├── initialize.c │ ├── jammesg.c │ ├── recvmesg.c │ ├── resetglobalintmask.c │ ├── sendmesg.c │ ├── seteventmesg.c │ ├── setglobalintmask.c │ ├── sethwintrroutine.c │ ├── setthreadpri.c │ ├── settimer.c │ ├── startthread.c │ ├── stopthread.c │ ├── stoptimer.c │ ├── timerintr.c │ ├── virtualtophysical.c │ └── yieldthread.c └── rmon │ ├── sprintf.c │ ├── xldtob.c │ ├── xlitob.c │ └── xprintf.c └── overlays ├── actors ├── ovl_Arms_Hook │ ├── z_arms_hook.c │ └── z_arms_hook.h ├── ovl_Arrow_Fire │ ├── z_arrow_fire.c │ └── z_arrow_fire.h ├── ovl_Arrow_Ice │ ├── z_arrow_ice.c │ └── z_arrow_ice.h ├── ovl_Arrow_Light │ ├── z_arrow_light.c │ └── z_arrow_light.h ├── ovl_Bg_Bdan_Objects │ ├── z_bg_bdan_objects.c │ └── z_bg_bdan_objects.h ├── ovl_Bg_Bdan_Switch │ ├── z_bg_bdan_switch.c │ └── z_bg_bdan_switch.h ├── ovl_Bg_Bom_Guard │ ├── z_bg_bom_guard.c │ └── z_bg_bom_guard.h ├── ovl_Bg_Bombwall │ ├── z_bg_bombwall.c │ └── z_bg_bombwall.h ├── ovl_Bg_Bowl_Wall │ ├── z_bg_bowl_wall.c │ └── z_bg_bowl_wall.h ├── ovl_Bg_Breakwall │ ├── z_bg_breakwall.c │ └── z_bg_breakwall.h ├── ovl_Bg_Ddan_Jd │ ├── z_bg_ddan_jd.c │ └── z_bg_ddan_jd.h ├── ovl_Bg_Ddan_Kd │ ├── z_bg_ddan_kd.c │ └── z_bg_ddan_kd.h ├── ovl_Bg_Dodoago │ ├── z_bg_dodoago.c │ └── z_bg_dodoago.h ├── ovl_Bg_Dy_Yoseizo │ ├── z_bg_dy_yoseizo.c │ └── z_bg_dy_yoseizo.h ├── ovl_Bg_Ganon_Otyuka │ ├── z_bg_ganon_otyuka.c │ └── z_bg_ganon_otyuka.h ├── ovl_Bg_Gate_Shutter │ ├── z_bg_gate_shutter.c │ └── z_bg_gate_shutter.h ├── ovl_Bg_Gjyo_Bridge │ ├── z_bg_gjyo_bridge.c │ └── z_bg_gjyo_bridge.h ├── ovl_Bg_Gnd_Darkmeiro │ ├── z_bg_gnd_darkmeiro.c │ └── z_bg_gnd_darkmeiro.h ├── ovl_Bg_Gnd_Firemeiro │ ├── z_bg_gnd_firemeiro.c │ └── z_bg_gnd_firemeiro.h ├── ovl_Bg_Gnd_Iceblock │ ├── z_bg_gnd_iceblock.c │ └── z_bg_gnd_iceblock.h ├── ovl_Bg_Gnd_Nisekabe │ ├── z_bg_gnd_nisekabe.c │ └── z_bg_gnd_nisekabe.h ├── ovl_Bg_Gnd_Soulmeiro │ ├── z_bg_gnd_soulmeiro.c │ └── z_bg_gnd_soulmeiro.h ├── ovl_Bg_Haka │ ├── z_bg_haka.c │ └── z_bg_haka.h ├── ovl_Bg_Haka_Gate │ ├── z_bg_haka_gate.c │ └── z_bg_haka_gate.h ├── ovl_Bg_Haka_Huta │ ├── z_bg_haka_huta.c │ └── z_bg_haka_huta.h ├── ovl_Bg_Haka_Megane │ ├── z_bg_haka_megane.c │ └── z_bg_haka_megane.h ├── ovl_Bg_Haka_MeganeBG │ ├── z_bg_haka_meganebg.c │ └── z_bg_haka_meganebg.h ├── ovl_Bg_Haka_Sgami │ ├── z_bg_haka_sgami.c │ └── z_bg_haka_sgami.h ├── ovl_Bg_Haka_Ship │ ├── z_bg_haka_ship.c │ └── z_bg_haka_ship.h ├── ovl_Bg_Haka_Trap │ ├── z_bg_haka_trap.c │ └── z_bg_haka_trap.h ├── ovl_Bg_Haka_Tubo │ ├── z_bg_haka_tubo.c │ └── z_bg_haka_tubo.h ├── ovl_Bg_Haka_Water │ ├── z_bg_haka_water.c │ └── z_bg_haka_water.h ├── ovl_Bg_Haka_Zou │ ├── z_bg_haka_zou.c │ └── z_bg_haka_zou.h ├── ovl_Bg_Heavy_Block │ ├── z_bg_heavy_block.c │ └── z_bg_heavy_block.h ├── ovl_Bg_Hidan_Curtain │ ├── z_bg_hidan_curtain.c │ └── z_bg_hidan_curtain.h ├── ovl_Bg_Hidan_Dalm │ ├── z_bg_hidan_dalm.c │ └── z_bg_hidan_dalm.h ├── ovl_Bg_Hidan_Firewall │ ├── z_bg_hidan_firewall.c │ └── z_bg_hidan_firewall.h ├── ovl_Bg_Hidan_Fslift │ ├── z_bg_hidan_fslift.c │ └── z_bg_hidan_fslift.h ├── ovl_Bg_Hidan_Fwbig │ ├── z_bg_hidan_fwbig.c │ └── z_bg_hidan_fwbig.h ├── ovl_Bg_Hidan_Hamstep │ ├── z_bg_hidan_hamstep.c │ └── z_bg_hidan_hamstep.h ├── ovl_Bg_Hidan_Hrock │ ├── z_bg_hidan_hrock.c │ └── z_bg_hidan_hrock.h ├── ovl_Bg_Hidan_Kousi │ ├── z_bg_hidan_kousi.c │ └── z_bg_hidan_kousi.h ├── ovl_Bg_Hidan_Kowarerukabe │ ├── z_bg_hidan_kowarerukabe.c │ └── z_bg_hidan_kowarerukabe.h ├── ovl_Bg_Hidan_Rock │ ├── z_bg_hidan_rock.c │ └── z_bg_hidan_rock.h ├── ovl_Bg_Hidan_Rsekizou │ ├── z_bg_hidan_rsekizou.c │ └── z_bg_hidan_rsekizou.h ├── ovl_Bg_Hidan_Sekizou │ ├── z_bg_hidan_sekizou.c │ └── z_bg_hidan_sekizou.h ├── ovl_Bg_Hidan_Sima │ ├── z_bg_hidan_sima.c │ └── z_bg_hidan_sima.h ├── ovl_Bg_Hidan_Syoku │ ├── z_bg_hidan_syoku.c │ └── z_bg_hidan_syoku.h ├── ovl_Bg_Ice_Objects │ ├── z_bg_ice_objects.c │ └── z_bg_ice_objects.h ├── ovl_Bg_Ice_Shelter │ ├── z_bg_ice_shelter.c │ └── z_bg_ice_shelter.h ├── ovl_Bg_Ice_Shutter │ ├── z_bg_ice_shutter.c │ └── z_bg_ice_shutter.h ├── ovl_Bg_Ice_Turara │ ├── z_bg_ice_turara.c │ └── z_bg_ice_turara.h ├── ovl_Bg_Ingate │ ├── z_bg_ingate.c │ └── z_bg_ingate.h ├── ovl_Bg_Jya_1flift │ ├── z_bg_jya_1flift.c │ └── z_bg_jya_1flift.h ├── ovl_Bg_Jya_Amishutter │ ├── z_bg_jya_amishutter.c │ └── z_bg_jya_amishutter.h ├── ovl_Bg_Jya_Bigmirror │ ├── z_bg_jya_bigmirror.c │ └── z_bg_jya_bigmirror.h ├── ovl_Bg_Jya_Block │ ├── z_bg_jya_block.c │ └── z_bg_jya_block.h ├── ovl_Bg_Jya_Bombchuiwa │ ├── z_bg_jya_bombchuiwa.c │ └── z_bg_jya_bombchuiwa.h ├── ovl_Bg_Jya_Bombiwa │ ├── z_bg_jya_bombiwa.c │ └── z_bg_jya_bombiwa.h ├── ovl_Bg_Jya_Cobra │ ├── z_bg_jya_cobra.c │ └── z_bg_jya_cobra.h ├── ovl_Bg_Jya_Goroiwa │ ├── z_bg_jya_goroiwa.c │ └── z_bg_jya_goroiwa.h ├── ovl_Bg_Jya_Haheniron │ ├── z_bg_jya_haheniron.c │ └── z_bg_jya_haheniron.h ├── ovl_Bg_Jya_Ironobj │ ├── z_bg_jya_ironobj.c │ └── z_bg_jya_ironobj.h ├── ovl_Bg_Jya_Kanaami │ ├── z_bg_jya_kanaami.c │ └── z_bg_jya_kanaami.h ├── ovl_Bg_Jya_Lift │ ├── z_bg_jya_lift.c │ └── z_bg_jya_lift.h ├── ovl_Bg_Jya_Megami │ ├── z_bg_jya_megami.c │ └── z_bg_jya_megami.h ├── ovl_Bg_Jya_Zurerukabe │ ├── z_bg_jya_zurerukabe.c │ └── z_bg_jya_zurerukabe.h ├── ovl_Bg_Menkuri_Eye │ ├── z_bg_menkuri_eye.c │ └── z_bg_menkuri_eye.h ├── ovl_Bg_Menkuri_Kaiten │ ├── z_bg_menkuri_kaiten.c │ └── z_bg_menkuri_kaiten.h ├── ovl_Bg_Menkuri_Nisekabe │ ├── z_bg_menkuri_nisekabe.c │ └── z_bg_menkuri_nisekabe.h ├── ovl_Bg_Mizu_Bwall │ ├── z_bg_mizu_bwall.c │ └── z_bg_mizu_bwall.h ├── ovl_Bg_Mizu_Movebg │ ├── z_bg_mizu_movebg.c │ └── z_bg_mizu_movebg.h ├── ovl_Bg_Mizu_Shutter │ ├── z_bg_mizu_shutter.c │ └── z_bg_mizu_shutter.h ├── ovl_Bg_Mizu_Uzu │ ├── z_bg_mizu_uzu.c │ └── z_bg_mizu_uzu.h ├── ovl_Bg_Mizu_Water │ ├── z_bg_mizu_water.c │ └── z_bg_mizu_water.h ├── ovl_Bg_Mjin │ ├── z_bg_mjin.c │ └── z_bg_mjin.h ├── ovl_Bg_Mori_Bigst │ ├── z_bg_mori_bigst.c │ └── z_bg_mori_bigst.h ├── ovl_Bg_Mori_Elevator │ ├── z_bg_mori_elevator.c │ └── z_bg_mori_elevator.h ├── ovl_Bg_Mori_Hashigo │ ├── z_bg_mori_hashigo.c │ └── z_bg_mori_hashigo.h ├── ovl_Bg_Mori_Hashira4 │ ├── z_bg_mori_hashira4.c │ └── z_bg_mori_hashira4.h ├── ovl_Bg_Mori_Hineri │ ├── z_bg_mori_hineri.c │ └── z_bg_mori_hineri.h ├── ovl_Bg_Mori_Idomizu │ ├── z_bg_mori_idomizu.c │ └── z_bg_mori_idomizu.h ├── ovl_Bg_Mori_Kaitenkabe │ ├── z_bg_mori_kaitenkabe.c │ └── z_bg_mori_kaitenkabe.h ├── ovl_Bg_Mori_Rakkatenjo │ ├── z_bg_mori_rakkatenjo.c │ └── z_bg_mori_rakkatenjo.h ├── ovl_Bg_Po_Event │ ├── z_bg_po_event.c │ └── z_bg_po_event.h ├── ovl_Bg_Po_Syokudai │ ├── z_bg_po_syokudai.c │ └── z_bg_po_syokudai.h ├── ovl_Bg_Pushbox │ ├── z_bg_pushbox.c │ └── z_bg_pushbox.h ├── ovl_Bg_Relay_Objects │ ├── z_bg_relay_objects.c │ └── z_bg_relay_objects.h ├── ovl_Bg_Spot00_Break │ ├── z_bg_spot00_break.c │ └── z_bg_spot00_break.h ├── ovl_Bg_Spot00_Hanebasi │ ├── z_bg_spot00_hanebasi.c │ └── z_bg_spot00_hanebasi.h ├── ovl_Bg_Spot01_Fusya │ ├── z_bg_spot01_fusya.c │ └── z_bg_spot01_fusya.h ├── ovl_Bg_Spot01_Idohashira │ ├── z_bg_spot01_idohashira.c │ └── z_bg_spot01_idohashira.h ├── ovl_Bg_Spot01_Idomizu │ ├── z_bg_spot01_idomizu.c │ └── z_bg_spot01_idomizu.h ├── ovl_Bg_Spot01_Idosoko │ ├── z_bg_spot01_idosoko.c │ └── z_bg_spot01_idosoko.h ├── ovl_Bg_Spot01_Objects2 │ ├── z_bg_spot01_objects2.c │ └── z_bg_spot01_objects2.h ├── ovl_Bg_Spot02_Objects │ ├── z_bg_spot02_objects.c │ └── z_bg_spot02_objects.h ├── ovl_Bg_Spot03_Taki │ ├── z_bg_spot03_taki.c │ └── z_bg_spot03_taki.h ├── ovl_Bg_Spot05_Soko │ ├── z_bg_spot05_soko.c │ └── z_bg_spot05_soko.h ├── ovl_Bg_Spot06_Objects │ ├── z_bg_spot06_objects.c │ └── z_bg_spot06_objects.h ├── ovl_Bg_Spot07_Taki │ ├── z_bg_spot07_taki.c │ └── z_bg_spot07_taki.h ├── ovl_Bg_Spot08_Bakudankabe │ ├── z_bg_spot08_bakudankabe.c │ └── z_bg_spot08_bakudankabe.h ├── ovl_Bg_Spot08_Iceblock │ ├── z_bg_spot08_iceblock.c │ └── z_bg_spot08_iceblock.h ├── ovl_Bg_Spot09_Obj │ ├── z_bg_spot09_obj.c │ └── z_bg_spot09_obj.h ├── ovl_Bg_Spot11_Bakudankabe │ ├── z_bg_spot11_bakudankabe.c │ └── z_bg_spot11_bakudankabe.h ├── ovl_Bg_Spot11_Oasis │ ├── z_bg_spot11_oasis.c │ └── z_bg_spot11_oasis.h ├── ovl_Bg_Spot12_Gate │ ├── z_bg_spot12_gate.c │ └── z_bg_spot12_gate.h ├── ovl_Bg_Spot12_Saku │ ├── z_bg_spot12_saku.c │ └── z_bg_spot12_saku.h ├── ovl_Bg_Spot15_Rrbox │ ├── z_bg_spot15_rrbox.c │ └── z_bg_spot15_rrbox.h ├── ovl_Bg_Spot15_Saku │ ├── z_bg_spot15_saku.c │ └── z_bg_spot15_saku.h ├── ovl_Bg_Spot16_Bombstone │ ├── z_bg_spot16_bombstone.c │ └── z_bg_spot16_bombstone.h ├── ovl_Bg_Spot16_Doughnut │ ├── z_bg_spot16_doughnut.c │ └── z_bg_spot16_doughnut.h ├── ovl_Bg_Spot17_Bakudankabe │ ├── z_bg_spot17_bakudankabe.c │ └── z_bg_spot17_bakudankabe.h ├── ovl_Bg_Spot17_Funen │ ├── z_bg_spot17_funen.c │ └── z_bg_spot17_funen.h ├── ovl_Bg_Spot18_Basket │ ├── z_bg_spot18_basket.c │ └── z_bg_spot18_basket.h ├── ovl_Bg_Spot18_Futa │ ├── z_bg_spot18_futa.c │ └── z_bg_spot18_futa.h ├── ovl_Bg_Spot18_Obj │ ├── z_bg_spot18_obj.c │ └── z_bg_spot18_obj.h ├── ovl_Bg_Spot18_Shutter │ ├── z_bg_spot18_shutter.c │ └── z_bg_spot18_shutter.h ├── ovl_Bg_Sst_Floor │ ├── z_bg_sst_floor.c │ └── z_bg_sst_floor.h ├── ovl_Bg_Toki_Hikari │ ├── z_bg_toki_hikari.c │ └── z_bg_toki_hikari.h ├── ovl_Bg_Toki_Swd │ ├── z_bg_toki_swd.c │ ├── z_bg_toki_swd.h │ ├── z_bg_toki_swd_cutscene_data_1.c │ ├── z_bg_toki_swd_cutscene_data_2.c │ └── z_bg_toki_swd_cutscene_data_3.c ├── ovl_Bg_Treemouth │ ├── z_bg_treemouth.c │ ├── z_bg_treemouth.h │ └── z_bg_treemouth_cutscene_data.c ├── ovl_Bg_Umajump │ ├── z_bg_umajump.c │ └── z_bg_umajump.h ├── ovl_Bg_Vb_Sima │ ├── z_bg_vb_sima.c │ └── z_bg_vb_sima.h ├── ovl_Bg_Ydan_Hasi │ ├── z_bg_ydan_hasi.c │ └── z_bg_ydan_hasi.h ├── ovl_Bg_Ydan_Maruta │ ├── z_bg_ydan_maruta.c │ └── z_bg_ydan_maruta.h ├── ovl_Bg_Ydan_Sp │ ├── z_bg_ydan_sp.c │ └── z_bg_ydan_sp.h ├── ovl_Bg_Zg │ ├── z_bg_zg.c │ └── z_bg_zg.h ├── ovl_Boss_Dodongo │ ├── z_boss_dodongo.c │ ├── z_boss_dodongo.h │ └── z_boss_dodongo_data.c ├── ovl_Boss_Fd │ ├── z_boss_fd.c │ ├── z_boss_fd.h │ └── z_boss_fd_colchk.c ├── ovl_Boss_Fd2 │ ├── z_boss_fd2.c │ ├── z_boss_fd2.h │ └── z_boss_fd2_colchk.c ├── ovl_Boss_Ganon │ ├── z_boss_ganon.c │ └── z_boss_ganon.h ├── ovl_Boss_Ganon2 │ ├── z_boss_ganon2.c │ ├── z_boss_ganon2.h │ └── z_boss_ganon2_data.c ├── ovl_Boss_Ganondrof │ ├── z_boss_ganondrof.c │ └── z_boss_ganondrof.h ├── ovl_Boss_Goma │ ├── z_boss_goma.c │ └── z_boss_goma.h ├── ovl_Boss_Mo │ ├── z_boss_mo.c │ ├── z_boss_mo.h │ └── z_boss_mo_colchk.c ├── ovl_Boss_Sst │ ├── z_boss_sst.c │ ├── z_boss_sst.h │ └── z_boss_sst_colchk.c ├── ovl_Boss_Tw │ ├── z_boss_tw.c │ └── z_boss_tw.h ├── ovl_Boss_Va │ ├── z_boss_va.c │ └── z_boss_va.h ├── ovl_Demo_6K │ ├── z_demo_6k.c │ └── z_demo_6k.h ├── ovl_Demo_Du │ ├── z_demo_du.c │ ├── z_demo_du.h │ └── z_demo_du_cutscene_data.c ├── ovl_Demo_Ec │ ├── z_demo_ec.c │ └── z_demo_ec.h ├── ovl_Demo_Effect │ ├── z_demo_effect.c │ └── z_demo_effect.h ├── ovl_Demo_Ext │ ├── z_demo_ext.c │ └── z_demo_ext.h ├── ovl_Demo_Geff │ ├── z_demo_geff.c │ └── z_demo_geff.h ├── ovl_Demo_Gj │ ├── z_demo_gj.c │ └── z_demo_gj.h ├── ovl_Demo_Go │ ├── z_demo_go.c │ └── z_demo_go.h ├── ovl_Demo_Gt │ ├── z_demo_gt.c │ └── z_demo_gt.h ├── ovl_Demo_Ik │ ├── z_demo_ik.c │ └── z_demo_ik.h ├── ovl_Demo_Im │ ├── z_demo_im.c │ ├── z_demo_im.h │ └── z_demo_im_cutscene_data.c ├── ovl_Demo_Kankyo │ ├── z_demo_kankyo.c │ ├── z_demo_kankyo.h │ ├── z_demo_kankyo_cutscene_data1.c │ ├── z_demo_kankyo_cutscene_data2.c │ ├── z_demo_kankyo_cutscene_data3.c │ ├── z_demo_kankyo_cutscene_data4.c │ ├── z_demo_kankyo_cutscene_data5.c │ ├── z_demo_kankyo_cutscene_data6.c │ ├── z_demo_kankyo_cutscene_data7.c │ └── z_demo_kankyo_cutscene_data8.c ├── ovl_Demo_Kekkai │ ├── z_demo_kekkai.c │ └── z_demo_kekkai.h ├── ovl_Demo_Sa │ ├── z_demo_sa.c │ ├── z_demo_sa.h │ └── z_demo_sa_cutscene_data.c ├── ovl_Demo_Shd │ ├── z_demo_shd.c │ └── z_demo_shd.h ├── ovl_Demo_Tre_Lgt │ ├── z_demo_tre_lgt.c │ └── z_demo_tre_lgt.h ├── ovl_Door_Ana │ ├── z_door_ana.c │ └── z_door_ana.h ├── ovl_Door_Gerudo │ ├── z_door_gerudo.c │ └── z_door_gerudo.h ├── ovl_Door_Killer │ ├── z_door_killer.c │ └── z_door_killer.h ├── ovl_Door_Shutter │ ├── z_door_shutter.c │ └── z_door_shutter.h ├── ovl_Door_Toki │ ├── z_door_toki.c │ └── z_door_toki.h ├── ovl_Door_Warp1 │ ├── z_door_warp1.c │ └── z_door_warp1.h ├── ovl_Efc_Erupc │ ├── z_efc_erupc.c │ └── z_efc_erupc.h ├── ovl_Eff_Dust │ ├── z_eff_dust.c │ └── z_eff_dust.h ├── ovl_Elf_Msg │ ├── z_elf_msg.c │ └── z_elf_msg.h ├── ovl_Elf_Msg2 │ ├── z_elf_msg2.c │ └── z_elf_msg2.h ├── ovl_En_Am │ ├── z_en_am.c │ └── z_en_am.h ├── ovl_En_Ani │ ├── z_en_ani.c │ └── z_en_ani.h ├── ovl_En_Anubice │ ├── z_en_anubice.c │ └── z_en_anubice.h ├── ovl_En_Anubice_Fire │ ├── z_en_anubice_fire.c │ └── z_en_anubice_fire.h ├── ovl_En_Anubice_Tag │ ├── z_en_anubice_tag.c │ └── z_en_anubice_tag.h ├── ovl_En_Arow_Trap │ ├── z_en_arow_trap.c │ └── z_en_arow_trap.h ├── ovl_En_Arrow │ ├── z_en_arrow.c │ └── z_en_arrow.h ├── ovl_En_Attack_Niw │ ├── z_en_attack_niw.c │ └── z_en_attack_niw.h ├── ovl_En_Ba │ ├── z_en_ba.c │ └── z_en_ba.h ├── ovl_En_Bb │ ├── z_en_bb.c │ └── z_en_bb.h ├── ovl_En_Bdfire │ ├── z_en_bdfire.c │ └── z_en_bdfire.h ├── ovl_En_Bigokuta │ ├── z_en_bigokuta.c │ └── z_en_bigokuta.h ├── ovl_En_Bili │ ├── z_en_bili.c │ └── z_en_bili.h ├── ovl_En_Bird │ ├── z_en_bird.c │ └── z_en_bird.h ├── ovl_En_Blkobj │ ├── z_en_blkobj.c │ └── z_en_blkobj.h ├── ovl_En_Bom │ ├── z_en_bom.c │ └── z_en_bom.h ├── ovl_En_Bom_Bowl_Man │ ├── z_en_bom_bowl_man.c │ └── z_en_bom_bowl_man.h ├── ovl_En_Bom_Bowl_Pit │ ├── z_en_bom_bowl_pit.c │ └── z_en_bom_bowl_pit.h ├── ovl_En_Bom_Chu │ ├── z_en_bom_chu.c │ └── z_en_bom_chu.h ├── ovl_En_Bombf │ ├── z_en_bombf.c │ └── z_en_bombf.h ├── ovl_En_Boom │ ├── z_en_boom.c │ └── z_en_boom.h ├── ovl_En_Box │ ├── z_en_box.c │ └── z_en_box.h ├── ovl_En_Brob │ ├── z_en_brob.c │ └── z_en_brob.h ├── ovl_En_Bubble │ ├── z_en_bubble.c │ └── z_en_bubble.h ├── ovl_En_Butte │ ├── z_en_butte.c │ └── z_en_butte.h ├── ovl_En_Bw │ ├── z_en_bw.c │ └── z_en_bw.h ├── ovl_En_Bx │ ├── z_en_bx.c │ └── z_en_bx.h ├── ovl_En_Changer │ ├── z_en_changer.c │ └── z_en_changer.h ├── ovl_En_Clear_Tag │ ├── z_en_clear_tag.c │ └── z_en_clear_tag.h ├── ovl_En_Cow │ ├── z_en_cow.c │ └── z_en_cow.h ├── ovl_En_Crow │ ├── z_en_crow.c │ └── z_en_crow.h ├── ovl_En_Cs │ ├── z_en_cs.c │ └── z_en_cs.h ├── ovl_En_Daiku │ ├── z_en_daiku.c │ └── z_en_daiku.h ├── ovl_En_Daiku_Kakariko │ ├── z_en_daiku_kakariko.c │ └── z_en_daiku_kakariko.h ├── ovl_En_Dekubaba │ ├── z_en_dekubaba.c │ └── z_en_dekubaba.h ├── ovl_En_Dekunuts │ ├── z_en_dekunuts.c │ └── z_en_dekunuts.h ├── ovl_En_Dh │ ├── z_en_dh.c │ └── z_en_dh.h ├── ovl_En_Dha │ ├── z_en_dha.c │ └── z_en_dha.h ├── ovl_En_Diving_Game │ ├── z_en_diving_game.c │ └── z_en_diving_game.h ├── ovl_En_Dns │ ├── z_en_dns.c │ └── z_en_dns.h ├── ovl_En_Dnt_Demo │ ├── z_en_dnt_demo.c │ └── z_en_dnt_demo.h ├── ovl_En_Dnt_Jiji │ ├── z_en_dnt_jiji.c │ └── z_en_dnt_jiji.h ├── ovl_En_Dnt_Nomal │ ├── z_en_dnt_nomal.c │ └── z_en_dnt_nomal.h ├── ovl_En_Dodojr │ ├── z_en_dodojr.c │ └── z_en_dodojr.h ├── ovl_En_Dodongo │ ├── z_en_dodongo.c │ └── z_en_dodongo.h ├── ovl_En_Dog │ ├── z_en_dog.c │ └── z_en_dog.h ├── ovl_En_Door │ ├── z_en_door.c │ └── z_en_door.h ├── ovl_En_Ds │ ├── z_en_ds.c │ └── z_en_ds.h ├── ovl_En_Du │ ├── z_en_du.c │ └── z_en_du.h ├── ovl_En_Dy_Extra │ ├── z_en_dy_extra.c │ └── z_en_dy_extra.h ├── ovl_En_Eg │ ├── z_en_eg.c │ └── z_en_eg.h ├── ovl_En_Eiyer │ ├── z_en_eiyer.c │ └── z_en_eiyer.h ├── ovl_En_Elf │ ├── z_en_elf.c │ └── z_en_elf.h ├── ovl_En_Encount1 │ ├── z_en_encount1.c │ └── z_en_encount1.h ├── ovl_En_Encount2 │ ├── z_en_encount2.c │ └── z_en_encount2.h ├── ovl_En_Ex_Item │ ├── z_en_ex_item.c │ └── z_en_ex_item.h ├── ovl_En_Ex_Ruppy │ ├── z_en_ex_ruppy.c │ └── z_en_ex_ruppy.h ├── ovl_En_Fd │ ├── z_en_fd.c │ └── z_en_fd.h ├── ovl_En_Fd_Fire │ ├── z_en_fd_fire.c │ └── z_en_fd_fire.h ├── ovl_En_Fhg_Fire │ ├── z_en_fhg_fire.c │ └── z_en_fhg_fire.h ├── ovl_En_Fire_Rock │ ├── z_en_fire_rock.c │ └── z_en_fire_rock.h ├── ovl_En_Firefly │ ├── z_en_firefly.c │ └── z_en_firefly.h ├── ovl_En_Fish │ ├── z_en_fish.c │ └── z_en_fish.h ├── ovl_En_Floormas │ ├── z_en_floormas.c │ └── z_en_floormas.h ├── ovl_En_Fr │ ├── z_en_fr.c │ └── z_en_fr.h ├── ovl_En_Fu │ ├── z_en_fu.c │ └── z_en_fu.h ├── ovl_En_Fw │ ├── z_en_fw.c │ └── z_en_fw.h ├── ovl_En_Fz │ ├── z_en_fz.c │ └── z_en_fz.h ├── ovl_En_G_Switch │ ├── z_en_g_switch.c │ └── z_en_g_switch.h ├── ovl_En_Ganon_Mant │ ├── z_en_ganon_mant.c │ └── z_en_ganon_mant.h ├── ovl_En_Ganon_Organ │ ├── z_en_ganon_organ.c │ └── z_en_ganon_organ.h ├── ovl_En_Gb │ ├── z_en_gb.c │ └── z_en_gb.h ├── ovl_En_Ge1 │ ├── z_en_ge1.c │ └── z_en_ge1.h ├── ovl_En_Ge2 │ ├── z_en_ge2.c │ └── z_en_ge2.h ├── ovl_En_Ge3 │ ├── z_en_ge3.c │ └── z_en_ge3.h ├── ovl_En_GeldB │ ├── z_en_geldb.c │ └── z_en_geldb.h ├── ovl_En_GirlA │ ├── z_en_girla.c │ └── z_en_girla.h ├── ovl_En_Gm │ ├── z_en_gm.c │ └── z_en_gm.h ├── ovl_En_Go │ ├── z_en_go.c │ └── z_en_go.h ├── ovl_En_Go2 │ ├── z_en_go2.c │ └── z_en_go2.h ├── ovl_En_Goma │ ├── z_en_goma.c │ └── z_en_goma.h ├── ovl_En_Goroiwa │ ├── z_en_goroiwa.c │ └── z_en_goroiwa.h ├── ovl_En_Gs │ ├── z_en_gs.c │ └── z_en_gs.h ├── ovl_En_Guest │ ├── z_en_guest.c │ └── z_en_guest.h ├── ovl_En_Hata │ ├── z_en_hata.c │ └── z_en_hata.h ├── ovl_En_Heishi1 │ ├── z_en_heishi1.c │ └── z_en_heishi1.h ├── ovl_En_Heishi2 │ ├── z_en_heishi2.c │ └── z_en_heishi2.h ├── ovl_En_Heishi3 │ ├── z_en_heishi3.c │ └── z_en_heishi3.h ├── ovl_En_Heishi4 │ ├── z_en_heishi4.c │ └── z_en_heishi4.h ├── ovl_En_Hintnuts │ ├── z_en_hintnuts.c │ └── z_en_hintnuts.h ├── ovl_En_Holl │ ├── z_en_holl.c │ └── z_en_holl.h ├── ovl_En_Honotrap │ ├── z_en_honotrap.c │ └── z_en_honotrap.h ├── ovl_En_Horse │ ├── z_en_horse.c │ └── z_en_horse.h ├── ovl_En_Horse_Game_Check │ ├── z_en_horse_game_check.c │ └── z_en_horse_game_check.h ├── ovl_En_Horse_Ganon │ ├── z_en_horse_ganon.c │ └── z_en_horse_ganon.h ├── ovl_En_Horse_Link_Child │ ├── z_en_horse_link_child.c │ └── z_en_horse_link_child.h ├── ovl_En_Horse_Normal │ ├── z_en_horse_normal.c │ └── z_en_horse_normal.h ├── ovl_En_Horse_Zelda │ ├── z_en_horse_zelda.c │ └── z_en_horse_zelda.h ├── ovl_En_Hs │ ├── z_en_hs.c │ └── z_en_hs.h ├── ovl_En_Hs2 │ ├── z_en_hs2.c │ └── z_en_hs2.h ├── ovl_En_Hy │ ├── z_en_hy.c │ └── z_en_hy.h ├── ovl_En_Ice_Hono │ ├── z_en_ice_hono.c │ └── z_en_ice_hono.h ├── ovl_En_Ik │ ├── z_en_ik.c │ └── z_en_ik.h ├── ovl_En_In │ ├── z_en_in.c │ └── z_en_in.h ├── ovl_En_Insect │ ├── z_en_insect.c │ └── z_en_insect.h ├── ovl_En_Ishi │ ├── z_en_ishi.c │ └── z_en_ishi.h ├── ovl_En_It │ ├── z_en_it.c │ └── z_en_it.h ├── ovl_En_Jj │ ├── z_en_jj.c │ ├── z_en_jj.h │ └── z_en_jj_cutscene_data.c ├── ovl_En_Js │ ├── z_en_js.c │ └── z_en_js.h ├── ovl_En_Jsjutan │ ├── z_en_jsjutan.c │ └── z_en_jsjutan.h ├── ovl_En_Kakasi │ ├── z_en_kakasi.c │ └── z_en_kakasi.h ├── ovl_En_Kakasi2 │ ├── z_en_kakasi2.c │ └── z_en_kakasi2.h ├── ovl_En_Kakasi3 │ ├── z_en_kakasi3.c │ └── z_en_kakasi3.h ├── ovl_En_Kanban │ ├── z_en_kanban.c │ ├── z_en_kanban.h │ └── z_en_kanban_gfx.c ├── ovl_En_Karebaba │ ├── z_en_karebaba.c │ └── z_en_karebaba.h ├── ovl_En_Ko │ ├── z_en_ko.c │ └── z_en_ko.h ├── ovl_En_Kusa │ ├── z_en_kusa.c │ └── z_en_kusa.h ├── ovl_En_Kz │ ├── z_en_kz.c │ └── z_en_kz.h ├── ovl_En_Light │ ├── z_en_light.c │ └── z_en_light.h ├── ovl_En_Lightbox │ ├── z_en_lightbox.c │ └── z_en_lightbox.h ├── ovl_En_M_Fire1 │ ├── z_en_m_fire1.c │ └── z_en_m_fire1.h ├── ovl_En_M_Thunder │ ├── z_en_m_thunder.c │ └── z_en_m_thunder.h ├── ovl_En_Ma1 │ ├── z_en_ma1.c │ └── z_en_ma1.h ├── ovl_En_Ma2 │ ├── z_en_ma2.c │ └── z_en_ma2.h ├── ovl_En_Ma3 │ ├── z_en_ma3.c │ └── z_en_ma3.h ├── ovl_En_Mag │ ├── z_en_mag.c │ └── z_en_mag.h ├── ovl_En_Mb │ ├── z_en_mb.c │ └── z_en_mb.h ├── ovl_En_Md │ ├── z_en_md.c │ └── z_en_md.h ├── ovl_En_Mk │ ├── z_en_mk.c │ └── z_en_mk.h ├── ovl_En_Mm │ ├── z_en_mm.c │ └── z_en_mm.h ├── ovl_En_Mm2 │ ├── z_en_mm2.c │ └── z_en_mm2.h ├── ovl_En_Ms │ ├── z_en_ms.c │ └── z_en_ms.h ├── ovl_En_Mu │ ├── z_en_mu.c │ └── z_en_mu.h ├── ovl_En_Nb │ ├── z_en_nb.c │ ├── z_en_nb.h │ └── z_en_nb_cutscene_data.c ├── ovl_En_Niw │ ├── z_en_niw.c │ └── z_en_niw.h ├── ovl_En_Niw_Girl │ ├── z_en_niw_girl.c │ └── z_en_niw_girl.h ├── ovl_En_Niw_Lady │ ├── z_en_niw_lady.c │ └── z_en_niw_lady.h ├── ovl_En_Nutsball │ ├── z_en_nutsball.c │ └── z_en_nutsball.h ├── ovl_En_Nwc │ ├── z_en_nwc.c │ └── z_en_nwc.h ├── ovl_En_Ny │ ├── z_en_ny.c │ └── z_en_ny.h ├── ovl_En_OE2 │ ├── z_en_oe2.c │ └── z_en_oe2.h ├── ovl_En_Okarina_Effect │ ├── z_en_okarina_effect.c │ └── z_en_okarina_effect.h ├── ovl_En_Okarina_Tag │ ├── z_en_okarina_tag.c │ ├── z_en_okarina_tag.h │ └── z_en_okarina_tag_cutscene_data.c ├── ovl_En_Okuta │ ├── z_en_okuta.c │ └── z_en_okuta.h ├── ovl_En_Ossan │ ├── z_en_ossan.c │ └── z_en_ossan.h ├── ovl_En_Owl │ ├── z_en_owl.c │ └── z_en_owl.h ├── ovl_En_Part │ ├── z_en_part.c │ └── z_en_part.h ├── ovl_En_Partner │ ├── z_en_partner.c │ └── z_en_partner.h ├── ovl_En_Peehat │ ├── z_en_peehat.c │ └── z_en_peehat.h ├── ovl_En_Po_Desert │ ├── z_en_po_desert.c │ └── z_en_po_desert.h ├── ovl_En_Po_Field │ ├── z_en_po_field.c │ └── z_en_po_field.h ├── ovl_En_Po_Relay │ ├── z_en_po_relay.c │ └── z_en_po_relay.h ├── ovl_En_Po_Sisters │ ├── z_en_po_sisters.c │ └── z_en_po_sisters.h ├── ovl_En_Poh │ ├── z_en_poh.c │ └── z_en_poh.h ├── ovl_En_Pu_box │ ├── z_en_pu_box.c │ └── z_en_pu_box.h ├── ovl_En_Rd │ ├── z_en_rd.c │ └── z_en_rd.h ├── ovl_En_Reeba │ ├── z_en_reeba.c │ └── z_en_reeba.h ├── ovl_En_River_Sound │ ├── z_en_river_sound.c │ └── z_en_river_sound.h ├── ovl_En_Rl │ ├── z_en_rl.c │ └── z_en_rl.h ├── ovl_En_Rr │ ├── z_en_rr.c │ └── z_en_rr.h ├── ovl_En_Ru1 │ ├── z_en_ru1.c │ ├── z_en_ru1.h │ └── z_en_ru1_cutscene_data.c ├── ovl_En_Ru2 │ ├── z_en_ru2.c │ ├── z_en_ru2.h │ └── z_en_ru2_cutscene_data.c ├── ovl_En_Sa │ ├── z_en_sa.c │ └── z_en_sa.h ├── ovl_En_Sb │ ├── z_en_sb.c │ └── z_en_sb.h ├── ovl_En_Scene_Change │ ├── z_en_scene_change.c │ └── z_en_scene_change.h ├── ovl_En_Sda │ ├── z_en_sda.c │ └── z_en_sda.h ├── ovl_En_Shopnuts │ ├── z_en_shopnuts.c │ └── z_en_shopnuts.h ├── ovl_En_Si │ ├── z_en_si.c │ └── z_en_si.h ├── ovl_En_Siofuki │ ├── z_en_siofuki.c │ └── z_en_siofuki.h ├── ovl_En_Skb │ ├── z_en_skb.c │ └── z_en_skb.h ├── ovl_En_Skj │ ├── z_en_skj.c │ └── z_en_skj.h ├── ovl_En_Skjneedle │ ├── z_en_skjneedle.c │ └── z_en_skjneedle.h ├── ovl_En_Ssh │ ├── z_en_ssh.c │ └── z_en_ssh.h ├── ovl_En_St │ ├── z_en_st.c │ └── z_en_st.h ├── ovl_En_Sth │ ├── z_en_sth.c │ └── z_en_sth.h ├── ovl_En_Stream │ ├── z_en_stream.c │ └── z_en_stream.h ├── ovl_En_Sw │ ├── z_en_sw.c │ └── z_en_sw.h ├── ovl_En_Syateki_Itm │ ├── z_en_syateki_itm.c │ └── z_en_syateki_itm.h ├── ovl_En_Syateki_Man │ ├── z_en_syateki_man.c │ └── z_en_syateki_man.h ├── ovl_En_Syateki_Niw │ ├── z_en_syateki_niw.c │ └── z_en_syateki_niw.h ├── ovl_En_Ta │ ├── z_en_ta.c │ └── z_en_ta.h ├── ovl_En_Takara_Man │ ├── z_en_takara_man.c │ └── z_en_takara_man.h ├── ovl_En_Tana │ ├── z_en_tana.c │ └── z_en_tana.h ├── ovl_En_Test │ ├── z_en_test.c │ └── z_en_test.h ├── ovl_En_Tg │ ├── z_en_tg.c │ └── z_en_tg.h ├── ovl_En_Tite │ ├── z_en_tite.c │ └── z_en_tite.h ├── ovl_En_Tk │ ├── z_en_tk.c │ └── z_en_tk.h ├── ovl_En_Torch │ ├── z_en_torch.c │ └── z_en_torch.h ├── ovl_En_Torch2 │ ├── z_en_torch2.c │ └── z_en_torch2.h ├── ovl_En_Toryo │ ├── z_en_toryo.c │ └── z_en_toryo.h ├── ovl_En_Tp │ ├── z_en_tp.c │ └── z_en_tp.h ├── ovl_En_Tr │ ├── z_en_tr.c │ └── z_en_tr.h ├── ovl_En_Trap │ ├── z_en_trap.c │ └── z_en_trap.h ├── ovl_En_Tubo_Trap │ ├── z_en_tubo_trap.c │ └── z_en_tubo_trap.h ├── ovl_En_Vali │ ├── z_en_vali.c │ └── z_en_vali.h ├── ovl_En_Vase │ ├── z_en_vase.c │ └── z_en_vase.h ├── ovl_En_Vb_Ball │ ├── z_en_vb_ball.c │ └── z_en_vb_ball.h ├── ovl_En_Viewer │ ├── z_en_viewer.c │ └── z_en_viewer.h ├── ovl_En_Vm │ ├── z_en_vm.c │ └── z_en_vm.h ├── ovl_En_Wall_Tubo │ ├── z_en_wall_tubo.c │ └── z_en_wall_tubo.h ├── ovl_En_Wallmas │ ├── z_en_wallmas.c │ └── z_en_wallmas.h ├── ovl_En_Weather_Tag │ ├── z_en_weather_tag.c │ └── z_en_weather_tag.h ├── ovl_En_Weiyer │ ├── z_en_weiyer.c │ └── z_en_weiyer.h ├── ovl_En_Wf │ ├── z_en_wf.c │ └── z_en_wf.h ├── ovl_En_Wonder_Item │ ├── z_en_wonder_item.c │ └── z_en_wonder_item.h ├── ovl_En_Wonder_Talk │ ├── z_en_wonder_talk.c │ └── z_en_wonder_talk.h ├── ovl_En_Wonder_Talk2 │ ├── z_en_wonder_talk2.c │ └── z_en_wonder_talk2.h ├── ovl_En_Wood02 │ ├── z_en_wood02.c │ └── z_en_wood02.h ├── ovl_En_Xc │ ├── z_en_xc.c │ └── z_en_xc.h ├── ovl_En_Yabusame_Mark │ ├── z_en_yabusame_mark.c │ └── z_en_yabusame_mark.h ├── ovl_En_Yukabyun │ ├── z_en_yukabyun.c │ └── z_en_yukabyun.h ├── ovl_En_Zf │ ├── z_en_zf.c │ └── z_en_zf.h ├── ovl_En_Zl1 │ ├── z_en_zl1.c │ ├── z_en_zl1.h │ ├── z_en_zl1_camera_data.c │ └── z_en_zl1_cutscene_data.c ├── ovl_En_Zl2 │ ├── z_en_zl2.c │ └── z_en_zl2.h ├── ovl_En_Zl3 │ ├── z_en_zl3.c │ └── z_en_zl3.h ├── ovl_En_Zl4 │ ├── z_en_zl4.c │ ├── z_en_zl4.h │ └── z_en_zl4_cutscene_data.c ├── ovl_En_Zo │ ├── z_en_zo.c │ └── z_en_zo.h ├── ovl_En_fHG │ ├── z_en_fhg.c │ └── z_en_fhg.h ├── ovl_End_Title │ ├── z_end_title.c │ └── z_end_title.h ├── ovl_Fishing │ ├── z_fishing.c │ └── z_fishing.h ├── ovl_Item_B_Heart │ ├── z_item_b_heart.c │ └── z_item_b_heart.h ├── ovl_Item_Etcetera │ ├── z_item_etcetera.c │ └── z_item_etcetera.h ├── ovl_Item_Inbox │ ├── z_item_inbox.c │ └── z_item_inbox.h ├── ovl_Item_Ocarina │ ├── z_item_ocarina.c │ └── z_item_ocarina.h ├── ovl_Item_Shield │ ├── z_item_shield.c │ └── z_item_shield.h ├── ovl_Magic_Dark │ ├── z_magic_dark.c │ └── z_magic_dark.h ├── ovl_Magic_Fire │ ├── z_magic_fire.c │ └── z_magic_fire.h ├── ovl_Magic_Wind │ ├── z_magic_wind.c │ └── z_magic_wind.h ├── ovl_Mir_Ray │ ├── z_mir_ray.c │ └── z_mir_ray.h ├── ovl_Obj_Bean │ ├── z_obj_bean.c │ └── z_obj_bean.h ├── ovl_Obj_Blockstop │ ├── z_obj_blockstop.c │ └── z_obj_blockstop.h ├── ovl_Obj_Bombiwa │ ├── z_obj_bombiwa.c │ └── z_obj_bombiwa.h ├── ovl_Obj_Comb │ ├── z_obj_comb.c │ └── z_obj_comb.h ├── ovl_Obj_Dekujr │ ├── z_obj_dekujr.c │ └── z_obj_dekujr.h ├── ovl_Obj_Elevator │ ├── z_obj_elevator.c │ └── z_obj_elevator.h ├── ovl_Obj_Hamishi │ ├── z_obj_hamishi.c │ └── z_obj_hamishi.h ├── ovl_Obj_Hana │ ├── z_obj_hana.c │ └── z_obj_hana.h ├── ovl_Obj_Hsblock │ ├── z_obj_hsblock.c │ └── z_obj_hsblock.h ├── ovl_Obj_Ice_Poly │ ├── z_obj_ice_poly.c │ └── z_obj_ice_poly.h ├── ovl_Obj_Kibako │ ├── z_obj_kibako.c │ └── z_obj_kibako.h ├── ovl_Obj_Kibako2 │ ├── z_obj_kibako2.c │ └── z_obj_kibako2.h ├── ovl_Obj_Lift │ ├── z_obj_lift.c │ └── z_obj_lift.h ├── ovl_Obj_Lightswitch │ ├── z_obj_lightswitch.c │ └── z_obj_lightswitch.h ├── ovl_Obj_Makekinsuta │ ├── z_obj_makekinsuta.c │ └── z_obj_makekinsuta.h ├── ovl_Obj_Makeoshihiki │ ├── z_obj_makeoshihiki.c │ └── z_obj_makeoshihiki.h ├── ovl_Obj_Mure │ ├── z_obj_mure.c │ └── z_obj_mure.h ├── ovl_Obj_Mure2 │ ├── z_obj_mure2.c │ └── z_obj_mure2.h ├── ovl_Obj_Mure3 │ ├── z_obj_mure3.c │ └── z_obj_mure3.h ├── ovl_Obj_Oshihiki │ ├── z_obj_oshihiki.c │ └── z_obj_oshihiki.h ├── ovl_Obj_Roomtimer │ ├── z_obj_roomtimer.c │ └── z_obj_roomtimer.h ├── ovl_Obj_Switch │ ├── z_obj_switch.c │ └── z_obj_switch.h ├── ovl_Obj_Syokudai │ ├── z_obj_syokudai.c │ └── z_obj_syokudai.h ├── ovl_Obj_Timeblock │ ├── z_obj_timeblock.c │ └── z_obj_timeblock.h ├── ovl_Obj_Tsubo │ ├── z_obj_tsubo.c │ └── z_obj_tsubo.h ├── ovl_Obj_Warp2block │ ├── z_obj_warp2block.c │ └── z_obj_warp2block.h ├── ovl_Object_Kankyo │ ├── z_object_kankyo.c │ └── z_object_kankyo.h ├── ovl_Oceff_Spot │ ├── z_oceff_spot.c │ └── z_oceff_spot.h ├── ovl_Oceff_Storm │ ├── z_oceff_storm.c │ └── z_oceff_storm.h ├── ovl_Oceff_Wipe │ ├── z_oceff_wipe.c │ └── z_oceff_wipe.h ├── ovl_Oceff_Wipe2 │ ├── z_oceff_wipe2.c │ └── z_oceff_wipe2.h ├── ovl_Oceff_Wipe3 │ ├── z_oceff_wipe3.c │ └── z_oceff_wipe3.h ├── ovl_Oceff_Wipe4 │ ├── z_oceff_wipe4.c │ └── z_oceff_wipe4.h ├── ovl_Shot_Sun │ ├── z_shot_sun.c │ └── z_shot_sun.h └── ovl_player_actor │ └── z_player.c ├── effects ├── ovl_Effect_Ss_Blast │ ├── z_eff_ss_blast.c │ └── z_eff_ss_blast.h ├── ovl_Effect_Ss_Bomb │ ├── z_eff_ss_bomb.c │ └── z_eff_ss_bomb.h ├── ovl_Effect_Ss_Bomb2 │ ├── z_eff_ss_bomb2.c │ └── z_eff_ss_bomb2.h ├── ovl_Effect_Ss_Bubble │ ├── z_eff_ss_bubble.c │ └── z_eff_ss_bubble.h ├── ovl_Effect_Ss_D_Fire │ ├── z_eff_ss_d_fire.c │ └── z_eff_ss_d_fire.h ├── ovl_Effect_Ss_Dead_Db │ ├── z_eff_ss_dead_db.c │ └── z_eff_ss_dead_db.h ├── ovl_Effect_Ss_Dead_Dd │ ├── z_eff_ss_dead_dd.c │ └── z_eff_ss_dead_dd.h ├── ovl_Effect_Ss_Dead_Ds │ ├── z_eff_ss_dead_ds.c │ └── z_eff_ss_dead_ds.h ├── ovl_Effect_Ss_Dead_Sound │ ├── z_eff_ss_dead_sound.c │ └── z_eff_ss_dead_sound.h ├── ovl_Effect_Ss_Dt_Bubble │ ├── z_eff_ss_dt_bubble.c │ └── z_eff_ss_dt_bubble.h ├── ovl_Effect_Ss_Dust │ ├── z_eff_ss_dust.c │ └── z_eff_ss_dust.h ├── ovl_Effect_Ss_En_Fire │ ├── z_eff_ss_en_fire.c │ └── z_eff_ss_en_fire.h ├── ovl_Effect_Ss_En_Ice │ ├── z_eff_ss_en_ice.c │ └── z_eff_ss_en_ice.h ├── ovl_Effect_Ss_Extra │ ├── z_eff_ss_extra.c │ └── z_eff_ss_extra.h ├── ovl_Effect_Ss_Fcircle │ ├── z_eff_ss_fcircle.c │ └── z_eff_ss_fcircle.h ├── ovl_Effect_Ss_Fhg_Flash │ ├── z_eff_ss_fhg_flash.c │ └── z_eff_ss_fhg_flash.h ├── ovl_Effect_Ss_Fire_Tail │ ├── z_eff_ss_fire_tail.c │ └── z_eff_ss_fire_tail.h ├── ovl_Effect_Ss_G_Fire │ ├── z_eff_ss_g_fire.c │ └── z_eff_ss_g_fire.h ├── ovl_Effect_Ss_G_Magma │ ├── z_eff_ss_g_magma.c │ └── z_eff_ss_g_magma.h ├── ovl_Effect_Ss_G_Magma2 │ ├── z_eff_ss_g_magma2.c │ └── z_eff_ss_g_magma2.h ├── ovl_Effect_Ss_G_Ripple │ ├── z_eff_ss_g_ripple.c │ └── z_eff_ss_g_ripple.h ├── ovl_Effect_Ss_G_Spk │ ├── z_eff_ss_g_spk.c │ └── z_eff_ss_g_spk.h ├── ovl_Effect_Ss_G_Splash │ ├── z_eff_ss_g_splash.c │ └── z_eff_ss_g_splash.h ├── ovl_Effect_Ss_Hahen │ ├── z_eff_ss_hahen.c │ └── z_eff_ss_hahen.h ├── ovl_Effect_Ss_HitMark │ ├── z_eff_ss_hitmark.c │ └── z_eff_ss_hitmark.h ├── ovl_Effect_Ss_Ice_Piece │ ├── z_eff_ss_ice_piece.c │ └── z_eff_ss_ice_piece.h ├── ovl_Effect_Ss_Ice_Smoke │ ├── z_eff_ss_ice_smoke.c │ └── z_eff_ss_ice_smoke.h ├── ovl_Effect_Ss_K_Fire │ ├── z_eff_ss_k_fire.c │ └── z_eff_ss_k_fire.h ├── ovl_Effect_Ss_Kakera │ ├── z_eff_ss_kakera.c │ └── z_eff_ss_kakera.h ├── ovl_Effect_Ss_KiraKira │ ├── z_eff_ss_kirakira.c │ └── z_eff_ss_kirakira.h ├── ovl_Effect_Ss_Lightning │ ├── z_eff_ss_lightning.c │ └── z_eff_ss_lightning.h ├── ovl_Effect_Ss_Sibuki │ ├── z_eff_ss_sibuki.c │ └── z_eff_ss_sibuki.h ├── ovl_Effect_Ss_Sibuki2 │ ├── z_eff_ss_sibuki2.c │ └── z_eff_ss_sibuki2.h ├── ovl_Effect_Ss_Solder_Srch_Ball │ ├── z_eff_ss_solder_srch_ball.c │ └── z_eff_ss_solder_srch_ball.h ├── ovl_Effect_Ss_Stick │ ├── z_eff_ss_stick.c │ └── z_eff_ss_stick.h └── ovl_Effect_Ss_Stone1 │ ├── z_eff_ss_stone1.c │ └── z_eff_ss_stone1.h ├── gamestates ├── ovl_file_choose │ ├── file_choose.h │ ├── z_file_choose.c │ ├── z_file_copy_erase.c │ ├── z_file_nameset_NES.c │ ├── z_file_nameset_PAL.c │ └── z_file_nameset_data.c ├── ovl_opening │ └── z_opening.c ├── ovl_select │ └── z_select.c └── ovl_title │ └── z_title.c └── misc ├── ovl_kaleido_scope ├── z_kaleido_collect.c ├── z_kaleido_debug.c ├── z_kaleido_equipment.c ├── z_kaleido_item.c ├── z_kaleido_map_PAL.c ├── z_kaleido_prompt.c ├── z_kaleido_scope.h ├── z_kaleido_scope_PAL.c ├── z_lmap_mark.c └── z_lmap_mark_data.c └── ovl_map_mark_data └── z_map_mark_data.c /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/apt-deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.github/workflows/apt-deps.txt -------------------------------------------------------------------------------- /.github/workflows/clang-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.github/workflows/clang-format.yml -------------------------------------------------------------------------------- /.github/workflows/generate-builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.github/workflows/generate-builds.yml -------------------------------------------------------------------------------- /.github/workflows/gtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.github/workflows/gtar -------------------------------------------------------------------------------- /.github/workflows/macports-deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.github/workflows/macports-deps.txt -------------------------------------------------------------------------------- /.github/workflows/pr-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.github/workflows/pr-artifacts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMake/Default.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/Default.cmake -------------------------------------------------------------------------------- /CMake/DefaultCXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/DefaultCXX.cmake -------------------------------------------------------------------------------- /CMake/FindOgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/FindOgg.cmake -------------------------------------------------------------------------------- /CMake/FindOpus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/FindOpus.cmake -------------------------------------------------------------------------------- /CMake/FindOpusFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/FindOpusFile.cmake -------------------------------------------------------------------------------- /CMake/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/FindVorbis.cmake -------------------------------------------------------------------------------- /CMake/Packaging-2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/Packaging-2.cmake -------------------------------------------------------------------------------- /CMake/Packaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/Packaging.cmake -------------------------------------------------------------------------------- /CMake/Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/Utils.cmake -------------------------------------------------------------------------------- /CMake/automate-vcpkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/automate-vcpkg.cmake -------------------------------------------------------------------------------- /CMake/lus-cvars.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/lus-cvars.cmake -------------------------------------------------------------------------------- /CMake/soh-cvars.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMake/soh-cvars.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/README.md -------------------------------------------------------------------------------- /copy-existing-otrs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/copy-existing-otrs.cmake -------------------------------------------------------------------------------- /docs/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/BUILDING.md -------------------------------------------------------------------------------- /docs/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/CREDITS.md -------------------------------------------------------------------------------- /docs/CUSTOM_MUSIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/CUSTOM_MUSIC.md -------------------------------------------------------------------------------- /docs/GAME_CONTROLLER_DB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/GAME_CONTROLLER_DB.md -------------------------------------------------------------------------------- /docs/MODDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/MODDING.md -------------------------------------------------------------------------------- /docs/VERSIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/VERSIONING.md -------------------------------------------------------------------------------- /docs/poweredbylus.darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/poweredbylus.darkmode.png -------------------------------------------------------------------------------- /docs/poweredbylus.lightmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/poweredbylus.lightmode.png -------------------------------------------------------------------------------- /docs/shiptitle.darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/shiptitle.darkmode.png -------------------------------------------------------------------------------- /docs/shiptitle.lightmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/shiptitle.lightmode.png -------------------------------------------------------------------------------- /docs/supportedHashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/docs/supportedHashes.json -------------------------------------------------------------------------------- /run-clang-format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/run-clang-format.ps1 -------------------------------------------------------------------------------- /run-clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/run-clang-format.sh -------------------------------------------------------------------------------- /scripts/linux/appimage/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/scripts/linux/appimage/build.sh -------------------------------------------------------------------------------- /scripts/linux/appimage/soh.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/scripts/linux/appimage/soh.desktop -------------------------------------------------------------------------------- /scripts/switch/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/scripts/switch/build.sh -------------------------------------------------------------------------------- /scripts/wiiu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/scripts/wiiu/build.sh -------------------------------------------------------------------------------- /soh/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/.clang-format -------------------------------------------------------------------------------- /soh/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/.clang-tidy -------------------------------------------------------------------------------- /soh/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/.gitattributes -------------------------------------------------------------------------------- /soh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/.gitignore -------------------------------------------------------------------------------- /soh/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/.gitrepo -------------------------------------------------------------------------------- /soh/CMake/Default.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/CMake/Default.cmake -------------------------------------------------------------------------------- /soh/CMake/DefaultCXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/CMake/DefaultCXX.cmake -------------------------------------------------------------------------------- /soh/CMake/Linux32bit-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/CMake/Linux32bit-toolchain.cmake -------------------------------------------------------------------------------- /soh/CMake/Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/CMake/Utils.cmake -------------------------------------------------------------------------------- /soh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/CMakeLists.txt -------------------------------------------------------------------------------- /soh/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/Resource.rc -------------------------------------------------------------------------------- /soh/SHIPOFHARKINIAN.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/SHIPOFHARKINIAN.ico -------------------------------------------------------------------------------- /soh/SHIPOFHARKINIAN.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/SHIPOFHARKINIAN.manifest -------------------------------------------------------------------------------- /soh/assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/.gitignore -------------------------------------------------------------------------------- /soh/assets/custom/fonts/Fipps-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/fonts/Fipps-Regular.otf -------------------------------------------------------------------------------- /soh/assets/custom/presets/Main Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/presets/Main Default.json -------------------------------------------------------------------------------- /soh/assets/custom/textures/buttons/ABtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/textures/buttons/ABtn.png -------------------------------------------------------------------------------- /soh/assets/custom/textures/buttons/BBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/textures/buttons/BBtn.png -------------------------------------------------------------------------------- /soh/assets/custom/textures/buttons/CUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/textures/buttons/CUp.png -------------------------------------------------------------------------------- /soh/assets/custom/textures/buttons/LBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/textures/buttons/LBtn.png -------------------------------------------------------------------------------- /soh/assets/custom/textures/buttons/Mod1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/textures/buttons/Mod1.png -------------------------------------------------------------------------------- /soh/assets/custom/textures/buttons/Mod2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/textures/buttons/Mod2.png -------------------------------------------------------------------------------- /soh/assets/custom/textures/buttons/RBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/textures/buttons/RBtn.png -------------------------------------------------------------------------------- /soh/assets/custom/textures/buttons/ZBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/textures/buttons/ZBtn.png -------------------------------------------------------------------------------- /soh/assets/custom/textures/icons/gIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/custom/textures/icons/gIcon.png -------------------------------------------------------------------------------- /soh/assets/extractor/Config_GC_MQ_D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/Config_GC_MQ_D.xml -------------------------------------------------------------------------------- /soh/assets/extractor/Config_GC_MQ_PAL_F.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/Config_GC_MQ_PAL_F.xml -------------------------------------------------------------------------------- /soh/assets/extractor/Config_GC_NMQ_D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/Config_GC_NMQ_D.xml -------------------------------------------------------------------------------- /soh/assets/extractor/Config_N64_NTSC_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/Config_N64_NTSC_10.xml -------------------------------------------------------------------------------- /soh/assets/extractor/Config_N64_NTSC_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/Config_N64_NTSC_11.xml -------------------------------------------------------------------------------- /soh/assets/extractor/Config_N64_NTSC_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/Config_N64_NTSC_12.xml -------------------------------------------------------------------------------- /soh/assets/extractor/Config_N64_PAL_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/Config_N64_PAL_10.xml -------------------------------------------------------------------------------- /soh/assets/extractor/Config_N64_PAL_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/Config_N64_PAL_11.xml -------------------------------------------------------------------------------- /soh/assets/extractor/TexturePool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/TexturePool.xml -------------------------------------------------------------------------------- /soh/assets/extractor/filelists/dbg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/filelists/dbg.txt -------------------------------------------------------------------------------- /soh/assets/extractor/filelists/gamecube.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/filelists/gamecube.txt -------------------------------------------------------------------------------- /soh/assets/extractor/filelists/ntsc_oot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/filelists/ntsc_oot.txt -------------------------------------------------------------------------------- /soh/assets/extractor/filelists/pal_oot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/extractor/filelists/pal_oot.txt -------------------------------------------------------------------------------- /soh/assets/extractor/symbols/SymbolMap_OoTMqDbg.txt: -------------------------------------------------------------------------------- 1 | 8012DB20 gMtxClear -------------------------------------------------------------------------------- /soh/assets/objects/object_Bb/object_Bb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_Bb/object_Bb.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ahg/object_ahg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ahg/object_ahg.h -------------------------------------------------------------------------------- /soh/assets/objects/object_am/object_am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_am/object_am.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ane/object_ane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ane/object_ane.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ani/object_ani.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ani/object_ani.h -------------------------------------------------------------------------------- /soh/assets/objects/object_aob/object_aob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_aob/object_aob.h -------------------------------------------------------------------------------- /soh/assets/objects/object_bba/object_bba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_bba/object_bba.h -------------------------------------------------------------------------------- /soh/assets/objects/object_bg/object_bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_bg/object_bg.h -------------------------------------------------------------------------------- /soh/assets/objects/object_bji/object_bji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_bji/object_bji.h -------------------------------------------------------------------------------- /soh/assets/objects/object_bl/object_bl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_bl/object_bl.h -------------------------------------------------------------------------------- /soh/assets/objects/object_bob/object_bob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_bob/object_bob.h -------------------------------------------------------------------------------- /soh/assets/objects/object_boj/object_boj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_boj/object_boj.h -------------------------------------------------------------------------------- /soh/assets/objects/object_box/object_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_box/object_box.h -------------------------------------------------------------------------------- /soh/assets/objects/object_bv/object_bv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_bv/object_bv.h -------------------------------------------------------------------------------- /soh/assets/objects/object_bw/object_bw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_bw/object_bw.h -------------------------------------------------------------------------------- /soh/assets/objects/object_bxa/object_bxa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_bxa/object_bxa.h -------------------------------------------------------------------------------- /soh/assets/objects/object_cne/object_cne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_cne/object_cne.h -------------------------------------------------------------------------------- /soh/assets/objects/object_cob/object_cob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_cob/object_cob.h -------------------------------------------------------------------------------- /soh/assets/objects/object_cow/object_cow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_cow/object_cow.h -------------------------------------------------------------------------------- /soh/assets/objects/object_cs/object_cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_cs/object_cs.h -------------------------------------------------------------------------------- /soh/assets/objects/object_dh/object_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_dh/object_dh.h -------------------------------------------------------------------------------- /soh/assets/objects/object_dnk/object_dnk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_dnk/object_dnk.h -------------------------------------------------------------------------------- /soh/assets/objects/object_dns/object_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_dns/object_dns.h -------------------------------------------------------------------------------- /soh/assets/objects/object_dog/object_dog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_dog/object_dog.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ds/object_ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ds/object_ds.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ds2/object_ds2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ds2/object_ds2.h -------------------------------------------------------------------------------- /soh/assets/objects/object_du/object_du.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_du/object_du.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ec/object_ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ec/object_ec.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ei/object_ei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ei/object_ei.h -------------------------------------------------------------------------------- /soh/assets/objects/object_fa/object_fa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_fa/object_fa.h -------------------------------------------------------------------------------- /soh/assets/objects/object_fd/object_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_fd/object_fd.h -------------------------------------------------------------------------------- /soh/assets/objects/object_fd2/object_fd2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_fd2/object_fd2.h -------------------------------------------------------------------------------- /soh/assets/objects/object_fhg/object_fhg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_fhg/object_fhg.h -------------------------------------------------------------------------------- /soh/assets/objects/object_fr/object_fr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_fr/object_fr.h -------------------------------------------------------------------------------- /soh/assets/objects/object_fu/object_fu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_fu/object_fu.h -------------------------------------------------------------------------------- /soh/assets/objects/object_fw/object_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_fw/object_fw.h -------------------------------------------------------------------------------- /soh/assets/objects/object_fz/object_fz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_fz/object_fz.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ge1/object_ge1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ge1/object_ge1.h -------------------------------------------------------------------------------- /soh/assets/objects/object_gj/object_gj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_gj/object_gj.h -------------------------------------------------------------------------------- /soh/assets/objects/object_gla/object_gla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_gla/object_gla.h -------------------------------------------------------------------------------- /soh/assets/objects/object_gm/object_gm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_gm/object_gm.h -------------------------------------------------------------------------------- /soh/assets/objects/object_gnd/object_gnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_gnd/object_gnd.h -------------------------------------------------------------------------------- /soh/assets/objects/object_gol/object_gol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_gol/object_gol.h -------------------------------------------------------------------------------- /soh/assets/objects/object_gr/object_gr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_gr/object_gr.h -------------------------------------------------------------------------------- /soh/assets/objects/object_gs/object_gs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_gs/object_gs.h -------------------------------------------------------------------------------- /soh/assets/objects/object_gt/object_gt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_gt/object_gt.h -------------------------------------------------------------------------------- /soh/assets/objects/object_hni/object_hni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_hni/object_hni.h -------------------------------------------------------------------------------- /soh/assets/objects/object_hs/object_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_hs/object_hs.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ik/object_ik.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ik/object_ik.h -------------------------------------------------------------------------------- /soh/assets/objects/object_im/object_im.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_im/object_im.h -------------------------------------------------------------------------------- /soh/assets/objects/object_in/object_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_in/object_in.h -------------------------------------------------------------------------------- /soh/assets/objects/object_jj/object_jj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_jj/object_jj.h -------------------------------------------------------------------------------- /soh/assets/objects/object_js/object_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_js/object_js.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ka/object_ka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ka/object_ka.h -------------------------------------------------------------------------------- /soh/assets/objects/object_km1/object_km1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_km1/object_km1.h -------------------------------------------------------------------------------- /soh/assets/objects/object_kw1/object_kw1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_kw1/object_kw1.h -------------------------------------------------------------------------------- /soh/assets/objects/object_kz/object_kz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_kz/object_kz.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ma1/object_ma1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ma1/object_ma1.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ma2/object_ma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ma2/object_ma2.h -------------------------------------------------------------------------------- /soh/assets/objects/object_mag/object_mag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_mag/object_mag.h -------------------------------------------------------------------------------- /soh/assets/objects/object_mb/object_mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_mb/object_mb.h -------------------------------------------------------------------------------- /soh/assets/objects/object_md/object_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_md/object_md.h -------------------------------------------------------------------------------- /soh/assets/objects/object_mk/object_mk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_mk/object_mk.h -------------------------------------------------------------------------------- /soh/assets/objects/object_mm/object_mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_mm/object_mm.h -------------------------------------------------------------------------------- /soh/assets/objects/object_mo/object_mo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_mo/object_mo.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ms/object_ms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ms/object_ms.h -------------------------------------------------------------------------------- /soh/assets/objects/object_mu/object_mu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_mu/object_mu.h -------------------------------------------------------------------------------- /soh/assets/objects/object_nb/object_nb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_nb/object_nb.h -------------------------------------------------------------------------------- /soh/assets/objects/object_niw/object_niw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_niw/object_niw.h -------------------------------------------------------------------------------- /soh/assets/objects/object_nwc/object_nwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_nwc/object_nwc.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ny/object_ny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ny/object_ny.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oA1/object_oA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oA1/object_oA1.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oA2/object_oA2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oA2/object_oA2.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oA3/object_oA3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oA3/object_oA3.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oA4/object_oA4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oA4/object_oA4.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oA5/object_oA5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oA5/object_oA5.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oA6/object_oA6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oA6/object_oA6.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oA7/object_oA7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oA7/object_oA7.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oA8/object_oA8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oA8/object_oA8.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oA9/object_oA9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oA9/object_oA9.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oB1/object_oB1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oB1/object_oB1.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oB2/object_oB2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oB2/object_oB2.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oB3/object_oB3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oB3/object_oB3.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oB4/object_oB4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oB4/object_oB4.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oE1/object_oE1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oE1/object_oE1.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oE2/object_oE2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oE2/object_oE2.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oE3/object_oE3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oE3/object_oE3.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oE4/object_oE4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oE4/object_oE4.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oE5/object_oE5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oE5/object_oE5.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oE6/object_oE6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oE6/object_oE6.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oE7/object_oE7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oE7/object_oE7.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oE8/object_oE8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oE8/object_oE8.h -------------------------------------------------------------------------------- /soh/assets/objects/object_oE9/object_oE9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_oE9/object_oE9.h -------------------------------------------------------------------------------- /soh/assets/objects/object_os/object_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_os/object_os.h -------------------------------------------------------------------------------- /soh/assets/objects/object_owl/object_owl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_owl/object_owl.h -------------------------------------------------------------------------------- /soh/assets/objects/object_poh/object_poh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_poh/object_poh.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ps/object_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ps/object_ps.h -------------------------------------------------------------------------------- /soh/assets/objects/object_rd/object_rd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_rd/object_rd.h -------------------------------------------------------------------------------- /soh/assets/objects/object_rl/object_rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_rl/object_rl.h -------------------------------------------------------------------------------- /soh/assets/objects/object_rr/object_rr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_rr/object_rr.h -------------------------------------------------------------------------------- /soh/assets/objects/object_rs/object_rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_rs/object_rs.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ru1/object_ru1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ru1/object_ru1.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ru2/object_ru2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ru2/object_ru2.h -------------------------------------------------------------------------------- /soh/assets/objects/object_sa/object_sa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_sa/object_sa.h -------------------------------------------------------------------------------- /soh/assets/objects/object_sb/object_sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_sb/object_sb.h -------------------------------------------------------------------------------- /soh/assets/objects/object_sd/object_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_sd/object_sd.h -------------------------------------------------------------------------------- /soh/assets/objects/object_sk2/object_sk2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_sk2/object_sk2.h -------------------------------------------------------------------------------- /soh/assets/objects/object_skb/object_skb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_skb/object_skb.h -------------------------------------------------------------------------------- /soh/assets/objects/object_skj/object_skj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_skj/object_skj.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ssh/object_ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ssh/object_ssh.h -------------------------------------------------------------------------------- /soh/assets/objects/object_sst/object_sst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_sst/object_sst.h -------------------------------------------------------------------------------- /soh/assets/objects/object_st/object_st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_st/object_st.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ta/object_ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ta/object_ta.h -------------------------------------------------------------------------------- /soh/assets/objects/object_tk/object_tk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_tk/object_tk.h -------------------------------------------------------------------------------- /soh/assets/objects/object_tp/object_tp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_tp/object_tp.h -------------------------------------------------------------------------------- /soh/assets/objects/object_tr/object_tr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_tr/object_tr.h -------------------------------------------------------------------------------- /soh/assets/objects/object_ts/object_ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_ts/object_ts.h -------------------------------------------------------------------------------- /soh/assets/objects/object_tw/object_tw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_tw/object_tw.h -------------------------------------------------------------------------------- /soh/assets/objects/object_vm/object_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_vm/object_vm.h -------------------------------------------------------------------------------- /soh/assets/objects/object_wf/object_wf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_wf/object_wf.h -------------------------------------------------------------------------------- /soh/assets/objects/object_xc/object_xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_xc/object_xc.h -------------------------------------------------------------------------------- /soh/assets/objects/object_zf/object_zf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_zf/object_zf.h -------------------------------------------------------------------------------- /soh/assets/objects/object_zg/object_zg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_zg/object_zg.h -------------------------------------------------------------------------------- /soh/assets/objects/object_zl1/object_zl1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_zl1/object_zl1.h -------------------------------------------------------------------------------- /soh/assets/objects/object_zl2/object_zl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_zl2/object_zl2.h -------------------------------------------------------------------------------- /soh/assets/objects/object_zl4/object_zl4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_zl4/object_zl4.h -------------------------------------------------------------------------------- /soh/assets/objects/object_zo/object_zo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/objects/object_zo/object_zo.h -------------------------------------------------------------------------------- /soh/assets/overlays/ovl_En_Sda/ovl_En_Sda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/overlays/ovl_En_Sda/ovl_En_Sda.h -------------------------------------------------------------------------------- /soh/assets/overlays/ovl_En_Ssh/ovl_En_Ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/overlays/ovl_En_Ssh/ovl_En_Ssh.h -------------------------------------------------------------------------------- /soh/assets/overlays/ovl_En_St/ovl_En_St.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/overlays/ovl_En_St/ovl_En_St.h -------------------------------------------------------------------------------- /soh/assets/overlays/ovl_En_Sth/ovl_En_Sth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/overlays/ovl_En_Sth/ovl_En_Sth.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_room_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_room_0.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_room_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_room_1.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_room_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_room_2.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_room_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_room_3.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_room_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_room_4.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_room_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_room_5.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_room_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_room_6.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_room_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_room_7.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_room_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_room_8.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_room_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_room_9.h -------------------------------------------------------------------------------- /soh/assets/scenes/dungeons/men/men_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/dungeons/men/men_scene.h -------------------------------------------------------------------------------- /soh/assets/scenes/indoors/hut/hut_room_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/indoors/hut/hut_room_0.h -------------------------------------------------------------------------------- /soh/assets/scenes/indoors/hut/hut_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/indoors/hut/hut_scene.h -------------------------------------------------------------------------------- /soh/assets/scenes/indoors/impa/impa_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/indoors/impa/impa_scene.h -------------------------------------------------------------------------------- /soh/assets/scenes/indoors/labo/labo_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/indoors/labo/labo_scene.h -------------------------------------------------------------------------------- /soh/assets/scenes/indoors/tent/tent_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/indoors/tent/tent_scene.h -------------------------------------------------------------------------------- /soh/assets/scenes/misc/enrui/enrui_room_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/misc/enrui/enrui_room_0.h -------------------------------------------------------------------------------- /soh/assets/scenes/misc/enrui/enrui_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/misc/enrui/enrui_scene.h -------------------------------------------------------------------------------- /soh/assets/scenes/shops/drag/drag_room_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/shops/drag/drag_room_0.h -------------------------------------------------------------------------------- /soh/assets/scenes/shops/drag/drag_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/shops/drag/drag_scene.h -------------------------------------------------------------------------------- /soh/assets/scenes/shops/golon/golon_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/shops/golon/golon_scene.h -------------------------------------------------------------------------------- /soh/assets/scenes/shops/shop1/shop1_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/shops/shop1/shop1_scene.h -------------------------------------------------------------------------------- /soh/assets/scenes/shops/zoora/zoora_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/scenes/shops/zoora/zoora_scene.h -------------------------------------------------------------------------------- /soh/assets/soh_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/soh_assets.h -------------------------------------------------------------------------------- /soh/assets/sources/triforce-hunt/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/sources/triforce-hunt/paths.txt -------------------------------------------------------------------------------- /soh/assets/textures/boss_title_cards/.gitempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /soh/assets/textures/kanji/kanji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/textures/kanji/kanji.h -------------------------------------------------------------------------------- /soh/assets/xml/GC_MQ_D/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/GC_MQ_D/audio/Audio.xml -------------------------------------------------------------------------------- /soh/assets/xml/GC_MQ_D/code/sys_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/GC_MQ_D/code/sys_matrix.xml -------------------------------------------------------------------------------- /soh/assets/xml/GC_MQ_NTSC_J/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/GC_MQ_NTSC_J/audio/Audio.xml -------------------------------------------------------------------------------- /soh/assets/xml/GC_MQ_NTSC_U/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/GC_MQ_NTSC_U/audio/Audio.xml -------------------------------------------------------------------------------- /soh/assets/xml/GC_MQ_PAL_F/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/GC_MQ_PAL_F/audio/Audio.xml -------------------------------------------------------------------------------- /soh/assets/xml/GC_NMQ_D/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/GC_NMQ_D/audio/Audio.xml -------------------------------------------------------------------------------- /soh/assets/xml/GC_NMQ_D/code/sys_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/GC_NMQ_D/code/sys_matrix.xml -------------------------------------------------------------------------------- /soh/assets/xml/GC_NMQ_PAL_F/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/GC_NMQ_PAL_F/audio/Audio.xml -------------------------------------------------------------------------------- /soh/assets/xml/N64_NTSC_10/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/N64_NTSC_10/audio/Audio.xml -------------------------------------------------------------------------------- /soh/assets/xml/N64_NTSC_11/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/N64_NTSC_11/audio/Audio.xml -------------------------------------------------------------------------------- /soh/assets/xml/N64_NTSC_12/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/N64_NTSC_12/audio/Audio.xml -------------------------------------------------------------------------------- /soh/assets/xml/N64_PAL_10/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/N64_PAL_10/audio/Audio.xml -------------------------------------------------------------------------------- /soh/assets/xml/N64_PAL_11/audio/Audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/assets/xml/N64_PAL_11/audio/Audio.xml -------------------------------------------------------------------------------- /soh/fixbaserom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/fixbaserom.py -------------------------------------------------------------------------------- /soh/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/format.sh -------------------------------------------------------------------------------- /soh/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/icon.jpg -------------------------------------------------------------------------------- /soh/include/align_asset_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/align_asset_macro.h -------------------------------------------------------------------------------- /soh/include/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/alignment.h -------------------------------------------------------------------------------- /soh/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/alloca.h -------------------------------------------------------------------------------- /soh/include/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/attributes.h -------------------------------------------------------------------------------- /soh/include/command_macros_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/command_macros_base.h -------------------------------------------------------------------------------- /soh/include/fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/fp.h -------------------------------------------------------------------------------- /soh/include/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/functions.h -------------------------------------------------------------------------------- /soh/include/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/gfx.h -------------------------------------------------------------------------------- /soh/include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/global.h -------------------------------------------------------------------------------- /soh/include/ichain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/ichain.h -------------------------------------------------------------------------------- /soh/include/libc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/libc/math.h -------------------------------------------------------------------------------- /soh/include/libc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/libc/stdarg.h -------------------------------------------------------------------------------- /soh/include/libc/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/libc/stdbool.h -------------------------------------------------------------------------------- /soh/include/libc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/libc/stddef.h -------------------------------------------------------------------------------- /soh/include/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/libc/stdlib.h -------------------------------------------------------------------------------- /soh/include/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/macro.inc -------------------------------------------------------------------------------- /soh/include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/macros.h -------------------------------------------------------------------------------- /soh/include/message_data_fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/message_data_fmt.h -------------------------------------------------------------------------------- /soh/include/message_data_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/message_data_static.h -------------------------------------------------------------------------------- /soh/include/message_data_textbox_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/message_data_textbox_types.h -------------------------------------------------------------------------------- /soh/include/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/regs.h -------------------------------------------------------------------------------- /soh/include/segment_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/segment_symbols.h -------------------------------------------------------------------------------- /soh/include/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/sequence.h -------------------------------------------------------------------------------- /soh/include/sfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/sfx.h -------------------------------------------------------------------------------- /soh/include/tables/actor_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/tables/actor_table.h -------------------------------------------------------------------------------- /soh/include/tables/dmadata_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/tables/dmadata_table.h -------------------------------------------------------------------------------- /soh/include/tables/dmadata_table_mqdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/tables/dmadata_table_mqdbg.h -------------------------------------------------------------------------------- /soh/include/tables/effect_ss_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/tables/effect_ss_table.h -------------------------------------------------------------------------------- /soh/include/tables/entrance_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/tables/entrance_table.h -------------------------------------------------------------------------------- /soh/include/tables/object_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/tables/object_table.h -------------------------------------------------------------------------------- /soh/include/tables/scene_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/tables/scene_table.h -------------------------------------------------------------------------------- /soh/include/unk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/unk.h -------------------------------------------------------------------------------- /soh/include/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/variables.h -------------------------------------------------------------------------------- /soh/include/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/vt.h -------------------------------------------------------------------------------- /soh/include/z64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64.h -------------------------------------------------------------------------------- /soh/include/z64actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64actor.h -------------------------------------------------------------------------------- /soh/include/z64actor_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64actor_enum.h -------------------------------------------------------------------------------- /soh/include/z64animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64animation.h -------------------------------------------------------------------------------- /soh/include/z64audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64audio.h -------------------------------------------------------------------------------- /soh/include/z64bgcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64bgcheck.h -------------------------------------------------------------------------------- /soh/include/z64camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64camera.h -------------------------------------------------------------------------------- /soh/include/z64collision_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64collision_check.h -------------------------------------------------------------------------------- /soh/include/z64cutscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64cutscene.h -------------------------------------------------------------------------------- /soh/include/z64cutscene_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64cutscene_commands.h -------------------------------------------------------------------------------- /soh/include/z64dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64dma.h -------------------------------------------------------------------------------- /soh/include/z64effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64effect.h -------------------------------------------------------------------------------- /soh/include/z64elf_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64elf_message.h -------------------------------------------------------------------------------- /soh/include/z64environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64environment.h -------------------------------------------------------------------------------- /soh/include/z64interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64interface.h -------------------------------------------------------------------------------- /soh/include/z64item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64item.h -------------------------------------------------------------------------------- /soh/include/z64light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64light.h -------------------------------------------------------------------------------- /soh/include/z64map_mark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64map_mark.h -------------------------------------------------------------------------------- /soh/include/z64math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64math.h -------------------------------------------------------------------------------- /soh/include/z64object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64object.h -------------------------------------------------------------------------------- /soh/include/z64player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64player.h -------------------------------------------------------------------------------- /soh/include/z64save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64save.h -------------------------------------------------------------------------------- /soh/include/z64scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64scene.h -------------------------------------------------------------------------------- /soh/include/z64scene_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64scene_enum.h -------------------------------------------------------------------------------- /soh/include/z64skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64skin.h -------------------------------------------------------------------------------- /soh/include/z64transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64transition.h -------------------------------------------------------------------------------- /soh/include/z64vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/include/z64vis.h -------------------------------------------------------------------------------- /soh/macosx/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/macosx/Info.plist.in -------------------------------------------------------------------------------- /soh/macosx/sohIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/macosx/sohIcon.png -------------------------------------------------------------------------------- /soh/platform/pathconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/platform/pathconf.c -------------------------------------------------------------------------------- /soh/properties.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/properties.h.in -------------------------------------------------------------------------------- /soh/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/resource.h -------------------------------------------------------------------------------- /soh/soh/ActorDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ActorDB.cpp -------------------------------------------------------------------------------- /soh/soh/ActorDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ActorDB.h -------------------------------------------------------------------------------- /soh/soh/CrashHandlerExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/CrashHandlerExp.h -------------------------------------------------------------------------------- /soh/soh/CrashHandlerExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/CrashHandlerExt.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/Cheats/DekuStick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/Cheats/DekuStick.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/Cheats/EasyISG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/Cheats/EasyISG.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/Cheats/EasyQPA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/Cheats/EasyQPA.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/Cheats/FreezeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/Cheats/FreezeTime.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/Cheats/MoonJump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/Cheats/MoonJump.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/DisableSandstorm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/DisableSandstorm.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/ExtraTraps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/ExtraTraps.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/Fixes/DirtPathFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/Fixes/DirtPathFix.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/Presets/Presets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/Presets/Presets.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/Presets/Presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/Presets/Presets.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/QoL/Autosave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/QoL/Autosave.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/QoL/DaytimeGS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/QoL/DaytimeGS.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/QoL/OpenAllHours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/QoL/OpenAllHours.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/QoL/PauseWarp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/QoL/PauseWarp.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/QoL/ResetNaviTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/QoL/ResetNaviTimer.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/RebottleBlueFire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/RebottleBlueFire.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/SkipAmyPuzzle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/SkipAmyPuzzle.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/audio/AudioEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/audio/AudioEditor.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/audio/AudioEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/audio/AudioEditor.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/audio/AudioHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/audio/AudioHooks.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/bootcommands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/bootcommands.c -------------------------------------------------------------------------------- /soh/soh/Enhancements/bootcommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/bootcommands.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/boss-rush/BossRush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/boss-rush/BossRush.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/boss-rush/BossRush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/boss-rush/BossRush.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/controls/InputViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/controls/InputViewer.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/controls/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/controls/Mouse.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/controls/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/controls/Mouse.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/debugconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/debugconsole.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/debugconsole.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "stdint.h" 4 | 5 | void DebugConsole_Init(void); 6 | -------------------------------------------------------------------------------- /soh/soh/Enhancements/debugger/actorViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/debugger/actorViewer.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/debugger/colViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/debugger/colViewer.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/debugger/colViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/debugger/colViewer.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/debugger/dlViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/debugger/dlViewer.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/debugger/dlViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/debugger/dlViewer.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/debugger/valueViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/debugger/valueViewer.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/enemyrandomizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/enemyrandomizer.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/enemyrandomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/enemyrandomizer.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/enhancementTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/enhancementTypes.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/gameconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/gameconsole.c -------------------------------------------------------------------------------- /soh/soh/Enhancements/gameconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/gameconsole.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/gameplaystats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/gameplaystats.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/gameplaystats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/gameplaystats.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/gameplaystatswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/gameplaystatswindow.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/kaleido.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/kaleido.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/kaleido.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/kaleido.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/mod_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/mod_menu.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/mod_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/mod_menu.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/mods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/mods.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/mods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/mods.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/nametag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/nametag.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/nametag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/nametag.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/context.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/context.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/draw.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/draw.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/dungeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/dungeon.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/dungeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/dungeon.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/entrance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/entrance.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/hint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/hint.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/hint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/hint.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/item.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/item.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/location.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/logic.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/logic.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/option.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/option.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/savefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/savefile.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/settings.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/trial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/trial.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/trial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/trial.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/tricks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/tricks.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/randomizer/tricks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/randomizer/tricks.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/savestates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/savestates.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/savestates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/savestates.h -------------------------------------------------------------------------------- /soh/soh/Enhancements/savestates_extern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/savestates_extern.inc -------------------------------------------------------------------------------- /soh/soh/Enhancements/tts/tts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/tts/tts.cpp -------------------------------------------------------------------------------- /soh/soh/Enhancements/tts/tts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Enhancements/tts/tts.h -------------------------------------------------------------------------------- /soh/soh/Extractor/Extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Extractor/Extract.cpp -------------------------------------------------------------------------------- /soh/soh/Extractor/Extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Extractor/Extract.h -------------------------------------------------------------------------------- /soh/soh/Extractor/FastCrc32C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Extractor/FastCrc32C.c -------------------------------------------------------------------------------- /soh/soh/Extractor/portable-file-dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Extractor/portable-file-dialogs.h -------------------------------------------------------------------------------- /soh/soh/GameVersions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/GameVersions.h -------------------------------------------------------------------------------- /soh/soh/GbiWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/GbiWrap.cpp -------------------------------------------------------------------------------- /soh/soh/Network/Anchor/Anchor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Anchor/Anchor.cpp -------------------------------------------------------------------------------- /soh/soh/Network/Anchor/Anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Anchor/Anchor.h -------------------------------------------------------------------------------- /soh/soh/Network/Anchor/AnchorRoomWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Anchor/AnchorRoomWindow.cpp -------------------------------------------------------------------------------- /soh/soh/Network/Anchor/DummyPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Anchor/DummyPlayer.cpp -------------------------------------------------------------------------------- /soh/soh/Network/Anchor/HookHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Anchor/HookHandlers.cpp -------------------------------------------------------------------------------- /soh/soh/Network/Anchor/JsonConversions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Anchor/JsonConversions.hpp -------------------------------------------------------------------------------- /soh/soh/Network/Anchor/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Anchor/Menu.cpp -------------------------------------------------------------------------------- /soh/soh/Network/Anchor/Packets/GiveItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Anchor/Packets/GiveItem.cpp -------------------------------------------------------------------------------- /soh/soh/Network/Anchor/Packets/SetFlag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Anchor/Packets/SetFlag.cpp -------------------------------------------------------------------------------- /soh/soh/Network/CrowdControl/CrowdControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/CrowdControl/CrowdControl.h -------------------------------------------------------------------------------- /soh/soh/Network/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Network.cpp -------------------------------------------------------------------------------- /soh/soh/Network/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Network.h -------------------------------------------------------------------------------- /soh/soh/Network/Sail/Sail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Sail/Sail.cpp -------------------------------------------------------------------------------- /soh/soh/Network/Sail/Sail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Network/Sail/Sail.h -------------------------------------------------------------------------------- /soh/soh/Notification/Notification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Notification/Notification.cpp -------------------------------------------------------------------------------- /soh/soh/Notification/Notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/Notification/Notification.h -------------------------------------------------------------------------------- /soh/soh/OTRAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/OTRAudio.h -------------------------------------------------------------------------------- /soh/soh/OTRGlobals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/OTRGlobals.cpp -------------------------------------------------------------------------------- /soh/soh/OTRGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/OTRGlobals.h -------------------------------------------------------------------------------- /soh/soh/ObjectExtension/ActorListIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ObjectExtension/ActorListIndex.cpp -------------------------------------------------------------------------------- /soh/soh/ObjectExtension/ActorListIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ObjectExtension/ActorListIndex.h -------------------------------------------------------------------------------- /soh/soh/ObjectExtension/ObjectExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ObjectExtension/ObjectExtension.cpp -------------------------------------------------------------------------------- /soh/soh/ObjectExtension/ObjectExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ObjectExtension/ObjectExtension.h -------------------------------------------------------------------------------- /soh/soh/ResourceManagerHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ResourceManagerHelpers.cpp -------------------------------------------------------------------------------- /soh/soh/ResourceManagerHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ResourceManagerHelpers.h -------------------------------------------------------------------------------- /soh/soh/SaveManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SaveManager.cpp -------------------------------------------------------------------------------- /soh/soh/SaveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SaveManager.h -------------------------------------------------------------------------------- /soh/soh/ShipInit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ShipInit.hpp -------------------------------------------------------------------------------- /soh/soh/ShipUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ShipUtils.cpp -------------------------------------------------------------------------------- /soh/soh/ShipUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/ShipUtils.h -------------------------------------------------------------------------------- /soh/soh/SohGui/ImGuiUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/ImGuiUtils.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/ImGuiUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/ImGuiUtils.h -------------------------------------------------------------------------------- /soh/soh/SohGui/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/Menu.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/Menu.h -------------------------------------------------------------------------------- /soh/soh/SohGui/MenuTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/MenuTypes.h -------------------------------------------------------------------------------- /soh/soh/SohGui/ResolutionEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/ResolutionEditor.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/ResolutionEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/ResolutionEditor.h -------------------------------------------------------------------------------- /soh/soh/SohGui/SohGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohGui.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/SohGui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohGui.hpp -------------------------------------------------------------------------------- /soh/soh/SohGui/SohMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohMenu.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/SohMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohMenu.h -------------------------------------------------------------------------------- /soh/soh/SohGui/SohMenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohMenuBar.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/SohMenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohMenuBar.h -------------------------------------------------------------------------------- /soh/soh/SohGui/SohMenuDevTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohMenuDevTools.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/SohMenuEnhancements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohMenuEnhancements.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/SohMenuNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohMenuNetwork.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/SohMenuRandomizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohMenuRandomizer.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/SohMenuSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohMenuSettings.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/SohModals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohModals.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/SohModals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/SohModals.h -------------------------------------------------------------------------------- /soh/soh/SohGui/UIWidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/UIWidgets.cpp -------------------------------------------------------------------------------- /soh/soh/SohGui/UIWidgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/SohGui/UIWidgets.hpp -------------------------------------------------------------------------------- /soh/soh/config/ConfigMigrators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/config/ConfigMigrators.h -------------------------------------------------------------------------------- /soh/soh/config/ConfigUpdaters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/config/ConfigUpdaters.cpp -------------------------------------------------------------------------------- /soh/soh/config/ConfigUpdaters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/config/ConfigUpdaters.h -------------------------------------------------------------------------------- /soh/soh/cvar_prefixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/cvar_prefixes.h -------------------------------------------------------------------------------- /soh/soh/frame_interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/frame_interpolation.cpp -------------------------------------------------------------------------------- /soh/soh/frame_interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/frame_interpolation.h -------------------------------------------------------------------------------- /soh/soh/framebuffer_effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/framebuffer_effects.c -------------------------------------------------------------------------------- /soh/soh/framebuffer_effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/framebuffer_effects.h -------------------------------------------------------------------------------- /soh/soh/gu_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/gu_pc.c -------------------------------------------------------------------------------- /soh/soh/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/mixer.c -------------------------------------------------------------------------------- /soh/soh/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/mixer.h -------------------------------------------------------------------------------- /soh/soh/mq_asset_hacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/mq_asset_hacks.h -------------------------------------------------------------------------------- /soh/soh/resource/importer/ArrayFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/importer/ArrayFactory.cpp -------------------------------------------------------------------------------- /soh/soh/resource/importer/ArrayFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/importer/ArrayFactory.h -------------------------------------------------------------------------------- /soh/soh/resource/importer/CutsceneFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/importer/CutsceneFactory.h -------------------------------------------------------------------------------- /soh/soh/resource/importer/PathFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/importer/PathFactory.cpp -------------------------------------------------------------------------------- /soh/soh/resource/importer/PathFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/importer/PathFactory.h -------------------------------------------------------------------------------- /soh/soh/resource/importer/SceneFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/importer/SceneFactory.cpp -------------------------------------------------------------------------------- /soh/soh/resource/importer/SceneFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/importer/SceneFactory.h -------------------------------------------------------------------------------- /soh/soh/resource/importer/SkeletonFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/importer/SkeletonFactory.h -------------------------------------------------------------------------------- /soh/soh/resource/importer/TextFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/importer/TextFactory.cpp -------------------------------------------------------------------------------- /soh/soh/resource/importer/TextFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/importer/TextFactory.h -------------------------------------------------------------------------------- /soh/soh/resource/logging/PathLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/logging/PathLogger.cpp -------------------------------------------------------------------------------- /soh/soh/resource/logging/PathLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/logging/PathLogger.h -------------------------------------------------------------------------------- /soh/soh/resource/type/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Animation.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Animation.h -------------------------------------------------------------------------------- /soh/soh/resource/type/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Array.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Array.h -------------------------------------------------------------------------------- /soh/soh/resource/type/AudioSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/AudioSample.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/AudioSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/AudioSample.h -------------------------------------------------------------------------------- /soh/soh/resource/type/AudioSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/AudioSequence.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/AudioSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/AudioSequence.h -------------------------------------------------------------------------------- /soh/soh/resource/type/AudioSoundFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/AudioSoundFont.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/AudioSoundFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/AudioSoundFont.h -------------------------------------------------------------------------------- /soh/soh/resource/type/Background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Background.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/Background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Background.h -------------------------------------------------------------------------------- /soh/soh/resource/type/CollisionHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/CollisionHeader.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/CollisionHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/CollisionHeader.h -------------------------------------------------------------------------------- /soh/soh/resource/type/Cutscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Cutscene.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/Cutscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Cutscene.h -------------------------------------------------------------------------------- /soh/soh/resource/type/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Path.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Path.h -------------------------------------------------------------------------------- /soh/soh/resource/type/PlayerAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/PlayerAnimation.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/PlayerAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/PlayerAnimation.h -------------------------------------------------------------------------------- /soh/soh/resource/type/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Scene.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Scene.h -------------------------------------------------------------------------------- /soh/soh/resource/type/Skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Skeleton.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/Skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Skeleton.h -------------------------------------------------------------------------------- /soh/soh/resource/type/SkeletonLimb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/SkeletonLimb.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/SkeletonLimb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/SkeletonLimb.h -------------------------------------------------------------------------------- /soh/soh/resource/type/SohResourceType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/SohResourceType.h -------------------------------------------------------------------------------- /soh/soh/resource/type/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Text.cpp -------------------------------------------------------------------------------- /soh/soh/resource/type/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/resource/type/Text.h -------------------------------------------------------------------------------- /soh/soh/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/stubs.c -------------------------------------------------------------------------------- /soh/soh/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/util.cpp -------------------------------------------------------------------------------- /soh/soh/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/util.h -------------------------------------------------------------------------------- /soh/soh/z_message_OTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/z_message_OTR.cpp -------------------------------------------------------------------------------- /soh/soh/z_play_otr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/z_play_otr.cpp -------------------------------------------------------------------------------- /soh/soh/z_scene_otr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/soh/z_scene_otr.cpp -------------------------------------------------------------------------------- /soh/src/boot/boot_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/boot/boot_main.c -------------------------------------------------------------------------------- /soh/src/boot/build.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/boot/build.c.in -------------------------------------------------------------------------------- /soh/src/boot/idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/boot/idle.c -------------------------------------------------------------------------------- /soh/src/boot/is_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/boot/is_debug.c -------------------------------------------------------------------------------- /soh/src/boot/logutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/boot/logutils.c -------------------------------------------------------------------------------- /soh/src/boot/stackcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/boot/stackcheck.c -------------------------------------------------------------------------------- /soh/src/boot/viconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/boot/viconfig.c -------------------------------------------------------------------------------- /soh/src/boot/yaz0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/boot/yaz0.c -------------------------------------------------------------------------------- /soh/src/boot/z_locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/boot/z_locale.c -------------------------------------------------------------------------------- /soh/src/boot/z_std_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/boot/z_std_dma.c -------------------------------------------------------------------------------- /soh/src/buffers/gfxbuffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/buffers/gfxbuffers.c -------------------------------------------------------------------------------- /soh/src/buffers/heaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/buffers/heaps.c -------------------------------------------------------------------------------- /soh/src/buffers/zbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/buffers/zbuffer.c -------------------------------------------------------------------------------- /soh/src/code/PreRender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/PreRender.c -------------------------------------------------------------------------------- /soh/src/code/TwoHeadArena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/TwoHeadArena.c -------------------------------------------------------------------------------- /soh/src/code/__osMalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/__osMalloc.c -------------------------------------------------------------------------------- /soh/src/code/audioMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/audioMgr.c -------------------------------------------------------------------------------- /soh/src/code/audio_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/audio_data.c -------------------------------------------------------------------------------- /soh/src/code/audio_effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/audio_effects.c -------------------------------------------------------------------------------- /soh/src/code/audio_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/audio_heap.c -------------------------------------------------------------------------------- /soh/src/code/audio_init_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/audio_init_params.c -------------------------------------------------------------------------------- /soh/src/code/audio_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/audio_load.c -------------------------------------------------------------------------------- /soh/src/code/audio_playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/audio_playback.c -------------------------------------------------------------------------------- /soh/src/code/audio_seqplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/audio_seqplayer.c -------------------------------------------------------------------------------- /soh/src/code/audio_sound_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/audio_sound_params.c -------------------------------------------------------------------------------- /soh/src/code/audio_synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/audio_synthesis.c -------------------------------------------------------------------------------- /soh/src/code/code_800430A0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800430A0.c -------------------------------------------------------------------------------- /soh/src/code/code_8006C3A0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_8006C3A0.c -------------------------------------------------------------------------------- /soh/src/code/code_8006C510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_8006C510.c -------------------------------------------------------------------------------- /soh/src/code/code_800A9F30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800A9F30.c -------------------------------------------------------------------------------- /soh/src/code/code_800BB0A0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800BB0A0.c -------------------------------------------------------------------------------- /soh/src/code/code_800C3C20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800C3C20.c -------------------------------------------------------------------------------- /soh/src/code/code_800D2E30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800D2E30.c -------------------------------------------------------------------------------- /soh/src/code/code_800D31A0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800D31A0.c -------------------------------------------------------------------------------- /soh/src/code/code_800E4FE0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800E4FE0.c -------------------------------------------------------------------------------- /soh/src/code/code_800E6840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800E6840.c -------------------------------------------------------------------------------- /soh/src/code/code_800EC960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800EC960.c -------------------------------------------------------------------------------- /soh/src/code/code_800F7260.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800F7260.c -------------------------------------------------------------------------------- /soh/src/code/code_800F9280.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800F9280.c -------------------------------------------------------------------------------- /soh/src/code/code_800FBCE0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800FBCE0.c -------------------------------------------------------------------------------- /soh/src/code/code_800FC620.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800FC620.c -------------------------------------------------------------------------------- /soh/src/code/code_800FCE80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800FCE80.c -------------------------------------------------------------------------------- /soh/src/code/code_800FD970.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_800FD970.c -------------------------------------------------------------------------------- /soh/src/code/code_801067F0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_801067F0.c -------------------------------------------------------------------------------- /soh/src/code/code_801068B0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/code_801068B0.c -------------------------------------------------------------------------------- /soh/src/code/db_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/db_camera.c -------------------------------------------------------------------------------- /soh/src/code/debug_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/debug_malloc.c -------------------------------------------------------------------------------- /soh/src/code/fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/fault.c -------------------------------------------------------------------------------- /soh/src/code/fault_drawer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/fault_drawer.c -------------------------------------------------------------------------------- /soh/src/code/flg_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/flg_set.c -------------------------------------------------------------------------------- /soh/src/code/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/game.c -------------------------------------------------------------------------------- /soh/src/code/gamealloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/gamealloc.c -------------------------------------------------------------------------------- /soh/src/code/gfxprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/gfxprint.c -------------------------------------------------------------------------------- /soh/src/code/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/graph.c -------------------------------------------------------------------------------- /soh/src/code/irqmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/irqmgr.c -------------------------------------------------------------------------------- /soh/src/code/jpegdecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/jpegdecoder.c -------------------------------------------------------------------------------- /soh/src/code/jpegutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/jpegutils.c -------------------------------------------------------------------------------- /soh/src/code/listalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/listalloc.c -------------------------------------------------------------------------------- /soh/src/code/loadfragment2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/loadfragment2.c -------------------------------------------------------------------------------- /soh/src/code/logseverity.c: -------------------------------------------------------------------------------- 1 | #include "global.h" 2 | 3 | s32 gOverlayLogSeverity = 2; 4 | -------------------------------------------------------------------------------- /soh/src/code/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/main.c -------------------------------------------------------------------------------- /soh/src/code/mempak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/mempak.c -------------------------------------------------------------------------------- /soh/src/code/mtxuty-cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/mtxuty-cvt.c -------------------------------------------------------------------------------- /soh/src/code/padmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/padmgr.c -------------------------------------------------------------------------------- /soh/src/code/padsetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/padsetup.c -------------------------------------------------------------------------------- /soh/src/code/padutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/padutils.c -------------------------------------------------------------------------------- /soh/src/code/printutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/printutils.c -------------------------------------------------------------------------------- /soh/src/code/relocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/relocation.c -------------------------------------------------------------------------------- /soh/src/code/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/sched.c -------------------------------------------------------------------------------- /soh/src/code/shrink_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/shrink_window.c -------------------------------------------------------------------------------- /soh/src/code/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/sleep.c -------------------------------------------------------------------------------- /soh/src/code/speed_meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/speed_meter.c -------------------------------------------------------------------------------- /soh/src/code/sys_cfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/sys_cfb.c -------------------------------------------------------------------------------- /soh/src/code/sys_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/sys_math.c -------------------------------------------------------------------------------- /soh/src/code/sys_math3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/sys_math3d.c -------------------------------------------------------------------------------- /soh/src/code/sys_math_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/sys_math_atan.c -------------------------------------------------------------------------------- /soh/src/code/sys_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/sys_matrix.c -------------------------------------------------------------------------------- /soh/src/code/sys_ucode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/sys_ucode.c -------------------------------------------------------------------------------- /soh/src/code/system_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/system_malloc.c -------------------------------------------------------------------------------- /soh/src/code/title_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/title_setup.c -------------------------------------------------------------------------------- /soh/src/code/ucode_disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/ucode_disas.c -------------------------------------------------------------------------------- /soh/src/code/z_DLF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_DLF.c -------------------------------------------------------------------------------- /soh/src/code/z_actor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_actor.c -------------------------------------------------------------------------------- /soh/src/code/z_bg_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_bg_item.c -------------------------------------------------------------------------------- /soh/src/code/z_bgcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_bgcheck.c -------------------------------------------------------------------------------- /soh/src/code/z_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_camera.c -------------------------------------------------------------------------------- /soh/src/code/z_camera_data.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_camera_data.inc -------------------------------------------------------------------------------- /soh/src/code/z_cheap_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_cheap_proc.c -------------------------------------------------------------------------------- /soh/src/code/z_collision_btltbls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_collision_btltbls.c -------------------------------------------------------------------------------- /soh/src/code/z_collision_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_collision_check.c -------------------------------------------------------------------------------- /soh/src/code/z_common_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_common_data.c -------------------------------------------------------------------------------- /soh/src/code/z_construct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_construct.c -------------------------------------------------------------------------------- /soh/src/code/z_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_debug.c -------------------------------------------------------------------------------- /soh/src/code/z_debug_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_debug_display.c -------------------------------------------------------------------------------- /soh/src/code/z_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_demo.c -------------------------------------------------------------------------------- /soh/src/code/z_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_draw.c -------------------------------------------------------------------------------- /soh/src/code/z_eff_blure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_eff_blure.c -------------------------------------------------------------------------------- /soh/src/code/z_eff_shield_particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_eff_shield_particle.c -------------------------------------------------------------------------------- /soh/src/code/z_eff_spark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_eff_spark.c -------------------------------------------------------------------------------- /soh/src/code/z_eff_ss_dead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_eff_ss_dead.c -------------------------------------------------------------------------------- /soh/src/code/z_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_effect.c -------------------------------------------------------------------------------- /soh/src/code/z_effect_soft_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_effect_soft_sprite.c -------------------------------------------------------------------------------- /soh/src/code/z_effect_soft_sprite_dlftbls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_effect_soft_sprite_dlftbls.c -------------------------------------------------------------------------------- /soh/src/code/z_elf_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_elf_message.c -------------------------------------------------------------------------------- /soh/src/code/z_en_a_keep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_en_a_keep.c -------------------------------------------------------------------------------- /soh/src/code/z_en_item00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_en_item00.c -------------------------------------------------------------------------------- /soh/src/code/z_face_reaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_face_reaction.c -------------------------------------------------------------------------------- /soh/src/code/z_fbdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_fbdemo.c -------------------------------------------------------------------------------- /soh/src/code/z_fbdemo_circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_fbdemo_circle.c -------------------------------------------------------------------------------- /soh/src/code/z_fbdemo_fade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_fbdemo_fade.c -------------------------------------------------------------------------------- /soh/src/code/z_fbdemo_triforce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_fbdemo_triforce.c -------------------------------------------------------------------------------- /soh/src/code/z_fbdemo_wipe1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_fbdemo_wipe1.c -------------------------------------------------------------------------------- /soh/src/code/z_fcurve_data_skelanime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_fcurve_data_skelanime.c -------------------------------------------------------------------------------- /soh/src/code/z_frame_advance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_frame_advance.c -------------------------------------------------------------------------------- /soh/src/code/z_game_dlftbls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_game_dlftbls.c -------------------------------------------------------------------------------- /soh/src/code/z_game_over.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_game_over.c -------------------------------------------------------------------------------- /soh/src/code/z_horse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_horse.c -------------------------------------------------------------------------------- /soh/src/code/z_inventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_inventory.c -------------------------------------------------------------------------------- /soh/src/code/z_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_jpeg.c -------------------------------------------------------------------------------- /soh/src/code/z_kaleido_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_kaleido_manager.c -------------------------------------------------------------------------------- /soh/src/code/z_kaleido_scope_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_kaleido_scope_call.c -------------------------------------------------------------------------------- /soh/src/code/z_kaleido_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_kaleido_setup.c -------------------------------------------------------------------------------- /soh/src/code/z_kanfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_kanfont.c -------------------------------------------------------------------------------- /soh/src/code/z_kanji.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_kanji.c -------------------------------------------------------------------------------- /soh/src/code/z_kankyo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_kankyo.c -------------------------------------------------------------------------------- /soh/src/code/z_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_lib.c -------------------------------------------------------------------------------- /soh/src/code/z_lifemeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_lifemeter.c -------------------------------------------------------------------------------- /soh/src/code/z_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_lights.c -------------------------------------------------------------------------------- /soh/src/code/z_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_malloc.c -------------------------------------------------------------------------------- /soh/src/code/z_map_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_map_data.c -------------------------------------------------------------------------------- /soh/src/code/z_map_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_map_exp.c -------------------------------------------------------------------------------- /soh/src/code/z_map_mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_map_mark.c -------------------------------------------------------------------------------- /soh/src/code/z_message_PAL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_message_PAL.c -------------------------------------------------------------------------------- /soh/src/code/z_moji.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_moji.c -------------------------------------------------------------------------------- /soh/src/code/z_msgevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_msgevent.c -------------------------------------------------------------------------------- /soh/src/code/z_olib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_olib.c -------------------------------------------------------------------------------- /soh/src/code/z_onepointdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_onepointdemo.c -------------------------------------------------------------------------------- /soh/src/code/z_onepointdemo_data.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_onepointdemo_data.inc -------------------------------------------------------------------------------- /soh/src/code/z_parameter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_parameter.c -------------------------------------------------------------------------------- /soh/src/code/z_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_path.c -------------------------------------------------------------------------------- /soh/src/code/z_play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_play.c -------------------------------------------------------------------------------- /soh/src/code/z_player_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_player_call.c -------------------------------------------------------------------------------- /soh/src/code/z_player_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_player_lib.c -------------------------------------------------------------------------------- /soh/src/code/z_prenmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_prenmi.c -------------------------------------------------------------------------------- /soh/src/code/z_prenmi_buff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_prenmi_buff.c -------------------------------------------------------------------------------- /soh/src/code/z_quake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_quake.c -------------------------------------------------------------------------------- /soh/src/code/z_rcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_rcp.c -------------------------------------------------------------------------------- /soh/src/code/z_room.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_room.c -------------------------------------------------------------------------------- /soh/src/code/z_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_sample.c -------------------------------------------------------------------------------- /soh/src/code/z_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_scene.c -------------------------------------------------------------------------------- /soh/src/code/z_scene_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_scene_table.c -------------------------------------------------------------------------------- /soh/src/code/z_skelanime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_skelanime.c -------------------------------------------------------------------------------- /soh/src/code/z_skin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_skin.c -------------------------------------------------------------------------------- /soh/src/code/z_skin_awb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_skin_awb.c -------------------------------------------------------------------------------- /soh/src/code/z_skin_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_skin_matrix.c -------------------------------------------------------------------------------- /soh/src/code/z_sound_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_sound_source.c -------------------------------------------------------------------------------- /soh/src/code/z_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_sram.c -------------------------------------------------------------------------------- /soh/src/code/z_ss_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_ss_sram.c -------------------------------------------------------------------------------- /soh/src/code/z_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_view.c -------------------------------------------------------------------------------- /soh/src/code/z_vimode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_vimode.c -------------------------------------------------------------------------------- /soh/src/code/z_viscvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_viscvg.c -------------------------------------------------------------------------------- /soh/src/code/z_vismono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_vismono.c -------------------------------------------------------------------------------- /soh/src/code/z_viszbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_viszbuf.c -------------------------------------------------------------------------------- /soh/src/code/z_vr_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_vr_box.c -------------------------------------------------------------------------------- /soh/src/code/z_vr_box_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/code/z_vr_box_draw.c -------------------------------------------------------------------------------- /soh/src/dmadata/dmadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/dmadata/dmadata.c -------------------------------------------------------------------------------- /soh/src/elf_message/elf_message_field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/elf_message/elf_message_field.c -------------------------------------------------------------------------------- /soh/src/elf_message/elf_message_ydan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/elf_message/elf_message_ydan.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/cosf.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/coss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/coss.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/guLookAt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/guLookAt.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/guLookAtHilite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/guLookAtHilite.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/guPerspectiveF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/guPerspectiveF.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/guPosition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/guPosition.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/guS2DInitBg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/guS2DInitBg.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/lookat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/lookat.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/lookathil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/lookathil.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/ortho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/ortho.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/perspective.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/perspective.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/position.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/rotate.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/sinf.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/sins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/sins.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/sintable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/sintable.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/sqrtf.c -------------------------------------------------------------------------------- /soh/src/libultra/gu/us2dex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/gu/us2dex.c -------------------------------------------------------------------------------- /soh/src/libultra/io/aigetlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/aigetlen.c -------------------------------------------------------------------------------- /soh/src/libultra/io/aisetfreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/aisetfreq.c -------------------------------------------------------------------------------- /soh/src/libultra/io/aisetnextbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/aisetnextbuf.c -------------------------------------------------------------------------------- /soh/src/libultra/io/cartrominit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/cartrominit.c -------------------------------------------------------------------------------- /soh/src/libultra/io/contpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/contpfs.c -------------------------------------------------------------------------------- /soh/src/libultra/io/contquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/contquery.c -------------------------------------------------------------------------------- /soh/src/libultra/io/contramread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/contramread.c -------------------------------------------------------------------------------- /soh/src/libultra/io/contramwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/contramwrite.c -------------------------------------------------------------------------------- /soh/src/libultra/io/contreaddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/contreaddata.c -------------------------------------------------------------------------------- /soh/src/libultra/io/controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/controller.c -------------------------------------------------------------------------------- /soh/src/libultra/io/contsetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/contsetch.c -------------------------------------------------------------------------------- /soh/src/libultra/io/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/crc.c -------------------------------------------------------------------------------- /soh/src/libultra/io/devmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/devmgr.c -------------------------------------------------------------------------------- /soh/src/libultra/io/dpgetstat.c: -------------------------------------------------------------------------------- 1 | #include "global.h" 2 | 3 | u32 osDpGetStatus(void) { 4 | return DPC_STATUS_REG; 5 | } 6 | -------------------------------------------------------------------------------- /soh/src/libultra/io/dpsetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/dpsetstat.c -------------------------------------------------------------------------------- /soh/src/libultra/io/driverominit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/driverominit.c -------------------------------------------------------------------------------- /soh/src/libultra/io/epidma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/epidma.c -------------------------------------------------------------------------------- /soh/src/libultra/io/epirawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/epirawdma.c -------------------------------------------------------------------------------- /soh/src/libultra/io/epirawread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/epirawread.c -------------------------------------------------------------------------------- /soh/src/libultra/io/epirawwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/epirawwrite.c -------------------------------------------------------------------------------- /soh/src/libultra/io/epiread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/epiread.c -------------------------------------------------------------------------------- /soh/src/libultra/io/epiwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/epiwrite.c -------------------------------------------------------------------------------- /soh/src/libultra/io/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/motor.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfsallocatefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfsallocatefile.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfschecker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfschecker.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfsdeletefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfsdeletefile.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfsfilestate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfsfilestate.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfsfindfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfsfindfile.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfsfreeblocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfsfreeblocks.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfsgetstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfsgetstatus.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfsinitpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfsinitpak.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfsisplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfsisplug.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfsreadwritefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfsreadwritefile.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pfsselectbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pfsselectbank.c -------------------------------------------------------------------------------- /soh/src/libultra/io/piacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/piacs.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pigetcmdq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pigetcmdq.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pimgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pimgr.c -------------------------------------------------------------------------------- /soh/src/libultra/io/pirawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/pirawdma.c -------------------------------------------------------------------------------- /soh/src/libultra/io/si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/si.c -------------------------------------------------------------------------------- /soh/src/libultra/io/siacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/siacs.c -------------------------------------------------------------------------------- /soh/src/libultra/io/sirawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/sirawdma.c -------------------------------------------------------------------------------- /soh/src/libultra/io/sirawread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/sirawread.c -------------------------------------------------------------------------------- /soh/src/libultra/io/sirawwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/sirawwrite.c -------------------------------------------------------------------------------- /soh/src/libultra/io/sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/sp.c -------------------------------------------------------------------------------- /soh/src/libultra/io/spgetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/spgetstat.c -------------------------------------------------------------------------------- /soh/src/libultra/io/sprawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/sprawdma.c -------------------------------------------------------------------------------- /soh/src/libultra/io/spsetpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/spsetpc.c -------------------------------------------------------------------------------- /soh/src/libultra/io/spsetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/spsetstat.c -------------------------------------------------------------------------------- /soh/src/libultra/io/sptask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/sptask.c -------------------------------------------------------------------------------- /soh/src/libultra/io/sptaskyield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/sptaskyield.c -------------------------------------------------------------------------------- /soh/src/libultra/io/sptaskyielded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/sptaskyielded.c -------------------------------------------------------------------------------- /soh/src/libultra/io/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/vi.c -------------------------------------------------------------------------------- /soh/src/libultra/io/viblack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/viblack.c -------------------------------------------------------------------------------- /soh/src/libultra/io/viextend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/viextend.c -------------------------------------------------------------------------------- /soh/src/libultra/io/vigetcurrcontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/vigetcurrcontext.c -------------------------------------------------------------------------------- /soh/src/libultra/io/vigetcurrframebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/vigetcurrframebuf.c -------------------------------------------------------------------------------- /soh/src/libultra/io/vigetnextframebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/vigetnextframebuf.c -------------------------------------------------------------------------------- /soh/src/libultra/io/vimgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/vimgr.c -------------------------------------------------------------------------------- /soh/src/libultra/io/vimodefpallan1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/vimodefpallan1.c -------------------------------------------------------------------------------- /soh/src/libultra/io/vimodempallan1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/vimodempallan1.c -------------------------------------------------------------------------------- /soh/src/libultra/io/vimodentsclan1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/vimodentsclan1.c -------------------------------------------------------------------------------- /soh/src/libultra/io/vimodepallan1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/vimodepallan1.c -------------------------------------------------------------------------------- /soh/src/libultra/io/visetevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/visetevent.c -------------------------------------------------------------------------------- /soh/src/libultra/io/visetmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/visetmode.c -------------------------------------------------------------------------------- /soh/src/libultra/io/visetspecial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/visetspecial.c -------------------------------------------------------------------------------- /soh/src/libultra/io/visetxscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/visetxscale.c -------------------------------------------------------------------------------- /soh/src/libultra/io/visetyscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/visetyscale.c -------------------------------------------------------------------------------- /soh/src/libultra/io/viswapbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/viswapbuf.c -------------------------------------------------------------------------------- /soh/src/libultra/io/viswapcontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/io/viswapcontext.c -------------------------------------------------------------------------------- /soh/src/libultra/libc/absf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/libc/absf.c -------------------------------------------------------------------------------- /soh/src/libultra/libc/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/libc/ldiv.c -------------------------------------------------------------------------------- /soh/src/libultra/libc/ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/libc/ll.c -------------------------------------------------------------------------------- /soh/src/libultra/libc/llcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/libc/llcvt.c -------------------------------------------------------------------------------- /soh/src/libultra/libc/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/libc/sprintf.c -------------------------------------------------------------------------------- /soh/src/libultra/libc/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/libc/sqrt.c -------------------------------------------------------------------------------- /soh/src/libultra/os/afterprenmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/afterprenmi.c -------------------------------------------------------------------------------- /soh/src/libultra/os/createmesgqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/createmesgqueue.c -------------------------------------------------------------------------------- /soh/src/libultra/os/createthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/createthread.c -------------------------------------------------------------------------------- /soh/src/libultra/os/dequeuethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/dequeuethread.c -------------------------------------------------------------------------------- /soh/src/libultra/os/destroythread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/destroythread.c -------------------------------------------------------------------------------- /soh/src/libultra/os/getactivequeue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/getactivequeue.c -------------------------------------------------------------------------------- /soh/src/libultra/os/getcurrfaultedthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/getcurrfaultedthread.c -------------------------------------------------------------------------------- /soh/src/libultra/os/gethwintrroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/gethwintrroutine.c -------------------------------------------------------------------------------- /soh/src/libultra/os/getmemsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/getmemsize.c -------------------------------------------------------------------------------- /soh/src/libultra/os/getthreadid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/getthreadid.c -------------------------------------------------------------------------------- /soh/src/libultra/os/getthreadpri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/getthreadpri.c -------------------------------------------------------------------------------- /soh/src/libultra/os/gettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/gettime.c -------------------------------------------------------------------------------- /soh/src/libultra/os/initialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/initialize.c -------------------------------------------------------------------------------- /soh/src/libultra/os/jammesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/jammesg.c -------------------------------------------------------------------------------- /soh/src/libultra/os/recvmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/recvmesg.c -------------------------------------------------------------------------------- /soh/src/libultra/os/resetglobalintmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/resetglobalintmask.c -------------------------------------------------------------------------------- /soh/src/libultra/os/sendmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/sendmesg.c -------------------------------------------------------------------------------- /soh/src/libultra/os/seteventmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/seteventmesg.c -------------------------------------------------------------------------------- /soh/src/libultra/os/setglobalintmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/setglobalintmask.c -------------------------------------------------------------------------------- /soh/src/libultra/os/sethwintrroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/sethwintrroutine.c -------------------------------------------------------------------------------- /soh/src/libultra/os/setthreadpri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/setthreadpri.c -------------------------------------------------------------------------------- /soh/src/libultra/os/settimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/settimer.c -------------------------------------------------------------------------------- /soh/src/libultra/os/startthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/startthread.c -------------------------------------------------------------------------------- /soh/src/libultra/os/stopthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/stopthread.c -------------------------------------------------------------------------------- /soh/src/libultra/os/stoptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/stoptimer.c -------------------------------------------------------------------------------- /soh/src/libultra/os/timerintr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/timerintr.c -------------------------------------------------------------------------------- /soh/src/libultra/os/virtualtophysical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/virtualtophysical.c -------------------------------------------------------------------------------- /soh/src/libultra/os/yieldthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/os/yieldthread.c -------------------------------------------------------------------------------- /soh/src/libultra/rmon/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/rmon/sprintf.c -------------------------------------------------------------------------------- /soh/src/libultra/rmon/xldtob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/rmon/xldtob.c -------------------------------------------------------------------------------- /soh/src/libultra/rmon/xlitob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/rmon/xlitob.c -------------------------------------------------------------------------------- /soh/src/libultra/rmon/xprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/libultra/rmon/xprintf.c -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_Bg_Zg/z_bg_zg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_Bg_Zg/z_bg_zg.c -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_Bg_Zg/z_bg_zg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_Bg_Zg/z_bg_zg.h -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Am/z_en_am.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Am/z_en_am.c -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Am/z_en_am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Am/z_en_am.h -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Ba/z_en_ba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Ba/z_en_ba.c -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Ba/z_en_ba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Ba/z_en_ba.h -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Bb/z_en_bb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Bb/z_en_bb.c -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Bb/z_en_bb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Bb/z_en_bb.h -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Bw/z_en_bw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Bw/z_en_bw.c -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Bw/z_en_bw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Bw/z_en_bw.h -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Bx/z_en_bx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Bx/z_en_bx.c -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Bx/z_en_bx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Bx/z_en_bx.h -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Cs/z_en_cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Cs/z_en_cs.c -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Cs/z_en_cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Cs/z_en_cs.h -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Dh/z_en_dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Dh/z_en_dh.c -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Dh/z_en_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Dh/z_en_dh.h -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Ds/z_en_ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Ds/z_en_ds.c -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Ds/z_en_ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Ds/z_en_ds.h -------------------------------------------------------------------------------- /soh/src/overlays/actors/ovl_En_Du/z_en_du.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/Shipwright/HEAD/soh/src/overlays/actors/ovl_En_Du/z_en_du.c --------------------------------------------------------------------------------