├── .gitattributes ├── .github ├── calcrom │ ├── calcrom.pl │ └── webhook.sh ├── pull_request_template.md └── workflows │ ├── Manual.yml │ ├── build.yml │ └── c-cpp.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 │ ├── pokemon_data.inc │ ├── trainer_hill.inc │ └── window.inc └── rom_header.inc ├── asmdiff.ps1 ├── asmdiff.sh ├── berry_fix ├── Makefile ├── asm │ ├── berry_fix_header.inc │ └── loader.s ├── charmap.txt ├── data │ └── data.s ├── ld_script.sed ├── ld_script.txt ├── payload │ ├── Makefile │ ├── asm │ │ ├── crt0.s │ │ ├── libagbsyscall.s │ │ └── macros │ │ │ └── function.inc │ ├── charmap.txt │ ├── common_syms │ │ ├── agb_flash.txt │ │ ├── main.txt │ │ └── rtc.txt │ ├── constants │ │ └── gba_constants.inc │ ├── graphics │ │ ├── debug_digits.png │ │ ├── msg_box.png │ │ └── msg_box.tilemap │ ├── include │ │ ├── constants │ │ │ ├── game_stat.h │ │ │ └── vars.h │ │ ├── flash.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 │ │ ├── main.h │ │ ├── pokemon.h │ │ ├── rtc.h │ │ └── siirtc.h │ ├── ld_script.sed │ ├── ld_script.txt │ ├── rom.sha1 │ ├── src │ │ ├── agb_flash.c │ │ ├── agb_flash_1m.c │ │ ├── agb_flash_le.c │ │ ├── agb_flash_mx.c │ │ ├── flash.c │ │ ├── main.c │ │ ├── rtc.c │ │ └── siirtc.c │ ├── sym_bss.txt │ ├── sym_common.txt │ └── sym_ewram.txt └── rom.sha1 ├── 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 ├── 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 ├── sound_check_menu.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 ├── convert_inc.sh ├── data ├── battle_anim_scripts.s ├── battle_scripts_1.s ├── battle_scripts_2.s ├── contest_ai_scripts.s ├── event_scripts.s ├── field_effect_scripts.s ├── fonts.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 │ ├── AlteringCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── AlteringCave_B1F │ │ ├── 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 │ ├── AshenWoods │ │ ├── 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 │ ├── BirthIsland_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── CableCarStation │ │ ├── border.bin │ │ └── map.bin │ ├── CaveOfOrigin_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CaveOfOrigin_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── CaveOfOrigin_DianciesRoom │ │ ├── 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 │ ├── 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 │ ├── DewfordManor_1F │ │ ├── border.bin │ │ └── map.bin │ ├── DewfordMeadow │ │ ├── border.bin │ │ └── map.bin │ ├── DewfordTown │ │ ├── border.bin │ │ └── map.bin │ ├── DewfordTown_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── DewfordTown_Hall │ │ ├── border.bin │ │ └── map.bin │ ├── EmberPath │ │ ├── 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 │ ├── 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 │ ├── HouseWithBed │ │ ├── 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 │ ├── 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_HaxorusRoom │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_JirachisRoom │ │ ├── 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 │ ├── MirageTower_B1F │ │ ├── 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 │ ├── 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 │ ├── PetalburgCity │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgWoods │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgWoods_2 │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgWoods_3 │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgWoods_BreloomRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── RecordCorner │ │ ├── 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 │ ├── 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 │ ├── Route111_RuinsExterior │ │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── SSTidalCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidalLowerDeck │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidalRooms │ │ ├── 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_South │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Southeast │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Southwest │ │ ├── border.bin │ │ └── map.bin │ ├── SandstrewnRuins │ │ ├── border.bin │ │ └── map.bin │ ├── SandstrewnRuins_2F │ │ ├── border.bin │ │ └── map.bin │ ├── SandstrewnRuins_3F │ │ ├── border.bin │ │ └── map.bin │ ├── SandstrewnRuins_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── ScorchedSlab │ │ ├── border.bin │ │ └── map.bin │ ├── ScorchedSlab_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── ScorchedSlab_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── ScorchedSlab_HeatransRoom │ │ ├── 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 │ ├── SealedChamber_InnerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── SealedChamber_OuterRoom │ │ ├── border.bin │ │ └── map.bin │ ├── Seaspray_Cave │ │ ├── border.bin │ │ └── map.bin │ ├── Seaspray_Cave_B1F │ │ ├── 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 │ ├── 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 │ ├── 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 │ ├── VerdanturfMeadow │ │ ├── border.bin │ │ └── map.bin │ ├── VerdanturfTown │ │ ├── border.bin │ │ └── map.bin │ ├── VerdanturfTown_BattleTentBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── VerdanturfTown_WandasHouse │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_1F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_B2F │ │ ├── border.bin │ │ └── map.bin │ └── layouts.json ├── map_events.s ├── maps.s ├── maps │ ├── .gitignore │ ├── AbandonedShip_CaptainsOffice │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_Corridors_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_Corridors_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_Deck │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_HiddenFloorCorridors │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_HiddenFloorRooms │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_Room_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_Rooms2_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_Rooms2_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_Rooms_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_Rooms_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_Underwater1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AbandonedShip_Underwater2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AlteringCave │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AlteringCave_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AlteringCave_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AncientTomb │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AquaHideout_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AquaHideout_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AquaHideout_B2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AquaHideout_UnusedRubyMap1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AquaHideout_UnusedRubyMap2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AquaHideout_UnusedRubyMap3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ArtisanCave_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ArtisanCave_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AshenWoods │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleColosseum_2P │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleColosseum_4P │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleArenaBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleArenaCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleArenaLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleDomeBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleDomeCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleDomeLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleDomePreBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleFactoryBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleFactoryLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleFactoryPreBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePalaceBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePalaceCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePalaceLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePikeCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePikeLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePikeRoomFinal │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePikeRoomNormal │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePikeRoomWildMons │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePikeThreePathRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePyramidFloor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePyramidLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattlePyramidTop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleTowerBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleTowerCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleTowerElevator │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleTowerLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleTowerMultiBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleTowerMultiCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_BattleTowerMultiPartnerRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_ExchangeServiceCorner │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_Lounge1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_Lounge2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_Lounge3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_Lounge4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_Lounge5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_Lounge6 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_Lounge7 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_Lounge8 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_Lounge9 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_OutsideEast │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_OutsideWest │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_RankingHall │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_ReceptionGate │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattleFrontier_ScottsHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BattlePyramidSquare01 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── 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 │ ├── BirthIsland_Exterior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── BirthIsland_Harbor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── CaveOfOrigin_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── CaveOfOrigin_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── CaveOfOrigin_DianciesRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── CaveOfOrigin_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── CaveOfOrigin_UnusedRubySapphireMap1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── CaveOfOrigin_UnusedRubySapphireMap2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── CaveOfOrigin_UnusedRubySapphireMap3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ContestHall │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ContestHallBeauty │ │ └── map.json │ ├── ContestHallCool │ │ └── map.json │ ├── ContestHallCute │ │ └── map.json │ ├── ContestHallSmart │ │ └── map.json │ ├── ContestHallTough │ │ └── map.json │ ├── DesertRuins │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DesertUnderpass │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DewfordManor_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DewfordMeadow │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DewfordTown │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DewfordTown_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DewfordTown_Hall │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DewfordTown_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DewfordTown_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DewfordTown_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DewfordTown_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EmberPath │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_ChampionsRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_DrakesRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_GlaciasRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_Hall1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_Hall2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_Hall3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_Hall4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_Hall5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_HallOfFame │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_PhoebesRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_PokemonLeague_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_PokemonLeague_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── EverGrandeCity_SidneysRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FallarborTown │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FallarborTown_BattleTentBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FallarborTown_BattleTentCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FallarborTown_BattleTentLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FallarborTown_CozmosHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FallarborTown_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FallarborTown_MoveRelearnersHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FallarborTown_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FallarborTown_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FarawayIsland_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FarawayIsland_Interior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FieryPath │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity_DecorationShop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity_House3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity_House4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity_House5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── FortreeCity_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GraniteCave_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GraniteCave_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GraniteCave_B2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GraniteCave_StevensRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── InsideOfTruck │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── IslandCave │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── JaggedPass │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LavaridgeTown │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LavaridgeTown_Gym_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LavaridgeTown_Gym_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LavaridgeTown_HerbShop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LavaridgeTown_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LavaridgeTown_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LavaridgeTown_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LavaridgeTown_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_ContestHall │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_ContestLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_CoveLilyMotel_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_CoveLilyMotel_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_DepartmentStoreElevator │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_DepartmentStoreRooftop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_DepartmentStore_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_DepartmentStore_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_DepartmentStore_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_DepartmentStore_4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_DepartmentStore_5F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_Harbor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_House3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_House4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_LilycoveMuseum_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_LilycoveMuseum_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_MoveDeletersHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_PokemonTrainerFanClub │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LilycoveCity_UnusedMart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LittlerootTown │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LittlerootTown_BrendansHouse_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LittlerootTown_BrendansHouse_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LittlerootTown_MaysHouse_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LittlerootTown_MaysHouse_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── LittlerootTown_ProfessorBirchsLab │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MagmaHideout_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MagmaHideout_2F_1R │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MagmaHideout_2F_2R │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MagmaHideout_2F_3R │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MagmaHideout_3F_1R │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MagmaHideout_3F_2R │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MagmaHideout_3F_3R │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MagmaHideout_4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MarineCave_End │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MarineCave_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MauvilleCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MauvilleCity_BikeShop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MauvilleCity_GameCorner │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MauvilleCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MauvilleCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MauvilleCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MauvilleCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MauvilleCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MauvilleCity_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MeteorFalls_1F_1R │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MeteorFalls_1F_2R │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MeteorFalls_B1F_1R │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MeteorFalls_B1F_2R │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MeteorFalls_HaxorusRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MeteorFalls_JirachisRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MeteorFalls_StevensCave │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MirageTower_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MirageTower_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MirageTower_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MirageTower_4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MirageTower_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_GameCorner_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_GameCorner_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_House3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_House4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_SpaceCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_SpaceCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MossdeepCity_StevensHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MtChimney │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MtChimney_CableCarStation │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MtPyre_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MtPyre_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MtPyre_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MtPyre_4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MtPyre_5F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MtPyre_6F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MtPyre_Exterior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── MtPyre_Summit │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Bottom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down01 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down02 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down03 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down04 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down05 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down06 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down07 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down08 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down09 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down10 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Down11 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Exterior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Fork │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Harbor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Top │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Up1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Up2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Up3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_Up4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NewMauville_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NewMauville_Inside │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── OldaleTown │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── OldaleTown_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── OldaleTown_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── OldaleTown_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── OldaleTown_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── OldaleTown_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PacifidlogTown │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PacifidlogTown_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PacifidlogTown_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PacifidlogTown_House3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PacifidlogTown_House4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PacifidlogTown_House5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PacifidlogTown_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PacifidlogTown_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgCity_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgCity_WallysHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgWoods │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgWoods_2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgWoods_3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PetalburgWoods_BreloomRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RecordCorner │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route101 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route102 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route103 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route104 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route104_MrBrineysHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route104_PrettyPetalFlowerShop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route104_Prototype │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route104_PrototypePrettyPetalFlowerShop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route105 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route106 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route107 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route108 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route109 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route109_SeashoreHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_SeasideCyclingRoadNorthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_SeasideCyclingRoadSouthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHouseCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHouseEnd │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHouseEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHousePuzzle1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHousePuzzle2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHousePuzzle3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHousePuzzle4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHousePuzzle5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHousePuzzle6 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHousePuzzle7 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route110_TrickHousePuzzle8 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route111 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route111_OldLadysRestStop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route111_RuinsExterior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route111_WinstrateFamilysHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route112 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route112_CableCarStation │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route113 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route113_GlassWorkshop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route114 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route114_FossilManiacsHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route114_FossilManiacsTunnel │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route114_LanettesHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route115 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route116 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route116_TunnelersRestHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route117 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route117_PokemonDayCare │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route118 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route119 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route119_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route119_WeatherInstitute_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route119_WeatherInstitute_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route120 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route121 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route121_SafariZoneEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route122 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route123 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route123_BerryMastersHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route124 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route124_DivingTreasureHuntersHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route125 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route126 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route127 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route128 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route129 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route130 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route131 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route132 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route133 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route134 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_CuttersHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_DevonCorp_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_DevonCorp_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_DevonCorp_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_Flat1_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_Flat1_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_Flat2_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_Flat2_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_Flat2_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_House3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RustboroCity_PokemonSchool │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RusturfTunnel │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SSTidalCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SSTidalLowerDeck │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SSTidalRooms │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SafariZone_North │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SafariZone_Northeast │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SafariZone_Northwest │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SafariZone_RestHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SafariZone_South │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SafariZone_Southeast │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SafariZone_Southwest │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SandstrewnRuins │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SandstrewnRuins_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SandstrewnRuins_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SandstrewnRuins_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ScorchedSlab │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ScorchedSlab_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ScorchedSlab_B2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ScorchedSlab_HeatransRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SeafloorCavern_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SeafloorCavern_Room1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SeafloorCavern_Room2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SeafloorCavern_Room3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SeafloorCavern_Room4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SeafloorCavern_Room5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SeafloorCavern_Room6 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SeafloorCavern_Room7 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SeafloorCavern_Room8 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SeafloorCavern_Room9 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SealedChamber_InnerRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SealedChamber_OuterRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Seaspray_Cave │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Seaspray_Cave_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── 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 │ │ └── scripts.pory │ ├── ShoalCave_HighTideInnerRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ShoalCave_LowTideEntranceRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ShoalCave_LowTideIceRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ShoalCave_LowTideInnerRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ShoalCave_LowTideLowerRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── ShoalCave_LowTideStairsRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SkyPillar_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SkyPillar_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SkyPillar_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SkyPillar_4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SkyPillar_5F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SkyPillar_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SkyPillar_Outside │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SkyPillar_Top │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_BattleTentBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_BattleTentCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_BattleTentLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_Harbor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_NameRatersHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_OceanicMuseum_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_OceanicMuseum_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_PokemonFanClub │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_SternsShipyard_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SlateportCity_SternsShipyard_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_Gym_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_Gym_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_House3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_House4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_House5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_House6 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_House7 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_LotadAndSeedotHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_MysteryEventsHouse_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_MysteryEventsHouse_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SouthernIsland_Exterior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SouthernIsland_Interior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TerraCave_End │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TerraCave_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TradeCenter │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TrainerHill_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TrainerHill_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TrainerHill_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TrainerHill_4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TrainerHill_Elevator │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TrainerHill_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TrainerHill_Roof │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_MarineCave │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_Route105 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_Route124 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_Route125 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_Route126 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_Route127 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_Route128 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_Route129 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_Route134 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_SeafloorCavern │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_SealedChamber │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Underwater_SootopolisCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── UnionRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── UnusedContestHall1 │ │ └── map.json │ ├── UnusedContestHall2 │ │ └── map.json │ ├── UnusedContestHall3 │ │ └── map.json │ ├── UnusedContestHall4 │ │ └── map.json │ ├── UnusedContestHall5 │ │ └── map.json │ ├── UnusedContestHall6 │ │ └── map.json │ ├── VerdanturfMeadow │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VerdanturfTown │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VerdanturfTown_BattleTentBattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VerdanturfTown_BattleTentCorridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VerdanturfTown_BattleTentLobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VerdanturfTown_FriendshipRatersHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VerdanturfTown_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VerdanturfTown_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VerdanturfTown_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VerdanturfTown_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VerdanturfTown_WandasHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VictoryRoad_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VictoryRoad_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VictoryRoad_B2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ └── map_groups.json ├── multiboot_berry_glitch_fix.s ├── multiboot_pokemon_colosseum.s ├── mystery_event.s ├── mystery_event_script_cmd_table.s ├── pokemon_colosseum.mb ├── 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 │ ├── day_care.inc │ ├── debug.inc │ ├── dexnav.inc │ ├── eevee.inc │ ├── elite_four.inc │ ├── field_move_scripts.inc │ ├── field_poison.inc │ ├── flash.inc │ ├── furfrou.inc │ ├── gabby_and_ty.inc │ ├── general_mart.inc │ ├── hall_of_fame.inc │ ├── honey.inc │ ├── interview.inc │ ├── item_ball_scripts.inc │ ├── kecleon.inc │ ├── lilycove_lady.inc │ ├── mauville_man.inc │ ├── mevent.inc │ ├── mevent_altering_cave.inc │ ├── mevent_aurora_ticket.inc │ ├── mevent_battle_card.inc │ ├── mevent_mystic_ticket.inc │ ├── mevent_old_sea_map.inc │ ├── mevent_pichu.inc │ ├── mevent_stamp_card.inc │ ├── mevent_trainer.inc │ ├── movement.inc │ ├── mystery_event_club.inc │ ├── new_game.inc │ ├── obtain_item.inc │ ├── pc.inc │ ├── pc_transfer.inc │ ├── pkmn_center_nurse-with-z-power.inc │ ├── pkmn_center_nurse.inc │ ├── players_house.inc │ ├── poke_mart.inc │ ├── pokemon_center_move_tutor.inc │ ├── prof_birch.inc │ ├── record_mix.inc │ ├── repel.inc │ ├── rival_graphics.inc │ ├── rotom.inc │ ├── roulette.inc │ ├── safari_zone.inc │ ├── secret_base.inc │ ├── secret_power_tm.inc │ ├── set_gym_trainers.inc │ ├── shared_secret_base.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 │ ├── mevent.inc │ ├── move_tutors.inc │ ├── obtain_item.inc │ ├── pc.inc │ ├── pc_transfer.inc │ ├── pkmn_center_nurse.inc │ ├── pokedex_rating.inc │ ├── pokemon_news.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 │ │ │ │ ├── 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 │ │ │ │ ├── water │ │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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_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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 ├── unknown_serial_data.bin └── unknown_serial_data.s ├── diff.diff ├── docs ├── bugs_and_glitches.md └── legacy_WSL1_INSTALL.md ├── elite-redux-title-screen.png ├── flips-linux ├── gflib ├── bg.c ├── bg.h ├── blit.c ├── blit.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 ├── 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.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.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 │ │ │ ├── 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.pal ├── battle_frontier │ ├── arena_judgement_symbols.png │ ├── battle_tilemap1.bin │ ├── battle_tilemap2.bin │ ├── 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 │ ├── pyramid_light.pal │ ├── text_pp.pal │ ├── tourney.pal │ ├── tourney_bg.png │ ├── 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_mask_map.bin │ ├── tourney_line_up_map.bin │ └── tourney_match_card_bg.pal ├── 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_opponent.png │ ├── healthbox_doubles_player.png │ ├── healthbox_safari.png │ ├── healthbox_singles_opponent.png │ ├── healthbox_singles_player.png │ ├── hpbar.png │ ├── hpbar_anim.png │ ├── last_used_ball_l.png │ ├── last_used_ball_r.png │ ├── mega_indicator.png │ ├── mega_trigger.pal │ ├── mega_trigger.png │ ├── misc.png │ ├── misc_frameend.png │ ├── move_info_window_l.png │ ├── omega_indicator.png │ ├── status2.png │ ├── status3.png │ ├── status4.png │ ├── status_brn.png │ ├── status_frb.png │ ├── status_frz.png │ ├── status_par.png │ ├── status_psn.png │ ├── status_slp.png │ ├── text.pal │ ├── text_pp.pal │ ├── text_se.pal │ ├── textbox.png │ ├── textbox_0.pal │ ├── textbox_1.pal │ ├── textbox_map.bin │ ├── unk_battlebox.png │ ├── unknown_32C2D4.png │ ├── unused_window.png │ ├── unused_window2.png │ ├── unused_window2bar.png │ ├── unused_window3.png │ └── unused_window4.png ├── battle_terrain │ ├── building │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── battle_frontier.pal │ │ ├── map.bin │ │ ├── palette.pal │ │ ├── palette2.pal │ │ ├── palette3.pal │ │ ├── palette4.pal │ │ ├── palette5.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 │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── 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 │ │ ├── palette8.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 │ ├── 85BDB14.pal │ ├── big_pokeball.png │ ├── big_pokeball_map.bin │ ├── brendan_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 │ ├── 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_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 │ ├── babiri.png │ ├── belue.png │ ├── bluk.png │ ├── charti.png │ ├── cheri.png │ ├── chesto.png │ ├── chilan.png │ ├── chople.png │ ├── coba.png │ ├── colbur.png │ ├── cornn.png │ ├── custap.png │ ├── durin.png │ ├── enigma.png │ ├── figy.png │ ├── ganlon.png │ ├── grepa.png │ ├── haban.png │ ├── hondew.png │ ├── iapapa.png │ ├── jaboca.png │ ├── kasib.png │ ├── kebia.png │ ├── kee.png │ ├── kelpsy.png │ ├── lansat.png │ ├── leppa.png │ ├── liechi.png │ ├── lum.png │ ├── mago.png │ ├── magost.png │ ├── maranga.png │ ├── micle.png │ ├── nanab.png │ ├── nomel.png │ ├── occa.png │ ├── oran.png │ ├── pamtre.png │ ├── passho.png │ ├── payapa.png │ ├── pecha.png │ ├── persim.png │ ├── petaya.png │ ├── pinap.png │ ├── pomeg.png │ ├── qualot.png │ ├── rabuta.png │ ├── rawst.png │ ├── razz.png │ ├── rindo.png │ ├── roseli.png │ ├── rowap.png │ ├── salac.png │ ├── shuca.png │ ├── sitrus.png │ ├── spelon.png │ ├── starf.png │ ├── tamato.png │ ├── tanga.png │ ├── wacan.png │ ├── watmel.png │ ├── wepear.png │ ├── wiki.png │ └── yache.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.bin │ ├── crusher.pal │ ├── crusher.png │ ├── crusher_base.png │ ├── crusher_top.bin │ ├── effects.pal │ ├── impact.png │ ├── sparkle.png │ └── 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 ├── cable_car │ ├── bg.pal │ ├── bg.png │ ├── bg_mountains.bin │ ├── cable.png │ ├── cable_car.png │ ├── door.png │ ├── ground.bin │ ├── pylons.bin │ └── trees.bin ├── contest │ ├── applause.png │ ├── applause_meter.png │ ├── audience.png │ ├── faces.png │ ├── judge.png │ ├── judge_symbols.png │ ├── misc.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 │ ├── 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 │ ├── cave_dust.pal │ ├── cave_dust.png │ ├── cursor.png │ ├── dexnav_pal.pal │ ├── gui.pal │ ├── gui_tilemap.bin │ ├── gui_tiles.png │ ├── hidden.png │ ├── hidden_search.png │ ├── no_data.png │ ├── owned_icon.png │ ├── star.png │ └── vision.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 │ ├── contest.png │ ├── cycling_road.png │ ├── dewford.png │ ├── fallarbor_dark_roof.png │ ├── fallarbor_light_roof.png │ ├── general.png │ ├── gym.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 │ ├── oldale.png │ ├── pacifidlog.png │ ├── poke_center.png │ ├── poke_mart.png │ ├── pokemon_league.png │ ├── rustboro_gray.png │ ├── rustboro_tan.png │ ├── safari_zone.png │ ├── slateport.png │ ├── sootopolis.png │ ├── sootopolis_peaked_roof.png │ ├── trainer_hill_lobby_elevator.png │ ├── trainer_hill_roof_elevator.png │ ├── unknown.png │ ├── unused_bottom.png │ ├── unused_top.png │ └── verdanturf.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 │ │ ├── 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 │ │ ├── ground_impact_dust.png │ │ ├── hot_springs_water.png │ │ ├── jump_big_splash.png │ │ ├── jump_small_splash.png │ │ ├── jump_tall_grass.png │ │ ├── long_grass.png │ │ ├── mountain_disguise.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 │ │ ├── surf_blob.png │ │ ├── tall_grass.png │ │ ├── tree_disguise.png │ │ ├── unknown_16.png │ │ ├── unknown_17.png │ │ ├── unused_grass_2.png │ │ ├── unused_grass_3.png │ │ ├── unused_sand.png │ │ └── water_surfacing.png ├── fonts │ ├── down_arrow.png │ ├── down_arrow_RS.png │ ├── font0_japanese.png │ ├── font0_latin.png │ ├── font0_latin_widths.inc │ ├── font1_japanese.png │ ├── font1_latin.png │ ├── font1_latin2.png │ ├── font1_latin_widths.inc │ ├── font2_japanese.png │ ├── font2_japanese_widths.inc │ ├── font2_latin.png │ ├── font2_latin_widths.inc │ ├── font6_braille.png │ ├── font7_latin.png │ ├── font7_latin_widths.inc │ ├── font8_latin.png │ ├── font8_latin_widths.inc │ ├── font9_japanese.png │ ├── keypad_icons.png │ ├── unused_frlg_blanked_down_arrow.png │ ├── unused_frlg_down_arrow.png │ ├── unused_japanese_frlg_female_font.png │ ├── unused_japanese_frlg_female_font_widths.inc │ ├── unused_japanese_frlg_male_font.png │ └── unused_japanese_frlg_male_font_widths.inc ├── frontier_pass │ ├── bg.bin │ ├── bg.pal │ ├── bg.png │ ├── cancel.bin │ ├── cancel_highlighted.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 │ └── unused.bin ├── interface │ ├── 855C604.pal │ ├── 855C624.bin │ ├── 860F074.pal │ ├── 860F0B0.pal │ ├── L_button.png │ ├── R_button.png │ ├── appealjam_tilemap.bin │ ├── bag_pyramid.pal │ ├── bag_pyramid.png │ ├── bag_pyramid_tilemap.bin │ ├── bag_screen.png │ ├── bag_screen_female.pal │ ├── bag_screen_male.pal │ ├── bag_screen_tilemap.bin │ ├── bag_spinner.png │ ├── bag_swap.png │ ├── ball │ │ ├── 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 │ │ ├── park.png │ │ ├── particles2.png │ │ ├── poke.png │ │ ├── premier.png │ │ ├── quick.png │ │ ├── repeat.png │ │ ├── safari.png │ │ ├── sport.png │ │ ├── timer.png │ │ └── ultra.png │ ├── ball_open.png │ ├── berry_tag.bin │ ├── berry_tag_screen.pal │ ├── berry_tag_title.bin │ ├── blank.pal │ ├── blank.png │ ├── check_berry.pal │ ├── check_berry.png │ ├── check_berry_circle.png │ ├── comm_error_bg.png │ ├── hm.png │ ├── hold_icons.png │ ├── hpbar_anim.png │ ├── link_test_digits.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 │ ├── mart_frame.bin │ ├── mart_frame.png │ ├── money.png │ ├── numbers1.png │ ├── numbers2.png │ ├── option_menu_text_custom.pal │ ├── party_menu_bg.bin │ ├── party_menu_bg.pal │ ├── party_menu_bg.png │ ├── party_menu_cancel_button.bin │ ├── party_menu_confirm_button.bin │ ├── party_menu_hpbar.png │ ├── party_menu_pokeball.png │ ├── party_menu_pokeball_small.png │ ├── pokeblock.bin │ ├── pokeblock_case_frame.pal │ ├── pokeblock_case_frame.png │ ├── pokeblock_device.png │ ├── pokeblock_feeding_bg_map.bin │ ├── powacc_tilemap.bin │ ├── red_arrow.png │ ├── red_arrow_other.png │ ├── region_map.bin │ ├── region_map.pal │ ├── region_map.png │ ├── region_map_affine.bin │ ├── region_map_affine.png │ ├── select_button.png │ ├── select_button2.png │ ├── selector_outline.png │ ├── split_icons.png │ ├── split_icons_battle.png │ ├── status_icons.png │ ├── status_screen.bin │ ├── status_screen.pal │ ├── status_screen.png │ ├── status_tilemap.bin │ ├── status_tilemap0.bin │ ├── status_tilemap1.bin │ ├── status_tilemap2.bin │ ├── status_tilemap3.bin │ ├── summary.bin │ ├── summary_EVs_icon.png │ ├── summary_a_button.png │ ├── summary_b_button.png │ ├── summary_frames.png │ ├── summary_info_page_icon.png │ ├── summary_markings.pal │ ├── summary_nature_slider.png │ ├── swap_line.png │ ├── swap_line_tx.png │ ├── ui_learn_move.png │ ├── unk_textbox_border.png │ ├── wireless_info_screen.bin │ ├── wireless_info_screen.pal │ ├── wireless_info_screen.png │ ├── wireless_link_display.bin │ ├── wireless_link_display.png │ └── wireless_link_icon.png ├── interface_fr │ ├── menu.png │ ├── menu1.pal │ ├── menu2.pal │ └── menu3.pal ├── 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 ├── items │ ├── icon_palettes │ │ ├── ability_capsule.pal │ │ ├── ability_patch.pal │ │ ├── abomasite.pal │ │ ├── absolite.pal │ │ ├── absorb_bulb.pal │ │ ├── acro_bike.pal │ │ ├── adamant_orb.pal │ │ ├── adrenaline_orb.pal │ │ ├── aerodactylite.pal │ │ ├── aggronite.pal │ │ ├── aguav_berry.pal │ │ ├── air_balloon.pal │ │ ├── alakazite.pal │ │ ├── aloraichium_z.pal │ │ ├── altarianite.pal │ │ ├── ampharosite.pal │ │ ├── amulet_coin.pal │ │ ├── antidote.pal │ │ ├── apicot_berry.pal │ │ ├── armor_fossil.pal │ │ ├── aspear_berry.pal │ │ ├── assault_vest.pal │ │ ├── audinite.pal │ │ ├── aurora_ticket.pal │ │ ├── awakening.pal │ │ ├── babiri_berry.pal │ │ ├── balm_mushroom.pal │ │ ├── banettite.pal │ │ ├── bead_mail.pal │ │ ├── beast_ball.pal │ │ ├── beedrillite.pal │ │ ├── belue_berry.pal │ │ ├── berry_juice.pal │ │ ├── berry_pouch.pal │ │ ├── berry_sweet.pal │ │ ├── bicycle.pal │ │ ├── big_malasada.pal │ │ ├── big_nugget.pal │ │ ├── big_root.pal │ │ ├── bike_voucher.pal │ │ ├── binding_band.pal │ │ ├── black_apricorn.pal │ │ ├── black_flute.pal │ │ ├── black_sludge.pal │ │ ├── black_type_enhancing_item.pal │ │ ├── blastoisinite.pal │ │ ├── blazikenite.pal │ │ ├── blue_apricorn.pal │ │ ├── blue_flute.pal │ │ ├── blue_orb.pal │ │ ├── blue_scarf.pal │ │ ├── blue_shard.pal │ │ ├── bluk_berry.pal │ │ ├── blunder_policy.pal │ │ ├── bottle_cap.pal │ │ ├── bright_powder.pal │ │ ├── bug_gem.pal │ │ ├── bug_memory.pal │ │ ├── bug_tm_hm.pal │ │ ├── buginium_z.pal │ │ ├── burn_drive.pal │ │ ├── burn_heal.pal │ │ ├── butterfrenite.pal │ │ ├── calcium.pal │ │ ├── cameruptite.pal │ │ ├── carbos.pal │ │ ├── card_key.pal │ │ ├── catching_charm.pal │ │ ├── cell_battery.pal │ │ ├── charcoal.pal │ │ ├── charizardite_x.pal │ │ ├── charizardite_y.pal │ │ ├── charti_berry.pal │ │ ├── cheri_berry.pal │ │ ├── cherish_ball.pal │ │ ├── chesto_berry.pal │ │ ├── chilan_berry.pal │ │ ├── chill_drive.pal │ │ ├── choice_band.pal │ │ ├── choice_scarf.pal │ │ ├── choice_specs.pal │ │ ├── chople_berry.pal │ │ ├── cleanse_tag.pal │ │ ├── clever_feather.pal │ │ ├── clover_sweet.pal │ │ ├── coba_berry.pal │ │ ├── coin_case.pal │ │ ├── colbur_berry.pal │ │ ├── comet_shard.pal │ │ ├── contest_pass.pal │ │ ├── cornn_berry.pal │ │ ├── cover_fossil.pal │ │ ├── cracked_pot.pal │ │ ├── crobatite.pal │ │ ├── custap_berry.pal │ │ ├── damp_rock.pal │ │ ├── dark_gem.pal │ │ ├── dark_memory.pal │ │ ├── dark_tm_hm.pal │ │ ├── darkinium_z.pal │ │ ├── dawn_stone.pal │ │ ├── decidium_z.pal │ │ ├── deep_sea_scale.pal │ │ ├── deep_sea_tooth.pal │ │ ├── destiny_knot.pal │ │ ├── devon_goods.pal │ │ ├── devon_scope.pal │ │ ├── dewgongite.pal │ │ ├── diancite.pal │ │ ├── dire_hit.pal │ │ ├── dive_ball.pal │ │ ├── dna_splicers.pal │ │ ├── douse_drive.pal │ │ ├── draco_plate.pal │ │ ├── dragon_fang.pal │ │ ├── dragon_gem.pal │ │ ├── dragon_memory.pal │ │ ├── dragon_scale.pal │ │ ├── dragon_tm_hm.pal │ │ ├── dragonium_z.pal │ │ ├── dread_plate.pal │ │ ├── dream_ball.pal │ │ ├── dream_mail.pal │ │ ├── dubious_disc.pal │ │ ├── durin_berry.pal │ │ ├── dusk_ball.pal │ │ ├── dusk_stone.pal │ │ ├── earth_plate.pal │ │ ├── eevium_z.pal │ │ ├── eject_button.pal │ │ ├── eject_pack.pal │ │ ├── electirizer.pal │ │ ├── electric_gem.pal │ │ ├── electric_memory.pal │ │ ├── electric_seed.pal │ │ ├── electric_tm_hm.pal │ │ ├── electrium_z.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_charm.pal │ │ ├── exp_share.pal │ │ ├── expert_belt.pal │ │ ├── fab_mail.pal │ │ ├── fairium_z.pal │ │ ├── fairy_gem.pal │ │ ├── fairy_memory.pal │ │ ├── fairy_tm_hm.pal │ │ ├── fame_checker.pal │ │ ├── fast_ball.pal │ │ ├── fighting_gem.pal │ │ ├── fighting_memory.pal │ │ ├── fighting_tm_hm.pal │ │ ├── fightinium_z.pal │ │ ├── figy_berry.pal │ │ ├── fire_gem.pal │ │ ├── fire_memory.pal │ │ ├── fire_stone.pal │ │ ├── fire_tm_hm.pal │ │ ├── firium_z.pal │ │ ├── fist_plate.pal │ │ ├── flame_orb.pal │ │ ├── flame_plate.pal │ │ ├── float_stone.pal │ │ ├── flower_sweet.pal │ │ ├── fluffy_tail.pal │ │ ├── flygonite.pal │ │ ├── flying_gem.pal │ │ ├── flying_memory.pal │ │ ├── flying_tm_hm.pal │ │ ├── flyinium_z.pal │ │ ├── focus_band.pal │ │ ├── focus_sash.pal │ │ ├── fossilized_bird.pal │ │ ├── fossilized_dino.pal │ │ ├── fossilized_drake.pal │ │ ├── fossilized_fish.pal │ │ ├── fresh_water.pal │ │ ├── friend_ball.pal │ │ ├── full_heal.pal │ │ ├── full_incense.pal │ │ ├── full_restore.pal │ │ ├── galarica_cuff.pal │ │ ├── galarica_wreath.pal │ │ ├── galladite.pal │ │ ├── ganlon_berry.pal │ │ ├── garchompite.pal │ │ ├── gardevoirite.pal │ │ ├── gengarite.pal │ │ ├── genius_feather.pal │ │ ├── ghost_gem.pal │ │ ├── ghost_memory.pal │ │ ├── ghost_tm_hm.pal │ │ ├── ghostium_z.pal │ │ ├── glalitite.pal │ │ ├── glitter_mail.pal │ │ ├── go_goggles.pal │ │ ├── gold_bottle_cap.pal │ │ ├── gold_teeth.pal │ │ ├── good_rod.pal │ │ ├── gracidea.pal │ │ ├── grass_gem.pal │ │ ├── grass_memory.pal │ │ ├── grass_tm_hm.pal │ │ ├── grassium_z.pal │ │ ├── grassy_seed.pal │ │ ├── great_ball.pal │ │ ├── green_apricorn.pal │ │ ├── green_scarf.pal │ │ ├── green_shard.pal │ │ ├── grepa_berry.pal │ │ ├── grip_claw.pal │ │ ├── griseous_orb.pal │ │ ├── ground_gem.pal │ │ ├── ground_memory.pal │ │ ├── ground_tm_hm.pal │ │ ├── groundium_z.pal │ │ ├── guard_spec.pal │ │ ├── gyaradosite.pal │ │ ├── haban_berry.pal │ │ ├── harbor_mail.pal │ │ ├── hard_stone.pal │ │ ├── heal_ball.pal │ │ ├── heal_powder.pal │ │ ├── health_feather.pal │ │ ├── heart_scale.pal │ │ ├── heat_rock.pal │ │ ├── heavy_ball.pal │ │ ├── heavy_duty_boots.pal │ │ ├── heracronite.pal │ │ ├── hoenn_fossil.pal │ │ ├── hondew_berry.pal │ │ ├── honey.pal │ │ ├── houndoominite.pal │ │ ├── hp_up.pal │ │ ├── hyper_potion.pal │ │ ├── iapapa_berry.pal │ │ ├── ice_gem.pal │ │ ├── ice_heal.pal │ │ ├── ice_memory.pal │ │ ├── ice_stone.pal │ │ ├── ice_tm_hm.pal │ │ ├── iceroot_carrot.pal │ │ ├── icicle_plate.pal │ │ ├── icium_z.pal │ │ ├── icy_rock.pal │ │ ├── incinium_z.pal │ │ ├── infinite_repel.pal │ │ ├── insect_plate.pal │ │ ├── iron.pal │ │ ├── iron_ball.pal │ │ ├── iron_pill.pal │ │ ├── iron_plate.pal │ │ ├── itemfinder.pal │ │ ├── jaboca_berry.pal │ │ ├── jaw_fossil.pal │ │ ├── kangaskhanite.pal │ │ ├── kanto_fossil.pal │ │ ├── kasib_berry.pal │ │ ├── kebia_berry.pal │ │ ├── kee_berry.pal │ │ ├── kelpsy_berry.pal │ │ ├── key.pal │ │ ├── kingdranite.pal │ │ ├── kinglerite.pal │ │ ├── kings_rock.pal │ │ ├── kommonium_z.pal │ │ ├── lagging_tail.pal │ │ ├── lansat_berry.pal │ │ ├── laprasite.pal │ │ ├── latiasite.pal │ │ ├── latiosite.pal │ │ ├── lava_cookie_and_letter.pal │ │ ├── lax_incense.pal │ │ ├── leaf_stone.pal │ │ ├── leftovers.pal │ │ ├── lemonade.pal │ │ ├── leppa_berry.pal │ │ ├── level_ball.pal │ │ ├── liechi_berry.pal │ │ ├── life_orb.pal │ │ ├── light_ball.pal │ │ ├── light_clay.pal │ │ ├── lopunnite.pal │ │ ├── love_ball.pal │ │ ├── love_sweet.pal │ │ ├── lucarionite.pal │ │ ├── luck_incense.pal │ │ ├── lucky_egg.pal │ │ ├── lucky_punch.pal │ │ ├── lum_berry.pal │ │ ├── luminous_moss.pal │ │ ├── lunalium_z.pal │ │ ├── lunar_wing.pal │ │ ├── lure_ball.pal │ │ ├── lustrous_orb.pal │ │ ├── luxury_ball.pal │ │ ├── lycanium_z.pal │ │ ├── mach_bike.pal │ │ ├── machampite.pal │ │ ├── macho_brace.pal │ │ ├── magma_emblem.pal │ │ ├── magma_stone.pal │ │ ├── magmarizer.pal │ │ ├── magnet.pal │ │ ├── mago_berry.pal │ │ ├── magost_berry.pal │ │ ├── manectite.pal │ │ ├── maranga_berry.pal │ │ ├── marshadium_z.pal │ │ ├── master_ball.pal │ │ ├── mawilite.pal │ │ ├── max_elixir.pal │ │ ├── max_ether.pal │ │ ├── max_potion.pal │ │ ├── max_repel.pal │ │ ├── meadow_plate.pal │ │ ├── mech_mail.pal │ │ ├── medichamite.pal │ │ ├── mega_bracelet.pal │ │ ├── mental_herb.pal │ │ ├── metagrossite.pal │ │ ├── metal_coat.pal │ │ ├── metal_powder.pal │ │ ├── meteorite.pal │ │ ├── metronome.pal │ │ ├── mewnium_z.pal │ │ ├── mewtwonite_x.pal │ │ ├── mewtwonite_y.pal │ │ ├── micle_berry.pal │ │ ├── miloticite.pal │ │ ├── mimikium_z.pal │ │ ├── mind_plate.pal │ │ ├── miracle_seed.pal │ │ ├── misty_seed.pal │ │ ├── moomoo_milk.pal │ │ ├── moon_ball.pal │ │ ├── moon_stone.pal │ │ ├── muscle_band.pal │ │ ├── muscle_feather.pal │ │ ├── mushroom.pal │ │ ├── mystic_ticket.pal │ │ ├── mystic_water.pal │ │ ├── n_lunarizer.pal │ │ ├── n_solarizer.pal │ │ ├── nanab_berry.pal │ │ ├── nest_ball.pal │ │ ├── net_ball.pal │ │ ├── never_melt_ice.pal │ │ ├── nomel_berry.pal │ │ ├── normal_gem.pal │ │ ├── normal_tm_hm.pal │ │ ├── normalium_z.pal │ │ ├── nugget.pal │ │ ├── oaks_parcel.pal │ │ ├── occa_berry.pal │ │ ├── odd_incense.pal │ │ ├── odd_keystone.pal │ │ ├── old_amber.pal │ │ ├── old_gateau.pal │ │ ├── old_key.pal │ │ ├── old_rod.pal │ │ ├── old_sea_map.pal │ │ ├── oran_berry.pal │ │ ├── orange_mail.pal │ │ ├── oval_charm.pal │ │ ├── oval_stone.pal │ │ ├── pamtre_berry.pal │ │ ├── paralyze_heal.pal │ │ ├── park_ball.pal │ │ ├── passho_berry.pal │ │ ├── payapa_berry.pal │ │ ├── pearl.pal │ │ ├── pearl_string.pal │ │ ├── pecha_berry.pal │ │ ├── persim_berry.pal │ │ ├── petaya_berry.pal │ │ ├── pidgeotite.pal │ │ ├── pikanium_z.pal │ │ ├── pikashunium_z.pal │ │ ├── pinap_berry.pal │ │ ├── pink_apricorn.pal │ │ ├── pink_nectar.pal │ │ ├── pink_scarf.pal │ │ ├── pinsirite.pal │ │ ├── pixie_plate.pal │ │ ├── plume_fossil.pal │ │ ├── poison_barb.pal │ │ ├── poison_gem.pal │ │ ├── poison_memory.pal │ │ ├── poison_tm_hm.pal │ │ ├── poisonium_z.pal │ │ ├── poke_ball.pal │ │ ├── poke_doll.pal │ │ ├── poke_flute.pal │ │ ├── poke_vial.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_weight.pal │ │ ├── pp_max.pal │ │ ├── pp_up.pal │ │ ├── pretty_feather.pal │ │ ├── primarium_z.pal │ │ ├── prism_scale.pal │ │ ├── prison_bottle.pal │ │ ├── protective_pads.pal │ │ ├── protector.pal │ │ ├── protein.pal │ │ ├── psychic_gem.pal │ │ ├── psychic_memory.pal │ │ ├── psychic_seed.pal │ │ ├── psychic_tm_hm.pal │ │ ├── psychium_z.pal │ │ ├── pure_incense.pal │ │ ├── purple_nectar.pal │ │ ├── purple_orb.pal │ │ ├── qualot_berry.pal │ │ ├── question_mark.pal │ │ ├── quick_ball.pal │ │ ├── quick_claw.pal │ │ ├── quick_powder.pal │ │ ├── rabuta_berry.pal │ │ ├── rainbow_pass.pal │ │ ├── rare_bone.pal │ │ ├── rare_candy.pal │ │ ├── rawst_berry.pal │ │ ├── razor_claw.pal │ │ ├── razor_fang.pal │ │ ├── razz_berry.pal │ │ ├── reaper_cloth.pal │ │ ├── red_apricorn.pal │ │ ├── red_card.pal │ │ ├── red_flute.pal │ │ ├── red_nectar.pal │ │ ├── red_orb.pal │ │ ├── red_scarf.pal │ │ ├── red_shard.pal │ │ ├── reins_of_unity.pal │ │ ├── relic_band.pal │ │ ├── relic_copper.pal │ │ ├── relic_gold.pal │ │ ├── relic_silver.pal │ │ ├── relic_statue.pal │ │ ├── relic_vase.pal │ │ ├── repeat_ball.pal │ │ ├── repel.pal │ │ ├── resist_feather.pal │ │ ├── retro_mail.pal │ │ ├── return_to_field_arrow.pal │ │ ├── reveal_glass.pal │ │ ├── revival_herb.pal │ │ ├── revive.pal │ │ ├── ribbon_sweet.pal │ │ ├── rindo_berry.pal │ │ ├── ring_target.pal │ │ ├── rock_gem.pal │ │ ├── rock_incense.pal │ │ ├── rock_memory.pal │ │ ├── rock_tm_hm.pal │ │ ├── rockium_z.pal │ │ ├── rocky_helmet.pal │ │ ├── room_service.pal │ │ ├── rose_incense.pal │ │ ├── roseli_berry.pal │ │ ├── rotom_catalog.pal │ │ ├── rowap_berry.pal │ │ ├── ruby.pal │ │ ├── rusted_shield.pal │ │ ├── rusted_sword.pal │ │ ├── sablenite.pal │ │ ├── sachet.pal │ │ ├── sacred_ash.pal │ │ ├── safari_ball.pal │ │ ├── safety_goggles.pal │ │ ├── sail_fossil.pal │ │ ├── salac_berry.pal │ │ ├── salamencite.pal │ │ ├── sapphire.pal │ │ ├── scanner.pal │ │ ├── sceptilite.pal │ │ ├── scizorite.pal │ │ ├── scope_lens.pal │ │ ├── sea_incense.pal │ │ ├── secret_key.pal │ │ ├── shaderoot_carrot.pal │ │ ├── shadow_mail.pal │ │ ├── sharp_beak.pal │ │ ├── sharpedonite.pal │ │ ├── shed_shell.pal │ │ ├── shell.pal │ │ ├── shiny_charm.pal │ │ ├── shiny_stone.pal │ │ ├── shoal_salt.pal │ │ ├── shock_drive.pal │ │ ├── shuca_berry.pal │ │ ├── silk_scarf.pal │ │ ├── silph_scope.pal │ │ ├── silver_powder.pal │ │ ├── sitrus_berry.pal │ │ ├── skull_fossil.pal │ │ ├── sky_plate.pal │ │ ├── slowbronite.pal │ │ ├── smoke_ball.pal │ │ ├── smooth_rock.pal │ │ ├── snorlium_z.pal │ │ ├── snowball.pal │ │ ├── soda_pop.pal │ │ ├── soft_sand.pal │ │ ├── solganium_z.pal │ │ ├── soot_sack.pal │ │ ├── soothe_bell.pal │ │ ├── soul_dew.pal │ │ ├── spell_tag.pal │ │ ├── spelon_berry.pal │ │ ├── splash_plate.pal │ │ ├── spooky_plate.pal │ │ ├── sport_ball.pal │ │ ├── ss_ticket.pal │ │ ├── star.pal │ │ ├── star_sweet.pal │ │ ├── starf_berry.pal │ │ ├── steel_gem.pal │ │ ├── steel_memory.pal │ │ ├── steel_tm_hm.pal │ │ ├── steelium_z.pal │ │ ├── steelixite.pal │ │ ├── stick.pal │ │ ├── sticky_barb.pal │ │ ├── stone_plate.pal │ │ ├── strawberry_sweet.pal │ │ ├── sun_stone.pal │ │ ├── super_potion.pal │ │ ├── super_repel.pal │ │ ├── super_rod.pal │ │ ├── swampertite.pal │ │ ├── sweet_apple.pal │ │ ├── sweet_heart.pal │ │ ├── swift_feather.pal │ │ ├── tamato_berry.pal │ │ ├── tanga_berry.pal │ │ ├── tapunium_z.pal │ │ ├── tart_apple.pal │ │ ├── tea.pal │ │ ├── teachy_tv.pal │ │ ├── terrain_extender.pal │ │ ├── thick_club.pal │ │ ├── throat_spray.pal │ │ ├── thunder_stone.pal │ │ ├── tm_case.pal │ │ ├── town_map.pal │ │ ├── toxic_orb.pal │ │ ├── toxic_plate.pal │ │ ├── training_band.pal │ │ ├── tri_pass.pal │ │ ├── tropic_mail.pal │ │ ├── twisted_spoon.pal │ │ ├── tyranitarite.pal │ │ ├── ultra_ball.pal │ │ ├── ultranecrozium_z.pal │ │ ├── up_grade.pal │ │ ├── utility_umbrella.pal │ │ ├── venusaurite.pal │ │ ├── vs_seeker.pal │ │ ├── wacan_berry.pal │ │ ├── wailmer_pail.pal │ │ ├── water_gem.pal │ │ ├── water_memory.pal │ │ ├── water_stone.pal │ │ ├── water_tm_hm.pal │ │ ├── waterium_z.pal │ │ ├── watmel_berry.pal │ │ ├── wave_incense.pal │ │ ├── wave_mail.pal │ │ ├── weakness_policy.pal │ │ ├── wepear_berry.pal │ │ ├── whipped_dream.pal │ │ ├── white_apricorn.pal │ │ ├── white_flute.pal │ │ ├── white_herb.pal │ │ ├── wide_lens.pal │ │ ├── wiki_berry.pal │ │ ├── wise_glasses.pal │ │ ├── wood_mail.pal │ │ ├── wooden_crown.pal │ │ ├── x_accuracy.pal │ │ ├── x_attack.pal │ │ ├── x_defend.pal │ │ ├── x_special.pal │ │ ├── x_special_defense.pal │ │ ├── x_speed.pal │ │ ├── yache_berry.pal │ │ ├── yellow_apricorn.pal │ │ ├── yellow_flute.pal │ │ ├── yellow_nectar.pal │ │ ├── yellow_scarf.pal │ │ ├── yellow_shard.pal │ │ ├── z_ring.pal │ │ ├── zap_plate.pal │ │ ├── zinc.pal │ │ └── zoom_lens.pal │ └── icons │ │ ├── ability_capsule.png │ │ ├── ability_patch.png │ │ ├── abomasite.png │ │ ├── absolite.png │ │ ├── absorb_bulb.png │ │ ├── acro_bike.png │ │ ├── adamant_orb.png │ │ ├── adrenaline_orb.png │ │ ├── aerodactylite.png │ │ ├── aggronite.png │ │ ├── aguav_berry.png │ │ ├── air_balloon.png │ │ ├── alakazite.png │ │ ├── aloraichium_z.png │ │ ├── altarianite.png │ │ ├── ampharosite.png │ │ ├── amulet_coin.png │ │ ├── antidote.png │ │ ├── apicot_berry.png │ │ ├── armor_fossil.png │ │ ├── aspear_berry.png │ │ ├── assault_vest.png │ │ ├── audinite.png │ │ ├── aurora_ticket.png │ │ ├── babiri_berry.png │ │ ├── balm_mushroom.png │ │ ├── banettite.png │ │ ├── basement_key.png │ │ ├── battle_stat_item.png │ │ ├── bead_mail.png │ │ ├── beast_ball.png │ │ ├── beedrillite.png │ │ ├── belue_berry.png │ │ ├── berry_juice.png │ │ ├── berry_pouch.png │ │ ├── berry_sweet.png │ │ ├── bicycle.png │ │ ├── big_malasada.png │ │ ├── big_mushroom.png │ │ ├── big_nugget.png │ │ ├── big_pearl.png │ │ ├── big_root.png │ │ ├── bike_voucher.png │ │ ├── binding_band.png │ │ ├── black_apricorn.png │ │ ├── black_belt.png │ │ ├── black_glasses.png │ │ ├── black_sludge.png │ │ ├── blastoisinite.png │ │ ├── blazikenite.png │ │ ├── blue_apricorn.png │ │ ├── bluk_berry.png │ │ ├── blunder_policy.png │ │ ├── bottle_cap.png │ │ ├── bright_powder.png │ │ ├── bug_gem.png │ │ ├── bug_memory.png │ │ ├── buginium_z.png │ │ ├── burn_drive.png │ │ ├── butterfrenite.png │ │ ├── cameruptite.png │ │ ├── card_key.png │ │ ├── catching_charm.png │ │ ├── cell_battery.png │ │ ├── charcoal.png │ │ ├── charizardite_x.png │ │ ├── charizardite_y.png │ │ ├── charti_berry.png │ │ ├── cheri_berry.png │ │ ├── cherish_ball.png │ │ ├── chesto_berry.png │ │ ├── chilan_berry.png │ │ ├── chill_drive.png │ │ ├── choice_band.png │ │ ├── choice_scarf.png │ │ ├── choice_specs.png │ │ ├── chople_berry.png │ │ ├── claw_fossil.png │ │ ├── cleanse_tag.png │ │ ├── clever_feather.png │ │ ├── clover_sweet.png │ │ ├── coba_berry.png │ │ ├── coin_case.png │ │ ├── colbur_berry.png │ │ ├── comet_shard.png │ │ ├── contest_pass.png │ │ ├── cornn_berry.png │ │ ├── cover_fossil.png │ │ ├── cracked_pot.png │ │ ├── crobatite.png │ │ ├── custap_berry.png │ │ ├── damp_rock.png │ │ ├── dark_gem.png │ │ ├── dark_memory.png │ │ ├── darkinium_z.png │ │ ├── dawn_stone.png │ │ ├── decidium_z.png │ │ ├── deep_sea_scale.png │ │ ├── deep_sea_tooth.png │ │ ├── destiny_knot.png │ │ ├── devon_goods.png │ │ ├── devon_scope.png │ │ ├── dewgongite.png │ │ ├── diancite.png │ │ ├── dive_ball.png │ │ ├── dna_splicers.png │ │ ├── dome_fossil.png │ │ ├── douse_drive.png │ │ ├── draco_plate.png │ │ ├── dragon_fang.png │ │ ├── dragon_gem.png │ │ ├── dragon_memory.png │ │ ├── dragon_scale.png │ │ ├── dragonium_z.png │ │ ├── dread_plate.png │ │ ├── dream_ball.png │ │ ├── dream_mail.png │ │ ├── dubious_disc.png │ │ ├── durin_berry.png │ │ ├── dusk_ball.png │ │ ├── dusk_stone.png │ │ ├── earth_plate.png │ │ ├── eevium_z.png │ │ ├── eject_button.png │ │ ├── eject_pack.png │ │ ├── electirizer.png │ │ ├── electric_gem.png │ │ ├── electric_memory.png │ │ ├── electric_seed.png │ │ ├── electrium_z.png │ │ ├── energy_root.png │ │ ├── enigma_berry.png │ │ ├── eon_ticket.png │ │ ├── escape_rope.png │ │ ├── ether.png │ │ ├── everstone.png │ │ ├── eviolite.png │ │ ├── exp_charm.png │ │ ├── exp_share.png │ │ ├── expert_belt.png │ │ ├── fab_mail.png │ │ ├── fairium_z.png │ │ ├── fairy_gem.png │ │ ├── fairy_memory.png │ │ ├── fame_checker.png │ │ ├── fast_ball.png │ │ ├── fighting_gem.png │ │ ├── fighting_memory.png │ │ ├── fightinium_z.png │ │ ├── figy_berry.png │ │ ├── fire_gem.png │ │ ├── fire_memory.png │ │ ├── fire_stone.png │ │ ├── firium_z.png │ │ ├── fist_plate.png │ │ ├── flame_orb.png │ │ ├── flame_plate.png │ │ ├── float_stone.png │ │ ├── flower_sweet.png │ │ ├── fluffy_tail.png │ │ ├── flute.png │ │ ├── flygonite.png │ │ ├── flying_gem.png │ │ ├── flying_memory.png │ │ ├── flyinium_z.png │ │ ├── focus_band.png │ │ ├── focus_sash.png │ │ ├── fossilized_bird.png │ │ ├── fossilized_dino.png │ │ ├── fossilized_drake.png │ │ ├── fossilized_fish.png │ │ ├── fresh_water.png │ │ ├── friend_ball.png │ │ ├── full_heal.png │ │ ├── full_incense.png │ │ ├── galarica_cuff.png │ │ ├── galarica_wreath.png │ │ ├── galladite.png │ │ ├── ganlon_berry.png │ │ ├── garchompite.png │ │ ├── gardevoirite.png │ │ ├── gem.png │ │ ├── gengarite.png │ │ ├── genius_feather.png │ │ ├── ghost_gem.png │ │ ├── ghost_memory.png │ │ ├── ghostium_z.png │ │ ├── glalitite.png │ │ ├── glitter_mail.png │ │ ├── go_goggles.png │ │ ├── gold_bottle_cap.png │ │ ├── gold_teeth.png │ │ ├── good_rod.png │ │ ├── gracidea.png │ │ ├── grass_gem.png │ │ ├── grass_memory.png │ │ ├── grassium_z.png │ │ ├── grassy_seed.png │ │ ├── great_ball.png │ │ ├── green_apricorn.png │ │ ├── grepa_berry.png │ │ ├── grip_claw.png │ │ ├── griseous_orb.png │ │ ├── ground_gem.png │ │ ├── ground_memory.png │ │ ├── groundium_z.png │ │ ├── gyaradosite.png │ │ ├── haban_berry.png │ │ ├── harbor_mail.png │ │ ├── hard_stone.png │ │ ├── heal_ball.png │ │ ├── health_feather.png │ │ ├── heart_scale.png │ │ ├── heat_rock.png │ │ ├── heavy_ball.png │ │ ├── heavy_duty_boots.png │ │ ├── helix_fossil.png │ │ ├── heracronite.png │ │ ├── hm.png │ │ ├── hondew_berry.png │ │ ├── honey.png │ │ ├── houndoominite.png │ │ ├── hp_up.png │ │ ├── iapapa_berry.png │ │ ├── ice_gem.png │ │ ├── ice_memory.png │ │ ├── ice_stone.png │ │ ├── iceroot_carrot.png │ │ ├── icicle_plate.png │ │ ├── icium_z.png │ │ ├── icy_rock.png │ │ ├── in_battle_herb.png │ │ ├── incinium_z.png │ │ ├── insect_plate.png │ │ ├── iron_ball.png │ │ ├── iron_pill.png │ │ ├── iron_plate.png │ │ ├── itemfinder.png │ │ ├── jaboca_berry.png │ │ ├── jaw_fossil.png │ │ ├── kangaskhanite.png │ │ ├── kasib_berry.png │ │ ├── kebia_berry.png │ │ ├── kee_berry.png │ │ ├── kelpsy_berry.png │ │ ├── kingdranite.png │ │ ├── kinglerite.png │ │ ├── kings_rock.png │ │ ├── kommonium_z.png │ │ ├── lagging_tail.png │ │ ├── lansat_berry.png │ │ ├── laprasite.png │ │ ├── large_potion.png │ │ ├── latiasite.png │ │ ├── latiosite.png │ │ ├── lava_cookie.png │ │ ├── lax_incense.png │ │ ├── leaf_stone.png │ │ ├── leftovers.png │ │ ├── lemonade.png │ │ ├── leppa_berry.png │ │ ├── letter.png │ │ ├── level_ball.png │ │ ├── liechi_berry.png │ │ ├── life_orb.png │ │ ├── lift_key.png │ │ ├── light_ball.png │ │ ├── light_clay.png │ │ ├── lopunnite.png │ │ ├── love_ball.png │ │ ├── love_sweet.png │ │ ├── lucarionite.png │ │ ├── luck_incense.png │ │ ├── lucky_egg.png │ │ ├── lucky_punch.png │ │ ├── lum_berry.png │ │ ├── luminous_moss.png │ │ ├── lunalium_z.png │ │ ├── lunar_wing.png │ │ ├── lure_ball.png │ │ ├── lustrous_orb.png │ │ ├── luxury_ball.png │ │ ├── lycanium_z.png │ │ ├── mach_bike.png │ │ ├── machampite.png │ │ ├── macho_brace.png │ │ ├── magma_emblem.png │ │ ├── magma_stone.png │ │ ├── magmarizer.png │ │ ├── magnet.png │ │ ├── mago_berry.png │ │ ├── magost_berry.png │ │ ├── manectite.png │ │ ├── maranga_berry.png │ │ ├── marshadium_z.png │ │ ├── master_ball.png │ │ ├── mawilite.png │ │ ├── max_revive.png │ │ ├── meadow_plate.png │ │ ├── mech_mail.png │ │ ├── medichamite.png │ │ ├── mega_bracelet.png │ │ ├── metagrossite.png │ │ ├── metal_coat.png │ │ ├── metal_powder.png │ │ ├── meteorite.png │ │ ├── metronome.png │ │ ├── mewnium_z.png │ │ ├── mewtwonite_x.png │ │ ├── mewtwonite_y.png │ │ ├── micle_berry.png │ │ ├── miloticite.png │ │ ├── mimikium_z.png │ │ ├── mind_plate.png │ │ ├── miracle_seed.png │ │ ├── misty_seed.png │ │ ├── moomoo_milk.png │ │ ├── moon_ball.png │ │ ├── moon_stone.png │ │ ├── muscle_band.png │ │ ├── muscle_feather.png │ │ ├── mystic_ticket.png │ │ ├── mystic_water.png │ │ ├── n_lunarizer.png │ │ ├── n_solarizer.png │ │ ├── nanab_berry.png │ │ ├── nest_ball.png │ │ ├── net_ball.png │ │ ├── never_melt_ice.png │ │ ├── nomel_berry.png │ │ ├── normal_gem.png │ │ ├── normalium_z.png │ │ ├── nugget.png │ │ ├── oaks_parcel.png │ │ ├── occa_berry.png │ │ ├── odd_incense.png │ │ ├── odd_keystone.png │ │ ├── old_amber.png │ │ ├── old_gateau.png │ │ ├── old_rod.png │ │ ├── old_sea_map.png │ │ ├── oran_berry.png │ │ ├── orange_mail.png │ │ ├── orb.png │ │ ├── oval_charm.png │ │ ├── oval_stone.png │ │ ├── pamtre_berry.png │ │ ├── park_ball.png │ │ ├── passho_berry.png │ │ ├── payapa_berry.png │ │ ├── pearl.png │ │ ├── pearl_string.png │ │ ├── pecha_berry.png │ │ ├── persim_berry.png │ │ ├── petaya_berry.png │ │ ├── pidgeotite.png │ │ ├── pikanium_z.png │ │ ├── pikashunium_z.png │ │ ├── pinap_berry.png │ │ ├── pink_apricorn.png │ │ ├── pink_nectar.png │ │ ├── pinsirite.png │ │ ├── pixie_plate.png │ │ ├── plume_fossil.png │ │ ├── poison_barb.png │ │ ├── poison_gem.png │ │ ├── poison_memory.png │ │ ├── poisonium_z.png │ │ ├── poke_ball.png │ │ ├── poke_doll.png │ │ ├── poke_flute.png │ │ ├── poke_vial.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_weight.png │ │ ├── pp_max.png │ │ ├── pp_up.png │ │ ├── premier_ball.png │ │ ├── pretty_feather.png │ │ ├── primarium_z.png │ │ ├── prism_scale.png │ │ ├── prison_bottle.png │ │ ├── protective_pads.png │ │ ├── protector.png │ │ ├── psychic_gem.png │ │ ├── psychic_memory.png │ │ ├── psychic_seed.png │ │ ├── psychium_z.png │ │ ├── pure_incense.png │ │ ├── purple_nectar.png │ │ ├── purple_orb.png │ │ ├── qualot_berry.png │ │ ├── question_mark.png │ │ ├── quick_ball.png │ │ ├── quick_claw.png │ │ ├── quick_powder.png │ │ ├── rabuta_berry.png │ │ ├── rainbow_pass.png │ │ ├── rare_bone.png │ │ ├── rare_candy.png │ │ ├── rawst_berry.png │ │ ├── razor_claw.png │ │ ├── razor_fang.png │ │ ├── razz_berry.png │ │ ├── reaper_cloth.png │ │ ├── red_apricorn.png │ │ ├── red_card.png │ │ ├── red_nectar.png │ │ ├── reins_of_unity.png │ │ ├── relic_band.png │ │ ├── relic_copper.png │ │ ├── relic_gold.png │ │ ├── relic_silver.png │ │ ├── relic_statue.png │ │ ├── relic_vase.png │ │ ├── repeat_ball.png │ │ ├── repel.png │ │ ├── resist_feather.png │ │ ├── retro_mail.png │ │ ├── return_to_field_arrow.png │ │ ├── reveal_glass.png │ │ ├── revival_herb.png │ │ ├── revive.png │ │ ├── ribbon_sweet.png │ │ ├── rindo_berry.png │ │ ├── ring_target.png │ │ ├── rock_gem.png │ │ ├── rock_incense.png │ │ ├── rock_memory.png │ │ ├── rockium_z.png │ │ ├── rocky_helmet.png │ │ ├── room1_key.png │ │ ├── room2_key.png │ │ ├── room4_key.png │ │ ├── room6_key.png │ │ ├── room_service.png │ │ ├── root_fossil.png │ │ ├── rose_incense.png │ │ ├── roseli_berry.png │ │ ├── rotom_catalog.png │ │ ├── rowap_berry.png │ │ ├── rusted_shield.png │ │ ├── rusted_sword.png │ │ ├── sablenite.png │ │ ├── sachet.png │ │ ├── sacred_ash.png │ │ ├── safari_ball.png │ │ ├── safety_goggles.png │ │ ├── sail_fossil.png │ │ ├── salac_berry.png │ │ ├── salamencite.png │ │ ├── scanner.png │ │ ├── scarf.png │ │ ├── sceptilite.png │ │ ├── scizorite.png │ │ ├── scope_lens.png │ │ ├── sea_incense.png │ │ ├── secret_key.png │ │ ├── shaderoot_carrot.png │ │ ├── shadow_mail.png │ │ ├── shard.png │ │ ├── sharp_beak.png │ │ ├── sharpedonite.png │ │ ├── shed_shell.png │ │ ├── shell_bell.png │ │ ├── shiny_charm.png │ │ ├── shiny_stone.png │ │ ├── shoal_shell.png │ │ ├── shock_drive.png │ │ ├── shuca_berry.png │ │ ├── silk_scarf.png │ │ ├── silph_scope.png │ │ ├── silver_powder.png │ │ ├── sitrus_berry.png │ │ ├── skull_fossil.png │ │ ├── sky_plate.png │ │ ├── slowbronite.png │ │ ├── smoke_ball.png │ │ ├── smooth_rock.png │ │ ├── snorlium_z.png │ │ ├── snowball.png │ │ ├── soda_pop.png │ │ ├── soft_sand.png │ │ ├── solganium_z.png │ │ ├── soot_sack.png │ │ ├── soothe_bell.png │ │ ├── soul_dew.png │ │ ├── spell_tag.png │ │ ├── spelon_berry.png │ │ ├── splash_plate.png │ │ ├── spooky_plate.png │ │ ├── sport_ball.png │ │ ├── ss_ticket.png │ │ ├── star_piece.png │ │ ├── star_sweet.png │ │ ├── stardust.png │ │ ├── starf_berry.png │ │ ├── status_heal.png │ │ ├── steel_gem.png │ │ ├── steel_memory.png │ │ ├── steelium_z.png │ │ ├── steelixite.png │ │ ├── stick.png │ │ ├── sticky_barb.png │ │ ├── stone_plate.png │ │ ├── storage_key.png │ │ ├── strawberry_sweet.png │ │ ├── sun_stone.png │ │ ├── super_rod.png │ │ ├── swampertite.png │ │ ├── sweet_apple.png │ │ ├── sweet_heart.png │ │ ├── swift_feather.png │ │ ├── tamato_berry.png │ │ ├── tanga_berry.png │ │ ├── tapunium_z.png │ │ ├── tart_apple.png │ │ ├── tea.png │ │ ├── teachy_tv.png │ │ ├── terrain_extender.png │ │ ├── thick_club.png │ │ ├── throat_spray.png │ │ ├── thunder_stone.png │ │ ├── timer_ball.png │ │ ├── tiny_mushroom.png │ │ ├── tm.png │ │ ├── tm_case.png │ │ ├── town_map.png │ │ ├── toxic_orb.png │ │ ├── toxic_plate.png │ │ ├── tri_pass.png │ │ ├── tropic_mail.png │ │ ├── twisted_spoon.png │ │ ├── tyranitarite.png │ │ ├── ultra_ball.png │ │ ├── ultranecrozium_z.png │ │ ├── up_grade.png │ │ ├── utility_umbrella.png │ │ ├── venusaurite.png │ │ ├── vitamin.png │ │ ├── vs_seeker.png │ │ ├── wacan_berry.png │ │ ├── wailmer_pail.png │ │ ├── water_gem.png │ │ ├── water_memory.png │ │ ├── water_stone.png │ │ ├── waterium_z.png │ │ ├── watmel_berry.png │ │ ├── wave_incense.png │ │ ├── wave_mail.png │ │ ├── weakness_policy.png │ │ ├── wepear_berry.png │ │ ├── whipped_dream.png │ │ ├── white_apricorn.png │ │ ├── wide_lens.png │ │ ├── wiki_berry.png │ │ ├── wise_glasses.png │ │ ├── wood_mail.png │ │ ├── wooden_crown.png │ │ ├── x_special_defense.png │ │ ├── yache_berry.png │ │ ├── yellow_apricorn.png │ │ ├── yellow_nectar.png │ │ ├── z_ring.png │ │ ├── zap_plate.png │ │ └── zoom_lens.png ├── link │ ├── gba.png │ ├── gba_pal2.pal │ ├── minigame_digits.png │ └── minigame_digits2.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 ├── minigame_countdown │ ├── 321start.png │ └── 321start_static.png ├── misc │ ├── bag.pal │ ├── bag_female.png │ ├── bag_male.png │ ├── birch_bag.png │ ├── birch_bag_map.bin │ ├── birch_grass.png │ ├── birch_grass_map.bin │ ├── cave_transition.png │ ├── cave_transition_black.pal │ ├── cave_transition_enter.pal │ ├── cave_transition_exit.pal │ ├── cave_transition_map.bin │ ├── cave_transition_white.pal │ ├── clock_small.png │ ├── confetti.png │ ├── darkness_field_move_streaks.png │ ├── darkness_field_move_streaks_map.bin │ ├── decoration_putting_away_cursor.png │ ├── deoxys1.pal │ ├── deoxys10.pal │ ├── deoxys11.pal │ ├── deoxys2.pal │ ├── deoxys3.pal │ ├── deoxys4.pal │ ├── deoxys5.pal │ ├── deoxys6.pal │ ├── deoxys7.pal │ ├── deoxys8.pal │ ├── deoxys9.pal │ ├── deoxys_rock_fragment_bottom_left.png │ ├── deoxys_rock_fragment_bottom_right.png │ ├── deoxys_rock_fragment_top_left.png │ ├── deoxys_rock_fragment_top_right.png │ ├── diploma.png │ ├── diploma_hoenn.pal │ ├── diploma_map.bin │ ├── diploma_national.pal │ ├── egg_hatch.png │ ├── egg_shard.png │ ├── emotion_exclamation.png │ ├── emotion_heart.png │ ├── emotion_question.png │ ├── evo_sparkle.png │ ├── field_move_streaks.png │ ├── field_move_streaks_map.bin │ ├── hof_monitor_big.png │ ├── hof_monitor_small.png │ ├── japanese_hof.png │ ├── main_menu_bg.pal │ ├── main_menu_text.pal │ ├── mirage_tower.bin │ ├── mirage_tower.png │ ├── mirage_tower_crumbles.png │ ├── mon_markings.png │ ├── mon_markings_menu.png │ ├── option_menu_equals_sign.png │ ├── option_menu_text.pal │ ├── pokeball_glow.png │ ├── pokeball_selection.png │ ├── pokecenter_monitor │ │ ├── 0.png │ │ └── 1.png │ ├── rotating_gate_1.png │ ├── rotating_gate_2.png │ ├── rotating_gate_3.png │ ├── rotating_gate_4.png │ ├── rotating_gate_5.png │ ├── rotating_gate_6.png │ ├── rotating_gate_7.png │ ├── rotating_gate_8.png │ ├── spotlight.png │ ├── starter_circle.png │ └── trainer_hill_ereader.pal ├── 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 │ │ ├── birth_island_stone.pal │ │ ├── breloom.pal │ │ ├── brendan.pal │ │ ├── brendan_reflection.pal │ │ ├── bridge_reflection.pal │ │ ├── cable_car.pal │ │ ├── celebi.pal │ │ ├── cynthia.pal │ │ ├── deoxys.pal │ │ ├── dewgong.pal │ │ ├── enemy_zigzagoon.pal │ │ ├── feraligatr.pal │ │ ├── groudon.pal │ │ ├── groudon_reflection.pal │ │ ├── gyarados.pal │ │ ├── gyarados_shiny.pal │ │ ├── haxorus.pal │ │ ├── haxorus_shiny.pal │ │ ├── heatran.pal │ │ ├── ho_oh.pal │ │ ├── jirachi.pal │ │ ├── kyogre.pal │ │ ├── kyogre_reflection.pal │ │ ├── lugia.pal │ │ ├── may.pal │ │ ├── may_reflection.pal │ │ ├── moving_box.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 │ │ ├── player_underwater.pal │ │ ├── poochyena.pal │ │ ├── quinty_plump.pal │ │ ├── quinty_plump_reflection.pal │ │ ├── red_leaf.pal │ │ ├── regigigas.pal │ │ ├── ruby_sapphire_brendan.pal │ │ ├── ruby_sapphire_may.pal │ │ ├── salamence.pal │ │ ├── sandslash.pal │ │ ├── ss_tidal.pal │ │ ├── submarine_shadow.pal │ │ ├── truck.pal │ │ ├── unused_palette.pal │ │ └── vigoroth.pal │ └── pics │ │ ├── berry_trees │ │ ├── aguav.png │ │ ├── aspear.png │ │ ├── cheri.png │ │ ├── chesto.png │ │ ├── chople.png │ │ ├── colbur.png │ │ ├── cornn.png │ │ ├── custap.png │ │ ├── dirt_pile.png │ │ ├── durin.png │ │ ├── figy.png │ │ ├── grepa.png │ │ ├── haban.png │ │ ├── hondew.png │ │ ├── iapapa.png │ │ ├── jaboca.png │ │ ├── kasib.png │ │ ├── kebia.png │ │ ├── kelpsy.png │ │ ├── lansat.png │ │ ├── leppa.png │ │ ├── liechi.png │ │ ├── lum.png │ │ ├── mago.png │ │ ├── micle.png │ │ ├── nomel.png │ │ ├── occa.png │ │ ├── oran.png │ │ ├── pamtre.png │ │ ├── payapa.png │ │ ├── pecha.png │ │ ├── persim.png │ │ ├── pomeg.png │ │ ├── rabuta.png │ │ ├── rawst.png │ │ ├── razz.png │ │ ├── roseli.png │ │ ├── rowap.png │ │ ├── shuca.png │ │ ├── sitrus.png │ │ ├── spelon.png │ │ ├── sprout.png │ │ ├── tamato.png │ │ ├── tanga.png │ │ ├── wepear.png │ │ ├── wiki.png │ │ └── yache.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 │ │ ├── birchs_bag.png │ │ ├── birth_island_stone.png │ │ ├── breakable_rock.png │ │ ├── cable_car.png │ │ ├── cuttable_tree.png │ │ ├── fossil.png │ │ ├── gold_item_ball.png │ │ ├── item_ball.png │ │ ├── mega_stone.png │ │ ├── moving_box.png │ │ ├── mr_brineys_boat.png │ │ ├── pushable_boulder.png │ │ ├── ss_tidal.png │ │ ├── statue.png │ │ ├── submarine_shadow.png │ │ └── truck.png │ │ ├── people │ │ ├── artist.png │ │ ├── baneful.png │ │ ├── beauty.png │ │ ├── black_belt.png │ │ ├── boy_1.png │ │ ├── boy_2.png │ │ ├── boy_3.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 │ │ ├── cameraman.png │ │ ├── camper.png │ │ ├── contest_judge.png │ │ ├── cook.png │ │ ├── cycling_triathlete_f.png │ │ ├── cycling_triathlete_m.png │ │ ├── cynthia.png │ │ ├── devon_employee.png │ │ ├── elite_four │ │ │ ├── drake.png │ │ │ ├── glacia.png │ │ │ ├── phoebe.png │ │ │ └── sidney.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 │ │ │ ├── brawly.png │ │ │ ├── flannery.png │ │ │ ├── juan.png │ │ │ ├── liza.png │ │ │ ├── norman.png │ │ │ ├── roxanne.png │ │ │ ├── tate.png │ │ │ ├── wattson.png │ │ │ └── winona.png │ │ ├── hex_maniac.png │ │ ├── hiker.png │ │ ├── hot_springs_old_woman.png │ │ ├── lass.png │ │ ├── leaf.png │ │ ├── link_receptionist.png │ │ ├── little_boy.png │ │ ├── little_girl.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 │ │ ├── mystery_event_deliveryman.png │ │ ├── ninja_boy.png │ │ ├── nurse.png │ │ ├── old_man.png │ │ ├── old_woman.png │ │ ├── picnicker.png │ │ ├── pokefan_f.png │ │ ├── pokefan_m.png │ │ ├── prof_birch.png │ │ ├── psychic_m.png │ │ ├── quinty_plump.png │ │ ├── red.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_m.png │ │ ├── scientist_1.png │ │ ├── scientist_2.png │ │ ├── scott.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 │ │ ├── tuber_f.png │ │ ├── tuber_m.png │ │ ├── tuber_m_swimming.png │ │ ├── twin.png │ │ ├── union_room_attendant.png │ │ ├── unused_woman.png │ │ ├── wallace.png │ │ ├── wally.png │ │ ├── woman_1.png │ │ ├── woman_2.png │ │ ├── woman_3.png │ │ ├── woman_4.png │ │ ├── woman_5.png │ │ └── youngster.png │ │ └── pokemon │ │ ├── articuno.png │ │ ├── azumarill.png │ │ ├── azurill.png │ │ ├── breloom.png │ │ ├── carbink.png │ │ ├── celebi.png │ │ ├── chansey.png │ │ ├── deoxys.png │ │ ├── dewgong.png │ │ ├── diancie.png │ │ ├── dusclops.png │ │ ├── enemy_zigzagoon.png │ │ ├── entei.png │ │ ├── feraligatr.png │ │ ├── groudon.png │ │ ├── gyarados.png │ │ ├── haxorus.png │ │ ├── haxorus_shiny.png │ │ ├── heatran.png │ │ ├── ho_oh.png │ │ ├── jirachi.png │ │ ├── kecleon.png │ │ ├── kirlia.png │ │ ├── kyogre.png │ │ ├── latias_latios.png │ │ ├── lugia.png │ │ ├── mew.png │ │ ├── mewtwo.png │ │ ├── moltres.png │ │ ├── pikachu.png │ │ ├── poochyena.png │ │ ├── raikou.png │ │ ├── rayquaza.png │ │ ├── rayquaza_still.png │ │ ├── regi.png │ │ ├── regice.png │ │ ├── regigigas.png │ │ ├── regirock.png │ │ ├── registeel.png │ │ ├── salamence.png │ │ ├── sandslash.png │ │ ├── skitty.png │ │ ├── sudowoodo.png │ │ ├── suicune.png │ │ ├── vigoroth.png │ │ ├── wingull.png │ │ ├── zapdos.png │ │ └── zigzagoon.png ├── 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 │ ├── gold.pal │ ├── gray.pal │ ├── green.pal │ ├── indigo.pal │ ├── liteblue.pal │ ├── 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 │ ├── HGSS_SelectBar.bin │ ├── HGSS_SelectBar_clear.bin │ ├── HGSS_palette_default.pal │ ├── HGSS_palette_default_dark.pal │ ├── HGSS_palette_national.pal │ ├── HGSS_palette_national_dark.pal │ ├── HGSS_palette_search_menu.pal │ ├── HGSS_palette_search_menu_dark.pal │ ├── HGSS_palette_search_results.pal │ ├── HGSS_palette_search_results_dark.pal │ ├── HGSS_tilemap_cry_screen.bin │ ├── HGSS_tilemap_evo_screen.bin │ ├── HGSS_tilemap_evo_screen_PE.bin │ ├── HGSS_tilemap_forms_screen.bin │ ├── HGSS_tilemap_info_screen.bin │ ├── HGSS_tilemap_list_screen.bin │ ├── HGSS_tilemap_list_screen_underlay.bin │ ├── HGSS_tilemap_search_screen_hoenn.bin │ ├── HGSS_tilemap_search_screen_national.bin │ ├── HGSS_tilemap_size_screen.bin │ ├── HGSS_tilemap_start_menu.bin │ ├── HGSS_tilemap_start_menu_search_results.bin │ ├── HGSS_tilemap_stats_screen.bin │ ├── HGSS_tileset_interface.png │ ├── HGSS_tileset_interface_DECA.png │ ├── HGSS_tileset_menu1.png │ ├── HGSS_tileset_menu2.png │ ├── HGSS_tileset_menu3.png │ ├── HGSS_tileset_menu_list.png │ ├── HGSS_tileset_menu_list_DECA.png │ ├── HGSS_tileset_menu_search.png │ ├── HGSS_tileset_menu_search_DECA.png │ ├── RES_HGSS_palette.pal │ ├── area_glow.png │ ├── area_marker.png │ ├── area_unknown.png │ ├── arrows.png │ ├── bg_hoenn.pal │ ├── caught_ball.png │ ├── caught_screen.pal │ ├── cry_meter.png │ ├── cry_meter_map.bin │ ├── cry_meter_needle.png │ ├── cry_screen_bg │ ├── cry_screen_bg.png │ ├── noball_unused.png │ ├── size_silhouette.pal │ └── stat_bars.png ├── pokemon │ ├── abomasnow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── 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 │ ├── accelgor │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aegislash │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── blade │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── 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 │ ├── alcremie │ │ ├── back.png │ │ ├── caramel_swirl │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── front.png │ │ ├── icon.png │ │ ├── lemon_cream │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── matcha_cream │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── mint_cream │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── normal.pal │ │ ├── rainbow_swirl │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── ruby_cream │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── ruby_swirl │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── salted_cream │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── shiny.pal │ ├── alolan_diglett │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_dugtrio │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_exeggutor │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_geodude │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_golem │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_graveler │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_grimer │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_marowak │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_meowth │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_muk │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_ninetales │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_persian │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_raichu │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_raticate │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_rattata │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_sandshrew │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_sandslash │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alolan_vulpix │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alomomola │ │ ├── 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 │ ├── amaura │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ambipom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── amoonguss │ │ ├── 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 │ ├── appletun │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── applin │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── araquanid │ │ ├── back.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 │ ├── arceus │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── bug │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── dark │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── dragon │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── electric │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── fairy │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── fighting │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── fire │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── flying │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── ghost │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── grass │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── ground │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── ice │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── poison │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── psychic │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── rock │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ ├── steel │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── water │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── archen │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── archeops │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arctovish │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arctozolt │ │ ├── back.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 │ ├── aromatisse │ │ ├── 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 │ ├── arrokuda │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── articuno │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── audino │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aurorus │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── avalugg │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── axew │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── azelf │ │ ├── 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 │ ├── barbaracle │ │ ├── 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 │ ├── barraskewda │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── basculin │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── blue_striped │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bastiodon │ │ ├── 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 │ ├── beartic │ │ ├── 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 │ ├── beheeyem │ │ ├── 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 │ ├── bergmite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bewear │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bibarel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bidoof │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── binacle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bisharp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blacephalon │ │ ├── back.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 │ ├── blipbug │ │ ├── back.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 │ ├── blitzle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── boldore │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── boltund │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bonsly │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bouffalant │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bounsweet │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── braixen │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── braviary │ │ ├── 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 │ ├── brionne │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bronzong │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bronzor │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bruxish │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── budew │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── buizel │ │ ├── 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 │ ├── buneary │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bunnelby │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── burmy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── plant │ │ │ └── footprint.png │ │ ├── sandy_cloak │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ └── trash_cloak │ │ │ ├── anim_front.png │ │ │ ├── back.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 │ ├── buzzwole │ │ ├── back.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 │ ├── calyrex │ │ ├── back.png │ │ ├── front.png │ │ ├── ice_rider │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shadow_rider │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── shiny.pal │ ├── camerupt │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── carbink │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── carkol │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── carnivine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── carracosta │ │ ├── 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.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── rainy │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ ├── snowy │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── sunny │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.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 │ ├── celesteela │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── centiskorch │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chandelure │ │ ├── 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 │ ├── charjabug │ │ ├── back.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 │ ├── chatot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cherrim │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── sunshine │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── cherubi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chesnaught │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chespin │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chewtle │ │ ├── back.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 │ ├── chimchar │ │ ├── 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 │ ├── chingling │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cinccino │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cinderace │ │ ├── back.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 │ ├── clauncher │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clawitzer │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clawitzer_redux │ │ ├── back.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 │ ├── clobbopus │ │ ├── back.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 │ ├── coalossal │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cobalion │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cofagrigus │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── combee │ │ ├── anim_front.png │ │ ├── anim_frontf.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 │ ├── comfey │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── conkeldurr │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── copperajah │ │ ├── back.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 │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corviknight │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corvisquire │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cosmoem │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cosmog │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cottonee │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crabominable │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crabrawler │ │ ├── back.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 │ ├── cramorant │ │ ├── back.png │ │ ├── front.png │ │ ├── gorging │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── gulping │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cranidos │ │ ├── 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 │ ├── cresselia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── croagunk │ │ ├── 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 │ ├── crustle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cryogonal │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cubchoo │ │ ├── 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 │ ├── cufant │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cursola │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cutiefly │ │ ├── back.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 │ ├── darkrai │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── darmanitan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── zen_mode │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── dartrix │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── darumaka │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── decidueye │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dedenne │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── deerling │ │ ├── anim_front.png │ │ ├── autumn │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ ├── summer │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── winter │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── deino │ │ ├── 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 │ ├── delphox │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── deoxys │ │ ├── anim_front.png │ │ ├── attack │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── back.png │ │ ├── defense │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── speed │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── dewgong │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── mega_dewgong │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dewleon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dewott │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dewpider │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dhelmise │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dialga │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── diancie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── diggersby │ │ ├── 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 │ ├── dottler │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── doublade │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dracovish │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dracozolt │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragalge │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragapult │ │ ├── back.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 │ ├── drakloak │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drampa │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drapion │ │ ├── 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 │ ├── drednaw │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dreepy │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drifblim │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drifloon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drilbur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drizzile │ │ ├── back.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 │ ├── druddigon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dubwool │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ducklett │ │ ├── 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 │ ├── duosion │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── duraludon │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── durant │ │ ├── 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 │ ├── dusknoir │ │ ├── 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 │ ├── dwebble │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── eelektrik │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── eelektross │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── eevee │ │ ├── anim_front.png │ │ ├── anim_frontf.png │ │ ├── back.png │ │ ├── backf.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── egg │ │ ├── anim_front.png │ │ ├── front.png │ │ ├── icon.png │ │ └── normal.pal │ ├── eiscue │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── noice_face │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ekans │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── eldegoss │ │ ├── back.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 │ ├── electivire │ │ ├── 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 │ ├── elgyem │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── emboar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── emolga │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── empoleon │ │ ├── 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 │ ├── escavalier │ │ ├── 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 │ ├── espurr │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── eternatus │ │ ├── back.png │ │ ├── eternamax │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── excadrill │ │ ├── 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 │ ├── falinks │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── farfetchd │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── 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 │ ├── fennekin │ │ ├── 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 │ ├── ferroseed │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ferrothorn │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── finneon │ │ ├── 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 │ ├── flabebe │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── blue_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── orange_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ ├── white_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── yellow_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── flapple │ │ ├── back.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 │ ├── fletchinder │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── fletchling │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── floatzel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── floette │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── blue_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── eternal_flower │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── orange_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ ├── white_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── yellow_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── florges │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── blue_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── orange_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ ├── white_flower │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── yellow_flower │ │ │ ├── anim_front.png │ │ │ ├── back.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 │ ├── fomantis │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── foongus │ │ ├── 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 │ ├── fraxure │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── frillish │ │ ├── anim_front.png │ │ ├── anim_frontf.png │ │ ├── back.png │ │ ├── backf.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── iconf.png │ │ ├── normal.pal │ │ ├── normalf.pal │ │ ├── shiny.pal │ │ └── shinyf.pal │ ├── froakie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── frogadier │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── froslass │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── frosmoth │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── furfrou │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── dandy_trim │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── debutante_trim │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── diamond_trim │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── heart_trim │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── kabuki_trim │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── la_reine_trim │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── matron_trim │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── normal.pal │ │ ├── pharaoh_trim │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ └── star_trim │ │ │ ├── anim_front.png │ │ │ ├── back.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 │ ├── gabite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gallade │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── galvantula │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── garbodor │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── garchomp │ │ ├── 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 │ ├── gastrodon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── east_sea │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── genesect │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── burn_drive │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── chill_drive │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── douse_drive │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── shock_drive │ │ │ ├── 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 │ ├── gible │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gigalith │ │ ├── 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 │ ├── giratina │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── origin │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── shiny.pal │ ├── glaceon │ │ ├── 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 │ ├── glameow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── glastrier │ │ ├── back.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 │ ├── gliscor │ │ ├── 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 │ ├── gogoat │ │ ├── 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 │ ├── golett │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golisopod │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golurk │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── goodra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── goomy │ │ ├── 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 │ ├── gossifleur │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gothita │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gothitelle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gothorita │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gourgeist │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── large │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── normal.pal │ │ ├── shiny.pal │ │ ├── small │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── super │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── granbull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grapploct │ │ ├── back.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 │ ├── greedent │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── greninja │ │ ├── anim_front.png │ │ ├── ash │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── 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 │ ├── grimmsnarl │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grookey │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grotle │ │ ├── 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 │ ├── grubbin │ │ ├── back.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 │ ├── gumshoos │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gurdurr │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── guzzlord │ │ ├── back.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 │ ├── hakamo_o │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── happiny │ │ ├── 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 │ ├── hatenna │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hatterene │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hattrem │ │ ├── back.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 │ ├── hawlucha │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── haxorus │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── heatmor │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── heatran │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── heliolisk │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── helioptile │ │ ├── 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 │ ├── herdier │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hippopotas │ │ ├── anim_front.png │ │ ├── anim_frontf.png │ │ ├── back.png │ │ ├── backf.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── normalf.pal │ │ ├── shiny.pal │ │ └── shinyf.pal │ ├── hippowdon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── backf.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── normalf.pal │ │ ├── shiny.pal │ │ └── shinyf.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 │ ├── honchkrow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── honedge │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hoopa │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── unbound │ │ │ ├── anim_front.png │ │ │ ├── back.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 │ ├── hydreigon │ │ ├── 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 │ │ ├── pal0.pal │ │ ├── pal1.pal │ │ ├── pal2.pal │ │ ├── pal3.pal │ │ ├── pal4.pal │ │ ├── pal5.pal │ │ └── pal6.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 │ ├── impidimp │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── incineroar │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── indeedee │ │ ├── back.png │ │ ├── female │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── infernape │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── infernape_redux │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── inkay │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── inteleon │ │ ├── back.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 │ ├── jangmo_o │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jellicent │ │ ├── anim_front.png │ │ ├── anim_frontf.png │ │ ├── back.png │ │ ├── backf.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── iconf.png │ │ ├── normal.pal │ │ ├── normalf.pal │ │ ├── shiny.pal │ │ └── shinyf.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 │ ├── joltik │ │ ├── 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 │ ├── karrablast │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kartana │ │ ├── back.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 │ ├── keldeo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── resolute │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.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 │ ├── klang │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── klefki │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── klink │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── klinklang │ │ ├── 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 │ ├── komala │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kommo_o │ │ ├── back.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 │ ├── kricketot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kricketune │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── krokorok │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── krookodile │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kubfu │ │ ├── back.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 │ ├── kyurem │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── black │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── white │ │ │ ├── anim_front.png │ │ │ ├── back.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 │ ├── lampent │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── landorus │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── therian │ │ │ ├── anim_front.png │ │ │ ├── back.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 │ ├── larvesta │ │ ├── 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 │ ├── leafeon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── leavanny │ │ ├── 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 │ ├── lickilicky │ │ ├── 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 │ ├── liepard │ │ ├── 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 │ ├── lilligant │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lillipup │ │ ├── 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 │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── litleo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── litten │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── litwick │ │ ├── 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 │ ├── lopunny │ │ ├── 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 │ ├── lucario │ │ ├── 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 │ ├── lumineon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lunala │ │ ├── back.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 │ ├── lurantis │ │ ├── back.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 │ ├── luxio │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── luxray │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── luxray_redux │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lycanroc │ │ ├── back.png │ │ ├── dusk │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── front.png │ │ ├── icon.png │ │ ├── midnight │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── 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 │ ├── magearna │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── original_color │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.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 │ ├── magmortar │ │ ├── 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 │ ├── magnezone │ │ ├── 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 │ ├── malamar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mamoswine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── manaphy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mandibuzz │ │ ├── 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 │ ├── mantyke │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── maractus │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mareanie │ │ ├── back.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 │ ├── marshadow │ │ ├── back.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_abomasnow │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_absol │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_aerodactyl │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_aggron │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_alakazam │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_altaria │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_ampharos │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_audino │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_banette │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_beedrill │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_blastoise │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_blaziken │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_breloom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_bruxish │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_butterfree │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_camerupt │ │ ├── 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_crobat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_diancie │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_dragonite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_empoleon │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_feraligatr_x │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_feraligatr_y │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_flygon │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_gallade │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_garchomp │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_gardevoir │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_gengar │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_glalie │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_granbull │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_gyarados │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_gyarados_y │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_haxorus │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_heracross │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_hitmonchan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_hitmonlee │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_hitmontop │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_houndoom │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_infernape │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_jellicent │ │ ├── anim_front.png │ │ ├── anim_frontf.png │ │ ├── back.png │ │ ├── backf.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── iconf.png │ │ ├── normal.pal │ │ ├── normalf.pal │ │ ├── shiny.pal │ │ └── shinyf.pal │ ├── mega_kangaskhan │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_kingdra │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_kingdra_y │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_kingler │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_krookodile │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_lanturn │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_lapras │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_lapras_x │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_latias │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_latios │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_lopunny │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_lucario │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_luxray │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_machamp │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_magnezone │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_manectric │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_mawile │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_medicham │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_meganium │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_metagross │ │ ├── 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_milotic │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_nidoking │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_nidoqueen │ │ ├── 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_quagsire │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_rayquaza │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_relicanth │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_sableye │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_salamence │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_sandslash │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_sceptile │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_scizor │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_sharpedo │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_shedinja │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_shuckle │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_skarmory │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_slaking │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_slowbro │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_slowking │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_steelix │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_swalot │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_swampert │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_torterra │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_toucannon │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_typhlosion │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mega_tyranitar │ │ ├── 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 │ ├── melmetal │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meloetta │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── pirouette │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── shiny.pal │ ├── meltan │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meowstic │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── female │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meowth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mesprit │ │ ├── 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 │ ├── mienfoo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mienshao │ │ ├── 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 │ ├── milcery │ │ ├── back.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 │ ├── mime_jr │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mimikyu │ │ ├── back.png │ │ ├── busted │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── minccino │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── minior │ │ ├── back.png │ │ ├── core │ │ │ ├── back.png │ │ │ ├── blue │ │ │ │ ├── icon.png │ │ │ │ └── normal.pal │ │ │ ├── front.png │ │ │ ├── green │ │ │ │ ├── icon.png │ │ │ │ └── normal.pal │ │ │ ├── indigo │ │ │ │ ├── icon.png │ │ │ │ └── normal.pal │ │ │ ├── orange │ │ │ │ ├── icon.png │ │ │ │ └── normal.pal │ │ │ ├── red │ │ │ │ ├── icon.png │ │ │ │ └── normal.pal │ │ │ ├── shiny.pal │ │ │ ├── violet │ │ │ │ ├── icon.png │ │ │ │ └── normal.pal │ │ │ └── yellow │ │ │ │ ├── icon.png │ │ │ │ └── normal.pal │ │ ├── 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 │ ├── mismagius │ │ ├── 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 │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── monferno │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── morelull │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── morgrem │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── morpeko │ │ ├── back.png │ │ ├── front.png │ │ ├── hangry │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mothim │ │ ├── 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 │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mr_rime │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mudbray │ │ ├── back.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 │ ├── mudsdale │ │ ├── back.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 │ ├── munchlax │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── munna │ │ ├── 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 │ ├── musharna │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── naganadel │ │ ├── back.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 │ ├── necrozma │ │ ├── back.png │ │ ├── dawn_wings │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── dusk_mane │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── ultra │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── nickit │ │ ├── back.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 │ ├── nihilego │ │ ├── back.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 │ ├── noibat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── noibat_redux │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── noivern │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── noivern_redux │ │ ├── back.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 │ ├── obstagoon │ │ ├── back.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 │ ├── oranguru │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── orbeetle │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── oricorio │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── pau │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── pom_pom │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── sensu │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── shiny.pal │ ├── oshawott │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pachirisu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── palkia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── palossand │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── palpitoad │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pancham │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pangoro │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── panpour │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pansage │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pansear │ │ ├── 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 │ ├── passimian │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── patrat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pawniard │ │ ├── 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 │ ├── perrserker │ │ ├── back.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 │ ├── petilil │ │ ├── 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 │ ├── phantump │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pheromosa │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── phione │ │ ├── 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 │ │ └── spiky_eared │ │ │ ├── back.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 │ ├── pidove │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pignite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pikachu │ │ ├── alola_cap │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── belle │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── cosplay │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── hoenn_cap │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── kalos_cap │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── libre │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── normal.pal │ │ ├── original_cap │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── partner_cap │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── ph_d │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── pop_star │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── rock_star │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ ├── sinnoh_cap │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── unova_cap │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── world_cap │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── pikipek │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── piloswine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pincurchin │ │ ├── back.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 │ ├── piplup │ │ ├── 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 │ ├── poipole │ │ ├── back.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 │ ├── polteageist │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ponyta │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poochyena │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── popplio │ │ ├── back.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 │ ├── porygon_z │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── primal_cascoon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── primal_groudon │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── primal_kyogre │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── primarina │ │ ├── back.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 │ ├── prinplup │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── probopass │ │ ├── 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 │ ├── pumpkaboo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── large │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── normal.pal │ │ ├── shiny.pal │ │ ├── small │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── super │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── pupitar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── purrloin │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── purugly │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pyroar │ │ ├── anim_front.png │ │ ├── anim_frontf.png │ │ ├── back.png │ │ ├── backf.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── frontf.png │ │ ├── icon.png │ │ ├── iconf.png │ │ ├── normal.pal │ │ ├── normalf.pal │ │ ├── shiny.pal │ │ └── shinyf.pal │ ├── pyukumuku │ │ ├── back.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 │ ├── quilladin │ │ ├── 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 │ ├── raboot │ │ ├── back.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 │ ├── rampardos │ │ ├── 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 │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── 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 │ ├── regidrago │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── regieleki │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── regigigas │ │ ├── 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 │ ├── reshiram │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── reuniclus │ │ ├── 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 │ ├── rhyperior │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ribombee │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rillaboom │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── riolu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rockruff │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── roggenrola │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rolycoly │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rookidee │ │ ├── back.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 │ ├── roserade │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rotom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── fan │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── front.png │ │ ├── frost │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── heat │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── mow │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── normal.pal │ │ ├── normal │ │ │ └── footprint.png │ │ ├── shiny.pal │ │ └── wash │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── rowlet │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rufflet │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── runerigus │ │ ├── back.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 │ ├── salandit │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── salazzle │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── samurott │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandaconda │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandile │ │ ├── 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 │ ├── sandygast │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sawk │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sawsbuck │ │ ├── anim_front.png │ │ ├── autumn │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ ├── summer │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── winter │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── scatterbug │ │ ├── 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 │ ├── scolipede │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scorbunny │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scrafty │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scraggy │ │ ├── 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 │ ├── seismitoad │ │ ├── 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 │ ├── serperior │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── servine │ │ ├── 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 │ ├── sewaddle │ │ ├── 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 │ ├── shaymin │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── sky │ │ │ ├── anim_front.png │ │ │ ├── back.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 │ ├── shellos │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── east_sea │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shelmet │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shieldon │ │ ├── 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 │ ├── shiinotic │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shinx │ │ ├── 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 │ ├── sigilyph │ │ ├── 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 │ ├── silicobra │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── silvally │ │ ├── back.png │ │ ├── bug │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── dark │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── dragon │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── electric │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── fairy │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── fighting │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── fire │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── flying │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── front.png │ │ ├── ghost │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── grass │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── ground │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── ice │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── poison │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── psychic │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── rock │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ ├── steel │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── water │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── simipour │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── simisage │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── simisear │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sinistea │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sirfetchd │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sizzlipede │ │ ├── back.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 │ ├── skiddo │ │ ├── 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 │ ├── skorupi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skrelp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skuntank │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skwovet │ │ ├── back.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 │ ├── sliggoo │ │ ├── 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 │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowking │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowpoke │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slugma │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slurpuff │ │ ├── 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 │ ├── snivy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snom │ │ ├── back.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 │ ├── snover │ │ ├── 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 │ ├── sobble │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── solgaleo │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── solosis │ │ ├── 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 │ ├── spectrier │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spewpa │ │ ├── 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 │ ├── spiritomb │ │ ├── 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 │ ├── spritzee │ │ ├── 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 │ ├── stakataka │ │ ├── back.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 │ ├── staraptor │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── staravia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── starly │ │ ├── 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 │ ├── steenee │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── stonjourner │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── stoutland │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── stufful │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── stunfisk │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── stunky │ │ ├── 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 │ ├── swadloon │ │ ├── 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 │ ├── swanna │ │ ├── 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 │ ├── swirlix │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swoobat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sylveon │ │ ├── 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 │ ├── talonflame │ │ ├── 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 │ ├── tangrowth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tapu_bulu │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tapu_fini │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tapu_koko │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tapu_lele │ │ ├── back.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 │ ├── tepig │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── terrakion │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── thievul │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── throh │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── thundurus │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── therian │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── thwackey │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── timburr │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tirtouga │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togedemaru │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togekiss │ │ ├── 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 │ ├── tornadus │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── therian │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── torracat │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── torterra │ │ ├── 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 │ ├── toucannon │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── toxapex │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── toxel │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── toxicroak │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── toxtricity │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── low_key │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tranquill │ │ ├── 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 │ ├── trevenant │ │ ├── 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 │ ├── trubbish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── trumbeak │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tsareena │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── turtonator │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── turtwig │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tympole │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tynamo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── type_null │ │ ├── back.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 │ ├── tyrantrum │ │ ├── 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 │ ├── tyrunt │ │ ├── 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 │ ├── unfezant │ │ ├── anim_front.png │ │ ├── anim_frontf.png │ │ ├── back.png │ │ ├── backf.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── iconf.png │ │ ├── normal.pal │ │ ├── normalf.pal │ │ ├── shiny.pal │ │ └── shinyf.pal │ ├── unown │ │ ├── anim_front.png │ │ ├── b │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── back.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 │ │ ├── front.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 │ │ ├── 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 │ ├── ursaring │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── urshifu │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── rapid_strike_style │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── shiny.pal │ ├── uxie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vanillish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vanillite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vanilluxe │ │ ├── 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 │ ├── venipede │ │ ├── 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 │ ├── vespiquen │ │ ├── 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 │ ├── victini │ │ ├── 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 │ ├── vikavolt │ │ ├── back.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 │ ├── virizion │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vivillon │ │ ├── anim_front.png │ │ ├── archipelago │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── back.png │ │ ├── continental │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── elegant │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── fancy │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ ├── front.png │ │ ├── garden │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── high_plains │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── jungle │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── marine │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── meadow │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── modern │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── monsoon │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── normal.pal │ │ ├── ocean │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── poke_ball │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── polar │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── river │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── sandstorm │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── savanna │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ ├── sun │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── tundra │ │ │ ├── anim_front.png │ │ │ ├── back.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 │ ├── volcanion │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── volcarona │ │ ├── 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 │ ├── vullaby │ │ ├── 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 │ ├── watchog │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weavile │ │ ├── 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 │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── whimsicott │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── whirlipede │ │ ├── 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 │ ├── wimpod │ │ ├── back.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 │ ├── wishiwashi │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── school │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── shiny.pal │ ├── wobbuffet │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── woobat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wooloo │ │ ├── back.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 │ ├── wormadam │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── plant │ │ │ └── footprint.png │ │ ├── sandy_cloak │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── shiny.pal │ │ └── trash_cloak │ │ │ ├── anim_front.png │ │ │ ├── back.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 │ ├── xerneas │ │ ├── active │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── xurkitree │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── yamask │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── yamper │ │ ├── back.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 │ ├── yanmega │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── yungoos │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── yveltal │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zacian │ │ ├── back.png │ │ ├── crowned_sword │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zamazenta │ │ ├── back.png │ │ ├── crowned_shield │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── 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 │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zarude │ │ ├── back.png │ │ ├── dada │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zebstrika │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zekrom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zeraora │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zigzagoon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── galarian │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── icon.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zoroark │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zorua │ │ ├── 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 │ ├── zweilous │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ └── zygarde │ │ ├── 10_percent │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── complete │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ │ ├── 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 │ ├── display_menu.bin │ ├── display_menu.pal │ ├── hand_cursor.png │ ├── hand_cursor_shadow.png │ ├── interface.pal │ ├── item_info_frame.png │ ├── menu.png │ ├── party_menu.bin │ ├── pkmn_data_gray.pal │ ├── scrolling_bg.bin │ ├── scrolling_bg.png │ ├── unknown.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 │ ├── 86226E0.pal │ ├── 8622700.pal │ ├── 8622720.pal │ ├── 8623228.png │ ├── 862323C.bin │ ├── 8623338.pal │ ├── 8623570.pal │ ├── arrow2.png │ ├── arrows_matchcall.png │ ├── bg_dots.bin │ ├── bg_dots.png │ ├── blue_light.png │ ├── brendan_icon.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.pal │ │ ├── pokeball.png │ │ ├── pokeball_placeholder.png │ │ ├── sparkle.png │ │ └── text.pal │ ├── condition_search2.bin │ ├── condition_search2.png │ ├── cursor.pal │ ├── cursor_large.png │ ├── cursor_small.png │ ├── device_outline.png │ ├── device_outline_map.bin │ ├── fly_target_icons.png │ ├── header.bin │ ├── header.png │ ├── icon.png │ ├── icon2.png │ ├── icon2_unused.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 │ ├── map_frame.bin │ ├── map_frame.png │ ├── match_call_window.png │ ├── may_icon.png │ ├── message.bin │ ├── message.png │ ├── options │ │ ├── beauty.png │ │ ├── cancel.png │ │ ├── condition.png │ │ ├── cool.png │ │ ├── cute.png │ │ ├── hoenn_map.png │ │ ├── match_call.png │ │ ├── options.bin │ │ ├── options.pal │ │ ├── party.png │ │ ├── ribbons.png │ │ ├── search.png │ │ ├── smart.png │ │ ├── switch_off.png │ │ └── tough.png │ ├── pokeball_matchcall.pal │ ├── pokeball_matchcall.png │ ├── region_map.pal │ ├── region_map.png │ ├── region_map_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 │ ├── ui_matchcall.bin │ ├── ui_matchcall.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 ├── rhh_copyright │ ├── credits.pal │ ├── powered_by.bin │ ├── powered_by.png │ ├── rhh_credits.bin │ ├── rhh_credits.png │ └── sprites │ │ ├── dizzy_egg.png │ │ ├── porygon.png │ │ └── shiny.pal ├── 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 ├── slot_machine │ ├── 85A8524.bin │ ├── 85A8524.pal │ ├── 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 ├── 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 │ ├── exp_bar.png │ ├── hp-exp_bar.pal │ ├── hp_bar.png │ ├── hp_red.pal │ ├── hp_yellow.pal │ ├── markings.pal │ ├── move_select.pal │ ├── move_select.png │ ├── page_abilities.bin │ ├── page_condition.bin │ ├── page_evolution.bin │ ├── page_info.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 │ ├── summary_ability_cursor.png │ └── 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.png │ ├── emerald_version.png │ ├── logo_shine.png │ ├── pokemon_logo.pal │ ├── pokemon_logo.png │ ├── press_start.png │ ├── rayquaza.bin │ ├── rayquaza.png │ ├── rayquaza_and_clouds.pal │ ├── title_screen1.bin │ ├── title_screen2.bin │ └── unk_853EF78.pal ├── tm_case │ ├── unk_841F408.pal │ ├── unk_8E845D8.png │ ├── unk_8E84A24.bin │ ├── unk_8E84B70.bin │ ├── unk_8E84CB0.pal │ ├── unk_8E84D20.pal │ ├── unk_8E84D90.png │ ├── unk_8E84F20.pal │ ├── unk_8E85068.pal │ └── unk_8E99118.png ├── trade │ ├── cable_end.png │ ├── crossing_highlight_cable.bin │ ├── crossing_highlight_wireless.bin │ ├── cursor.pal │ ├── cursor.png │ ├── gba.pal │ ├── gba_affine.png │ ├── gba_affine_map_cable.bin │ ├── gba_affine_map_wireless.bin │ ├── gba_map_cable.bin │ ├── gba_map_wireless.bin │ ├── gba_screen.png │ ├── link_mon.pal │ ├── link_mon_glow.png │ ├── link_mon_shadow.pal │ ├── link_mon_shadow.png │ ├── 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 │ ├── unknown_DDCF04.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 ├── trainers │ ├── back_pics │ │ ├── brendan_back_pic.png │ │ ├── leaf_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 │ │ ├── baneful.png │ │ ├── battle_girl_front_pic.png │ │ ├── beauty_front_pic.png │ │ ├── bird_keeper_front_pic.png │ │ ├── black_belt_front_pic.png │ │ ├── brendan_front_pic.png │ │ ├── bug_catcher_front_pic.png │ │ ├── bug_maniac_front_pic.png │ │ ├── camper_front_pic.png │ │ ├── champion_wallace_front_pic.png │ │ ├── collector_front_pic.png │ │ ├── cooltrainer_f_front_pic.png │ │ ├── cooltrainer_m_front_pic.png │ │ ├── cycling_triathlete_f_front_pic.png │ │ ├── cycling_triathlete_m_front_pic.png │ │ ├── cynthia_front_pic.png │ │ ├── dome_ace_tucker_front_pic.png │ │ ├── dragon_tamer_front_pic.png │ │ ├── elite_four_drake_front_pic.png │ │ ├── elite_four_glacia_front_pic.png │ │ ├── elite_four_phoebe_front_pic.png │ │ ├── elite_four_sidney_front_pic.png │ │ ├── expert_f_front_pic.png │ │ ├── expert_m_front_pic.png │ │ ├── factory_head_noland_front_pic.png │ │ ├── fisherman_front_pic.png │ │ ├── gentleman_front_pic.png │ │ ├── guitarist_front_pic.png │ │ ├── hex_maniac_front_pic.png │ │ ├── hiker_front_pic.png │ │ ├── interviewer_front_pic.png │ │ ├── kindler_front_pic.png │ │ ├── lady_front_pic.png │ │ ├── lass_front_pic.png │ │ ├── leader_brawly_front_pic.png │ │ ├── leader_flannery_front_pic.png │ │ ├── leader_juan_front_pic.png │ │ ├── leader_norman_front_pic.png │ │ ├── leader_roxanne_front_pic.png │ │ ├── leader_tate_and_liza_front_pic.png │ │ ├── leader_wattson_front_pic.png │ │ ├── leader_winona_front_pic.png │ │ ├── leaf_front_pic.png │ │ ├── magma_admin_f_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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── sis_and_bro_front_pic.png │ │ ├── sr_and_jr_front_pic.png │ │ ├── steven_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 │ │ ├── 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 │ │ ├── baneful.pal │ │ ├── battle_girl.pal │ │ ├── beauty.pal │ │ ├── bird_keeper.pal │ │ ├── black_belt.pal │ │ ├── brendan.pal │ │ ├── bug_catcher.pal │ │ ├── bug_maniac.pal │ │ ├── camper.pal │ │ ├── champion_wallace.pal │ │ ├── collector.pal │ │ ├── cooltrainer_f.pal │ │ ├── cooltrainer_m.pal │ │ ├── cycling_triathlete_f.pal │ │ ├── cycling_triathlete_m.pal │ │ ├── cynthia.pal │ │ ├── dome_ace_tucker.pal │ │ ├── dragon_tamer.pal │ │ ├── elite_four_drake.pal │ │ ├── elite_four_glacia.pal │ │ ├── elite_four_phoebe.pal │ │ ├── elite_four_sidney.pal │ │ ├── expert_f.pal │ │ ├── expert_m.pal │ │ ├── factory_head_noland.pal │ │ ├── fisherman.pal │ │ ├── gentleman.pal │ │ ├── guitarist.pal │ │ ├── hex_maniac.pal │ │ ├── hiker.pal │ │ ├── interviewer.pal │ │ ├── kindler.pal │ │ ├── lady.pal │ │ ├── lass.pal │ │ ├── leader_brawly.pal │ │ ├── leader_flannery.pal │ │ ├── leader_juan.pal │ │ ├── leader_norman.pal │ │ ├── leader_roxanne.pal │ │ ├── leader_tate_and_liza.pal │ │ ├── leader_wattson.pal │ │ ├── leader_winona.pal │ │ ├── leaf.pal │ │ ├── leaf_back_pic.pal │ │ ├── magma_admin.pal │ │ ├── magma_grunt_f.pal │ │ ├── magma_grunt_m.pal │ │ ├── magma_leader_maxie.pal │ │ ├── may.pal │ │ ├── ninja_boy.pal │ │ ├── old_couple.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 │ │ ├── psychic_f.pal │ │ ├── psychic_m.pal │ │ ├── pyramid_king_brandon.pal │ │ ├── red.pal │ │ ├── red_back_pic.pal │ │ ├── rich_boy.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 │ │ ├── sis_and_bro.pal │ │ ├── sr_and_jr.pal │ │ ├── steven.pal │ │ ├── swimmer_f.pal │ │ ├── swimmer_m.pal │ │ ├── swimming_triathlete_f.pal │ │ ├── swimming_triathlete_m.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 ├── ui_menus │ ├── battle_menu │ │ ├── check.png │ │ ├── fields │ │ │ ├── forest.png │ │ │ └── selector.png │ │ ├── palette.pal │ │ ├── palette_blue.pal │ │ ├── palette_green.pal │ │ ├── palette_red.pal │ │ ├── palette_yellow.pal │ │ ├── selector.png │ │ ├── stat_down_arrow.png │ │ ├── stat_up_arrow.png │ │ ├── tilemap.bin │ │ ├── tiles.png │ │ ├── titlemap_doubles_battler_abilities.bin │ │ ├── titlemap_doubles_battler_moves.bin │ │ ├── titlemap_doubles_battler_status.bin │ │ ├── titlemap_doubles_field.bin │ │ ├── titlemap_doubles_field_speed.bin │ │ ├── titlemap_doubles_field_speed_old.bin │ │ ├── titlemap_singles_battler_abilities.bin │ │ ├── titlemap_singles_battler_status.bin │ │ ├── titlemap_singles_field.bin │ │ └── titlemap_singles_field_speed.bin │ └── intro_options │ │ ├── palette.pal │ │ ├── selector.png │ │ ├── selector2.png │ │ ├── tilemap.bin │ │ └── tiles.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 ├── unknown │ ├── unknown_593C80.png │ ├── unknown_593FFC.bin │ ├── unknown_5B3484.png │ ├── unknown_5B3564.bin │ ├── unknown_C035B8.png │ ├── unknown_C06D98.png │ ├── unknown_C06D98_2.pal │ ├── unknown_C0CA1C.bin │ ├── unknown_C0CA40.bin │ ├── unknown_C0CA64.bin │ ├── unknown_C0CAE0.bin │ ├── unknown_C15BC0.bin │ ├── unknown_C17170.bin │ ├── unknown_C17410.bin │ ├── unknown_C1751C.bin │ ├── unknown_C17980.bin │ ├── unknown_C19470.png │ ├── unknown_C2F9E0.pal │ ├── unknown_D0D2B4.bin │ ├── unknown_D12FEC.png │ ├── unknown_D1300C.png │ ├── unknown_D1C060.bin │ ├── unknown_D1C060.png │ ├── unknown_D437F8.bin │ ├── unknown_D9AF44.pal │ └── unknown_E6BC04.bin ├── unused │ ├── basic_frame.bin │ ├── basic_frame.png │ ├── battle_anim_023.pal │ ├── blank_frame.bin │ ├── blue_frame.bin │ ├── cherry.png │ ├── color_frames.png │ ├── deoxys_speed_icon_wide.png │ ├── goosuto.bin │ ├── goosuto.png │ ├── green_frame.bin │ ├── intro_birch_beauty.png │ ├── line_sketch.png │ ├── line_sketch_2.bin │ ├── line_sketch_2.png │ ├── metronome_hand_small.png │ ├── music_notes.png │ ├── old_battle_interface_1.png │ ├── old_battle_interface_2.png │ ├── old_battle_interface_3.png │ ├── old_battle_interface_tilemap.bin │ ├── old_beatup.png │ ├── old_bulbasaur.png │ ├── old_bulbasaur2.png │ ├── old_charizard.png │ ├── old_charmap.bin │ ├── old_charmap.png │ ├── old_contest.bin │ ├── old_contest.pal │ ├── old_contest_2.bin │ ├── old_contest_2.pal │ ├── old_contest_2_1.png │ ├── old_contest_2_2.png │ ├── old_contest_classes.png │ ├── old_contest_floor.png │ ├── old_contest_frame_1.png │ ├── old_contest_frame_2.png │ ├── old_contest_meter.png │ ├── old_contest_numbers.png │ ├── old_contest_symbols.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 │ ├── unused_DDCEE4.bin │ ├── water_splash.bin │ ├── water_splash.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_transfers │ ├── wonder_card_1.bin │ ├── wonder_card_1.png │ ├── wonder_card_2.bin │ ├── wonder_card_2.png │ ├── wonder_card_3.bin │ ├── wonder_card_3.png │ ├── wonder_card_4.png │ ├── wonder_card_5.png │ ├── wonder_card_6.png │ ├── wonder_card_7.bin │ ├── wonder_card_7.png │ ├── wonder_card_8.bin │ ├── wonder_card_8.png │ ├── wonder_card_shadow.png │ ├── wonder_card_shadow_1.pal │ ├── wonder_card_shadow_2.pal │ ├── wonder_card_shadow_3.pal │ ├── wonder_card_shadow_4.pal │ ├── wonder_card_shadow_5.pal │ ├── wonder_card_shadow_6.pal │ ├── wonder_card_shadow_7.pal │ ├── wonder_card_shadow_8.pal │ ├── wonder_news_1.bin │ ├── wonder_news_1.png │ ├── wonder_news_2.bin │ ├── wonder_news_2.png │ ├── wonder_news_3.bin │ ├── wonder_news_3.png │ ├── wonder_news_7.bin │ ├── wonder_news_7.png │ ├── wonder_news_8.bin │ └── wonder_news_8.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 ├── 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_config.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 │ ├── mevent.h │ ├── moves.h │ ├── opponents.h │ ├── party_menu.h │ ├── pokemon.h │ ├── pokemon_config.h │ ├── region_map_sections.h │ ├── rgb.h │ ├── roulette.h │ ├── script_menu.h │ ├── secret_bases.h │ ├── slot_machine.h │ ├── songs.h │ ├── species.h │ ├── spreads.h │ ├── trade.h │ ├── trainer_hill.h │ ├── trainer_types.h │ ├── trainers.h │ ├── tv.h │ ├── union_room.h │ ├── vars.h │ └── weather.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 ├── 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 ├── mevent.h ├── mevent2.h ├── mevent_801BAAC.h ├── mevent_client.h ├── mevent_news.h ├── mevent_server.h ├── mevent_server_helpers.h ├── mgba_printf │ ├── mgba.h │ └── mini_printf.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 ├── naming_screen.h ├── new_game.h ├── option_menu.h ├── option_plus_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 ├── reset_rtc_screen.h ├── reset_save_heap.h ├── reshow_battle_screen.h ├── rhh_copyright.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 ├── tm_case.h ├── trade.h ├── trader.h ├── trainer_card.h ├── trainer_hill.h ├── trainer_pokemon_sprites.h ├── trainer_see.h ├── trig.h ├── tv.h ├── tx_registered_items_menu.h ├── ui_battle_menu.h ├── ui_intro_options.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 ├── json_data_rules.mk ├── ld_script.txt ├── ld_script_modern.txt ├── libagbsyscall ├── Makefile └── libagbsyscall.s ├── make_tools.mk ├── map_data_rules.mk ├── pokemon_emerald.sha1 ├── porymap.user.cfg ├── prefabs.json ├── rom.sha1 ├── songs.mk ├── sound ├── MPlayDef.s ├── cry_tables.inc ├── direct_sound_data.inc ├── direct_sound_samples │ ├── 8725A2C.aif │ ├── 872762C.aif │ ├── 872921C.aif │ ├── 872A5D0.aif │ ├── 872EEA8.aif │ ├── 87301B0.aif │ ├── 8734298.aif │ ├── 87364A8.aif │ ├── 87385E4.aif │ ├── 873ECD8.aif │ ├── 8740818.aif │ ├── 87424B0.aif │ ├── 87430C0.aif │ ├── 8743C50.aif │ ├── 87446EC.aif │ ├── 8745034.aif │ ├── 8745A7C.aif │ ├── 88D6978.aif │ ├── 88DBBC0.aif │ ├── 88DC220.aif │ ├── 88DC704.aif │ ├── 88DD054.aif │ ├── 88DDAC4.aif │ ├── 88DDDE4.aif │ ├── 88DEA6C.aif │ ├── 88DF08C.aif │ ├── 88DF414.aif │ ├── 88E01F8.aif │ ├── 88E0B68.aif │ ├── 88E0F04.aif │ ├── 88E16B8.aif │ ├── 88E2414.aif │ ├── 88E2658.aif │ ├── 88E3498.aif │ ├── 88E3DEC.aif │ ├── 88E4140.aif │ ├── 88E4774.aif │ ├── 88E53E0.aif │ ├── 88E5978.aif │ ├── 88E647C.aif │ ├── 88E6A80.aif │ ├── 88E6C78.aif │ ├── 88E75DC.aif │ ├── 88E8568.aif │ ├── 88E8BA0.aif │ ├── 88E9674.aif │ ├── 88EA5B8.aif │ ├── 88EAB30.aif │ ├── 88EB97C.aif │ ├── 88EC884.aif │ ├── 88ED358.aif │ ├── 88EDEEC.aif │ ├── 88EE8C4.aif │ ├── 88EEF04.aif │ ├── 88EF9E4.aif │ ├── 88F0020.aif │ ├── 88F0738.aif │ ├── 88F1074.aif │ ├── 88F1830.aif │ ├── 88F1D94.aif │ ├── 88F2B08.aif │ ├── 88F2F84.aif │ ├── 88F3470.aif │ ├── 88F3C38.aif │ ├── 88F4834.aif │ ├── 88F4BAC.aif │ ├── 88F5368.aif │ ├── 88F5FCC.aif │ ├── 88F6498.aif │ ├── bicycle_bell.aif │ ├── classical_choir_voice_ahhs.aif │ ├── cries │ │ ├── abomasnow.aif │ │ ├── abra.aif │ │ ├── absol.aif │ │ ├── accelgor.aif │ │ ├── aerodactyl.aif │ │ ├── aggron.aif │ │ ├── aipom.aif │ │ ├── alakazam.aif │ │ ├── alomomola.aif │ │ ├── altaria.aif │ │ ├── ambipom.aif │ │ ├── amoonguss.aif │ │ ├── ampharos.aif │ │ ├── anorith.aif │ │ ├── arbok.aif │ │ ├── arcanine.aif │ │ ├── arceus.aif │ │ ├── archen.aif │ │ ├── archeops.aif │ │ ├── ariados.aif │ │ ├── armaldo.aif │ │ ├── aron.aif │ │ ├── articuno.aif │ │ ├── audino.aif │ │ ├── axew.aif │ │ ├── azelf.aif │ │ ├── azumarill.aif │ │ ├── azurill.aif │ │ ├── bagon.aif │ │ ├── baltoy.aif │ │ ├── banette.aif │ │ ├── barboach.aif │ │ ├── basculin.aif │ │ ├── bastiodon.aif │ │ ├── bayleef.aif │ │ ├── beartic.aif │ │ ├── beautifly.aif │ │ ├── beedrill.aif │ │ ├── beheeyem.aif │ │ ├── beldum.aif │ │ ├── bellossom.aif │ │ ├── bellsprout.aif │ │ ├── bibarel.aif │ │ ├── bidoof.aif │ │ ├── bisharp.aif │ │ ├── blastoise.aif │ │ ├── blaziken.aif │ │ ├── blissey.aif │ │ ├── blitzle.aif │ │ ├── boldore.aif │ │ ├── bonsly.aif │ │ ├── bouffalant.aif │ │ ├── braviary.aif │ │ ├── breloom.aif │ │ ├── bronzong.aif │ │ ├── bronzor.aif │ │ ├── budew.aif │ │ ├── buizel.aif │ │ ├── bulbasaur.aif │ │ ├── buneary.aif │ │ ├── burmy.aif │ │ ├── butterfree.aif │ │ ├── cacnea.aif │ │ ├── cacturne.aif │ │ ├── camerupt.aif │ │ ├── carnivine.aif │ │ ├── carracosta.aif │ │ ├── carvanha.aif │ │ ├── cascoon.aif │ │ ├── castform.aif │ │ ├── caterpie.aif │ │ ├── celebi.aif │ │ ├── chandelure.aif │ │ ├── chansey.aif │ │ ├── charizard.aif │ │ ├── charmander.aif │ │ ├── charmeleon.aif │ │ ├── chatot.aif │ │ ├── cherrim.aif │ │ ├── cherubi.aif │ │ ├── chikorita.aif │ │ ├── chimchar.aif │ │ ├── chimecho.aif │ │ ├── chinchou.aif │ │ ├── chingling.aif │ │ ├── cinccino.aif │ │ ├── clamperl.aif │ │ ├── claydol.aif │ │ ├── clefable.aif │ │ ├── clefairy.aif │ │ ├── cleffa.aif │ │ ├── cloyster.aif │ │ ├── cobalion.aif │ │ ├── cofagrigus.aif │ │ ├── combee.aif │ │ ├── combusken.aif │ │ ├── conkeldurr.aif │ │ ├── corphish.aif │ │ ├── corsola.aif │ │ ├── cottonee.aif │ │ ├── cradily.aif │ │ ├── cranidos.aif │ │ ├── crawdaunt.aif │ │ ├── cresselia.aif │ │ ├── croagunk.aif │ │ ├── crobat.aif │ │ ├── croconaw.aif │ │ ├── crustle.aif │ │ ├── cry_not_kyurem_black.aif │ │ ├── cry_not_kyurem_white.aif │ │ ├── cry_not_landorus_therian.aif │ │ ├── cry_not_shaymin_sky.aif │ │ ├── cry_not_thundurus_therian.aif │ │ ├── cry_not_tornadus_therian.aif │ │ ├── cry_unused_265.aif │ │ ├── cry_unused_268.aif │ │ ├── cryogonal.aif │ │ ├── cubchoo.aif │ │ ├── cubone.aif │ │ ├── cyndaquil.aif │ │ ├── darkrai.aif │ │ ├── darmanitan.aif │ │ ├── darumaka.aif │ │ ├── deerling.aif │ │ ├── deino.aif │ │ ├── delcatty.aif │ │ ├── delibird.aif │ │ ├── deoxys.aif │ │ ├── dewgong.aif │ │ ├── dewott.aif │ │ ├── dialga.aif │ │ ├── diglett.aif │ │ ├── ditto.aif │ │ ├── dodrio.aif │ │ ├── doduo.aif │ │ ├── donphan.aif │ │ ├── dragonair.aif │ │ ├── dragonite.aif │ │ ├── drapion.aif │ │ ├── dratini.aif │ │ ├── drifblim.aif │ │ ├── drifloon.aif │ │ ├── drilbur.aif │ │ ├── drowzee.aif │ │ ├── druddigon.aif │ │ ├── ducklett.aif │ │ ├── dugtrio.aif │ │ ├── dunsparce.aif │ │ ├── duosion.aif │ │ ├── durant.aif │ │ ├── dusclops.aif │ │ ├── dusknoir.aif │ │ ├── duskull.aif │ │ ├── dustox.aif │ │ ├── dwebble.aif │ │ ├── eelektrik.aif │ │ ├── eelektross.aif │ │ ├── eevee.aif │ │ ├── ekans.aif │ │ ├── electabuzz.aif │ │ ├── electivire.aif │ │ ├── electrike.aif │ │ ├── electrode.aif │ │ ├── elekid.aif │ │ ├── elgyem.aif │ │ ├── emboar.aif │ │ ├── emolga.aif │ │ ├── empoleon.aif │ │ ├── entei.aif │ │ ├── escavalier.aif │ │ ├── espeon.aif │ │ ├── excadrill.aif │ │ ├── exeggcute.aif │ │ ├── exeggutor.aif │ │ ├── exploud.aif │ │ ├── farfetchd.aif │ │ ├── fearow.aif │ │ ├── feebas.aif │ │ ├── feraligatr.aif │ │ ├── ferroseed.aif │ │ ├── ferrothorn.aif │ │ ├── finneon.aif │ │ ├── flaaffy.aif │ │ ├── flareon.aif │ │ ├── floatzel.aif │ │ ├── flygon.aif │ │ ├── foongus.aif │ │ ├── forretress.aif │ │ ├── fraxure.aif │ │ ├── frillish.aif │ │ ├── froslass.aif │ │ ├── furret.aif │ │ ├── gabite.aif │ │ ├── gallade.aif │ │ ├── galvantula.aif │ │ ├── garbodor.aif │ │ ├── garchomp.aif │ │ ├── gardevoir.aif │ │ ├── gastly.aif │ │ ├── gastrodon.aif │ │ ├── genesect.aif │ │ ├── gengar.aif │ │ ├── geodude.aif │ │ ├── gible.aif │ │ ├── gigalith.aif │ │ ├── girafarig.aif │ │ ├── giratina.aif │ │ ├── glaceon.aif │ │ ├── glalie.aif │ │ ├── glameow.aif │ │ ├── gligar.aif │ │ ├── gliscor.aif │ │ ├── gloom.aif │ │ ├── golbat.aif │ │ ├── goldeen.aif │ │ ├── golduck.aif │ │ ├── golem.aif │ │ ├── golett.aif │ │ ├── golurk.aif │ │ ├── gorebyss.aif │ │ ├── gothita.aif │ │ ├── gothitelle.aif │ │ ├── gothorita.aif │ │ ├── granbull.aif │ │ ├── graveler.aif │ │ ├── grimer.aif │ │ ├── grotle.aif │ │ ├── groudon.aif │ │ ├── grovyle.aif │ │ ├── growlithe.aif │ │ ├── grumpig.aif │ │ ├── gulpin.aif │ │ ├── gurdurr.aif │ │ ├── gyarados.aif │ │ ├── happiny.aif │ │ ├── hariyama.aif │ │ ├── haunter.aif │ │ ├── haxorus.aif │ │ ├── heatmor.aif │ │ ├── heatran.aif │ │ ├── heracross.aif │ │ ├── herdier.aif │ │ ├── hippopotas.aif │ │ ├── hippowdon.aif │ │ ├── hitmonchan.aif │ │ ├── hitmonlee.aif │ │ ├── hitmontop.aif │ │ ├── ho_oh.aif │ │ ├── honchkrow.aif │ │ ├── hoothoot.aif │ │ ├── hoppip.aif │ │ ├── horsea.aif │ │ ├── houndoom.aif │ │ ├── houndour.aif │ │ ├── huntail.aif │ │ ├── hydreigon.aif │ │ ├── hypno.aif │ │ ├── igglybuff.aif │ │ ├── illumise.aif │ │ ├── infernape.aif │ │ ├── ivysaur.aif │ │ ├── jellicent.aif │ │ ├── jigglypuff.aif │ │ ├── jirachi.aif │ │ ├── jolteon.aif │ │ ├── joltik.aif │ │ ├── jumpluff.aif │ │ ├── jynx.aif │ │ ├── kabuto.aif │ │ ├── kabutops.aif │ │ ├── kadabra.aif │ │ ├── kakuna.aif │ │ ├── kangaskhan.aif │ │ ├── karrablast.aif │ │ ├── kecleon.aif │ │ ├── keldeo.aif │ │ ├── kingdra.aif │ │ ├── kingler.aif │ │ ├── kirlia.aif │ │ ├── klang.aif │ │ ├── klink.aif │ │ ├── klinklang.aif │ │ ├── koffing.aif │ │ ├── krabby.aif │ │ ├── kricketot.aif │ │ ├── kricketune.aif │ │ ├── krokorok.aif │ │ ├── krookodile.aif │ │ ├── kyogre.aif │ │ ├── kyurem.aif │ │ ├── kyurem_black.aif │ │ ├── kyurem_white.aif │ │ ├── lairon.aif │ │ ├── lampent.aif │ │ ├── landorus.aif │ │ ├── landorus_therian.aif │ │ ├── lanturn.aif │ │ ├── lapras.aif │ │ ├── larvesta.aif │ │ ├── larvitar.aif │ │ ├── latias.aif │ │ ├── latios.aif │ │ ├── leafeon.aif │ │ ├── leavanny.aif │ │ ├── ledian.aif │ │ ├── ledyba.aif │ │ ├── lickilicky.aif │ │ ├── lickitung.aif │ │ ├── liepard.aif │ │ ├── lileep.aif │ │ ├── lilligant.aif │ │ ├── lillipup.aif │ │ ├── linoone.aif │ │ ├── litwick.aif │ │ ├── lombre.aif │ │ ├── lopunny.aif │ │ ├── lotad.aif │ │ ├── loudred.aif │ │ ├── lucario.aif │ │ ├── ludicolo.aif │ │ ├── lugia.aif │ │ ├── lumineon.aif │ │ ├── lunatone.aif │ │ ├── luvdisc.aif │ │ ├── luxio.aif │ │ ├── luxray.aif │ │ ├── machamp.aif │ │ ├── machoke.aif │ │ ├── machop.aif │ │ ├── magby.aif │ │ ├── magcargo.aif │ │ ├── magikarp.aif │ │ ├── magmar.aif │ │ ├── magmortar.aif │ │ ├── magnemite.aif │ │ ├── magneton.aif │ │ ├── magnezone.aif │ │ ├── makuhita.aif │ │ ├── mamoswine.aif │ │ ├── manaphy.aif │ │ ├── mandibuzz.aif │ │ ├── manectric.aif │ │ ├── mankey.aif │ │ ├── mantine.aif │ │ ├── mantyke.aif │ │ ├── maractus.aif │ │ ├── mareep.aif │ │ ├── marill.aif │ │ ├── marowak.aif │ │ ├── marshtomp.aif │ │ ├── masquerain.aif │ │ ├── mawile.aif │ │ ├── medicham.aif │ │ ├── meditite.aif │ │ ├── meganium.aif │ │ ├── meloetta.aif │ │ ├── meowth.aif │ │ ├── mesprit.aif │ │ ├── metagross.aif │ │ ├── metang.aif │ │ ├── metapod.aif │ │ ├── mew.aif │ │ ├── mewtwo.aif │ │ ├── mienfoo.aif │ │ ├── mienshao.aif │ │ ├── mightyena.aif │ │ ├── milotic.aif │ │ ├── miltank.aif │ │ ├── mime_jr.aif │ │ ├── minccino.aif │ │ ├── minun.aif │ │ ├── misdreavus.aif │ │ ├── mismagius.aif │ │ ├── moltres.aif │ │ ├── monferno.aif │ │ ├── mothim.aif │ │ ├── mr_mime.aif │ │ ├── mudkip.aif │ │ ├── muk.aif │ │ ├── munchlax.aif │ │ ├── munna.aif │ │ ├── murkrow.aif │ │ ├── musharna.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 │ │ ├── oshawott.aif │ │ ├── pachirisu.aif │ │ ├── palkia.aif │ │ ├── palpitoad.aif │ │ ├── panpour.aif │ │ ├── pansage.aif │ │ ├── pansear.aif │ │ ├── paras.aif │ │ ├── parasect.aif │ │ ├── patrat.aif │ │ ├── pawniard.aif │ │ ├── pelipper.aif │ │ ├── persian.aif │ │ ├── petilil.aif │ │ ├── phanpy.aif │ │ ├── phione.aif │ │ ├── pichu.aif │ │ ├── pidgeot.aif │ │ ├── pidgeotto.aif │ │ ├── pidgey.aif │ │ ├── pidove.aif │ │ ├── pignite.aif │ │ ├── pikachu.aif │ │ ├── piloswine.aif │ │ ├── pineco.aif │ │ ├── pinsir.aif │ │ ├── piplup.aif │ │ ├── plusle.aif │ │ ├── politoed.aif │ │ ├── poliwag.aif │ │ ├── poliwhirl.aif │ │ ├── poliwrath.aif │ │ ├── ponyta.aif │ │ ├── poochyena.aif │ │ ├── porygon.aif │ │ ├── porygon2.aif │ │ ├── porygon_z.aif │ │ ├── primeape.aif │ │ ├── prinplup.aif │ │ ├── probopass.aif │ │ ├── psyduck.aif │ │ ├── pupitar.aif │ │ ├── purrloin.aif │ │ ├── purugly.aif │ │ ├── quagsire.aif │ │ ├── quilava.aif │ │ ├── qwilfish.aif │ │ ├── raichu.aif │ │ ├── raikou.aif │ │ ├── ralts.aif │ │ ├── rampardos.aif │ │ ├── rapidash.aif │ │ ├── raticate.aif │ │ ├── rattata.aif │ │ ├── rayquaza.aif │ │ ├── regice.aif │ │ ├── regigigas.aif │ │ ├── regirock.aif │ │ ├── registeel.aif │ │ ├── relicanth.aif │ │ ├── remoraid.aif │ │ ├── reshiram.aif │ │ ├── reuniclus.aif │ │ ├── rhydon.aif │ │ ├── rhyhorn.aif │ │ ├── rhyperior.aif │ │ ├── riolu.aif │ │ ├── roggenrola.aif │ │ ├── roselia.aif │ │ ├── roserade.aif │ │ ├── rotom.aif │ │ ├── rufflet.aif │ │ ├── sableye.aif │ │ ├── salamence.aif │ │ ├── samurott.aif │ │ ├── sandile.aif │ │ ├── sandshrew.aif │ │ ├── sandslash.aif │ │ ├── sawk.aif │ │ ├── sawsbuck.aif │ │ ├── sceptile.aif │ │ ├── scizor.aif │ │ ├── scolipede.aif │ │ ├── scrafty.aif │ │ ├── scraggy.aif │ │ ├── scyther.aif │ │ ├── seadra.aif │ │ ├── seaking.aif │ │ ├── sealeo.aif │ │ ├── seedot.aif │ │ ├── seel.aif │ │ ├── seismitoad.aif │ │ ├── sentret.aif │ │ ├── serperior.aif │ │ ├── servine.aif │ │ ├── seviper.aif │ │ ├── sewaddle.aif │ │ ├── sharpedo.aif │ │ ├── shaymin.aif │ │ ├── shaymin_sky.aif │ │ ├── shedinja.aif │ │ ├── shelgon.aif │ │ ├── shellder.aif │ │ ├── shellos.aif │ │ ├── shelmet.aif │ │ ├── shieldon.aif │ │ ├── shiftry.aif │ │ ├── shinx.aif │ │ ├── shroomish.aif │ │ ├── shuckle.aif │ │ ├── shuppet.aif │ │ ├── sigilyph.aif │ │ ├── silcoon.aif │ │ ├── simipour.aif │ │ ├── simisage.aif │ │ ├── simisear.aif │ │ ├── skarmory.aif │ │ ├── skiploom.aif │ │ ├── skitty.aif │ │ ├── skorupi.aif │ │ ├── skuntank.aif │ │ ├── slaking.aif │ │ ├── slakoth.aif │ │ ├── slowbro.aif │ │ ├── slowking.aif │ │ ├── slowpoke.aif │ │ ├── slugma.aif │ │ ├── smeargle.aif │ │ ├── smoochum.aif │ │ ├── sneasel.aif │ │ ├── snivy.aif │ │ ├── snorlax.aif │ │ ├── snorunt.aif │ │ ├── snover.aif │ │ ├── snubbull.aif │ │ ├── solosis.aif │ │ ├── solrock.aif │ │ ├── spearow.aif │ │ ├── spheal.aif │ │ ├── spinarak.aif │ │ ├── spinda.aif │ │ ├── spiritomb.aif │ │ ├── spoink.aif │ │ ├── squirtle.aif │ │ ├── stantler.aif │ │ ├── staraptor.aif │ │ ├── staravia.aif │ │ ├── starly.aif │ │ ├── starmie.aif │ │ ├── staryu.aif │ │ ├── steelix.aif │ │ ├── stoutland.aif │ │ ├── stunfisk.aif │ │ ├── stunky.aif │ │ ├── sudowoodo.aif │ │ ├── suicune.aif │ │ ├── sunflora.aif │ │ ├── sunkern.aif │ │ ├── surskit.aif │ │ ├── swablu.aif │ │ ├── swadloon.aif │ │ ├── swalot.aif │ │ ├── swampert.aif │ │ ├── swanna.aif │ │ ├── swellow.aif │ │ ├── swinub.aif │ │ ├── swoobat.aif │ │ ├── taillow.aif │ │ ├── tangela.aif │ │ ├── tangrowth.aif │ │ ├── tauros.aif │ │ ├── teddiursa.aif │ │ ├── tentacool.aif │ │ ├── tentacruel.aif │ │ ├── tepig.aif │ │ ├── terrakion.aif │ │ ├── throh.aif │ │ ├── thundurus.aif │ │ ├── thundurus_therian.aif │ │ ├── timburr.aif │ │ ├── tirtouga.aif │ │ ├── togekiss.aif │ │ ├── togepi.aif │ │ ├── togetic.aif │ │ ├── torchic.aif │ │ ├── torkoal.aif │ │ ├── tornadus.aif │ │ ├── tornadus_therian.aif │ │ ├── torterra.aif │ │ ├── totodile.aif │ │ ├── toxicroak.aif │ │ ├── tranquill.aif │ │ ├── trapinch.aif │ │ ├── treecko.aif │ │ ├── tropius.aif │ │ ├── trubbish.aif │ │ ├── turtwig.aif │ │ ├── tympole.aif │ │ ├── tynamo.aif │ │ ├── typhlosion.aif │ │ ├── tyranitar.aif │ │ ├── tyrogue.aif │ │ ├── umbreon.aif │ │ ├── uncomp_aegislash.aif │ │ ├── uncomp_alcremie.aif │ │ ├── uncomp_amaura.aif │ │ ├── uncomp_appletun.aif │ │ ├── uncomp_applin.aif │ │ ├── uncomp_araquanid.aif │ │ ├── uncomp_arctovish.aif │ │ ├── uncomp_arctozolt.aif │ │ ├── uncomp_aromatisse.aif │ │ ├── uncomp_arrokuda.aif │ │ ├── uncomp_aurorus.aif │ │ ├── uncomp_avalugg.aif │ │ ├── uncomp_barbaracle.aif │ │ ├── uncomp_barraskewda.aif │ │ ├── uncomp_bergmite.aif │ │ ├── uncomp_bewear.aif │ │ ├── uncomp_binacle.aif │ │ ├── uncomp_blacephalon.aif │ │ ├── uncomp_blipbug.aif │ │ ├── uncomp_boltund.aif │ │ ├── uncomp_bounsweet.aif │ │ ├── uncomp_braixen.aif │ │ ├── uncomp_brionne.aif │ │ ├── uncomp_bruxish.aif │ │ ├── uncomp_bunnelby.aif │ │ ├── uncomp_buzzwole.aif │ │ ├── uncomp_calyrex.aif │ │ ├── uncomp_calyrex_ice_rider.aif │ │ ├── uncomp_calyrex_shadow_rider.aif │ │ ├── uncomp_carbink.aif │ │ ├── uncomp_carkol.aif │ │ ├── uncomp_celesteela.aif │ │ ├── uncomp_centiskorch.aif │ │ ├── uncomp_charjabug.aif │ │ ├── uncomp_chesnaught.aif │ │ ├── uncomp_chespin.aif │ │ ├── uncomp_chewtle.aif │ │ ├── uncomp_cinderace.aif │ │ ├── uncomp_clauncher.aif │ │ ├── uncomp_clawitzer.aif │ │ ├── uncomp_clobbopus.aif │ │ ├── uncomp_coalossal.aif │ │ ├── uncomp_comfey.aif │ │ ├── uncomp_copperajah.aif │ │ ├── uncomp_corviknight.aif │ │ ├── uncomp_corvisquire.aif │ │ ├── uncomp_cosmoem.aif │ │ ├── uncomp_cosmog.aif │ │ ├── uncomp_cottonee.aif │ │ ├── uncomp_crabominable.aif │ │ ├── uncomp_crabrawler.aif │ │ ├── uncomp_cramorant.aif │ │ ├── uncomp_cufant.aif │ │ ├── uncomp_cursola.aif │ │ ├── uncomp_cutiefly.aif │ │ ├── uncomp_dartrix.aif │ │ ├── uncomp_decidueye.aif │ │ ├── uncomp_dedenne.aif │ │ ├── uncomp_delphox.aif │ │ ├── uncomp_dewpider.aif │ │ ├── uncomp_dhelmise.aif │ │ ├── uncomp_diancie.aif │ │ ├── uncomp_diggersby.aif │ │ ├── uncomp_dottler.aif │ │ ├── uncomp_doublade.aif │ │ ├── uncomp_dracovish.aif │ │ ├── uncomp_dracozolt.aif │ │ ├── uncomp_dragalge.aif │ │ ├── uncomp_dragapult.aif │ │ ├── uncomp_drakloak.aif │ │ ├── uncomp_drampa.aif │ │ ├── uncomp_drednaw.aif │ │ ├── uncomp_dreepy.aif │ │ ├── uncomp_drizzile.aif │ │ ├── uncomp_dubwool.aif │ │ ├── uncomp_duraludon.aif │ │ ├── uncomp_eiscue.aif │ │ ├── uncomp_eiscue_noice_face.aif │ │ ├── uncomp_eldegoss.aif │ │ ├── uncomp_elgyem.aif │ │ ├── uncomp_espurr.aif │ │ ├── uncomp_eternatus.aif │ │ ├── uncomp_eternatus_eternamax.aif │ │ ├── uncomp_falinks.aif │ │ ├── uncomp_fennekin.aif │ │ ├── uncomp_flabebe.aif │ │ ├── uncomp_flapple.aif │ │ ├── uncomp_fletchinder.aif │ │ ├── uncomp_fletchling.aif │ │ ├── uncomp_floette.aif │ │ ├── uncomp_floette_eternal_flower.aif │ │ ├── uncomp_florges.aif │ │ ├── uncomp_fomantis.aif │ │ ├── uncomp_foongus.aif │ │ ├── uncomp_froakie.aif │ │ ├── uncomp_frogadier.aif │ │ ├── uncomp_frosmoth.aif │ │ ├── uncomp_furfrou.aif │ │ ├── uncomp_glastrier.aif │ │ ├── uncomp_gogoat.aif │ │ ├── uncomp_golisopod.aif │ │ ├── uncomp_goodra.aif │ │ ├── uncomp_goomy.aif │ │ ├── uncomp_gossifleur.aif │ │ ├── uncomp_gourgeist.aif │ │ ├── uncomp_gourgeist_super.aif │ │ ├── uncomp_grapploct.aif │ │ ├── uncomp_greedent.aif │ │ ├── uncomp_greninja.aif │ │ ├── uncomp_grimmsnarl.aif │ │ ├── uncomp_grookey.aif │ │ ├── uncomp_grubbin.aif │ │ ├── uncomp_gumshoos.aif │ │ ├── uncomp_guzzlord.aif │ │ ├── uncomp_hakamo_o.aif │ │ ├── uncomp_hatenna.aif │ │ ├── uncomp_hatterene.aif │ │ ├── uncomp_hattrem.aif │ │ ├── uncomp_hawlucha.aif │ │ ├── uncomp_heliolisk.aif │ │ ├── uncomp_helioptile.aif │ │ ├── uncomp_honedge.aif │ │ ├── uncomp_hoopa.aif │ │ ├── uncomp_hoopa_unbound.aif │ │ ├── uncomp_impidimp.aif │ │ ├── uncomp_incineroar.aif │ │ ├── uncomp_indeedee.aif │ │ ├── uncomp_indeedee_female.aif │ │ ├── uncomp_inkay.aif │ │ ├── uncomp_inteleon.aif │ │ ├── uncomp_jangmo_o.aif │ │ ├── uncomp_kartana.aif │ │ ├── uncomp_keldeo.aif │ │ ├── uncomp_klefki.aif │ │ ├── uncomp_komala.aif │ │ ├── uncomp_kommo_o.aif │ │ ├── uncomp_kubfu.aif │ │ ├── uncomp_litleo.aif │ │ ├── uncomp_litten.aif │ │ ├── uncomp_lunala.aif │ │ ├── uncomp_lurantis.aif │ │ ├── uncomp_lycanroc.aif │ │ ├── uncomp_lycanroc_dusk.aif │ │ ├── uncomp_lycanroc_midnight.aif │ │ ├── uncomp_magearna.aif │ │ ├── uncomp_malamar.aif │ │ ├── uncomp_mareanie.aif │ │ ├── uncomp_marshadow.aif │ │ ├── uncomp_mega_abomasnow.aif │ │ ├── uncomp_mega_absol.aif │ │ ├── uncomp_mega_aerodactyl.aif │ │ ├── uncomp_mega_aggron.aif │ │ ├── uncomp_mega_alakazam.aif │ │ ├── uncomp_mega_altaria.aif │ │ ├── uncomp_mega_ampharos.aif │ │ ├── uncomp_mega_audino.aif │ │ ├── uncomp_mega_banette.aif │ │ ├── uncomp_mega_beedrill.aif │ │ ├── uncomp_mega_blastoise.aif │ │ ├── uncomp_mega_blaziken.aif │ │ ├── uncomp_mega_butterfree.aif │ │ ├── uncomp_mega_camerupt.aif │ │ ├── uncomp_mega_charizard_x.aif │ │ ├── uncomp_mega_charizard_y.aif │ │ ├── uncomp_mega_diancie.aif │ │ ├── uncomp_mega_flygon.aif │ │ ├── uncomp_mega_gallade.aif │ │ ├── uncomp_mega_garchomp.aif │ │ ├── uncomp_mega_gardevoir.aif │ │ ├── uncomp_mega_gengar.aif │ │ ├── uncomp_mega_glalie.aif │ │ ├── uncomp_mega_gyarados.aif │ │ ├── uncomp_mega_heracross.aif │ │ ├── uncomp_mega_houndoom.aif │ │ ├── uncomp_mega_kangaskhan.aif │ │ ├── uncomp_mega_kingdra.aif │ │ ├── uncomp_mega_kingler.aif │ │ ├── uncomp_mega_lapras.aif │ │ ├── uncomp_mega_latias.aif │ │ ├── uncomp_mega_latios.aif │ │ ├── uncomp_mega_lopunny.aif │ │ ├── uncomp_mega_lucario.aif │ │ ├── uncomp_mega_machamp.aif │ │ ├── uncomp_mega_manectric.aif │ │ ├── uncomp_mega_mawile.aif │ │ ├── uncomp_mega_medicham.aif │ │ ├── uncomp_mega_metagross.aif │ │ ├── uncomp_mega_mewtwo_x.aif │ │ ├── uncomp_mega_mewtwo_y.aif │ │ ├── uncomp_mega_milotic.aif │ │ ├── uncomp_mega_pidgeot.aif │ │ ├── uncomp_mega_pinsir.aif │ │ ├── uncomp_mega_rayquaza.aif │ │ ├── uncomp_mega_sableye.aif │ │ ├── uncomp_mega_salamence.aif │ │ ├── uncomp_mega_sceptile.aif │ │ ├── uncomp_mega_scizor.aif │ │ ├── uncomp_mega_sharpedo.aif │ │ ├── uncomp_mega_slowbro.aif │ │ ├── uncomp_mega_steelix.aif │ │ ├── uncomp_mega_swampert.aif │ │ ├── uncomp_mega_tyranitar.aif │ │ ├── uncomp_mega_venusaur.aif │ │ ├── uncomp_melmetal.aif │ │ ├── uncomp_meltan.aif │ │ ├── uncomp_meowstic.aif │ │ ├── uncomp_milcery.aif │ │ ├── uncomp_mimikyu.aif │ │ ├── uncomp_minior.aif │ │ ├── uncomp_morelull.aif │ │ ├── uncomp_morgrem.aif │ │ ├── uncomp_morpeko.aif │ │ ├── uncomp_morpeko_hangry.aif │ │ ├── uncomp_mr_rime.aif │ │ ├── uncomp_mudbray.aif │ │ ├── uncomp_mudsdale.aif │ │ ├── uncomp_naganadel.aif │ │ ├── uncomp_necrozma.aif │ │ ├── uncomp_necrozma_dawn_wings.aif │ │ ├── uncomp_necrozma_dusk_mane.aif │ │ ├── uncomp_necrozma_ultra.aif │ │ ├── uncomp_nickit.aif │ │ ├── uncomp_nihilego.aif │ │ ├── uncomp_noibat.aif │ │ ├── uncomp_noivern.aif │ │ ├── uncomp_obstagoon.aif │ │ ├── uncomp_oranguru.aif │ │ ├── uncomp_orbeetle.aif │ │ ├── uncomp_oricorio.aif │ │ ├── uncomp_oricorio_pau.aif │ │ ├── uncomp_oricorio_pom_pom.aif │ │ ├── uncomp_oricorio_sensu.aif │ │ ├── uncomp_palossand.aif │ │ ├── uncomp_pancham.aif │ │ ├── uncomp_pangoro.aif │ │ ├── uncomp_passimian.aif │ │ ├── uncomp_perrserker.aif │ │ ├── uncomp_phantump.aif │ │ ├── uncomp_pheromosa.aif │ │ ├── uncomp_pikipek.aif │ │ ├── uncomp_pincurchin.aif │ │ ├── uncomp_poipole.aif │ │ ├── uncomp_polteageist.aif │ │ ├── uncomp_popplio.aif │ │ ├── uncomp_primal_groudon.aif │ │ ├── uncomp_primal_kyogre.aif │ │ ├── uncomp_primarina.aif │ │ ├── uncomp_pumpkaboo.aif │ │ ├── uncomp_pumpkaboo_super.aif │ │ ├── uncomp_pyroar.aif │ │ ├── uncomp_pyukumuku.aif │ │ ├── uncomp_quilladin.aif │ │ ├── uncomp_raboot.aif │ │ ├── uncomp_regidrago.aif │ │ ├── uncomp_regieleki.aif │ │ ├── uncomp_ribombee.aif │ │ ├── uncomp_rillaboom.aif │ │ ├── uncomp_rockruff.aif │ │ ├── uncomp_rolycoly.aif │ │ ├── uncomp_rookidee.aif │ │ ├── uncomp_rowlet.aif │ │ ├── uncomp_runerigus.aif │ │ ├── uncomp_salandit.aif │ │ ├── uncomp_salazzle.aif │ │ ├── uncomp_sandaconda.aif │ │ ├── uncomp_sandygast.aif │ │ ├── uncomp_scatterbug.aif │ │ ├── uncomp_scorbunny.aif │ │ ├── uncomp_shelmet.aif │ │ ├── uncomp_shiinotic.aif │ │ ├── uncomp_silicobra.aif │ │ ├── uncomp_silvally.aif │ │ ├── uncomp_sinistea.aif │ │ ├── uncomp_sirfetchd.aif │ │ ├── uncomp_sizzlipede.aif │ │ ├── uncomp_skiddo.aif │ │ ├── uncomp_skrelp.aif │ │ ├── uncomp_skwovet.aif │ │ ├── uncomp_sliggoo.aif │ │ ├── uncomp_slowpoke_galarian.aif │ │ ├── uncomp_slurpuff.aif │ │ ├── uncomp_snom.aif │ │ ├── uncomp_sobble.aif │ │ ├── uncomp_solgaleo.aif │ │ ├── uncomp_spectrier.aif │ │ ├── uncomp_spewpa.aif │ │ ├── uncomp_spritzee.aif │ │ ├── uncomp_stakataka.aif │ │ ├── uncomp_steenee.aif │ │ ├── uncomp_stonjourner.aif │ │ ├── uncomp_stufful.aif │ │ ├── uncomp_swirlix.aif │ │ ├── uncomp_swoobat.aif │ │ ├── uncomp_sylveon.aif │ │ ├── uncomp_talonflame.aif │ │ ├── uncomp_tapu_bulu.aif │ │ ├── uncomp_tapu_fini.aif │ │ ├── uncomp_tapu_koko.aif │ │ ├── uncomp_tapu_lele.aif │ │ ├── uncomp_thievul.aif │ │ ├── uncomp_thwackey.aif │ │ ├── uncomp_togedemaru.aif │ │ ├── uncomp_torracat.aif │ │ ├── uncomp_toucannon.aif │ │ ├── uncomp_toxapex.aif │ │ ├── uncomp_toxel.aif │ │ ├── uncomp_toxtricity.aif │ │ ├── uncomp_toxtricity_low_key.aif │ │ ├── uncomp_trevenant.aif │ │ ├── uncomp_trumbeak.aif │ │ ├── uncomp_tsareena.aif │ │ ├── uncomp_turtonator.aif │ │ ├── uncomp_type_null.aif │ │ ├── uncomp_tyrantrum.aif │ │ ├── uncomp_tyrunt.aif │ │ ├── uncomp_urshifu.aif │ │ ├── uncomp_urshifu_rapid_strike_style.aif │ │ ├── uncomp_vikavolt.aif │ │ ├── uncomp_vivillon.aif │ │ ├── uncomp_volcanion.aif │ │ ├── uncomp_wimpod.aif │ │ ├── uncomp_wishiwashi.aif │ │ ├── uncomp_wishiwashi_school.aif │ │ ├── uncomp_wooloo.aif │ │ ├── uncomp_xerneas.aif │ │ ├── uncomp_xurkitree.aif │ │ ├── uncomp_yamask.aif │ │ ├── uncomp_yamper.aif │ │ ├── uncomp_yungoos.aif │ │ ├── uncomp_yveltal.aif │ │ ├── uncomp_zacian.aif │ │ ├── uncomp_zacian_crowned_sword.aif │ │ ├── uncomp_zamazenta.aif │ │ ├── uncomp_zamazenta_crowned_shield.aif │ │ ├── uncomp_zarude.aif │ │ ├── uncomp_zeraora.aif │ │ ├── uncomp_zygarde.aif │ │ ├── uncomp_zygarde_10.aif │ │ ├── uncomp_zygarde_complete.aif │ │ ├── unfezant.aif │ │ ├── unown.aif │ │ ├── ursaring.aif │ │ ├── uxie.aif │ │ ├── vanillish.aif │ │ ├── vanillite.aif │ │ ├── vanilluxe.aif │ │ ├── vaporeon.aif │ │ ├── venipede.aif │ │ ├── venomoth.aif │ │ ├── venonat.aif │ │ ├── venusaur.aif │ │ ├── vespiquen.aif │ │ ├── vibrava.aif │ │ ├── victini.aif │ │ ├── victreebel.aif │ │ ├── vigoroth.aif │ │ ├── vileplume.aif │ │ ├── virizion.aif │ │ ├── volbeat.aif │ │ ├── volcarona.aif │ │ ├── voltorb.aif │ │ ├── vullaby.aif │ │ ├── vulpix.aif │ │ ├── wailmer.aif │ │ ├── wailord.aif │ │ ├── walrein.aif │ │ ├── wartortle.aif │ │ ├── watchog.aif │ │ ├── weavile.aif │ │ ├── weedle.aif │ │ ├── weepinbell.aif │ │ ├── weezing.aif │ │ ├── whimsicott.aif │ │ ├── whirlipede.aif │ │ ├── whiscash.aif │ │ ├── whismur.aif │ │ ├── wigglytuff.aif │ │ ├── wingull.aif │ │ ├── wobbuffet.aif │ │ ├── woobat.aif │ │ ├── wooper.aif │ │ ├── wormadam.aif │ │ ├── wurmple.aif │ │ ├── wynaut.aif │ │ ├── xatu.aif │ │ ├── yamask.aif │ │ ├── yanma.aif │ │ ├── yanmega.aif │ │ ├── zangoose.aif │ │ ├── zapdos.aif │ │ ├── zebstrika.aif │ │ ├── zekrom.aif │ │ ├── zigzagoon.aif │ │ ├── zoroark.aif │ │ ├── zorua.aif │ │ ├── zubat.aif │ │ └── zweilous.aif │ ├── dance_drums_ride_bell.aif │ ├── dp_016bongo.aif │ ├── dp_053clap.aif │ ├── dp_060conga.aif │ ├── dp_062sleigh.aif │ ├── dp_093snare.aif │ ├── dp_808snare_16.aif │ ├── dp_accordion_c1_16.aif │ ├── dp_accordion_c2_16.aif │ ├── dp_accordion_c3_16.aif │ ├── dp_accordion_c4_16.aif │ ├── dp_acgt_e1_16.aif │ ├── dp_acgt_e2_16.aif │ ├── dp_acgt_e3_16.aif │ ├── dp_acgt_e4_16.aif │ ├── dp_africa_dr_16.aif │ ├── dp_altosax_c3_16.aif │ ├── dp_banjo48.aif │ ├── dp_banjo60.aif │ ├── dp_bass2.aif │ ├── dp_basschoir36.aif │ ├── dp_bassdr1.aif │ ├── dp_bassdr1_16.aif │ ├── dp_bassdr2_16.aif │ ├── dp_bluesgt_a2_16.aif │ ├── dp_bongo_16.aif │ ├── dp_cabassa_16.aif │ ├── dp_castanet_22.aif │ ├── dp_cawbell_16.aif │ ├── dp_china_cynbal.aif │ ├── dp_clavi_c1_16.aif │ ├── dp_clavi_c2_16.aif │ ├── dp_clavi_c3_16.aif │ ├── dp_clean_gt_c1_16.aif │ ├── dp_clean_gt_c2_16.aif │ ├── dp_clean_gt_c3_16.aif │ ├── dp_closed_hihat_16.aif │ ├── dp_closehight_16.aif │ ├── dp_cymbal1_16.aif │ ├── dp_dis_gt_c1_16.aif │ ├── dp_dis_gt_c2_16.aif │ ├── dp_dis_gt_c3_16.aif │ ├── dp_dis_gt_c4_16.aif │ ├── dp_disgt_b4_16.aif │ ├── dp_disgt_c2_16.aif │ ├── dp_disgt_e1_16.aif │ ├── dp_disgt_e3_16.aif │ ├── dp_disgt_e4_16.aif │ ├── dp_dragon_dr_16.aif │ ├── dp_el_pia2_c3_22.aif │ ├── dp_el_pia2_c4_22.aif │ ├── dp_el_pia_c3_22.aif │ ├── dp_el_pia_c4_22.aif │ ├── dp_eternaguitar36.aif │ ├── dp_explosion.aif │ ├── dp_f_horn_c2_16.aif │ ├── dp_f_horn_c4_16.aif │ ├── dp_flute_c4_16.aif │ ├── dp_flute_c5_16.aif │ ├── dp_flute_c6_16.aif │ ├── dp_fretlessbass_d1_16.aif │ ├── dp_fretnoise60.aif │ ├── dp_glocken_c6_16.aif │ ├── dp_handclap_16.aif │ ├── dp_handclup1.aif │ ├── dp_harmonica_c3_16.aif │ ├── dp_harp_c3_16.aif │ ├── dp_harp_c4_16.aif │ ├── dp_harp_c5_16.aif │ ├── dp_harp_c6_16.aif │ ├── dp_high_conga_16.aif │ ├── dp_india_per_16.aif │ ├── dp_jinglebell_16.aif │ ├── dp_kaaroop_16.aif │ ├── dp_marin_c3_16.aif │ ├── dp_marin_c4_16.aif │ ├── dp_marin_c5_16.aif │ ├── dp_merotim_c2_16.aif │ ├── dp_merotim_c3_16.aif │ ├── dp_mute_conga_16.aif │ ├── dp_oboe_c3_16.aif │ ├── dp_oct_g3_16.aif │ ├── dp_oct_snare_16.aif │ ├── dp_octhit_c2_16.aif │ ├── dp_octlow_cs2_16.aif │ ├── dp_octlowbra_b2_16.aif │ ├── dp_open_hihat_16.aif │ ├── dp_openhight.aif │ ├── dp_orchhitmajor60.aif │ ├── dp_orchhitminor60.aif │ ├── dp_org1_c2_16.aif │ ├── dp_org1_c3_16.aif │ ├── dp_org1_c4_16.aif │ ├── dp_org1_c5_16.aif │ ├── dp_org4_c3_16.aif │ ├── dp_org4_c4_16.aif │ ├── dp_org5_c3_16.aif │ ├── dp_pedalhight.aif │ ├── dp_pic_g4_16.aif │ ├── dp_pic_g5_16.aif │ ├── dp_pickbass_e1_16.aif │ ├── dp_power_gt_b1_16.aif │ ├── dp_power_gt_e1_16.aif │ ├── dp_power_gt_e2_16.aif │ ├── dp_power_snare_16.aif │ ├── dp_reverscyn_16.aif │ ├── dp_ridecap.aif │ ├── dp_ridecynbal.aif │ ├── dp_rim1_roop.aif │ ├── dp_sawtoothlead60.aif │ ├── dp_sheiker.aif │ ├── dp_slapbass_c1_16.aif │ ├── dp_slapbass_g1_16.aif │ ├── dp_sne1_roop.aif │ ├── dp_sne2_loop.aif │ ├── dp_sopranochoir60.aif │ ├── dp_spearpillarwind60.aif │ ├── dp_sting_bass_e1_16.aif │ ├── dp_strings_c1_16.aif │ ├── dp_strings_c2_16.aif │ ├── dp_strings_c3_16.aif │ ├── dp_strings_c4_16.aif │ ├── dp_sty_piano_c0_16.aif │ ├── dp_sty_piano_c1_16.aif │ ├── dp_sty_piano_c2_16.aif │ ├── dp_sty_piano_c3_16.aif │ ├── dp_sty_piano_c4_16.aif │ ├── dp_sty_piano_c5_16.aif │ ├── dp_sty_piano_c6_16.aif │ ├── dp_sty_piano_f4_16.aif │ ├── dp_sty_piano_g1_16.aif │ ├── dp_sty_piano_g3_16.aif │ ├── dp_sy_clarinet_c3_16.aif │ ├── dp_synbass1_c2_16.aif │ ├── dp_synbass2_c1_16.aif │ ├── dp_synbass_c1_16.aif │ ├── dp_synthkick.aif │ ├── dp_synthsnare.aif │ ├── dp_tambourine_16.aif │ ├── dp_tenorchoir48.aif │ ├── dp_timpany_as_16.aif │ ├── dp_timpany_e_16.aif │ ├── dp_tom1_16.aif │ ├── dp_tom_16.aif │ ├── dp_tp_b4_16.aif │ ├── dp_tp_cs3_16.aif │ ├── dp_tp_cs4_16.aif │ ├── dp_triangle_16.aif │ ├── dp_trinitypiano36.aif │ ├── dp_trinitypiano48.aif │ ├── dp_trinitypiano60.aif │ ├── dp_trinitypiano72.aif │ ├── dp_trombone_c2_16.aif │ ├── dp_trombone_c3_16.aif │ ├── dp_trombone_c4_16.aif │ ├── dp_tub_bell_c3_16.aif │ ├── dp_tub_bell_c4_16.aif │ ├── dp_tub_bell_c5_16.aif │ ├── dp_tub_bell_c6_16.aif │ ├── dp_tuba_c1_22.aif │ ├── dp_tuba_c2_22.aif │ ├── dp_vibra_c1_16.aif │ ├── dp_vibra_c2_16.aif │ ├── dp_vibra_c3_16.aif │ ├── dp_vibra_c4_16.aif │ ├── dp_vibra_c5_16.aif │ ├── dp_vibra_c6_16.aif │ ├── dp_violin_c1_16.aif │ ├── dp_violin_c3_16.aif │ ├── dp_violin_c4_16.aif │ ├── dp_violin_c5_16.aif │ ├── dp_whistle_c5_16.aif │ ├── dp_woodbass_d3_16.aif │ ├── dp_woodbass_g1_16.aif │ ├── dp_woodbass_gs2_16.aif │ ├── dp_woodblock_16.aif │ ├── dp_woodpat_c4_16.aif │ ├── dp_xylphone_c2_16.aif │ ├── dp_xylphone_c3_16.aif │ ├── dp_xylphone_c4_16.aif │ ├── dp_xylphone_c5_16.aif │ ├── dp_xylphone_c6_16.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 │ ├── hg_000uprigc2.aif │ ├── hg_001uprigc3.aif │ ├── hg_002accorc3.aif │ ├── hg_003accorc4.aif │ ├── hg_004accorc5.aif │ ├── hg_005pnoffc4.aif │ ├── hg_006pnoffc5.aif │ ├── hg_010bsna3.aif │ ├── hg_011bsnc3.aif │ ├── hg_012bsne2.aif │ ├── hg_014fhsolob4.aif │ ├── hg_015fhsolod4.aif │ ├── hg_016fhsolof3.aif │ ├── hg_019celloc4.aif │ ├── hg_020celloe3.aif │ ├── hg_021cellog2.aif │ ├── hg_022china.aif │ ├── hg_023claric5.aif │ ├── hg_024clarie4.aif │ ├── hg_025clarig3.aif │ ├── hg_027cleanc5.aif │ ├── hg_028cleane4.aif │ ├── hg_029cleang2.aif │ ├── hg_030cleang3.aif │ ├── hg_031cowbl.aif │ ├── hg_032crash.aif │ ├── hg_033orccym.aif │ ├── hg_038drawbc3.aif │ ├── hg_039drawbc4.aif │ ├── hg_040drawbc5.aif │ ├── hg_041ampega2.aif │ ├── hg_042ampega3.aif │ ├── hg_043rhodc4.aif │ ├── hg_044rhodc5.aif │ ├── hg_046fhnsb4.aif │ ├── hg_047fhnsd4.aif │ ├── hg_048fhnsf3.aif │ ├── hg_049glocknc4.aif │ ├── hg_050glocknc5.aif │ ├── hg_051pnoc2.aif │ ├── hg_052pnoc3.aif │ ├── hg_053pnoc4.aif │ ├── hg_054pnoc5.aif │ ├── hg_055pnoc6.aif │ ├── hg_058harpc3.aif │ ├── hg_059harpc4.aif │ ├── hg_060harpc5.aif │ ├── hg_062chh.aif │ ├── hg_063ohh.aif │ ├── hg_065kotoa4.aif │ ├── hg_066kotoc4.aif │ ├── hg_067kotoe3.aif │ ├── hg_068marimc4.aif │ ├── hg_069marimc5.aif │ ├── hg_070marimc6.aif │ ├── hg_071musboxc4.aif │ ├── hg_072musboxc5.aif │ ├── hg_073musboxc6.aif │ ├── hg_075nylonc5.aif │ ├── hg_076nylone4.aif │ ├── hg_077nylong2.aif │ ├── hg_078nylong3.aif │ ├── hg_079oboea5.aif │ ├── hg_080oboec5.aif │ ├── hg_081oboee4.aif │ ├── hg_082octpnoc2.aif │ ├── hg_083octpnoc3.aif │ ├── hg_084octpnoc4.aif │ ├── hg_085octpnoc5.aif │ ├── hg_086orchitc4.aif │ ├── hg_087orchitc5.aif │ ├── hg_088orchitc6.aif │ ├── hg_089orchitg5.aif │ ├── hg_091jazorgc3.aif │ ├── hg_092jazorgc4.aif │ ├── hg_093jazorgc5.aif │ ├── hg_094flt1a4.aif │ ├── hg_095flt1c4.aif │ ├── hg_096flt1c6.aif │ ├── hg_097flt1f5.aif │ ├── hg_098pizza4.aif │ ├── hg_099pizzc4.aif │ ├── hg_100pizze3.aif │ ├── hg_101pizzf5.aif │ ├── hg_102pizzg2.aif │ ├── hg_114splash.aif │ ├── hg_115martinc5.aif │ ├── hg_116martine4.aif │ ├── hg_117marting2.aif │ ├── hg_118marting3.aif │ ├── hg_119str1a4.aif │ ├── hg_120str1c4.aif │ ├── hg_121str1c6.aif │ ├── hg_122str1f5.aif │ ├── hg_123elastkc2.aif │ ├── hg_124elastkc3.aif │ ├── hg_125squarc4.aif │ ├── hg_126squarc5.aif │ ├── hg_127squarc6.aif │ ├── hg_128jdruml.aif │ ├── hg_129jdrumm.aif │ ├── hg_130jdrumh.aif │ ├── hg_132timpc4.aif │ ├── hg_133timpg3.aif │ ├── hg_134timpg4.aif │ ├── hg_135tom.aif │ ├── hg_136tom.aif │ ├── hg_137tom.aif │ ├── hg_138tom.aif │ ├── hg_140tbnc4.aif │ ├── hg_141tbne3.aif │ ├── hg_142tbng2.aif │ ├── hg_143tpta4.aif │ ├── hg_144tptc4.aif │ ├── hg_145tptg5.aif │ ├── hg_146tbellc5.aif │ ├── hg_147tbellg4.aif │ ├── hg_148vibrc4.aif │ ├── hg_149vibrc5.aif │ ├── hg_150violna5.aif │ ├── hg_151violnc5.aif │ ├── hg_152violne4.aif │ ├── hg_155xylo1a4.aif │ ├── hg_156xylo1c4.aif │ ├── hg_157xylo1f5.aif │ ├── hg_choirc5.aif │ ├── hg_ecruteaklow.aif │ ├── hg_hoohclap.aif │ ├── hg_hyoshigi.aif │ ├── hg_jinglebell.aif │ ├── hg_pno4a2.aif │ ├── hg_pno4b4.aif │ ├── hg_pno4c2.aif │ ├── hg_pno4d4.aif │ ├── hg_pno4e6.aif │ ├── hg_pno4f3.aif │ ├── hg_pno4g5.aif │ ├── hg_shamisenas3.aif │ ├── hg_shamisend3.aif │ ├── hg_shamiseng4.aif │ ├── hg_tsuzumi.aif │ ├── pl_musicbox62.aif │ ├── pl_musicbox79.aif │ ├── puresquare_50.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_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 │ ├── 86B4830.pcm │ ├── 86B4840.pcm │ ├── 86B4850.pcm │ ├── 86B4860.pcm │ ├── 86B4870.pcm │ ├── 86B4880.pcm │ ├── 86B4890.pcm │ ├── 86B48A0.pcm │ ├── 86B48B0.pcm │ ├── 86B48C0.pcm │ ├── 86B48D0.pcm │ ├── 86B48E0.pcm │ ├── 86B48F0.pcm │ ├── 86B4900.pcm │ ├── 86B4910.pcm │ ├── 86B4920.pcm │ ├── 86B4970.pcm │ ├── 86B4980.pcm │ ├── 86B4990.pcm │ ├── 86B49A0.pcm │ ├── 86B49B0.pcm │ ├── sq25half.pcm │ ├── sq37half.pcm │ ├── sq50half.pcm │ ├── sq50oct.pcm │ ├── unused_86B4930.pcm │ ├── unused_86B4940.pcm │ ├── unused_86B4950.pcm │ └── unused_86B4960.pcm ├── song_table.inc ├── songs │ ├── midi │ │ ├── dp_seq_acce.mid │ │ ├── dp_seq_asa.mid │ │ ├── dp_seq_aus.mid │ │ ├── dp_seq_ba_agaki.mid │ │ ├── dp_seq_ba_chanp.mid │ │ ├── dp_seq_ba_dpoke1.mid │ │ ├── dp_seq_ba_dpoke2.mid │ │ ├── dp_seq_ba_ginga.mid │ │ ├── dp_seq_ba_ginga3.mid │ │ ├── dp_seq_ba_gym.mid │ │ ├── dp_seq_ba_poke.mid │ │ ├── dp_seq_ba_rival.mid │ │ ├── dp_seq_ba_secret1.mid │ │ ├── dp_seq_ba_secret2.mid │ │ ├── dp_seq_ba_tenno.mid │ │ ├── dp_seq_ba_train.mid │ │ ├── dp_seq_badge.mid │ │ ├── dp_seq_bf_towwer.mid │ │ ├── dp_seq_bicycle.mid │ │ ├── dp_seq_bld_bld_gtc.mid │ │ ├── dp_seq_bld_con.mid │ │ ├── dp_seq_bld_dendo.mid │ │ ├── dp_seq_bld_ending.mid │ │ ├── dp_seq_bld_ev_dendo2.mid │ │ ├── dp_seq_bld_game.mid │ │ ├── dp_seq_bld_tv.mid │ │ ├── dp_seq_city01_d.mid │ │ ├── dp_seq_city01_n.mid │ │ ├── dp_seq_city02_d.mid │ │ ├── dp_seq_city02_n.mid │ │ ├── dp_seq_city03_d.mid │ │ ├── dp_seq_city03_n.mid │ │ ├── dp_seq_city04_d.mid │ │ ├── dp_seq_city04_n.mid │ │ ├── dp_seq_city05_d.mid │ │ ├── dp_seq_city05_n.mid │ │ ├── dp_seq_city07_d.mid │ │ ├── dp_seq_city07_n.mid │ │ ├── dp_seq_city08_d.mid │ │ ├── dp_seq_city08_n.mid │ │ ├── dp_seq_city09_d.mid │ │ ├── dp_seq_city09_n.mid │ │ ├── dp_seq_city10_d.mid │ │ ├── dp_seq_city10_n.mid │ │ ├── dp_seq_city11_d.mid │ │ ├── dp_seq_city11_n.mid │ │ ├── dp_seq_co_dress.mid │ │ ├── dp_seq_co_fanfa.mid │ │ ├── dp_seq_co_kashi.mid │ │ ├── dp_seq_co_kekka.mid │ │ ├── dp_seq_co_takuma.mid │ │ ├── dp_seq_con_test.mid │ │ ├── dp_seq_d_01.mid │ │ ├── dp_seq_d_02.mid │ │ ├── dp_seq_d_03.mid │ │ ├── dp_seq_d_04.mid │ │ ├── dp_seq_d_05.mid │ │ ├── dp_seq_d_06.mid │ │ ├── dp_seq_d_agito.mid │ │ ├── dp_seq_d_ginlobby.mid │ │ ├── dp_seq_d_kouen.mid │ │ ├── dp_seq_d_lake.mid │ │ ├── dp_seq_d_league.mid │ │ ├── dp_seq_d_mount1.mid │ │ ├── dp_seq_d_mount2.mid │ │ ├── dp_seq_d_ryayhy.mid │ │ ├── dp_seq_d_safari.mid │ │ ├── dp_seq_eye_boy.mid │ │ ├── dp_seq_eye_champ.mid │ │ ├── dp_seq_eye_elite.mid │ │ ├── dp_seq_eye_enka.mid │ │ ├── dp_seq_eye_fight.mid │ │ ├── dp_seq_eye_fun.mid │ │ ├── dp_seq_eye_ginga.mid │ │ ├── dp_seq_eye_girl.mid │ │ ├── dp_seq_eye_kid.mid │ │ ├── dp_seq_eye_lady.mid │ │ ├── dp_seq_eye_mount.mid │ │ ├── dp_seq_eye_mys.mid │ │ ├── dp_seq_eye_rich.mid │ │ ├── dp_seq_eye_sport.mid │ │ ├── dp_seq_eye_tenno.mid │ │ ├── dp_seq_fanfa1.mid │ │ ├── dp_seq_fanfa3.mid │ │ ├── dp_seq_fanfa4.mid │ │ ├── dp_seq_fanfa5.mid │ │ ├── dp_seq_fs.mid │ │ ├── dp_seq_fue.mid │ │ ├── dp_seq_gonin.mid │ │ ├── dp_seq_gym.mid │ │ ├── dp_seq_hatanige.mid │ │ ├── dp_seq_kenkyujo.mid │ │ ├── dp_seq_kinomi.mid │ │ ├── dp_seq_kinomi1.mid │ │ ├── dp_seq_kusagasa.mid │ │ ├── dp_seq_naminori.mid │ │ ├── dp_seq_opening.mid │ │ ├── dp_seq_pc_01.mid │ │ ├── dp_seq_pc_02.mid │ │ ├── dp_seq_pocketch.mid │ │ ├── dp_seq_present.mid │ │ ├── dp_seq_road_a_d.mid │ │ ├── dp_seq_road_a_n.mid │ │ ├── dp_seq_road_b_d.mid │ │ ├── dp_seq_road_b_n.mid │ │ ├── dp_seq_road_bza_d.mid │ │ ├── dp_seq_road_bza_n.mid │ │ ├── dp_seq_road_c_d.mid │ │ ├── dp_seq_road_c_n.mid │ │ ├── dp_seq_road_d_d.mid │ │ ├── dp_seq_road_d_n.mid │ │ ├── dp_seq_road_e_d.mid │ │ ├── dp_seq_road_e_n.mid │ │ ├── dp_seq_road_f_d.mid │ │ ├── dp_seq_road_f_n.mid │ │ ├── dp_seq_road_snow_d.mid │ │ ├── dp_seq_road_snow_n.mid │ │ ├── dp_seq_shinka.mid │ │ ├── dp_seq_slot_atari.mid │ │ ├── dp_seq_slot_ooatari.mid │ │ ├── dp_seq_tankou.mid │ │ ├── dp_seq_the_boy.mid │ │ ├── dp_seq_the_event01.mid │ │ ├── dp_seq_the_event02.mid │ │ ├── dp_seq_the_event03.mid │ │ ├── dp_seq_the_event04.mid │ │ ├── dp_seq_the_girl.mid │ │ ├── dp_seq_the_riv.mid │ │ ├── dp_seq_title00.mid │ │ ├── dp_seq_title01.mid │ │ ├── dp_seq_town01_d.mid │ │ ├── dp_seq_town01_n.mid │ │ ├── dp_seq_town02_d.mid │ │ ├── dp_seq_town02_n.mid │ │ ├── dp_seq_town03_d.mid │ │ ├── dp_seq_town03_n.mid │ │ ├── dp_seq_town04_d.mid │ │ ├── dp_seq_town04_n.mid │ │ ├── dp_seq_town06_d.mid │ │ ├── dp_seq_town06_n.mid │ │ ├── dp_seq_town07_d.mid │ │ ├── dp_seq_town07_n.mid │ │ ├── dp_seq_tsureteke.mid │ │ ├── dp_seq_tv_end.mid │ │ ├── dp_seq_tv_housou.mid │ │ ├── dp_seq_wasure.mid │ │ ├── dp_seq_waza.mid │ │ ├── dp_seq_wifilobby.mid │ │ ├── dp_seq_winchamp.mid │ │ ├── dp_seq_winginga.mid │ │ ├── dp_seq_winpoke.mid │ │ ├── dp_seq_wintenno.mid │ │ ├── dp_seq_wintgym.mid │ │ ├── dp_seq_wintrain.mid │ │ ├── hg_seq_gs_aikotoba.mid │ │ ├── hg_seq_gs_ba_brain.mid │ │ ├── hg_seq_gs_battletower.mid │ │ ├── hg_seq_gs_battletower2.mid │ │ ├── hg_seq_gs_bf_castle.mid │ │ ├── hg_seq_gs_bf_factory.mid │ │ ├── hg_seq_gs_bf_roulette.mid │ │ ├── hg_seq_gs_bf_stage.mid │ │ ├── hg_seq_gs_bld_gtc.mid │ │ ├── hg_seq_gs_c_enju.mid │ │ ├── hg_seq_gs_c_hanada.mid │ │ ├── hg_seq_gs_c_kikyou.mid │ │ ├── hg_seq_gs_c_kogane.mid │ │ ├── hg_seq_gs_c_kuchiba.mid │ │ ├── hg_seq_gs_c_tamamushi.mid │ │ ├── hg_seq_gs_c_tanba.mid │ │ ├── hg_seq_gs_c_yamabuki.mid │ │ ├── hg_seq_gs_c_yoshino.mid │ │ ├── hg_seq_gs_champroad.mid │ │ ├── hg_seq_gs_d_ajito.mid │ │ ├── hg_seq_gs_d_champroad.mid │ │ ├── hg_seq_gs_d_chikatsuuro.mid │ │ ├── hg_seq_gs_d_iwayama.mid │ │ ├── hg_seq_gs_d_koorinonuke.mid │ │ ├── hg_seq_gs_d_kouen.mid │ │ ├── hg_seq_gs_d_shinto.mid │ │ ├── hg_seq_gs_d_tokiwanomori3.mid │ │ ├── hg_seq_gs_d_unknown_iseki.mid │ │ ├── hg_seq_gs_e_arceus.mid │ │ ├── hg_seq_gs_e_dendouiri.mid │ │ ├── hg_seq_gs_e_g_pichu.mid │ │ ├── hg_seq_gs_e_houou.mid │ │ ├── hg_seq_gs_e_linear.mid │ │ ├── hg_seq_gs_e_lugia.mid │ │ ├── hg_seq_gs_e_maiko_mai.mid │ │ ├── hg_seq_gs_e_maiko_theme.mid │ │ ├── hg_seq_gs_e_minaki.mid │ │ ├── hg_seq_gs_e_rival1.mid │ │ ├── hg_seq_gs_e_rival2.mid │ │ ├── hg_seq_gs_e_support_f.mid │ │ ├── hg_seq_gs_e_support_m.mid │ │ ├── hg_seq_gs_e_tsureteke1.mid │ │ ├── hg_seq_gs_e_tsureteke2.mid │ │ ├── hg_seq_gs_ending.mid │ │ ├── hg_seq_gs_ending2.mid │ │ ├── hg_seq_gs_eye_bouzu.mid │ │ ├── hg_seq_gs_eye_j_ayashii.mid │ │ ├── hg_seq_gs_eye_j_shoujo.mid │ │ ├── hg_seq_gs_eye_j_shounen.mid │ │ ├── hg_seq_gs_eye_k_ayashii.mid │ │ ├── hg_seq_gs_eye_k_shoujo.mid │ │ ├── hg_seq_gs_eye_k_shounen.mid │ │ ├── hg_seq_gs_eye_maiko.mid │ │ ├── hg_seq_gs_eye_rocket.mid │ │ ├── hg_seq_gs_fs.mid │ │ ├── hg_seq_gs_game.mid │ │ ├── hg_seq_gs_gameatari.mid │ │ ├── hg_seq_gs_guruguru.mid │ │ ├── hg_seq_gs_gym.mid │ │ ├── hg_seq_gs_hue.mid │ │ ├── hg_seq_gs_ibuki.mid │ │ ├── hg_seq_gs_kaburenjou.mid │ │ ├── hg_seq_gs_kaidenpa.mid │ │ ├── hg_seq_gs_koukan.mid │ │ ├── hg_seq_gs_kousokusen.mid │ │ ├── hg_seq_gs_naminori.mid │ │ ├── hg_seq_gs_ohkido.mid │ │ ├── hg_seq_gs_ohkido_rabo.mid │ │ ├── hg_seq_gs_otsukimi_event.mid │ │ ├── hg_seq_gs_phc.mid │ │ ├── hg_seq_gs_pokemon_theme.mid │ │ ├── hg_seq_gs_pokesen.mid │ │ ├── hg_seq_gs_pt_end.mid │ │ ├── hg_seq_gs_pt_entr.mid │ │ ├── hg_seq_gs_pt_game.mid │ │ ├── hg_seq_gs_pt_gamef.mid │ │ ├── hg_seq_gs_pt_open.mid │ │ ├── hg_seq_gs_pt_result.mid │ │ ├── hg_seq_gs_pt_title.mid │ │ ├── hg_seq_gs_pt_victory.mid │ │ ├── hg_seq_gs_r_10_11.mid │ │ ├── hg_seq_gs_r_12_24.mid │ │ ├── hg_seq_gs_r_1_26.mid │ │ ├── hg_seq_gs_r_1_29.mid │ │ ├── hg_seq_gs_r_1_30.mid │ │ ├── hg_seq_gs_r_4_34.mid │ │ ├── hg_seq_gs_r_6_38.mid │ │ ├── hg_seq_gs_r_7_42.mid │ │ ├── hg_seq_gs_r_9_01.mid │ │ ├── hg_seq_gs_r_9_03.mid │ │ ├── hg_seq_gs_radio_jingle.mid │ │ ├── hg_seq_gs_radio_komoriuta.mid │ │ ├── hg_seq_gs_radio_march.mid │ │ ├── hg_seq_gs_radio_r_101.mid │ │ ├── hg_seq_gs_radio_r_201.mid │ │ ├── hg_seq_gs_radio_trainer.mid │ │ ├── hg_seq_gs_radio_unknown.mid │ │ ├── hg_seq_gs_radio_variety.mid │ │ ├── hg_seq_gs_ryuunoana.mid │ │ ├── hg_seq_gs_safari_field.mid │ │ ├── hg_seq_gs_safari_house.mid │ │ ├── hg_seq_gs_safari_road.mid │ │ ├── hg_seq_gs_senkyo.mid │ │ ├── hg_seq_gs_shinka.mid │ │ ├── hg_seq_gs_starting.mid │ │ ├── hg_seq_gs_t_chion.mid │ │ ├── hg_seq_gs_t_guren.mid │ │ ├── hg_seq_gs_t_hiwada.mid │ │ ├── hg_seq_gs_t_masara.mid │ │ ├── hg_seq_gs_t_wakaba.mid │ │ ├── hg_seq_gs_taikai.mid │ │ ├── hg_seq_gs_taikaimae.mid │ │ ├── hg_seq_gs_title.mid │ │ ├── hg_seq_gs_to_madatsubomi1.mid │ │ ├── hg_seq_gs_to_suzu.mid │ │ ├── hg_seq_gs_to_toudai.mid │ │ ├── hg_seq_gs_to_yaketa.mid │ │ ├── hg_seq_gs_utsugi_rabo.mid │ │ ├── hg_seq_gs_vs_champ.mid │ │ ├── hg_seq_gs_vs_entei.mid │ │ ├── hg_seq_gs_vs_gymreader.mid │ │ ├── hg_seq_gs_vs_gymreader_kanto.mid │ │ ├── hg_seq_gs_vs_houou.mid │ │ ├── hg_seq_gs_vs_kodai.mid │ │ ├── hg_seq_gs_vs_lugia.mid │ │ ├── hg_seq_gs_vs_norapoke.mid │ │ ├── hg_seq_gs_vs_norapoke_kanto.mid │ │ ├── hg_seq_gs_vs_raikou.mid │ │ ├── hg_seq_gs_vs_rival.mid │ │ ├── hg_seq_gs_vs_rocket.mid │ │ ├── hg_seq_gs_vs_suicune.mid │ │ ├── hg_seq_gs_vs_trainer.mid │ │ ├── hg_seq_gs_vs_trainer_kanto.mid │ │ ├── hg_seq_gs_wifi_access.mid │ │ ├── hg_seq_gs_wifi_present.mid │ │ ├── hg_seq_gs_wifigame.mid │ │ ├── hg_seq_gs_wifiparade.mid │ │ ├── hg_seq_gs_wifitower.mid │ │ ├── hg_seq_gs_wifiunion.mid │ │ ├── hg_seq_gs_win1.mid │ │ ├── hg_seq_gs_win2.mid │ │ ├── hg_seq_gs_win2_not_fan.mid │ │ ├── hg_seq_gs_win3.mid │ │ ├── hg_seq_gs_winbrain.mid │ │ ├── hg_seq_me_acce.mid │ │ ├── hg_seq_me_asa.mid │ │ ├── hg_seq_me_badge.mid │ │ ├── hg_seq_me_bpget.mid │ │ ├── hg_seq_me_cardgame1.mid │ │ ├── hg_seq_me_cardgame2.mid │ │ ├── hg_seq_me_castle.mid │ │ ├── hg_seq_me_gonin.mid │ │ ├── hg_seq_me_hyouka1.mid │ │ ├── hg_seq_me_hyouka2.mid │ │ ├── hg_seq_me_hyouka3.mid │ │ ├── hg_seq_me_hyouka4.mid │ │ ├── hg_seq_me_hyouka5.mid │ │ ├── hg_seq_me_hyouka6.mid │ │ ├── hg_seq_me_item.mid │ │ ├── hg_seq_me_keyitem.mid │ │ ├── hg_seq_me_kinomi.mid │ │ ├── hg_seq_me_lvup.mid │ │ ├── hg_seq_me_minigame.mid │ │ ├── hg_seq_me_mushitori1.mid │ │ ├── hg_seq_me_mushitori2.mid │ │ ├── hg_seq_me_mushitori3.mid │ │ ├── hg_seq_me_pokegear_regist.mid │ │ ├── hg_seq_me_pt_new.mid │ │ ├── hg_seq_me_pt_resultg.mid │ │ ├── hg_seq_me_pt_special.mid │ │ ├── hg_seq_me_roulette.mid │ │ ├── hg_seq_me_shinkaome.mid │ │ ├── hg_seq_me_tamago_get.mid │ │ ├── hg_seq_me_wasure.mid │ │ ├── hg_seq_me_waza.mid │ │ ├── hg_seq_pl_bicycle.mid │ │ ├── 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_45.mid │ │ ├── mus_rg_sevii_67.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_title.mid │ │ ├── mus_rg_trainer_tower.mid │ │ ├── mus_rg_union_room.mid │ │ ├── mus_rg_vermillion.mid │ │ ├── mus_rg_victory_road.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_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 │ │ ├── pl_seq_city11_d.mid │ │ ├── pl_seq_pl_audio.mid │ │ ├── pl_seq_pl_ba_brain.mid │ │ ├── pl_seq_pl_ba_gira.mid │ │ ├── pl_seq_pl_ba_regi.mid │ │ ├── pl_seq_pl_bf_castle.mid │ │ ├── pl_seq_pl_bf_factory.mid │ │ ├── pl_seq_pl_bf_roulette.mid │ │ ├── pl_seq_pl_bf_stage.mid │ │ ├── pl_seq_pl_d_giratina.mid │ │ ├── pl_seq_pl_don2.mid │ │ ├── pl_seq_pl_ev_gira.mid │ │ ├── pl_seq_pl_ev_gira2.mid │ │ ├── pl_seq_pl_fro.mid │ │ ├── pl_seq_pl_guruguru.mid │ │ ├── pl_seq_pl_handsome.mid │ │ ├── pl_seq_pl_mtkakko.mid │ │ ├── pl_seq_pl_mtkashi.mid │ │ ├── pl_seq_pl_mtkawa.mid │ │ ├── pl_seq_pl_mttakma.mid │ │ ├── pl_seq_pl_mtutsuk.mid │ │ ├── pl_seq_pl_pointget3.mid │ │ ├── pl_seq_pl_pthaifu.mid │ │ ├── pl_seq_pl_town02.mid │ │ ├── pl_seq_pl_wifigame.mid │ │ ├── pl_seq_pl_wifiparade.mid │ │ ├── pl_seq_pl_wifitower.mid │ │ ├── pl_seq_pl_wifiunion.mid │ │ ├── pl_seq_pl_winbrain.mid │ │ ├── pl_seq_pl_winmini2.mid │ │ ├── pl_seq_title00.mid │ │ ├── pl_seq_title01.mid │ │ ├── pl_seq_tv_end.mid │ │ ├── pl_seq_tv_housou.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 │ ├── mus_weather_kyogre.s │ ├── 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 │ ├── voicegroup191.inc │ ├── voicegroup192.inc │ ├── voicegroup193.inc │ ├── voicegroup194.inc │ ├── voicegroup195.inc │ ├── voicegroup196.inc │ ├── voicegroup197.inc │ ├── voicegroup198.inc │ ├── voicegroup199.inc │ ├── voicegroup200.inc │ ├── voicegroup201.inc │ ├── voicegroup202.inc │ ├── voicegroup203.inc │ ├── voicegroup204.inc │ ├── voicegroup205.inc │ ├── voicegroup206.inc │ ├── voicegroup207.inc │ ├── voicegroup208.inc │ ├── voicegroup209.inc │ ├── voicegroup210.inc │ ├── voicegroup211.inc │ ├── voicegroup212.inc │ ├── voicegroup213.inc │ ├── voicegroup214.inc │ ├── voicegroup215.inc │ ├── voicegroup216.inc │ ├── voicegroup217.inc │ ├── voicegroup218.inc │ ├── voicegroup219.inc │ ├── voicegroup220.inc │ ├── voicegroup221.inc │ ├── voicegroup222.inc │ ├── voicegroup223.inc │ ├── voicegroup224.inc │ ├── voicegroup225.inc │ ├── voicegroup226.inc │ ├── voicegroup227.inc │ ├── voicegroup228.inc │ ├── voicegroup229.inc │ ├── voicegroup230.inc │ ├── voicegroup231.inc │ ├── voicegroup232.inc │ ├── voicegroup233.inc │ ├── voicegroup234.inc │ ├── voicegroup235.inc │ ├── voicegroup236.inc │ ├── voicegroup237.inc │ ├── voicegroup238.inc │ ├── voicegroup239.inc │ ├── voicegroup240.inc │ ├── voicegroup241.inc │ ├── voicegroup242.inc │ ├── voicegroup243.inc │ ├── voicegroup244.inc │ ├── voicegroup245.inc │ ├── voicegroup246.inc │ ├── voicegroup247.inc │ ├── voicegroup248.inc │ ├── voicegroup249.inc │ ├── voicegroup250.inc │ ├── voicegroup251.inc │ ├── voicegroup252.inc │ ├── voicegroup253.inc │ ├── voicegroup254.inc │ ├── voicegroup255.inc │ ├── voicegroup256.inc │ ├── voicegroup257.inc │ ├── voicegroup258.inc │ ├── voicegroup259.inc │ ├── voicegroup260.inc │ ├── voicegroup261.inc │ ├── voicegroup262.inc │ ├── voicegroup263.inc │ ├── voicegroup264.inc │ ├── voicegroup265.inc │ ├── voicegroup266.inc │ ├── voicegroup267.inc │ ├── voicegroup268.inc │ ├── voicegroup269.inc │ ├── voicegroup270.inc │ ├── voicegroup271.inc │ ├── voicegroup272.inc │ └── voicegroup273.inc ├── spritesheet_rules.mk ├── src ├── AgbRfu_LinkManager.c ├── agb_flash.c ├── agb_flash_1m.c ├── agb_flash_le.c ├── agb_flash_mx.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 ├── 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_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_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 │ ├── dex-strategy.md │ ├── 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 │ │ ├── interface_pokeballs.h │ │ ├── intro_scene.h │ │ ├── items.h │ │ ├── mail.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_pointers.h │ │ ├── object_event_pic_tables.h │ │ └── object_event_subsprites.h │ ├── party_menu.h │ ├── pointillism_points.h │ ├── pokemon │ │ ├── base_stats.h │ │ ├── egg_moves.h │ │ ├── evolution.h │ │ ├── experience_tables.h │ │ ├── form_change_table_pointers.h │ │ ├── form_change_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 │ ├── region_map │ │ ├── city_map_entries.h │ │ ├── city_map_tilemaps.h │ │ └── region_map_entries.h │ ├── script_menu.h │ ├── text │ │ ├── abilities.h │ │ ├── characteristics.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 │ ├── trainer_spreads.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 ├── 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 ├── mevent2.c ├── mevent_801BAAC.c ├── mevent_client.c ├── mevent_news.c ├── mevent_scripts.c ├── mevent_server.c ├── mevent_server_helpers.c ├── mgba_printf │ ├── mgba.c │ └── mini_printf.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 ├── naming_screen.c ├── new_game.c ├── option_menu.c ├── option_plus_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_1.c ├── pokenav_conditions_2.c ├── pokenav_conditions_3.c ├── pokenav_main_menu.c ├── pokenav_match_call_1.c ├── pokenav_match_call_2.c ├── pokenav_match_call_data.c ├── pokenav_match_call_ui.c ├── pokenav_menu_handler_1.c ├── pokenav_menu_handler_2.c ├── pokenav_region_map.c ├── pokenav_ribbons_1.c ├── pokenav_ribbons_2.c ├── post_battle_event_funcs.c ├── random.c ├── rayquaza_scene.c ├── record_mixing.c ├── recorded_battle.c ├── region_map.c ├── reset_rtc_screen.c ├── reset_save_heap.c ├── reshow_battle_screen.c ├── rhh_copyright.c ├── roamer.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 ├── sound_check_menu.c ├── start_menu.c ├── starter_choose.c ├── strings.c ├── task.c ├── text_input_strings.c ├── text_window.c ├── tileset_anims.c ├── time_events.c ├── title_screen.c ├── tm_case.c ├── trade.c ├── trader.c ├── trainer_card.c ├── trainer_hill.c ├── trainer_pokemon_sprites.c ├── trainer_see.c ├── trig.c ├── tv.c ├── tx_registered_items_menu.c ├── ui_battle_menu.c ├── ui_intro_options.c ├── union_room.c ├── union_room_battle.c ├── union_room_chat.c ├── union_room_player_avatar.c ├── unk_text_util_2.c ├── use_pokeblock.c ├── util.c ├── walda_phrase.c ├── wallclock.c ├── wild_encounter.c └── wireless_communication_status_screen.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 └── wiki ├── ability-showcase.gif ├── logo.png ├── map.png └── reworked-mons-showcase.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/README.md -------------------------------------------------------------------------------- /asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/asm/macros.inc -------------------------------------------------------------------------------- /asm/macros/asm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/asm/macros/asm.inc -------------------------------------------------------------------------------- /asm/macros/event.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/asm/macros/event.inc -------------------------------------------------------------------------------- /asm/macros/m4a.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/asm/macros/m4a.inc -------------------------------------------------------------------------------- /asm/macros/map.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/asm/macros/map.inc -------------------------------------------------------------------------------- /asm/macros/window.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/asm/macros/window.inc -------------------------------------------------------------------------------- /asm/rom_header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/asm/rom_header.inc -------------------------------------------------------------------------------- /asmdiff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/asmdiff.ps1 -------------------------------------------------------------------------------- /asmdiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/asmdiff.sh -------------------------------------------------------------------------------- /berry_fix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/berry_fix/Makefile -------------------------------------------------------------------------------- /berry_fix/asm/loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/berry_fix/asm/loader.s -------------------------------------------------------------------------------- /berry_fix/charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/berry_fix/charmap.txt -------------------------------------------------------------------------------- /berry_fix/data/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/berry_fix/data/data.s -------------------------------------------------------------------------------- /berry_fix/payload/common_syms/rtc.txt: -------------------------------------------------------------------------------- 1 | gTimeSinceBerryUpdate 2 | gRtcUTCTime 3 | -------------------------------------------------------------------------------- /berry_fix/payload/rom.sha1: -------------------------------------------------------------------------------- 1 | 866991e2b5a8de02d12f53abe0ee9af03a2b6e01 payload.gba 2 | -------------------------------------------------------------------------------- /berry_fix/rom.sha1: -------------------------------------------------------------------------------- 1 | 2eb0a94a913bebfb4cb59ceb57f3f965da55ef6d berry_fix.gba 2 | -------------------------------------------------------------------------------- /charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/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 | gUnneededFireRedVariable 2 | -------------------------------------------------------------------------------- /common_syms/contest.txt: -------------------------------------------------------------------------------- 1 | gContestRngValue 2 | -------------------------------------------------------------------------------- /common_syms/ereader_screen.txt: -------------------------------------------------------------------------------- 1 | gUnknown_03006370 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/Elite-Redux/eliteredux/HEAD/common_syms/link.txt -------------------------------------------------------------------------------- /common_syms/m4a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/common_syms/m4a.txt -------------------------------------------------------------------------------- /common_syms/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/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/random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/common_syms/random.txt -------------------------------------------------------------------------------- /common_syms/rtc.txt: -------------------------------------------------------------------------------- 1 | gLocalTime 2 | -------------------------------------------------------------------------------- /common_syms/save.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/common_syms/save.txt -------------------------------------------------------------------------------- /common_syms/sound.txt: -------------------------------------------------------------------------------- 1 | gDisableMusic 2 | -------------------------------------------------------------------------------- /common_syms/sound_check_menu.txt: -------------------------------------------------------------------------------- 1 | sMPlayInfo_Cry 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/Elite-Redux/eliteredux/HEAD/common_syms/text.txt -------------------------------------------------------------------------------- /common_syms/tv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/common_syms/tv.txt -------------------------------------------------------------------------------- /common_syms/window.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/common_syms/window.txt -------------------------------------------------------------------------------- /constants/global.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/constants/global.inc -------------------------------------------------------------------------------- /convert_inc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/convert_inc.sh -------------------------------------------------------------------------------- /data/event_scripts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/event_scripts.s -------------------------------------------------------------------------------- /data/fonts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/fonts.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/AlteringCave_1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/AlteringCave_B1F/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 | cdbC -------------------------------------------------------------------------------- /data/layouts/BattleColosseum_4P/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/BattleElevator/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /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_BattleFactoryBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleFactoryLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleFactoryPreBattleRoom/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_BattleTowerBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleTowerCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleTowerLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleTowerMultiCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleTowerMultiPartnerRoom/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/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_DianciesRoom/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/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/DewfordManor_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/DewfordMeadow/border.bin: -------------------------------------------------------------------------------- 1 | sfrC -------------------------------------------------------------------------------- /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/EmberPath/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /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 | +`,C -------------------------------------------------------------------------------- /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/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/House1/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/House2/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/House3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/House4/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/HouseWithBed/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /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/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/Mart/border.bin: -------------------------------------------------------------------------------- 1 | cd`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/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_1F_2R/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_B1F_1R/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_B1F_2R/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_HaxorusRoom/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_JirachisRoom/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/MirageTower_B1F/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/PokemonCenter_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/PokemonCenter_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RecordCorner/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /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/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/Route111_RuinsExterior/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/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/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/SafariZone_RestHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SandstrewnRuins/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SandstrewnRuins_2F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/SandstrewnRuins_3F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/SandstrewnRuins_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ScorchedSlab/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ScorchedSlab_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ScorchedSlab_B2F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ScorchedSlab_HeatransRoom/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/SealedChamber_InnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/SealedChamber_OuterRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/Seaspray_Cave/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/Seaspray_Cave_B1F/border.bin: -------------------------------------------------------------------------------- 1 | kdnC -------------------------------------------------------------------------------- /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/UnionRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /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/VictoryRoad_1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/VictoryRoad_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/VictoryRoad_B2F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/map_events.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/map_events.s -------------------------------------------------------------------------------- /data/maps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/maps.s -------------------------------------------------------------------------------- /data/maps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/maps/.gitignore -------------------------------------------------------------------------------- /data/maps/AlteringCave_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | AlteringCave_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/AlteringCave_1F/scripts.pory: -------------------------------------------------------------------------------- 1 | raw ` 2 | AlteringCave_1F_MapScripts:: 3 | .byte 0 4 | ` 5 | -------------------------------------------------------------------------------- /data/maps/ArtisanCave_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | ArtisanCave_1F_MapScripts:: @ 823AFB7 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleColosseum_2P/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleColosseum_2P_MapScripts:: @ 823B77D 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleColosseum_4P/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleColosseum_4P_MapScripts:: @ 823B780 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_2F_3R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_2F_3R_MapScripts:: @ 823AD00 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_3F_3R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_3F_3R_MapScripts:: @ 823ACFF 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MeteorFalls_B1F_1R/scripts.inc: -------------------------------------------------------------------------------- 1 | MeteorFalls_B1F_1R_MapScripts:: @ 822CE25 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MeteorFalls_B1F_2R/scripts.inc: -------------------------------------------------------------------------------- 1 | MeteorFalls_B1F_2R_MapScripts:: @ 822CE26 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MirageTower_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | MirageTower_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MirageTower_B1F/scripts.pory: -------------------------------------------------------------------------------- 1 | raw ` 2 | MirageTower_B1F_MapScripts:: 3 | .byte 0 4 | ` 5 | -------------------------------------------------------------------------------- /data/maps/NavelRock_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_B1F_MapScripts:: @ 826910D 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down01/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down01_MapScripts:: @ 826924A 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down02/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down02_MapScripts:: @ 826924B 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down03/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down03_MapScripts:: @ 826924C 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down04/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down04_MapScripts:: @ 826924D 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down05/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down05_MapScripts:: @ 826924E 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down06/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down06_MapScripts:: @ 826924F 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down07/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down07_MapScripts:: @ 8269250 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down08/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down08_MapScripts:: @ 8269251 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down09/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down09_MapScripts:: @ 8269252 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down10/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down10_MapScripts:: @ 8269253 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down11/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down11_MapScripts:: @ 8269254 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Entrance/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Entrance_MapScripts:: @ 826910C 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Fork/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Fork_MapScripts:: @ 826910E 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up1/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up1_MapScripts:: @ 826910F 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up2/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up2_MapScripts:: @ 8269110 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up3/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up3_MapScripts:: @ 8269111 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up4/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up4_MapScripts:: @ 8269112 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PetalburgWoods_2/scripts.inc: -------------------------------------------------------------------------------- 1 | PetalburgWoods_2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/PetalburgWoods_2/scripts.pory: -------------------------------------------------------------------------------- 1 | raw ` 2 | PetalburgWoods_2_MapScripts:: 3 | .byte 0 4 | ` 5 | -------------------------------------------------------------------------------- /data/maps/RecordCorner/scripts.inc: -------------------------------------------------------------------------------- 1 | RecordCorner_MapScripts:: @ 823B77F 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route104_Prototype/scripts.inc: -------------------------------------------------------------------------------- 1 | Route104_Prototype_MapScripts:: @ 82693F2 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route122/scripts.inc: -------------------------------------------------------------------------------- 1 | Route122_MapScripts:: @ 81F6146 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route122/scripts.pory: -------------------------------------------------------------------------------- 1 | raw ` 2 | Route122_MapScripts:: @ 81F6146 3 | .byte 0 4 | 5 | ` 6 | -------------------------------------------------------------------------------- /data/maps/SandstrewnRuins_2F/scripts.inc: -------------------------------------------------------------------------------- 1 | SandstrewnRuins_2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SandstrewnRuins_3F/scripts.inc: -------------------------------------------------------------------------------- 1 | SandstrewnRuins_3F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SandstrewnRuins_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | SandstrewnRuins_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/ScorchedSlab_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | ScorchedSlab_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/ScorchedSlab_B1F/scripts.pory: -------------------------------------------------------------------------------- 1 | raw ` 2 | ScorchedSlab_B1F_MapScripts:: 3 | .byte 0 4 | ` 5 | -------------------------------------------------------------------------------- /data/maps/ScorchedSlab_B2F/scripts.inc: -------------------------------------------------------------------------------- 1 | ScorchedSlab_B2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/ScorchedSlab_B2F/scripts.pory: -------------------------------------------------------------------------------- 1 | raw ` 2 | ScorchedSlab_B2F_MapScripts:: 3 | .byte 0 4 | ` 5 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room2/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room2_MapScripts:: @ 8234936 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room5/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room5_MapScripts:: @ 8234DC4 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room6/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room6_MapScripts:: @ 8234DC5 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room7/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room7_MapScripts:: @ 8234DC6 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room8/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room8_MapScripts:: @ 8234DC7 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/TradeCenter/scripts.inc: -------------------------------------------------------------------------------- 1 | TradeCenter_MapScripts:: @ 823B77E 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route124/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route124_MapScripts:: @ 81F7722 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route126/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route126_MapScripts:: @ 81F7723 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route128/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route128_MapScripts:: @ 81F7730 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/mystery_event.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/mystery_event.s -------------------------------------------------------------------------------- /data/scripts/debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/scripts/debug.inc -------------------------------------------------------------------------------- /data/scripts/eevee.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/scripts/eevee.inc -------------------------------------------------------------------------------- /data/scripts/flash.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/scripts/flash.inc -------------------------------------------------------------------------------- /data/scripts/honey.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/scripts/honey.inc -------------------------------------------------------------------------------- /data/scripts/pc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/scripts/pc.inc -------------------------------------------------------------------------------- /data/scripts/repel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/scripts/repel.inc -------------------------------------------------------------------------------- /data/scripts/rotom.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/scripts/rotom.inc -------------------------------------------------------------------------------- /data/scripts/surf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/scripts/surf.inc -------------------------------------------------------------------------------- /data/scripts/tv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/scripts/tv.inc -------------------------------------------------------------------------------- /data/sound_data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/sound_data.s -------------------------------------------------------------------------------- /data/specials.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/specials.inc -------------------------------------------------------------------------------- /data/text/berries.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/text/berries.inc -------------------------------------------------------------------------------- /data/text/braille.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/text/braille.inc -------------------------------------------------------------------------------- /data/text/mevent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/text/mevent.inc -------------------------------------------------------------------------------- /data/text/pc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/text/pc.inc -------------------------------------------------------------------------------- /data/text/save.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/text/save.inc -------------------------------------------------------------------------------- /data/text/surf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/text/surf.inc -------------------------------------------------------------------------------- /data/text/trainers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/text/trainers.inc -------------------------------------------------------------------------------- /data/text/tv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/text/tv.inc -------------------------------------------------------------------------------- /data/tilesets.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/data/tilesets.s -------------------------------------------------------------------------------- /data/tilesets/primary/secret_base/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tilesets/secondary/unused_1/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diff.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/diff.diff -------------------------------------------------------------------------------- /flips-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/flips-linux -------------------------------------------------------------------------------- /gflib/bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/bg.c -------------------------------------------------------------------------------- /gflib/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/bg.h -------------------------------------------------------------------------------- /gflib/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/blit.c -------------------------------------------------------------------------------- /gflib/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/blit.h -------------------------------------------------------------------------------- /gflib/dma3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/dma3.h -------------------------------------------------------------------------------- /gflib/dma3_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/dma3_manager.c -------------------------------------------------------------------------------- /gflib/gpu_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/gpu_regs.c -------------------------------------------------------------------------------- /gflib/gpu_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/gpu_regs.h -------------------------------------------------------------------------------- /gflib/io_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/io_reg.c -------------------------------------------------------------------------------- /gflib/io_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/io_reg.h -------------------------------------------------------------------------------- /gflib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/malloc.c -------------------------------------------------------------------------------- /gflib/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/malloc.h -------------------------------------------------------------------------------- /gflib/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/sprite.c -------------------------------------------------------------------------------- /gflib/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/sprite.h -------------------------------------------------------------------------------- /gflib/string_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/string_util.c -------------------------------------------------------------------------------- /gflib/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/string_util.h -------------------------------------------------------------------------------- /gflib/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/text.c -------------------------------------------------------------------------------- /gflib/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/text.h -------------------------------------------------------------------------------- /gflib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/window.c -------------------------------------------------------------------------------- /gflib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/gflib/window.h -------------------------------------------------------------------------------- /graphics/contest/results_screen/title_link.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /graphics/link/gba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/graphics/link/gba.png -------------------------------------------------------------------------------- /graphics/misc/bag.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/graphics/misc/bag.pal -------------------------------------------------------------------------------- /graphics/trade/gba.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/graphics/trade/gba.pal -------------------------------------------------------------------------------- /graphics/types/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/graphics/types/bug.png -------------------------------------------------------------------------------- /graphics/types/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/graphics/types/ice.png -------------------------------------------------------------------------------- /graphics_file_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/graphics_file_rules.mk -------------------------------------------------------------------------------- /include/agb_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/agb_flash.h -------------------------------------------------------------------------------- /include/apprentice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/apprentice.h -------------------------------------------------------------------------------- /include/bard_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/bard_music.h -------------------------------------------------------------------------------- /include/battle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle.h -------------------------------------------------------------------------------- /include/battle_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_anim.h -------------------------------------------------------------------------------- /include/battle_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_arena.h -------------------------------------------------------------------------------- /include/battle_bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_bg.h -------------------------------------------------------------------------------- /include/battle_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_debug.h -------------------------------------------------------------------------------- /include/battle_dome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_dome.h -------------------------------------------------------------------------------- /include/battle_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_main.h -------------------------------------------------------------------------------- /include/battle_pike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_pike.h -------------------------------------------------------------------------------- /include/battle_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_setup.h -------------------------------------------------------------------------------- /include/battle_tent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_tent.h -------------------------------------------------------------------------------- /include/battle_tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_tower.h -------------------------------------------------------------------------------- /include/battle_tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_tv.h -------------------------------------------------------------------------------- /include/battle_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_util.h -------------------------------------------------------------------------------- /include/battle_util2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/battle_util2.h -------------------------------------------------------------------------------- /include/berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/berry.h -------------------------------------------------------------------------------- /include/berry_crush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/berry_crush.h -------------------------------------------------------------------------------- /include/berry_powder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/berry_powder.h -------------------------------------------------------------------------------- /include/bike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/bike.h -------------------------------------------------------------------------------- /include/cable_club.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/cable_club.h -------------------------------------------------------------------------------- /include/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/clock.h -------------------------------------------------------------------------------- /include/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/coins.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/config.h -------------------------------------------------------------------------------- /include/constants/tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/constants/tv.h -------------------------------------------------------------------------------- /include/contest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/contest.h -------------------------------------------------------------------------------- /include/contest_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/contest_ai.h -------------------------------------------------------------------------------- /include/contest_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/contest_link.h -------------------------------------------------------------------------------- /include/contest_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/contest_util.h -------------------------------------------------------------------------------- /include/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/credits.h -------------------------------------------------------------------------------- /include/crt0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/crt0.h -------------------------------------------------------------------------------- /include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/data.h -------------------------------------------------------------------------------- /include/daycare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/daycare.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/decompress.h -------------------------------------------------------------------------------- /include/decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/decoration.h -------------------------------------------------------------------------------- /include/dexnav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/dexnav.h -------------------------------------------------------------------------------- /include/diploma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/diploma.h -------------------------------------------------------------------------------- /include/easy_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/easy_chat.h -------------------------------------------------------------------------------- /include/egg_hatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/egg_hatch.h -------------------------------------------------------------------------------- /include/event_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/event_data.h -------------------------------------------------------------------------------- /include/field_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/field_camera.h -------------------------------------------------------------------------------- /include/field_door.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/field_door.h -------------------------------------------------------------------------------- /include/field_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/field_effect.h -------------------------------------------------------------------------------- /include/field_poison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/field_poison.h -------------------------------------------------------------------------------- /include/field_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/field_tasks.h -------------------------------------------------------------------------------- /include/fieldmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/fieldmap.h -------------------------------------------------------------------------------- /include/fldeff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/fldeff.h -------------------------------------------------------------------------------- /include/fldeff_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/fldeff_misc.h -------------------------------------------------------------------------------- /include/gba/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/gba/defines.h -------------------------------------------------------------------------------- /include/gba/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/gba/gba.h -------------------------------------------------------------------------------- /include/gba/io_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/gba/io_reg.h -------------------------------------------------------------------------------- /include/gba/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/gba/macro.h -------------------------------------------------------------------------------- /include/gba/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/gba/syscall.h -------------------------------------------------------------------------------- /include/gba/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/gba/types.h -------------------------------------------------------------------------------- /include/global.berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/global.berry.h -------------------------------------------------------------------------------- /include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/global.h -------------------------------------------------------------------------------- /include/global.tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/global.tv.h -------------------------------------------------------------------------------- /include/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/graphics.h -------------------------------------------------------------------------------- /include/hall_of_fame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/hall_of_fame.h -------------------------------------------------------------------------------- /include/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/intro.h -------------------------------------------------------------------------------- /include/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/item.h -------------------------------------------------------------------------------- /include/item_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/item_icon.h -------------------------------------------------------------------------------- /include/item_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/item_menu.h -------------------------------------------------------------------------------- /include/item_use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/item_use.h -------------------------------------------------------------------------------- /include/landmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/landmark.h -------------------------------------------------------------------------------- /include/librfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/librfu.h -------------------------------------------------------------------------------- /include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/link.h -------------------------------------------------------------------------------- /include/link_rfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/link_rfu.h -------------------------------------------------------------------------------- /include/list_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/list_menu.h -------------------------------------------------------------------------------- /include/load_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/load_save.h -------------------------------------------------------------------------------- /include/m4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/m4a.h -------------------------------------------------------------------------------- /include/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/mail.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/main.h -------------------------------------------------------------------------------- /include/main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/main_menu.h -------------------------------------------------------------------------------- /include/match_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/match_call.h -------------------------------------------------------------------------------- /include/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/math_util.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/menu_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/menu_helpers.h -------------------------------------------------------------------------------- /include/mevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/mevent.h -------------------------------------------------------------------------------- /include/mevent2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/mevent2.h -------------------------------------------------------------------------------- /include/mevent_news.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/mevent_news.h -------------------------------------------------------------------------------- /include/mirage_tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/mirage_tower.h -------------------------------------------------------------------------------- /include/mon_markings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/mon_markings.h -------------------------------------------------------------------------------- /include/money.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/money.h -------------------------------------------------------------------------------- /include/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/multiboot.h -------------------------------------------------------------------------------- /include/mystery_gift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/mystery_gift.h -------------------------------------------------------------------------------- /include/new_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/new_game.h -------------------------------------------------------------------------------- /include/option_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/option_menu.h -------------------------------------------------------------------------------- /include/overworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/overworld.h -------------------------------------------------------------------------------- /include/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/palette.h -------------------------------------------------------------------------------- /include/palette_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/palette_util.h -------------------------------------------------------------------------------- /include/party_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/party_menu.h -------------------------------------------------------------------------------- /include/play_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/play_time.h -------------------------------------------------------------------------------- /include/player_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/player_pc.h -------------------------------------------------------------------------------- /include/pokeball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/pokeball.h -------------------------------------------------------------------------------- /include/pokeblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/pokeblock.h -------------------------------------------------------------------------------- /include/pokedex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/pokedex.h -------------------------------------------------------------------------------- /include/pokemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/pokemon.h -------------------------------------------------------------------------------- /include/pokemon_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/pokemon_icon.h -------------------------------------------------------------------------------- /include/pokemon_jump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/pokemon_jump.h -------------------------------------------------------------------------------- /include/pokenav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/pokenav.h -------------------------------------------------------------------------------- /include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/random.h -------------------------------------------------------------------------------- /include/region_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/region_map.h -------------------------------------------------------------------------------- /include/roamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/roamer.h -------------------------------------------------------------------------------- /include/roulette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/roulette.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/safari_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/safari_zone.h -------------------------------------------------------------------------------- /include/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/save.h -------------------------------------------------------------------------------- /include/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/script.h -------------------------------------------------------------------------------- /include/script_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/script_menu.h -------------------------------------------------------------------------------- /include/secret_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/secret_base.h -------------------------------------------------------------------------------- /include/shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/shop.h -------------------------------------------------------------------------------- /include/siirtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/siirtc.h -------------------------------------------------------------------------------- /include/slot_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/slot_machine.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/start_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/start_menu.h -------------------------------------------------------------------------------- /include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/strings.h -------------------------------------------------------------------------------- /include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/task.h -------------------------------------------------------------------------------- /include/text_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/text_window.h -------------------------------------------------------------------------------- /include/tilesets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/tilesets.h -------------------------------------------------------------------------------- /include/time_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/time_events.h -------------------------------------------------------------------------------- /include/title_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/title_screen.h -------------------------------------------------------------------------------- /include/tm_case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/tm_case.h -------------------------------------------------------------------------------- /include/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/trade.h -------------------------------------------------------------------------------- /include/trader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/trader.h -------------------------------------------------------------------------------- /include/trainer_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/trainer_card.h -------------------------------------------------------------------------------- /include/trainer_hill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/trainer_hill.h -------------------------------------------------------------------------------- /include/trainer_see.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/trainer_see.h -------------------------------------------------------------------------------- /include/trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/trig.h -------------------------------------------------------------------------------- /include/tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/tv.h -------------------------------------------------------------------------------- /include/union_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/union_room.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/util.h -------------------------------------------------------------------------------- /include/walda_phrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/walda_phrase.h -------------------------------------------------------------------------------- /include/wallclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/include/wallclock.h -------------------------------------------------------------------------------- /json_data_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/json_data_rules.mk -------------------------------------------------------------------------------- /ld_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/ld_script.txt -------------------------------------------------------------------------------- /ld_script_modern.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/ld_script_modern.txt -------------------------------------------------------------------------------- /libagbsyscall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/libagbsyscall/Makefile -------------------------------------------------------------------------------- /make_tools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/make_tools.mk -------------------------------------------------------------------------------- /map_data_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/map_data_rules.mk -------------------------------------------------------------------------------- /pokemon_emerald.sha1: -------------------------------------------------------------------------------- 1 | f3ae088181bf583e55daf962a92bb46f4f1d07b7 pokemon_emerald.gba 2 | -------------------------------------------------------------------------------- /porymap.user.cfg: -------------------------------------------------------------------------------- 1 | custom_scripts= 2 | recent_map=Route104 3 | use_encounter_json=1 4 | -------------------------------------------------------------------------------- /prefabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/prefabs.json -------------------------------------------------------------------------------- /rom.sha1: -------------------------------------------------------------------------------- 1 | f3ae088181bf583e55daf962a92bb46f4f1d07b7 pokeemerald.gba 2 | -------------------------------------------------------------------------------- /songs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/songs.mk -------------------------------------------------------------------------------- /sound/MPlayDef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/sound/MPlayDef.s -------------------------------------------------------------------------------- /sound/cry_tables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/sound/cry_tables.inc -------------------------------------------------------------------------------- /sound/programmable_wave_samples/86B4910.pcm: -------------------------------------------------------------------------------- 1 | &8J\n~lZH6$ -------------------------------------------------------------------------------- /sound/song_table.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/sound/song_table.inc -------------------------------------------------------------------------------- /sound/songs/se_m_dig.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/sound/songs/se_m_dig.s -------------------------------------------------------------------------------- /sound/voice_groups.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/sound/voice_groups.inc -------------------------------------------------------------------------------- /spritesheet_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/spritesheet_rules.mk -------------------------------------------------------------------------------- /src/agb_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/agb_flash.c -------------------------------------------------------------------------------- /src/agb_flash_1m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/agb_flash_1m.c -------------------------------------------------------------------------------- /src/agb_flash_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/agb_flash_le.c -------------------------------------------------------------------------------- /src/agb_flash_mx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/agb_flash_mx.c -------------------------------------------------------------------------------- /src/apprentice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/apprentice.c -------------------------------------------------------------------------------- /src/bard_music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/bard_music.c -------------------------------------------------------------------------------- /src/battle_ai_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_ai_main.c -------------------------------------------------------------------------------- /src/battle_ai_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_ai_util.c -------------------------------------------------------------------------------- /src/battle_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_anim.c -------------------------------------------------------------------------------- /src/battle_anim_bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_anim_bug.c -------------------------------------------------------------------------------- /src/battle_anim_dark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_anim_dark.c -------------------------------------------------------------------------------- /src/battle_anim_fire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_anim_fire.c -------------------------------------------------------------------------------- /src/battle_anim_ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_anim_ice.c -------------------------------------------------------------------------------- /src/battle_anim_mons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_anim_mons.c -------------------------------------------------------------------------------- /src/battle_anim_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_anim_new.c -------------------------------------------------------------------------------- /src/battle_anim_rock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_anim_rock.c -------------------------------------------------------------------------------- /src/battle_arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_arena.c -------------------------------------------------------------------------------- /src/battle_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_bg.c -------------------------------------------------------------------------------- /src/battle_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_debug.c -------------------------------------------------------------------------------- /src/battle_dome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_dome.c -------------------------------------------------------------------------------- /src/battle_factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_factory.c -------------------------------------------------------------------------------- /src/battle_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_interface.c -------------------------------------------------------------------------------- /src/battle_intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_intro.c -------------------------------------------------------------------------------- /src/battle_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_main.c -------------------------------------------------------------------------------- /src/battle_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_message.c -------------------------------------------------------------------------------- /src/battle_palace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_palace.c -------------------------------------------------------------------------------- /src/battle_pike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_pike.c -------------------------------------------------------------------------------- /src/battle_pyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_pyramid.c -------------------------------------------------------------------------------- /src/battle_records.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_records.c -------------------------------------------------------------------------------- /src/battle_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_setup.c -------------------------------------------------------------------------------- /src/battle_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_tent.c -------------------------------------------------------------------------------- /src/battle_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_tower.c -------------------------------------------------------------------------------- /src/battle_tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_tv.c -------------------------------------------------------------------------------- /src/battle_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_util.c -------------------------------------------------------------------------------- /src/battle_util2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/battle_util2.c -------------------------------------------------------------------------------- /src/berry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/berry.c -------------------------------------------------------------------------------- /src/berry_blender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/berry_blender.c -------------------------------------------------------------------------------- /src/berry_crush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/berry_crush.c -------------------------------------------------------------------------------- /src/berry_powder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/berry_powder.c -------------------------------------------------------------------------------- /src/berry_tag_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/berry_tag_screen.c -------------------------------------------------------------------------------- /src/bike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/bike.c -------------------------------------------------------------------------------- /src/birch_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/birch_pc.c -------------------------------------------------------------------------------- /src/braille_puzzles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/braille_puzzles.c -------------------------------------------------------------------------------- /src/cable_car.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/cable_car.c -------------------------------------------------------------------------------- /src/cable_club.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/cable_club.c -------------------------------------------------------------------------------- /src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/clock.c -------------------------------------------------------------------------------- /src/coins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/coins.c -------------------------------------------------------------------------------- /src/confetti_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/confetti_util.c -------------------------------------------------------------------------------- /src/contest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/contest.c -------------------------------------------------------------------------------- /src/contest_ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/contest_ai.c -------------------------------------------------------------------------------- /src/contest_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/contest_effect.c -------------------------------------------------------------------------------- /src/contest_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/contest_link.c -------------------------------------------------------------------------------- /src/contest_painting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/contest_painting.c -------------------------------------------------------------------------------- /src/contest_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/contest_util.c -------------------------------------------------------------------------------- /src/credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/credits.c -------------------------------------------------------------------------------- /src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/crt0.s -------------------------------------------------------------------------------- /src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/data.c -------------------------------------------------------------------------------- /src/data/.gitignore: -------------------------------------------------------------------------------- 1 | wild_encounters.h 2 | -------------------------------------------------------------------------------- /src/data/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/data/credits.h -------------------------------------------------------------------------------- /src/data/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/data/items.h -------------------------------------------------------------------------------- /src/data/party_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/data/party_menu.h -------------------------------------------------------------------------------- /src/data/script_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/data/script_menu.h -------------------------------------------------------------------------------- /src/data/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/data/trade.h -------------------------------------------------------------------------------- /src/data/trainers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/data/trainers.h -------------------------------------------------------------------------------- /src/data/union_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/data/union_room.h -------------------------------------------------------------------------------- /src/data/wallpapers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/data/wallpapers.h -------------------------------------------------------------------------------- /src/daycare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/daycare.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/decompress.c -------------------------------------------------------------------------------- /src/decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/decoration.c -------------------------------------------------------------------------------- /src/dewford_trend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/dewford_trend.c -------------------------------------------------------------------------------- /src/dexnav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/dexnav.c -------------------------------------------------------------------------------- /src/digit_obj_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/digit_obj_util.c -------------------------------------------------------------------------------- /src/diploma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/diploma.c -------------------------------------------------------------------------------- /src/easy_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/easy_chat.c -------------------------------------------------------------------------------- /src/egg_hatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/egg_hatch.c -------------------------------------------------------------------------------- /src/ereader_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/ereader_helpers.c -------------------------------------------------------------------------------- /src/ereader_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/ereader_screen.c -------------------------------------------------------------------------------- /src/event_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/event_data.c -------------------------------------------------------------------------------- /src/evolution_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/evolution_scene.c -------------------------------------------------------------------------------- /src/faraway_island.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/faraway_island.c -------------------------------------------------------------------------------- /src/field_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/field_camera.c -------------------------------------------------------------------------------- /src/field_door.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/field_door.c -------------------------------------------------------------------------------- /src/field_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/field_effect.c -------------------------------------------------------------------------------- /src/field_poison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/field_poison.c -------------------------------------------------------------------------------- /src/field_region_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/field_region_map.c -------------------------------------------------------------------------------- /src/field_specials.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/field_specials.c -------------------------------------------------------------------------------- /src/field_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/field_tasks.c -------------------------------------------------------------------------------- /src/field_weather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/field_weather.c -------------------------------------------------------------------------------- /src/fieldmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/fieldmap.c -------------------------------------------------------------------------------- /src/fldeff_cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/fldeff_cut.c -------------------------------------------------------------------------------- /src/fldeff_dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/fldeff_dig.c -------------------------------------------------------------------------------- /src/fldeff_escalator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/fldeff_escalator.c -------------------------------------------------------------------------------- /src/fldeff_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/fldeff_flash.c -------------------------------------------------------------------------------- /src/fldeff_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/fldeff_misc.c -------------------------------------------------------------------------------- /src/fldeff_rocksmash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/fldeff_rocksmash.c -------------------------------------------------------------------------------- /src/fldeff_strength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/fldeff_strength.c -------------------------------------------------------------------------------- /src/fldeff_teleport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/fldeff_teleport.c -------------------------------------------------------------------------------- /src/frontier_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/frontier_pass.c -------------------------------------------------------------------------------- /src/frontier_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/frontier_util.c -------------------------------------------------------------------------------- /src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/graphics.c -------------------------------------------------------------------------------- /src/hall_of_fame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/hall_of_fame.c -------------------------------------------------------------------------------- /src/heal_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/heal_location.c -------------------------------------------------------------------------------- /src/hof_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/hof_pc.c -------------------------------------------------------------------------------- /src/intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/intro.c -------------------------------------------------------------------------------- /src/item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/item.c -------------------------------------------------------------------------------- /src/item_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/item_icon.c -------------------------------------------------------------------------------- /src/item_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/item_menu.c -------------------------------------------------------------------------------- /src/item_menu_icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/item_menu_icons.c -------------------------------------------------------------------------------- /src/item_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/item_use.c -------------------------------------------------------------------------------- /src/landmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/landmark.c -------------------------------------------------------------------------------- /src/libgcnmultiboot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/libgcnmultiboot.s -------------------------------------------------------------------------------- /src/libisagbprn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/libisagbprn.c -------------------------------------------------------------------------------- /src/librfu_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/librfu_intr.c -------------------------------------------------------------------------------- /src/librfu_rfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/librfu_rfu.c -------------------------------------------------------------------------------- /src/librfu_sio32id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/librfu_sio32id.c -------------------------------------------------------------------------------- /src/librfu_stwi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/librfu_stwi.c -------------------------------------------------------------------------------- /src/lilycove_lady.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/lilycove_lady.c -------------------------------------------------------------------------------- /src/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/link.c -------------------------------------------------------------------------------- /src/link_rfu_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/link_rfu_2.c -------------------------------------------------------------------------------- /src/link_rfu_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/link_rfu_3.c -------------------------------------------------------------------------------- /src/list_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/list_menu.c -------------------------------------------------------------------------------- /src/load_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/load_save.c -------------------------------------------------------------------------------- /src/lottery_corner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/lottery_corner.c -------------------------------------------------------------------------------- /src/m4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/m4a.c -------------------------------------------------------------------------------- /src/m4a_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/m4a_1.s -------------------------------------------------------------------------------- /src/m4a_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/m4a_tables.c -------------------------------------------------------------------------------- /src/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mail.c -------------------------------------------------------------------------------- /src/mail_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mail_data.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/main_menu.c -------------------------------------------------------------------------------- /src/map_name_popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/map_name_popup.c -------------------------------------------------------------------------------- /src/match_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/match_call.c -------------------------------------------------------------------------------- /src/math_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/math_util.c -------------------------------------------------------------------------------- /src/mauville_old_man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mauville_old_man.c -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/menu_helpers.c -------------------------------------------------------------------------------- /src/menu_specialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/menu_specialized.c -------------------------------------------------------------------------------- /src/mevent2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mevent2.c -------------------------------------------------------------------------------- /src/mevent_801BAAC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mevent_801BAAC.c -------------------------------------------------------------------------------- /src/mevent_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mevent_client.c -------------------------------------------------------------------------------- /src/mevent_news.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mevent_news.c -------------------------------------------------------------------------------- /src/mevent_scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mevent_scripts.c -------------------------------------------------------------------------------- /src/mevent_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mevent_server.c -------------------------------------------------------------------------------- /src/mgba_printf/mgba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mgba_printf/mgba.c -------------------------------------------------------------------------------- /src/mirage_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mirage_tower.c -------------------------------------------------------------------------------- /src/mon_markings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mon_markings.c -------------------------------------------------------------------------------- /src/money.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/money.c -------------------------------------------------------------------------------- /src/move_relearner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/move_relearner.c -------------------------------------------------------------------------------- /src/multiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/multiboot.c -------------------------------------------------------------------------------- /src/mystery_gift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/mystery_gift.c -------------------------------------------------------------------------------- /src/naming_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/naming_screen.c -------------------------------------------------------------------------------- /src/new_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/new_game.c -------------------------------------------------------------------------------- /src/option_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/option_menu.c -------------------------------------------------------------------------------- /src/option_plus_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/option_plus_menu.c -------------------------------------------------------------------------------- /src/overworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/overworld.c -------------------------------------------------------------------------------- /src/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/palette.c -------------------------------------------------------------------------------- /src/palette_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/palette_util.c -------------------------------------------------------------------------------- /src/party_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/party_menu.c -------------------------------------------------------------------------------- /src/play_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/play_time.c -------------------------------------------------------------------------------- /src/player_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/player_pc.c -------------------------------------------------------------------------------- /src/pokeball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/pokeball.c -------------------------------------------------------------------------------- /src/pokeblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/pokeblock.c -------------------------------------------------------------------------------- /src/pokeblock_feed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/pokeblock_feed.c -------------------------------------------------------------------------------- /src/pokedex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/pokedex.c -------------------------------------------------------------------------------- /src/pokemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/pokemon.c -------------------------------------------------------------------------------- /src/pokemon_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/pokemon_icon.c -------------------------------------------------------------------------------- /src/pokemon_jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/pokemon_jump.c -------------------------------------------------------------------------------- /src/pokenav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/pokenav.c -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/random.c -------------------------------------------------------------------------------- /src/rayquaza_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/rayquaza_scene.c -------------------------------------------------------------------------------- /src/record_mixing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/record_mixing.c -------------------------------------------------------------------------------- /src/recorded_battle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/recorded_battle.c -------------------------------------------------------------------------------- /src/region_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/region_map.c -------------------------------------------------------------------------------- /src/reset_rtc_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/reset_rtc_screen.c -------------------------------------------------------------------------------- /src/reset_save_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/reset_save_heap.c -------------------------------------------------------------------------------- /src/rhh_copyright.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/rhh_copyright.c -------------------------------------------------------------------------------- /src/roamer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/roamer.c -------------------------------------------------------------------------------- /src/rotating_gate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/rotating_gate.c -------------------------------------------------------------------------------- /src/roulette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/roulette.c -------------------------------------------------------------------------------- /src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/rtc.c -------------------------------------------------------------------------------- /src/safari_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/safari_zone.c -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/save.c -------------------------------------------------------------------------------- /src/save_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/save_location.c -------------------------------------------------------------------------------- /src/scanline_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/scanline_effect.c -------------------------------------------------------------------------------- /src/scrcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/scrcmd.c -------------------------------------------------------------------------------- /src/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/script.c -------------------------------------------------------------------------------- /src/script_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/script_menu.c -------------------------------------------------------------------------------- /src/script_movement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/script_movement.c -------------------------------------------------------------------------------- /src/secret_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/secret_base.c -------------------------------------------------------------------------------- /src/shop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/shop.c -------------------------------------------------------------------------------- /src/siirtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/siirtc.c -------------------------------------------------------------------------------- /src/slot_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/slot_machine.c -------------------------------------------------------------------------------- /src/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/sound.c -------------------------------------------------------------------------------- /src/sound_check_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/sound_check_menu.c -------------------------------------------------------------------------------- /src/start_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/start_menu.c -------------------------------------------------------------------------------- /src/starter_choose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/starter_choose.c -------------------------------------------------------------------------------- /src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/strings.c -------------------------------------------------------------------------------- /src/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/task.c -------------------------------------------------------------------------------- /src/text_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/text_window.c -------------------------------------------------------------------------------- /src/tileset_anims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/tileset_anims.c -------------------------------------------------------------------------------- /src/time_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/time_events.c -------------------------------------------------------------------------------- /src/title_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/title_screen.c -------------------------------------------------------------------------------- /src/tm_case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/tm_case.c -------------------------------------------------------------------------------- /src/trade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/trade.c -------------------------------------------------------------------------------- /src/trader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/trader.c -------------------------------------------------------------------------------- /src/trainer_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/trainer_card.c -------------------------------------------------------------------------------- /src/trainer_hill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/trainer_hill.c -------------------------------------------------------------------------------- /src/trainer_see.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/trainer_see.c -------------------------------------------------------------------------------- /src/trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/trig.c -------------------------------------------------------------------------------- /src/tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/tv.c -------------------------------------------------------------------------------- /src/ui_battle_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/ui_battle_menu.c -------------------------------------------------------------------------------- /src/ui_intro_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/ui_intro_options.c -------------------------------------------------------------------------------- /src/union_room.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/union_room.c -------------------------------------------------------------------------------- /src/union_room_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/union_room_chat.c -------------------------------------------------------------------------------- /src/unk_text_util_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/unk_text_util_2.c -------------------------------------------------------------------------------- /src/use_pokeblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/use_pokeblock.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/util.c -------------------------------------------------------------------------------- /src/walda_phrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/walda_phrase.c -------------------------------------------------------------------------------- /src/wallclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/wallclock.c -------------------------------------------------------------------------------- /src/wild_encounter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/src/wild_encounter.c -------------------------------------------------------------------------------- /sym_bss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/sym_bss.txt -------------------------------------------------------------------------------- /sym_common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/sym_common.txt -------------------------------------------------------------------------------- /sym_ewram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/sym_ewram.txt -------------------------------------------------------------------------------- /tools/aif2pcm/.gitignore: -------------------------------------------------------------------------------- 1 | aif2pcm 2 | 3 | -------------------------------------------------------------------------------- /tools/aif2pcm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/aif2pcm/LICENSE -------------------------------------------------------------------------------- /tools/aif2pcm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/aif2pcm/Makefile -------------------------------------------------------------------------------- /tools/aif2pcm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/aif2pcm/main.c -------------------------------------------------------------------------------- /tools/bin2c/.gitignore: -------------------------------------------------------------------------------- 1 | bin2c 2 | -------------------------------------------------------------------------------- /tools/bin2c/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/bin2c/LICENSE -------------------------------------------------------------------------------- /tools/bin2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/bin2c/Makefile -------------------------------------------------------------------------------- /tools/bin2c/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/bin2c/bin2c.c -------------------------------------------------------------------------------- /tools/gbafix/.gitignore: -------------------------------------------------------------------------------- 1 | gbafix 2 | README 3 | -------------------------------------------------------------------------------- /tools/gbafix/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbafix/COPYING -------------------------------------------------------------------------------- /tools/gbafix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbafix/Makefile -------------------------------------------------------------------------------- /tools/gbafix/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbafix/elf.h -------------------------------------------------------------------------------- /tools/gbafix/gbafix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbafix/gbafix.c -------------------------------------------------------------------------------- /tools/gbagfx/.gitignore: -------------------------------------------------------------------------------- 1 | gbagfx 2 | -------------------------------------------------------------------------------- /tools/gbagfx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/LICENSE -------------------------------------------------------------------------------- /tools/gbagfx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/Makefile -------------------------------------------------------------------------------- /tools/gbagfx/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/font.c -------------------------------------------------------------------------------- /tools/gbagfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/font.h -------------------------------------------------------------------------------- /tools/gbagfx/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/gfx.c -------------------------------------------------------------------------------- /tools/gbagfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/gfx.h -------------------------------------------------------------------------------- /tools/gbagfx/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/global.h -------------------------------------------------------------------------------- /tools/gbagfx/huff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/huff.c -------------------------------------------------------------------------------- /tools/gbagfx/huff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/huff.h -------------------------------------------------------------------------------- /tools/gbagfx/lz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/lz.c -------------------------------------------------------------------------------- /tools/gbagfx/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/lz.h -------------------------------------------------------------------------------- /tools/gbagfx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/main.c -------------------------------------------------------------------------------- /tools/gbagfx/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/options.h -------------------------------------------------------------------------------- /tools/gbagfx/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/rl.c -------------------------------------------------------------------------------- /tools/gbagfx/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/rl.h -------------------------------------------------------------------------------- /tools/gbagfx/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/util.c -------------------------------------------------------------------------------- /tools/gbagfx/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/gbagfx/util.h -------------------------------------------------------------------------------- /tools/jsonproc/.gitignore: -------------------------------------------------------------------------------- 1 | jsonproc 2 | -------------------------------------------------------------------------------- /tools/mapjson/.gitignore: -------------------------------------------------------------------------------- 1 | mapjson 2 | -------------------------------------------------------------------------------- /tools/mapjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/mapjson/Makefile -------------------------------------------------------------------------------- /tools/mapjson/json11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/mapjson/json11.h -------------------------------------------------------------------------------- /tools/mid2agb/.gitignore: -------------------------------------------------------------------------------- 1 | mid2agb 2 | -------------------------------------------------------------------------------- /tools/mid2agb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/mid2agb/LICENSE -------------------------------------------------------------------------------- /tools/mid2agb/agb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/mid2agb/agb.h -------------------------------------------------------------------------------- /tools/mid2agb/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/mid2agb/main.h -------------------------------------------------------------------------------- /tools/mid2agb/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/mid2agb/midi.h -------------------------------------------------------------------------------- /tools/preproc/.gitignore: -------------------------------------------------------------------------------- 1 | preproc 2 | -------------------------------------------------------------------------------- /tools/preproc/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/preproc/utf8.h -------------------------------------------------------------------------------- /tools/ramscrgen/.gitignore: -------------------------------------------------------------------------------- 1 | ramscrgen 2 | -------------------------------------------------------------------------------- /tools/rsfont/.gitignore: -------------------------------------------------------------------------------- 1 | rsfont 2 | -------------------------------------------------------------------------------- /tools/rsfont/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/rsfont/LICENSE -------------------------------------------------------------------------------- /tools/rsfont/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/rsfont/font.c -------------------------------------------------------------------------------- /tools/rsfont/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/rsfont/font.h -------------------------------------------------------------------------------- /tools/rsfont/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/rsfont/gfx.h -------------------------------------------------------------------------------- /tools/rsfont/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/rsfont/main.c -------------------------------------------------------------------------------- /tools/rsfont/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/rsfont/util.c -------------------------------------------------------------------------------- /tools/rsfont/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/tools/rsfont/util.h -------------------------------------------------------------------------------- /tools/scaninc/.gitignore: -------------------------------------------------------------------------------- 1 | scaninc 2 | -------------------------------------------------------------------------------- /wiki/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/wiki/logo.png -------------------------------------------------------------------------------- /wiki/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elite-Redux/eliteredux/HEAD/wiki/map.png --------------------------------------------------------------------------------