├── .gitattributes ├── .github ├── calcrom │ ├── calcrom.pl │ └── webhook.sh ├── pull_request_template.md └── workflows │ └── build.yml ├── .gitignore ├── INSTALL.md ├── Makefile ├── README.md ├── asm ├── macros.inc └── macros │ ├── asm.inc │ ├── battle_ai_script.inc │ ├── battle_anim_script.inc │ ├── battle_frontier │ ├── apprentice.inc │ ├── battle_arena.inc │ ├── battle_dome.inc │ ├── battle_factory.inc │ ├── battle_palace.inc │ ├── battle_pike.inc │ ├── battle_pyramid.inc │ ├── battle_tower.inc │ └── frontier_util.inc │ ├── battle_script.inc │ ├── battle_tent.inc │ ├── contest_ai_script.inc │ ├── event.inc │ ├── field_effect_script.inc │ ├── function.inc │ ├── m4a.inc │ ├── map.inc │ ├── movement.inc │ ├── music_voice.inc │ └── trainer_hill.inc ├── asmdiff.ps1 ├── asmdiff.sh ├── charmap.txt ├── common_syms ├── AgbRfu_LinkManager.txt ├── agb_flash.txt ├── apprentice.txt ├── battle_anim_throw.txt ├── battle_factory_screen.txt ├── battle_main.txt ├── battle_tower.txt ├── berry_blender.txt ├── bg.txt ├── contest.txt ├── contest_painting.txt ├── ereader_screen.txt ├── evolution_scene.txt ├── faraway_island.txt ├── field_camera.txt ├── field_control_avatar.txt ├── field_specials.txt ├── fieldmap.txt ├── image_processing_effects.txt ├── intro.txt ├── librfu_rfu.txt ├── librfu_sio32id.txt ├── librfu_stwi.txt ├── link.txt ├── link_rfu_2.txt ├── list_menu.txt ├── load_save.txt ├── m4a.txt ├── main.txt ├── mauville_old_man.txt ├── overworld.txt ├── party_menu.txt ├── pokedex.txt ├── pokedex_cry_screen.txt ├── random.txt ├── rtc.txt ├── save.txt ├── sound.txt ├── sprite.txt ├── start_menu.txt ├── task.txt ├── text.txt ├── trainer_see.txt ├── tv.txt └── window.txt ├── constants ├── constants.inc ├── gba_constants.inc ├── global.inc └── m4a_constants.inc ├── data ├── battle_anim_scripts.s ├── battle_scripts_1.s ├── battle_scripts_2.s ├── contest_ai_scripts.s ├── event_scripts.s ├── field_effect_scripts.s ├── layouts │ ├── .gitignore │ ├── AbandonedShip_CaptainsOffice │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Corridors_1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Corridors_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Deck │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_HiddenFloorCorridors │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_HiddenFloorRooms │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Room_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Rooms2_1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Rooms2_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Rooms_1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Rooms_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Underwater1 │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Underwater2 │ │ ├── border.bin │ │ └── map.bin │ ├── AlteringCave │ │ ├── border.bin │ │ └── map.bin │ ├── AncientTomb │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_1F │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_UnusedRubyMap1 │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_UnusedRubyMap2 │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_UnusedRubyMap3 │ │ ├── border.bin │ │ └── map.bin │ ├── ArtisanCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── ArtisanCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── BattleColosseum_2P │ │ ├── border.bin │ │ └── map.bin │ ├── BattleColosseum_4P │ │ ├── border.bin │ │ └── map.bin │ ├── BattleElevator │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleArenaBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleArenaCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleArenaLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleDomeBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleDomeCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleDomeLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleDomePreBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleFactoryBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleFactoryLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleFactoryPreBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePalaceBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePalaceCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePalaceLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeRoomFinal │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeRoomNormal │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeRoomUnused │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeRoomWildMons │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeThreePathRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePyramidFloor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePyramidLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePyramidTop │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleTowerBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleTowerCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleTowerLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleTowerMultiCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleTowerMultiPartnerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_ExchangeServiceCorner │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_Lounge1 │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_Lounge2 │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_OutsideEast │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_OutsideWest │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_RankingHall │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_ReceptionGate │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_ScottsHouse │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare01 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare02 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare03 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare04 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare05 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare06 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare07 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare08 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare09 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare10 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare11 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare12 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare13 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare14 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare15 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare16 │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTentBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTentCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTentLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTower_2F_Shop │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTower_3F_Lounge │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTower_Basement │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTower_Elevator │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTower_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTower_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTower_House │ │ ├── border.bin │ │ └── map.bin │ ├── BirthIsland_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── CableCarStation │ │ ├── border.bin │ │ └── map.bin │ ├── CaveOfOrigin_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CaveOfOrigin_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── CaveOfOrigin_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── CaveOfOrigin_UnusedRubySapphireMap1 │ │ ├── border.bin │ │ └── map.bin │ ├── CaveOfOrigin_UnusedRubySapphireMap2 │ │ ├── border.bin │ │ └── map.bin │ ├── CaveOfOrigin_UnusedRubySapphireMap3 │ │ ├── border.bin │ │ └── map.bin │ ├── CaveOfOrigin_Unused_B4F_Lava │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Condominiums_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Condominiums_2F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Condominiums_3F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Condominiums_Roof │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Condominiums_RoofRoom │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_2F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_3F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_4F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_5F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_Elevator │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_Roof │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_GameCorner │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_GameCornerPrizeRoom │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Hotel │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Restaurant │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_2F │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_BikeShop │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_House3 │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_House4 │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_House5 │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_Mart │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_House │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_Lab_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_Lab_ExperimentRoom │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_Lab_Lounge │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_Lab_ResearchRoom │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_Mart │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHall │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHallBeauty │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHallCool │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHallCute │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHallSmart │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHallTough │ │ ├── border.bin │ │ └── map.bin │ ├── DesertRuins │ │ ├── border.bin │ │ └── map.bin │ ├── DesertUnderpass │ │ ├── border.bin │ │ └── map.bin │ ├── DewfordTown │ │ ├── border.bin │ │ └── map.bin │ ├── DewfordTown_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── DewfordTown_Hall │ │ ├── border.bin │ │ └── map.bin │ ├── DiglettsCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── DiglettsCave_NorthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── DiglettsCave_SouthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Entrance_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Entrance_2F │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_ChampionsRoom │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_DrakesRoom │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_GlaciasRoom │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_Hall4 │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_HallOfFame │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_PhoebesRoom │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_PokemonLeague_1F │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_ShortHall │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_SidneysRoom │ │ ├── border.bin │ │ └── map.bin │ ├── FallarborTown │ │ ├── border.bin │ │ └── map.bin │ ├── FallarborTown_LeftoverRSContestHall │ │ ├── border.bin │ │ └── map.bin │ ├── FallarborTown_LeftoverRSContestLobby │ │ ├── border.bin │ │ └── map.bin │ ├── FarawayIsland_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── FarawayIsland_Interior │ │ ├── border.bin │ │ └── map.bin │ ├── FieryPath │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_DecorationShop │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_House3 │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_Mart │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_SafariZone_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_SafariZone_Office │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_WardensHouse │ │ ├── border.bin │ │ └── map.bin │ ├── GraniteCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── GraniteCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── GraniteCave_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── GraniteCave_StevensRoom │ │ ├── border.bin │ │ └── map.bin │ ├── Harbor │ │ ├── border.bin │ │ └── map.bin │ ├── House1 │ │ ├── border.bin │ │ └── map.bin │ ├── House2 │ │ ├── border.bin │ │ └── map.bin │ ├── House3 │ │ ├── border.bin │ │ └── map.bin │ ├── House4 │ │ ├── border.bin │ │ └── map.bin │ ├── House5 │ │ ├── border.bin │ │ └── map.bin │ ├── HouseWithBed │ │ ├── border.bin │ │ └── map.bin │ ├── IndigoPlateau_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── IndigoPlateau_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── IndigoPlateau_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── InsideOfTruck │ │ ├── border.bin │ │ └── map.bin │ ├── IslandCave │ │ ├── border.bin │ │ └── map.bin │ ├── IslandHarbor │ │ ├── border.bin │ │ └── map.bin │ ├── JaggedPass │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown_Gym_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown_Gym_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown_HerbShop │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LavenderTown │ │ ├── border.bin │ │ └── map.bin │ ├── LavenderTown_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── LavenderTown_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── LavenderTown_Mart │ │ ├── border.bin │ │ └── map.bin │ ├── LavenderTown_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LavenderTown_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LavenderTown_VolunteerPokemonHouse │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_ContestHall │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_ContestLobby │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_CoveLilyMotel_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_CoveLilyMotel_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStoreElevator │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStoreRooftop │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStore_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStore_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStore_3F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStore_4F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStore_5F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_LilycoveMuseum_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_LilycoveMuseum_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_PokemonTrainerFanClub │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_BrendansHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_BrendansHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_MaysHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_MaysHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_ProfessorBirchsLab │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_ProfessorBirchsLabWithTable │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_2F_1R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_2F_2R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_2F_3R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_3F_1R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_3F_2R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_3F_3R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_4F │ │ ├── border.bin │ │ └── map.bin │ ├── MarineCave_End │ │ ├── border.bin │ │ └── map.bin │ ├── MarineCave_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── Mart │ │ ├── border.bin │ │ └── map.bin │ ├── MauvilleCity │ │ ├── border.bin │ │ └── map.bin │ ├── MauvilleCity_BikeShop │ │ ├── border.bin │ │ └── map.bin │ ├── MauvilleCity_GameCorner │ │ ├── border.bin │ │ └── map.bin │ ├── MauvilleCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_1F_1R │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_1F_2R │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_B1F_1R │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_B1F_2R │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_StevensCave │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_2F │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_3F │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_4F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_GameCorner_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_GameCorner_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_SpaceCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_SpaceCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_StevensHouse │ │ ├── border.bin │ │ └── map.bin │ ├── MtChimney │ │ ├── border.bin │ │ └── map.bin │ ├── MtMoon_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MtMoon_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── MtMoon_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_2F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_3F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_4F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_5F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_6F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_Summit │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Bottom │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Fork │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_LadderRoom1 │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_LadderRoom2 │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Top │ │ ├── border.bin │ │ └── map.bin │ ├── NewMauville_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── NewMauville_Inside │ │ ├── border.bin │ │ └── map.bin │ ├── OldaleTown │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── PalletTown │ │ ├── border.bin │ │ └── map.bin │ ├── PalletTown_PlayersHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PalletTown_PlayersHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PalletTown_ProfessorOaksLab │ │ ├── border.bin │ │ └── map.bin │ ├── PalletTown_RivalsHouse │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgCity │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgWoods │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_Mart │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_Museum_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_Museum_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_AgathasRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_BrunosRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_ChallengerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_ChampionsRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_HallOfFame │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_LancesRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_LoreleisRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_SecretBattle │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonMansion_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonMansion_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonMansion_3F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonMansion_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_3F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_4F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_5F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_6F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_7F │ │ ├── border.bin │ │ └── map.bin │ ├── PowerPlant │ │ ├── border.bin │ │ └── map.bin │ ├── RecordCorner │ │ ├── border.bin │ │ └── map.bin │ ├── RockTunnel_1F │ │ ├── border.bin │ │ └── map.bin │ ├── RockTunnel_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── RocketHideout_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── RocketHideout_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── RocketHideout_B3F │ │ ├── border.bin │ │ └── map.bin │ ├── RocketHideout_B4F │ │ ├── border.bin │ │ └── map.bin │ ├── RocketHideout_Elevator │ │ ├── border.bin │ │ └── map.bin │ ├── Route1 │ │ ├── border.bin │ │ └── map.bin │ ├── Route10 │ │ ├── border.bin │ │ └── map.bin │ ├── Route101 │ │ ├── border.bin │ │ └── map.bin │ ├── Route102 │ │ ├── border.bin │ │ └── map.bin │ ├── Route103 │ │ ├── border.bin │ │ └── map.bin │ ├── Route104 │ │ ├── border.bin │ │ └── map.bin │ ├── Route104_MrBrineysHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route104_PrettyPetalFlowerShop │ │ ├── border.bin │ │ └── map.bin │ ├── Route104_Prototype │ │ ├── border.bin │ │ └── map.bin │ ├── Route105 │ │ ├── border.bin │ │ └── map.bin │ ├── Route106 │ │ ├── border.bin │ │ └── map.bin │ ├── Route107 │ │ ├── border.bin │ │ └── map.bin │ ├── Route108 │ │ ├── border.bin │ │ └── map.bin │ ├── Route109 │ │ ├── border.bin │ │ └── map.bin │ ├── Route109_SeashoreHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route10_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Route10_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── Route11 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_SeasideCyclingRoadEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHouseCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHouseEnd │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHouseEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle1 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle2 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle3 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle4 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle5 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle6 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle7 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle8 │ │ ├── border.bin │ │ └── map.bin │ ├── Route111 │ │ ├── border.bin │ │ └── map.bin │ ├── Route111_NoMirageTower │ │ ├── border.bin │ │ └── map.bin │ ├── Route112 │ │ ├── border.bin │ │ └── map.bin │ ├── Route113 │ │ ├── border.bin │ │ └── map.bin │ ├── Route114 │ │ ├── border.bin │ │ └── map.bin │ ├── Route114_FossilManiacsHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route114_FossilManiacsTunnel │ │ ├── border.bin │ │ └── map.bin │ ├── Route114_LanettesHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route115 │ │ ├── border.bin │ │ └── map.bin │ ├── Route116 │ │ ├── border.bin │ │ └── map.bin │ ├── Route116_TunnelersRestHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route117 │ │ ├── border.bin │ │ └── map.bin │ ├── Route117_PokemonDayCare │ │ ├── border.bin │ │ └── map.bin │ ├── Route118 │ │ ├── border.bin │ │ └── map.bin │ ├── Route119 │ │ ├── border.bin │ │ └── map.bin │ ├── Route119_WeatherInstitute_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Route119_WeatherInstitute_2F │ │ ├── border.bin │ │ └── map.bin │ ├── Route12 │ │ ├── border.bin │ │ └── map.bin │ ├── Route120 │ │ ├── border.bin │ │ └── map.bin │ ├── Route121 │ │ ├── border.bin │ │ └── map.bin │ ├── Route121_SafariZoneEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route122 │ │ ├── border.bin │ │ └── map.bin │ ├── Route123 │ │ ├── border.bin │ │ └── map.bin │ ├── Route124 │ │ ├── border.bin │ │ └── map.bin │ ├── Route124_DivingTreasureHuntersHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route125 │ │ ├── border.bin │ │ └── map.bin │ ├── Route126 │ │ ├── border.bin │ │ └── map.bin │ ├── Route127 │ │ ├── border.bin │ │ └── map.bin │ ├── Route128 │ │ ├── border.bin │ │ └── map.bin │ ├── Route129 │ │ ├── border.bin │ │ └── map.bin │ ├── Route12_FishingHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route12_NorthEntrance_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Route12_NorthEntrance_2F │ │ ├── border.bin │ │ └── map.bin │ ├── Route13 │ │ ├── border.bin │ │ └── map.bin │ ├── Route130 │ │ ├── border.bin │ │ └── map.bin │ ├── Route130_MirageIsland │ │ ├── border.bin │ │ └── map.bin │ ├── Route131 │ │ ├── border.bin │ │ └── map.bin │ ├── Route131_SkyPillar │ │ ├── border.bin │ │ └── map.bin │ ├── Route132 │ │ ├── border.bin │ │ └── map.bin │ ├── Route133 │ │ ├── border.bin │ │ └── map.bin │ ├── Route134 │ │ ├── border.bin │ │ └── map.bin │ ├── Route14 │ │ ├── border.bin │ │ └── map.bin │ ├── Route15 │ │ ├── border.bin │ │ └── map.bin │ ├── Route15_WestEntrance_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Route15_WestEntrance_2F │ │ ├── border.bin │ │ └── map.bin │ ├── Route16 │ │ ├── border.bin │ │ └── map.bin │ ├── Route16_House │ │ ├── border.bin │ │ └── map.bin │ ├── Route16_NorthEntrance_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Route16_NorthEntrance_2F │ │ ├── border.bin │ │ └── map.bin │ ├── Route17 │ │ ├── border.bin │ │ └── map.bin │ ├── Route18 │ │ ├── border.bin │ │ └── map.bin │ ├── Route18_EastEntrance_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Route18_EastEntrance_2F │ │ ├── border.bin │ │ └── map.bin │ ├── Route19 │ │ ├── border.bin │ │ └── map.bin │ ├── Route2 │ │ ├── border.bin │ │ └── map.bin │ ├── Route20 │ │ ├── border.bin │ │ └── map.bin │ ├── Route21_North │ │ ├── border.bin │ │ └── map.bin │ ├── Route21_South │ │ ├── border.bin │ │ └── map.bin │ ├── Route22 │ │ ├── border.bin │ │ └── map.bin │ ├── Route22_NorthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route23 │ │ ├── border.bin │ │ └── map.bin │ ├── Route24 │ │ ├── border.bin │ │ └── map.bin │ ├── Route25 │ │ ├── border.bin │ │ └── map.bin │ ├── Route25_SeaCottage │ │ ├── border.bin │ │ └── map.bin │ ├── Route2_EastBuilding │ │ ├── border.bin │ │ └── map.bin │ ├── Route2_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route2_House │ │ ├── border.bin │ │ └── map.bin │ ├── Route3 │ │ ├── border.bin │ │ └── map.bin │ ├── Route4 │ │ ├── border.bin │ │ └── map.bin │ ├── Route4_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Route4_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── Route5 │ │ ├── border.bin │ │ └── map.bin │ ├── Route5_PokemonDayCare │ │ ├── border.bin │ │ └── map.bin │ ├── Route5_SouthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route6 │ │ ├── border.bin │ │ └── map.bin │ ├── Route6_NorthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route7 │ │ ├── border.bin │ │ └── map.bin │ ├── Route7_EastEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route8 │ │ ├── border.bin │ │ └── map.bin │ ├── Route8_WestEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route9 │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_CuttersHouse │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_DevonCorp_1F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_DevonCorp_2F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_DevonCorp_3F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Flat1_1F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Flat1_2F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Flat2_1F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Flat2_2F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Flat2_3F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_House │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_PokemonSchool │ │ ├── border.bin │ │ └── map.bin │ ├── RusturfTunnel │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_1F_Corridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_2F_Corridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_3F_Corridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_B1F_Corridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_CaptainsOffice │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_Deck │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_Kitchen │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_Room1 │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_Room2 │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidalCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidalLowerDeck │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidalRooms │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Center │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_East │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_North │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Northeast │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Northwest │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_RestHouse │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_SecretHouse │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_South │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Southeast │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Southwest │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_West │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_CopycatsHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_CopycatsHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_Dojo │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_EastWestEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_House │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_Mart │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_MrPsychicsHouse │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_NorthSouthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_PokemonTrainerFanClub │ │ ├── border.bin │ │ └── map.bin │ ├── ScorchedSlab │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room1 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room2 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room3 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room4 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room5 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room6 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room7 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room8 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room9 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room9_Lava │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B3F │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B3F_CurrentStopped │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B4F │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B4F_CurrentStopped │ │ ├── border.bin │ │ └── map.bin │ ├── SealedChamber_InnerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── SealedChamber_OuterRoom │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BlueCave1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BlueCave2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BlueCave3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BlueCave4 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BrownCave1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BrownCave2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BrownCave3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BrownCave4 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_RedCave1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_RedCave2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_RedCave3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_RedCave4 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Shrub1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Shrub2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Shrub3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Shrub4 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Tree1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Tree2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Tree3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Tree4 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_YellowCave1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_YellowCave2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_YellowCave3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_YellowCave4 │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_HighTideEntranceRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_HighTideInnerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_LowTideEntranceRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_LowTideIceRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_LowTideInnerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_LowTideLowerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_LowTideStairsRoom │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_10F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_11F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_2F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_3F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_4F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_5F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_6F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_7F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_8F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_9F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_Elevator │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_1F_Clean │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_2F │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_2F_Clean │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_3F │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_3F_Clean │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_4F │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_4F_Clean │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_5F │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_5F_Clean │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_Outside │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_Top │ │ ├── border.bin │ │ └── map.bin │ ├── SkyPillar_Top_Clean │ │ ├── border.bin │ │ └── map.bin │ ├── SlateportCity │ │ ├── border.bin │ │ └── map.bin │ ├── SlateportCity_OceanicMuseum_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SlateportCity_OceanicMuseum_2F │ │ ├── border.bin │ │ └── map.bin │ ├── SlateportCity_PokemonFanClub │ │ ├── border.bin │ │ └── map.bin │ ├── SlateportCity_SternsShipyard_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SlateportCity_SternsShipyard_2F │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_Gym_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_Gym_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_House3 │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_LegendsBattle │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_LotadAndSeedotHouse │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_MysteryEventsHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_MysteryEventsHouse_1F_StairsUnblocked │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_MysteryEventsHouse_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── SouthernIsland_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── SouthernIsland_Interior │ │ ├── border.bin │ │ └── map.bin │ ├── TerraCave_End │ │ ├── border.bin │ │ └── map.bin │ ├── TerraCave_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── TradeCenter │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_1F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_2F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_3F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_4F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_Roof │ │ ├── border.bin │ │ └── map.bin │ ├── UndergroundPath_EastEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── UndergroundPath_EastWestTunnel │ │ ├── border.bin │ │ └── map.bin │ ├── UndergroundPath_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── UndergroundPath_NorthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── UndergroundPath_NorthSouthTunnel │ │ ├── border.bin │ │ └── map.bin │ ├── UndergroundPath_SouthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── UndergroundPath_WestEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_MarineCave │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route105 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route124 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route125 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route126 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route127 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route128 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route129 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route134 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_SeafloorCavern │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_SealedChamber │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_SootopolisCity │ │ ├── border.bin │ │ └── map.bin │ ├── UnionRoom │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave1 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave10 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave11 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave12 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave13 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave14 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave2 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave3 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave4 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave5 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave6 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave7 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave8 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave9 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall1 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall2 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall3 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall4 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall5 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall6 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestRoom1 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestRoom2 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestRoom3 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedOutdoorArea │ │ ├── border.bin │ │ └── map.bin │ ├── VerdanturfTown │ │ ├── border.bin │ │ └── map.bin │ ├── VerdanturfTown_BattleTentBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── VerdanturfTown_WandasHouse │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity_House3 │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity_Mart │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity_PokemonFanClub │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_1F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_2F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_3F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_MoltresCave │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity_House │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity_Mart │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity_School │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianForest │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianForest_NorthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianForest_SouthEntrance │ │ ├── border.bin │ │ └── map.bin │ └── layouts.json ├── map_events.s ├── maps.s ├── maps │ ├── .gitignore │ ├── AbandonedShip_CaptainsOffice │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Corridors_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Corridors_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Deck │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_HiddenFloorCorridors │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_HiddenFloorRooms │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Room_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Rooms2_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Rooms2_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Rooms_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Rooms_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Underwater1 │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Underwater2 │ │ ├── map.json │ │ └── scripts.inc │ ├── AlteringCave │ │ ├── map.json │ │ └── scripts.inc │ ├── AncientTomb │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_UnusedRubyMap1 │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_UnusedRubyMap2 │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_UnusedRubyMap3 │ │ ├── map.json │ │ └── scripts.inc │ ├── ArtisanCave_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── ArtisanCave_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleColosseum_2P │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleColosseum_4P │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleArenaBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleArenaCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleArenaLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomeBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomeCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomeLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomePreBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleFactoryBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleFactoryLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleFactoryPreBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePalaceBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePalaceCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePalaceLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeRoomFinal │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeRoomNormal │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeRoomWildMons │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeThreePathRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePyramidFloor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePyramidLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePyramidTop │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerBattleRoom2 │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerElevator │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerMultiBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerMultiCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerMultiPartnerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_ExchangeServiceCorner │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge1 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge2 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge3 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge4 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge5 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge6 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge7 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge8 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge9 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_OutsideEast │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_OutsideWest │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_RankingHall │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_ReceptionGate │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_ScottsHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── BattlePyramidSquare01 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattlePyramidSquare02 │ │ └── map.json │ ├── BattlePyramidSquare03 │ │ └── map.json │ ├── BattlePyramidSquare04 │ │ └── map.json │ ├── BattlePyramidSquare05 │ │ └── map.json │ ├── BattlePyramidSquare06 │ │ └── map.json │ ├── BattlePyramidSquare07 │ │ └── map.json │ ├── BattlePyramidSquare08 │ │ └── map.json │ ├── BattlePyramidSquare09 │ │ └── map.json │ ├── BattlePyramidSquare10 │ │ └── map.json │ ├── BattlePyramidSquare11 │ │ └── map.json │ ├── BattlePyramidSquare12 │ │ └── map.json │ ├── BattlePyramidSquare13 │ │ └── map.json │ ├── BattlePyramidSquare14 │ │ └── map.json │ ├── BattlePyramidSquare15 │ │ └── map.json │ ├── BattlePyramidSquare16 │ │ └── map.json │ ├── BattleTower_2F_Shop │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleTower_3F_Lounge │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleTower_Basement │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleTower_Elevator │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleTower_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleTower_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleTower_House │ │ ├── map.json │ │ └── scripts.inc │ ├── BirthIsland_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── BirthIsland_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_UnusedRubySapphireMap1 │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_UnusedRubySapphireMap2 │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_UnusedRubySapphireMap3 │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_Condominiums_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_Condominiums_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_Condominiums_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_Condominiums_Roof │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_Condominiums_RoofRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_DepartmentStore_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_DepartmentStore_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_DepartmentStore_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_DepartmentStore_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_DepartmentStore_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_DepartmentStore_Elevator │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_DepartmentStore_Roof │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_GameCorner │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_GameCornerPrizeRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_Hotel │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_Restaurant │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCave_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCave_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCave_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity_BikeShop │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity_House5 │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland_House │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland_Lab_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland_Lab_ExperimentRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland_Lab_Lounge │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland_Lab_ResearchRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── ContestHall │ │ ├── map.json │ │ └── scripts.inc │ ├── ContestHallBeauty │ │ └── map.json │ ├── ContestHallCool │ │ └── map.json │ ├── ContestHallCute │ │ └── map.json │ ├── ContestHallSmart │ │ └── map.json │ ├── ContestHallTough │ │ └── map.json │ ├── DesertRuins │ │ ├── map.json │ │ └── scripts.inc │ ├── DesertUnderpass │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_Hall │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── DiglettsCave_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── DiglettsCave_NorthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── DiglettsCave_SouthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_ChampionsRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_DrakesRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_GlaciasRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_Hall1 │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_Hall2 │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_Hall3 │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_Hall4 │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_Hall5 │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_HallOfFame │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_PhoebesRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_PokemonLeague_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_PokemonLeague_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_SidneysRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_BattleTentBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_BattleTentCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_BattleTentLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_CozmosHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_MoveRelearnersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── FarawayIsland_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── FarawayIsland_Interior │ │ ├── map.json │ │ └── scripts.inc │ ├── FieryPath │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_DecorationShop │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_House5 │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_SafariZone_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_SafariZone_Office │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_WardensHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── GraniteCave_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── GraniteCave_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── GraniteCave_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── GraniteCave_StevensRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── IndigoPlateau_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── IndigoPlateau_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── IndigoPlateau_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── InsideOfTruck │ │ ├── map.json │ │ └── scripts.inc │ ├── IslandCave │ │ ├── map.json │ │ └── scripts.inc │ ├── JaggedPass │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_Gym_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_Gym_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_HerbShop │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_House │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavenderTown │ │ ├── map.json │ │ └── scripts.inc │ ├── LavenderTown_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── LavenderTown_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── LavenderTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── LavenderTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavenderTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavenderTown_VolunteerPokemonHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_ContestHall │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_ContestLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_CoveLilyMotel_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_CoveLilyMotel_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStoreElevator │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStoreRooftop │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_LilycoveMuseum_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_LilycoveMuseum_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_MoveDeletersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_PokemonTrainerFanClub │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_UnusedMart │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown_BrendansHouse_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown_BrendansHouse_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown_MaysHouse_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown_MaysHouse_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown_ProfessorBirchsLab │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_2F_1R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_2F_2R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_2F_3R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_3F_1R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_3F_2R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_3F_3R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── MarineCave_End │ │ ├── map.json │ │ └── scripts.inc │ ├── MarineCave_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_BikeShop │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_GameCorner │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MeteorFalls_1F_1R │ │ ├── map.json │ │ └── scripts.inc │ ├── MeteorFalls_1F_2R │ │ ├── map.json │ │ └── scripts.inc │ ├── MeteorFalls_B1F_1R │ │ ├── map.json │ │ └── scripts.inc │ ├── MeteorFalls_B1F_2R │ │ ├── map.json │ │ └── scripts.inc │ ├── MeteorFalls_StevensCave │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_GameCorner_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_GameCorner_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_SpaceCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_SpaceCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_StevensHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── MtChimney │ │ ├── map.json │ │ └── scripts.inc │ ├── MtChimney_CableCarStation │ │ ├── map.json │ │ └── scripts.inc │ ├── MtMoon_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtMoon_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtMoon_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_6F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_Summit │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Bottom │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down01 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down02 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down03 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down04 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down05 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down06 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down07 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down08 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down09 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down10 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down11 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Fork │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Top │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up1 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up2 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up3 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up4 │ │ ├── map.json │ │ └── scripts.inc │ ├── NewMauville_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── NewMauville_Inside │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House5 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PalletTown │ │ ├── map.json │ │ └── scripts.inc │ ├── PalletTown_PlayersHouse_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PalletTown_PlayersHouse_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PalletTown_ProfessorOaksLab │ │ ├── map.json │ │ └── scripts.inc │ ├── PalletTown_RivalsHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_WallysHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgWoods │ │ ├── map.json │ │ └── scripts.inc │ ├── PewterCity │ │ ├── map.json │ │ └── scripts.inc │ ├── PewterCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── PewterCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── PewterCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── PewterCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── PewterCity_Museum_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PewterCity_Museum_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PewterCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PewterCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonLeague_AgathasRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonLeague_BrunosRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonLeague_ChallengerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonLeague_ChampionsRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonLeague_HallOfFame │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonLeague_LancesRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonLeague_LoreleisRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonLeague_SecretBattle │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonMansion_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonMansion_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonMansion_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonMansion_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonTower_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonTower_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonTower_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonTower_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonTower_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonTower_6F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonTower_7F │ │ ├── map.json │ │ └── scripts.inc │ ├── PowerPlant │ │ ├── map.json │ │ └── scripts.inc │ ├── RecordCorner │ │ ├── map.json │ │ └── scripts.inc │ ├── RockTunnel_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RockTunnel_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RocketHideout_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RocketHideout_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── RocketHideout_B3F │ │ ├── map.json │ │ └── scripts.inc │ ├── RocketHideout_B4F │ │ ├── map.json │ │ └── scripts.inc │ ├── RocketHideout_Elevator │ │ ├── map.json │ │ └── scripts.inc │ ├── Route1 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route10 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route101 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route102 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route103 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104_MrBrineysHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104_PrettyPetalFlowerShop │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104_Prototype │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104_PrototypePrettyPetalFlowerShop │ │ ├── map.json │ │ └── scripts.inc │ ├── Route105 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route106 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route107 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route108 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route109 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route109_SeashoreHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route10_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route10_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route11 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_SeasideCyclingRoadNorthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_SeasideCyclingRoadSouthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHouseCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHouseEnd │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHouseEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle1 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle2 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle3 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle4 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle5 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle6 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle7 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle8 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route111 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route111_OldLadysRestStop │ │ ├── map.json │ │ └── scripts.inc │ ├── Route111_WinstrateFamilysHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route112 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route112_CableCarStation │ │ ├── map.json │ │ └── scripts.inc │ ├── Route113 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route113_GlassWorkshop │ │ ├── map.json │ │ └── scripts.inc │ ├── Route114 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route114_FossilManiacsHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route114_FossilManiacsTunnel │ │ ├── map.json │ │ └── scripts.inc │ ├── Route114_LanettesHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route115 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route116 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route116_TunnelersRestHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route117 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route117_PokemonDayCare │ │ ├── map.json │ │ └── scripts.inc │ ├── Route118 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119_House │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119_WeatherInstitute_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119_WeatherInstitute_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route11_EastEntrance_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route11_EastEntrance_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route12 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route120 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route121 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route121_SafariZoneEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route122 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route123 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route123_BerryMastersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route124 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route124_DivingTreasureHuntersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route125 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route126 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route127 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route128 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route129 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route12_FishingHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route12_NorthEntrance_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route12_NorthEntrance_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route13 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route130 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route131 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route132 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route133 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route134 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route14 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route15 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route15_WestEntrance_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route15_WestEntrance_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route16 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route16_House │ │ ├── map.json │ │ └── scripts.inc │ ├── Route16_NorthEntrance_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route16_NorthEntrance_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route17 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route18 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route18_EastEntrance_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route18_EastEntrance_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route19 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route2 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route20 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route21_North │ │ ├── map.json │ │ └── scripts.inc │ ├── Route21_South │ │ ├── map.json │ │ └── scripts.inc │ ├── Route22 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route22_NorthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route23 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route24 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route25 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route25_SeaCottage │ │ ├── map.json │ │ └── scripts.inc │ ├── Route2_EastBuilding │ │ ├── map.json │ │ └── scripts.inc │ ├── Route2_House │ │ ├── map.json │ │ └── scripts.inc │ ├── Route3 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route4 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route4_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route4_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route5 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route5_PokemonDayCare │ │ ├── map.json │ │ └── scripts.inc │ ├── Route5_SouthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route6 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route6_NorthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route7 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route7_EastEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route8 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route8_WestEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route9 │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_CuttersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_DevonCorp_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_DevonCorp_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_DevonCorp_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Flat1_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Flat1_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Flat2_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Flat2_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Flat2_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_PokemonSchool │ │ ├── map.json │ │ └── scripts.inc │ ├── RusturfTunnel │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_1F_Corridor │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_1F_Room1 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_1F_Room2 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_1F_Room3 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_1F_Room4 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_1F_Room5 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_1F_Room6 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_1F_Room7 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_2F_Corridor │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_2F_Room1 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_2F_Room2 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_2F_Room3 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_2F_Room4 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_2F_Room5 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_2F_Room6 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_3F_Corridor │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_B1F_Corridor │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_B1F_Room1 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_B1F_Room2 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_B1F_Room3 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_B1F_Room4 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_B1F_Room5 │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_CaptainsOffice │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_Deck │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_Kitchen │ │ ├── map.json │ │ └── scripts.inc │ ├── SSTidalCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── SSTidalLowerDeck │ │ ├── map.json │ │ └── scripts.inc │ ├── SSTidalRooms │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_Center │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_Center_RestHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_East │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_East_RestHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_North │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_North_RestHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_Northeast │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_Northwest │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_RestHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_SecretHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_South │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_Southeast │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_Southwest │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_West │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_West_RestHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_CopycatsHouse_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_CopycatsHouse_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_Dojo │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_House │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_MrPsychicsHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_PokemonTrainerFanClub │ │ ├── map.json │ │ └── scripts.inc │ ├── ScorchedSlab │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room1 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room2 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room3 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room4 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room5 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room6 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room7 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room8 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room9 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafoamIslands_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafoamIslands_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafoamIslands_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafoamIslands_B3F │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafoamIslands_B4F │ │ ├── map.json │ │ └── scripts.inc │ ├── SealedChamber_InnerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── SealedChamber_OuterRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── SecretBase_BlueCave1 │ │ └── map.json │ ├── SecretBase_BlueCave2 │ │ └── map.json │ ├── SecretBase_BlueCave3 │ │ └── map.json │ ├── SecretBase_BlueCave4 │ │ └── map.json │ ├── SecretBase_BrownCave1 │ │ └── map.json │ ├── SecretBase_BrownCave2 │ │ └── map.json │ ├── SecretBase_BrownCave3 │ │ └── map.json │ ├── SecretBase_BrownCave4 │ │ └── map.json │ ├── SecretBase_RedCave1 │ │ └── map.json │ ├── SecretBase_RedCave2 │ │ └── map.json │ ├── SecretBase_RedCave3 │ │ └── map.json │ ├── SecretBase_RedCave4 │ │ └── map.json │ ├── SecretBase_Shrub1 │ │ └── map.json │ ├── SecretBase_Shrub2 │ │ └── map.json │ ├── SecretBase_Shrub3 │ │ └── map.json │ ├── SecretBase_Shrub4 │ │ └── map.json │ ├── SecretBase_Tree1 │ │ └── map.json │ ├── SecretBase_Tree2 │ │ └── map.json │ ├── SecretBase_Tree3 │ │ └── map.json │ ├── SecretBase_Tree4 │ │ └── map.json │ ├── SecretBase_YellowCave1 │ │ └── map.json │ ├── SecretBase_YellowCave2 │ │ └── map.json │ ├── SecretBase_YellowCave3 │ │ └── map.json │ ├── SecretBase_YellowCave4 │ │ └── map.json │ ├── ShoalCave_HighTideEntranceRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_HighTideInnerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_LowTideEntranceRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_LowTideIceRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_LowTideInnerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_LowTideLowerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_LowTideStairsRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_10F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_11F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_6F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_7F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_8F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_9F │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_Elevator │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_Outside │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_Top │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_BattleTentBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_BattleTentCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_BattleTentLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_House │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_NameRatersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_OceanicMuseum_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_OceanicMuseum_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_PokemonFanClub │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_SternsShipyard_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_SternsShipyard_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_Gym_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_Gym_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House5 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House6 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House7 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_LotadAndSeedotHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_MysteryEventsHouse_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_MysteryEventsHouse_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SouthernIsland_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── SouthernIsland_Interior │ │ ├── map.json │ │ └── scripts.inc │ ├── TerraCave_End │ │ ├── map.json │ │ └── scripts.inc │ ├── TerraCave_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── TradeCenter │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_Elevator │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_Roof │ │ ├── map.json │ │ └── scripts.inc │ ├── UndergroundPath_EastEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── UndergroundPath_EastWestTunnel │ │ ├── map.json │ │ └── scripts.inc │ ├── UndergroundPath_NorthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── UndergroundPath_NorthSouthTunnel │ │ ├── map.json │ │ └── scripts.inc │ ├── UndergroundPath_SouthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── UndergroundPath_WestEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_MarineCave │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route105 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route124 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route125 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route126 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route127 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route128 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route129 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route134 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_SeafloorCavern │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_SealedChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_SootopolisCity │ │ ├── map.json │ │ └── scripts.inc │ ├── UnionRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── UnusedContestHall1 │ │ └── map.json │ ├── UnusedContestHall2 │ │ └── map.json │ ├── UnusedContestHall3 │ │ └── map.json │ ├── UnusedContestHall4 │ │ └── map.json │ ├── UnusedContestHall5 │ │ └── map.json │ ├── UnusedContestHall6 │ │ └── map.json │ ├── VerdanturfTown │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_BattleTentBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_BattleTentCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_BattleTentLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_FriendshipRatersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_House │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_WandasHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity_PokemonFanClub │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_MoltresCave │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianCity │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianCity_House │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianCity_School │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianForest │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianForest_NorthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianForest_SouthEntrance │ │ ├── map.json │ │ └── scripts.inc │ └── map_groups.json ├── mb_berry_fix.gba ├── mb_colosseum.gba ├── mb_ereader.gba ├── multiboot_berry_glitch_fix.s ├── multiboot_ereader.s ├── multiboot_pokemon_colosseum.s ├── mystery_event_script_cmd_table.s ├── mystery_gift.s ├── script_cmd_table.inc ├── scripts │ ├── abnormal_weather.inc │ ├── apprentice.inc │ ├── battle_pike.inc │ ├── berry_blender.inc │ ├── berry_tree.inc │ ├── cable_club.inc │ ├── cave_hole.inc │ ├── cave_of_origin.inc │ ├── check_furniture.inc │ ├── contest_hall.inc │ ├── costume_swap.inc │ ├── day_care.inc │ ├── debug.inc │ ├── dexnav.inc │ ├── elite_four.inc │ ├── field_move_scripts.inc │ ├── field_poison.inc │ ├── flash.inc │ ├── follower.inc │ ├── gabby_and_ty.inc │ ├── gift_altering_cave.inc │ ├── gift_aurora_ticket.inc │ ├── gift_battle_card.inc │ ├── gift_mystic_ticket.inc │ ├── gift_old_sea_map.inc │ ├── gift_pichu.inc │ ├── gift_stamp_card.inc │ ├── gift_trainer.inc │ ├── hall_of_fame.inc │ ├── interview.inc │ ├── item_ball_scripts.inc │ ├── kecleon.inc │ ├── lilycove_lady.inc │ ├── mauville_man.inc │ ├── move_tutors.inc │ ├── movement.inc │ ├── new_game.inc │ ├── obtain_item.inc │ ├── pc.inc │ ├── pc_transfer.inc │ ├── pkmn_center_nurse.inc │ ├── players_house.inc │ ├── pokemon_league.inc │ ├── pokemon_league_services.inc │ ├── pokemon_mansion.inc │ ├── prof_birch.inc │ ├── profile_man.inc │ ├── questionnaire.inc │ ├── record_mix.inc │ ├── repel.inc │ ├── rival_graphics.inc │ ├── roulette.inc │ ├── safari_zone.inc │ ├── secret_base.inc │ ├── secret_power_tm.inc │ ├── set_gym_trainers.inc │ ├── shared_secret_base.inc │ ├── silphco_doors.inc │ ├── std_msgbox.inc │ ├── surf.inc │ ├── test_signpost.inc │ ├── trainer_battle.inc │ ├── trainer_hill.inc │ ├── trainer_script.inc │ └── tv.inc ├── sound_data.s ├── specials.inc ├── text │ ├── abnormal_weather.inc │ ├── apprentice.inc │ ├── battle_dome.inc │ ├── battle_tent.inc │ ├── berries.inc │ ├── birch_speech.inc │ ├── blend_master.inc │ ├── braille.inc │ ├── cable_club.inc │ ├── check_furniture.inc │ ├── contest_link.inc │ ├── contest_painting.inc │ ├── contest_strings.inc │ ├── event_ticket_1.inc │ ├── event_ticket_2.inc │ ├── frontier_brain.inc │ ├── lottery_corner.inc │ ├── mart_clerk.inc │ ├── match_call.inc │ ├── mauville_man.inc │ ├── move_tutors.inc │ ├── obtain_item.inc │ ├── pc.inc │ ├── pc_transfer.inc │ ├── pkmn_center_nurse.inc │ ├── pokedex_rating.inc │ ├── pokemon_news.inc │ ├── questionnaire.inc │ ├── record_mix.inc │ ├── save.inc │ ├── secret_base_trainers.inc │ ├── shoal_cave.inc │ ├── surf.inc │ ├── trainers.inc │ ├── trick_house_mechadolls.inc │ └── tv.inc ├── tilesets.s ├── tilesets │ ├── graphics.inc │ ├── headers.inc │ ├── metatiles.inc │ ├── primary │ │ ├── building │ │ │ ├── anim │ │ │ │ └── tv_turned_on │ │ │ │ │ ├── 0.png │ │ │ │ │ └── 1.png │ │ │ ├── metatile_attributes.bin │ │ │ ├── metatiles.bin │ │ │ ├── palettes │ │ │ │ ├── 00.pal │ │ │ │ ├── 01.pal │ │ │ │ ├── 02.pal │ │ │ │ ├── 03.pal │ │ │ │ ├── 04.pal │ │ │ │ ├── 05.pal │ │ │ │ ├── 06.pal │ │ │ │ ├── 07.pal │ │ │ │ ├── 08.pal │ │ │ │ ├── 09.pal │ │ │ │ ├── 10.pal │ │ │ │ ├── 11.pal │ │ │ │ ├── 12.pal │ │ │ │ ├── 13.pal │ │ │ │ ├── 14.pal │ │ │ │ └── 15.pal │ │ │ └── tiles.png │ │ ├── general │ │ │ ├── anim │ │ │ │ ├── flower │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ └── 4.png │ │ │ │ ├── land_water_edge │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ └── 3.png │ │ │ │ ├── sand_water_edge │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ └── 6.png │ │ │ │ ├── sandwatersedge │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ └── 7.png │ │ │ │ ├── water │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ └── 7.png │ │ │ │ ├── water_current_landwatersedge │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ └── 7.png │ │ │ │ └── waterfall │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ └── 3.png │ │ │ ├── metatile_attributes.bin │ │ │ ├── metatiles.bin │ │ │ ├── palettes │ │ │ │ ├── 00.pal │ │ │ │ ├── 01.pal │ │ │ │ ├── 02.pal │ │ │ │ ├── 03.pal │ │ │ │ ├── 04.pal │ │ │ │ ├── 05.pal │ │ │ │ ├── 06.pal │ │ │ │ ├── 07.pal │ │ │ │ ├── 08.pal │ │ │ │ ├── 09.pal │ │ │ │ ├── 10.pal │ │ │ │ ├── 11.pal │ │ │ │ ├── 12.pal │ │ │ │ ├── 13.pal │ │ │ │ ├── 14.pal │ │ │ │ └── 15.pal │ │ │ └── tiles.png │ │ └── secret_base │ │ │ ├── metatile_attributes.bin │ │ │ ├── metatiles.bin │ │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ │ ├── tiles.png │ │ │ └── unknown_tiles.png │ └── secondary │ │ ├── battle_arena │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── battle_dome │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── battle_factory │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── battle_frontier │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── battle_frontier_outside_east │ │ ├── anim │ │ │ └── flag │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── battle_frontier_outside_west │ │ ├── anim │ │ │ └── flag │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── battle_frontier_ranking_hall │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── battle_palace │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── battle_pike │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── battle_pyramid │ │ ├── anim │ │ │ ├── statue_shadow │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ └── torch │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── battle_tent │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── berry_forest │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── bike_shop │ │ ├── anim │ │ │ └── blinking_lights │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── brendans_mays_house │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── burgled_house │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── cable_club │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ ├── tiles.png │ │ └── unknown_tiles.png │ │ ├── cave │ │ ├── anim │ │ │ └── lava │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── celadon_city │ │ ├── anim │ │ │ └── fountain │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── celadon_gym │ │ ├── anim │ │ │ └── flowers │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── cerulean_cave │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── cerulean_city │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── cerulean_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── cinnabar_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── cinnabar_island │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── condominiums │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── contest │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── department_store │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── dewford │ │ ├── anim │ │ │ └── flag │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── dewford_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── digletts_cave │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── dummy_1 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── dummy_2 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── dummy_3 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── dummy_4 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── elite_four │ │ ├── anim │ │ │ ├── floor_light │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ │ └── wall_lights │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── ever_grande │ │ ├── anim │ │ │ └── flowers │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── facility │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── fallarbor │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── fan_club_daycare │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── fortree │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── fortree_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── fuchsia_city │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── fuchsia_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── game_corner │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── generic_building │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── generic_building_1 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── generic_building_2 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── hall_of_fame │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── hoenn_building │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── indigo_plateau │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── inside_of_truck │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── inside_ship │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── island_harbor │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── lab │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── lavaridge │ │ ├── anim │ │ │ └── steam │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── lavaridge_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── lavender_town │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── lilycove │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── lilycove_museum │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── mart │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── mauville │ │ ├── anim │ │ │ ├── flower_1 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ └── flower_2 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── mauville_game_corner │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── mauville_gym │ │ ├── anim │ │ │ └── electric_gates │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── meteor_falls │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── mirage_tower │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── mossdeep │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── mossdeep_game_corner │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── mossdeep_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── mt_ember │ │ ├── anim │ │ │ └── steam │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── museum │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── mystery_events_house │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── navel_rock │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── oceanic_museum │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pacifidlog │ │ ├── anim │ │ │ ├── log_bridges │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ └── water_currents │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pallet_town │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── petalburg │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── petalburg_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pewter_city │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pewter_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pokemon_center │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pokemon_day_care │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pokemon_fan_club │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pokemon_league │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pokemon_mansion │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pokemon_school │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pokemon_tower │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── power_plant │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── pretty_petal_flower_shop │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── restaurant_hotel │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── rock_tunnel │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── rustboro │ │ ├── anim │ │ │ ├── fountain │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ │ └── windy_water │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── rustboro_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── rusturf_tunnel │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── safari_zone_building │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── saffron_city │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── saffron_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── school │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── sea_cottage │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── seafoam_islands │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── seashore_house │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── secret_base │ │ ├── blue_cave │ │ │ ├── palettes │ │ │ │ ├── 00.pal │ │ │ │ ├── 01.pal │ │ │ │ ├── 02.pal │ │ │ │ ├── 03.pal │ │ │ │ ├── 04.pal │ │ │ │ ├── 05.pal │ │ │ │ ├── 06.pal │ │ │ │ ├── 07.pal │ │ │ │ ├── 08.pal │ │ │ │ ├── 09.pal │ │ │ │ ├── 10.pal │ │ │ │ ├── 11.pal │ │ │ │ ├── 12.pal │ │ │ │ ├── 13.pal │ │ │ │ ├── 14.pal │ │ │ │ └── 15.pal │ │ │ ├── tiles.png │ │ │ └── unused_tiles.png │ │ ├── brown_cave │ │ │ ├── palettes │ │ │ │ ├── 00.pal │ │ │ │ ├── 01.pal │ │ │ │ ├── 02.pal │ │ │ │ ├── 03.pal │ │ │ │ ├── 04.pal │ │ │ │ ├── 05.pal │ │ │ │ ├── 06.pal │ │ │ │ ├── 07.pal │ │ │ │ ├── 08.pal │ │ │ │ ├── 09.pal │ │ │ │ ├── 10.pal │ │ │ │ ├── 11.pal │ │ │ │ ├── 12.pal │ │ │ │ ├── 13.pal │ │ │ │ ├── 14.pal │ │ │ │ └── 15.pal │ │ │ ├── tiles.png │ │ │ └── unused_tiles.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── red_cave │ │ │ ├── palettes │ │ │ │ ├── 00.pal │ │ │ │ ├── 01.pal │ │ │ │ ├── 02.pal │ │ │ │ ├── 03.pal │ │ │ │ ├── 04.pal │ │ │ │ ├── 05.pal │ │ │ │ ├── 06.pal │ │ │ │ ├── 07.pal │ │ │ │ ├── 08.pal │ │ │ │ ├── 09.pal │ │ │ │ ├── 10.pal │ │ │ │ ├── 11.pal │ │ │ │ ├── 12.pal │ │ │ │ ├── 13.pal │ │ │ │ ├── 14.pal │ │ │ │ └── 15.pal │ │ │ ├── tiles.png │ │ │ └── unused_tiles.png │ │ ├── shrub │ │ │ ├── palettes │ │ │ │ ├── 00.pal │ │ │ │ ├── 01.pal │ │ │ │ ├── 02.pal │ │ │ │ ├── 03.pal │ │ │ │ ├── 04.pal │ │ │ │ ├── 05.pal │ │ │ │ ├── 06.pal │ │ │ │ ├── 07.pal │ │ │ │ ├── 08.pal │ │ │ │ ├── 09.pal │ │ │ │ ├── 10.pal │ │ │ │ ├── 11.pal │ │ │ │ ├── 12.pal │ │ │ │ ├── 13.pal │ │ │ │ ├── 14.pal │ │ │ │ └── 15.pal │ │ │ ├── tiles.png │ │ │ └── unused_tiles.png │ │ ├── tree │ │ │ ├── palettes │ │ │ │ ├── 00.pal │ │ │ │ ├── 01.pal │ │ │ │ ├── 02.pal │ │ │ │ ├── 03.pal │ │ │ │ ├── 04.pal │ │ │ │ ├── 05.pal │ │ │ │ ├── 06.pal │ │ │ │ ├── 07.pal │ │ │ │ ├── 08.pal │ │ │ │ ├── 09.pal │ │ │ │ ├── 10.pal │ │ │ │ ├── 11.pal │ │ │ │ ├── 12.pal │ │ │ │ ├── 13.pal │ │ │ │ ├── 14.pal │ │ │ │ └── 15.pal │ │ │ ├── tiles.png │ │ │ └── unused_tiles.png │ │ └── yellow_cave │ │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ │ ├── tiles.png │ │ │ └── unused_tiles.png │ │ ├── sevii_islands_123 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── sevii_islands_45 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── sevii_islands_67 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── shop │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── silph_co │ │ ├── anim │ │ │ └── fountain │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── metatile_attributes.bin │ │ └── metatiles.bin │ │ ├── slateport │ │ ├── anim │ │ │ └── balloons │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── sootopolis │ │ ├── anim │ │ │ └── stormy_water │ │ │ │ ├── 0_groudon.png │ │ │ │ ├── 0_kyogre.png │ │ │ │ ├── 1_groudon.png │ │ │ │ ├── 1_kyogre.png │ │ │ │ ├── 2_groudon.png │ │ │ │ ├── 2_kyogre.png │ │ │ │ ├── 3_groudon.png │ │ │ │ ├── 3_kyogre.png │ │ │ │ ├── 4_groudon.png │ │ │ │ ├── 4_kyogre.png │ │ │ │ ├── 5_groudon.png │ │ │ │ ├── 5_kyogre.png │ │ │ │ ├── 6_groudon.png │ │ │ │ ├── 6_kyogre.png │ │ │ │ ├── 7_groudon.png │ │ │ │ └── 7_kyogre.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── sootopolis_gym │ │ ├── anim │ │ │ ├── front_waterfall │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ └── side_waterfall │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── ss_anne │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── tanoby_ruins │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── trainer_hill │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── trainer_tower │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── trick_house_puzzle │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── underground_path │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── underwater │ │ ├── anim │ │ │ └── seaweed │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── union_room │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── unused_1 │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── unused_2 │ │ ├── 0.png │ │ ├── 1.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── unused_gatehouse_1 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── unused_gatehouse_2 │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── vermilion_city │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── vermilion_gym │ │ ├── anim │ │ │ └── motorizeddoor │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── viridian_city │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── viridian_forest │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ └── viridian_gym │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ │ └── tiles.png └── variable_states.txt ├── docs └── legacy_WSL1_INSTALL.md ├── emotions.txt ├── extract_sprites.py ├── follower_emotions.py ├── front_palette.py ├── gflib ├── bg.c ├── bg.h ├── blit.c ├── blit.h ├── characters.h ├── dma3.h ├── dma3_manager.c ├── gpu_regs.c ├── gpu_regs.h ├── io_reg.c ├── io_reg.h ├── malloc.c ├── malloc.h ├── sprite.c ├── sprite.h ├── string_util.c ├── string_util.h ├── text.c ├── text.h ├── window.c └── window.h ├── graphics ├── bag │ ├── L_button.png │ ├── R_button.png │ ├── bag.pal │ ├── bag_female.png │ ├── bag_male.png │ ├── bag_pyramid.pal │ ├── bag_pyramid.png │ ├── berry_tag.bin │ ├── berry_tag_screen.pal │ ├── berry_tag_title.bin │ ├── check_berry.pal │ ├── check_berry.png │ ├── check_berry_circle.png │ ├── hm.png │ ├── menu.bin │ ├── menu.png │ ├── menu_female.pal │ ├── menu_male.pal │ ├── menu_pyramid.bin │ ├── menu_pyramid.pal │ ├── rotating_ball.png │ └── select_button.png ├── balls │ ├── dive.png │ ├── great.png │ ├── luxury.png │ ├── master.png │ ├── nest.png │ ├── net.png │ ├── open.png │ ├── poke.png │ ├── premier.png │ ├── repeat.png │ ├── safari.png │ ├── timer.png │ └── ultra.png ├── battle_anims │ ├── backgrounds │ │ ├── attract.bin │ │ ├── attract.png │ │ ├── aurora.bin │ │ ├── aurora.png │ │ ├── bug.pal │ │ ├── cosmic.bin │ │ ├── cosmic.png │ │ ├── dark.bin │ │ ├── dark.png │ │ ├── drill.bin │ │ ├── drill.png │ │ ├── drill_contests.bin │ │ ├── fissure.bin │ │ ├── fissure.png │ │ ├── fog.bin │ │ ├── ghost.bin │ │ ├── ghost.png │ │ ├── guillotine.png │ │ ├── guillotine_contests.bin │ │ ├── guillotine_opponent.bin │ │ ├── guillotine_player.bin │ │ ├── highspeed.png │ │ ├── highspeed_opponent.bin │ │ ├── highspeed_player.bin │ │ ├── ice.bin │ │ ├── ice.png │ │ ├── impact.png │ │ ├── impact_contests.bin │ │ ├── impact_opponent.bin │ │ ├── impact_player.bin │ │ ├── in_air.bin │ │ ├── in_air.png │ │ ├── magma_storm.pal │ │ ├── new │ │ │ ├── aeroblast.pal │ │ │ ├── aeroblast_map.bin │ │ │ ├── aeroblast_tiles.png │ │ │ ├── aura_sphere.pal │ │ │ ├── blackhole_eclipse.bin │ │ │ ├── blackhole_eclipse.png │ │ │ ├── bloom_doom.bin │ │ │ ├── bloom_doom.pal │ │ │ ├── bloom_doom.png │ │ │ ├── bolt_strike.bin │ │ │ ├── bolt_strike.pal │ │ │ ├── bolt_strike.png │ │ │ ├── clangorous_soulblaze.bin │ │ │ ├── clangorous_soulblaze.pal │ │ │ ├── clangorous_soulblaze.png │ │ │ ├── dark_void.bin │ │ │ ├── dark_void.pal │ │ │ ├── dynamax_cannon.pal │ │ │ ├── electric_terrain.bin │ │ │ ├── electric_terrain.pal │ │ │ ├── electric_terrain.png │ │ │ ├── fire1.bin │ │ │ ├── fire1.pal │ │ │ ├── fire1.png │ │ │ ├── fire2.pal │ │ │ ├── focus_blast.bin │ │ │ ├── focus_blast.pal │ │ │ ├── focus_blast.png │ │ │ ├── garbage_falls.pal │ │ │ ├── giga_impact.pal │ │ │ ├── giga_impact.png │ │ │ ├── giga_impact_contest.bin │ │ │ ├── giga_impact_opponent.bin │ │ │ ├── giga_impact_player.bin │ │ │ ├── grassy_terrain.bin │ │ │ ├── grassy_terrain.pal │ │ │ ├── grassy_terrain.png │ │ │ ├── gunk_shot.pal │ │ │ ├── hurricane.bin │ │ │ ├── hurricane.pal │ │ │ ├── hurricane.png │ │ │ ├── hydro_cannon.bin │ │ │ ├── hydro_cannon.pal │ │ │ ├── hydro_cannon.png │ │ │ ├── hydro_pump.bin │ │ │ ├── hydro_pump.pal │ │ │ ├── hydro_pump.png │ │ │ ├── hyper_beam.pal │ │ │ ├── hyperspace_fury.pal │ │ │ ├── inferno_overdrive.bin │ │ │ ├── inferno_overdrive.pal │ │ │ ├── inferno_overdrive.png │ │ │ ├── leaf_storm.bin │ │ │ ├── leaf_storm.pal │ │ │ ├── leaf_storm.png │ │ │ ├── magic_room.pal │ │ │ ├── malicious_moonsault.bin │ │ │ ├── malicious_moonsault.pal │ │ │ ├── malicious_moonsault.png │ │ │ ├── max_lightning.bin │ │ │ ├── max_lightning.pal │ │ │ ├── max_lightning.png │ │ │ ├── misty_terrain.bin │ │ │ ├── misty_terrain.pal │ │ │ ├── misty_terrain.png │ │ │ ├── neverending_nightmare.bin │ │ │ ├── neverending_nightmare.pal │ │ │ ├── neverending_nightmare.png │ │ │ ├── nightmare.bin │ │ │ ├── nightmare.pal │ │ │ ├── nightmare.png │ │ │ ├── poison_falls.pal │ │ │ ├── psychic.pal │ │ │ ├── psychic_terrain.bin │ │ │ ├── psychic_terrain.pal │ │ │ ├── psychic_terrain.png │ │ │ ├── rock_wrecker.pal │ │ │ ├── shattered_psyche.bin │ │ │ ├── shattered_psyche.pal │ │ │ ├── shattered_psyche.png │ │ │ ├── sky_afternoon.pal │ │ │ ├── sky_day.bin │ │ │ ├── sky_day.pal │ │ │ ├── sky_day.png │ │ │ ├── sky_night.pal │ │ │ ├── sludge_wave.pal │ │ │ ├── snuggle_forever.bin │ │ │ ├── snuggle_forever.pal │ │ │ ├── snuggle_forever.png │ │ │ ├── soulstealing_7star_strike.bin │ │ │ ├── soulstealing_7star_strike.pal │ │ │ ├── soulstealing_7star_strike.png │ │ │ ├── spacial_rend.pal │ │ │ ├── spacial_rend.png │ │ │ ├── steel_beam_bg.pal │ │ │ ├── tectonic_rage.bin │ │ │ ├── tectonic_rage.pal │ │ │ ├── trick_room.bin │ │ │ ├── trick_room.pal │ │ │ ├── trick_room.png │ │ │ ├── twinkle_tackle.bin │ │ │ ├── twinkle_tackle.pal │ │ │ ├── twinkle_tackle.png │ │ │ ├── water_pulse.bin │ │ │ ├── water_pulse.pal │ │ │ ├── water_pulse.png │ │ │ ├── waterfall.bin │ │ │ ├── waterfall.pal │ │ │ ├── waterfall.png │ │ │ ├── wonder_room.pal │ │ │ ├── zmove_activate.bin │ │ │ ├── zmove_activate.pal │ │ │ ├── zmove_activate.png │ │ │ ├── zmove_mountain.bin │ │ │ ├── zmove_mountain.pal │ │ │ └── zmove_mountain.png │ │ ├── psychic.bin │ │ ├── psychic.png │ │ ├── sandstorm_brew.bin │ │ ├── sandstorm_brew.png │ │ ├── scary_face.png │ │ ├── scary_face_contest.bin │ │ ├── scary_face_opponent.bin │ │ ├── scary_face_player.bin │ │ ├── sky.pal │ │ ├── solarbeam.bin │ │ ├── solarbeam.pal │ │ ├── thunder.bin │ │ ├── thunder.png │ │ ├── water.png │ │ ├── water_contest.bin │ │ ├── water_muddy.pal │ │ ├── water_opponent.bin │ │ ├── water_player.bin │ │ └── windstorm_brew.png │ ├── masks │ │ ├── cure_bubbles.bin │ │ ├── cure_bubbles.png │ │ ├── curse.bin │ │ ├── curse.png │ │ ├── light_beam.bin │ │ ├── light_beam.png │ │ ├── metal_shine.bin │ │ ├── metal_shine.png │ │ ├── stat.png │ │ ├── stat1.pal │ │ ├── stat2.pal │ │ ├── stat3.pal │ │ ├── stat4.pal │ │ ├── stat5.pal │ │ ├── stat6.pal │ │ ├── stat7.pal │ │ ├── stat8.pal │ │ ├── stat_tilemap_1.bin │ │ ├── stat_tilemap_2.bin │ │ ├── unused_level_up.bin │ │ └── unused_level_up.png │ ├── sprites │ │ ├── accupressure.png │ │ ├── air_slash.png │ │ ├── air_wave.png │ │ ├── air_wave_2.png │ │ ├── alert.png │ │ ├── alpha_symbol.png │ │ ├── amnesia.png │ │ ├── angel.png │ │ ├── anger.png │ │ ├── attack_order.png │ │ ├── bell.png │ │ ├── bell_2.png │ │ ├── bent_spoon.png │ │ ├── bird.png │ │ ├── black_ball.bin │ │ ├── black_ball.png │ │ ├── black_ball_2.png │ │ ├── black_smoke.png │ │ ├── blue_burst.png │ │ ├── blue_flames.png │ │ ├── blue_flames_2.png │ │ ├── blue_light_wall.pal │ │ ├── blue_lines.png │ │ ├── blue_orb.pal │ │ ├── blue_ring.pal │ │ ├── blue_ring_2.pal │ │ ├── blue_shards.png │ │ ├── blue_star.png │ │ ├── bluegreen_orb.png │ │ ├── bone.png │ │ ├── bone_2.png │ │ ├── breaking_egg.png │ │ ├── breath.png │ │ ├── brown_orb.pal │ │ ├── brown_triangle.png │ │ ├── bubble.png │ │ ├── bubble_burst.png │ │ ├── bubble_burst_2.png │ │ ├── circle_impact.png │ │ ├── circle_of_light.png │ │ ├── clamp.png │ │ ├── clapping.png │ │ ├── claw_slash.png │ │ ├── claw_slash_2.png │ │ ├── closing_eye.png │ │ ├── closing_eye_2.png │ │ ├── coin.png │ │ ├── colored_orbs.png │ │ ├── confetti.png │ │ ├── conversion.png │ │ ├── cracked_egg.png │ │ ├── cross_impact.png │ │ ├── cut.png │ │ ├── devil.png │ │ ├── dirt_mound.png │ │ ├── dragon_pulse.png │ │ ├── duck.png │ │ ├── eclipsing_orb.png │ │ ├── electric_orbs.png │ │ ├── electricity.png │ │ ├── energy_ball.png │ │ ├── explosion.png │ │ ├── explosion_2.png │ │ ├── explosion_3.png │ │ ├── explosion_4.png │ │ ├── explosion_5.png │ │ ├── explosion_6.png │ │ ├── eye.png │ │ ├── eye_sparkle.png │ │ ├── fang_attack.png │ │ ├── fangs.png │ │ ├── feint_punch.png │ │ ├── finger.png │ │ ├── finger_2.png │ │ ├── fire.png │ │ ├── fire_plume.png │ │ ├── flash_cannon_ball.png │ │ ├── flat_rock.png │ │ ├── flower.pal │ │ ├── flower_0.png │ │ ├── flower_1.png │ │ ├── flying_dirt.png │ │ ├── focus_energy.png │ │ ├── fresh_egg.png │ │ ├── fury_swipes.png │ │ ├── gem_1.png │ │ ├── gem_2.png │ │ ├── gem_3.png │ │ ├── ghostly_spirit.png │ │ ├── glass.png │ │ ├── glass_2.png │ │ ├── glowy_blue_orb.pal │ │ ├── glowy_green_orb.pal │ │ ├── glowy_red_orb.png │ │ ├── gold_ring.png │ │ ├── gold_stars.png │ │ ├── gray_light_wall.pal │ │ ├── gray_orb.png │ │ ├── gray_smoke.png │ │ ├── green_light_wall.png │ │ ├── green_sparkle.png │ │ ├── green_spike.png │ │ ├── green_star.png │ │ ├── guard_ring.png │ │ ├── gust.png │ │ ├── hail.png │ │ ├── hands_and_feet.png │ │ ├── hatched_egg.png │ │ ├── hit.png │ │ ├── hit_2.pal │ │ ├── hit_duplicate.png │ │ ├── hollow_orb.png │ │ ├── horn_hit.png │ │ ├── horn_hit_2.png │ │ ├── humanoid_foot.png │ │ ├── humanoid_hand.png │ │ ├── ice_chunk.png │ │ ├── ice_crystals.pal │ │ ├── ice_crystals_0.png │ │ ├── ice_crystals_1.png │ │ ├── ice_crystals_2.png │ │ ├── ice_crystals_3.png │ │ ├── ice_crystals_4.png │ │ ├── ice_cube.pal │ │ ├── ice_cube_0.png │ │ ├── ice_cube_1.png │ │ ├── ice_cube_2.png │ │ ├── ice_cube_3.png │ │ ├── ice_spikes.png │ │ ├── icicle_spear.png │ │ ├── impact.png │ │ ├── impact_2.png │ │ ├── impact_3.png │ │ ├── item_bag.png │ │ ├── jagged_music_note.png │ │ ├── large_fresh_egg.png │ │ ├── leaf.png │ │ ├── leer.png │ │ ├── letter_z.png │ │ ├── lick.png │ │ ├── lightbulb.png │ │ ├── lightning.png │ │ ├── lightning_2.png │ │ ├── lock_on.png │ │ ├── magenta_heart.png │ │ ├── magnifying_glass.png │ │ ├── mega_particles.png │ │ ├── mega_stone.png │ │ ├── mega_symbol.png │ │ ├── metal_ball.png │ │ ├── metal_sound_waves.png │ │ ├── meteor.png │ │ ├── milk_bottle.png │ │ ├── mist_cloud.png │ │ ├── monster_doll.png │ │ ├── monster_foot.png │ │ ├── moon.png │ │ ├── movement_waves.png │ │ ├── mud_sand.pal │ │ ├── mud_sand_0.png │ │ ├── mud_sand_1.png │ │ ├── mud_unk.png │ │ ├── music_notes.png │ │ ├── music_notes_2.pal │ │ ├── music_notes_2.png │ │ ├── nail.png │ │ ├── needle.png │ │ ├── new │ │ │ ├── ability_pop_up.png │ │ │ ├── acupressure_finger.png │ │ │ ├── alpha_stone.png │ │ │ ├── anchor.png │ │ │ ├── apple.png │ │ │ ├── arrows.png │ │ │ ├── assurance_hand.png │ │ │ ├── aura_sphere.png │ │ │ ├── avalanche_rocks.pal │ │ │ ├── baton_pass_ball.png │ │ │ ├── bee.png │ │ │ ├── berry_eaten.png │ │ │ ├── berry_normal.png │ │ │ ├── big_rock.png │ │ │ ├── blacephalon_head.png │ │ │ ├── blue_flare.pal │ │ │ ├── branch.png │ │ │ ├── brine.png │ │ │ ├── cacoon.png │ │ │ ├── chain_link.png │ │ │ ├── chop.png │ │ │ ├── confide.png │ │ │ ├── crafty_shield.png │ │ │ ├── curse_nail.png │ │ │ ├── draco_meteor.pal │ │ │ ├── dragon_pulse_ring.png │ │ │ ├── dreepy_missile.png │ │ │ ├── drill.png │ │ │ ├── embers.png │ │ │ ├── energy_ball.png │ │ │ ├── fairy_lock_chains.png │ │ │ ├── fishies.png │ │ │ ├── flash_cannon_ball.png │ │ │ ├── fly.png │ │ │ ├── fusion_flare.pal │ │ │ ├── garbage_poison_column.pal │ │ │ ├── gear.png │ │ │ ├── gigavolt_havoc_spear.png │ │ │ ├── golden_apple.png │ │ │ ├── green_drake.pal │ │ │ ├── green_star.png │ │ │ ├── heart_stamp.png │ │ │ ├── hexes.png │ │ │ ├── hoopa_hand.png │ │ │ ├── hoopa_ring.png │ │ │ ├── horn.png │ │ │ ├── horn_leech.png │ │ │ ├── horseshoe_fist.png │ │ │ ├── hydro_pump.png │ │ │ ├── ice_rock.png │ │ │ ├── impact.pal │ │ │ ├── large_spike.png │ │ │ ├── leaves.png │ │ │ ├── leech_seed.png │ │ │ ├── lightning_rain.png │ │ │ ├── mean_look.png │ │ │ ├── metal_bits.png │ │ │ ├── mud_bomb.png │ │ │ ├── mushroom.png │ │ │ ├── natural_gift_ring.pal │ │ │ ├── necrozma_star.png │ │ │ ├── obstruct.png │ │ │ ├── omega_stone.png │ │ │ ├── pink_diamond.png │ │ │ ├── poison_column.png │ │ │ ├── poison_jab.png │ │ │ ├── poltergeist.pal │ │ │ ├── power_gem.png │ │ │ ├── power_trick.png │ │ │ ├── punishment.png │ │ │ ├── purple_drake.png │ │ │ ├── quick_guard.png │ │ │ ├── razor_shell.png │ │ │ ├── rock_small.png │ │ │ ├── rocks.png │ │ │ ├── shell_left.png │ │ │ ├── shell_right.png │ │ │ ├── spacial_rend_slices.pal │ │ │ ├── spikes.png │ │ │ ├── spirit_shackle_arrow.png │ │ │ ├── stealth_rock.png │ │ │ ├── steam_eruption.png │ │ │ ├── steamroller.png │ │ │ ├── steel_beam.pal │ │ │ ├── stone_edge.png │ │ │ ├── stone_pillar.png │ │ │ ├── straight_beam.png │ │ │ ├── substitute_back.png │ │ │ ├── substitute_front.png │ │ │ ├── surf_new.pal │ │ │ ├── sword.png │ │ │ ├── teeth.png │ │ │ ├── thrash.png │ │ │ ├── tornado.png │ │ │ ├── water_gun.png │ │ │ ├── wood.png │ │ │ └── z_move_symbol.png │ │ ├── noise_line.png │ │ ├── omega_symbol.png │ │ ├── opening_eye.png │ │ ├── orange.png │ │ ├── orange_light_wall.pal │ │ ├── orb.png │ │ ├── orbs.png │ │ ├── pain_split.png │ │ ├── particles.png │ │ ├── paw_print.png │ │ ├── pencil.png │ │ ├── pencil_2.png │ │ ├── petal.png │ │ ├── pink_cloud.png │ │ ├── pink_glove.png │ │ ├── pink_heart.pal │ │ ├── pink_heart_2.png │ │ ├── pink_orb.png │ │ ├── pink_petal.png │ │ ├── poison_bubble.png │ │ ├── poison_jab.png │ │ ├── poison_powder.png │ │ ├── pokeball.png │ │ ├── pokeblock.png │ │ ├── power_gem.png │ │ ├── primal_particles.png │ │ ├── protect.png │ │ ├── psycho_cut.png │ │ ├── punch_impact.png │ │ ├── punishment.png │ │ ├── purple_coral.png │ │ ├── purple_droplet.png │ │ ├── purple_flame.png │ │ ├── purple_gas_cloud.pal │ │ ├── purple_green_unk.png │ │ ├── purple_hand_outline.png │ │ ├── purple_jab.png │ │ ├── purple_ring.pal │ │ ├── purple_scratch.png │ │ ├── purple_swipe.png │ │ ├── quick_guard.png │ │ ├── rain_drops.png │ │ ├── rainbow_rings.png │ │ ├── rapid_spin.png │ │ ├── razor_leaf.png │ │ ├── recycle.png │ │ ├── red_ball.png │ │ ├── red_fist.png │ │ ├── red_heart.pal │ │ ├── red_light_wall.pal │ │ ├── red_orb.png │ │ ├── red_orb_2.pal │ │ ├── red_particles.png │ │ ├── red_tube.png │ │ ├── red_wand.png │ │ ├── reticle.png │ │ ├── ring.png │ │ ├── rocks.png │ │ ├── roots.png │ │ ├── round_shadow.png │ │ ├── round_white_halo.png │ │ ├── sap_drip.png │ │ ├── sap_drip_2.pal │ │ ├── scratch.png │ │ ├── scratch_2.png │ │ ├── scratch_3.png │ │ ├── seed.png │ │ ├── seed_2.png │ │ ├── seed_new.png │ │ ├── shadow_ball.png │ │ ├── sharp_teeth.png │ │ ├── shock.png │ │ ├── shock_2.png │ │ ├── shock_3.png │ │ ├── shock_4.png │ │ ├── slam_hit.png │ │ ├── slam_hit_2.png │ │ ├── slash.png │ │ ├── slash_2.pal │ │ ├── sleep_powder.pal │ │ ├── small_bubbles.png │ │ ├── small_cloud.png │ │ ├── small_ember.png │ │ ├── small_red_eye.png │ │ ├── smellingsalt_effect.png │ │ ├── smoke.png │ │ ├── smoke_2.png │ │ ├── smokescreen_impact.png │ │ ├── snore_z.png │ │ ├── snowball.png │ │ ├── spark.pal │ │ ├── spark_0.png │ │ ├── spark_1.png │ │ ├── spark_2.png │ │ ├── spark_h.png │ │ ├── sparkle_1.png │ │ ├── sparkle_2.pal │ │ ├── sparkle_3.png │ │ ├── sparkle_4.png │ │ ├── sparkle_6.png │ │ ├── speed_dust.png │ │ ├── sphere_to_cube.png │ │ ├── spider_web.png │ │ ├── spikes.png │ │ ├── spinning_fire.png │ │ ├── spinning_green_orbs.png │ │ ├── spiral.png │ │ ├── splash.png │ │ ├── spore.png │ │ ├── spotlight.png │ │ ├── sprout.png │ │ ├── stealth_rock.png │ │ ├── stone_edge.png │ │ ├── string.png │ │ ├── string_2.png │ │ ├── stun_spore.pal │ │ ├── substitute.png │ │ ├── substitute_back.png │ │ ├── sunlight.png │ │ ├── sweat_bead.png │ │ ├── sweat_drop.png │ │ ├── swipe.png │ │ ├── sword.png │ │ ├── sword_2.png │ │ ├── tag_hand.png │ │ ├── teal_alert.png │ │ ├── teeth.png │ │ ├── tendrils.png │ │ ├── thin_ring.png │ │ ├── thought_bubble.png │ │ ├── tied_bag.png │ │ ├── tongue.png │ │ ├── torn_metal.png │ │ ├── toxic_bubble.png │ │ ├── toxic_spikes.png │ │ ├── tri_attack_triangle.png │ │ ├── trump_card_particles.png │ │ ├── trump_cards.png │ │ ├── unknown.png │ │ ├── vine.png │ │ ├── vine_2.png │ │ ├── void_lines.png │ │ ├── warm_rock.png │ │ ├── water_column.png │ │ ├── water_droplet.png │ │ ├── water_droplet_2.png │ │ ├── water_gun.png │ │ ├── water_impact.png │ │ ├── water_orb.png │ │ ├── waving_hand.png │ │ ├── weather_ball.png │ │ ├── web.png │ │ ├── web_thread.png │ │ ├── whip_hit.pal │ │ ├── whirlwind.png │ │ ├── whirlwind_2.png │ │ ├── whirlwind_lines.png │ │ ├── white_bag.png │ │ ├── white_circle_of_light.pal │ │ ├── white_feather.png │ │ ├── white_shadow.png │ │ ├── white_streak.png │ │ ├── wisp_fire.png │ │ ├── wisp_orb.png │ │ ├── wood_hammer.png │ │ ├── worry_seed.png │ │ ├── wring_out.png │ │ ├── x_sign.png │ │ ├── yellow_ball.png │ │ ├── yellow_star.png │ │ ├── yellow_unk.png │ │ ├── yellow_unk_2.png │ │ └── z.png │ └── unused │ │ ├── goosuto.bin │ │ ├── goosuto.png │ │ ├── lights.bin │ │ ├── lights.png │ │ ├── line_sketch.png │ │ ├── line_sketch_2.bin │ │ ├── line_sketch_2.png │ │ ├── line_sketch_2_pal.bin │ │ ├── metronome_hand_small.png │ │ ├── music_notes.pal │ │ ├── music_notes.png │ │ ├── old_beatup.png │ │ ├── spinning_ball.png │ │ ├── spinning_ball_2.pal │ │ ├── unknown.pal │ │ ├── unknown_1.bin │ │ ├── unknown_2.bin │ │ ├── unknown_2.pal │ │ ├── unknown_3.bin │ │ ├── unknown_4.bin │ │ ├── water.bin │ │ ├── water_gfx.png │ │ ├── water_splash.bin │ │ └── water_splash.png ├── battle_frontier │ ├── arena_judgement_symbols.png │ ├── dome_anim1.pal │ ├── dome_anim2.pal │ ├── dome_anim3.pal │ ├── dome_anim4.pal │ ├── factory_menu.bin │ ├── factory_menu1.png │ ├── factory_menu2.png │ ├── factory_screen │ │ ├── action_box_left.png │ │ ├── action_box_right.png │ │ ├── action_highlight_left.png │ │ ├── action_highlight_middle.png │ │ ├── action_highlight_right.png │ │ ├── arrow.png │ │ ├── interface.pal │ │ ├── menu_highlight_left.png │ │ ├── menu_highlight_right.png │ │ ├── mon_pic_bg.bin │ │ ├── mon_pic_bg.png │ │ ├── mon_pic_bg_anim.png │ │ ├── pokeball.png │ │ ├── pokeball_gray.pal │ │ ├── pokeball_selected.pal │ │ └── text.pal │ ├── multi_battle_intro_bg_opponent.bin │ ├── multi_battle_intro_bg_player.bin │ ├── pyramid_floor.pal │ ├── tourney.pal │ ├── tourney_buttons.pal │ ├── tourney_buttons.png │ ├── tourney_info_card.png │ ├── tourney_info_card_bg.bin │ ├── tourney_info_card_tilemap.bin │ ├── tourney_line.png │ ├── tourney_line_down_map.bin │ ├── tourney_line_up_map.bin │ ├── tourney_match_card_bg.pal │ ├── tourney_tree.bin │ └── tourney_tree.png ├── battle_interface │ ├── ability_pop_up.pal │ ├── ability_pop_up.png │ ├── alpha_indicator.png │ ├── ball_display.png │ ├── ball_display_unused_extra.png │ ├── ball_status_bar.png │ ├── enemy_mon_shadow.png │ ├── expbar.png │ ├── healthbox_doubles_frameend.png │ ├── healthbox_doubles_frameend_bar.png │ ├── healthbox_doubles_opponent.png │ ├── healthbox_doubles_player.png │ ├── healthbox_safari.png │ ├── healthbox_singles_opponent.png │ ├── healthbox_singles_player.png │ ├── hpbar.png │ ├── hpbar_anim.png │ ├── hpbar_anim_unused.png │ ├── hpbar_unused.png │ ├── last_used_ball_l.png │ ├── last_used_ball_r.png │ ├── level_up_banner.png │ ├── mega_indicator.png │ ├── mega_trigger.pal │ ├── mega_trigger.png │ ├── misc.png │ ├── misc_frameend.png │ ├── numbers1.png │ ├── numbers2.png │ ├── omega_indicator.png │ ├── status2.png │ ├── status3.png │ ├── status4.png │ ├── status_brn.png │ ├── status_frz.png │ ├── status_par.png │ ├── status_psn.png │ ├── status_slp.png │ ├── text.pal │ ├── text_pp.pal │ ├── textbox.png │ ├── textbox_0.pal │ ├── textbox_1.pal │ ├── textbox_map.bin │ ├── unused_status_summary.png │ ├── unused_window.png │ ├── unused_window2.png │ ├── unused_window2bar.png │ ├── unused_window3.png │ ├── unused_window4.png │ └── z_move_trigger.png ├── battle_terrain │ ├── building │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ ├── palette2.pal │ │ ├── palette3.pal │ │ └── tiles.png │ ├── cave │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── groudon.pal │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── long_grass │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── plain │ │ └── palette.pal │ ├── pond_water │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── rock │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── sand │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── sky │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── stadium │ │ ├── battle_frontier.pal │ │ ├── map.bin │ │ ├── palette1.pal │ │ ├── palette2.pal │ │ ├── palette3.pal │ │ ├── palette4.pal │ │ ├── palette5.pal │ │ ├── palette6.pal │ │ ├── palette7.pal │ │ └── tiles.png │ ├── tall_grass │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── underwater │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ └── water │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── kyogre.pal │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png ├── battle_transitions │ ├── agatha_bg.pal │ ├── big_pokeball.png │ ├── big_pokeball_map.bin │ ├── blue_bg.pal │ ├── brendan_bg.pal │ ├── bruno_bg.pal │ ├── drake_bg.pal │ ├── elite_four_bg.png │ ├── elite_four_bg_map.bin │ ├── evil_team.pal │ ├── frontier_logo.bin │ ├── frontier_logo.png │ ├── frontier_logo_center.bin │ ├── frontier_logo_center.png │ ├── frontier_logo_circles.png │ ├── frontier_squares.bin │ ├── frontier_squares_1.png │ ├── frontier_squares_2.png │ ├── frontier_squares_3.png │ ├── frontier_squares_4.png │ ├── frontier_squares_blanktiles.png │ ├── glacia_bg.pal │ ├── groudon.bin │ ├── groudon.png │ ├── groudon_pt1.pal │ ├── groudon_pt2.pal │ ├── kyogre.bin │ ├── kyogre.png │ ├── kyogre_pt1.pal │ ├── kyogre_pt2.pal │ ├── lance_bg.pal │ ├── lorelei_bg.pal │ ├── may_bg.pal │ ├── phoebe_bg.pal │ ├── pokeball.png │ ├── pokeball_trail.png │ ├── rayquaza.bin │ ├── rayquaza.pal │ ├── rayquaza.png │ ├── regice.bin │ ├── regice.pal │ ├── regirock.bin │ ├── regirock.pal │ ├── regis.png │ ├── registeel.bin │ ├── registeel.pal │ ├── shrinking_box.png │ ├── sidney_bg.pal │ ├── team_aqua.bin │ ├── team_aqua.png │ ├── team_magma.bin │ ├── team_magma.png │ ├── unused.pal │ ├── unused_brendan.png │ ├── unused_lass.png │ ├── unused_trainer.pal │ ├── vs.png │ ├── vs_frame.bin │ ├── vs_frame.png │ └── wallace_bg.pal ├── berries │ ├── aguav.png │ ├── apicot.png │ ├── aspear.png │ ├── belue.png │ ├── bluk.png │ ├── cheri.png │ ├── chesto.png │ ├── cornn.png │ ├── durin.png │ ├── enigma.png │ ├── figy.png │ ├── ganlon.png │ ├── grepa.png │ ├── hondew.png │ ├── iapapa.png │ ├── kelpsy.png │ ├── lansat.png │ ├── leppa.png │ ├── liechi.png │ ├── lum.png │ ├── mago.png │ ├── magost.png │ ├── nanab.png │ ├── nomel.png │ ├── oran.png │ ├── pamtre.png │ ├── pecha.png │ ├── persim.png │ ├── petaya.png │ ├── pinap.png │ ├── pomeg.png │ ├── qualot.png │ ├── rabuta.png │ ├── rawst.png │ ├── razz.png │ ├── salac.png │ ├── sitrus.png │ ├── spelon.png │ ├── starf.png │ ├── tamato.png │ ├── watmel.png │ ├── wepear.png │ └── wiki.png ├── berry_blender │ ├── arrow.png │ ├── arrow_old.png │ ├── center.png │ ├── center_map.bin │ ├── countdown_numbers.png │ ├── misc.pal │ ├── outer.png │ ├── outer_map.bin │ ├── particles.png │ ├── score_symbols.png │ ├── start.png │ └── unused.pal ├── berry_crush │ ├── bg.bin │ ├── container_cap.bin │ ├── crusher.pal │ ├── crusher.png │ ├── crusher_base.png │ ├── crusher_top.bin │ ├── effects.pal │ ├── impact.png │ ├── sparkle.png │ ├── text_windows.bin │ └── timer_digits.png ├── berry_fix │ ├── gba_small.bin │ ├── gba_small.pal │ ├── gba_small.png │ ├── gba_transfer.bin │ ├── gba_transfer.pal │ ├── gba_transfer.png │ ├── gba_transfer_error.bin │ ├── gba_transfer_error.pal │ ├── gba_transfer_error.png │ ├── gba_transfer_highlight.bin │ ├── gba_transfer_highlight.pal │ ├── gba_transfer_highlight.png │ ├── logo.bin │ ├── logo.pal │ ├── logo.png │ ├── window.bin │ ├── window.pal │ └── window.png ├── birch_speech │ ├── bg0.pal │ ├── bg1.pal │ ├── bg2.pal │ ├── birch.png │ ├── map.bin │ ├── shadow.png │ └── unused_beauty.png ├── cable_car │ ├── bg.pal │ ├── bg.png │ ├── bg_mountains.bin │ ├── cable.png │ ├── cable_car.png │ ├── door.png │ ├── ground.bin │ ├── pylons.bin │ └── trees.bin ├── cave_transition │ ├── black.pal │ ├── enter.pal │ ├── exit.pal │ ├── tilemap.bin │ ├── tiles.png │ └── white.pal ├── contest │ ├── applause.png │ ├── applause_meter.png │ ├── audience.bin │ ├── audience.png │ ├── curtain.bin │ ├── faces.png │ ├── interface.bin │ ├── interface.png │ ├── interface_audience.pal │ ├── japanese │ │ ├── audience.bin │ │ ├── audience.png │ │ ├── bg.bin │ │ ├── floor.png │ │ ├── frame_1.png │ │ ├── frame_2.png │ │ ├── interface.bin │ │ ├── interface.png │ │ ├── letters.png │ │ ├── meter.png │ │ ├── numbers.png │ │ ├── palette.pal │ │ ├── symbols.png │ │ ├── voltage.png │ │ └── windows.bin │ ├── judge.png │ ├── judge_symbols.png │ ├── nextturn.png │ ├── nextturn_numbers.png │ ├── nextturn_random.png │ ├── results_screen │ │ ├── bg.bin │ │ ├── interface.bin │ │ ├── text_window.pal │ │ ├── text_window.png │ │ ├── tiles.pal │ │ ├── tiles.png │ │ ├── title.bin │ │ ├── title_beauty.bin │ │ ├── title_cool.bin │ │ ├── title_cute.bin │ │ ├── title_hyper.bin │ │ ├── title_link.bin │ │ ├── title_master.bin │ │ ├── title_normal.bin │ │ ├── title_smart.bin │ │ ├── title_super.bin │ │ ├── title_tough.bin │ │ └── winner_banner.bin │ ├── slider_heart.png │ └── text.pal ├── credits │ ├── credits.pal │ └── the_end_copyright.png ├── decorations │ ├── attract_mat.png │ ├── big_plant.png │ ├── blastoise_doll.png │ ├── blue_brick.png │ ├── blue_tent.png │ ├── breakable_door.png │ ├── brendan.pal │ ├── brick_desk.png │ ├── camp_desk.png │ ├── charizard_doll.png │ ├── colorful_plant.png │ ├── comfort_desk.png │ ├── decoration_menu.pal │ ├── fire_blast_mat.png │ ├── fissure_mat.png │ ├── glass_ornament.png │ ├── gorgeous_plant.png │ ├── hard_desk.png │ ├── heavy_desk.png │ ├── lapras_doll.png │ ├── may.pal │ ├── powder_snow_mat.png │ ├── pretty_desk.png │ ├── pretty_flowers.png │ ├── put_away_cursor.png │ ├── ragged_desk.png │ ├── red_brick.png │ ├── red_plant.png │ ├── red_tent.png │ ├── regice_doll.png │ ├── regirock_doll.png │ ├── registeel_doll.png │ ├── rhydon_doll.png │ ├── sand_ornament.png │ ├── slide.png │ ├── snorlax_doll.png │ ├── solid_board.png │ ├── spikes_mat.png │ ├── stand.png │ ├── surf_mat.png │ ├── thunder_mat.png │ ├── tire.png │ ├── tropical_plant.png │ ├── venusaur_doll.png │ ├── wailmer_doll.png │ └── yellow_brick.png ├── dexnav │ ├── captured_all.png │ ├── cursor.png │ ├── gui.pal │ ├── gui_tilemap.bin │ ├── gui_tiles.png │ ├── hidden.png │ ├── hidden_search.png │ ├── no_data.png │ ├── owned_icon.png │ ├── star.png │ └── vision.png ├── diploma │ ├── hoenn.pal │ ├── national.pal │ ├── tilemap.bin │ └── tiles.png ├── dodrio_berry_picking │ ├── berries.png │ ├── bg.bin │ ├── bg.pal │ ├── bg.png │ ├── cloud.png │ ├── dodrio.png │ ├── shiny.pal │ ├── status.png │ ├── tree_border.pal │ ├── tree_border.png │ ├── tree_border_left.bin │ └── tree_border_right.bin ├── door_anims │ ├── abandoned_ship.png │ ├── abandoned_ship_room.png │ ├── battle_arena.png │ ├── battle_arena_lobby.png │ ├── battle_dome.png │ ├── battle_dome_corridor.png │ ├── battle_dome_lobby.png │ ├── battle_dome_pre_battle_room.png │ ├── battle_factory.png │ ├── battle_frontier.png │ ├── battle_frontier_sliding.png │ ├── battle_palace_lobby.png │ ├── battle_tent.png │ ├── battle_tent_interior.png │ ├── battle_tower.png │ ├── battle_tower_corridor.png │ ├── battle_tower_elevator.png │ ├── battle_tower_multi_corridor.png │ ├── battle_tower_old.png │ ├── birchs_lab.png │ ├── cable_club.png │ ├── cerulean.png │ ├── cinnabar_lab.png │ ├── contest.png │ ├── cycling_road.png │ ├── dept_store.png │ ├── dept_store_elevator.png │ ├── dewford.png │ ├── fallarbor_dark_roof.png │ ├── fallarbor_light_roof.png │ ├── four_island_day_care.png │ ├── fuchsia.png │ ├── general.png │ ├── gym.png │ ├── hideout_elevator.png │ ├── joyful_game_corner.png │ ├── lavender.png │ ├── lilycove.png │ ├── lilycove_dept_store.png │ ├── lilycove_dept_store_elevator.png │ ├── lilycove_wooden.png │ ├── littleroot.png │ ├── mauville.png │ ├── mossdeep.png │ ├── mossdeep_space_center.png │ ├── oaks_lab.png │ ├── oldale.png │ ├── one_island_poke_center.png │ ├── pacifidlog.png │ ├── pallet.png │ ├── petalburg_gym.png │ ├── pewter.png │ ├── poke_center.png │ ├── poke_mart.png │ ├── pokemon_fan_club.png │ ├── pokemon_league.png │ ├── rocket_warehouse.png │ ├── rustboro_gray.png │ ├── rustboro_tan.png │ ├── safari_zone.png │ ├── saffron.png │ ├── sevii_123.png │ ├── sevii_45.png │ ├── sevii_67.png │ ├── silph_co.png │ ├── silph_co_elevator.png │ ├── slateport.png │ ├── sliding_double.png │ ├── sliding_single.png │ ├── sootopolis.png │ ├── sootopolis_peaked_roof.png │ ├── ss_anne.png │ ├── teleporter.png │ ├── trainer_hill_lobby_elevator.png │ ├── trainer_hill_roof_elevator.png │ ├── trainer_tower_lobby_elevator.png │ ├── trainer_tower_roof_elevator.png │ ├── unused_battle_frontier.png │ ├── unused_bottom.png │ ├── unused_midbottom.png │ ├── unused_midtop.png │ ├── unused_top.png │ ├── verdanturf.png │ ├── vermilion.png │ └── viridian.png ├── easy_chat │ ├── button_window.png │ ├── interview_frame.png │ ├── mode.png │ ├── rectangle_cursor.png │ ├── scroll_indicator.png │ ├── start_select_buttons.png │ ├── text.pal │ ├── text_input_frame.png │ ├── text_input_frame_green.pal │ ├── text_input_frame_orange.pal │ ├── title_text.pal │ ├── triangle_cursor.png │ ├── window.bin │ └── window.png ├── evolution_scene │ ├── bg.png │ ├── bg_anim.pal │ ├── bg_anim_intro.pal │ ├── bg_inner.bin │ ├── bg_outer.bin │ ├── unused_1.pal │ ├── unused_2.pal │ ├── unused_3.pal │ └── unused_4.pal ├── field_effects │ ├── palettes │ │ ├── ash.pal │ │ ├── cave_dust.pal │ │ ├── cut_grass.pal │ │ ├── deoxys_rock_1.pal │ │ ├── deoxys_rock_10.pal │ │ ├── deoxys_rock_11.pal │ │ ├── deoxys_rock_2.pal │ │ ├── deoxys_rock_3.pal │ │ ├── deoxys_rock_4.pal │ │ ├── deoxys_rock_5.pal │ │ ├── deoxys_rock_6.pal │ │ ├── deoxys_rock_7.pal │ │ ├── deoxys_rock_8.pal │ │ ├── deoxys_rock_9.pal │ │ ├── general_0.pal │ │ ├── general_1.pal │ │ ├── hof_monitor.pal │ │ ├── pokeball.pal │ │ ├── pokeball_glow.pal │ │ ├── record_mix_lights.pal │ │ ├── secret_power_cave.pal │ │ ├── secret_power_plant.pal │ │ └── small_sparkle.pal │ └── pics │ │ ├── arrow.png │ │ ├── ash.png │ │ ├── ash_launch.png │ │ ├── ash_puff.png │ │ ├── bike_tire_tracks.png │ │ ├── bird.png │ │ ├── bubbles.png │ │ ├── cave_dust.png │ │ ├── cut_grass.png │ │ ├── deep_sand_footprints.png │ │ ├── deoxys_rock_fragment_bottom_left.png │ │ ├── deoxys_rock_fragment_bottom_right.png │ │ ├── deoxys_rock_fragment_top_left.png │ │ ├── deoxys_rock_fragment_top_right.png │ │ ├── emotion_exclamation.png │ │ ├── emotion_heart.png │ │ ├── emotion_question.png │ │ ├── field_move_streaks.bin │ │ ├── field_move_streaks.png │ │ ├── field_move_streaks_indoors.bin │ │ ├── field_move_streaks_indoors.png │ │ ├── ground_impact_dust.png │ │ ├── hof_monitor.png │ │ ├── hof_monitor_big.png │ │ ├── hof_monitor_small.png │ │ ├── hot_springs_water.png │ │ ├── jump_big_splash.png │ │ ├── jump_long_grass.png │ │ ├── jump_small_splash.png │ │ ├── jump_tall_grass.png │ │ ├── long_grass.png │ │ ├── mountain_disguise.png │ │ ├── pokeball_glow.png │ │ ├── pokecenter_monitor │ │ ├── 0.png │ │ └── 1.png │ │ ├── pokemoncenter_monitor.png │ │ ├── record_mix_lights.png │ │ ├── ripple.png │ │ ├── sand_disguise_placeholder.png │ │ ├── sand_footprints.png │ │ ├── sand_pile.png │ │ ├── sand_pillar │ │ ├── 0.png │ │ ├── 1.png │ │ └── 2.png │ │ ├── secret_power_cave.png │ │ ├── secret_power_shrub.png │ │ ├── secret_power_tree.png │ │ ├── shadow_extra_large.png │ │ ├── shadow_large.png │ │ ├── shadow_medium.png │ │ ├── shadow_small.png │ │ ├── short_grass.png │ │ ├── small_sparkle.png │ │ ├── sparkle.png │ │ ├── splash.png │ │ ├── spotlight.png │ │ ├── surf_blob.png │ │ ├── tall_grass.png │ │ ├── tree_disguise.png │ │ ├── unknown_17.png │ │ ├── unused_grass_2.png │ │ ├── unused_grass_3.png │ │ ├── unused_sand.png │ │ └── water_surfacing.png ├── field_specials │ ├── unk_83F5F50.pal │ ├── unk_83F5F70.pal │ ├── unk_83F5F90.pal │ ├── unk_83F5FB0.pal │ ├── unk_83F5FD0.pal │ ├── unk_83F5FF0.pal │ ├── unk_83F6010.pal │ ├── unk_83F6030.pal │ ├── unk_83F6050.pal │ ├── unk_83F6070.pal │ ├── unk_83F6090.pal │ ├── unk_83F60B0.pal │ ├── unk_83F60D0.pal │ ├── unk_83F60F0.pal │ ├── unk_83F6110.pal │ ├── unk_83F6130.pal │ ├── unk_83F6150.pal │ ├── unk_83F6170.pal │ ├── unk_83F6190.pal │ ├── unk_83F61B0.pal │ └── unk_83F61D0.pal ├── fonts │ ├── braille.png │ ├── down_arrow.png │ ├── down_arrow_alt.png │ ├── japanese_bold.png │ ├── japanese_frlg_female_font.png │ ├── japanese_frlg_male_font.png │ ├── japanese_normal.png │ ├── japanese_short.png │ ├── japanese_small.png │ ├── keypad_icons.png │ ├── latin_narrow.png │ ├── latin_normal.png │ ├── latin_short.png │ ├── latin_small.png │ ├── latin_small_narrow.png │ ├── unused_frlg_blanked_down_arrow.png │ └── unused_frlg_down_arrow.png ├── fossils │ ├── aerodactyl_fossil.png │ └── kabutops_fossil.png ├── frontier_pass │ ├── bg.bin │ ├── bg.pal │ ├── bg.png │ ├── cancel.bin │ ├── cancel_highlighted.bin │ ├── card_ball_filled.bin │ ├── cursor.png │ ├── gold.pal │ ├── map_and_card.png │ ├── map_cursor.png │ ├── map_heads.png │ ├── map_heads_female.pal │ ├── map_screen.bin │ ├── map_screen.png │ ├── medals.png │ ├── record_frame.bin │ ├── silver.pal │ ├── small_map_and_card.bin │ └── small_map_and_card_affine.bin ├── interface │ ├── blank.pal │ ├── blank.png │ ├── hof_pc_topbar.pal │ ├── main_menu_bg.pal │ ├── main_menu_text.pal │ ├── menu_info.png │ ├── menu_info1.pal │ ├── menu_info2.pal │ ├── menu_info3.pal │ ├── mon_markings.png │ ├── mon_markings_menu.png │ ├── mystery_gift_textbox_border.png │ ├── option_menu_equals_sign.png │ ├── option_menu_text.pal │ ├── red_arrow.png │ ├── red_arrow_other.png │ ├── selector_outline.png │ ├── split_icons.png │ ├── split_icons_battle.png │ ├── status_icons.png │ ├── std_menu.pal │ ├── swap_line.png │ └── ui_learn_move.png ├── intro │ ├── copyright.bin │ ├── copyright.png │ ├── scene_1 │ │ ├── bg.pal │ │ ├── bg.png │ │ ├── bg0_map.bin │ │ ├── bg1_map.bin │ │ ├── bg2_map.bin │ │ ├── bg3_map.bin │ │ ├── drops.pal │ │ ├── drops_logo.png │ │ ├── flygon.png │ │ ├── lati.png │ │ ├── logo.pal │ │ ├── sparkle.png │ │ └── text.pal │ ├── scene_2 │ │ ├── bicycle.png │ │ ├── brendan.png │ │ ├── brendan_credits.png │ │ ├── clouds.png │ │ ├── clouds_bg.pal │ │ ├── clouds_bg.png │ │ ├── clouds_bg_map.bin │ │ ├── clouds_bg_sunset.pal │ │ ├── clouds_sunset.pal │ │ ├── flygon.png │ │ ├── grass.png │ │ ├── grass_map.bin │ │ ├── grass_night.pal │ │ ├── grass_sunset.pal │ │ ├── house_silhouette.png │ │ ├── houses.pal │ │ ├── houses.png │ │ ├── houses_map.bin │ │ ├── latias.png │ │ ├── latios.png │ │ ├── manectric.png │ │ ├── may.png │ │ ├── may_credits.png │ │ ├── player.pal │ │ ├── torchic.png │ │ ├── trees.png │ │ ├── trees_map.bin │ │ ├── trees_small.png │ │ ├── trees_sunset.pal │ │ └── volbeat.png │ ├── scene_3 │ │ ├── bg.pal │ │ ├── bubbles.png │ │ ├── clouds.png │ │ ├── clouds_left.bin │ │ ├── clouds_right.bin │ │ ├── clouds_sun.bin │ │ ├── groudon.bin │ │ ├── groudon.png │ │ ├── groudon_bg.bin │ │ ├── kyogre.bin │ │ ├── kyogre.png │ │ ├── kyogre_bg.bin │ │ ├── legend_bg.png │ │ ├── lightning.png │ │ ├── misc.pal │ │ ├── misc.png │ │ ├── pokeball.png │ │ ├── pokeball_map.bin │ │ ├── rayquaza.bin │ │ ├── rayquaza.png │ │ ├── rayquaza_clouds.bin │ │ ├── rayquaza_clouds.png │ │ ├── rayquaza_orb.pal │ │ ├── streaks.png │ │ ├── streaks_map.bin │ │ ├── unused_1.bin │ │ └── unused_2.bin │ ├── unk_8402260.pal │ ├── unk_8402280.png │ ├── unk_84024E4.bin │ ├── unk_8402630.pal │ ├── unk_8402650.png │ ├── unk_8402668.bin │ ├── unk_840270C.pal │ ├── unk_840272C.png │ ├── unk_84028F8.png │ ├── unk_8402A64.png │ ├── unk_8402ADC.png │ ├── unk_8402B2C.png │ ├── unk_8402CD4.png │ ├── unk_8402D34.pal │ ├── unk_8402D54.png │ ├── unk_8403FE8.bin │ ├── unk_84048CC.pal │ ├── unk_84048EC.png │ ├── unk_8404F7C.bin │ ├── unk_84053B4.pal │ ├── unk_8405414.png │ ├── unk_8405890.bin │ ├── unk_8405B08.pal │ ├── unk_8405B28.png │ ├── unk_8405CDC.bin │ ├── unk_8405DA4.pal │ ├── unk_8405DC4.png │ ├── unk_840644C.bin │ ├── unk_8406634.pal │ ├── unk_8406654.png │ ├── unk_84071D0.bin │ ├── unk_8407430.pal │ ├── unk_8407470.png │ ├── unk_8407A50.bin │ ├── unk_8407B9C.png │ ├── unk_8408D98.bin │ ├── unk_840926C.png │ ├── unk_84096AC.pal │ ├── unk_84096CC.png │ ├── unk_8409A1C.pal │ ├── unk_8409A3C.png │ ├── unk_8409D20.png │ ├── unk_840A3E4.png │ ├── unk_840B834.pal │ ├── unk_840B854.pal │ ├── unk_840B874.png │ └── unk_840BAE0.png ├── items │ ├── icon_palettes │ │ ├── ability_capsule.pal │ │ ├── ability_patch.pal │ │ ├── acro_bike.pal │ │ ├── adamant_mint.pal │ │ ├── aerodactylite.pal │ │ ├── aguav_berry.pal │ │ ├── alakazite.pal │ │ ├── amulet_coin.pal │ │ ├── antidote.pal │ │ ├── apicot_berry.pal │ │ ├── aspear_berry.pal │ │ ├── atk_candy.pal │ │ ├── aurora_ticket.pal │ │ ├── awakening.pal │ │ ├── bead_mail.pal │ │ ├── beedrillite.pal │ │ ├── belue_berry.pal │ │ ├── berry_juice.pal │ │ ├── berry_pouch.pal │ │ ├── bicycle.pal │ │ ├── big_root.pal │ │ ├── bike_voucher.pal │ │ ├── black_flute.pal │ │ ├── black_sludge.pal │ │ ├── black_type_enhancing_item.pal │ │ ├── blastoisinite.pal │ │ ├── blue_flute.pal │ │ ├── blue_mint.pal │ │ ├── blue_orb.pal │ │ ├── blue_scarf.pal │ │ ├── blue_shard.pal │ │ ├── bluk_berry.pal │ │ ├── bright_powder.pal │ │ ├── burn_heal.pal │ │ ├── calcium.pal │ │ ├── carbos.pal │ │ ├── card_key.pal │ │ ├── catching_charm.pal │ │ ├── charcoal.pal │ │ ├── charizardite_x.pal │ │ ├── charizardite_y.pal │ │ ├── cheri_berry.pal │ │ ├── chesto_berry.pal │ │ ├── choice_band.pal │ │ ├── choice_scarf.pal │ │ ├── choice_specs.pal │ │ ├── cleanse_tag.pal │ │ ├── coin_case.pal │ │ ├── contest_pass.pal │ │ ├── cornn_berry.pal │ │ ├── damp_rock.pal │ │ ├── dark_tm_hm.pal │ │ ├── deep_sea_scale.pal │ │ ├── deep_sea_tooth.pal │ │ ├── def_candy.pal │ │ ├── destiny_knot.pal │ │ ├── devon_goods.pal │ │ ├── devon_scope.pal │ │ ├── dire_hit.pal │ │ ├── dive_ball.pal │ │ ├── dragon_fang.pal │ │ ├── dragon_scale.pal │ │ ├── dragon_tm_hm.pal │ │ ├── dream_mail.pal │ │ ├── durin_berry.pal │ │ ├── electric_tm_hm.pal │ │ ├── elixir.pal │ │ ├── energy_powder.pal │ │ ├── energy_root.pal │ │ ├── enigma_berry.pal │ │ ├── eon_ticket.pal │ │ ├── escape_rope.pal │ │ ├── ether.pal │ │ ├── everstone.pal │ │ ├── eviolite.pal │ │ ├── exp_share.pal │ │ ├── expert_belt.pal │ │ ├── fab_mail.pal │ │ ├── fame_checker.pal │ │ ├── fighting_tm_hm.pal │ │ ├── figy_berry.pal │ │ ├── fire_stone.pal │ │ ├── fire_tm_hm.pal │ │ ├── fluffy_tail.pal │ │ ├── flying_tm_hm.pal │ │ ├── focus_band.pal │ │ ├── fresh_water.pal │ │ ├── full_heal.pal │ │ ├── full_restore.pal │ │ ├── ganlon_berry.pal │ │ ├── gengarite.pal │ │ ├── ghost_tm_hm.pal │ │ ├── glitter_mail.pal │ │ ├── go_goggles.pal │ │ ├── gold_teeth.pal │ │ ├── good_rod.pal │ │ ├── grass_tm_hm.pal │ │ ├── great_ball.pal │ │ ├── green_mint.pal │ │ ├── green_scarf.pal │ │ ├── green_shard.pal │ │ ├── grepa_berry.pal │ │ ├── ground_tm_hm.pal │ │ ├── guard_spec.pal │ │ ├── gyaradosite.pal │ │ ├── harbor_mail.pal │ │ ├── hard_stone.pal │ │ ├── heal_powder.pal │ │ ├── heart_scale.pal │ │ ├── heat_rock.pal │ │ ├── hoenn_fossil.pal │ │ ├── hondew_berry.pal │ │ ├── hp_candy.pal │ │ ├── hp_up.pal │ │ ├── hyper_potion.pal │ │ ├── iapapa_berry.pal │ │ ├── ice_heal.pal │ │ ├── ice_tm_hm.pal │ │ ├── icy_rock.pal │ │ ├── iron.pal │ │ ├── itemfinder.pal │ │ ├── kangaskhanite.pal │ │ ├── kanto_fossil.pal │ │ ├── kelpsy_berry.pal │ │ ├── key.pal │ │ ├── kings_rock.pal │ │ ├── lansat_berry.pal │ │ ├── lava_cookie_and_letter.pal │ │ ├── lax_incense.pal │ │ ├── leaf_stone.pal │ │ ├── leftovers.pal │ │ ├── lemonade.pal │ │ ├── leppa_berry.pal │ │ ├── liechi_berry.pal │ │ ├── life_orb.pal │ │ ├── light_ball.pal │ │ ├── light_blue_mint.pal │ │ ├── light_clay.pal │ │ ├── lucky_egg.pal │ │ ├── lucky_punch.pal │ │ ├── lum_berry.pal │ │ ├── luxury_ball.pal │ │ ├── mach_bike.pal │ │ ├── macho_brace.pal │ │ ├── magma_emblem.pal │ │ ├── magnet.pal │ │ ├── mago_berry.pal │ │ ├── magost_berry.pal │ │ ├── master_ball.pal │ │ ├── max_candy.pal │ │ ├── max_elixir.pal │ │ ├── max_ether.pal │ │ ├── max_potion.pal │ │ ├── max_repel.pal │ │ ├── mech_mail.pal │ │ ├── mega_ring.pal │ │ ├── mental_herb.pal │ │ ├── metal_coat.pal │ │ ├── metal_powder.pal │ │ ├── meteorite.pal │ │ ├── mewtwonite_x.pal │ │ ├── mewtwonite_y.pal │ │ ├── miracle_seed.pal │ │ ├── moomoo_milk.pal │ │ ├── moon_stone.pal │ │ ├── muscle_band.pal │ │ ├── mushroom.pal │ │ ├── mystic_ticket.pal │ │ ├── mystic_water.pal │ │ ├── nanab_berry.pal │ │ ├── nest_ball.pal │ │ ├── net_ball.pal │ │ ├── never_melt_ice.pal │ │ ├── nomel_berry.pal │ │ ├── normal_tm_hm.pal │ │ ├── nugget.pal │ │ ├── oaks_parcel.pal │ │ ├── old_amber.pal │ │ ├── old_key.pal │ │ ├── old_rod.pal │ │ ├── old_sea_map.pal │ │ ├── oran_berry.pal │ │ ├── orange_mail.pal │ │ ├── oval_charm.pal │ │ ├── pamtre_berry.pal │ │ ├── paralyze_heal.pal │ │ ├── pearl.pal │ │ ├── pecha_berry.pal │ │ ├── persim_berry.pal │ │ ├── petaya_berry.pal │ │ ├── pidgeotite.pal │ │ ├── pinap_berry.pal │ │ ├── pink_mint.pal │ │ ├── pink_scarf.pal │ │ ├── pinsirite.pal │ │ ├── pixie_dust.pal │ │ ├── poison_barb.pal │ │ ├── poison_tm_hm.pal │ │ ├── poke_ball.pal │ │ ├── poke_doll.pal │ │ ├── poke_flute.pal │ │ ├── pokeblock_case.pal │ │ ├── pomeg_berry.pal │ │ ├── potion.pal │ │ ├── powder_jar.pal │ │ ├── power_anklet.pal │ │ ├── power_band.pal │ │ ├── power_belt.pal │ │ ├── power_bracer.pal │ │ ├── power_herb.pal │ │ ├── power_lens.pal │ │ ├── power_stone.pal │ │ ├── power_weight.pal │ │ ├── pp_max.pal │ │ ├── pp_up.pal │ │ ├── protective_pads.pal │ │ ├── protein.pal │ │ ├── psychic_tm_hm.pal │ │ ├── purple_mint.pal │ │ ├── qualot_berry.pal │ │ ├── question_mark.pal │ │ ├── quick_claw.pal │ │ ├── rabuta_berry.pal │ │ ├── rainbow_pass.pal │ │ ├── rare_candy.pal │ │ ├── rawst_berry.pal │ │ ├── razor_claw.pal │ │ ├── razor_fang.pal │ │ ├── razz_berry.pal │ │ ├── red_card.pal │ │ ├── red_flute.pal │ │ ├── red_mint.pal │ │ ├── red_orb.pal │ │ ├── red_scarf.pal │ │ ├── red_shard.pal │ │ ├── repeat_ball.pal │ │ ├── repel.pal │ │ ├── reset_candy.pal │ │ ├── retro_mail.pal │ │ ├── return_to_field_arrow.pal │ │ ├── revival_herb.pal │ │ ├── revive.pal │ │ ├── rock_tm_hm.pal │ │ ├── rocky_helmet.pal │ │ ├── ruby.pal │ │ ├── sacred_ash.pal │ │ ├── safari_ball.pal │ │ ├── salac_berry.pal │ │ ├── sapphire.pal │ │ ├── scanner.pal │ │ ├── scope_lens.pal │ │ ├── sea_incense.pal │ │ ├── secret_key.pal │ │ ├── shadow_mail.pal │ │ ├── sharp_beak.pal │ │ ├── shell.pal │ │ ├── shiny_charm.pal │ │ ├── shoal_salt.pal │ │ ├── silk_scarf.pal │ │ ├── silph_scope.pal │ │ ├── silver_powder.pal │ │ ├── sitrus_berry.pal │ │ ├── slowbronite.pal │ │ ├── smoke_ball.pal │ │ ├── smooth_rock.pal │ │ ├── soda_pop.pal │ │ ├── soft_sand.pal │ │ ├── soot_sack.pal │ │ ├── soothe_bell.pal │ │ ├── soul_dew.pal │ │ ├── spatk_candy.pal │ │ ├── spdef_candy.pal │ │ ├── speed_candy.pal │ │ ├── spell_tag.pal │ │ ├── spelon_berry.pal │ │ ├── ss_ticket.pal │ │ ├── star.pal │ │ ├── starf_berry.pal │ │ ├── steel_tm_hm.pal │ │ ├── stick.pal │ │ ├── sun_stone.pal │ │ ├── super_potion.pal │ │ ├── super_repel.pal │ │ ├── super_rod.pal │ │ ├── tamato_berry.pal │ │ ├── tea.pal │ │ ├── teachy_tv.pal │ │ ├── thick_club.pal │ │ ├── thunder_stone.pal │ │ ├── tm_case.pal │ │ ├── town_map.pal │ │ ├── tri_pass.pal │ │ ├── tropic_mail.pal │ │ ├── twisted_spoon.pal │ │ ├── ultra_ball.pal │ │ ├── up_grade.pal │ │ ├── venusaurite.pal │ │ ├── vs_seeker.pal │ │ ├── wailmer_pail.pal │ │ ├── water_stone.pal │ │ ├── water_tm_hm.pal │ │ ├── watmel_berry.pal │ │ ├── wave_mail.pal │ │ ├── wepear_berry.pal │ │ ├── white_flute.pal │ │ ├── white_herb.pal │ │ ├── wiki_berry.pal │ │ ├── wise_glasses.pal │ │ ├── wood_mail.pal │ │ ├── x_accuracy.pal │ │ ├── x_attack.pal │ │ ├── x_defend.pal │ │ ├── x_special.pal │ │ ├── x_speed.pal │ │ ├── yellow_flute.pal │ │ ├── yellow_mint.pal │ │ ├── yellow_scarf.pal │ │ ├── yellow_shard.pal │ │ └── zinc.pal │ └── icons │ │ ├── ability_capsule.png │ │ ├── ability_patch.png │ │ ├── acro_bike.png │ │ ├── aerodactylite.png │ │ ├── aguav_berry.png │ │ ├── alakazite.png │ │ ├── amulet_coin.png │ │ ├── antidote.png │ │ ├── apicot_berry.png │ │ ├── aspear_berry.png │ │ ├── aurora_ticket.png │ │ ├── basement_key.png │ │ ├── battle_stat_item.png │ │ ├── bead_mail.png │ │ ├── beedrillite.png │ │ ├── belue_berry.png │ │ ├── berry_juice.png │ │ ├── berry_pouch.png │ │ ├── bicycle.png │ │ ├── big_mushroom.png │ │ ├── big_pearl.png │ │ ├── big_root.png │ │ ├── bike_voucher.png │ │ ├── black_belt.png │ │ ├── black_glasses.png │ │ ├── black_sludge.png │ │ ├── blastoisinite.png │ │ ├── bluk_berry.png │ │ ├── bright_powder.png │ │ ├── card_key.png │ │ ├── catching_charm.png │ │ ├── charcoal.png │ │ ├── charizardite_x.png │ │ ├── charizardite_y.png │ │ ├── cheri_berry.png │ │ ├── chesto_berry.png │ │ ├── choice_band.png │ │ ├── choice_scarf.png │ │ ├── choice_specs.png │ │ ├── claw_fossil.png │ │ ├── cleanse_tag.png │ │ ├── coin_case.png │ │ ├── contest_pass.png │ │ ├── cornn_berry.png │ │ ├── damp_rock.png │ │ ├── deep_sea_scale.png │ │ ├── deep_sea_tooth.png │ │ ├── destiny_knot.png │ │ ├── devon_goods.png │ │ ├── devon_scope.png │ │ ├── dive_ball.png │ │ ├── dome_fossil.png │ │ ├── dragon_fang.png │ │ ├── dragon_scale.png │ │ ├── dream_mail.png │ │ ├── durin_berry.png │ │ ├── energy_root.png │ │ ├── enigma_berry.png │ │ ├── eon_ticket.png │ │ ├── escape_rope.png │ │ ├── ether.png │ │ ├── everstone.png │ │ ├── eviolite.png │ │ ├── exp_share.png │ │ ├── expert_belt.png │ │ ├── fab_mail.png │ │ ├── fame_checker.png │ │ ├── figy_berry.png │ │ ├── fire_stone.png │ │ ├── fluffy_tail.png │ │ ├── flute.png │ │ ├── focus_band.png │ │ ├── fresh_water.png │ │ ├── full_heal.png │ │ ├── ganlon_berry.png │ │ ├── gem.png │ │ ├── gengarite.png │ │ ├── glitter_mail.png │ │ ├── go_goggles.png │ │ ├── gold_teeth.png │ │ ├── good_rod.png │ │ ├── great_ball.png │ │ ├── grepa_berry.png │ │ ├── gyaradosite.png │ │ ├── harbor_mail.png │ │ ├── hard_stone.png │ │ ├── heart_scale.png │ │ ├── heat_rock.png │ │ ├── helix_fossil.png │ │ ├── hm.png │ │ ├── hondew_berry.png │ │ ├── hp_up.png │ │ ├── iapapa_berry.png │ │ ├── icy_rock.png │ │ ├── in_battle_herb.png │ │ ├── itemfinder.png │ │ ├── iv_candy.png │ │ ├── kangaskhanite.png │ │ ├── kelpsy_berry.png │ │ ├── kings_rock.png │ │ ├── lansat_berry.png │ │ ├── large_potion.png │ │ ├── lava_cookie.png │ │ ├── lax_incense.png │ │ ├── leaf_stone.png │ │ ├── leftovers.png │ │ ├── lemonade.png │ │ ├── leppa_berry.png │ │ ├── letter.png │ │ ├── liechi_berry.png │ │ ├── life_orb.png │ │ ├── lift_key.png │ │ ├── light_ball.png │ │ ├── light_clay.png │ │ ├── lucky_egg.png │ │ ├── lucky_punch.png │ │ ├── lum_berry.png │ │ ├── luxury_ball.png │ │ ├── mach_bike.png │ │ ├── macho_brace.png │ │ ├── magma_emblem.png │ │ ├── magnet.png │ │ ├── mago_berry.png │ │ ├── magost_berry.png │ │ ├── master_ball.png │ │ ├── max_candy.png │ │ ├── max_revive.png │ │ ├── mech_mail.png │ │ ├── mega_ring.png │ │ ├── metal_coat.png │ │ ├── metal_powder.png │ │ ├── meteorite.png │ │ ├── mewtwonite_x.png │ │ ├── mewtwonite_y.png │ │ ├── mint.png │ │ ├── miracle_seed.png │ │ ├── moomoo_milk.png │ │ ├── moon_stone.png │ │ ├── muscle_band.png │ │ ├── mystic_ticket.png │ │ ├── mystic_water.png │ │ ├── nanab_berry.png │ │ ├── nest_ball.png │ │ ├── net_ball.png │ │ ├── never_melt_ice.png │ │ ├── nomel_berry.png │ │ ├── nugget.png │ │ ├── oaks_parcel.png │ │ ├── old_amber.png │ │ ├── old_rod.png │ │ ├── old_sea_map.png │ │ ├── oran_berry.png │ │ ├── orange_mail.png │ │ ├── orb.png │ │ ├── oval_charm.png │ │ ├── pamtre_berry.png │ │ ├── pearl.png │ │ ├── pecha_berry.png │ │ ├── persim_berry.png │ │ ├── petaya_berry.png │ │ ├── pidgeotite.png │ │ ├── pinap_berry.png │ │ ├── pinsirite.png │ │ ├── pixie_dust.png │ │ ├── poison_barb.png │ │ ├── poke_ball.png │ │ ├── poke_doll.png │ │ ├── poke_flute.png │ │ ├── pokeblock_case.png │ │ ├── pomeg_berry.png │ │ ├── potion.png │ │ ├── powder.png │ │ ├── powder_jar.png │ │ ├── power_anklet.png │ │ ├── power_band.png │ │ ├── power_belt.png │ │ ├── power_bracer.png │ │ ├── power_herb.png │ │ ├── power_lens.png │ │ ├── power_stone.png │ │ ├── power_weight.png │ │ ├── pp_max.png │ │ ├── pp_up.png │ │ ├── premier_ball.png │ │ ├── protective_pads.png │ │ ├── qualot_berry.png │ │ ├── question_mark.png │ │ ├── quick_claw.png │ │ ├── rabuta_berry.png │ │ ├── rainbow_pass.png │ │ ├── rare_candy.png │ │ ├── rawst_berry.png │ │ ├── razor_claw.png │ │ ├── razor_fang.png │ │ ├── razz_berry.png │ │ ├── red_card.png │ │ ├── repeat_ball.png │ │ ├── repel.png │ │ ├── retro_mail.png │ │ ├── return_to_field_arrow.png │ │ ├── revival_herb.png │ │ ├── revive.png │ │ ├── rocky_helmet.png │ │ ├── room1_key.png │ │ ├── room2_key.png │ │ ├── room4_key.png │ │ ├── room6_key.png │ │ ├── root_fossil.png │ │ ├── sacred_ash.png │ │ ├── safari_ball.png │ │ ├── salac_berry.png │ │ ├── scanner.png │ │ ├── scarf.png │ │ ├── scope_lens.png │ │ ├── sea_incense.png │ │ ├── secret_key.png │ │ ├── shadow_mail.png │ │ ├── shard.png │ │ ├── sharp_beak.png │ │ ├── shell_bell.png │ │ ├── shiny_charm.png │ │ ├── shoal_shell.png │ │ ├── silk_scarf.png │ │ ├── silph_scope.png │ │ ├── silver_powder.png │ │ ├── sitrus_berry.png │ │ ├── slowbronite.png │ │ ├── smoke_ball.png │ │ ├── smooth_rock.png │ │ ├── soda_pop.png │ │ ├── soft_sand.png │ │ ├── soot_sack.png │ │ ├── soothe_bell.png │ │ ├── soul_dew.png │ │ ├── spell_tag.png │ │ ├── spelon_berry.png │ │ ├── ss_ticket.png │ │ ├── star_piece.png │ │ ├── stardust.png │ │ ├── starf_berry.png │ │ ├── status_heal.png │ │ ├── stick.png │ │ ├── storage_key.png │ │ ├── sun_stone.png │ │ ├── super_rod.png │ │ ├── tamato_berry.png │ │ ├── tea.png │ │ ├── teachy_tv.png │ │ ├── thick_club.png │ │ ├── thunder_stone.png │ │ ├── timer_ball.png │ │ ├── tiny_mushroom.png │ │ ├── tm.png │ │ ├── tm_case.png │ │ ├── town_map.png │ │ ├── tri_pass.png │ │ ├── tropic_mail.png │ │ ├── twisted_spoon.png │ │ ├── ultra_ball.png │ │ ├── up_grade.png │ │ ├── venusaurite.png │ │ ├── vitamin.png │ │ ├── vs_seeker.png │ │ ├── wailmer_pail.png │ │ ├── water_stone.png │ │ ├── watmel_berry.png │ │ ├── wave_mail.png │ │ ├── wepear_berry.png │ │ ├── wiki_berry.png │ │ ├── wise_glasses.png │ │ └── wood_mail.png ├── link │ ├── 321start.png │ ├── 321start_static.png │ ├── comm_error_bg.png │ ├── minigame_digits.png │ ├── minigame_digits2.png │ ├── test_digits.png │ ├── wireless_display.bin │ ├── wireless_display.png │ ├── wireless_icon.png │ ├── wireless_info_screen.bin │ ├── wireless_info_screen.pal │ └── wireless_info_screen.png ├── mail │ ├── bead │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── dream │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── fab │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── glitter │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── harbor │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── mech │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── orange │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── retro │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── shadow │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── tropic │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── wave │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ └── wood │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png ├── map_popup │ ├── brick.png │ ├── brick_outline.png │ ├── marble.png │ ├── marble_outline.png │ ├── stone.png │ ├── stone2.png │ ├── stone2_outline.png │ ├── stone_outline.png │ ├── underwater.pal │ ├── underwater.png │ ├── underwater_outline.png │ ├── wood.png │ └── wood_outline.png ├── misc │ ├── clock_small.png │ ├── confetti.png │ ├── emotes.pal │ ├── emotes.png │ ├── emotion_exclamation.png │ ├── emotion_heart.png │ ├── emotion_question.png │ ├── evo_sparkle.png │ ├── japanese_hof.png │ ├── mirage_tower.bin │ ├── mirage_tower.png │ └── mirage_tower_crumbles.png ├── naming_screen │ ├── background.bin │ ├── cursor.png │ ├── input_arrow.png │ ├── keyboard.pal │ ├── keyboard_lower.bin │ ├── keyboard_symbols.bin │ ├── keyboard_upper.bin │ ├── menu.pal │ ├── menu.png │ ├── page_button.png │ ├── pc_icon │ │ ├── off.png │ │ └── on.png │ ├── roptions.png │ ├── rwindow.png │ ├── underscore.png │ └── unused.pal ├── object_events │ ├── palettes │ │ ├── agatha.pal │ │ ├── anabel.pal │ │ ├── aqua.pal │ │ ├── articuno.pal │ │ ├── artist.pal │ │ ├── athlete_f.pal │ │ ├── athlete_m.pal │ │ ├── attendant.pal │ │ ├── beauty.pal │ │ ├── biker.pal │ │ ├── bill.pal │ │ ├── birch.pal │ │ ├── birth_island_stone.pal │ │ ├── blackbelt.pal │ │ ├── blaine.pal │ │ ├── blue.pal │ │ ├── boy1.pal │ │ ├── boy2.pal │ │ ├── boy3.pal │ │ ├── brandon.pal │ │ ├── brawly.pal │ │ ├── breeder.pal │ │ ├── brendan.pal │ │ ├── brendan_reflection.pal │ │ ├── bridge_reflection.pal │ │ ├── brock.pal │ │ ├── bruno.pal │ │ ├── bugcatcher.pal │ │ ├── bulbasaur.pal │ │ ├── burglar.pal │ │ ├── cable_car.pal │ │ ├── cameraman.pal │ │ ├── channeler.pal │ │ ├── chansey.pal │ │ ├── charmander.pal │ │ ├── chef.pal │ │ ├── clefairy.pal │ │ ├── cook.pal │ │ ├── cool_couple.pal │ │ ├── cooltrainer.pal │ │ ├── cubone.pal │ │ ├── cueball.pal │ │ ├── cyclef.pal │ │ ├── cyclem.pal │ │ ├── daisy.pal │ │ ├── dawn.pal │ │ ├── dawn_platinum.pal │ │ ├── delivery.pal │ │ ├── deoxys.pal │ │ ├── dodrio.pal │ │ ├── dragon_tamer.pal │ │ ├── drake.pal │ │ ├── employee.pal │ │ ├── enby.pal │ │ ├── enemy_zigzagoon.pal │ │ ├── engineer.pal │ │ ├── erika.pal │ │ ├── ethan.pal │ │ ├── expert_f.pal │ │ ├── expert_m.pal │ │ ├── fat_man.pal │ │ ├── fisherman.pal │ │ ├── flannery.pal │ │ ├── gameboy.pal │ │ ├── gentleman.pal │ │ ├── girl1.pal │ │ ├── girl2.pal │ │ ├── girl3.pal │ │ ├── glacia.pal │ │ ├── great_ball.pal │ │ ├── greta.pal │ │ ├── groudon.pal │ │ ├── groudon_reflection.pal │ │ ├── hiker.pal │ │ ├── ho_oh.pal │ │ ├── hoenn_cooltrainer.pal │ │ ├── james.pal │ │ ├── janine.pal │ │ ├── jenny.pal │ │ ├── jessie.pal │ │ ├── jigglypuff.pal │ │ ├── juan.pal │ │ ├── judge.pal │ │ ├── juggler.pal │ │ ├── kabuto.pal │ │ ├── kangaskhan.pal │ │ ├── koga.pal │ │ ├── kris.pal │ │ ├── kyogre.pal │ │ ├── kyogre_reflection.pal │ │ ├── lady.pal │ │ ├── lance.pal │ │ ├── lanette.pal │ │ ├── lapras.pal │ │ ├── lass.pal │ │ ├── leaf.pal │ │ ├── light.pal │ │ ├── little_kid.pal │ │ ├── lorelei.pal │ │ ├── lucas.pal │ │ ├── lucas_platinum.pal │ │ ├── lucy.pal │ │ ├── lugia.pal │ │ ├── lyra.pal │ │ ├── machoke.pal │ │ ├── machop.pal │ │ ├── magma.pal │ │ ├── man2.pal │ │ ├── man3.pal │ │ ├── man4.pal │ │ ├── man5.pal │ │ ├── marowak.pal │ │ ├── marowak_ghost.pal │ │ ├── mart.pal │ │ ├── master_ball.pal │ │ ├── may.pal │ │ ├── may_reflection.pal │ │ ├── meowth.pal │ │ ├── mew.pal │ │ ├── mewtwo.pal │ │ ├── misty.pal │ │ ├── moltres.pal │ │ ├── mom.pal │ │ ├── mom_2.pal │ │ ├── moving_box.pal │ │ ├── mr_fuji.pal │ │ ├── nidoran.pal │ │ ├── nidoran_f.pal │ │ ├── nidoran_m.pal │ │ ├── nidorino.pal │ │ ├── ninjaboy.pal │ │ ├── noland.pal │ │ ├── norman.pal │ │ ├── npc_1.pal │ │ ├── npc_1_reflection.pal │ │ ├── npc_2.pal │ │ ├── npc_2_reflection.pal │ │ ├── npc_3.pal │ │ ├── npc_3_reflection.pal │ │ ├── npc_4.pal │ │ ├── npc_4_reflection.pal │ │ ├── nurse.pal │ │ ├── oak.pal │ │ ├── oldman.pal │ │ ├── oldwoman.pal │ │ ├── omanyte.pal │ │ ├── phoebe.pal │ │ ├── pidgeot.pal │ │ ├── pidgey.pal │ │ ├── pikachu.pal │ │ ├── player_underwater.pal │ │ ├── pokefan_f.pal │ │ ├── pokefan_m.pal │ │ ├── police.pal │ │ ├── poliwrath.pal │ │ ├── poochyena.pal │ │ ├── premier_ball.pal │ │ ├── psychic.pal │ │ ├── psyduck.pal │ │ ├── quinty_plump.pal │ │ ├── quinty_plump_reflection.pal │ │ ├── ranger_f.pal │ │ ├── ranger_m.pal │ │ ├── receptionist.pal │ │ ├── red.pal │ │ ├── red_champ.pal │ │ ├── red_leaf.pal │ │ ├── reporter_f.pal │ │ ├── reporter_m.pal │ │ ├── richboy.pal │ │ ├── rocket.pal │ │ ├── roxanne.pal │ │ ├── ruby_sapphire_brendan.pal │ │ ├── ruby_sapphire_may.pal │ │ ├── sabrina.pal │ │ ├── safari_ball.pal │ │ ├── sailor.pal │ │ ├── schoolkid_f.pal │ │ ├── schoolkid_m.pal │ │ ├── scientist.pal │ │ ├── scott.pal │ │ ├── scout.pal │ │ ├── sea_captain.pal │ │ ├── seel.pal │ │ ├── sidney.pal │ │ ├── slow.pal │ │ ├── snorlax.pal │ │ ├── socialite.pal │ │ ├── spearow.pal │ │ ├── spenser.pal │ │ ├── squirtle.pal │ │ ├── ss_anne.pal │ │ ├── ss_tidal.pal │ │ ├── steven.pal │ │ ├── submarine_shadow.pal │ │ ├── surge.pal │ │ ├── swimmer_f.pal │ │ ├── swimmer_m.pal │ │ ├── tate_liza.pal │ │ ├── teala.pal │ │ ├── truck.pal │ │ ├── tuber_f.pal │ │ ├── tuber_m.pal │ │ ├── tucker.pal │ │ ├── twin.pal │ │ ├── ultra_ball.pal │ │ ├── unused_palette.pal │ │ ├── vigoroth.pal │ │ ├── voltorb.pal │ │ ├── waiter.pal │ │ ├── waitress.pal │ │ ├── wallace.pal │ │ ├── wally.pal │ │ ├── wattson.pal │ │ ├── wigglytuff.pal │ │ ├── winona.pal │ │ ├── woman2.pal │ │ ├── woman3.pal │ │ ├── woman4.pal │ │ ├── woman5.pal │ │ ├── youngster.pal │ │ ├── zapdos.pal │ │ └── zinnia.pal │ └── pics │ │ ├── berry_trees │ │ ├── aguav.png │ │ ├── aspear.png │ │ ├── cheri.png │ │ ├── chesto.png │ │ ├── cornn.png │ │ ├── dirt_pile.png │ │ ├── durin.png │ │ ├── figy.png │ │ ├── grepa.png │ │ ├── hondew.png │ │ ├── iapapa.png │ │ ├── kelpsy.png │ │ ├── lansat.png │ │ ├── leppa.png │ │ ├── liechi.png │ │ ├── lum.png │ │ ├── mago.png │ │ ├── nomel.png │ │ ├── oran.png │ │ ├── pamtre.png │ │ ├── pecha.png │ │ ├── persim.png │ │ ├── pomeg.png │ │ ├── rabuta.png │ │ ├── rawst.png │ │ ├── razz.png │ │ ├── sitrus.png │ │ ├── spelon.png │ │ ├── sprout.png │ │ ├── tamato.png │ │ ├── wepear.png │ │ └── wiki.png │ │ ├── cushions │ │ ├── ball_cushion.png │ │ ├── diamond_cushion.png │ │ ├── fire_cushion.png │ │ ├── grass_cushion.png │ │ ├── kiss_cushion.png │ │ ├── pika_cushion.png │ │ ├── round_cushion.png │ │ ├── spin_cushion.png │ │ ├── water_cushion.png │ │ └── zigzag_cushion.png │ │ ├── dolls │ │ ├── azurill_doll.png │ │ ├── baltoy_doll.png │ │ ├── big_blastoise_doll.png │ │ ├── big_charizard_doll.png │ │ ├── big_lapras_doll.png │ │ ├── big_regice_doll.png │ │ ├── big_regirock_doll.png │ │ ├── big_registeel_doll.png │ │ ├── big_rhydon_doll.png │ │ ├── big_snorlax_doll.png │ │ ├── big_venusaur_doll.png │ │ ├── big_wailmer_doll.png │ │ ├── chikorita_doll.png │ │ ├── clefairy_doll.png │ │ ├── cyndaquil_doll.png │ │ ├── ditto_doll.png │ │ ├── duskull_doll.png │ │ ├── gulpin_doll.png │ │ ├── jigglypuff_doll.png │ │ ├── kecleon_doll.png │ │ ├── lotad_doll.png │ │ ├── marill_doll.png │ │ ├── meowth_doll.png │ │ ├── mudkip_doll.png │ │ ├── pichu_doll.png │ │ ├── pikachu_doll.png │ │ ├── seedot_doll.png │ │ ├── skitty_doll.png │ │ ├── smoochum_doll.png │ │ ├── swablu_doll.png │ │ ├── togepi_doll.png │ │ ├── torchic_doll.png │ │ ├── totodile_doll.png │ │ ├── treecko_doll.png │ │ ├── unused_magnemite_doll.png │ │ ├── unused_natu_doll.png │ │ ├── unused_pikachu_doll.png │ │ ├── unused_porygon2_doll.png │ │ ├── unused_squirtle_doll.png │ │ ├── unused_wooper_doll.png │ │ └── wynaut_doll.png │ │ ├── misc │ │ ├── animated_ball.png │ │ ├── birchs_bag.png │ │ ├── birth_island_stone.png │ │ ├── breakable_rock.png │ │ ├── cable_car.png │ │ ├── clipboard.png │ │ ├── cuttable_tree.png │ │ ├── fossil.png │ │ ├── great_ball.png │ │ ├── item_ball.png │ │ ├── light.png │ │ ├── master_ball.png │ │ ├── moving_box.png │ │ ├── mr_brineys_boat.png │ │ ├── old_amber.png │ │ ├── pokedex.png │ │ ├── premier_ball.png │ │ ├── pushable_boulder.png │ │ ├── safari_ball.png │ │ ├── ss_anne.png │ │ ├── ss_tidal.png │ │ ├── statue.png │ │ ├── submarine_shadow.png │ │ ├── truck.png │ │ └── ultra_ball.png │ │ ├── people │ │ ├── artist.png │ │ ├── beauty.png │ │ ├── biker.png │ │ ├── bill.png │ │ ├── black_belt.png │ │ ├── blue.png │ │ ├── blue_hgss.png │ │ ├── boy_1.png │ │ ├── boy_2.png │ │ ├── boy_3.png │ │ ├── breeder_f.png │ │ ├── breeder_m.png │ │ ├── brendan │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── bug_catcher.png │ │ ├── burglar.png │ │ ├── cameraman.png │ │ ├── camper.png │ │ ├── channeler.png │ │ ├── chef.png │ │ ├── contest_judge.png │ │ ├── cook.png │ │ ├── cool_trainer_f.png │ │ ├── cool_trainer_m.png │ │ ├── cueball.png │ │ ├── cycling_triathlete_f.png │ │ ├── cycling_triathlete_m.png │ │ ├── daisy.png │ │ ├── dawn │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── dawn_platinum │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── devon_employee.png │ │ ├── dragon_tamer.png │ │ ├── elite_four │ │ │ ├── agatha.png │ │ │ ├── bruno.png │ │ │ ├── drake.png │ │ │ ├── glacia.png │ │ │ ├── lance.png │ │ │ ├── lorelei.png │ │ │ ├── phoebe.png │ │ │ └── sidney.png │ │ ├── engineer.png │ │ ├── ethan │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── expert_f.png │ │ ├── expert_m.png │ │ ├── fat_man.png │ │ ├── fisherman.png │ │ ├── frontier_brains │ │ │ ├── anabel.png │ │ │ ├── brandon.png │ │ │ ├── greta.png │ │ │ ├── lucy.png │ │ │ ├── noland.png │ │ │ ├── spenser.png │ │ │ └── tucker.png │ │ ├── gameboy_kid.png │ │ ├── gentleman.png │ │ ├── girl_1.png │ │ ├── girl_2.png │ │ ├── girl_3.png │ │ ├── gym_leaders │ │ │ ├── blaine.png │ │ │ ├── brawly.png │ │ │ ├── brock.png │ │ │ ├── erika.png │ │ │ ├── flannery.png │ │ │ ├── juan.png │ │ │ ├── koga.png │ │ │ ├── liza.png │ │ │ ├── misty.png │ │ │ ├── norman.png │ │ │ ├── roxanne.png │ │ │ ├── sabrina.png │ │ │ ├── surge.png │ │ │ ├── tate.png │ │ │ ├── wattson.png │ │ │ └── winona.png │ │ ├── hex_maniac.png │ │ ├── hiker.png │ │ ├── hoenn_cool_trainer_f.png │ │ ├── hoenn_cool_trainer_m.png │ │ ├── hot_springs_old_woman.png │ │ ├── janine.png │ │ ├── juggler.png │ │ ├── kris │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── hat.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── lady.png │ │ ├── lanette.png │ │ ├── lass.png │ │ ├── leaf.png │ │ ├── leaf │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── hat.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── link_receptionist.png │ │ ├── little_boy.png │ │ ├── little_girl.png │ │ ├── looker.png │ │ ├── lucas │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── lucas_platinum │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── lyra │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── man_1.png │ │ ├── man_2.png │ │ ├── man_3.png │ │ ├── man_4.png │ │ ├── man_5.png │ │ ├── maniac.png │ │ ├── mart_employee.png │ │ ├── mauville_old_man_1.png │ │ ├── mauville_old_man_2.png │ │ ├── may │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── mom.png │ │ ├── mom_2.png │ │ ├── mr_fuji.png │ │ ├── mystery_event_deliveryman.png │ │ ├── ninja_boy.png │ │ ├── nurse.png │ │ ├── officer_jenny.png │ │ ├── old_man.png │ │ ├── old_woman.png │ │ ├── picnicker.png │ │ ├── pokefan_f.png │ │ ├── pokefan_m.png │ │ ├── police.png │ │ ├── prof_birch.png │ │ ├── prof_oak.png │ │ ├── psychic_f.png │ │ ├── psychic_m.png │ │ ├── quinty_plump.png │ │ ├── ranger_f.png │ │ ├── ranger_m.png │ │ ├── red.png │ │ ├── red │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── reporter_f.png │ │ ├── reporter_m.png │ │ ├── rich_boy.png │ │ ├── rooftop_sale_woman.png │ │ ├── rs_little_boy.png │ │ ├── ruby_sapphire_brendan │ │ │ ├── running.png │ │ │ └── walking.png │ │ ├── ruby_sapphire_may │ │ │ ├── running.png │ │ │ └── walking.png │ │ ├── running_triathlete_f.png │ │ ├── running_triathlete_m.png │ │ ├── sailor.png │ │ ├── school_kid_f.png │ │ ├── school_kid_m.png │ │ ├── scientist_1.png │ │ ├── scientist_2.png │ │ ├── scott.png │ │ ├── sea_captain.png │ │ ├── steven.png │ │ ├── swimmer_f.png │ │ ├── swimmer_m.png │ │ ├── teala.png │ │ ├── team_aqua │ │ │ ├── aqua_member_f.png │ │ │ ├── aqua_member_m.png │ │ │ └── archie.png │ │ ├── team_magma │ │ │ ├── magma_member_f.png │ │ │ ├── magma_member_m.png │ │ │ └── maxie.png │ │ ├── team_rocket │ │ │ ├── giovanni.png │ │ │ ├── james.png │ │ │ ├── jessie.png │ │ │ ├── rocket_member_f.png │ │ │ └── rocket_member_m.png │ │ ├── tuber_f.png │ │ ├── tuber_f_swimming.png │ │ ├── tuber_m.png │ │ ├── tuber_m_swimming.png │ │ ├── twin.png │ │ ├── union_room_attendant.png │ │ ├── unused_woman.png │ │ ├── waiter.png │ │ ├── waitress.png │ │ ├── wallace.png │ │ ├── wally.png │ │ ├── woman_1.png │ │ ├── woman_2.png │ │ ├── woman_3.png │ │ ├── woman_4.png │ │ ├── woman_5.png │ │ ├── youngster.png │ │ └── zinnia.png │ │ └── pokemon │ │ ├── abra.png │ │ ├── absol.png │ │ ├── aerodactyl.png │ │ ├── aggron.png │ │ ├── aipom.png │ │ ├── alakazam.png │ │ ├── altaria.png │ │ ├── ampharos.png │ │ ├── anorith.png │ │ ├── arbok.png │ │ ├── arcanine.png │ │ ├── ariados.png │ │ ├── armaldo.png │ │ ├── aron.png │ │ ├── articuno.png │ │ ├── articuno_overworld.png │ │ ├── azumarill.png │ │ ├── azumarill_old.png │ │ ├── azurill.png │ │ ├── azurill_old.png │ │ ├── bagon.png │ │ ├── baltoy.png │ │ ├── banette.png │ │ ├── barboach.png │ │ ├── bayleef.png │ │ ├── beautifly.png │ │ ├── beedrill.png │ │ ├── beldum.png │ │ ├── bellossom.png │ │ ├── bellsprout.png │ │ ├── blastoise.png │ │ ├── blaziken.png │ │ ├── blissey.png │ │ ├── breloom.png │ │ ├── bulbasaur.png │ │ ├── bulbasaur_overworld.png │ │ ├── butterfree.png │ │ ├── cacnea.png │ │ ├── cacturne.png │ │ ├── camerupt.png │ │ ├── carvanha.png │ │ ├── cascoon.png │ │ ├── castform.png │ │ ├── caterpie.png │ │ ├── celebi.png │ │ ├── chansey.png │ │ ├── chansey_overworld.png │ │ ├── charizard.png │ │ ├── charmander.png │ │ ├── charmander_overworld.png │ │ ├── charmeleon.png │ │ ├── chikorita.png │ │ ├── chimecho.png │ │ ├── chinchou.png │ │ ├── clamperl.png │ │ ├── claydol.png │ │ ├── clefable.png │ │ ├── clefairy.png │ │ ├── clefairy_overworld.png │ │ ├── cleffa.png │ │ ├── cloyster.png │ │ ├── combusken.png │ │ ├── corphish.png │ │ ├── corsola.png │ │ ├── cradily.png │ │ ├── crawdaunt.png │ │ ├── crobat.png │ │ ├── croconaw.png │ │ ├── cubone.png │ │ ├── cubone_overworld.png │ │ ├── cyndaquil.png │ │ ├── delcatty.png │ │ ├── delibird.png │ │ ├── deoxys.png │ │ ├── deoxys_old.png │ │ ├── dewgong.png │ │ ├── diglett.png │ │ ├── ditto.png │ │ ├── dodrio.png │ │ ├── dodrio_overworld.png │ │ ├── doduo.png │ │ ├── donphan.png │ │ ├── dragonair.png │ │ ├── dragonite.png │ │ ├── dratini.png │ │ ├── drowzee.png │ │ ├── dugtrio.png │ │ ├── dunsparce.png │ │ ├── dusclops.png │ │ ├── dusclops_old.png │ │ ├── duskull.png │ │ ├── dustox.png │ │ ├── eevee.png │ │ ├── ekans.png │ │ ├── electabuzz.png │ │ ├── electrike.png │ │ ├── electrode.png │ │ ├── elekid.png │ │ ├── enemy_zigzagoon.png │ │ ├── entei.png │ │ ├── espeon.png │ │ ├── exeggcute.png │ │ ├── exeggutor.png │ │ ├── exploud.png │ │ ├── farfetchd.png │ │ ├── fearow.png │ │ ├── feebas.png │ │ ├── feraligatr.png │ │ ├── flaaffy.png │ │ ├── flareon.png │ │ ├── flygon.png │ │ ├── forretress.png │ │ ├── furret.png │ │ ├── gardevoir.png │ │ ├── gastly.png │ │ ├── gengar.png │ │ ├── geodude.png │ │ ├── girafarig.png │ │ ├── glalie.png │ │ ├── gligar.png │ │ ├── gloom.png │ │ ├── golbat.png │ │ ├── goldeen.png │ │ ├── golduck.png │ │ ├── golem.png │ │ ├── gorebyss.png │ │ ├── granbull.png │ │ ├── graveler.png │ │ ├── grimer.png │ │ ├── groudon.png │ │ ├── groudon_old.png │ │ ├── grovyle.png │ │ ├── growlithe.png │ │ ├── grumpig.png │ │ ├── gulpin.png │ │ ├── gyarados.png │ │ ├── hariyama.png │ │ ├── haunter.png │ │ ├── heracross.png │ │ ├── hitmonchan.png │ │ ├── hitmonlee.png │ │ ├── hitmontop.png │ │ ├── ho_oh.png │ │ ├── ho_oh_old.png │ │ ├── hoothoot.png │ │ ├── hoppip.png │ │ ├── horsea.png │ │ ├── houndoom.png │ │ ├── houndour.png │ │ ├── huntail.png │ │ ├── hypno.png │ │ ├── igglybuff.png │ │ ├── illumise.png │ │ ├── ivysaur.png │ │ ├── jigglypuff.png │ │ ├── jigglypuff_overworld.png │ │ ├── jirachi.png │ │ ├── jolteon.png │ │ ├── jumpluff.png │ │ ├── jynx.png │ │ ├── kabuto.png │ │ ├── kabuto_overworld.png │ │ ├── kabutops.png │ │ ├── kadabra.png │ │ ├── kakuna.png │ │ ├── kangaskhan.png │ │ ├── kangaskhan_overworld.png │ │ ├── kecleon.png │ │ ├── kecleon_old.png │ │ ├── kingdra.png │ │ ├── kingler.png │ │ ├── kirlia.png │ │ ├── kirlia_old.png │ │ ├── koffing.png │ │ ├── krabby.png │ │ ├── kyogre.png │ │ ├── kyogre_old.png │ │ ├── lairon.png │ │ ├── lanturn.png │ │ ├── lapras.png │ │ ├── lapras_overworld.png │ │ ├── larvitar.png │ │ ├── latias.png │ │ ├── latias_latios.png │ │ ├── latios.png │ │ ├── ledian.png │ │ ├── ledyba.png │ │ ├── lickitung.png │ │ ├── lileep.png │ │ ├── linoone.png │ │ ├── lombre.png │ │ ├── lotad.png │ │ ├── loudred.png │ │ ├── ludicolo.png │ │ ├── lugia.png │ │ ├── lugia_old.png │ │ ├── lunatone.png │ │ ├── luvdisc.png │ │ ├── machamp.png │ │ ├── machoke.png │ │ ├── machoke_overworld.png │ │ ├── machop.png │ │ ├── machop_overworld.png │ │ ├── magby.png │ │ ├── magcargo.png │ │ ├── magikarp.png │ │ ├── magmar.png │ │ ├── magnemite.png │ │ ├── magneton.png │ │ ├── makuhita.png │ │ ├── manectric.png │ │ ├── mankey.png │ │ ├── mantine.png │ │ ├── mareep.png │ │ ├── marill.png │ │ ├── marowak.png │ │ ├── marowak_overworld.png │ │ ├── marshtomp.png │ │ ├── masquerain.png │ │ ├── mawile.png │ │ ├── medicham.png │ │ ├── meditite.png │ │ ├── meganium.png │ │ ├── meowth.png │ │ ├── meowth_overworld.png │ │ ├── metagross.png │ │ ├── metang.png │ │ ├── metapod.png │ │ ├── mew.png │ │ ├── mew_old.png │ │ ├── mew_overworld.png │ │ ├── mewtwo.png │ │ ├── mewtwo_overworld.png │ │ ├── mightyena.png │ │ ├── milotic.png │ │ ├── miltank.png │ │ ├── minun.png │ │ ├── misdreavus.png │ │ ├── moltres.png │ │ ├── moltres_overworld.png │ │ ├── mr_mime.png │ │ ├── mudkip.png │ │ ├── muk.png │ │ ├── murkrow.png │ │ ├── natu.png │ │ ├── nidoking.png │ │ ├── nidoqueen.png │ │ ├── nidoran_f.png │ │ ├── nidoran_f_overworld.png │ │ ├── nidoran_m.png │ │ ├── nidoran_m_overworld.png │ │ ├── nidorina.png │ │ ├── nidorino.png │ │ ├── nidorino_overworld.png │ │ ├── nincada.png │ │ ├── ninetales.png │ │ ├── ninjask.png │ │ ├── noctowl.png │ │ ├── nosepass.png │ │ ├── numel.png │ │ ├── nuzleaf.png │ │ ├── octillery.png │ │ ├── oddish.png │ │ ├── omanyte.png │ │ ├── omanyte_overworld.png │ │ ├── omastar.png │ │ ├── onix.png │ │ ├── paras.png │ │ ├── parasect.png │ │ ├── pelipper.png │ │ ├── persian.png │ │ ├── phanpy.png │ │ ├── pichu.png │ │ ├── pidgeot.png │ │ ├── pidgeot_overworld.png │ │ ├── pidgeotto.png │ │ ├── pidgey.png │ │ ├── pidgey_overworld.png │ │ ├── pikachu.png │ │ ├── pikachu_old.png │ │ ├── piloswine.png │ │ ├── pineco.png │ │ ├── pinsir.png │ │ ├── plusle.png │ │ ├── politoed.png │ │ ├── poliwag.png │ │ ├── poliwhirl.png │ │ ├── poliwrath.png │ │ ├── poliwrath_overworld.png │ │ ├── ponyta.png │ │ ├── poochyena.png │ │ ├── poochyena_old.png │ │ ├── porygon.png │ │ ├── porygon2.png │ │ ├── primeape.png │ │ ├── psyduck.png │ │ ├── psyduck_overworld.png │ │ ├── pupitar.png │ │ ├── quagsire.png │ │ ├── quilava.png │ │ ├── qwilfish.png │ │ ├── raichu.png │ │ ├── raikou.png │ │ ├── ralts.png │ │ ├── rapidash.png │ │ ├── raticate.png │ │ ├── rattata.png │ │ ├── rayquaza.png │ │ ├── rayquaza_cutscene.png │ │ ├── rayquaza_still.png │ │ ├── regi.png │ │ ├── regice.png │ │ ├── regirock.png │ │ ├── registeel.png │ │ ├── relicanth.png │ │ ├── remoraid.png │ │ ├── rhydon.png │ │ ├── rhyhorn.png │ │ ├── roselia.png │ │ ├── sableye.png │ │ ├── salamence.png │ │ ├── sandshrew.png │ │ ├── sandslash.png │ │ ├── sceptile.png │ │ ├── scizor.png │ │ ├── scyther.png │ │ ├── seadra.png │ │ ├── seaking.png │ │ ├── sealeo.png │ │ ├── seedot.png │ │ ├── seel.png │ │ ├── seel_overworld.png │ │ ├── sentret.png │ │ ├── seviper.png │ │ ├── sharpedo.png │ │ ├── shedinja.png │ │ ├── shelgon.png │ │ ├── shellder.png │ │ ├── shiftry.png │ │ ├── shroomish.png │ │ ├── shuckle.png │ │ ├── shuppet.png │ │ ├── silcoon.png │ │ ├── skarmory.png │ │ ├── skiploom.png │ │ ├── skitty.png │ │ ├── skitty_old.png │ │ ├── slaking.png │ │ ├── slakoth.png │ │ ├── slowbro.png │ │ ├── slowbro_overworld.png │ │ ├── slowking.png │ │ ├── slowpoke.png │ │ ├── slowpoke_overworld.png │ │ ├── slugma.png │ │ ├── smeargle.png │ │ ├── smoochum.png │ │ ├── sneasel.png │ │ ├── snorlax.png │ │ ├── snorlax_sleep.png │ │ ├── snorunt.png │ │ ├── snubbull.png │ │ ├── solrock.png │ │ ├── spearow.png │ │ ├── spearow_overworld.png │ │ ├── spheal.png │ │ ├── spinarak.png │ │ ├── spinda.png │ │ ├── spoink.png │ │ ├── squirtle.png │ │ ├── squirtle_overworld.png │ │ ├── stantler.png │ │ ├── starmie.png │ │ ├── staryu.png │ │ ├── steelix.png │ │ ├── sudowoodo.png │ │ ├── sudowoodo_tree.png │ │ ├── suicune.png │ │ ├── sunflora.png │ │ ├── sunkern.png │ │ ├── surfable │ │ ├── 025_pikachu.png │ │ ├── 026_raichu.png │ │ ├── 147_dratini.png │ │ ├── 172_pichu.png │ │ ├── 306_aggron.png │ │ ├── 318_carvanha.png │ │ ├── 319_sharpedo.png │ │ ├── 320_wailmer.png │ │ ├── 321_wailord.png │ │ ├── 339_barboach.png │ │ ├── 340_whiscash.png │ │ ├── 341_corphish.png │ │ ├── 342_crawdaunt.png │ │ ├── 349_feebas.png │ │ ├── 366_clamperl.png │ │ ├── 367_huntail.png │ │ ├── 368_gorebyss.png │ │ ├── 369_relicanth.png │ │ ├── 370_luvdisc.png │ │ ├── 380_latias.png │ │ ├── 381_latios.png │ │ ├── 384_rayquaza.png │ │ ├── aggron_shiny.png │ │ ├── azumarill.png │ │ ├── azumarill_shiny.png │ │ ├── azurill.png │ │ ├── azurill_shiny.png │ │ ├── barboach_shiny.png │ │ ├── blastoise.png │ │ ├── blastoise_shiny.png │ │ ├── carvanha_shiny.png │ │ ├── chinchou.png │ │ ├── chinchou_shiny.png │ │ ├── clamperl_shiny.png │ │ ├── cloyster.png │ │ ├── cloyster_shiny.png │ │ ├── corphish_shiny.png │ │ ├── corsola.png │ │ ├── corsola_shiny.png │ │ ├── crawdaunt_shiny.png │ │ ├── croconaw.png │ │ ├── croconaw_shiny.png │ │ ├── dewgong.png │ │ ├── dewgong_shiny.png │ │ ├── dragonair.png │ │ ├── dragonair_shiny.png │ │ ├── dragonite.png │ │ ├── dragonite_shiny.png │ │ ├── dratini_shiny.png │ │ ├── exploud.png │ │ ├── exploud_shiny.png │ │ ├── feebas_shiny.png │ │ ├── feraligatr.png │ │ ├── feraligatr_shiny.png │ │ ├── furret.png │ │ ├── furret_shiny.png │ │ ├── goldeen.png │ │ ├── goldeen_shiny.png │ │ ├── golduck.png │ │ ├── golduck_shiny.png │ │ ├── gorebyss_shiny.png │ │ ├── gyarados.png │ │ ├── gyarados_shiny.png │ │ ├── hariyama.png │ │ ├── hariyama_shiny.png │ │ ├── horsea.png │ │ ├── horsea_shiny.png │ │ ├── huntail_shiny.png │ │ ├── kabuto.png │ │ ├── kabuto_shiny.png │ │ ├── kabutops.png │ │ ├── kabutops_shiny.png │ │ ├── kangaskhan.png │ │ ├── kangaskhan_shiny.png │ │ ├── kingdra.png │ │ ├── kingdra_shiny.png │ │ ├── kingler.png │ │ ├── kingler_shiny.png │ │ ├── krabby.png │ │ ├── krabby_shiny.png │ │ ├── kyogre.png │ │ ├── kyogre_primal.png │ │ ├── kyogre_primal_shiny.png │ │ ├── kyogre_shiny.png │ │ ├── lairon.png │ │ ├── lanturn.png │ │ ├── lanturn_shiny.png │ │ ├── lapras.png │ │ ├── lapras_shiny.png │ │ ├── latias_shiny.png │ │ ├── latios_shiny.png │ │ ├── lickitung.png │ │ ├── lickitung_shiny.png │ │ ├── linoone.png │ │ ├── linoone_shiny.png │ │ ├── lombre.png │ │ ├── lombre_shiny.png │ │ ├── lotad.png │ │ ├── lotad_shiny.png │ │ ├── ludicolo.png │ │ ├── ludicolo_shiny.png │ │ ├── lugia.png │ │ ├── lugia_shiny.png │ │ ├── luvdisc_shiny.png │ │ ├── makuhita.png │ │ ├── makuhita_shiny.png │ │ ├── mantine.png │ │ ├── mantine_shiny.png │ │ ├── marill.png │ │ ├── marill_shiny.png │ │ ├── marshtomp.png │ │ ├── marshtomp_shiny.png │ │ ├── mew.png │ │ ├── mew_shiny.png │ │ ├── milotic.png │ │ ├── milotic_shiny.png │ │ ├── miltank.png │ │ ├── miltank_shiny.png │ │ ├── mudkip.png │ │ ├── mudkip_shiny.png │ │ ├── nidoking.png │ │ ├── nidoking_shiny.png │ │ ├── nidoqueen.png │ │ ├── nidoqueen_shiny.png │ │ ├── octillery.png │ │ ├── octillery_shiny.png │ │ ├── omanyte.png │ │ ├── omanyte_shiny.png │ │ ├── omastar.png │ │ ├── omastar_shiny.png │ │ ├── pelipper.png │ │ ├── pelipper_shiny.png │ │ ├── politoed.png │ │ ├── politoed_shiny.png │ │ ├── poliwag.png │ │ ├── poliwag_shiny.png │ │ ├── poliwhirl.png │ │ ├── poliwhirl_shiny.png │ │ ├── poliwrath.png │ │ ├── poliwrath_shiny.png │ │ ├── psyduck.png │ │ ├── psyduck_shiny.png │ │ ├── quagsire.png │ │ ├── quagsire_shiny.png │ │ ├── qwilfish.png │ │ ├── qwilfish_shiny.png │ │ ├── rayquaza_shiny.png │ │ ├── relicanth_shiny.png │ │ ├── remoraid.png │ │ ├── remoraid_shiny.png │ │ ├── rhydon.png │ │ ├── rhydon_shiny.png │ │ ├── rhyhorn.png │ │ ├── seadra.png │ │ ├── seadra_shiny.png │ │ ├── seaking.png │ │ ├── seaking_shiny.png │ │ ├── sealeo.png │ │ ├── sealeo_shiny.png │ │ ├── seel.png │ │ ├── seel_shiny.png │ │ ├── sentret.png │ │ ├── sentret_shiny.png │ │ ├── sharpedo_shiny.png │ │ ├── shellder.png │ │ ├── shellder_shiny.png │ │ ├── slowbro.png │ │ ├── slowbro_shiny.png │ │ ├── slowking.png │ │ ├── slowking_shiny.png │ │ ├── slowpoke.png │ │ ├── slowpoke_shiny.png │ │ ├── sneasel.png │ │ ├── sneasel_shiny.png │ │ ├── snorlax.png │ │ ├── snorlax_shiny.png │ │ ├── spheal.png │ │ ├── spheal_shiny.png │ │ ├── squirtle.png │ │ ├── squirtle_shiny.png │ │ ├── starmie.png │ │ ├── starmie_shiny.png │ │ ├── staryu.png │ │ ├── staryu_shiny.png │ │ ├── suicune.png │ │ ├── suicune_shiny.png │ │ ├── swampert.png │ │ ├── swampert_shiny.png │ │ ├── tauros.png │ │ ├── tauros_shiny.png │ │ ├── tentacool.png │ │ ├── tentacool_shiny.png │ │ ├── tentacruel.png │ │ ├── tentacruel_shiny.png │ │ ├── totodile.png │ │ ├── totodile_shiny.png │ │ ├── tyranitar.png │ │ ├── tyranitar_shiny.png │ │ ├── vaporeon.png │ │ ├── vaporeon_shiny.png │ │ ├── wailmer_shiny.png │ │ ├── wailord_shiny.png │ │ ├── walrein.png │ │ ├── walrein_shiny.png │ │ ├── wartortle.png │ │ ├── wartortle_shiny.png │ │ ├── whiscash_shiny.png │ │ ├── wooper.png │ │ ├── wooper_shiny.png │ │ ├── zigzagoon.png │ │ └── zigzagoon_shiny.png │ │ ├── surskit.png │ │ ├── swablu.png │ │ ├── swalot.png │ │ ├── swampert.png │ │ ├── swellow.png │ │ ├── swinub.png │ │ ├── taillow.png │ │ ├── tangela.png │ │ ├── tauros.png │ │ ├── teddiursa.png │ │ ├── tentacool.png │ │ ├── tentacruel.png │ │ ├── togepi.png │ │ ├── togetic.png │ │ ├── torchic.png │ │ ├── torkoal.png │ │ ├── totodile.png │ │ ├── trapinch.png │ │ ├── treecko.png │ │ ├── tropius.png │ │ ├── typhlosion.png │ │ ├── tyranitar.png │ │ ├── tyrogue.png │ │ ├── umbreon.png │ │ ├── unown_a.png │ │ ├── unown_b.png │ │ ├── unown_c.png │ │ ├── unown_d.png │ │ ├── unown_e.png │ │ ├── unown_exclamation.png │ │ ├── unown_f.png │ │ ├── unown_g.png │ │ ├── unown_h.png │ │ ├── unown_i.png │ │ ├── unown_j.png │ │ ├── unown_k.png │ │ ├── unown_l.png │ │ ├── unown_m.png │ │ ├── unown_n.png │ │ ├── unown_o.png │ │ ├── unown_p.png │ │ ├── unown_q.png │ │ ├── unown_question.png │ │ ├── unown_r.png │ │ ├── unown_s.png │ │ ├── unown_t.png │ │ ├── unown_u.png │ │ ├── unown_v.png │ │ ├── unown_w.png │ │ ├── unown_x.png │ │ ├── unown_y.png │ │ ├── unown_z.png │ │ ├── ursaring.png │ │ ├── vaporeon.png │ │ ├── venomoth.png │ │ ├── venonat.png │ │ ├── venusaur.png │ │ ├── vibrava.png │ │ ├── victreebel.png │ │ ├── vigoroth.png │ │ ├── vigoroth_mover.png │ │ ├── vileplume.png │ │ ├── volbeat.png │ │ ├── voltorb.png │ │ ├── voltorb_overworld.png │ │ ├── vulpix.png │ │ ├── wailmer.png │ │ ├── wailord.png │ │ ├── walrein.png │ │ ├── wartortle.png │ │ ├── weedle.png │ │ ├── weepinbell.png │ │ ├── weezing.png │ │ ├── whiscash.png │ │ ├── whismur.png │ │ ├── wigglytuff.png │ │ ├── wigglytuff_overworld.png │ │ ├── wingull.png │ │ ├── wingull_old.png │ │ ├── wobbuffet.png │ │ ├── wooper.png │ │ ├── wurmple.png │ │ ├── wynaut.png │ │ ├── xatu.png │ │ ├── yanma.png │ │ ├── zangoose.png │ │ ├── zapdos.png │ │ ├── zapdos_overworld.png │ │ ├── zigzagoon.png │ │ ├── zigzagoon_old.png │ │ └── zubat.png ├── party_menu │ ├── bg.bin │ ├── bg.pal │ ├── bg.png │ ├── cancel_button.bin │ ├── confirm_button.bin │ ├── hold_icons.png │ ├── pokeball.png │ ├── pokeball_small.png │ ├── slot_main.bin │ ├── slot_main_no_hp.bin │ ├── slot_wide.bin │ ├── slot_wide_empty.bin │ └── slot_wide_no_hp.bin ├── picture_frame │ ├── beauty.png │ ├── beauty_map.bin │ ├── bg.pal │ ├── cool.png │ ├── cool_map.bin │ ├── cute.png │ ├── cute_map.bin │ ├── lobby.png │ ├── lobby_map.bin │ ├── smart.png │ ├── smart_map.bin │ ├── tough.png │ └── tough_map.bin ├── pokeblock │ ├── black.pal │ ├── blue.pal │ ├── brown.pal │ ├── device.png │ ├── feeding_bg.bin │ ├── gold.pal │ ├── gray.pal │ ├── green.pal │ ├── indigo.pal │ ├── liteblue.pal │ ├── menu.bin │ ├── menu.pal │ ├── menu.png │ ├── olive.pal │ ├── pink.pal │ ├── pokeblock.png │ ├── purple.pal │ ├── red.pal │ ├── use_screen │ │ ├── condition.png │ │ ├── graph.bin │ │ ├── graph.png │ │ ├── graph_data.bin │ │ ├── mon_frame.bin │ │ ├── mon_frame.png │ │ ├── mon_frame_pal.bin │ │ ├── nature.pal │ │ └── updown.png │ ├── white.pal │ └── yellow.pal ├── pokedex │ ├── area_glow.png │ ├── area_marker.png │ ├── area_unknown.png │ ├── arrows.png │ ├── bg_hoenn.pal │ ├── bg_national.pal │ ├── caught_ball.png │ ├── caught_screen.pal │ ├── cry_meter.png │ ├── cry_meter_map.bin │ ├── cry_meter_needle.png │ ├── cry_screen.bin │ ├── cry_screen_bg │ ├── cry_screen_bg.png │ ├── info_screen.bin │ ├── interface.png │ ├── list.bin │ ├── list_underlay.bin │ ├── menu.png │ ├── noball_unused.png │ ├── region_map.bin │ ├── region_map.pal │ ├── region_map.png │ ├── region_map_affine.bin │ ├── region_map_affine.png │ ├── screen_select_bar_main.bin │ ├── screen_select_bar_submenu.bin │ ├── search_menu.pal │ ├── search_menu.png │ ├── search_menu_hoenn.bin │ ├── search_menu_national.bin │ ├── search_results_bg.pal │ ├── size_screen.bin │ ├── size_silhouette.pal │ ├── start_menu_main.bin │ └── start_menu_search_results.bin ├── pokemon │ ├── abra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── absol │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aerodactyl │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aggron │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aipom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alakazam │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── altaria │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ampharos │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── anorith │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arbok │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arcanine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ariados │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── armaldo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aron │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── articuno │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── azumarill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── azurill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bagon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── baltoy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── banette │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── barboach │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bayleef │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beautifly │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beedrill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beldum │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bellossom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bellsprout │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blastoise │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blaziken │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blissey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── breloom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bulbasaur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── butterfree │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cacnea │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cacturne │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── camerupt │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── carvanha │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cascoon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── castform │ │ ├── anim_front_normal_form.png │ │ ├── anim_front_rainy_form.png │ │ ├── anim_front_snowy_form.png │ │ ├── anim_front_sunny_form.png │ │ ├── back_normal_form.png │ │ ├── back_rainy_form.png │ │ ├── back_snowy_form.png │ │ ├── back_sunny_form.png │ │ ├── footprint.png │ │ ├── front_normal_form.png │ │ ├── front_rainy_form.png │ │ ├── front_snowy_form.png │ │ ├── front_sunny_form.png │ │ ├── icon.png │ │ ├── normal_normal_form.pal │ │ ├── normal_rainy_form.pal │ │ ├── normal_snowy_form.pal │ │ ├── normal_sunny_form.pal │ │ ├── shiny_normal_form.pal │ │ ├── shiny_rainy_form.pal │ │ ├── shiny_snowy_form.pal │ │ └── shiny_sunny_form.pal │ ├── caterpie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── celebi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chansey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charizard │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charmander │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charmeleon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chikorita │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chimecho │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chinchou │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clamperl │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── claydol │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clefable │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clefairy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cleffa │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cloyster │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── combusken │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corphish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corsola │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cradily │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crawdaunt │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crobat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── croconaw │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cubone │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cyndaquil │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── delcatty │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── delibird │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── deoxys │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── icon_speed.png │ │ ├── icon_speed_wide.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dewgong │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── diglett │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ditto │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dodrio │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── doduo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── donphan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragonair │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragonite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dratini │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drowzee │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dugtrio │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dunsparce │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dusclops │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── duskull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dustox │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── eevee │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── egg │ │ ├── anim_front.png │ │ ├── front.png │ │ ├── hatch.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shard.png │ ├── ekans │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electabuzz │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electrike │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electrode │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── elekid │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── entei │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── espeon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggcute │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggutor │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exploud │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── farfetchd │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── fearow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── feebas │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── feraligatr │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flaaffy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flareon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flygon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── forretress │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── furret │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gardevoir │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gastly │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gengar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── geodude │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── girafarig │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── glalie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gligar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gloom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golbat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── goldeen │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golduck │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golem │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gorebyss │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── granbull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── graveler │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grimer │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── groudon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grovyle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── growlithe │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grumpig │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gulpin │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gyarados │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hariyama │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── haunter │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── heracross │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmonchan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmonlee │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmontop │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ho_oh │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hoothoot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hoppip │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── horsea │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── houndoom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── houndour │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── huntail │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hypno │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── icon_palettes │ │ ├── icon_palette_0.pal │ │ ├── icon_palette_1.pal │ │ └── icon_palette_2.pal │ ├── igglybuff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── illumise │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ivysaur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jigglypuff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jirachi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jolteon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jumpluff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jynx │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kabuto │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kabutops │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kadabra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kakuna │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kangaskhan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kecleon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kingdra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kingler │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kirlia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── koffing │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── krabby │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kyogre │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lairon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lanturn │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lapras │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── larvitar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── latias │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── latios │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ledian │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ledyba │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lickitung │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lileep │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── linoone │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lombre │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lotad │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── loudred │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ludicolo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lugia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lunatone │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── luvdisc │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machamp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machoke │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machop │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magby │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magcargo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magikarp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magmar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magnemite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magneton │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── makuhita │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── manectric │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mankey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mantine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mareep │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marowak │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marshtomp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── masquerain │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mawile │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── medicham │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meditite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_aerodactyl │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_alakazam │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_beedrill │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_blastoise │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_charizard_x │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_charizard_y │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_gengar │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_gyarados │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_kangaskhan │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_mewtwo_x │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_mewtwo_y │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_pidgeot │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_pinsir │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_slowbro │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_venusaur │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meganium │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meowth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── metagross │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── metang │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── metapod │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mew │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mewtwo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mightyena │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── milotic │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── miltank │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── minun │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── misdreavus │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── moltres │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mr_mime │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mudkip │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── muk │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── murkrow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── natu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoking │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoqueen │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoran_f │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoran_m │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidorina │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidorino │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nincada │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ninetales │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ninjask │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── noctowl │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nosepass │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── numel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nuzleaf │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── octillery │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── oddish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── omanyte │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── omastar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── onix │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── paras │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── parasect │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pelipper │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── persian │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── phanpy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pichu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgeot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgeotto │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pikachu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pikachu_partner │ │ ├── anim_front.png │ │ ├── back.png │ │ └── front.png │ ├── piloswine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pineco │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pinsir │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── plusle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── politoed │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwag │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwhirl │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwrath │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ponyta │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poochyena │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── porygon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── porygon2 │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── primeape │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── psyduck │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pupitar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── quagsire │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── question_mark │ │ ├── circled │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── double │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ └── icon.png │ ├── quilava │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── qwilfish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raichu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raikou │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ralts │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rapidash │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raticate │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rattata │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rayquaza │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── regice │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── regirock │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── registeel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── relicanth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── remoraid │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rhydon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rhyhorn │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── roselia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sableye │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── salamence │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandshrew │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandslash │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sceptile │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scizor │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scyther │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seadra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seaking │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sealeo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seedot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sentret │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seviper │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sharpedo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shedinja │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shelgon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shellder │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shiftry │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shroomish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shuckle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shuppet │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── silcoon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skarmory │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skiploom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skitty │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slaking │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slakoth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowbro │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowking │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowpoke │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slugma │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── smeargle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── smoochum │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sneasel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snorlax │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snorunt │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snubbull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── solrock │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spearow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spheal │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spinarak │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spinda │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spoink │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── squirtle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── stantler │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── starmie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── staryu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── steelix │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sudowoodo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── suicune │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sunflora │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sunkern │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── surskit │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swablu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swalot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swampert │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swellow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swinub │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── taillow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tangela │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tauros │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── teddiursa │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tentacool │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tentacruel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togepi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togetic │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── torchic │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── torkoal │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── totodile │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── trapinch │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── treecko │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tropius │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── typhlosion │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tyranitar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tyrogue │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── umbreon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── unown │ │ ├── a │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── b │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── c │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── d │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── e │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── exclamation_mark │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── f │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── footprint.png │ │ ├── g │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── h │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── i │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── j │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── k │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── l │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── m │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── n │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── normal.pal │ │ ├── o │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── p │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── q │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── question_mark │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── r │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── s │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── shiny.pal │ │ ├── t │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── u │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── v │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── w │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── x │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── y │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ └── z │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ ├── unused_garbage.bin │ ├── ursaring │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vaporeon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venomoth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venonat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venusaur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vibrava │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── victreebel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vigoroth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vileplume │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── volbeat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── voltorb │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vulpix │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wailmer │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wailord │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── walrein │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wartortle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weedle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weepinbell │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weezing │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── whiscash │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── whismur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wigglytuff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wingull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wobbuffet │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wooper │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wurmple │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wynaut │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── xatu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── yanma │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zangoose │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zapdos │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zigzagoon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ └── zubat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal ├── pokemon_jump │ ├── bg.bin │ ├── bg.png │ ├── bonuses.bin │ ├── bonuses.png │ ├── interface.pal │ ├── pal1.pal │ ├── pal2.pal │ ├── star.png │ ├── venusaur.bin │ ├── venusaur.png │ ├── vine1.png │ ├── vine2.png │ ├── vine3.png │ └── vine4.png ├── pokemon_storage │ ├── arrow.png │ ├── bg.pal │ ├── bg_move_items.pal │ ├── box_bg1.pal │ ├── box_selection_popup.pal │ ├── box_selection_popup_center.png │ ├── box_selection_popup_sides.png │ ├── close_box_button.bin │ ├── display_menu.bin │ ├── display_menu.pal │ ├── hand_cursor.png │ ├── hand_cursor_shadow.png │ ├── interface.pal │ ├── item_info_frame.png │ ├── menu.png │ ├── party_menu.bin │ ├── party_slot_empty.bin │ ├── party_slot_filled.bin │ ├── pkmn_data.bin │ ├── pkmn_data_gray.pal │ ├── scrolling_bg.bin │ ├── scrolling_bg.png │ ├── text_windows.pal │ ├── unused.pal │ ├── wallpapers │ │ ├── azumarill │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── beach │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── blank │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── block │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── cave │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── circles │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── city │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── crag │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── desert │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── diagonal │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── dusclops │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── forest │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── frame │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── friends_frame1.png │ │ ├── friends_frame2.png │ │ ├── horizontal │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── icons │ │ │ ├── aqua.png │ │ │ ├── asterisk.png │ │ │ ├── big_asterisk.png │ │ │ ├── bolt.png │ │ │ ├── brick.png │ │ │ ├── circle.png │ │ │ ├── cross.png │ │ │ ├── crystal.png │ │ │ ├── diglett.png │ │ │ ├── dot.png │ │ │ ├── five_star.png │ │ │ ├── footprint.png │ │ │ ├── four_circles.png │ │ │ ├── four_star.png │ │ │ ├── heart.png │ │ │ ├── koffing.png │ │ │ ├── latis.png │ │ │ ├── line_circle.png │ │ │ ├── lotad.png │ │ │ ├── luvdisc.png │ │ │ ├── magma.png │ │ │ ├── maze.png │ │ │ ├── minun.png │ │ │ ├── pichu.png │ │ │ ├── plusle.png │ │ │ ├── pokeball.png │ │ │ ├── ribbon.png │ │ │ ├── spinda.png │ │ │ ├── star_in_circle.png │ │ │ └── togepi.png │ │ ├── legendary │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── ludicolo │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── machine │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── pikachu │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── plain │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── pokecenter │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── pokecenter2 │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── polkadot │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── ribbon │ │ │ ├── bg.png │ │ │ ├── frame.pal │ │ │ └── tilemap.bin │ │ ├── river │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── savanna │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── screen │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── seafloor │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── sky │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── snow │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── unused.bin │ │ ├── volcano │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── whiscash │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ └── zigzagoon │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ └── waveform.png ├── pokenav │ ├── bg_dots.bin │ ├── bg_dots.png │ ├── blue_light.png │ ├── city_maps │ │ ├── dewford_0.bin │ │ ├── ever_grande_0.bin │ │ ├── ever_grande_1.bin │ │ ├── fallarbor_0.bin │ │ ├── fortree_0.bin │ │ ├── lavaridge_0.bin │ │ ├── lilycove_0.bin │ │ ├── lilycove_1.bin │ │ ├── littleroot_0.bin │ │ ├── mauville_0.bin │ │ ├── mauville_1.bin │ │ ├── mossdeep_0.bin │ │ ├── mossdeep_1.bin │ │ ├── oldale_0.bin │ │ ├── pacifidlog_0.bin │ │ ├── petalburg_0.bin │ │ ├── rustboro_0.bin │ │ ├── rustboro_1.bin │ │ ├── slateport_0.bin │ │ ├── slateport_1.bin │ │ ├── sootopolis_0.bin │ │ └── verdanturf_0.bin │ ├── city_zoom_text.png │ ├── condition │ │ ├── cancel.pal │ │ ├── cancel.png │ │ ├── graph.bin │ │ ├── graph.png │ │ ├── graph_data.bin │ │ ├── graph_data.pal │ │ ├── graph_data.png │ │ ├── mon_markings.pal │ │ ├── pokeball.png │ │ ├── pokeball_placeholder.png │ │ ├── search_results.bin │ │ ├── search_results.png │ │ ├── search_results_list.pal │ │ ├── sparkle.png │ │ └── text.pal │ ├── device_outline.png │ ├── device_outline_map.bin │ ├── header.bin │ ├── header.png │ ├── left_headers │ │ ├── beauty.png │ │ ├── condition.png │ │ ├── cool.png │ │ ├── cute.png │ │ ├── hoenn_map.png │ │ ├── main_menu.png │ │ ├── match_call.png │ │ ├── palette.pal │ │ ├── party.png │ │ ├── ribbons.png │ │ ├── search.png │ │ ├── smart.png │ │ └── tough.png │ ├── list_arrows.png │ ├── match_call │ │ ├── call_window.pal │ │ ├── list_window.pal │ │ ├── nav_icon.png │ │ ├── options_cursor.png │ │ ├── pokeball.pal │ │ ├── pokeball.png │ │ ├── ui.bin │ │ ├── ui.png │ │ └── window.png │ ├── message.bin │ ├── message.png │ ├── nav_icon.png │ ├── options │ │ ├── beauty.png │ │ ├── cancel.png │ │ ├── condition.png │ │ ├── cool.png │ │ ├── cute.png │ │ ├── dexnav.png │ │ ├── hoenn_map.png │ │ ├── match_call.png │ │ ├── options.bin │ │ ├── options.pal │ │ ├── party.png │ │ ├── ribbons.png │ │ ├── search.png │ │ ├── smart.png │ │ ├── switch_off.png │ │ └── tough.png │ ├── region_map.pal │ ├── region_map.png │ ├── region_map │ │ ├── cursor.pal │ │ ├── cursor_large.png │ │ ├── cursor_small.png │ │ ├── fly_target_icons.png │ │ ├── frame.bin │ │ ├── frame.png │ │ ├── icons │ │ │ ├── brendan_icon.png │ │ │ ├── dawn_icon.png │ │ │ ├── ethan_icon.png │ │ │ ├── kris_icon.png │ │ │ ├── leaf_icon.png │ │ │ ├── lucas_icon.png │ │ │ ├── lyra_icon.png │ │ │ ├── may_icon.png │ │ │ └── red_icon.png │ │ └── info_window.pal │ ├── region_map_map.bin │ ├── region_map_section_layout.bin │ ├── ribbons │ │ ├── icons.png │ │ ├── icons1.pal │ │ ├── icons2.pal │ │ ├── icons3.pal │ │ ├── icons4.pal │ │ ├── icons5.pal │ │ ├── icons_big.png │ │ ├── list_bg.bin │ │ ├── list_bg.png │ │ ├── list_ui.pal │ │ ├── mon_info.pal │ │ ├── summary_bg.bin │ │ └── summary_bg.png │ └── zoom_tiles.png ├── rayquaza_scene │ ├── scene_1 │ │ ├── clouds.pal │ │ ├── clouds.png │ │ ├── clouds1.bin │ │ ├── clouds2.bin │ │ ├── clouds3.bin │ │ ├── groudon.png │ │ ├── groudon_claw.png │ │ ├── groudon_shoulder.png │ │ ├── kyogre.png │ │ ├── kyogre_dorsal_fin.png │ │ └── kyogre_pectoral_fin.png │ ├── scene_2 │ │ ├── bg.bin │ │ ├── bg.png │ │ ├── rayquaza.bin │ │ ├── rayquaza.png │ │ └── smoke.png │ ├── scene_3 │ │ ├── bg.bin │ │ ├── bg.pal │ │ ├── bg.png │ │ ├── light.bin │ │ ├── light.png │ │ ├── rayquaza.png │ │ └── rayquaza_tail.png │ ├── scene_4 │ │ ├── bg.bin │ │ ├── bg.pal │ │ ├── bg.png │ │ ├── orbs.bin │ │ ├── rayquaza.bin │ │ ├── rayquaza.png │ │ ├── streaks.bin │ │ └── streaks.png │ └── scene_5 │ │ ├── bg.bin │ │ ├── bg.pal │ │ ├── groudon.png │ │ ├── groudon_tail.png │ │ ├── kyogre.png │ │ ├── kyogre_splash.png │ │ ├── light.bin │ │ ├── light.png │ │ ├── rayquaza.png │ │ ├── rayquaza_tail.png │ │ ├── ring.bin │ │ └── ring.png ├── reset_rtc_screen │ ├── arrow.pal │ ├── arrow_down.png │ └── arrow_right.png ├── rotating_gates │ ├── l1.png │ ├── l2.png │ ├── l3.png │ ├── l4.png │ ├── t1.png │ ├── t2.png │ ├── t3.png │ └── t4.png ├── roulette │ ├── azurill.png │ ├── ball.png │ ├── ball_counter.png │ ├── center.png │ ├── credit.png │ ├── cursor.png │ ├── grid.bin │ ├── grid_icons.png │ ├── headers.png │ ├── makuhita.png │ ├── multiplier.png │ ├── numbers.png │ ├── shadow.png │ ├── shroomish.png │ ├── skitty.png │ ├── tailow.png │ ├── unused_1.pal │ ├── unused_2.pal │ ├── unused_3.pal │ ├── unused_4.pal │ ├── wheel.bin │ ├── wheel.png │ ├── window.png │ └── wynaut.png ├── shop │ ├── menu.bin │ ├── menu.png │ └── money.png ├── slot_machine │ ├── bolt.png │ ├── digital_display.png │ ├── duck.png │ ├── flashing_lights_inside.pal │ ├── flashing_lights_middle.pal │ ├── flashing_lights_outside.pal │ ├── info_box.bin │ ├── large_bolt │ │ ├── 0.png │ │ └── 1.png │ ├── menu.bin │ ├── menu.pal │ ├── menu.png │ ├── numbers │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── pika_aura.png │ ├── pokeball_shining_0.pal │ ├── pokeball_shining_1.pal │ ├── pokeball_shining_2.pal │ ├── reel_background.bin │ ├── reel_symbols │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── reel_time_explosion │ │ ├── 0.png │ │ └── 1.png │ ├── reel_time_machine.png │ ├── reel_time_number_gap.png │ ├── reel_time_numbers │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── reel_time_pikachu.png │ ├── reel_time_window.bin │ ├── shadow.png │ └── smoke.png ├── spinda_spots │ ├── spot_0.bin │ ├── spot_1.bin │ ├── spot_2.bin │ └── spot_3.bin ├── ss_anne │ ├── smoke.png │ └── wake.png ├── starter_choose │ ├── birch_bag.bin │ ├── birch_bag.png │ ├── birch_grass.bin │ ├── birch_grass.png │ ├── pokeball_selection.png │ └── starter_circle.png ├── summary_screen │ ├── a_button.png │ ├── b_button.png │ ├── background.bin │ ├── ball_icons │ │ ├── beast.png │ │ ├── cherish.png │ │ ├── dive.png │ │ ├── dream.png │ │ ├── dusk.png │ │ ├── fast.png │ │ ├── friend.png │ │ ├── great.png │ │ ├── heal.png │ │ ├── heavy.png │ │ ├── level.png │ │ ├── love.png │ │ ├── lure.png │ │ ├── luxury.png │ │ ├── master.png │ │ ├── moon.png │ │ ├── nest.png │ │ ├── net.png │ │ ├── poke.png │ │ ├── premier.png │ │ ├── quick.png │ │ ├── repeat.png │ │ ├── safari.png │ │ ├── sport.png │ │ ├── timer.png │ │ └── ultra.png │ ├── effect_battle.bin │ ├── effect_cancel.bin │ ├── effect_contest.bin │ ├── exp_bar.png │ ├── hp-exp_bar.pal │ ├── hp_bar.png │ ├── hp_red.pal │ ├── hp_yellow.pal │ ├── markings.pal │ ├── move_select.png │ ├── page_battle_moves.bin │ ├── page_condition.bin │ ├── page_contest_moves.bin │ ├── page_info.bin │ ├── page_info_egg.bin │ ├── page_memo.bin │ ├── page_moves.bin │ ├── page_moves_contest.bin │ ├── page_moves_contest_selected.bin │ ├── page_moves_selected.bin │ ├── page_new_move.bin │ ├── page_new_move_contest.bin │ ├── page_skills.bin │ ├── palette.pal │ ├── split_icons.png │ ├── status_tilemap.bin │ ├── tiles.pal │ └── tiles.png ├── text_window │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── dexnav_pal.pal │ ├── message_box.png │ ├── text_pal1.pal │ ├── text_pal2.pal │ ├── text_pal3.pal │ └── text_pal4.pal ├── title_screen │ ├── clouds.bin │ ├── clouds.png │ ├── emerald_version.png │ ├── logo_shine.png │ ├── pokeball.pal │ ├── pokemon_logo.bin │ ├── pokemon_logo.pal │ ├── pokemon_logo.png │ ├── press_start.png │ ├── rayquaza.bin │ ├── rayquaza.png │ ├── rayquaza_and_clouds.pal │ └── unused.pal ├── trade │ ├── cable_end.png │ ├── crossing_highlight_cable.bin │ ├── crossing_highlight_wireless.bin │ ├── cursor.pal │ ├── cursor.png │ ├── gba.pal │ ├── gba.png │ ├── gba_affine.png │ ├── gba_affine_map_cable.bin │ ├── gba_affine_map_wireless.bin │ ├── gba_map_cable.bin │ ├── gba_map_wireless.bin │ ├── gba_pal2.pal │ ├── gba_screen.png │ ├── link_mon.pal │ ├── link_mon_glow.png │ ├── link_mon_shadow.pal │ ├── link_mon_shadow.png │ ├── menu.bin │ ├── menu.pal │ ├── menu.png │ ├── menu_mon_box.bin │ ├── moves_box_map.bin │ ├── party_box_map.bin │ ├── platform.bin │ ├── pokeball.png │ ├── pokeball_symbol.png │ ├── pokeball_symbol_map.bin │ ├── stripes_bg2_map.bin │ ├── stripes_bg3_map.bin │ ├── text.pal │ ├── unused.bin │ ├── unused1.pal │ ├── unused2.pal │ ├── wireless_signal.bin │ ├── wireless_signal.png │ ├── wireless_signal_none.pal │ ├── wireless_signal_receive.pal │ └── wireless_signal_send.pal ├── trainer_card │ ├── 0star.pal │ ├── 0star_fr.pal │ ├── back.bin │ ├── back_fr.bin │ ├── badges.png │ ├── badges_fr.png │ ├── bg.bin │ ├── bg_fr.bin │ ├── card.png │ ├── card_fr.png │ ├── female_bg.pal │ ├── female_bg_fr.pal │ ├── four_stars.pal │ ├── four_stars_fr.pal │ ├── front.bin │ ├── front_fr.bin │ ├── front_link.bin │ ├── front_link_fr.bin │ ├── gold.pal │ ├── one_star.pal │ ├── one_star_fr.pal │ ├── stickers_fr.png │ ├── stickers_fr1.pal │ ├── stickers_fr2.pal │ ├── stickers_fr3.pal │ ├── stickers_fr4.pal │ ├── three_stars.pal │ ├── three_stars_fr.pal │ ├── two_stars.pal │ ├── two_stars_fr.pal │ └── unused.pal ├── trainer_hill │ ├── ereader.pal │ ├── maps_expert │ │ ├── floor_0 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_1 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_2 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ └── floor_3 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ ├── maps_jp │ │ ├── floor_0 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ └── floor_1 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ ├── maps_normal │ │ ├── floor_0 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_1 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_2 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ └── floor_3 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ ├── maps_unique │ │ ├── floor_0 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_1 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_2 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ └── floor_3 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ ├── maps_variety │ │ ├── floor_0 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_1 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_2 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ └── floor_3 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ ├── records_window.bin │ └── records_window.png ├── trainers │ ├── back_pics │ │ ├── brendan_back_pic.png │ │ ├── dawn_back_pic.png │ │ ├── dawn_platinum_back_pic.png │ │ ├── ethan_back_pic.png │ │ ├── kris_back_pic.png │ │ ├── leaf_back_pic.png │ │ ├── lucas_back_pic.png │ │ ├── lucas_platinum_back_pic.png │ │ ├── lyra_back_pic.png │ │ ├── may_back_pic.png │ │ ├── red_back_pic.png │ │ ├── ruby_sapphire_brendan_back_pic.png │ │ ├── ruby_sapphire_may_back_pic.png │ │ ├── steven_back_pic.png │ │ └── wally_back_pic.png │ ├── front_pics │ │ ├── aqua_admin_f_front_pic.png │ │ ├── aqua_admin_m_front_pic.png │ │ ├── aqua_grunt_f_front_pic.png │ │ ├── aqua_grunt_m_front_pic.png │ │ ├── aqua_leader_archie_front_pic.png │ │ ├── arena_tycoon_greta_front_pic.png │ │ ├── aroma_lady_front_pic.png │ │ ├── battle_girl_front_pic.png │ │ ├── beauty_front_pic.png │ │ ├── biker_front_pic.png │ │ ├── bill_front_pic.png │ │ ├── bird_keeper_front_pic.png │ │ ├── black_belt_front_pic.png │ │ ├── blue_front_pic.png │ │ ├── brendan_front_pic.png │ │ ├── bug_catcher_front_pic.png │ │ ├── bug_maniac_front_pic.png │ │ ├── burglar_front_pic.png │ │ ├── camper_front_pic.png │ │ ├── champion_rival_front_pic.png │ │ ├── champion_wallace_front_pic.png │ │ ├── channeler_front_pic.png │ │ ├── collector_front_pic.png │ │ ├── cool_couple_front_pic.png │ │ ├── cooltrainer_f_front_pic.png │ │ ├── cooltrainer_m_front_pic.png │ │ ├── crush_girl_front_pic.png │ │ ├── crush_kin_front_pic.png │ │ ├── cue_ball_front_pic.png │ │ ├── cycling_triathlete_f_front_pic.png │ │ ├── cycling_triathlete_m_front_pic.png │ │ ├── dawn_front_pic.png │ │ ├── dawn_platinum_front_pic.png │ │ ├── dome_ace_tucker_front_pic.png │ │ ├── dragon_tamer_front_pic.png │ │ ├── elite_four_agatha_front_pic.png │ │ ├── elite_four_bruno_front_pic.png │ │ ├── elite_four_drake_front_pic.png │ │ ├── elite_four_glacia_front_pic.png │ │ ├── elite_four_lance_front_pic.png │ │ ├── elite_four_lorelei_front_pic.png │ │ ├── elite_four_phoebe_front_pic.png │ │ ├── elite_four_sidney_front_pic.png │ │ ├── engineer_front_pic.png │ │ ├── ethan_front_pic.png │ │ ├── expert_f_front_pic.png │ │ ├── expert_m_front_pic.png │ │ ├── factory_head_noland_front_pic.png │ │ ├── fisherman_front_pic.png │ │ ├── gamer_front_pic.png │ │ ├── gentleman_front_pic.png │ │ ├── guitarist_front_pic.png │ │ ├── hex_maniac_front_pic.png │ │ ├── hiker_front_pic.png │ │ ├── hoenn_cooltrainer_f_front_pic.png │ │ ├── hoenn_cooltrainer_m_front_pic.png │ │ ├── interviewer_front_pic.png │ │ ├── james.png │ │ ├── jessie.png │ │ ├── juggler_front_pic.png │ │ ├── kindler_front_pic.png │ │ ├── kris_front_pic.png │ │ ├── lady_front_pic.png │ │ ├── lass_front_pic.png │ │ ├── leader_blaine_front_pic.png │ │ ├── leader_brawly_front_pic.png │ │ ├── leader_brock_front_pic.png │ │ ├── leader_erika_front_pic.png │ │ ├── leader_flannery_front_pic.png │ │ ├── leader_giovanni_front_pic.png │ │ ├── leader_juan_front_pic.png │ │ ├── leader_koga_front_pic.png │ │ ├── leader_lt_surge_front_pic.png │ │ ├── leader_misty_front_pic.png │ │ ├── leader_norman_front_pic.png │ │ ├── leader_roxanne_front_pic.png │ │ ├── leader_sabrina_front_pic.png │ │ ├── leader_tate_and_liza_front_pic.png │ │ ├── leader_wattson_front_pic.png │ │ ├── leader_winona_front_pic.png │ │ ├── leaf_front_pic.png │ │ ├── looker_front_pic.png │ │ ├── lucas_front_pic.png │ │ ├── lucas_platinum_front_pic.png │ │ ├── lyra_front_pic.png │ │ ├── magma_admin_front_pic.png │ │ ├── magma_grunt_f_front_pic.png │ │ ├── magma_grunt_m_front_pic.png │ │ ├── magma_leader_maxie_front_pic.png │ │ ├── may_front_pic.png │ │ ├── ninja_boy_front_pic.png │ │ ├── old_couple_front_pic.png │ │ ├── painter_front_pic.png │ │ ├── palace_maven_spenser_front_pic.png │ │ ├── parasol_lady_front_pic.png │ │ ├── picnicker_front_pic.png │ │ ├── pike_queen_lucy_front_pic.png │ │ ├── pokefan_f_front_pic.png │ │ ├── pokefan_m_front_pic.png │ │ ├── pokemaniac_front_pic.png │ │ ├── pokemon_breeder_f_front_pic.png │ │ ├── pokemon_breeder_m_front_pic.png │ │ ├── pokemon_ranger_f_front_pic.png │ │ ├── pokemon_ranger_m_front_pic.png │ │ ├── professor_oak_front_pic.png │ │ ├── psychic_f_front_pic.png │ │ ├── psychic_m_front_pic.png │ │ ├── pyramid_king_brandon_front_pic.png │ │ ├── red_front_pic.png │ │ ├── rich_boy_front_pic.png │ │ ├── rival_late_front_pic.png │ │ ├── rocker_front_pic.png │ │ ├── rocket_duo.png │ │ ├── rocket_grunt_f_front_pic.png │ │ ├── rocket_grunt_m_front_pic.png │ │ ├── ruby_sapphire_brendan_front_pic.png │ │ ├── ruby_sapphire_may_front_pic.png │ │ ├── ruin_maniac_front_pic.png │ │ ├── running_triathlete_f_front_pic.png │ │ ├── running_triathlete_m_front_pic.png │ │ ├── sailor_front_pic.png │ │ ├── salon_maiden_anabel_front_pic.png │ │ ├── school_kid_f_front_pic.png │ │ ├── school_kid_m_front_pic.png │ │ ├── scientist_front_pic.png │ │ ├── scott_front_pic.png │ │ ├── sis_and_bro_front_pic.png │ │ ├── sr_and_jr_front_pic.png │ │ ├── steven_front_pic.png │ │ ├── super_nerd_front_pic.png │ │ ├── swimmer_f_front_pic.png │ │ ├── swimmer_m_front_pic.png │ │ ├── swimming_triathlete_f_front_pic.png │ │ ├── swimming_triathlete_m_front_pic.png │ │ ├── tamer_front_pic.png │ │ ├── tuber_f_front_pic.png │ │ ├── tuber_m_front_pic.png │ │ ├── twins_front_pic.png │ │ ├── wally_front_pic.png │ │ ├── young_couple_front_pic.png │ │ └── youngster_front_pic.png │ └── palettes │ │ ├── aqua_admin_f.pal │ │ ├── aqua_admin_m.pal │ │ ├── aqua_grunt_f.pal │ │ ├── aqua_grunt_m.pal │ │ ├── aqua_leader_archie.pal │ │ ├── arena_tycoon_greta.pal │ │ ├── aroma_lady.pal │ │ ├── battle_girl.pal │ │ ├── beauty.pal │ │ ├── biker.pal │ │ ├── bill.pal │ │ ├── bird_keeper.pal │ │ ├── black_belt.pal │ │ ├── blue.pal │ │ ├── brendan.pal │ │ ├── brendan_back_pic.pal │ │ ├── bug_catcher.pal │ │ ├── bug_maniac.pal │ │ ├── burglar.pal │ │ ├── camper.pal │ │ ├── champion_rival.pal │ │ ├── champion_wallace.pal │ │ ├── channeler.pal │ │ ├── collector.pal │ │ ├── cool_couple.pal │ │ ├── cooltrainer_f.pal │ │ ├── cooltrainer_m.pal │ │ ├── crush_girl.pal │ │ ├── crush_kin.pal │ │ ├── cue_ball.pal │ │ ├── cycling_triathlete_f.pal │ │ ├── cycling_triathlete_m.pal │ │ ├── dawn.pal │ │ ├── dawn_back_pic.pal │ │ ├── dawn_platinum.pal │ │ ├── dawn_platinum_back_pic.pal │ │ ├── dome_ace_tucker.pal │ │ ├── dragon_tamer.pal │ │ ├── elite_four_agatha.pal │ │ ├── elite_four_bruno.pal │ │ ├── elite_four_drake.pal │ │ ├── elite_four_glacia.pal │ │ ├── elite_four_lance.pal │ │ ├── elite_four_lorelei.pal │ │ ├── elite_four_phoebe.pal │ │ ├── elite_four_sidney.pal │ │ ├── engineer.pal │ │ ├── ethan.pal │ │ ├── ethan_back_pic.pal │ │ ├── expert_f.pal │ │ ├── expert_m.pal │ │ ├── factory_head_noland.pal │ │ ├── fisherman.pal │ │ ├── gamer.pal │ │ ├── gentleman.pal │ │ ├── guitarist.pal │ │ ├── hex_maniac.pal │ │ ├── hiker.pal │ │ ├── hoenn_cooltrainer_f.pal │ │ ├── hoenn_cooltrainer_m.pal │ │ ├── interviewer.pal │ │ ├── james.pal │ │ ├── jessie.pal │ │ ├── juggler.pal │ │ ├── kindler.pal │ │ ├── kris.pal │ │ ├── kris_back_pic.pal │ │ ├── lady.pal │ │ ├── lass.pal │ │ ├── leader_blaine.pal │ │ ├── leader_brawly.pal │ │ ├── leader_brock.pal │ │ ├── leader_erika.pal │ │ ├── leader_flannery.pal │ │ ├── leader_giovanni.pal │ │ ├── leader_juan.pal │ │ ├── leader_koga.pal │ │ ├── leader_lt_surge.pal │ │ ├── leader_misty.pal │ │ ├── leader_norman.pal │ │ ├── leader_roxanne.pal │ │ ├── leader_sabrina.pal │ │ ├── leader_tate_and_liza.pal │ │ ├── leader_wattson.pal │ │ ├── leader_winona.pal │ │ ├── leaf.pal │ │ ├── leaf_back_pic.pal │ │ ├── looker.pal │ │ ├── lucas.pal │ │ ├── lucas_back_pic.pal │ │ ├── lucas_platinum.pal │ │ ├── lucas_platinum_back_pic.pal │ │ ├── lyra.pal │ │ ├── lyra_back_pic.pal │ │ ├── magma_admin.pal │ │ ├── magma_grunt_f.pal │ │ ├── magma_grunt_m.pal │ │ ├── magma_leader_maxie.pal │ │ ├── may.pal │ │ ├── may_back_pic.pal │ │ ├── ninja_boy.pal │ │ ├── old_couple.pal │ │ ├── painter.pal │ │ ├── palace_maven_spenser.pal │ │ ├── parasol_lady.pal │ │ ├── picnicker.pal │ │ ├── pike_queen_lucy.pal │ │ ├── pokefan_f.pal │ │ ├── pokefan_m.pal │ │ ├── pokemaniac.pal │ │ ├── pokemon_breeder_f.pal │ │ ├── pokemon_breeder_m.pal │ │ ├── pokemon_ranger_f.pal │ │ ├── pokemon_ranger_m.pal │ │ ├── professor_oak.pal │ │ ├── psychic_f.pal │ │ ├── psychic_m.pal │ │ ├── pyramid_king_brandon.pal │ │ ├── red.pal │ │ ├── red_back_pic.pal │ │ ├── rich_boy.pal │ │ ├── rival_late.pal │ │ ├── rocker.pal │ │ ├── rocket_duo.pal │ │ ├── rocket_grunt_f.pal │ │ ├── rocket_grunt_m.pal │ │ ├── ruby_sapphire_brendan.pal │ │ ├── ruby_sapphire_may.pal │ │ ├── ruin_maniac.pal │ │ ├── running_triathlete_f.pal │ │ ├── running_triathlete_m.pal │ │ ├── sailor.pal │ │ ├── salon_maiden_anabel.pal │ │ ├── school_kid_f.pal │ │ ├── school_kid_m.pal │ │ ├── scientist.pal │ │ ├── scott.pal │ │ ├── sis_and_bro.pal │ │ ├── sr_and_jr.pal │ │ ├── steven.pal │ │ ├── super_nerd.pal │ │ ├── swimmer_f.pal │ │ ├── swimmer_m.pal │ │ ├── swimming_triathlete_f.pal │ │ ├── swimming_triathlete_m.pal │ │ ├── tamer.pal │ │ ├── tuber_f.pal │ │ ├── tuber_m.pal │ │ ├── twins.pal │ │ ├── wally.pal │ │ ├── young_couple.pal │ │ └── youngster.pal ├── types │ ├── bug.png │ ├── contest_beauty.png │ ├── contest_cool.png │ ├── contest_cute.png │ ├── contest_smart.png │ ├── contest_tough.png │ ├── dark.png │ ├── dragon.png │ ├── electric.png │ ├── fairy.png │ ├── fight.png │ ├── fire.png │ ├── flying.png │ ├── ghost.png │ ├── grass.png │ ├── ground.png │ ├── ice.png │ ├── move_types_1.pal │ ├── move_types_2.pal │ ├── move_types_3.pal │ ├── mystery.png │ ├── normal.png │ ├── poison.png │ ├── psychic.png │ ├── rock.png │ ├── steel.png │ └── water.png ├── union_room_chat │ ├── background.bin │ ├── background.png │ ├── border.bin │ ├── border.png │ ├── interface.pal │ ├── keyboard_cursor.png │ ├── r_button.png │ ├── r_button_labels.png │ ├── text_entry_arrow.png │ ├── text_entry_cursor.png │ ├── unk_palette1.pal │ ├── unk_palette2.pal │ ├── window_1.pal │ └── window_2.pal ├── unused │ ├── basic_frame.bin │ ├── basic_frame.png │ ├── blank_frame.bin │ ├── blue_frame.bin │ ├── cherry.png │ ├── color_frames.png │ ├── green_frame.bin │ ├── old_battle_interface_1.png │ ├── old_battle_interface_2.png │ ├── old_battle_interface_3.png │ ├── old_battle_interface_tilemap.bin │ ├── old_bulbasaur.png │ ├── old_bulbasaur2.png │ ├── old_charizard.png │ ├── old_charmap.bin │ ├── old_charmap.png │ ├── old_pal1.pal │ ├── old_pal2.pal │ ├── old_pal3.pal │ ├── old_pal4.pal │ ├── old_pal5.pal │ ├── old_pal6.pal │ ├── old_pal7.pal │ ├── red_frame.bin │ ├── redyellowgreen_frame.bin │ ├── shadow.png │ └── yellow_frame.bin ├── wallclock │ ├── clock.png │ ├── clock_start.bin │ ├── clock_view.bin │ ├── female.pal │ ├── hand.png │ ├── male.pal │ └── text_prompt.pal ├── weather │ ├── ash.png │ ├── bubble.png │ ├── cloud.png │ ├── drought │ │ ├── colors_0.bin │ │ ├── colors_1.bin │ │ ├── colors_2.bin │ │ ├── colors_3.bin │ │ ├── colors_4.bin │ │ └── colors_5.bin │ ├── drought0.bin │ ├── drought1.bin │ ├── drought2.bin │ ├── drought3.bin │ ├── drought4.bin │ ├── drought5.bin │ ├── fog.pal │ ├── fog_diagonal.png │ ├── fog_horizontal.png │ ├── rain.png │ ├── sandstorm.png │ ├── snow0.png │ └── snow1.png ├── wonder_card │ ├── bg1.bin │ ├── bg1.png │ ├── bg2.bin │ ├── bg2.png │ ├── bg3.bin │ ├── bg3.png │ ├── bg4.png │ ├── bg5.png │ ├── bg6.png │ ├── bg7.bin │ ├── bg7.png │ ├── bg8.bin │ ├── bg8.png │ ├── stamp_shadow.png │ ├── stamp_shadow_1.pal │ ├── stamp_shadow_2.pal │ ├── stamp_shadow_3.pal │ ├── stamp_shadow_4.pal │ ├── stamp_shadow_5.pal │ ├── stamp_shadow_6.pal │ ├── stamp_shadow_7.pal │ └── stamp_shadow_8.pal └── wonder_news │ ├── bg1.bin │ ├── bg1.png │ ├── bg2.bin │ ├── bg2.png │ ├── bg3.bin │ ├── bg3.png │ ├── bg7.bin │ ├── bg7.png │ ├── bg8.bin │ └── bg8.png ├── graphics_file_rules.mk ├── include ├── AgbRfu_LinkManager.h ├── agb_flash.h ├── apprentice.h ├── bard_music.h ├── battle.h ├── battle_ai_main.h ├── battle_ai_switch_items.h ├── battle_ai_util.h ├── battle_anim.h ├── battle_arena.h ├── battle_bg.h ├── battle_controllers.h ├── battle_debug.h ├── battle_dome.h ├── battle_factory.h ├── battle_factory_screen.h ├── battle_gfx_sfx_util.h ├── battle_interface.h ├── battle_main.h ├── battle_message.h ├── battle_pike.h ├── battle_pyramid.h ├── battle_pyramid_bag.h ├── battle_records.h ├── battle_script_commands.h ├── battle_scripts.h ├── battle_setup.h ├── battle_tent.h ├── battle_tower.h ├── battle_transition.h ├── battle_transition_frontier.h ├── battle_tv.h ├── battle_util.h ├── battle_util2.h ├── battle_z_move.h ├── berry.h ├── berry_blender.h ├── berry_crush.h ├── berry_fix_program.h ├── berry_powder.h ├── berry_tag_screen.h ├── bike.h ├── braille_puzzles.h ├── cable_club.h ├── clear_save_data_menu.h ├── clock.h ├── coins.h ├── confetti_util.h ├── config.h ├── constants │ ├── abilities.h │ ├── apprentice.h │ ├── battle.h │ ├── battle_ai.h │ ├── battle_anim.h │ ├── battle_arena.h │ ├── battle_config.h │ ├── battle_dome.h │ ├── battle_factory.h │ ├── battle_frontier.h │ ├── battle_frontier_mons.h │ ├── battle_frontier_trainers.h │ ├── battle_move_effects.h │ ├── battle_palace.h │ ├── battle_pike.h │ ├── battle_pyramid.h │ ├── battle_script_commands.h │ ├── battle_setup.h │ ├── battle_string_ids.h │ ├── battle_tent.h │ ├── battle_tent_mons.h │ ├── battle_tent_trainers.h │ ├── battle_tower.h │ ├── berry.h │ ├── cable_club.h │ ├── coins.h │ ├── contest.h │ ├── daycare.h │ ├── decorations.h │ ├── easy_chat.h │ ├── event_bg.h │ ├── event_object_movement.h │ ├── event_objects.h │ ├── expansion_branches.h │ ├── field_effects.h │ ├── field_poison.h │ ├── field_specials.h │ ├── field_tasks.h │ ├── field_weather.h │ ├── flags.h │ ├── frontier_util.h │ ├── game_stat.h │ ├── global.h │ ├── heal_locations.h │ ├── hold_effects.h │ ├── item.h │ ├── item_effects.h │ ├── items.h │ ├── layouts.h │ ├── lilycove_lady.h │ ├── map_groups.h │ ├── map_scripts.h │ ├── map_types.h │ ├── maps.h │ ├── mauville_old_man.h │ ├── metatile_behaviors.h │ ├── metatile_labels.h │ ├── moves.h │ ├── mystery_gift.h │ ├── opponents.h │ ├── party_menu.h │ ├── pokedex.h │ ├── pokemon.h │ ├── region_map_sections.h │ ├── rgb.h │ ├── roulette.h │ ├── script_menu.h │ ├── secret_bases.h │ ├── slot_machine.h │ ├── songs.h │ ├── sound.h │ ├── species.h │ ├── trade.h │ ├── trainer_hill.h │ ├── trainer_types.h │ ├── trainers.h │ ├── tv.h │ ├── union_room.h │ ├── vars.h │ ├── weather.h │ ├── wild_encounter.h │ └── z_move_effects.h ├── contest.h ├── contest_ai.h ├── contest_effect.h ├── contest_link.h ├── contest_painting.h ├── contest_util.h ├── coord_event_weather.h ├── credits.h ├── crt0.h ├── data.h ├── daycare.h ├── debug.h ├── decompress.h ├── decoration.h ├── decoration_inventory.h ├── dewford_trend.h ├── dexnav.h ├── digit_obj_util.h ├── diploma.h ├── dodrio_berry_picking.h ├── dynamic_placeholder_text_util.h ├── easy_chat.h ├── egg_hatch.h ├── ereader_helpers.h ├── ereader_screen.h ├── event_data.h ├── event_object_lock.h ├── event_object_movement.h ├── event_scripts.h ├── evolution_graphics.h ├── evolution_scene.h ├── faraway_island.h ├── field_camera.h ├── field_control_avatar.h ├── field_door.h ├── field_effect.h ├── field_effect_helpers.h ├── field_message_box.h ├── field_player_avatar.h ├── field_poison.h ├── field_screen_effect.h ├── field_special_scene.h ├── field_specials.h ├── field_tasks.h ├── field_weather.h ├── fieldmap.h ├── fldeff.h ├── fldeff_misc.h ├── fonts.h ├── frontier_pass.h ├── frontier_util.h ├── gba │ ├── defines.h │ ├── flash_internal.h │ ├── gba.h │ ├── io_reg.h │ ├── isagbprint.h │ ├── m4a_internal.h │ ├── macro.h │ ├── multiboot.h │ ├── syscall.h │ └── types.h ├── global.berry.h ├── global.fieldmap.h ├── global.h ├── global.tv.h ├── graphics.h ├── gym_leader_rematch.h ├── hall_of_fame.h ├── heal_location.h ├── image_processing_effects.h ├── international_string_util.h ├── intro.h ├── intro_credits_graphics.h ├── item.h ├── item_icon.h ├── item_menu.h ├── item_menu_icons.h ├── item_use.h ├── landmark.h ├── libgcnmultiboot.h ├── librfu.h ├── lilycove_lady.h ├── link.h ├── link_rfu.h ├── list_menu.h ├── load_save.h ├── lottery_corner.h ├── m4a.h ├── mail.h ├── main.h ├── main_menu.h ├── map_name_popup.h ├── match_call.h ├── math_util.h ├── mauville_old_man.h ├── menu.h ├── menu_helpers.h ├── menu_specialized.h ├── metatile_behavior.h ├── minigame_countdown.h ├── mirage_tower.h ├── mon_markings.h ├── money.h ├── move_relearner.h ├── multiboot.h ├── multiboot_pokemon_colosseum.h ├── mystery_event_menu.h ├── mystery_event_msg.h ├── mystery_event_script.h ├── mystery_gift.h ├── mystery_gift_client.h ├── mystery_gift_link.h ├── mystery_gift_menu.h ├── mystery_gift_server.h ├── mystery_gift_view.h ├── naming_screen.h ├── new_game.h ├── option_menu.h ├── overworld.h ├── palette.h ├── palette_util.h ├── party_menu.h ├── pc_screen_effect.h ├── play_time.h ├── player_pc.h ├── pokeball.h ├── pokeblock.h ├── pokedex.h ├── pokedex_area_region_map.h ├── pokedex_area_screen.h ├── pokedex_cry_screen.h ├── pokemon.h ├── pokemon_animation.h ├── pokemon_icon.h ├── pokemon_jump.h ├── pokemon_size_record.h ├── pokemon_storage_system.h ├── pokemon_summary_screen.h ├── pokenav.h ├── random.h ├── rayquaza_scene.h ├── record_mixing.h ├── recorded_battle.h ├── region_map.h ├── reload_save.h ├── reset_rtc_screen.h ├── reshow_battle_screen.h ├── roamer.h ├── rotating_gate.h ├── rotating_tile_puzzle.h ├── roulette.h ├── rtc.h ├── safari_zone.h ├── save.h ├── save_location.h ├── scanline_effect.h ├── script.h ├── script_menu.h ├── script_movement.h ├── script_pokemon_util.h ├── secret_base.h ├── shop.h ├── siirtc.h ├── slot_machine.h ├── sound.h ├── start_menu.h ├── starter_choose.h ├── strings.h ├── task.h ├── text_window.h ├── tileset_anims.h ├── tilesets.h ├── time_events.h ├── title_screen.h ├── trade.h ├── trader.h ├── trainer_card.h ├── trainer_hill.h ├── trainer_pokemon_sprites.h ├── trainer_see.h ├── trig.h ├── tv.h ├── union_room.h ├── union_room_battle.h ├── union_room_chat.h ├── union_room_player_avatar.h ├── util.h ├── walda_phrase.h ├── wallclock.h ├── wild_encounter.h └── wonder_news.h ├── json_data_rules.mk ├── ld_script.txt ├── ld_script_modern.txt ├── libagbsyscall ├── Makefile └── libagbsyscall.s ├── make_tools.mk ├── map_data_rules.mk ├── palette.py ├── remote_build.sh ├── rom.sha1 ├── songs.mk ├── sound ├── MPlayDef.s ├── cry_tables.inc ├── direct_sound_data.inc ├── direct_sound_samples │ ├── bicycle_bell.aif │ ├── classical_choir_voice_ahhs.aif │ ├── cries │ │ ├── abra.aif │ │ ├── absol.aif │ │ ├── aerodactyl.aif │ │ ├── aggron.aif │ │ ├── aipom.aif │ │ ├── alakazam.aif │ │ ├── altaria.aif │ │ ├── ampharos.aif │ │ ├── anorith.aif │ │ ├── arbok.aif │ │ ├── arcanine.aif │ │ ├── ariados.aif │ │ ├── armaldo.aif │ │ ├── aron.aif │ │ ├── articuno.aif │ │ ├── azumarill.aif │ │ ├── azurill.aif │ │ ├── bagon.aif │ │ ├── baltoy.aif │ │ ├── banette.aif │ │ ├── barboach.aif │ │ ├── bayleef.aif │ │ ├── beautifly.aif │ │ ├── beedrill.aif │ │ ├── beldum.aif │ │ ├── bellossom.aif │ │ ├── bellsprout.aif │ │ ├── blastoise.aif │ │ ├── blaziken.aif │ │ ├── blissey.aif │ │ ├── breloom.aif │ │ ├── bulbasaur.aif │ │ ├── butterfree.aif │ │ ├── cacnea.aif │ │ ├── cacturne.aif │ │ ├── camerupt.aif │ │ ├── carvanha.aif │ │ ├── cascoon.aif │ │ ├── castform.aif │ │ ├── caterpie.aif │ │ ├── celebi.aif │ │ ├── chansey.aif │ │ ├── charizard.aif │ │ ├── charmander.aif │ │ ├── charmeleon.aif │ │ ├── chikorita.aif │ │ ├── chimecho.aif │ │ ├── chinchou.aif │ │ ├── clamperl.aif │ │ ├── claydol.aif │ │ ├── clefable.aif │ │ ├── clefairy.aif │ │ ├── cleffa.aif │ │ ├── cloyster.aif │ │ ├── combusken.aif │ │ ├── corphish.aif │ │ ├── corsola.aif │ │ ├── cradily.aif │ │ ├── crawdaunt.aif │ │ ├── crobat.aif │ │ ├── croconaw.aif │ │ ├── cubone.aif │ │ ├── cyndaquil.aif │ │ ├── delcatty.aif │ │ ├── delibird.aif │ │ ├── deoxys.aif │ │ ├── dewgong.aif │ │ ├── diglett.aif │ │ ├── ditto.aif │ │ ├── dodrio.aif │ │ ├── doduo.aif │ │ ├── donphan.aif │ │ ├── dragonair.aif │ │ ├── dragonite.aif │ │ ├── dratini.aif │ │ ├── drowzee.aif │ │ ├── dugtrio.aif │ │ ├── dunsparce.aif │ │ ├── dusclops.aif │ │ ├── duskull.aif │ │ ├── dustox.aif │ │ ├── eevee.aif │ │ ├── ekans.aif │ │ ├── electabuzz.aif │ │ ├── electrike.aif │ │ ├── electrode.aif │ │ ├── elekid.aif │ │ ├── entei.aif │ │ ├── espeon.aif │ │ ├── exeggcute.aif │ │ ├── exeggutor.aif │ │ ├── exploud.aif │ │ ├── farfetchd.aif │ │ ├── fearow.aif │ │ ├── feebas.aif │ │ ├── feraligatr.aif │ │ ├── flaaffy.aif │ │ ├── flareon.aif │ │ ├── flygon.aif │ │ ├── forretress.aif │ │ ├── furret.aif │ │ ├── gardevoir.aif │ │ ├── gastly.aif │ │ ├── gengar.aif │ │ ├── geodude.aif │ │ ├── girafarig.aif │ │ ├── glalie.aif │ │ ├── gligar.aif │ │ ├── gloom.aif │ │ ├── golbat.aif │ │ ├── goldeen.aif │ │ ├── golduck.aif │ │ ├── golem.aif │ │ ├── gorebyss.aif │ │ ├── granbull.aif │ │ ├── graveler.aif │ │ ├── grimer.aif │ │ ├── groudon.aif │ │ ├── grovyle.aif │ │ ├── growlithe.aif │ │ ├── grumpig.aif │ │ ├── gulpin.aif │ │ ├── gyarados.aif │ │ ├── hariyama.aif │ │ ├── haunter.aif │ │ ├── heracross.aif │ │ ├── hitmonchan.aif │ │ ├── hitmonlee.aif │ │ ├── hitmontop.aif │ │ ├── ho_oh.aif │ │ ├── hoothoot.aif │ │ ├── hoppip.aif │ │ ├── horsea.aif │ │ ├── houndoom.aif │ │ ├── houndour.aif │ │ ├── huntail.aif │ │ ├── hypno.aif │ │ ├── igglybuff.aif │ │ ├── illumise.aif │ │ ├── ivysaur.aif │ │ ├── jigglypuff.aif │ │ ├── jirachi.aif │ │ ├── jolteon.aif │ │ ├── jumpluff.aif │ │ ├── jynx.aif │ │ ├── kabuto.aif │ │ ├── kabutops.aif │ │ ├── kadabra.aif │ │ ├── kakuna.aif │ │ ├── kangaskhan.aif │ │ ├── kecleon.aif │ │ ├── kingdra.aif │ │ ├── kingler.aif │ │ ├── kirlia.aif │ │ ├── koffing.aif │ │ ├── krabby.aif │ │ ├── kyogre.aif │ │ ├── lairon.aif │ │ ├── lanturn.aif │ │ ├── lapras.aif │ │ ├── larvitar.aif │ │ ├── latias.aif │ │ ├── latios.aif │ │ ├── ledian.aif │ │ ├── ledyba.aif │ │ ├── lickitung.aif │ │ ├── lileep.aif │ │ ├── linoone.aif │ │ ├── lombre.aif │ │ ├── lotad.aif │ │ ├── loudred.aif │ │ ├── ludicolo.aif │ │ ├── lugia.aif │ │ ├── lunatone.aif │ │ ├── luvdisc.aif │ │ ├── machamp.aif │ │ ├── machoke.aif │ │ ├── machop.aif │ │ ├── magby.aif │ │ ├── magcargo.aif │ │ ├── magikarp.aif │ │ ├── magmar.aif │ │ ├── magnemite.aif │ │ ├── magneton.aif │ │ ├── makuhita.aif │ │ ├── manectric.aif │ │ ├── mankey.aif │ │ ├── mantine.aif │ │ ├── mareep.aif │ │ ├── marill.aif │ │ ├── marowak.aif │ │ ├── marshtomp.aif │ │ ├── masquerain.aif │ │ ├── mawile.aif │ │ ├── medicham.aif │ │ ├── meditite.aif │ │ ├── mega_aerodactyl.aif │ │ ├── mega_alakazam.aif │ │ ├── mega_beedrill.aif │ │ ├── mega_blastoise.aif │ │ ├── mega_charizard_x.aif │ │ ├── mega_charizard_y.aif │ │ ├── mega_gengar.aif │ │ ├── mega_gyarados.aif │ │ ├── mega_kangaskhan.aif │ │ ├── mega_mewtwo_x.aif │ │ ├── mega_mewtwo_y.aif │ │ ├── mega_pidgeot.aif │ │ ├── mega_pinsir.aif │ │ ├── mega_slowbro.aif │ │ ├── mega_venusaur.aif │ │ ├── meganium.aif │ │ ├── meowth.aif │ │ ├── metagross.aif │ │ ├── metang.aif │ │ ├── metapod.aif │ │ ├── mew.aif │ │ ├── mewtwo.aif │ │ ├── mightyena.aif │ │ ├── milotic.aif │ │ ├── miltank.aif │ │ ├── minun.aif │ │ ├── misdreavus.aif │ │ ├── moltres.aif │ │ ├── mr_mime.aif │ │ ├── mudkip.aif │ │ ├── muk.aif │ │ ├── murkrow.aif │ │ ├── natu.aif │ │ ├── nidoking.aif │ │ ├── nidoqueen.aif │ │ ├── nidoran_f.aif │ │ ├── nidoran_m.aif │ │ ├── nidorina.aif │ │ ├── nidorino.aif │ │ ├── nincada.aif │ │ ├── ninetales.aif │ │ ├── ninjask.aif │ │ ├── noctowl.aif │ │ ├── nosepass.aif │ │ ├── numel.aif │ │ ├── nuzleaf.aif │ │ ├── octillery.aif │ │ ├── oddish.aif │ │ ├── omanyte.aif │ │ ├── omastar.aif │ │ ├── onix.aif │ │ ├── paras.aif │ │ ├── parasect.aif │ │ ├── pelipper.aif │ │ ├── persian.aif │ │ ├── phanpy.aif │ │ ├── pichu.aif │ │ ├── pidgeot.aif │ │ ├── pidgeotto.aif │ │ ├── pidgey.aif │ │ ├── pikachu.aif │ │ ├── piloswine.aif │ │ ├── pineco.aif │ │ ├── pinsir.aif │ │ ├── plusle.aif │ │ ├── politoed.aif │ │ ├── poliwag.aif │ │ ├── poliwhirl.aif │ │ ├── poliwrath.aif │ │ ├── ponyta.aif │ │ ├── poochyena.aif │ │ ├── porygon.aif │ │ ├── porygon2.aif │ │ ├── primeape.aif │ │ ├── psyduck.aif │ │ ├── pupitar.aif │ │ ├── quagsire.aif │ │ ├── quilava.aif │ │ ├── qwilfish.aif │ │ ├── raichu.aif │ │ ├── raikou.aif │ │ ├── ralts.aif │ │ ├── rapidash.aif │ │ ├── raticate.aif │ │ ├── rattata.aif │ │ ├── rayquaza.aif │ │ ├── regice.aif │ │ ├── regirock.aif │ │ ├── registeel.aif │ │ ├── relicanth.aif │ │ ├── remoraid.aif │ │ ├── rhydon.aif │ │ ├── rhyhorn.aif │ │ ├── roselia.aif │ │ ├── sableye.aif │ │ ├── salamence.aif │ │ ├── sandshrew.aif │ │ ├── sandslash.aif │ │ ├── sceptile.aif │ │ ├── scizor.aif │ │ ├── scyther.aif │ │ ├── seadra.aif │ │ ├── seaking.aif │ │ ├── sealeo.aif │ │ ├── seedot.aif │ │ ├── seel.aif │ │ ├── sentret.aif │ │ ├── seviper.aif │ │ ├── sharpedo.aif │ │ ├── shedinja.aif │ │ ├── shelgon.aif │ │ ├── shellder.aif │ │ ├── shiftry.aif │ │ ├── shroomish.aif │ │ ├── shuckle.aif │ │ ├── shuppet.aif │ │ ├── silcoon.aif │ │ ├── skarmory.aif │ │ ├── skiploom.aif │ │ ├── skitty.aif │ │ ├── slaking.aif │ │ ├── slakoth.aif │ │ ├── slowbro.aif │ │ ├── slowking.aif │ │ ├── slowpoke.aif │ │ ├── slugma.aif │ │ ├── smeargle.aif │ │ ├── smoochum.aif │ │ ├── sneasel.aif │ │ ├── snorlax.aif │ │ ├── snorunt.aif │ │ ├── snubbull.aif │ │ ├── solrock.aif │ │ ├── spearow.aif │ │ ├── spheal.aif │ │ ├── spinarak.aif │ │ ├── spinda.aif │ │ ├── spoink.aif │ │ ├── squirtle.aif │ │ ├── stantler.aif │ │ ├── starmie.aif │ │ ├── staryu.aif │ │ ├── steelix.aif │ │ ├── sudowoodo.aif │ │ ├── suicune.aif │ │ ├── sunflora.aif │ │ ├── sunkern.aif │ │ ├── surskit.aif │ │ ├── swablu.aif │ │ ├── swalot.aif │ │ ├── swampert.aif │ │ ├── swellow.aif │ │ ├── swinub.aif │ │ ├── taillow.aif │ │ ├── tangela.aif │ │ ├── tauros.aif │ │ ├── teddiursa.aif │ │ ├── tentacool.aif │ │ ├── tentacruel.aif │ │ ├── togepi.aif │ │ ├── togetic.aif │ │ ├── torchic.aif │ │ ├── torkoal.aif │ │ ├── totodile.aif │ │ ├── trapinch.aif │ │ ├── treecko.aif │ │ ├── tropius.aif │ │ ├── typhlosion.aif │ │ ├── tyranitar.aif │ │ ├── tyrogue.aif │ │ ├── umbreon.aif │ │ ├── unown.aif │ │ ├── unused_265.aif │ │ ├── unused_268.aif │ │ ├── ursaring.aif │ │ ├── vaporeon.aif │ │ ├── venomoth.aif │ │ ├── venonat.aif │ │ ├── venusaur.aif │ │ ├── vibrava.aif │ │ ├── victreebel.aif │ │ ├── vigoroth.aif │ │ ├── vileplume.aif │ │ ├── volbeat.aif │ │ ├── voltorb.aif │ │ ├── vulpix.aif │ │ ├── wailmer.aif │ │ ├── wailord.aif │ │ ├── walrein.aif │ │ ├── wartortle.aif │ │ ├── weedle.aif │ │ ├── weepinbell.aif │ │ ├── weezing.aif │ │ ├── whiscash.aif │ │ ├── whismur.aif │ │ ├── wigglytuff.aif │ │ ├── wingull.aif │ │ ├── wobbuffet.aif │ │ ├── wooper.aif │ │ ├── wurmple.aif │ │ ├── wynaut.aif │ │ ├── xatu.aif │ │ ├── yanma.aif │ │ ├── zangoose.aif │ │ ├── zapdos.aif │ │ ├── zigzagoon.aif │ │ └── zubat.aif │ ├── dance_drums_ride_bell.aif │ ├── drum_and_percussion_kick.aif │ ├── ethnic_flavours_atarigane.aif │ ├── ethnic_flavours_hyoushigi.aif │ ├── ethnic_flavours_kotsuzumi.aif │ ├── ethnic_flavours_ohtsuzumi.aif │ ├── heart_of_asia_gamelan.aif │ ├── phonemes │ │ ├── 01.aif │ │ ├── 02.aif │ │ ├── 03.aif │ │ ├── 04.aif │ │ ├── 05.aif │ │ ├── 06.aif │ │ ├── 07.aif │ │ ├── 08.aif │ │ ├── 09.aif │ │ ├── 10.aif │ │ ├── 11.aif │ │ ├── 12.aif │ │ ├── 13.aif │ │ ├── 14.aif │ │ ├── 15.aif │ │ ├── 16.aif │ │ ├── 17.aif │ │ ├── 18.aif │ │ ├── 19.aif │ │ ├── 20.aif │ │ ├── 21.aif │ │ ├── 22.aif │ │ ├── 23.aif │ │ ├── 24.aif │ │ ├── 25.aif │ │ ├── 26.aif │ │ ├── 27.aif │ │ ├── 28.aif │ │ ├── 29.aif │ │ ├── 30.aif │ │ ├── 31.aif │ │ ├── 32.aif │ │ ├── 33.aif │ │ ├── 34.aif │ │ ├── 35.aif │ │ ├── 36.aif │ │ ├── 37.aif │ │ ├── 38.aif │ │ ├── 39.aif │ │ ├── 40.aif │ │ ├── 41.aif │ │ ├── 42.aif │ │ ├── 43.aif │ │ ├── 44.aif │ │ ├── 45.aif │ │ ├── 46.aif │ │ ├── 47.aif │ │ ├── 48.aif │ │ ├── 49.aif │ │ ├── 50.aif │ │ └── 51.aif │ ├── register_noise.aif │ ├── sc88pro_accordion.aif │ ├── sc88pro_accordion_duplicate.aif │ ├── sc88pro_bubbles.aif │ ├── sc88pro_church_organ3_high.aif │ ├── sc88pro_church_organ3_low.aif │ ├── sc88pro_fingered_bass.aif │ ├── sc88pro_flute.aif │ ├── sc88pro_french_horn_60.aif │ ├── sc88pro_french_horn_72.aif │ ├── sc88pro_fretless_bass.aif │ ├── sc88pro_glockenspiel.aif │ ├── sc88pro_harp.aif │ ├── sc88pro_jingle_bell.aif │ ├── sc88pro_mute_high_conga.aif │ ├── sc88pro_nylon_str_guitar.aif │ ├── sc88pro_open_low_conga.aif │ ├── sc88pro_orchestra_cymbal_crash.aif │ ├── sc88pro_orchestra_snare.aif │ ├── sc88pro_organ2.aif │ ├── sc88pro_piano1_48.aif │ ├── sc88pro_piano1_60.aif │ ├── sc88pro_piano1_72.aif │ ├── sc88pro_piano1_84.aif │ ├── sc88pro_pizzicato_strings.aif │ ├── sc88pro_rnd_kick.aif │ ├── sc88pro_rnd_snare.aif │ ├── sc88pro_slap_bass.aif │ ├── sc88pro_square_wave.aif │ ├── sc88pro_string_ensemble_60.aif │ ├── sc88pro_string_ensemble_72.aif │ ├── sc88pro_string_ensemble_84.aif │ ├── sc88pro_synth_bass.aif │ ├── sc88pro_taiko.aif │ ├── sc88pro_tambourine.aif │ ├── sc88pro_timpani.aif │ ├── sc88pro_timpani_with_snare.aif │ ├── sc88pro_tr909_hand_clap.aif │ ├── sc88pro_trumpet_60.aif │ ├── sc88pro_trumpet_72.aif │ ├── sc88pro_trumpet_84.aif │ ├── sc88pro_tuba_39.aif │ ├── sc88pro_tuba_51.aif │ ├── sc88pro_tubular_bell.aif │ ├── sc88pro_wind.aif │ ├── sc88pro_xylophone.aif │ ├── sd90_ambient_tom.aif │ ├── sd90_classical_detuned_ep1_high.aif │ ├── sd90_classical_detuned_ep1_low.aif │ ├── sd90_classical_distortion_guitar_high.aif │ ├── sd90_classical_distortion_guitar_low.aif │ ├── sd90_classical_oboe.aif │ ├── sd90_classical_overdrive_guitar.aif │ ├── sd90_classical_shakuhachi.aif │ ├── sd90_classical_whistle.aif │ ├── sd90_cowbell.aif │ ├── sd90_enhanced_delay_shaku.aif │ ├── sd90_open_triangle.aif │ ├── sd90_solo_snare.aif │ ├── sd90_special_scream_drive.aif │ ├── steinway_b_piano.aif │ ├── trinity_30303_mega_bass.aif │ ├── trinity_big_boned.aif │ ├── trinity_cymbal_crash.aif │ ├── unknown_01.aif │ ├── unknown_02.aif │ ├── unknown_03.aif │ ├── unknown_04.aif │ ├── unknown_05.aif │ ├── unknown_06.aif │ ├── unknown_07.aif │ ├── unknown_08.aif │ ├── unknown_09.aif │ ├── unknown_10.aif │ ├── unknown_11.aif │ ├── unknown_12.aif │ ├── unknown_13.aif │ ├── unknown_14.aif │ ├── unknown_15.aif │ ├── unknown_16.aif │ ├── unknown_17.aif │ ├── unknown_18.aif │ ├── unknown_bell.aif │ ├── unknown_close_hihat.aif │ ├── unknown_female_voice.aif │ ├── unknown_koto_high.aif │ ├── unknown_koto_low.aif │ ├── unknown_open_hihat.aif │ ├── unknown_snare.aif │ ├── unknown_synth_snare.aif │ ├── unused_guitar_separates_power_chord.aif │ ├── unused_heart_of_asia_indian_drum.aif │ ├── unused_sc55_tom.aif │ ├── unused_sc88pro_unison_slap.aif │ ├── unused_sd90_oboe.aif │ └── unused_unknown_male_voice.aif ├── keysplit_tables.inc ├── music_player_table.inc ├── programmable_wave_data.inc ├── programmable_wave_samples │ ├── 01.pcm │ ├── 02.pcm │ ├── 03.pcm │ ├── 04.pcm │ ├── 05.pcm │ ├── 06.pcm │ ├── 07.pcm │ ├── 08.pcm │ ├── 09.pcm │ ├── 10.pcm │ ├── 11.pcm │ ├── 12.pcm │ ├── 13.pcm │ ├── 14.pcm │ ├── 15.pcm │ ├── 16.pcm │ ├── 17.pcm │ ├── 18.pcm │ ├── 19.pcm │ ├── 20.pcm │ ├── 21.pcm │ ├── 22.pcm │ ├── 23.pcm │ ├── 24.pcm │ └── 25.pcm ├── song_table.inc ├── songs │ ├── midi │ │ ├── mus_abandoned_ship.mid │ │ ├── mus_abnormal_weather.mid │ │ ├── mus_aqua_magma_hideout.mid │ │ ├── mus_awaken_legend.mid │ │ ├── mus_b_arena.mid │ │ ├── mus_b_dome.mid │ │ ├── mus_b_dome_lobby.mid │ │ ├── mus_b_factory.mid │ │ ├── mus_b_frontier.mid │ │ ├── mus_b_palace.mid │ │ ├── mus_b_pike.mid │ │ ├── mus_b_pyramid.mid │ │ ├── mus_b_pyramid_top.mid │ │ ├── mus_b_tower.mid │ │ ├── mus_b_tower_rs.mid │ │ ├── mus_birch_lab.mid │ │ ├── mus_c_comm_center.mid │ │ ├── mus_c_vs_legend_beast.mid │ │ ├── mus_cable_car.mid │ │ ├── mus_caught.mid │ │ ├── mus_cave_of_origin.mid │ │ ├── mus_contest.mid │ │ ├── mus_contest_lobby.mid │ │ ├── mus_contest_results.mid │ │ ├── mus_contest_winner.mid │ │ ├── mus_credits.mid │ │ ├── mus_cycling.mid │ │ ├── mus_dewford.mid │ │ ├── mus_dummy.mid │ │ ├── mus_encounter_aqua.mid │ │ ├── mus_encounter_brendan.mid │ │ ├── mus_encounter_champion.mid │ │ ├── mus_encounter_cool.mid │ │ ├── mus_encounter_elite_four.mid │ │ ├── mus_encounter_female.mid │ │ ├── mus_encounter_girl.mid │ │ ├── mus_encounter_hiker.mid │ │ ├── mus_encounter_intense.mid │ │ ├── mus_encounter_interviewer.mid │ │ ├── mus_encounter_magma.mid │ │ ├── mus_encounter_male.mid │ │ ├── mus_encounter_may.mid │ │ ├── mus_encounter_rich.mid │ │ ├── mus_encounter_suspicious.mid │ │ ├── mus_encounter_swimmer.mid │ │ ├── mus_encounter_twins.mid │ │ ├── mus_end.mid │ │ ├── mus_ever_grande.mid │ │ ├── mus_evolution.mid │ │ ├── mus_evolution_intro.mid │ │ ├── mus_evolved.mid │ │ ├── mus_fallarbor.mid │ │ ├── mus_follow_me.mid │ │ ├── mus_fortree.mid │ │ ├── mus_game_corner.mid │ │ ├── mus_gsc_pewter.mid │ │ ├── mus_gsc_route38.mid │ │ ├── mus_gym.mid │ │ ├── mus_hall_of_fame.mid │ │ ├── mus_hall_of_fame_room.mid │ │ ├── mus_heal.mid │ │ ├── mus_help.mid │ │ ├── mus_intro.mid │ │ ├── mus_intro_battle.mid │ │ ├── mus_level_up.mid │ │ ├── mus_lilycove.mid │ │ ├── mus_lilycove_museum.mid │ │ ├── mus_link_contest_p1.mid │ │ ├── mus_link_contest_p2.mid │ │ ├── mus_link_contest_p3.mid │ │ ├── mus_link_contest_p4.mid │ │ ├── mus_littleroot.mid │ │ ├── mus_littleroot_test.mid │ │ ├── mus_move_deleted.mid │ │ ├── mus_mt_chimney.mid │ │ ├── mus_mt_pyre.mid │ │ ├── mus_mt_pyre_exterior.mid │ │ ├── mus_obtain_b_points.mid │ │ ├── mus_obtain_badge.mid │ │ ├── mus_obtain_berry.mid │ │ ├── mus_obtain_item.mid │ │ ├── mus_obtain_symbol.mid │ │ ├── mus_obtain_tmhm.mid │ │ ├── mus_oceanic_museum.mid │ │ ├── mus_oldale.mid │ │ ├── mus_petalburg.mid │ │ ├── mus_petalburg_woods.mid │ │ ├── mus_poke_center.mid │ │ ├── mus_poke_mart.mid │ │ ├── mus_rayquaza_appears.mid │ │ ├── mus_register_match_call.mid │ │ ├── mus_rg_berry_pick.mid │ │ ├── mus_rg_caught.mid │ │ ├── mus_rg_caught_intro.mid │ │ ├── mus_rg_celadon.mid │ │ ├── mus_rg_cinnabar.mid │ │ ├── mus_rg_credits.mid │ │ ├── mus_rg_cycling.mid │ │ ├── mus_rg_dex_rating.mid │ │ ├── mus_rg_encounter_boy.mid │ │ ├── mus_rg_encounter_deoxys.mid │ │ ├── mus_rg_encounter_girl.mid │ │ ├── mus_rg_encounter_gym_leader.mid │ │ ├── mus_rg_encounter_rival.mid │ │ ├── mus_rg_encounter_rocket.mid │ │ ├── mus_rg_follow_me.mid │ │ ├── mus_rg_fuchsia.mid │ │ ├── mus_rg_game_corner.mid │ │ ├── mus_rg_game_freak.mid │ │ ├── mus_rg_gym.mid │ │ ├── mus_rg_hall_of_fame.mid │ │ ├── mus_rg_heal.mid │ │ ├── mus_rg_intro_fight.mid │ │ ├── mus_rg_jigglypuff.mid │ │ ├── mus_rg_lavender.mid │ │ ├── mus_rg_mt_moon.mid │ │ ├── mus_rg_mystery_gift.mid │ │ ├── mus_rg_net_center.mid │ │ ├── mus_rg_new_game_exit.mid │ │ ├── mus_rg_new_game_instruct.mid │ │ ├── mus_rg_new_game_intro.mid │ │ ├── mus_rg_oak.mid │ │ ├── mus_rg_oak_lab.mid │ │ ├── mus_rg_obtain_key_item.mid │ │ ├── mus_rg_pallet.mid │ │ ├── mus_rg_pewter.mid │ │ ├── mus_rg_photo.mid │ │ ├── mus_rg_poke_center.mid │ │ ├── mus_rg_poke_flute.mid │ │ ├── mus_rg_poke_jump.mid │ │ ├── mus_rg_poke_mansion.mid │ │ ├── mus_rg_poke_tower.mid │ │ ├── mus_rg_rival_exit.mid │ │ ├── mus_rg_rocket_hideout.mid │ │ ├── mus_rg_route1.mid │ │ ├── mus_rg_route11.mid │ │ ├── mus_rg_route24.mid │ │ ├── mus_rg_route3.mid │ │ ├── mus_rg_sevii_123.mid │ │ ├── mus_rg_sevii_45.mid │ │ ├── mus_rg_sevii_67.mid │ │ ├── mus_rg_sevii_cave.mid │ │ ├── mus_rg_sevii_dungeon.mid │ │ ├── mus_rg_sevii_route.mid │ │ ├── mus_rg_silph.mid │ │ ├── mus_rg_slow_pallet.mid │ │ ├── mus_rg_ss_anne.mid │ │ ├── mus_rg_surf.mid │ │ ├── mus_rg_teachy_tv_menu.mid │ │ ├── mus_rg_teachy_tv_show.mid │ │ ├── mus_rg_title.mid │ │ ├── mus_rg_trainer_tower.mid │ │ ├── mus_rg_union_room.mid │ │ ├── mus_rg_vermillion.mid │ │ ├── mus_rg_victory_gym_leader.mid │ │ ├── mus_rg_victory_road.mid │ │ ├── mus_rg_victory_trainer.mid │ │ ├── mus_rg_victory_wild.mid │ │ ├── mus_rg_viridian_forest.mid │ │ ├── mus_rg_vs_champion.mid │ │ ├── mus_rg_vs_deoxys.mid │ │ ├── mus_rg_vs_gym_leader.mid │ │ ├── mus_rg_vs_legend.mid │ │ ├── mus_rg_vs_mewtwo.mid │ │ ├── mus_rg_vs_trainer.mid │ │ ├── mus_rg_vs_wild.mid │ │ ├── mus_roulette.mid │ │ ├── mus_route101.mid │ │ ├── mus_route104.mid │ │ ├── mus_route110.mid │ │ ├── mus_route111.mid │ │ ├── mus_route113.mid │ │ ├── mus_route119.mid │ │ ├── mus_route120.mid │ │ ├── mus_route122.mid │ │ ├── mus_rustboro.mid │ │ ├── mus_safari_zone.mid │ │ ├── mus_sailing.mid │ │ ├── mus_school.mid │ │ ├── mus_sealed_chamber.mid │ │ ├── mus_slateport.mid │ │ ├── mus_slots_jackpot.mid │ │ ├── mus_slots_win.mid │ │ ├── mus_sootopolis.mid │ │ ├── mus_surf.mid │ │ ├── mus_title.mid │ │ ├── mus_too_bad.mid │ │ ├── mus_trick_house.mid │ │ ├── mus_underwater.mid │ │ ├── mus_verdanturf.mid │ │ ├── mus_victory_aqua_magma.mid │ │ ├── mus_victory_gym_leader.mid │ │ ├── mus_victory_league.mid │ │ ├── mus_victory_road.mid │ │ ├── mus_victory_trainer.mid │ │ ├── mus_victory_wild.mid │ │ ├── mus_vs_aqua_magma.mid │ │ ├── mus_vs_aqua_magma_leader.mid │ │ ├── mus_vs_champion.mid │ │ ├── mus_vs_elite_four.mid │ │ ├── mus_vs_frontier_brain.mid │ │ ├── mus_vs_gym_leader.mid │ │ ├── mus_vs_kyogre_groudon.mid │ │ ├── mus_vs_mew.mid │ │ ├── mus_vs_rayquaza.mid │ │ ├── mus_vs_regi.mid │ │ ├── mus_vs_rival.mid │ │ ├── mus_vs_trainer.mid │ │ ├── mus_vs_wild.mid │ │ ├── mus_weather_groudon.mid │ │ ├── ph_choice_blend.mid │ │ ├── ph_choice_held.mid │ │ ├── ph_choice_solo.mid │ │ ├── ph_cloth_blend.mid │ │ ├── ph_cloth_held.mid │ │ ├── ph_cloth_solo.mid │ │ ├── ph_cure_blend.mid │ │ ├── ph_cure_held.mid │ │ ├── ph_cure_solo.mid │ │ ├── ph_dress_blend.mid │ │ ├── ph_dress_held.mid │ │ ├── ph_dress_solo.mid │ │ ├── ph_face_blend.mid │ │ ├── ph_face_held.mid │ │ ├── ph_face_solo.mid │ │ ├── ph_fleece_blend.mid │ │ ├── ph_fleece_held.mid │ │ ├── ph_fleece_solo.mid │ │ ├── ph_foot_blend.mid │ │ ├── ph_foot_held.mid │ │ ├── ph_foot_solo.mid │ │ ├── ph_goat_blend.mid │ │ ├── ph_goat_held.mid │ │ ├── ph_goat_solo.mid │ │ ├── ph_goose_blend.mid │ │ ├── ph_goose_held.mid │ │ ├── ph_goose_solo.mid │ │ ├── ph_kit_blend.mid │ │ ├── ph_kit_held.mid │ │ ├── ph_kit_solo.mid │ │ ├── ph_lot_blend.mid │ │ ├── ph_lot_held.mid │ │ ├── ph_lot_solo.mid │ │ ├── ph_mouth_blend.mid │ │ ├── ph_mouth_held.mid │ │ ├── ph_mouth_solo.mid │ │ ├── ph_nurse_blend.mid │ │ ├── ph_nurse_held.mid │ │ ├── ph_nurse_solo.mid │ │ ├── ph_price_blend.mid │ │ ├── ph_price_held.mid │ │ ├── ph_price_solo.mid │ │ ├── ph_strut_blend.mid │ │ ├── ph_strut_held.mid │ │ ├── ph_strut_solo.mid │ │ ├── ph_thought_blend.mid │ │ ├── ph_thought_held.mid │ │ ├── ph_thought_solo.mid │ │ ├── ph_trap_blend.mid │ │ ├── ph_trap_held.mid │ │ ├── ph_trap_solo.mid │ │ ├── se_a.mid │ │ ├── se_applause.mid │ │ ├── se_arena_timeup1.mid │ │ ├── se_arena_timeup2.mid │ │ ├── se_ball.mid │ │ ├── se_ball_bounce_1.mid │ │ ├── se_ball_bounce_2.mid │ │ ├── se_ball_bounce_3.mid │ │ ├── se_ball_bounce_4.mid │ │ ├── se_ball_open.mid │ │ ├── se_ball_throw.mid │ │ ├── se_ball_trade.mid │ │ ├── se_ball_tray_ball.mid │ │ ├── se_ball_tray_enter.mid │ │ ├── se_ball_tray_exit.mid │ │ ├── se_balloon_blue.mid │ │ ├── se_balloon_red.mid │ │ ├── se_balloon_yellow.mid │ │ ├── se_bang.mid │ │ ├── se_berry_blender.mid │ │ ├── se_bike_bell.mid │ │ ├── se_bike_hop.mid │ │ ├── se_boo.mid │ │ ├── se_breakable_door.mid │ │ ├── se_bridge_walk.mid │ │ ├── se_card.mid │ │ ├── se_click.mid │ │ ├── se_contest_condition_lose.mid │ │ ├── se_contest_curtain_fall.mid │ │ ├── se_contest_curtain_rise.mid │ │ ├── se_contest_heart.mid │ │ ├── se_contest_icon_change.mid │ │ ├── se_contest_icon_clear.mid │ │ ├── se_contest_mons_turn.mid │ │ ├── se_contest_place.mid │ │ ├── se_dex_search.mid │ │ ├── se_ding_dong.mid │ │ ├── se_door.mid │ │ ├── se_downpour.mid │ │ ├── se_downpour_stop.mid │ │ ├── se_e.mid │ │ ├── se_effective.mid │ │ ├── se_egg_hatch.mid │ │ ├── se_elevator.mid │ │ ├── se_escalator.mid │ │ ├── se_exit.mid │ │ ├── se_exp.mid │ │ ├── se_exp_max.mid │ │ ├── se_failure.mid │ │ ├── se_faint.mid │ │ ├── se_fall.mid │ │ ├── se_field_poison.mid │ │ ├── se_flee.mid │ │ ├── se_fu_zaku.mid │ │ ├── se_glass_flute.mid │ │ ├── se_i.mid │ │ ├── se_ice_break.mid │ │ ├── se_ice_crack.mid │ │ ├── se_ice_stairs.mid │ │ ├── se_intro_blast.mid │ │ ├── se_itemfinder.mid │ │ ├── se_lavaridge_fall_warp.mid │ │ ├── se_ledge.mid │ │ ├── se_low_health.mid │ │ ├── se_m_bind.mid │ │ ├── se_m_comet_punch.mid │ │ ├── se_m_cut.mid │ │ ├── se_m_double_slap.mid │ │ ├── se_m_fire_punch.mid │ │ ├── se_m_fly.mid │ │ ├── se_m_gust.mid │ │ ├── se_m_gust2.mid │ │ ├── se_m_headbutt.mid │ │ ├── se_m_horn_attack.mid │ │ ├── se_m_jump_kick.mid │ │ ├── se_m_leer.mid │ │ ├── se_m_mega_kick.mid │ │ ├── se_m_mega_kick2.mid │ │ ├── se_m_pay_day.mid │ │ ├── se_m_razor_wind.mid │ │ ├── se_m_razor_wind2.mid │ │ ├── se_m_sand_attack.mid │ │ ├── se_m_scratch.mid │ │ ├── se_m_swords_dance.mid │ │ ├── se_m_tail_whip.mid │ │ ├── se_m_take_down.mid │ │ ├── se_m_vicegrip.mid │ │ ├── se_m_wing_attack.mid │ │ ├── se_mud_ball.mid │ │ ├── se_mugshot.mid │ │ ├── se_n.mid │ │ ├── se_not_effective.mid │ │ ├── se_note_a.mid │ │ ├── se_note_b.mid │ │ ├── se_note_c.mid │ │ ├── se_note_c_high.mid │ │ ├── se_note_d.mid │ │ ├── se_note_e.mid │ │ ├── se_note_f.mid │ │ ├── se_note_g.mid │ │ ├── se_o.mid │ │ ├── se_orb.mid │ │ ├── se_pc_login.mid │ │ ├── se_pc_off.mid │ │ ├── se_pc_on.mid │ │ ├── se_pike_curtain_close.mid │ │ ├── se_pike_curtain_open.mid │ │ ├── se_pin.mid │ │ ├── se_pokenav_call.mid │ │ ├── se_pokenav_hang_up.mid │ │ ├── se_pokenav_off.mid │ │ ├── se_pokenav_on.mid │ │ ├── se_puddle.mid │ │ ├── se_rain.mid │ │ ├── se_rain_stop.mid │ │ ├── se_repel.mid │ │ ├── se_rg_bag_cursor.mid │ │ ├── se_rg_bag_pocket.mid │ │ ├── se_rg_ball_click.mid │ │ ├── se_rg_card_flip.mid │ │ ├── se_rg_card_flipping.mid │ │ ├── se_rg_card_open.mid │ │ ├── se_rg_deoxys_move.mid │ │ ├── se_rg_door.mid │ │ ├── se_rg_help_close.mid │ │ ├── se_rg_help_error.mid │ │ ├── se_rg_help_open.mid │ │ ├── se_rg_poke_jump_failure.mid │ │ ├── se_rg_poke_jump_success.mid │ │ ├── se_rg_shop.mid │ │ ├── se_rg_ss_anne_horn.mid │ │ ├── se_rotating_gate.mid │ │ ├── se_roulette_ball.mid │ │ ├── se_roulette_ball2.mid │ │ ├── se_save.mid │ │ ├── se_select.mid │ │ ├── se_shiny.mid │ │ ├── se_ship.mid │ │ ├── se_shop.mid │ │ ├── se_sliding_door.mid │ │ ├── se_success.mid │ │ ├── se_sudowoodo_shake.mid │ │ ├── se_super_effective.mid │ │ ├── se_switch.mid │ │ ├── se_taillow_wing_flap.mid │ │ ├── se_thunder.mid │ │ ├── se_thunder2.mid │ │ ├── se_thunderstorm.mid │ │ ├── se_thunderstorm_stop.mid │ │ ├── se_truck_door.mid │ │ ├── se_truck_move.mid │ │ ├── se_truck_stop.mid │ │ ├── se_truck_unload.mid │ │ ├── se_u.mid │ │ ├── se_unlock.mid │ │ ├── se_use_item.mid │ │ ├── se_vend.mid │ │ ├── se_warp_in.mid │ │ └── se_warp_out.mid │ ├── se_dex_page.s │ ├── se_dex_scroll.s │ ├── se_m_absorb.s │ ├── se_m_absorb_2.s │ ├── se_m_acid_armor.s │ ├── se_m_attract.s │ ├── se_m_attract2.s │ ├── se_m_barrier.s │ ├── se_m_baton_pass.s │ ├── se_m_belly_drum.s │ ├── se_m_bite.s │ ├── se_m_blizzard.s │ ├── se_m_blizzard2.s │ ├── se_m_bonemerang.s │ ├── se_m_brick_break.s │ ├── se_m_bubble.s │ ├── se_m_bubble2.s │ ├── se_m_bubble3.s │ ├── se_m_bubble_beam.s │ ├── se_m_bubble_beam2.s │ ├── se_m_charge.s │ ├── se_m_charm.s │ ├── se_m_confuse_ray.s │ ├── se_m_cosmic_power.s │ ├── se_m_crabhammer.s │ ├── se_m_detect.s │ ├── se_m_dig.s │ ├── se_m_dive.s │ ├── se_m_dizzy_punch.s │ ├── se_m_double_team.s │ ├── se_m_dragon_rage.s │ ├── se_m_earthquake.s │ ├── se_m_ember.s │ ├── se_m_encore.s │ ├── se_m_encore2.s │ ├── se_m_explosion.s │ ├── se_m_faint_attack.s │ ├── se_m_flame_wheel.s │ ├── se_m_flame_wheel2.s │ ├── se_m_flamethrower.s │ ├── se_m_flatter.s │ ├── se_m_giga_drain.s │ ├── se_m_grasswhistle.s │ ├── se_m_hail.s │ ├── se_m_harden.s │ ├── se_m_haze.s │ ├── se_m_heal_bell.s │ ├── se_m_heat_wave.s │ ├── se_m_hydro_pump.s │ ├── se_m_hyper_beam.s │ ├── se_m_hyper_beam2.s │ ├── se_m_icy_wind.s │ ├── se_m_lick.s │ ├── se_m_lock_on.s │ ├── se_m_metronome.s │ ├── se_m_milk_drink.s │ ├── se_m_minimize.s │ ├── se_m_mist.s │ ├── se_m_moonlight.s │ ├── se_m_morning_sun.s │ ├── se_m_nightmare.s │ ├── se_m_perish_song.s │ ├── se_m_petal_dance.s │ ├── se_m_poison_powder.s │ ├── se_m_psybeam.s │ ├── se_m_psybeam2.s │ ├── se_m_rain_dance.s │ ├── se_m_reflect.s │ ├── se_m_reversal.s │ ├── se_m_rock_throw.s │ ├── se_m_sacred_fire.s │ ├── se_m_sacred_fire2.s │ ├── se_m_sand_tomb.s │ ├── se_m_sandstorm.s │ ├── se_m_screech.s │ ├── se_m_self_destruct.s │ ├── se_m_sing.s │ ├── se_m_sketch.s │ ├── se_m_sky_uppercut.s │ ├── se_m_snore.s │ ├── se_m_solar_beam.s │ ├── se_m_spit_up.s │ ├── se_m_stat_decrease.s │ ├── se_m_stat_increase.s │ ├── se_m_strength.s │ ├── se_m_string_shot.s │ ├── se_m_string_shot2.s │ ├── se_m_supersonic.s │ ├── se_m_surf.s │ ├── se_m_swagger.s │ ├── se_m_swagger2.s │ ├── se_m_sweet_scent.s │ ├── se_m_swift.s │ ├── se_m_teeter_dance.s │ ├── se_m_teleport.s │ ├── se_m_thunder_wave.s │ ├── se_m_thunderbolt.s │ ├── se_m_thunderbolt2.s │ ├── se_m_toxic.s │ ├── se_m_tri_attack.s │ ├── se_m_tri_attack2.s │ ├── se_m_twister.s │ ├── se_m_uproar.s │ ├── se_m_vital_throw.s │ ├── se_m_vital_throw2.s │ ├── se_m_waterfall.s │ ├── se_m_whirlpool.s │ ├── se_m_yawn.s │ ├── se_wall_hit.s │ └── se_win_open.s ├── voice_groups.inc └── voicegroups │ ├── voicegroup000.inc │ ├── voicegroup001.inc │ ├── voicegroup002.inc │ ├── voicegroup003.inc │ ├── voicegroup004.inc │ ├── voicegroup005.inc │ ├── voicegroup006.inc │ ├── voicegroup007.inc │ ├── voicegroup008.inc │ ├── voicegroup009.inc │ ├── voicegroup010.inc │ ├── voicegroup011.inc │ ├── voicegroup012.inc │ ├── voicegroup013.inc │ ├── voicegroup014.inc │ ├── voicegroup015.inc │ ├── voicegroup016.inc │ ├── voicegroup017.inc │ ├── voicegroup018.inc │ ├── voicegroup019.inc │ ├── voicegroup020.inc │ ├── voicegroup021.inc │ ├── voicegroup022.inc │ ├── voicegroup023.inc │ ├── voicegroup024.inc │ ├── voicegroup025.inc │ ├── voicegroup026.inc │ ├── voicegroup027.inc │ ├── voicegroup028.inc │ ├── voicegroup029.inc │ ├── voicegroup030.inc │ ├── voicegroup031.inc │ ├── voicegroup032.inc │ ├── voicegroup033.inc │ ├── voicegroup034.inc │ ├── voicegroup035.inc │ ├── voicegroup036.inc │ ├── voicegroup037.inc │ ├── voicegroup038.inc │ ├── voicegroup039.inc │ ├── voicegroup040.inc │ ├── voicegroup041.inc │ ├── voicegroup042.inc │ ├── voicegroup043.inc │ ├── voicegroup044.inc │ ├── voicegroup045.inc │ ├── voicegroup046.inc │ ├── voicegroup047.inc │ ├── voicegroup048.inc │ ├── voicegroup049.inc │ ├── voicegroup050.inc │ ├── voicegroup051.inc │ ├── voicegroup052.inc │ ├── voicegroup053.inc │ ├── voicegroup054.inc │ ├── voicegroup055.inc │ ├── voicegroup056.inc │ ├── voicegroup057.inc │ ├── voicegroup058.inc │ ├── voicegroup059.inc │ ├── voicegroup060.inc │ ├── voicegroup061.inc │ ├── voicegroup062.inc │ ├── voicegroup063.inc │ ├── voicegroup064.inc │ ├── voicegroup065.inc │ ├── voicegroup066.inc │ ├── voicegroup067.inc │ ├── voicegroup068.inc │ ├── voicegroup069.inc │ ├── voicegroup070.inc │ ├── voicegroup071.inc │ ├── voicegroup072.inc │ ├── voicegroup073.inc │ ├── voicegroup074.inc │ ├── voicegroup075.inc │ ├── voicegroup076.inc │ ├── voicegroup077.inc │ ├── voicegroup078.inc │ ├── voicegroup079.inc │ ├── voicegroup080.inc │ ├── voicegroup081.inc │ ├── voicegroup082.inc │ ├── voicegroup083.inc │ ├── voicegroup084.inc │ ├── voicegroup085.inc │ ├── voicegroup086.inc │ ├── voicegroup087.inc │ ├── voicegroup088.inc │ ├── voicegroup089.inc │ ├── voicegroup090.inc │ ├── voicegroup091.inc │ ├── voicegroup092.inc │ ├── voicegroup093.inc │ ├── voicegroup094.inc │ ├── voicegroup095.inc │ ├── voicegroup096.inc │ ├── voicegroup097.inc │ ├── voicegroup098.inc │ ├── voicegroup099.inc │ ├── voicegroup100.inc │ ├── voicegroup101.inc │ ├── voicegroup102.inc │ ├── voicegroup103.inc │ ├── voicegroup104.inc │ ├── voicegroup105.inc │ ├── voicegroup106.inc │ ├── voicegroup107.inc │ ├── voicegroup108.inc │ ├── voicegroup109.inc │ ├── voicegroup110.inc │ ├── voicegroup111.inc │ ├── voicegroup112.inc │ ├── voicegroup113.inc │ ├── voicegroup114.inc │ ├── voicegroup115.inc │ ├── voicegroup116.inc │ ├── voicegroup117.inc │ ├── voicegroup118.inc │ ├── voicegroup119.inc │ ├── voicegroup120.inc │ ├── voicegroup121.inc │ ├── voicegroup122.inc │ ├── voicegroup123.inc │ ├── voicegroup124.inc │ ├── voicegroup125.inc │ ├── voicegroup126.inc │ ├── voicegroup127.inc │ ├── voicegroup128.inc │ ├── voicegroup129.inc │ ├── voicegroup130.inc │ ├── voicegroup131.inc │ ├── voicegroup132.inc │ ├── voicegroup133.inc │ ├── voicegroup134.inc │ ├── voicegroup135.inc │ ├── voicegroup136.inc │ ├── voicegroup137.inc │ ├── voicegroup138.inc │ ├── voicegroup139.inc │ ├── voicegroup140.inc │ ├── voicegroup141.inc │ ├── voicegroup142.inc │ ├── voicegroup143.inc │ ├── voicegroup144.inc │ ├── voicegroup145.inc │ ├── voicegroup146.inc │ ├── voicegroup147.inc │ ├── voicegroup148.inc │ ├── voicegroup149.inc │ ├── voicegroup150.inc │ ├── voicegroup151.inc │ ├── voicegroup152.inc │ ├── voicegroup153.inc │ ├── voicegroup154.inc │ ├── voicegroup155.inc │ ├── voicegroup156.inc │ ├── voicegroup157.inc │ ├── voicegroup158.inc │ ├── voicegroup159.inc │ ├── voicegroup160.inc │ ├── voicegroup161.inc │ ├── voicegroup162.inc │ ├── voicegroup163.inc │ ├── voicegroup164.inc │ ├── voicegroup165.inc │ ├── voicegroup166.inc │ ├── voicegroup167.inc │ ├── voicegroup168.inc │ ├── voicegroup169.inc │ ├── voicegroup170.inc │ ├── voicegroup171.inc │ ├── voicegroup172.inc │ ├── voicegroup173.inc │ ├── voicegroup174.inc │ ├── voicegroup175.inc │ ├── voicegroup176.inc │ ├── voicegroup177.inc │ ├── voicegroup178.inc │ ├── voicegroup179.inc │ ├── voicegroup180.inc │ ├── voicegroup181.inc │ ├── voicegroup182.inc │ ├── voicegroup183.inc │ ├── voicegroup184.inc │ ├── voicegroup185.inc │ ├── voicegroup186.inc │ ├── voicegroup187.inc │ ├── voicegroup188.inc │ ├── voicegroup189.inc │ └── voicegroup190.inc ├── spritesheet_rules.mk ├── src ├── AgbRfu_LinkManager.c ├── agb_flash.c ├── agb_flash_1m.c ├── agb_flash_le.c ├── agb_flash_mx.c ├── anim_mon_front_pics.c ├── apprentice.c ├── bard_music.c ├── battle_ai_main.c ├── battle_ai_switch_items.c ├── battle_ai_util.c ├── battle_anim.c ├── battle_anim_bug.c ├── battle_anim_dark.c ├── battle_anim_dragon.c ├── battle_anim_effects_1.c ├── battle_anim_effects_2.c ├── battle_anim_effects_3.c ├── battle_anim_electric.c ├── battle_anim_fight.c ├── battle_anim_fire.c ├── battle_anim_flying.c ├── battle_anim_ghost.c ├── battle_anim_ground.c ├── battle_anim_ice.c ├── battle_anim_mon_movement.c ├── battle_anim_mons.c ├── battle_anim_new.c ├── battle_anim_normal.c ├── battle_anim_poison.c ├── battle_anim_psychic.c ├── battle_anim_rock.c ├── battle_anim_smokescreen.c ├── battle_anim_sound_tasks.c ├── battle_anim_status_effects.c ├── battle_anim_throw.c ├── battle_anim_utility_funcs.c ├── battle_anim_water.c ├── battle_arena.c ├── battle_bg.c ├── battle_controller_link_opponent.c ├── battle_controller_link_partner.c ├── battle_controller_opponent.c ├── battle_controller_player.c ├── battle_controller_player_partner.c ├── battle_controller_recorded_opponent.c ├── battle_controller_recorded_player.c ├── battle_controller_safari.c ├── battle_controller_wally.c ├── battle_controllers.c ├── battle_debug.c ├── battle_dome.c ├── battle_factory.c ├── battle_factory_screen.c ├── battle_gfx_sfx_util.c ├── battle_interface.c ├── battle_intro.c ├── battle_main.c ├── battle_message.c ├── battle_palace.c ├── battle_pike.c ├── battle_pyramid.c ├── battle_pyramid_bag.c ├── battle_records.c ├── battle_script_commands.c ├── battle_setup.c ├── battle_tent.c ├── battle_tower.c ├── battle_transition.c ├── battle_transition_frontier.c ├── battle_tv.c ├── battle_util.c ├── battle_util2.c ├── battle_z_move.c ├── berry.c ├── berry_blender.c ├── berry_crush.c ├── berry_fix_graphics.c ├── berry_fix_program.c ├── berry_powder.c ├── berry_tag_screen.c ├── bike.c ├── birch_pc.c ├── braille.c ├── braille_puzzles.c ├── cable_car.c ├── cable_club.c ├── clear_save_data_screen.c ├── clock.c ├── coins.c ├── confetti_util.c ├── contest.c ├── contest_ai.c ├── contest_effect.c ├── contest_link.c ├── contest_link_util.c ├── contest_painting.c ├── contest_util.c ├── coord_event_weather.c ├── credits.c ├── crt0.s ├── data.c ├── data │ ├── .gitignore │ ├── bard_music │ │ ├── actions.h │ │ ├── adjectives.h │ │ ├── bard_sounds.h │ │ ├── battle.h │ │ ├── conditions.h │ │ ├── default_sound.h │ │ ├── endings.h │ │ ├── events.h │ │ ├── feelings.h │ │ ├── greetings.h │ │ ├── hobbies.h │ │ ├── length_table.h │ │ ├── lifestyle.h │ │ ├── misc.h │ │ ├── moves.h │ │ ├── people.h │ │ ├── pokemon.h │ │ ├── speech.h │ │ ├── status.h │ │ ├── time.h │ │ ├── trainer.h │ │ ├── trendysaying.h │ │ ├── voices.h │ │ └── word_pitch.h │ ├── battle_anim.h │ ├── battle_frontier │ │ ├── apprentice.h │ │ ├── battle_frontier_exchange_corner.h │ │ ├── battle_frontier_mons.h │ │ ├── battle_frontier_trainer_mons.h │ │ ├── battle_frontier_trainers.h │ │ ├── battle_pyramid_level_50_wild_mons.h │ │ ├── battle_pyramid_open_level_wild_mons.h │ │ ├── battle_tent.h │ │ └── trainer_hill.h │ ├── battle_moves.h │ ├── contest_moves.h │ ├── contest_opponents.h │ ├── contest_text_tables.h │ ├── credits.h │ ├── decoration │ │ ├── description.h │ │ ├── header.h │ │ ├── icon.h │ │ ├── tilemaps.h │ │ └── tiles.h │ ├── easy_chat │ │ ├── easy_chat_group_actions.h │ │ ├── easy_chat_group_adjectives.h │ │ ├── easy_chat_group_battle.h │ │ ├── easy_chat_group_conditions.h │ │ ├── easy_chat_group_endings.h │ │ ├── easy_chat_group_events.h │ │ ├── easy_chat_group_feelings.h │ │ ├── easy_chat_group_greetings.h │ │ ├── easy_chat_group_hobbies.h │ │ ├── easy_chat_group_lifestyle.h │ │ ├── easy_chat_group_misc.h │ │ ├── easy_chat_group_move_1.h │ │ ├── easy_chat_group_move_2.h │ │ ├── easy_chat_group_people.h │ │ ├── easy_chat_group_pokemon.h │ │ ├── easy_chat_group_pokemon2.h │ │ ├── easy_chat_group_speech.h │ │ ├── easy_chat_group_status.h │ │ ├── easy_chat_group_time.h │ │ ├── easy_chat_group_trainer.h │ │ ├── easy_chat_group_trendy_saying.h │ │ ├── easy_chat_group_voices.h │ │ ├── easy_chat_groups.h │ │ └── easy_chat_words_by_letter.h │ ├── field_effects │ │ ├── field_effect_object_template_pointers.h │ │ └── field_effect_objects.h │ ├── graphics │ │ ├── battle_terrain.h │ │ ├── berries.h │ │ ├── berry_fix.h │ │ ├── decorations.h │ │ ├── intro_scene.h │ │ ├── items.h │ │ ├── mail.h │ │ ├── pokeballs.h │ │ ├── pokemon.h │ │ ├── rayquaza_scene.h │ │ ├── slot_machine.h │ │ └── trainers.h │ ├── heal_locations.h │ ├── item_icon_table.h │ ├── items.h │ ├── lilycove_lady.h │ ├── object_events │ │ ├── base_oam.h │ │ ├── berry_tree_graphics_tables.h │ │ ├── movement_action_func_tables.h │ │ ├── movement_type_func_tables.h │ │ ├── object_event_anims.h │ │ ├── object_event_graphics.h │ │ ├── object_event_graphics_info.h │ │ ├── object_event_graphics_info_followers.h │ │ ├── object_event_graphics_info_pointers.h │ │ ├── object_event_pic_tables.h │ │ ├── object_event_subsprites.h │ │ ├── surfable_pokemon.h │ │ ├── surfable_pokemon_graphics.h │ │ ├── surfable_pokemon_pic_tables.h │ │ └── surfable_pokemon_templates.h │ ├── party_menu.h │ ├── pointillism_points.h │ ├── pokedex_area_glow.h │ ├── pokemon │ │ ├── base_stats.h │ │ ├── cry_ids.h │ │ ├── egg_moves.h │ │ ├── evolution.h │ │ ├── experience_tables.h │ │ ├── form_species_table_pointers.h │ │ ├── form_species_tables.h │ │ ├── item_effects.h │ │ ├── level_up_learnset_pointers.h │ │ ├── level_up_learnsets.h │ │ ├── pokedex_entries.h │ │ ├── pokedex_orders.h │ │ ├── pokedex_text.h │ │ ├── tmhm_learnsets.h │ │ ├── trainer_class_lookups.h │ │ └── tutor_learnsets.h │ ├── pokemon_graphics │ │ ├── back_pic_coordinates.h │ │ ├── back_pic_table.h │ │ ├── enemy_mon_elevation.h │ │ ├── footprint_table.h │ │ ├── front_pic_anims.h │ │ ├── front_pic_coordinates.h │ │ ├── front_pic_table.h │ │ ├── palette_table.h │ │ ├── shiny_palette_table.h │ │ ├── still_front_pic_table.h │ │ ├── unknown_anims.h │ │ └── unknown_table.h │ ├── region_map │ │ ├── city_map_entries.h │ │ ├── city_map_tilemaps.h │ │ └── region_map_entries.h │ ├── script_menu.h │ ├── text │ │ ├── abilities.h │ │ ├── characteristics.h │ │ ├── follower_messages.h │ │ ├── gift_ribbon_descriptions.h │ │ ├── item_descriptions.h │ │ ├── match_call_messages.h │ │ ├── met_locations.h │ │ ├── move_descriptions.h │ │ ├── move_names.h │ │ ├── nature_names.h │ │ ├── ribbon_descriptions.h │ │ ├── species_names.h │ │ └── trainer_class_names.h │ ├── trade.h │ ├── trainer_graphics │ │ ├── back_pic_anims.h │ │ ├── back_pic_tables.h │ │ ├── front_pic_anims.h │ │ └── front_pic_tables.h │ ├── trainer_parties.h │ ├── trainers.h │ ├── union_room.h │ ├── wallpapers.h │ ├── wild_encounters.json │ └── wild_encounters.json.txt ├── daycare.c ├── debug.c ├── decompress.c ├── decoration.c ├── decoration_inventory.c ├── dewford_trend.c ├── dexnav.c ├── digit_obj_util.c ├── diploma.c ├── dodrio_berry_picking.c ├── dynamic_placeholder_text_util.c ├── easy_chat.c ├── egg_hatch.c ├── ereader_helpers.c ├── ereader_screen.c ├── event_data.c ├── event_object_lock.c ├── event_object_movement.c ├── evolution_graphics.c ├── evolution_scene.c ├── faraway_island.c ├── field_camera.c ├── field_control_avatar.c ├── field_door.c ├── field_effect.c ├── field_effect_helpers.c ├── field_message_box.c ├── field_player_avatar.c ├── field_poison.c ├── field_region_map.c ├── field_screen_effect.c ├── field_special_scene.c ├── field_specials.c ├── field_tasks.c ├── field_weather.c ├── field_weather_effect.c ├── fieldmap.c ├── fldeff_cut.c ├── fldeff_dig.c ├── fldeff_escalator.c ├── fldeff_flash.c ├── fldeff_misc.c ├── fldeff_rocksmash.c ├── fldeff_softboiled.c ├── fldeff_strength.c ├── fldeff_sweetscent.c ├── fldeff_teleport.c ├── fonts.c ├── frontier_pass.c ├── frontier_util.c ├── graphics.c ├── gym_leader_rematch.c ├── hall_of_fame.c ├── heal_location.c ├── hof_pc.c ├── image_processing_effects.c ├── international_string_util.c ├── intro.c ├── intro_credits_graphics.c ├── item.c ├── item_icon.c ├── item_menu.c ├── item_menu_icons.c ├── item_use.c ├── landmark.c ├── libgcnmultiboot.s ├── libisagbprn.c ├── librfu_intr.c ├── librfu_rfu.c ├── librfu_sio32id.c ├── librfu_stwi.c ├── lilycove_lady.c ├── link.c ├── link_rfu_2.c ├── link_rfu_3.c ├── list_menu.c ├── load_save.c ├── lottery_corner.c ├── m4a.c ├── m4a_1.s ├── m4a_tables.c ├── mail.c ├── mail_data.c ├── main.c ├── main_menu.c ├── map_name_popup.c ├── match_call.c ├── math_util.c ├── mauville_old_man.c ├── menu.c ├── menu_helpers.c ├── menu_specialized.c ├── metatile_behavior.c ├── minigame_countdown.c ├── mirage_tower.c ├── mon_markings.c ├── money.c ├── move_relearner.c ├── multiboot.c ├── mystery_event_menu.c ├── mystery_event_msg.c ├── mystery_event_script.c ├── mystery_gift.c ├── mystery_gift_client.c ├── mystery_gift_link.c ├── mystery_gift_menu.c ├── mystery_gift_scripts.c ├── mystery_gift_server.c ├── mystery_gift_view.c ├── naming_screen.c ├── new_game.c ├── option_menu.c ├── overworld.c ├── palette.c ├── palette_util.c ├── party_menu.c ├── play_time.c ├── player_pc.c ├── pokeball.c ├── pokeblock.c ├── pokeblock_feed.c ├── pokedex.c ├── pokedex_area_region_map.c ├── pokedex_area_screen.c ├── pokedex_cry_screen.c ├── pokemon.c ├── pokemon_animation.c ├── pokemon_icon.c ├── pokemon_jump.c ├── pokemon_size_record.c ├── pokemon_storage_system.c ├── pokemon_summary_screen.c ├── pokenav.c ├── pokenav_conditions.c ├── pokenav_conditions_gfx.c ├── pokenav_conditions_search_results.c ├── pokenav_list.c ├── pokenav_main_menu.c ├── pokenav_match_call_data.c ├── pokenav_match_call_gfx.c ├── pokenav_match_call_list.c ├── pokenav_menu_handler.c ├── pokenav_menu_handler_gfx.c ├── pokenav_region_map.c ├── pokenav_ribbons_list.c ├── pokenav_ribbons_summary.c ├── post_battle_event_funcs.c ├── random.c ├── rayquaza_scene.c ├── record_mixing.c ├── recorded_battle.c ├── region_map.c ├── reload_save.c ├── reset_rtc_screen.c ├── reshow_battle_screen.c ├── roamer.c ├── rom_header.s ├── rom_header_gf.c ├── rotating_gate.c ├── rotating_tile_puzzle.c ├── roulette.c ├── rtc.c ├── safari_zone.c ├── save.c ├── save_failed_screen.c ├── save_location.c ├── scanline_effect.c ├── scrcmd.c ├── script.c ├── script_menu.c ├── script_movement.c ├── script_pokemon_util.c ├── secret_base.c ├── shop.c ├── siirtc.c ├── slot_machine.c ├── sound.c ├── ss_anne.c ├── start_menu.c ├── starter_choose.c ├── strings.c ├── surfable_pokemon.c ├── task.c ├── text_input_strings.c ├── text_window.c ├── tileset_anims.c ├── time_events.c ├── title_screen.c ├── trade.c ├── trader.c ├── trainer_card.c ├── trainer_hill.c ├── trainer_pokemon_sprites.c ├── trainer_see.c ├── trig.c ├── tv.c ├── union_room.c ├── union_room_battle.c ├── union_room_chat.c ├── union_room_player_avatar.c ├── use_pokeblock.c ├── util.c ├── walda_phrase.c ├── wallclock.c ├── wild_encounter.c ├── wireless_communication_status_screen.c └── wonder_news.c ├── sym_bss.txt ├── sym_common.txt ├── sym_ewram.txt └── tools ├── aif2pcm ├── .gitignore ├── LICENSE ├── Makefile ├── extended.c └── main.c ├── bin2c ├── .gitignore ├── LICENSE ├── Makefile └── bin2c.c ├── gbafix ├── .gitignore ├── COPYING ├── Makefile ├── elf.h └── gbafix.c ├── gbagfx ├── .gitignore ├── LICENSE ├── Makefile ├── convert_png.c ├── convert_png.h ├── font.c ├── font.h ├── gfx.c ├── gfx.h ├── global.h ├── huff.c ├── huff.h ├── jasc_pal.c ├── jasc_pal.h ├── lz.c ├── lz.h ├── main.c ├── options.h ├── rl.c ├── rl.h ├── util.c └── util.h ├── jsonproc ├── .gitignore ├── Makefile ├── inja.hpp ├── jsonproc.cpp ├── jsonproc.h └── nlohmann │ └── json.hpp ├── mapjson ├── .gitignore ├── Makefile ├── json11.cpp ├── json11.h ├── mapjson.cpp └── mapjson.h ├── mid2agb ├── .gitignore ├── LICENSE ├── Makefile ├── agb.cpp ├── agb.h ├── error.cpp ├── error.h ├── main.cpp ├── main.h ├── midi.cpp ├── midi.h ├── tables.cpp └── tables.h ├── preproc ├── .gitignore ├── LICENSE ├── Makefile ├── asm_file.cpp ├── asm_file.h ├── c_file.cpp ├── c_file.h ├── char_util.h ├── charmap.cpp ├── charmap.h ├── preproc.cpp ├── preproc.h ├── string_parser.cpp ├── string_parser.h ├── utf8.cpp └── utf8.h ├── ramscrgen ├── .gitignore ├── LICENSE ├── Makefile ├── char_util.h ├── elf.cpp ├── elf.h ├── main.cpp ├── ramscrgen.h ├── sym_file.cpp └── sym_file.h ├── rsfont ├── .gitignore ├── LICENSE ├── Makefile ├── convert_png.c ├── convert_png.h ├── font.c ├── font.h ├── gfx.h ├── global.h ├── main.c ├── util.c └── util.h └── scaninc ├── .gitignore ├── LICENSE ├── Makefile ├── asm_file.cpp ├── asm_file.h ├── c_file.cpp ├── c_file.h ├── scaninc.cpp ├── scaninc.h ├── source_file.cpp └── source_file.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/README.md -------------------------------------------------------------------------------- /asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/asm/macros.inc -------------------------------------------------------------------------------- /asm/macros/asm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/asm/macros/asm.inc -------------------------------------------------------------------------------- /asm/macros/event.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/asm/macros/event.inc -------------------------------------------------------------------------------- /asm/macros/m4a.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/asm/macros/m4a.inc -------------------------------------------------------------------------------- /asm/macros/map.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/asm/macros/map.inc -------------------------------------------------------------------------------- /asmdiff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/asmdiff.ps1 -------------------------------------------------------------------------------- /asmdiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/asmdiff.sh -------------------------------------------------------------------------------- /charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/charmap.txt -------------------------------------------------------------------------------- /common_syms/AgbRfu_LinkManager.txt: -------------------------------------------------------------------------------- 1 | lman 2 | -------------------------------------------------------------------------------- /common_syms/battle_factory_screen.txt: -------------------------------------------------------------------------------- 1 | gFactorySelect_CurrentOptionFunc 2 | -------------------------------------------------------------------------------- /common_syms/battle_tower.txt: -------------------------------------------------------------------------------- 1 | gFrontierTempParty 2 | -------------------------------------------------------------------------------- /common_syms/berry_blender.txt: -------------------------------------------------------------------------------- 1 | gInGameOpponentsNo 2 | -------------------------------------------------------------------------------- /common_syms/bg.txt: -------------------------------------------------------------------------------- 1 | gWindowTileAutoAllocEnabled 2 | -------------------------------------------------------------------------------- /common_syms/contest.txt: -------------------------------------------------------------------------------- 1 | gContestRngValue 2 | -------------------------------------------------------------------------------- /common_syms/ereader_screen.txt: -------------------------------------------------------------------------------- 1 | gEReaderData 2 | -------------------------------------------------------------------------------- /common_syms/evolution_scene.txt: -------------------------------------------------------------------------------- 1 | gCB2_AfterEvolution 2 | -------------------------------------------------------------------------------- /common_syms/field_control_avatar.txt: -------------------------------------------------------------------------------- 1 | gSelectedObjectEvent 2 | -------------------------------------------------------------------------------- /common_syms/field_specials.txt: -------------------------------------------------------------------------------- 1 | gScrollableMultichoice_ListMenuTemplate 2 | -------------------------------------------------------------------------------- /common_syms/fieldmap.txt: -------------------------------------------------------------------------------- 1 | gBackupMapLayout 2 | -------------------------------------------------------------------------------- /common_syms/intro.txt: -------------------------------------------------------------------------------- 1 | gIntroFrameCounter 2 | gMultibootProgramStruct 3 | -------------------------------------------------------------------------------- /common_syms/librfu_sio32id.txt: -------------------------------------------------------------------------------- 1 | gRfuSIO32Id 2 | -------------------------------------------------------------------------------- /common_syms/librfu_stwi.txt: -------------------------------------------------------------------------------- 1 | gSTWIStatus 2 | -------------------------------------------------------------------------------- /common_syms/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/common_syms/link.txt -------------------------------------------------------------------------------- /common_syms/link_rfu_2.txt: -------------------------------------------------------------------------------- 1 | gRfuAPIBuffer 2 | gRfu 3 | -------------------------------------------------------------------------------- /common_syms/m4a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/common_syms/m4a.txt -------------------------------------------------------------------------------- /common_syms/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/common_syms/main.txt -------------------------------------------------------------------------------- /common_syms/mauville_old_man.txt: -------------------------------------------------------------------------------- 1 | gBardSong 2 | -------------------------------------------------------------------------------- /common_syms/party_menu.txt: -------------------------------------------------------------------------------- 1 | gItemUseCB 2 | -------------------------------------------------------------------------------- /common_syms/pokedex_cry_screen.txt: -------------------------------------------------------------------------------- 1 | gDexCryScreenState 2 | -------------------------------------------------------------------------------- /common_syms/rtc.txt: -------------------------------------------------------------------------------- 1 | gLocalTime 2 | -------------------------------------------------------------------------------- /common_syms/save.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/common_syms/save.txt -------------------------------------------------------------------------------- /common_syms/sound.txt: -------------------------------------------------------------------------------- 1 | gDisableMusic 2 | -------------------------------------------------------------------------------- /common_syms/sprite.txt: -------------------------------------------------------------------------------- 1 | gOamMatrixAllocBitmap 2 | gReservedSpritePaletteCount 3 | -------------------------------------------------------------------------------- /common_syms/start_menu.txt: -------------------------------------------------------------------------------- 1 | gMenuCallback 2 | -------------------------------------------------------------------------------- /common_syms/task.txt: -------------------------------------------------------------------------------- 1 | gTasks 2 | -------------------------------------------------------------------------------- /common_syms/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/common_syms/text.txt -------------------------------------------------------------------------------- /common_syms/tv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/common_syms/tv.txt -------------------------------------------------------------------------------- /constants/global.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/constants/global.inc -------------------------------------------------------------------------------- /data/event_scripts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/event_scripts.s -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_CaptainsOffice/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Corridors_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Corridors_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Deck/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_HiddenFloorCorridors/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_HiddenFloorRooms/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Room_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Rooms2_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Rooms2_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Rooms_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Rooms_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Underwater1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Underwater2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AlteringCave/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_B2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_UnusedRubyMap1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_UnusedRubyMap2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_UnusedRubyMap3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ArtisanCave_1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ArtisanCave_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/BattleColosseum_2P/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/BattleColosseum_4P/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleArenaBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleArenaCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleArenaLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleDomeBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleDomeCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleDomeLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleDomePreBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleFactoryLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePalaceBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePalaceCorridor/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePalaceLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeRoomFinal/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeRoomNormal/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeRoomUnused/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeRoomWildMons/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeThreePathRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePyramidFloor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePyramidLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePyramidTop/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleTowerLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_ExchangeServiceCorner/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_Lounge1/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_Lounge2/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_OutsideEast/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_OutsideWest/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_RankingHall/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_ReceptionGate/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_ScottsHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare01/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare02/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare03/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare04/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare05/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare06/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare07/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare08/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare09/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare10/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare11/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare12/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare13/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare14/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare15/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare16/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleTentBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleTentCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleTentLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleTower_Exterior/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/BirthIsland_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/CableCarStation/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_1F/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_B1F/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_UnusedRubySapphireMap1/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_UnusedRubySapphireMap2/border.bin: -------------------------------------------------------------------------------- 1 | SfVC -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_UnusedRubySapphireMap3/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_Unused_B4F_Lava/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CeladonCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/CeladonCity_DepartmentStore_Roof/border.bin: -------------------------------------------------------------------------------- 1 | gC -------------------------------------------------------------------------------- /data/layouts/CeladonCity_House1/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/CeruleanCity/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/CeruleanCity_House3/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/CeruleanCity_House4/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/CeruleanCity_Mart/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/CinnabarIsland_Mart/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/ContestHall/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ContestHallBeauty/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ContestHallCool/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ContestHallCute/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ContestHallSmart/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ContestHallTough/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/DesertUnderpass/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/DewfordTown/border.bin: -------------------------------------------------------------------------------- 1 | sfrC -------------------------------------------------------------------------------- /data/layouts/DewfordTown_Gym/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/DewfordTown_Hall/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_ChampionsRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_DrakesRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_GlaciasRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_Hall4/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_HallOfFame/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_PhoebesRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_PokemonLeague_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_ShortHall/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_SidneysRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/FallarborTown/border.bin: -------------------------------------------------------------------------------- 1 | klst -------------------------------------------------------------------------------- /data/layouts/FallarborTown_LeftoverRSContestHall/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FallarborTown_LeftoverRSContestLobby/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FarawayIsland_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | cfbC -------------------------------------------------------------------------------- /data/layouts/FarawayIsland_Interior/border.bin: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /data/layouts/FieryPath/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/FortreeCity_DecorationShop/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FortreeCity_Gym/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/FortreeCity_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FortreeCity_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FuchsiaCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/FuchsiaCity_House1/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/FuchsiaCity_Mart/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/GraniteCave_1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/GraniteCave_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/GraniteCave_B2F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/GraniteCave_StevensRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/Harbor/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/HouseWithBed/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/IndigoPlateau_Exterior/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/InsideOfTruck/border.bin: -------------------------------------------------------------------------------- 1 | ccbC -------------------------------------------------------------------------------- /data/layouts/InsideOfTruck/map.bin: -------------------------------------------------------------------------------- 1 |   2 | 2 2 22222!"#$  -------------------------------------------------------------------------------- /data/layouts/IslandHarbor/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/JaggedPass/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown_Gym_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown_Gym_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown_HerbShop/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown_PokemonCenter_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LavenderTown/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/LavenderTown_House1/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/LavenderTown_House2/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/LavenderTown_Mart/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/LilycoveCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_ContestHall/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_ContestLobby/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_CoveLilyMotel_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_CoveLilyMotel_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStoreElevator/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStore_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStore_2F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStore_3F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStore_4F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStore_5F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_LilycoveMuseum_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_LilycoveMuseum_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_PokemonTrainerFanClub/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LittlerootTown_BrendansHouse_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LittlerootTown_ProfessorBirchsLab/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LittlerootTown_ProfessorBirchsLabWithTable/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_1F/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_2F_1R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_2F_2R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_2F_3R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_3F_1R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_3F_2R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_3F_3R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_4F/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MauvilleCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/MauvilleCity_GameCorner/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MauvilleCity_Gym/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_1F_1R/map.bin: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_1F_2R/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_B1F_1R/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_B1F_2R/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_StevensCave/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MirageTower_1F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MirageTower_2F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MirageTower_3F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MirageTower_4F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MossdeepCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_GameCorner_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_GameCorner_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_SpaceCenter_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_SpaceCenter_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_StevensHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MtChimney/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MtPyre_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_3F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_4F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_5F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_6F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | [Ȱ  -------------------------------------------------------------------------------- /data/layouts/MtPyre_Summit/border.bin: -------------------------------------------------------------------------------- 1 | [Ȱ  -------------------------------------------------------------------------------- /data/layouts/NavelRock_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NavelRock_Bottom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NavelRock_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NavelRock_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/NavelRock_Fork/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NavelRock_LadderRoom1/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NavelRock_LadderRoom2/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NewMauville_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/PacifidlogTown/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/PacifidlogTown_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/PacifidlogTown_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/PalletTown/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/PewterCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/PewterCity_House1/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/PewterCity_House2/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/PewterCity_Mart/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/PokemonTower_1F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_2F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_3F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_4F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_5F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_6F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_7F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/RecordCorner/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route1/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route10/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route104_MrBrineysHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route104_PrettyPetalFlowerShop/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route104_Prototype/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route105/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route106/border.bin: -------------------------------------------------------------------------------- 1 | sfrC -------------------------------------------------------------------------------- /data/layouts/Route107/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route108/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route109/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route109_SeashoreHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route11/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route110/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route110_SeasideCyclingRoadEntrance/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHouseCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHouseEnd/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHouseEntrance/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle1/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle2/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle3/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle4/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle5/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle6/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle7/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle8/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route111/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route111_NoMirageTower/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route112/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/Route113/border.bin: -------------------------------------------------------------------------------- 1 | mnuv -------------------------------------------------------------------------------- /data/layouts/Route114/border.bin: -------------------------------------------------------------------------------- 1 | klst -------------------------------------------------------------------------------- /data/layouts/Route114_FossilManiacsHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route114_FossilManiacsTunnel/border.bin: -------------------------------------------------------------------------------- 1 | +g*C -------------------------------------------------------------------------------- /data/layouts/Route114_LanettesHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route115/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route116_TunnelersRestHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route117_PokemonDayCare/border.bin: -------------------------------------------------------------------------------- 1 | cfbC -------------------------------------------------------------------------------- /data/layouts/Route118/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route119_WeatherInstitute_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route119_WeatherInstitute_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route121_SafariZoneEntrance/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route122/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route124/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route124_DivingTreasureHuntersHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route125/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route126/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route127/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route128/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route129/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route12_FishingHouse/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/Route130/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route130_MirageIsland/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route131/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route131_SkyPillar/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route132/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route133/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route134/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route15/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route16_House/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/Route18_EastEntrance_1F/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/Route2/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route22/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route23/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route24/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route25/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route2_House/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/Route3/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route4/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route5/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route5_SouthEntrance/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/Route6/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route6_NorthEntrance/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/Route7/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route7_EastEntrance/map.bin: -------------------------------------------------------------------------------- 1 | c4`! -------------------------------------------------------------------------------- /data/layouts/Route8/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route8_WestEntrance/map.bin: -------------------------------------------------------------------------------- 1 | c4`! -------------------------------------------------------------------------------- /data/layouts/Route9/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/RustboroCity_CuttersHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_DevonCorp_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_DevonCorp_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_DevonCorp_3F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Flat1_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Flat1_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Flat2_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Flat2_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Flat2_3F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Gym/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/RustboroCity_House/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_PokemonSchool/border.bin: -------------------------------------------------------------------------------- 1 | cgbC -------------------------------------------------------------------------------- /data/layouts/RusturfTunnel/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SSTidalCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SSTidalLowerDeck/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SSTidalRooms/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SaffronCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/SaffronCity_House/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/SaffronCity_Mart/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/SaffronCity_MrPsychicsHouse/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/ScorchedSlab/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SealedChamber_InnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/SealedChamber_OuterRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/ShoalCave_HighTideEntranceRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_HighTideInnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideEntranceRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideIceRoom/border.bin: -------------------------------------------------------------------------------- 1 | kdnC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideInnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideLowerRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideStairsRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_1F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_2F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_3F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_3F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_4F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_4F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_5F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_5F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_Outside/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/SlateportCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_OceanicMuseum_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_OceanicMuseum_2F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_PokemonFanClub/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_SternsShipyard_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SlateportCity_SternsShipyard_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_Gym_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_Gym_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_House3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_LotadAndSeedotHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_MysteryEventsHouse_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_MysteryEventsHouse_1F_StairsUnblocked/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_MysteryEventsHouse_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SouthernIsland_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/TradeCenter/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Underwater_MarineCave/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route105/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route124/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route125/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route126/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route127/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route128/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route129/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route134/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_SeafloorCavern/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_SealedChamber/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_SootopolisCity/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave1/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave1/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave10/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave10/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave11/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave11/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave12/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave12/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave13/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave13/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave14/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave14/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave2/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave2/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave3/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave3/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave4/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave4/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave5/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave5/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave6/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave6/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave7/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave7/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave8/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave8/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave9/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave9/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall1/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall2/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall3/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall4/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall4/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall5/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall5/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall6/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall6/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom1/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom2/map.bin: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom3/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedOutdoorArea/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/VerdanturfTown_BattleTentBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/VerdanturfTown_WandasHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/VermilionCity_House1/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/VermilionCity_House2/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/VermilionCity_House3/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/VermilionCity_Mart/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/layouts/VictoryRoad_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/VictoryRoad_B2F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ViridianCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/ViridianCity_Mart/map.bin: -------------------------------------------------------------------------------- 1 | c4` -------------------------------------------------------------------------------- /data/map_events.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/map_events.s -------------------------------------------------------------------------------- /data/maps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/maps.s -------------------------------------------------------------------------------- /data/maps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/maps/.gitignore -------------------------------------------------------------------------------- /data/maps/AbandonedShip_Deck/scripts.inc: -------------------------------------------------------------------------------- 1 | AbandonedShip_Deck_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/AbandonedShip_Rooms_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | AbandonedShip_Rooms_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/AlteringCave/scripts.inc: -------------------------------------------------------------------------------- 1 | AlteringCave_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/AncientTomb/scripts.inc: -------------------------------------------------------------------------------- 1 | AncientTomb_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/AquaHideout_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | AquaHideout_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/AquaHideout_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | AquaHideout_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/AquaHideout_B2F/scripts.inc: -------------------------------------------------------------------------------- 1 | AquaHideout_B2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/ArtisanCave_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | ArtisanCave_1F_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/ArtisanCave_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | ArtisanCave_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleColosseum_2P/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleColosseum_2P_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/BattleColosseum_4P/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleColosseum_4P_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge1/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge6/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge6_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattlePyramidSquare01/scripts.inc: -------------------------------------------------------------------------------- 1 | BattlePyramidSquare01_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleTower_2F_Shop/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleTower_2F_Shop_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleTower_3F_Lounge/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleTower_3F_Lounge_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BirthIsland_Exterior/scripts.inc: -------------------------------------------------------------------------------- 1 | BirthIsland_Exterior_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BirthIsland_Harbor/scripts.inc: -------------------------------------------------------------------------------- 1 | BirthIsland_Harbor_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/CaveOfOrigin_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | CaveOfOrigin_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/CaveOfOrigin_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | CaveOfOrigin_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/CaveOfOrigin_Entrance/scripts.inc: -------------------------------------------------------------------------------- 1 | CaveOfOrigin_Entrance_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/DesertRuins/scripts.inc: -------------------------------------------------------------------------------- 1 | DesertRuins_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/DesertUnderpass/scripts.inc: -------------------------------------------------------------------------------- 1 | DesertUnderpass_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/DewfordTown/scripts.inc: -------------------------------------------------------------------------------- 1 | DewfordTown_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/DewfordTown_Gym/scripts.inc: -------------------------------------------------------------------------------- 1 | DewfordTown_Gym_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/DewfordTown_Hall/scripts.inc: -------------------------------------------------------------------------------- 1 | DewfordTown_Hall_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/DewfordTown_House1/scripts.inc: -------------------------------------------------------------------------------- 1 | DewfordTown_House1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/DewfordTown_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | DewfordTown_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/EverGrandeCity/scripts.inc: -------------------------------------------------------------------------------- 1 | EverGrandeCity_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/EverGrandeCity_Hall1/scripts.inc: -------------------------------------------------------------------------------- 1 | EverGrandeCity_Hall1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/EverGrandeCity_Hall2/scripts.inc: -------------------------------------------------------------------------------- 1 | EverGrandeCity_Hall2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/EverGrandeCity_Hall3/scripts.inc: -------------------------------------------------------------------------------- 1 | EverGrandeCity_Hall3_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/EverGrandeCity_Hall4/scripts.inc: -------------------------------------------------------------------------------- 1 | EverGrandeCity_Hall4_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/EverGrandeCity_Hall5/scripts.inc: -------------------------------------------------------------------------------- 1 | EverGrandeCity_Hall5_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FallarborTown/scripts.inc: -------------------------------------------------------------------------------- 1 | FallarborTown_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FallarborTown_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | FallarborTown_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FieryPath/scripts.inc: -------------------------------------------------------------------------------- 1 | FieryPath_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FortreeCity/scripts.inc: -------------------------------------------------------------------------------- 1 | FortreeCity_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FortreeCity_Gym/scripts.inc: -------------------------------------------------------------------------------- 1 | FortreeCity_Gym_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FortreeCity_House1/scripts.inc: -------------------------------------------------------------------------------- 1 | FortreeCity_House1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FortreeCity_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | FortreeCity_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FortreeCity_House3/scripts.inc: -------------------------------------------------------------------------------- 1 | FortreeCity_House3_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FortreeCity_House4/scripts.inc: -------------------------------------------------------------------------------- 1 | FortreeCity_House4_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FortreeCity_House5/scripts.inc: -------------------------------------------------------------------------------- 1 | FortreeCity_House5_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FortreeCity_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | FortreeCity_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/GraniteCave_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | GraniteCave_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/GraniteCave_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | GraniteCave_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/GraniteCave_B2F/scripts.inc: -------------------------------------------------------------------------------- 1 | GraniteCave_B2F_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/IndigoPlateau_Exterior/scripts.inc: -------------------------------------------------------------------------------- 1 | IndigoPlateau_Exterior_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/InsideOfTruck/scripts.inc: -------------------------------------------------------------------------------- 1 | InsideOfTruck_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/IslandCave/scripts.inc: -------------------------------------------------------------------------------- 1 | IslandCave_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/JaggedPass/scripts.inc: -------------------------------------------------------------------------------- 1 | JaggedPass_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LavaridgeTown/scripts.inc: -------------------------------------------------------------------------------- 1 | LavaridgeTown_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LavaridgeTown_Gym_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | LavaridgeTown_Gym_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LavaridgeTown_Gym_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | LavaridgeTown_Gym_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LavaridgeTown_HerbShop/scripts.inc: -------------------------------------------------------------------------------- 1 | LavaridgeTown_HerbShop_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LavaridgeTown_House/scripts.inc: -------------------------------------------------------------------------------- 1 | LavaridgeTown_House_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LavaridgeTown_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | LavaridgeTown_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LilycoveCity/scripts.inc: -------------------------------------------------------------------------------- 1 | LilycoveCity_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LilycoveCity_Harbor/scripts.inc: -------------------------------------------------------------------------------- 1 | LilycoveCity_Harbor_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LilycoveCity_House1/scripts.inc: -------------------------------------------------------------------------------- 1 | LilycoveCity_House1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LilycoveCity_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | LilycoveCity_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LilycoveCity_House3/scripts.inc: -------------------------------------------------------------------------------- 1 | LilycoveCity_House3_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LilycoveCity_House4/scripts.inc: -------------------------------------------------------------------------------- 1 | LilycoveCity_House4_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/LittlerootTown/scripts.inc: -------------------------------------------------------------------------------- 1 | LittlerootTown_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_2F_1R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_2F_1R_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_2F_2R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_2F_2R_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_2F_3R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_2F_3R_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_3F_1R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_3F_1R_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_3F_2R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_3F_2R_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_3F_3R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_3F_3R_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_4F/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_4F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MarineCave_End/scripts.inc: -------------------------------------------------------------------------------- 1 | MarineCave_End_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MarineCave_Entrance/scripts.inc: -------------------------------------------------------------------------------- 1 | MarineCave_Entrance_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MauvilleCity/scripts.inc: -------------------------------------------------------------------------------- 1 | MauvilleCity_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MauvilleCity_BikeShop/scripts.inc: -------------------------------------------------------------------------------- 1 | MauvilleCity_BikeShop_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MauvilleCity_Gym/scripts.inc: -------------------------------------------------------------------------------- 1 | MauvilleCity_Gym_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MauvilleCity_House1/scripts.inc: -------------------------------------------------------------------------------- 1 | MauvilleCity_House1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MauvilleCity_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | MauvilleCity_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MauvilleCity_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | MauvilleCity_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MeteorFalls_1F_1R/scripts.inc: -------------------------------------------------------------------------------- 1 | MeteorFalls_1F_1R_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MeteorFalls_1F_2R/scripts.inc: -------------------------------------------------------------------------------- 1 | MeteorFalls_1F_2R_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MeteorFalls_B1F_1R/scripts.inc: -------------------------------------------------------------------------------- 1 | MeteorFalls_B1F_1R_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/MeteorFalls_B1F_2R/scripts.inc: -------------------------------------------------------------------------------- 1 | MeteorFalls_B1F_2R_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/MirageTower_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | MirageTower_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MirageTower_2F/scripts.inc: -------------------------------------------------------------------------------- 1 | MirageTower_2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MirageTower_3F/scripts.inc: -------------------------------------------------------------------------------- 1 | MirageTower_3F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MirageTower_4F/scripts.inc: -------------------------------------------------------------------------------- 1 | MirageTower_4F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MossdeepCity/scripts.inc: -------------------------------------------------------------------------------- 1 | MossdeepCity_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MossdeepCity_Gym/scripts.inc: -------------------------------------------------------------------------------- 1 | MossdeepCity_Gym_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MossdeepCity_House1/scripts.inc: -------------------------------------------------------------------------------- 1 | MossdeepCity_House1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MossdeepCity_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | MossdeepCity_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MossdeepCity_House3/scripts.inc: -------------------------------------------------------------------------------- 1 | MossdeepCity_House3_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MossdeepCity_House4/scripts.inc: -------------------------------------------------------------------------------- 1 | MossdeepCity_House4_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MossdeepCity_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | MossdeepCity_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtChimney/scripts.inc: -------------------------------------------------------------------------------- 1 | MtChimney_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtPyre_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtPyre_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtPyre_2F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtPyre_2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtPyre_3F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtPyre_3F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtPyre_4F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtPyre_4F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtPyre_5F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtPyre_5F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtPyre_6F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtPyre_6F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtPyre_Exterior/scripts.inc: -------------------------------------------------------------------------------- 1 | MtPyre_Exterior_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtPyre_Summit/scripts.inc: -------------------------------------------------------------------------------- 1 | MtPyre_Summit_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_B1F_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Bottom/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Bottom_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down01/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down01_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down02/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down02_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down03/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down03_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down04/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down04_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down05/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down05_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down06/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down06_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down07/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down07_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down08/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down08_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down09/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down09_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down10/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down10_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down11/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down11_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Entrance/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Entrance_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Exterior/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Exterior_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Fork/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Fork_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Harbor/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Harbor_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Top/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Top_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up1/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up1_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up2/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up2_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up3/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up3_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up4/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up4_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NewMauville_Entrance/scripts.inc: -------------------------------------------------------------------------------- 1 | NewMauville_Entrance_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NewMauville_Inside/scripts.inc: -------------------------------------------------------------------------------- 1 | NewMauville_Inside_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/OldaleTown/scripts.inc: -------------------------------------------------------------------------------- 1 | OldaleTown_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/OldaleTown_House1/scripts.inc: -------------------------------------------------------------------------------- 1 | OldaleTown_House1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/OldaleTown_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | OldaleTown_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/OldaleTown_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | OldaleTown_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PacifidlogTown/scripts.inc: -------------------------------------------------------------------------------- 1 | PacifidlogTown_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PacifidlogTown_House1/scripts.inc: -------------------------------------------------------------------------------- 1 | PacifidlogTown_House1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PacifidlogTown_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | PacifidlogTown_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PacifidlogTown_House3/scripts.inc: -------------------------------------------------------------------------------- 1 | PacifidlogTown_House3_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PacifidlogTown_House4/scripts.inc: -------------------------------------------------------------------------------- 1 | PacifidlogTown_House4_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PacifidlogTown_House5/scripts.inc: -------------------------------------------------------------------------------- 1 | PacifidlogTown_House5_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PetalburgCity/scripts.inc: -------------------------------------------------------------------------------- 1 | PetalburgCity_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PetalburgCity_Gym/scripts.inc: -------------------------------------------------------------------------------- 1 | PetalburgCity_Gym_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PetalburgCity_House1/scripts.inc: -------------------------------------------------------------------------------- 1 | PetalburgCity_House1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PetalburgCity_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | PetalburgCity_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PetalburgCity_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | PetalburgCity_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PetalburgWoods/scripts.inc: -------------------------------------------------------------------------------- 1 | PetalburgWoods_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RecordCorner/scripts.inc: -------------------------------------------------------------------------------- 1 | RecordCorner_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Route101/scripts.inc: -------------------------------------------------------------------------------- 1 | Route101_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route102/scripts.inc: -------------------------------------------------------------------------------- 1 | Route102_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route103/scripts.inc: -------------------------------------------------------------------------------- 1 | Route103_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route104/scripts.inc: -------------------------------------------------------------------------------- 1 | Route104_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route104_Prototype/scripts.inc: -------------------------------------------------------------------------------- 1 | Route104_Prototype_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Route105/scripts.inc: -------------------------------------------------------------------------------- 1 | Route105_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route106/scripts.inc: -------------------------------------------------------------------------------- 1 | Route106_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route107/scripts.inc: -------------------------------------------------------------------------------- 1 | Route107_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route108/scripts.inc: -------------------------------------------------------------------------------- 1 | Route108_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route109/scripts.inc: -------------------------------------------------------------------------------- 1 | Route109_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route109_SeashoreHouse/scripts.inc: -------------------------------------------------------------------------------- 1 | Route109_SeashoreHouse_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route110/scripts.inc: -------------------------------------------------------------------------------- 1 | Route110_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route110_TrickHouseEnd/scripts.inc: -------------------------------------------------------------------------------- 1 | Route110_TrickHouseEnd_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route111/scripts.inc: -------------------------------------------------------------------------------- 1 | Route111_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route112/scripts.inc: -------------------------------------------------------------------------------- 1 | Route112_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route113/scripts.inc: -------------------------------------------------------------------------------- 1 | Route113_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route113_GlassWorkshop/scripts.inc: -------------------------------------------------------------------------------- 1 | Route113_GlassWorkshop_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route114/scripts.inc: -------------------------------------------------------------------------------- 1 | Route114_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route114_LanettesHouse/scripts.inc: -------------------------------------------------------------------------------- 1 | Route114_LanettesHouse_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route115/scripts.inc: -------------------------------------------------------------------------------- 1 | Route115_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route116/scripts.inc: -------------------------------------------------------------------------------- 1 | Route116_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route117/scripts.inc: -------------------------------------------------------------------------------- 1 | Route117_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route118/scripts.inc: -------------------------------------------------------------------------------- 1 | Route118_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route119/scripts.inc: -------------------------------------------------------------------------------- 1 | Route119_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route119_House/scripts.inc: -------------------------------------------------------------------------------- 1 | Route119_House_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route120/scripts.inc: -------------------------------------------------------------------------------- 1 | Route120_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route121/scripts.inc: -------------------------------------------------------------------------------- 1 | Route121_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route122/scripts.inc: -------------------------------------------------------------------------------- 1 | Route122_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Route123/scripts.inc: -------------------------------------------------------------------------------- 1 | Route123_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route124/scripts.inc: -------------------------------------------------------------------------------- 1 | Route124_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route125/scripts.inc: -------------------------------------------------------------------------------- 1 | Route125_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route126/scripts.inc: -------------------------------------------------------------------------------- 1 | Route126_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route127/scripts.inc: -------------------------------------------------------------------------------- 1 | Route127_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route128/scripts.inc: -------------------------------------------------------------------------------- 1 | Route128_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route129/scripts.inc: -------------------------------------------------------------------------------- 1 | Route129_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route130/scripts.inc: -------------------------------------------------------------------------------- 1 | Route130_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route131/scripts.inc: -------------------------------------------------------------------------------- 1 | Route131_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route132/scripts.inc: -------------------------------------------------------------------------------- 1 | Route132_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route133/scripts.inc: -------------------------------------------------------------------------------- 1 | Route133_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route134/scripts.inc: -------------------------------------------------------------------------------- 1 | Route134_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity_Flat1_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_Flat1_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity_Flat1_2F/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_Flat1_2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity_Flat2_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_Flat2_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity_Flat2_2F/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_Flat2_2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity_Flat2_3F/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_Flat2_3F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity_Gym/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_Gym_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity_House1/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_House1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity_House3/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_House3_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RustboroCity_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | RustboroCity_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RusturfTunnel/scripts.inc: -------------------------------------------------------------------------------- 1 | RusturfTunnel_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SSAnne_B1F_Corridor/scripts.inc: -------------------------------------------------------------------------------- 1 | SSAnne_B1F_Corridor_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SSTidalCorridor/scripts.inc: -------------------------------------------------------------------------------- 1 | SSTidalCorridor_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SSTidalLowerDeck/scripts.inc: -------------------------------------------------------------------------------- 1 | SSTidalLowerDeck_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SSTidalRooms/scripts.inc: -------------------------------------------------------------------------------- 1 | SSTidalRooms_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SafariZone_Northeast/scripts.inc: -------------------------------------------------------------------------------- 1 | SafariZone_Northeast_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SafariZone_Northwest/scripts.inc: -------------------------------------------------------------------------------- 1 | SafariZone_Northwest_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SafariZone_RestHouse/scripts.inc: -------------------------------------------------------------------------------- 1 | SafariZone_RestHouse_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SafariZone_South/scripts.inc: -------------------------------------------------------------------------------- 1 | SafariZone_South_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SafariZone_Southeast/scripts.inc: -------------------------------------------------------------------------------- 1 | SafariZone_Southeast_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SafariZone_Southwest/scripts.inc: -------------------------------------------------------------------------------- 1 | SafariZone_Southwest_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/ScorchedSlab/scripts.inc: -------------------------------------------------------------------------------- 1 | ScorchedSlab_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room1/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room2/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room3/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room3_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room4/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room4_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room5/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room5_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room6/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room6_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room7/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room7_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room8/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room8_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room9/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room9_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SkyPillar_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | SkyPillar_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SkyPillar_2F/scripts.inc: -------------------------------------------------------------------------------- 1 | SkyPillar_2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SkyPillar_3F/scripts.inc: -------------------------------------------------------------------------------- 1 | SkyPillar_3F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SkyPillar_4F/scripts.inc: -------------------------------------------------------------------------------- 1 | SkyPillar_4F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SkyPillar_5F/scripts.inc: -------------------------------------------------------------------------------- 1 | SkyPillar_5F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SkyPillar_Entrance/scripts.inc: -------------------------------------------------------------------------------- 1 | SkyPillar_Entrance_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SkyPillar_Outside/scripts.inc: -------------------------------------------------------------------------------- 1 | SkyPillar_Outside_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SkyPillar_Top/scripts.inc: -------------------------------------------------------------------------------- 1 | SkyPillar_Top_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SlateportCity/scripts.inc: -------------------------------------------------------------------------------- 1 | SlateportCity_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SlateportCity_Harbor/scripts.inc: -------------------------------------------------------------------------------- 1 | SlateportCity_Harbor_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SlateportCity_House/scripts.inc: -------------------------------------------------------------------------------- 1 | SlateportCity_House_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SlateportCity_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | SlateportCity_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity_Gym_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_Gym_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity_Gym_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_Gym_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity_House1/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_House1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity_House3/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_House3_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity_House4/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_House4_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity_House5/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_House5_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity_House6/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_House6_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity_House7/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_House7_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SootopolisCity_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | SootopolisCity_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/TerraCave_End/scripts.inc: -------------------------------------------------------------------------------- 1 | TerraCave_End_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/TerraCave_Entrance/scripts.inc: -------------------------------------------------------------------------------- 1 | TerraCave_Entrance_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/TradeCenter/scripts.inc: -------------------------------------------------------------------------------- 1 | TradeCenter_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Underwater_MarineCave/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_MarineCave_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route105/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route105_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route124/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route124_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route125/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route125_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route126/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route126_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route127/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route127_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route128/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route128_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route129/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route129_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route134/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route134_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/VerdanturfTown/scripts.inc: -------------------------------------------------------------------------------- 1 | VerdanturfTown_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/VerdanturfTown_House/scripts.inc: -------------------------------------------------------------------------------- 1 | VerdanturfTown_House_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/VerdanturfTown_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | VerdanturfTown_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/VictoryRoad_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | VictoryRoad_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/VictoryRoad_B2F/scripts.inc: -------------------------------------------------------------------------------- 1 | VictoryRoad_B2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/mb_ereader.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/mb_ereader.gba -------------------------------------------------------------------------------- /data/mystery_gift.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/mystery_gift.s -------------------------------------------------------------------------------- /data/scripts/day_care.inc: -------------------------------------------------------------------------------- 1 | @handled in Route 5 DayCare scripts now 2 | -------------------------------------------------------------------------------- /data/scripts/hall_of_fame.inc: -------------------------------------------------------------------------------- 1 | @emptied 2 | -------------------------------------------------------------------------------- /data/scripts/item_ball_scripts.inc: -------------------------------------------------------------------------------- 1 | @UNUSED 2 | 3 | -------------------------------------------------------------------------------- /data/scripts/kecleon.inc: -------------------------------------------------------------------------------- 1 | @Emptied 2 | -------------------------------------------------------------------------------- /data/scripts/pc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/scripts/pc.inc -------------------------------------------------------------------------------- /data/scripts/players_house.inc: -------------------------------------------------------------------------------- 1 | @ Emptied 2 | -------------------------------------------------------------------------------- /data/scripts/prof_birch.inc: -------------------------------------------------------------------------------- 1 | @Emptied 2 | -------------------------------------------------------------------------------- /data/scripts/tv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/scripts/tv.inc -------------------------------------------------------------------------------- /data/sound_data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/sound_data.s -------------------------------------------------------------------------------- /data/specials.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/specials.inc -------------------------------------------------------------------------------- /data/text/pc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/text/pc.inc -------------------------------------------------------------------------------- /data/text/pkmn_center_nurse.inc: -------------------------------------------------------------------------------- 1 | @emptied 2 | -------------------------------------------------------------------------------- /data/text/save.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/text/save.inc -------------------------------------------------------------------------------- /data/text/surf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/text/surf.inc -------------------------------------------------------------------------------- /data/text/tv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/text/tv.inc -------------------------------------------------------------------------------- /data/tilesets.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/data/tilesets.s -------------------------------------------------------------------------------- /data/tilesets/primary/secret_base/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tilesets/secondary/dewford_gym/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | c`, -------------------------------------------------------------------------------- /data/tilesets/secondary/dummy_1/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tilesets/secondary/dummy_2/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tilesets/secondary/dummy_3/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tilesets/secondary/dummy_4/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tilesets/secondary/unused_1/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emotions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/emotions.txt -------------------------------------------------------------------------------- /extract_sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/extract_sprites.py -------------------------------------------------------------------------------- /follower_emotions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/follower_emotions.py -------------------------------------------------------------------------------- /front_palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/front_palette.py -------------------------------------------------------------------------------- /gflib/bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/bg.c -------------------------------------------------------------------------------- /gflib/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/bg.h -------------------------------------------------------------------------------- /gflib/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/blit.c -------------------------------------------------------------------------------- /gflib/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/blit.h -------------------------------------------------------------------------------- /gflib/characters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/characters.h -------------------------------------------------------------------------------- /gflib/dma3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/dma3.h -------------------------------------------------------------------------------- /gflib/dma3_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/dma3_manager.c -------------------------------------------------------------------------------- /gflib/gpu_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/gpu_regs.c -------------------------------------------------------------------------------- /gflib/gpu_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/gpu_regs.h -------------------------------------------------------------------------------- /gflib/io_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/io_reg.c -------------------------------------------------------------------------------- /gflib/io_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/io_reg.h -------------------------------------------------------------------------------- /gflib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/malloc.c -------------------------------------------------------------------------------- /gflib/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/malloc.h -------------------------------------------------------------------------------- /gflib/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/sprite.c -------------------------------------------------------------------------------- /gflib/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/sprite.h -------------------------------------------------------------------------------- /gflib/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/text.c -------------------------------------------------------------------------------- /gflib/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/text.h -------------------------------------------------------------------------------- /gflib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/window.c -------------------------------------------------------------------------------- /gflib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/gflib/window.h -------------------------------------------------------------------------------- /graphics/battle_anims/sprites/black_ball.bin: -------------------------------------------------------------------------------- 1 |  330C3430@CCC33 -------------------------------------------------------------------------------- /graphics/contest/results_screen/title_link.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /include/battle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/battle.h -------------------------------------------------------------------------------- /include/berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/berry.h -------------------------------------------------------------------------------- /include/bike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/bike.h -------------------------------------------------------------------------------- /include/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/clock.h -------------------------------------------------------------------------------- /include/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/coins.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/config.h -------------------------------------------------------------------------------- /include/contest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/contest.h -------------------------------------------------------------------------------- /include/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/credits.h -------------------------------------------------------------------------------- /include/crt0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/crt0.h -------------------------------------------------------------------------------- /include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/data.h -------------------------------------------------------------------------------- /include/daycare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/daycare.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/dexnav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/dexnav.h -------------------------------------------------------------------------------- /include/diploma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/diploma.h -------------------------------------------------------------------------------- /include/fieldmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/fieldmap.h -------------------------------------------------------------------------------- /include/fldeff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/fldeff.h -------------------------------------------------------------------------------- /include/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/fonts.h -------------------------------------------------------------------------------- /include/gba/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/gba/gba.h -------------------------------------------------------------------------------- /include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/global.h -------------------------------------------------------------------------------- /include/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/graphics.h -------------------------------------------------------------------------------- /include/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/intro.h -------------------------------------------------------------------------------- /include/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/item.h -------------------------------------------------------------------------------- /include/item_use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/item_use.h -------------------------------------------------------------------------------- /include/landmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/landmark.h -------------------------------------------------------------------------------- /include/librfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/librfu.h -------------------------------------------------------------------------------- /include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/link.h -------------------------------------------------------------------------------- /include/link_rfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/link_rfu.h -------------------------------------------------------------------------------- /include/m4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/m4a.h -------------------------------------------------------------------------------- /include/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/mail.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/main.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/money.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/money.h -------------------------------------------------------------------------------- /include/new_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/new_game.h -------------------------------------------------------------------------------- /include/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/palette.h -------------------------------------------------------------------------------- /include/pokeball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/pokeball.h -------------------------------------------------------------------------------- /include/pokedex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/pokedex.h -------------------------------------------------------------------------------- /include/pokemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/pokemon.h -------------------------------------------------------------------------------- /include/pokenav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/pokenav.h -------------------------------------------------------------------------------- /include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/random.h -------------------------------------------------------------------------------- /include/roamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/roamer.h -------------------------------------------------------------------------------- /include/roulette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/roulette.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/save.h -------------------------------------------------------------------------------- /include/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/script.h -------------------------------------------------------------------------------- /include/shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/shop.h -------------------------------------------------------------------------------- /include/siirtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/siirtc.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/strings.h -------------------------------------------------------------------------------- /include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/task.h -------------------------------------------------------------------------------- /include/tilesets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/tilesets.h -------------------------------------------------------------------------------- /include/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/trade.h -------------------------------------------------------------------------------- /include/trader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/trader.h -------------------------------------------------------------------------------- /include/trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/trig.h -------------------------------------------------------------------------------- /include/tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/tv.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/include/util.h -------------------------------------------------------------------------------- /json_data_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/json_data_rules.mk -------------------------------------------------------------------------------- /ld_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/ld_script.txt -------------------------------------------------------------------------------- /make_tools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/make_tools.mk -------------------------------------------------------------------------------- /map_data_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/map_data_rules.mk -------------------------------------------------------------------------------- /palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/palette.py -------------------------------------------------------------------------------- /remote_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/remote_build.sh -------------------------------------------------------------------------------- /rom.sha1: -------------------------------------------------------------------------------- 1 | f3ae088181bf583e55daf962a92bb46f4f1d07b7 pokeemerald.gba 2 | -------------------------------------------------------------------------------- /songs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/songs.mk -------------------------------------------------------------------------------- /sound/MPlayDef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/sound/MPlayDef.s -------------------------------------------------------------------------------- /sound/programmable_wave_samples/15.pcm: -------------------------------------------------------------------------------- 1 | &8J\n~lZH6$ -------------------------------------------------------------------------------- /src/agb_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/agb_flash.c -------------------------------------------------------------------------------- /src/agb_flash_1m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/agb_flash_1m.c -------------------------------------------------------------------------------- /src/agb_flash_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/agb_flash_le.c -------------------------------------------------------------------------------- /src/agb_flash_mx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/agb_flash_mx.c -------------------------------------------------------------------------------- /src/apprentice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/apprentice.c -------------------------------------------------------------------------------- /src/bard_music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/bard_music.c -------------------------------------------------------------------------------- /src/battle_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_anim.c -------------------------------------------------------------------------------- /src/battle_arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_arena.c -------------------------------------------------------------------------------- /src/battle_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_bg.c -------------------------------------------------------------------------------- /src/battle_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_debug.c -------------------------------------------------------------------------------- /src/battle_dome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_dome.c -------------------------------------------------------------------------------- /src/battle_intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_intro.c -------------------------------------------------------------------------------- /src/battle_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_main.c -------------------------------------------------------------------------------- /src/battle_pike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_pike.c -------------------------------------------------------------------------------- /src/battle_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_setup.c -------------------------------------------------------------------------------- /src/battle_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_tent.c -------------------------------------------------------------------------------- /src/battle_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_tower.c -------------------------------------------------------------------------------- /src/battle_tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_tv.c -------------------------------------------------------------------------------- /src/battle_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_util.c -------------------------------------------------------------------------------- /src/battle_util2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/battle_util2.c -------------------------------------------------------------------------------- /src/berry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/berry.c -------------------------------------------------------------------------------- /src/berry_crush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/berry_crush.c -------------------------------------------------------------------------------- /src/berry_powder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/berry_powder.c -------------------------------------------------------------------------------- /src/bike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/bike.c -------------------------------------------------------------------------------- /src/birch_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/birch_pc.c -------------------------------------------------------------------------------- /src/braille.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/braille.c -------------------------------------------------------------------------------- /src/cable_car.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/cable_car.c -------------------------------------------------------------------------------- /src/cable_club.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/cable_club.c -------------------------------------------------------------------------------- /src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/clock.c -------------------------------------------------------------------------------- /src/coins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/coins.c -------------------------------------------------------------------------------- /src/contest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/contest.c -------------------------------------------------------------------------------- /src/contest_ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/contest_ai.c -------------------------------------------------------------------------------- /src/contest_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/contest_link.c -------------------------------------------------------------------------------- /src/contest_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/contest_util.c -------------------------------------------------------------------------------- /src/credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/credits.c -------------------------------------------------------------------------------- /src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/crt0.s -------------------------------------------------------------------------------- /src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/data.c -------------------------------------------------------------------------------- /src/data/.gitignore: -------------------------------------------------------------------------------- 1 | wild_encounters.h 2 | -------------------------------------------------------------------------------- /src/data/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/data/credits.h -------------------------------------------------------------------------------- /src/data/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/data/items.h -------------------------------------------------------------------------------- /src/data/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/data/trade.h -------------------------------------------------------------------------------- /src/daycare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/daycare.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/decompress.c -------------------------------------------------------------------------------- /src/decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/decoration.c -------------------------------------------------------------------------------- /src/dexnav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/dexnav.c -------------------------------------------------------------------------------- /src/diploma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/diploma.c -------------------------------------------------------------------------------- /src/easy_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/easy_chat.c -------------------------------------------------------------------------------- /src/egg_hatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/egg_hatch.c -------------------------------------------------------------------------------- /src/event_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/event_data.c -------------------------------------------------------------------------------- /src/field_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/field_camera.c -------------------------------------------------------------------------------- /src/field_door.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/field_door.c -------------------------------------------------------------------------------- /src/field_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/field_effect.c -------------------------------------------------------------------------------- /src/field_poison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/field_poison.c -------------------------------------------------------------------------------- /src/field_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/field_tasks.c -------------------------------------------------------------------------------- /src/fieldmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/fieldmap.c -------------------------------------------------------------------------------- /src/fldeff_cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/fldeff_cut.c -------------------------------------------------------------------------------- /src/fldeff_dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/fldeff_dig.c -------------------------------------------------------------------------------- /src/fldeff_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/fldeff_flash.c -------------------------------------------------------------------------------- /src/fldeff_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/fldeff_misc.c -------------------------------------------------------------------------------- /src/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/fonts.c -------------------------------------------------------------------------------- /src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/graphics.c -------------------------------------------------------------------------------- /src/hall_of_fame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/hall_of_fame.c -------------------------------------------------------------------------------- /src/hof_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/hof_pc.c -------------------------------------------------------------------------------- /src/intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/intro.c -------------------------------------------------------------------------------- /src/item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/item.c -------------------------------------------------------------------------------- /src/item_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/item_icon.c -------------------------------------------------------------------------------- /src/item_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/item_menu.c -------------------------------------------------------------------------------- /src/item_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/item_use.c -------------------------------------------------------------------------------- /src/landmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/landmark.c -------------------------------------------------------------------------------- /src/libisagbprn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/libisagbprn.c -------------------------------------------------------------------------------- /src/librfu_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/librfu_intr.c -------------------------------------------------------------------------------- /src/librfu_rfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/librfu_rfu.c -------------------------------------------------------------------------------- /src/librfu_stwi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/librfu_stwi.c -------------------------------------------------------------------------------- /src/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/link.c -------------------------------------------------------------------------------- /src/link_rfu_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/link_rfu_2.c -------------------------------------------------------------------------------- /src/link_rfu_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/link_rfu_3.c -------------------------------------------------------------------------------- /src/list_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/list_menu.c -------------------------------------------------------------------------------- /src/load_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/load_save.c -------------------------------------------------------------------------------- /src/m4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/m4a.c -------------------------------------------------------------------------------- /src/m4a_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/m4a_1.s -------------------------------------------------------------------------------- /src/m4a_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/m4a_tables.c -------------------------------------------------------------------------------- /src/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/mail.c -------------------------------------------------------------------------------- /src/mail_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/mail_data.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/main_menu.c -------------------------------------------------------------------------------- /src/match_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/match_call.c -------------------------------------------------------------------------------- /src/math_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/math_util.c -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/menu_helpers.c -------------------------------------------------------------------------------- /src/mirage_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/mirage_tower.c -------------------------------------------------------------------------------- /src/mon_markings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/mon_markings.c -------------------------------------------------------------------------------- /src/money.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/money.c -------------------------------------------------------------------------------- /src/multiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/multiboot.c -------------------------------------------------------------------------------- /src/mystery_gift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/mystery_gift.c -------------------------------------------------------------------------------- /src/new_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/new_game.c -------------------------------------------------------------------------------- /src/option_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/option_menu.c -------------------------------------------------------------------------------- /src/overworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/overworld.c -------------------------------------------------------------------------------- /src/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/palette.c -------------------------------------------------------------------------------- /src/palette_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/palette_util.c -------------------------------------------------------------------------------- /src/party_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/party_menu.c -------------------------------------------------------------------------------- /src/play_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/play_time.c -------------------------------------------------------------------------------- /src/player_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/player_pc.c -------------------------------------------------------------------------------- /src/pokeball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/pokeball.c -------------------------------------------------------------------------------- /src/pokeblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/pokeblock.c -------------------------------------------------------------------------------- /src/pokedex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/pokedex.c -------------------------------------------------------------------------------- /src/pokemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/pokemon.c -------------------------------------------------------------------------------- /src/pokemon_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/pokemon_icon.c -------------------------------------------------------------------------------- /src/pokemon_jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/pokemon_jump.c -------------------------------------------------------------------------------- /src/pokenav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/pokenav.c -------------------------------------------------------------------------------- /src/pokenav_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/pokenav_list.c -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/random.c -------------------------------------------------------------------------------- /src/region_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/region_map.c -------------------------------------------------------------------------------- /src/reload_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/reload_save.c -------------------------------------------------------------------------------- /src/roamer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/roamer.c -------------------------------------------------------------------------------- /src/rom_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/rom_header.s -------------------------------------------------------------------------------- /src/roulette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/roulette.c -------------------------------------------------------------------------------- /src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/rtc.c -------------------------------------------------------------------------------- /src/safari_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/safari_zone.c -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/save.c -------------------------------------------------------------------------------- /src/scrcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/scrcmd.c -------------------------------------------------------------------------------- /src/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/script.c -------------------------------------------------------------------------------- /src/script_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/script_menu.c -------------------------------------------------------------------------------- /src/secret_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/secret_base.c -------------------------------------------------------------------------------- /src/shop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/shop.c -------------------------------------------------------------------------------- /src/siirtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/siirtc.c -------------------------------------------------------------------------------- /src/slot_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/slot_machine.c -------------------------------------------------------------------------------- /src/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/sound.c -------------------------------------------------------------------------------- /src/ss_anne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/ss_anne.c -------------------------------------------------------------------------------- /src/start_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/start_menu.c -------------------------------------------------------------------------------- /src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/strings.c -------------------------------------------------------------------------------- /src/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/task.c -------------------------------------------------------------------------------- /src/text_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/text_window.c -------------------------------------------------------------------------------- /src/time_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/time_events.c -------------------------------------------------------------------------------- /src/title_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/title_screen.c -------------------------------------------------------------------------------- /src/trade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/trade.c -------------------------------------------------------------------------------- /src/trader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/trader.c -------------------------------------------------------------------------------- /src/trainer_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/trainer_card.c -------------------------------------------------------------------------------- /src/trainer_hill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/trainer_hill.c -------------------------------------------------------------------------------- /src/trainer_see.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/trainer_see.c -------------------------------------------------------------------------------- /src/trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/trig.c -------------------------------------------------------------------------------- /src/tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/tv.c -------------------------------------------------------------------------------- /src/union_room.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/union_room.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/util.c -------------------------------------------------------------------------------- /src/walda_phrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/walda_phrase.c -------------------------------------------------------------------------------- /src/wallclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/wallclock.c -------------------------------------------------------------------------------- /src/wonder_news.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/src/wonder_news.c -------------------------------------------------------------------------------- /sym_bss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/sym_bss.txt -------------------------------------------------------------------------------- /sym_common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/sym_common.txt -------------------------------------------------------------------------------- /sym_ewram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/sym_ewram.txt -------------------------------------------------------------------------------- /tools/aif2pcm/.gitignore: -------------------------------------------------------------------------------- 1 | aif2pcm 2 | 3 | -------------------------------------------------------------------------------- /tools/bin2c/.gitignore: -------------------------------------------------------------------------------- 1 | bin2c 2 | -------------------------------------------------------------------------------- /tools/gbafix/.gitignore: -------------------------------------------------------------------------------- 1 | gbafix 2 | README 3 | -------------------------------------------------------------------------------- /tools/gbafix/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/tools/gbafix/elf.h -------------------------------------------------------------------------------- /tools/gbagfx/.gitignore: -------------------------------------------------------------------------------- 1 | gbagfx 2 | -------------------------------------------------------------------------------- /tools/gbagfx/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/tools/gbagfx/gfx.c -------------------------------------------------------------------------------- /tools/gbagfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/tools/gbagfx/gfx.h -------------------------------------------------------------------------------- /tools/gbagfx/lz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/tools/gbagfx/lz.c -------------------------------------------------------------------------------- /tools/gbagfx/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/tools/gbagfx/lz.h -------------------------------------------------------------------------------- /tools/gbagfx/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/tools/gbagfx/rl.c -------------------------------------------------------------------------------- /tools/gbagfx/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/tools/gbagfx/rl.h -------------------------------------------------------------------------------- /tools/jsonproc/.gitignore: -------------------------------------------------------------------------------- 1 | jsonproc 2 | -------------------------------------------------------------------------------- /tools/mapjson/.gitignore: -------------------------------------------------------------------------------- 1 | mapjson 2 | -------------------------------------------------------------------------------- /tools/mid2agb/.gitignore: -------------------------------------------------------------------------------- 1 | mid2agb 2 | -------------------------------------------------------------------------------- /tools/preproc/.gitignore: -------------------------------------------------------------------------------- 1 | preproc 2 | -------------------------------------------------------------------------------- /tools/ramscrgen/.gitignore: -------------------------------------------------------------------------------- 1 | ramscrgen 2 | -------------------------------------------------------------------------------- /tools/rsfont/.gitignore: -------------------------------------------------------------------------------- 1 | rsfont 2 | -------------------------------------------------------------------------------- /tools/rsfont/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danenders/pokeclassic/HEAD/tools/rsfont/gfx.h -------------------------------------------------------------------------------- /tools/scaninc/.gitignore: -------------------------------------------------------------------------------- 1 | scaninc 2 | --------------------------------------------------------------------------------