├── .gitattributes ├── .gitignore ├── .travis.yml ├── .travis └── calcrom │ ├── calcrom.pl │ └── webhook.sh ├── CHANGELOG.md ├── INSTALL.md ├── Makefile ├── README.md ├── alpha_builds.py ├── alpha_testers.txt ├── 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 │ ├── ec.inc │ ├── event.inc │ ├── field_effect_script.inc │ ├── function.inc │ ├── gbs.inc │ ├── m4a.inc │ ├── map.inc │ ├── movement.inc │ ├── music_voice.inc │ ├── phone.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 ├── cgb2gbs.py ├── 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 ├── debug │ └── sound_check_menu.txt ├── ereader_screen.txt ├── evolution_scene.txt ├── faraway_island.txt ├── field_camera.txt ├── field_control_avatar.txt ├── field_specials.txt ├── fieldmap.txt ├── image_processing_effects.txt ├── intro.txt ├── librfu_rfu.txt ├── librfu_sio32id.txt ├── librfu_stwi.txt ├── link.txt ├── link_rfu_2.txt ├── list_menu.txt ├── load_save.txt ├── m4a.txt ├── main.txt ├── mauville_old_man.txt ├── overworld.txt ├── party_menu.txt ├── pokedex.txt ├── pokedex_cry_screen.txt ├── random.txt ├── rtc.txt ├── save.txt ├── sound.txt ├── sprite.txt ├── start_menu.txt ├── task.txt ├── text.txt ├── trainer_see.txt ├── tv.txt └── window.txt ├── constants ├── constants.inc ├── gba_constants.inc ├── global.inc └── m4a_constants.inc ├── data ├── battle_ai_scripts.s ├── 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 ├── image_processing_effects.s ├── layouts │ ├── .gitignore │ ├── AlteringCave │ │ ├── border.bin │ │ └── map.bin │ ├── AncientTomb │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_1F │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_UnusedRubyMap1 │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_UnusedRubyMap2 │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_UnusedRubyMap3 │ │ ├── border.bin │ │ └── map.bin │ ├── ArtisanCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── ArtisanCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AzaleaTown │ │ ├── border.bin │ │ └── map.bin │ ├── AzaleaTown_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── AzaleaTown_KurtsHouse │ │ ├── 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_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_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 │ ├── CherrygroveCity │ │ ├── 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 │ ├── DarkCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── DarkCave_South │ │ ├── border.bin │ │ └── map.bin │ ├── DesertRuins │ │ ├── border.bin │ │ └── map.bin │ ├── DesertUnderpass │ │ ├── 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 │ ├── Gatehouse_Horizontal │ │ ├── border.bin │ │ └── map.bin │ ├── Gatehouse_Vertical │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_BikeShop │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_DeptStore_1F │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_DeptStore_2F │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_DeptStore_3F │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_DeptStore_4F │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_DeptStore_5F │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_DeptStore_6F │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_DeptStore_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_DeptStore_Elevator │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_DeptStore_Rooftop │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_FlowerShop │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_GameCorner │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_NameRatersHouse │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_Underground │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_Underground_NorthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── GoldenrodCity_Underground_SouthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Harbor │ │ ├── border.bin │ │ └── map.bin │ ├── House1 │ │ ├── border.bin │ │ └── map.bin │ ├── House2 │ │ ├── border.bin │ │ └── map.bin │ ├── House4 │ │ ├── border.bin │ │ └── map.bin │ ├── HouseWithBed │ │ ├── border.bin │ │ └── map.bin │ ├── IlexForest │ │ ├── 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 │ ├── 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 │ ├── MirageTower_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_2F │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_3F │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_4F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_GameCorner_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_GameCorner_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_SpaceCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_SpaceCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_StevensHouse │ │ ├── border.bin │ │ └── map.bin │ ├── 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 │ ├── NationalPark │ │ ├── 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 │ ├── NewBarkTown │ │ ├── border.bin │ │ └── map.bin │ ├── NewBarkTown_ElmsHouse │ │ ├── border.bin │ │ └── map.bin │ ├── NewBarkTown_NeighborsHouse │ │ ├── border.bin │ │ └── map.bin │ ├── NewBarkTown_PlayersHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── NewBarkTown_PlayersHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── NewBarkTown_ProfessorElmsLab │ │ ├── border.bin │ │ └── map.bin │ ├── NewBarkTown_ProfessorElmsLabWithTable │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── PokecomCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokecomCenter_AdminRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── RadioTower_1F │ │ ├── border.bin │ │ └── map.bin │ ├── RadioTower_2F │ │ ├── border.bin │ │ └── map.bin │ ├── RadioTower_3F │ │ ├── border.bin │ │ └── map.bin │ ├── RadioTower_4F │ │ ├── border.bin │ │ └── map.bin │ ├── RadioTower_5F │ │ ├── border.bin │ │ └── map.bin │ ├── RecordCorner │ │ ├── border.bin │ │ └── map.bin │ ├── Route104_Prototype │ │ ├── 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 │ ├── 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 │ ├── Route117_PokemonDayCare │ │ ├── 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 │ ├── Route29 │ │ ├── border.bin │ │ └── map.bin │ ├── Route30 │ │ ├── border.bin │ │ └── map.bin │ ├── Route30_MrPokemonsHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route31 │ │ ├── border.bin │ │ └── map.bin │ ├── Route32 │ │ ├── border.bin │ │ └── map.bin │ ├── Route33 │ │ ├── border.bin │ │ └── map.bin │ ├── Route34 │ │ ├── border.bin │ │ └── map.bin │ ├── Route34_DayCare │ │ ├── border.bin │ │ └── map.bin │ ├── Route35 │ │ ├── border.bin │ │ └── map.bin │ ├── Route35_NationalParkGatehouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route36 │ │ ├── border.bin │ │ └── map.bin │ ├── Route36_NationalParkGatehouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route45 │ │ ├── border.bin │ │ └── map.bin │ ├── Route46 │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_AerodactylChamber │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_AerodactylItemRoom │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_HoOhChamber │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_HoOhItemRoom │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_InnerChamber │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_KabutoChamber │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_KabutoItemRoom │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_KabutoWordRoom │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_OmanyteChamber │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_OmanyteItemRoom │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_Outside │ │ ├── border.bin │ │ └── map.bin │ ├── RuinsOfAlph_ResearchCenter │ │ ├── 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 │ ├── ScorchedSlab │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room1 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room2 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room3 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room4 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room5 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room6 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room7 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room8 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room9 │ │ ├── border.bin │ │ └── map.bin │ ├── SeafloorCavern_Room9_Lava │ │ ├── border.bin │ │ └── map.bin │ ├── SealedChamber_InnerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── SealedChamber_OuterRoom │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BlueCave1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BlueCave2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BlueCave3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BlueCave4 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BrownCave1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BrownCave2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BrownCave3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_BrownCave4 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_RedCave1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_RedCave2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_RedCave3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_RedCave4 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Shrub1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Shrub2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Shrub3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Shrub4 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Tree1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Tree2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Tree3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_Tree4 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_YellowCave1 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_YellowCave2 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_YellowCave3 │ │ ├── border.bin │ │ └── map.bin │ ├── SecretBase_YellowCave4 │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_HighTideEntranceRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_HighTideInnerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_LowTideEntranceRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_LowTideIceRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_LowTideInnerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_LowTideLowerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── ShoalCave_LowTideStairsRoom │ │ ├── border.bin │ │ └── map.bin │ ├── 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 │ ├── SlowpokeWell_B1F │ │ ├── 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 │ ├── SproutTower_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SproutTower_2F │ │ ├── border.bin │ │ └── map.bin │ ├── SproutTower_3F │ │ ├── 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 │ ├── UnionCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── UnionCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── UnionCave_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── UnionRoom │ │ ├── border.bin │ │ └── map.bin │ ├── UnknownLinkContestRoom_25_29 │ │ ├── border.bin │ │ └── map.bin │ ├── UnknownLinkContestRoom_25_30 │ │ ├── border.bin │ │ └── map.bin │ ├── UnknownLinkContestRoom_25_31 │ │ ├── border.bin │ │ └── map.bin │ ├── UnknownLinkContestRoom_25_32 │ │ ├── border.bin │ │ └── map.bin │ ├── UnknownLinkContestRoom_25_33 │ │ ├── border.bin │ │ └── map.bin │ ├── UnknownLinkContestRoom_25_34 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_08428450 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E6C0 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E6E4 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E708 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E72C │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E750 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E774 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E798 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E7BC │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E7E0 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E804 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E828 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E84C │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E870 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_0843E894 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_08447028 │ │ ├── border.bin │ │ └── map.bin │ ├── Unknown_084693AC │ │ ├── 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 │ ├── VioletCity │ │ ├── border.bin │ │ └── map.bin │ ├── VioletCity_EarlsAcademy │ │ ├── border.bin │ │ └── map.bin │ ├── VioletCity_Gym │ │ ├── border.bin │ │ └── map.bin │ └── layouts.json ├── map_events.s ├── maps.s ├── maps │ ├── .gitignore │ ├── AlteringCave │ │ ├── map.json │ │ └── scripts.inc │ ├── AncientTomb │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_UnusedRubyMap1 │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_UnusedRubyMap2 │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_UnusedRubyMap3 │ │ ├── map.json │ │ └── scripts.inc │ ├── ArtisanCave_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── ArtisanCave_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AzaleaTown │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AzaleaTown_CharcoalKiln │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AzaleaTown_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AzaleaTown_KurtsHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AzaleaTown_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AzaleaTown_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── AzaleaTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleColosseum_2P │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleColosseum_4P │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleArenaBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleArenaCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleArenaLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomeBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomeCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomeLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomePreBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleFactoryBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleFactoryLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleFactoryPreBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePalaceBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePalaceCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePalaceLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeRoomFinal │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeRoomNormal │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeRoomWildMons │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeThreePathRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePyramidFloor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePyramidLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePyramidTop │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerBattleRoom2 │ │ └── map.json │ ├── BattleFrontier_BattleTowerCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerElevator │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerMultiBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerMultiCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerMultiPartnerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_ExchangeServiceCorner │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge1 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge2 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge3 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge4 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge5 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge6 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge7 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge8 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Lounge9 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_OutsideEast │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_OutsideWest │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_RankingHall │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_ReceptionGate │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_ScottsHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── BattlePyramidSquare01 │ │ ├── map.json │ │ └── scripts.inc │ ├── BattlePyramidSquare02 │ │ └── map.json │ ├── BattlePyramidSquare03 │ │ └── map.json │ ├── BattlePyramidSquare04 │ │ └── map.json │ ├── BattlePyramidSquare05 │ │ └── map.json │ ├── BattlePyramidSquare06 │ │ └── map.json │ ├── BattlePyramidSquare07 │ │ └── map.json │ ├── BattlePyramidSquare08 │ │ └── map.json │ ├── BattlePyramidSquare09 │ │ └── map.json │ ├── BattlePyramidSquare10 │ │ └── map.json │ ├── BattlePyramidSquare11 │ │ └── map.json │ ├── BattlePyramidSquare12 │ │ └── map.json │ ├── BattlePyramidSquare13 │ │ └── map.json │ ├── BattlePyramidSquare14 │ │ └── map.json │ ├── BattlePyramidSquare15 │ │ └── map.json │ ├── BattlePyramidSquare16 │ │ └── map.json │ ├── BirthIsland_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── BirthIsland_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_UnusedRubySapphireMap1 │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_UnusedRubySapphireMap2 │ │ ├── map.json │ │ └── scripts.inc │ ├── CaveOfOrigin_UnusedRubySapphireMap3 │ │ ├── map.json │ │ └── scripts.inc │ ├── CherrygroveCity │ │ ├── map.json │ │ └── scripts.inc │ ├── CherrygroveCity_GuideGentsHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── CherrygroveCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── CherrygroveCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── CherrygroveCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── CherrygroveCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CherrygroveCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── ContestHall │ │ ├── map.json │ │ └── scripts.inc │ ├── ContestHallBeauty │ │ └── map.json │ ├── ContestHallCool │ │ └── map.json │ ├── ContestHallCute │ │ └── map.json │ ├── ContestHallSmart │ │ └── map.json │ ├── ContestHallTough │ │ └── map.json │ ├── DarkCave_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── DarkCave_South │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── DesertRuins │ │ ├── map.json │ │ └── scripts.inc │ ├── DesertUnderpass │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_ChampionsRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_DrakesRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_GlaciasRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_Hall1 │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_Hall2 │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_Hall3 │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_Hall4 │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_Hall5 │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_HallOfFame │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_PhoebesRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_PokemonLeague_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_PokemonLeague_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── EverGrandeCity_SidneysRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_BattleTentBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_BattleTentCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_BattleTentLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_CozmosHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_MoveRelearnersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── FallarborTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── FarawayIsland_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── FarawayIsland_Interior │ │ ├── map.json │ │ └── scripts.inc │ ├── FieryPath │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_DecorationShop │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_House5 │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── FortreeCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── GoldenrodCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_BikeShop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_BillsFamilysHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_DeptStore_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_DeptStore_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_DeptStore_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_DeptStore_4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_DeptStore_5F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_DeptStore_6F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_DeptStore_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_DeptStore_Elevator │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_DeptStore_Rooftop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_FlowerShop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_GameCorner │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_MagnetTrainStation │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_NameRatersHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_PokecomCenterAdminRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── GoldenrodCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── GoldenrodCity_PokemonSchool │ │ ├── map.json │ │ └── scripts.inc │ ├── GoldenrodCity_Underground │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_Underground_NorthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── GoldenrodCity_Underground_SouthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── IlexForest │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── InsideOfTruck │ │ ├── map.json │ │ └── scripts.inc │ ├── IslandCave │ │ ├── map.json │ │ └── scripts.inc │ ├── JaggedPass │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_Gym_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_Gym_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_HerbShop │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_House │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_ContestHall │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_ContestLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_CoveLilyMotel_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_CoveLilyMotel_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStoreElevator │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStoreRooftop │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_LilycoveMuseum_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_LilycoveMuseum_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_MoveDeletersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_PokemonTrainerFanClub │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_UnusedMart │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_2F_1R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_2F_2R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_2F_3R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_3F_1R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_3F_2R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_3F_3R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── MarineCave_End │ │ ├── map.json │ │ └── scripts.inc │ ├── MarineCave_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_BikeShop │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_GameCorner │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_GameCorner_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_GameCorner_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_SpaceCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_SpaceCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_StevensHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_6F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_Summit │ │ ├── map.json │ │ └── scripts.inc │ ├── NationalPark │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NationalPark_BugCatchingContest │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NavelRock_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Bottom │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down01 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down02 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down03 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down04 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down05 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down06 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down07 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down08 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down09 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down10 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down11 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Fork │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Top │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up1 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up2 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up3 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up4 │ │ ├── map.json │ │ └── scripts.inc │ ├── NewBarkTown │ │ ├── map.json │ │ └── scripts.inc │ ├── NewBarkTown_ElmsHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── NewBarkTown_NeighborsHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── NewBarkTown_PlayersHouse_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── NewBarkTown_PlayersHouse_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── NewBarkTown_ProfessorElmsLab │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── PacifidlogTown │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House5 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── RadioTower_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RadioTower_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RadioTower_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── RadioTower_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── RadioTower_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── RecordCorner │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104_Prototype │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104_PrototypePrettyPetalFlowerShop │ │ ├── map.json │ │ └── scripts.inc │ ├── Route109 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route109_SeashoreHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_SeasideCyclingRoadNorthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_SeasideCyclingRoadSouthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHouseCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHouseEnd │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHouseEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle1 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle2 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle3 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle4 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle5 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle6 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle7 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle8 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route111 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route112 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route113 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route113_GlassWorkshop │ │ ├── map.json │ │ └── scripts.inc │ ├── Route114 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route115 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route116 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119_House │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119_WeatherInstitute_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119_WeatherInstitute_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route120 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route121 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route122 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route123 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route123_BerryMastersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route124 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route124_DivingTreasureHuntersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route125 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route126 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route127 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route128 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route129 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route130 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route131 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route132 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route133 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route134 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route29 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route29_Gatehouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route30 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route30_BerryMansHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route30_MrPokemonsHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route31 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route31_Gatehouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route32 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route32_Gatehouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route32_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route32_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route33 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route34 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route34_DayCare │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route34_IlexEastGatehouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route34_IlexNorthGatehouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route35 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route35_GoldenrodGatehouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route35_NationalParkGatehouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route36 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route36_NationalParkGatehouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route36_RuinsOfAlphGatehouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── Route45 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route46 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RuinsOfAlph_AerodactylChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── RuinsOfAlph_AerodactylItemRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── RuinsOfAlph_HoOhChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── RuinsOfAlph_HoOhItemRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── RuinsOfAlph_InnerChamber │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RuinsOfAlph_KabutoChamber │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RuinsOfAlph_KabutoItemRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── RuinsOfAlph_KabutoWordRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── RuinsOfAlph_OmanyteChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── RuinsOfAlph_OmanyteItemRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── RuinsOfAlph_Outside │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── RuinsOfAlph_ResearchCenter │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SSTidalCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── SSTidalLowerDeck │ │ ├── map.json │ │ └── scripts.inc │ ├── SSTidalRooms │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_North │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_Northeast │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_Northwest │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_RestHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_South │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_Southeast │ │ ├── map.json │ │ └── scripts.inc │ ├── SafariZone_Southwest │ │ ├── map.json │ │ └── scripts.inc │ ├── ScorchedSlab │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room1 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room2 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room3 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room4 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room5 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room6 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room7 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room8 │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafloorCavern_Room9 │ │ ├── map.json │ │ └── scripts.inc │ ├── SealedChamber_InnerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── SealedChamber_OuterRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── SecretBase_BlueCave1 │ │ └── map.json │ ├── SecretBase_BlueCave2 │ │ └── map.json │ ├── SecretBase_BlueCave3 │ │ └── map.json │ ├── SecretBase_BlueCave4 │ │ └── map.json │ ├── SecretBase_BrownCave1 │ │ └── map.json │ ├── SecretBase_BrownCave2 │ │ └── map.json │ ├── SecretBase_BrownCave3 │ │ └── map.json │ ├── SecretBase_BrownCave4 │ │ └── map.json │ ├── SecretBase_RedCave1 │ │ └── map.json │ ├── SecretBase_RedCave2 │ │ └── map.json │ ├── SecretBase_RedCave3 │ │ └── map.json │ ├── SecretBase_RedCave4 │ │ └── map.json │ ├── SecretBase_Shrub1 │ │ └── map.json │ ├── SecretBase_Shrub2 │ │ └── map.json │ ├── SecretBase_Shrub3 │ │ └── map.json │ ├── SecretBase_Shrub4 │ │ └── map.json │ ├── SecretBase_Tree1 │ │ └── map.json │ ├── SecretBase_Tree2 │ │ └── map.json │ ├── SecretBase_Tree3 │ │ └── map.json │ ├── SecretBase_Tree4 │ │ └── map.json │ ├── SecretBase_YellowCave1 │ │ └── map.json │ ├── SecretBase_YellowCave2 │ │ └── map.json │ ├── SecretBase_YellowCave3 │ │ └── map.json │ ├── SecretBase_YellowCave4 │ │ └── map.json │ ├── ShoalCave_HighTideEntranceRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_HighTideInnerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_LowTideEntranceRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_LowTideIceRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_LowTideInnerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_LowTideLowerRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── ShoalCave_LowTideStairsRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_Outside │ │ ├── map.json │ │ └── scripts.inc │ ├── SkyPillar_Top │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_BattleTentBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_BattleTentCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_BattleTentLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_House │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_NameRatersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_OceanicMuseum_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_OceanicMuseum_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_PokemonFanClub │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_SternsShipyard_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlateportCity_SternsShipyard_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SlowpokeWell_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SootopolisCity │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_Gym_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_Gym_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House5 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House6 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House7 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_LotadAndSeedotHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_MysteryEventsHouse_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_MysteryEventsHouse_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SouthernIsland_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── SouthernIsland_Interior │ │ ├── map.json │ │ └── scripts.inc │ ├── SproutTower_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SproutTower_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── SproutTower_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── TerraCave_End │ │ ├── map.json │ │ └── scripts.inc │ ├── TerraCave_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── TradeCenter │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_Elevator │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_Roof │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_MarineCave │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route105 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route124 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route125 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route126 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route127 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route128 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route129 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route134 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_SeafloorCavern │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_SealedChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_SootopolisCity │ │ ├── map.json │ │ └── scripts.inc │ ├── UnionCave_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── UnionCave_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── UnionCave_B2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── UnionRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── UnknownLinkContestRoom_25_29 │ │ └── map.json │ ├── UnknownLinkContestRoom_25_30 │ │ └── map.json │ ├── UnknownLinkContestRoom_25_31 │ │ └── map.json │ ├── UnknownLinkContestRoom_25_32 │ │ └── map.json │ ├── UnknownLinkContestRoom_25_33 │ │ └── map.json │ ├── UnknownLinkContestRoom_25_34 │ │ └── map.json │ ├── VerdanturfTown │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_BattleTentBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_BattleTentCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_BattleTentLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_FriendshipRatersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_House │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_WandasHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── VioletCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VioletCity_EarlsAcademy │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VioletCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VioletCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VioletCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VioletCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VioletCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── scripts.pory │ ├── VioletCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ └── map_groups.json ├── multiboot_berry_glitch_fix.s ├── multiboot_pokemon_colosseum.s ├── mystery_event.s ├── mystery_event_script_cmd_table.s ├── phone.s ├── phone_script_cmd_table.inc ├── pokemon_colosseum.mb ├── script_cmd_table.inc ├── scripts │ ├── .gitignore │ ├── abnormal_weather.inc │ ├── apprentice.inc │ ├── battle_pike.inc │ ├── berry_blender.inc │ ├── berry_tree.inc │ ├── bug_catching_contest.pory │ ├── cable_club.inc │ ├── cave_hole.inc │ ├── cave_of_origin.inc │ ├── check_furniture.inc │ ├── contest_hall.inc │ ├── day_care.pory │ ├── elite_four.inc │ ├── field_move_scripts.inc │ ├── field_poison.inc │ ├── flash.inc │ ├── gabby_and_ty.inc │ ├── hall_of_fame.inc │ ├── interview.inc │ ├── item_ball_scripts.inc │ ├── kecleon.inc │ ├── lilycove_lady.inc │ ├── mauville_man.inc │ ├── mevent.pory │ ├── 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 │ ├── move_tutors.inc │ ├── movement.inc │ ├── mystery_event_club.inc │ ├── new_game.inc │ ├── obtain_item.inc │ ├── pc.inc │ ├── pc_transfer.inc │ ├── pkmn_center_nurse.inc │ ├── pokedex_rating.inc │ ├── record_mix.inc │ ├── repel.inc │ ├── rival_graphics.inc │ ├── roulette.inc │ ├── safari_zone.inc │ ├── secret_base.inc │ ├── secret_power_tm.inc │ ├── set_gym_trainers.inc │ ├── shared_secret_base.inc │ ├── std_msgbox.inc │ ├── surf.inc │ ├── test_signpost.inc │ ├── trainer_battle.inc │ ├── trainer_hill.inc │ └── trainer_script.inc ├── sound_data.s ├── specials.inc ├── text │ ├── abnormal_weather.inc │ ├── apprentice.inc │ ├── battle_dome.inc │ ├── battle_tent.inc │ ├── berries.inc │ ├── berry_descriptions.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 │ ├── move_tutors.pory │ ├── 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.pory │ ├── trick_house_mechadolls.inc │ └── tv.inc ├── tilesets.s ├── tilesets │ ├── graphics.inc │ ├── headers.inc │ ├── metatiles.inc │ ├── overrides.inc │ ├── primary │ │ ├── building │ │ │ ├── anim │ │ │ │ └── tv_turned_on │ │ │ │ │ ├── 0.png │ │ │ │ │ └── 1.png │ │ │ ├── metatile_attributes.bin │ │ │ ├── metatiles.bin │ │ │ ├── palettes │ │ │ │ ├── 00.pal │ │ │ │ ├── 01.pal │ │ │ │ ├── 02.pal │ │ │ │ ├── 03.pal │ │ │ │ ├── 04.pal │ │ │ │ ├── 05.pal │ │ │ │ ├── 06.pal │ │ │ │ ├── 07.pal │ │ │ │ ├── 08.pal │ │ │ │ ├── 09.pal │ │ │ │ ├── 10.pal │ │ │ │ ├── 11.pal │ │ │ │ ├── 12.pal │ │ │ │ ├── 13.pal │ │ │ │ ├── 14.pal │ │ │ │ └── 15.pal │ │ │ └── tiles.png │ │ ├── general │ │ │ ├── anim │ │ │ │ ├── flower │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ └── 4.png │ │ │ │ ├── water │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ └── 7.png │ │ │ │ └── water_fast │ │ │ │ │ ├── 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 │ │ │ │ ├── 02_over.pal │ │ │ │ ├── 03.pal │ │ │ │ ├── 04.pal │ │ │ │ ├── 05.pal │ │ │ │ ├── 06.pal │ │ │ │ ├── 07.pal │ │ │ │ ├── 07_over.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 │ │ ├── azalea │ │ ├── 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 │ │ │ ├── 09_over.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── azalea_gym │ │ ├── anim │ │ │ └── flowers │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── 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 │ │ ├── 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 │ │ ├── department_store │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 09_over_nowin.pal │ │ │ ├── 09_over_win.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 │ │ ├── forest │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── 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 │ │ ├── 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 │ │ ├── gatehouse │ │ ├── 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 │ │ ├── goldenrod │ │ ├── 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 │ │ │ ├── 08_over.pal │ │ │ ├── 09.pal │ │ │ ├── 09_over.pal │ │ │ ├── 10.pal │ │ │ ├── 10_over.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 12_over.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── goldenrod_gym │ │ ├── anim │ │ │ └── flowers │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── 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_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 │ │ ├── magnet_train │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── metatiles.bin.bak │ │ ├── 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_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 │ │ ├── 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 │ │ ├── national_park │ │ ├── anim │ │ │ ├── large_fountain │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ │ ├── red_flower │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ ├── small_fountain │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ └── yellow_flower │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── new_bark │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 08_over.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 │ │ ├── pagoda_tower │ │ ├── anim │ │ │ └── sprout_tower_pillar │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.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 │ │ ├── players_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 │ │ ├── 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 │ │ ├── anim │ │ │ ├── red_flower │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ └── yellow_flower │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── radio_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 │ │ ├── rock_tunnel │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ ├── ruins_of_alph │ │ ├── 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 │ │ ├── underground │ │ ├── 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 │ │ ├── violet │ │ ├── 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 │ │ │ ├── 08_over.pal │ │ │ ├── 09.pal │ │ │ ├── 09_over.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ │ └── violet_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 ├── unknown_serial_data.bin └── unknown_serial_data.s ├── docs └── bugs_and_glitches.md ├── door_ripper.py ├── em_layout_fixer.py ├── em_tileset_fixer.py ├── find.sh ├── find_missing.py ├── find_missing.sh ├── findandreplace.py ├── font_widths.json ├── fr_tileset_fixer.py ├── 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 │ │ ├── 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 │ ├── 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 │ │ ├── unknown_C2EA50.bin │ │ └── unknown_C2EA50.png │ └── sprites │ │ ├── air_slash.png │ │ ├── air_wave.png │ │ ├── air_wave_2.png │ │ ├── alert.png │ │ ├── amnesia.png │ │ ├── angel.png │ │ ├── anger.png │ │ ├── ball_bubble_particles.png │ │ ├── ball_fast_particles.png │ │ ├── ball_friend_particles.png │ │ ├── ball_moon_particles.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 │ │ ├── confetti.png │ │ ├── conversion.png │ │ ├── cracked_egg.png │ │ ├── cross_impact.png │ │ ├── cut.png │ │ ├── devil.png │ │ ├── dirt_mound.png │ │ ├── duck.png │ │ ├── eclipsing_orb.png │ │ ├── electric_orbs.png │ │ ├── electricity.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 │ │ ├── finger.png │ │ ├── finger_2.png │ │ ├── fire.png │ │ ├── fire_plume.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 │ │ ├── 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 │ │ ├── noise_line.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_powder.png │ │ ├── pokeball.png │ │ ├── pokeblock.png │ │ ├── protect.png │ │ ├── punch_impact.png │ │ ├── purple_coral.png │ │ ├── purple_droplet.png │ │ ├── purple_flame.png │ │ ├── purple_gas_cloud.pal │ │ ├── purple_green_unk.png │ │ ├── purple_hand_outline.png │ │ ├── purple_ring.pal │ │ ├── purple_scratch.png │ │ ├── purple_swipe.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 │ │ ├── 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_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 │ │ ├── string.png │ │ ├── string_2.png │ │ ├── stun_spore.pal │ │ ├── substitute.bin │ │ ├── substitute.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 │ │ ├── tri_attack_triangle.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_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 │ │ ├── wisp_fire.png │ │ ├── wisp_orb.png │ │ ├── x_sign.png │ │ ├── yellow_ball.png │ │ ├── yellow_star.png │ │ ├── yellow_unk.png │ │ ├── yellow_unk_2.png │ │ └── z.png ├── 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 │ ├── 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 │ ├── 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 │ ├── misc.png │ ├── misc_frameend.png │ ├── status2.png │ ├── status3.png │ ├── status4.png │ ├── status_brn.png │ ├── status_frz.png │ ├── status_par.png │ ├── status_psn.png │ ├── status_slp.png │ ├── text.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 │ │ ├── link.pal │ │ ├── map.bin │ │ ├── palette.pal │ │ ├── palette2.pal │ │ ├── palette3.pal │ │ └── tiles.png │ ├── cave │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── groudon.pal │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── long_grass │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── day.pal │ │ ├── map.bin │ │ ├── morning.pal │ │ ├── night.pal │ │ └── tiles.png │ ├── plain │ │ ├── day.pal │ │ ├── morning.pal │ │ └── night.pal │ ├── pond_water │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── day.pal │ │ ├── map.bin │ │ ├── morning.pal │ │ ├── night.pal │ │ └── tiles.png │ ├── rock │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── day.pal │ │ ├── map.bin │ │ ├── morning.pal │ │ ├── night.pal │ │ └── tiles.png │ ├── sand │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── day.pal │ │ ├── map.bin │ │ ├── morning.pal │ │ ├── night.pal │ │ └── tiles.png │ ├── sky │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── stadium │ │ ├── battle_frontier.pal │ │ ├── map.bin │ │ ├── palette1.pal │ │ ├── palette2.pal │ │ ├── palette3.pal │ │ ├── palette4.pal │ │ ├── palette5.pal │ │ ├── palette6.pal │ │ ├── palette7.pal │ │ └── tiles.png │ ├── tall_grass │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── day.pal │ │ ├── map.bin │ │ ├── morning.pal │ │ ├── night.pal │ │ └── tiles.png │ ├── underwater │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ └── water │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── day.pal │ │ ├── kyogre.pal │ │ ├── map.bin │ │ ├── morning.pal │ │ ├── night.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_magma.bin │ ├── team_magma.png │ ├── team_rocket.bin │ ├── team_rocket.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 │ ├── belue.png │ ├── bluk.png │ ├── cheri.png │ ├── chesto.png │ ├── cornn.png │ ├── durin.png │ ├── enigma.png │ ├── figy.png │ ├── ganlon.png │ ├── grepa.png │ ├── hondew.png │ ├── iapapa.png │ ├── kelpsy.png │ ├── lansat.png │ ├── leppa.png │ ├── liechi.png │ ├── lum.png │ ├── mago.png │ ├── magost.png │ ├── nanab.png │ ├── nomel.png │ ├── oran.png │ ├── pamtre.png │ ├── pecha.png │ ├── persim.png │ ├── petaya.png │ ├── pinap.png │ ├── pomeg.png │ ├── qualot.png │ ├── rabuta.png │ ├── rawst.png │ ├── razz.png │ ├── salac.png │ ├── sitrus.png │ ├── spelon.png │ ├── starf.png │ ├── tamato.png │ ├── watmel.png │ ├── wepear.png │ └── wiki.png ├── berry_blender │ ├── arrow.png │ ├── arrow_old.png │ ├── center.png │ ├── center_map.bin │ ├── countdown_numbers.png │ ├── misc.pal │ ├── outer.png │ ├── outer_map.bin │ ├── particles.png │ ├── score_symbols.png │ ├── start.png │ └── unused.pal ├── berry_crusher │ ├── tiles.bin │ ├── tiles.pal │ └── tiles.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 ├── bug_catching_contest │ ├── background_tilemap.bin │ └── background_tiles.png ├── cable_car │ ├── bg.pal │ ├── bg.png │ ├── bg_mountains.bin │ ├── cable.png │ ├── cable_car.png │ ├── door.png │ ├── ground.bin │ ├── pylons.bin │ └── trees.bin ├── card_flip │ ├── bet_outline_horizontal.png │ ├── bet_outline_vertical.png │ ├── bet_outline_vertical_small.png │ ├── card_back.png │ ├── card_flip_base_bg_tilemap.bin │ ├── card_flip_base_bg_tiles.png │ ├── card_numbers.png │ ├── card_selection.png │ ├── coin_digits.png │ ├── jigglypuff_1.png │ ├── jigglypuff_2.png │ ├── jigglypuff_3.png │ ├── jigglypuff_4.png │ ├── jigglypuff_5.png │ ├── jigglypuff_6.png │ ├── oddish_1.png │ ├── oddish_2.png │ ├── oddish_3.png │ ├── oddish_4.png │ ├── oddish_5.png │ ├── oddish_6.png │ ├── pikachu_1.png │ ├── pikachu_2.png │ ├── pikachu_3.png │ ├── pikachu_4.png │ ├── pikachu_5.png │ ├── pikachu_6.png │ ├── poliwag_1.png │ ├── poliwag_2.png │ ├── poliwag_3.png │ ├── poliwag_4.png │ ├── poliwag_5.png │ ├── poliwag_6.png │ └── round_counters.png ├── contest │ ├── applause.png │ ├── applause_meter.png │ ├── audience.png │ ├── faces.png │ ├── judge.png │ ├── judge_symbols.png │ ├── misc.png │ ├── misc_2_tilemap_1.bin │ ├── misc_2_tilemap_2.bin │ ├── misc_2_tilemap_3.bin │ ├── nextturn.png │ ├── nextturn_numbers.png │ ├── nextturn_random.png │ ├── results_screen.bin │ ├── results_screen.pal │ ├── results_screen.png │ ├── results_screen_beauty.bin │ ├── results_screen_cool.bin │ ├── results_screen_cute.bin │ ├── results_screen_hyper.bin │ ├── results_screen_link.bin │ ├── results_screen_master.bin │ ├── results_screen_normal.bin │ ├── results_screen_smart.bin │ ├── results_screen_super.bin │ ├── results_screen_tough.bin │ ├── slider_heart.png │ └── text.pal ├── credits │ ├── credits_1.pal │ ├── credits_2.pal │ ├── credits_3.pal │ ├── credits_4.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 ├── door_anims │ ├── abandoned_ship.png │ ├── abandoned_ship_room.png │ ├── azalea.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 │ ├── cable_club.png │ ├── contest.png │ ├── cycling_road.png │ ├── dept_store_elevator.png │ ├── dewford.png │ ├── elms_lab.png │ ├── facility_blue_wall_elevator.png │ ├── facility_pink_wall_elevator.png │ ├── fallarbor_dark_roof.png │ ├── general.png │ ├── goldenrod.png │ ├── goldenrod_dept_store.png │ ├── gym.png │ ├── lilycove_dept_store.png │ ├── lilycove_wooden.png │ ├── mossdeep.png │ ├── mossdeep_space_center.png │ ├── new_bark.png │ ├── pacifidlog.png │ ├── poke_center.png │ ├── pokecom_center.png │ ├── pokemon_league.png │ ├── radio_tower.png │ ├── ruins_lab.png │ ├── safari_zone.png │ ├── sootopolis.png │ ├── sootopolis_peaked_roof.png │ ├── sprout_tower.png │ ├── trainer_hill_lobby_elevator.png │ ├── trainer_hill_roof_elevator.png │ ├── unknown.png │ ├── unused_bottom.png │ ├── unused_top.png │ └── violet.png ├── easy_chat │ ├── cursor.png │ ├── mode.png │ ├── rwindow.png │ ├── scroll_indicator.png │ ├── start_select_buttons.png │ ├── triangle_cursor.png │ ├── window.bin │ └── window.png ├── evolution_scene │ ├── bg.bin │ ├── bg.png │ ├── bg2.bin │ ├── gray_transition_darken.pal │ ├── gray_transition_intro.pal │ ├── gray_transition_lighten.pal │ ├── gray_transition_outro.pal │ ├── transition.pal │ └── unknown_5B4114.pal ├── field_effects │ ├── palettes │ │ ├── ash.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 │ │ ├── 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 │ │ ├── long_grass_top_edge.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 │ ├── font0_japanese.png │ ├── font0_latin.png │ ├── font0_latin_widths.inc │ ├── font1_japanese.png │ ├── font1_latin.png │ ├── font1_latin_widths.inc │ ├── font2_japanese.png │ ├── font2_japanese_widths.inc │ ├── font2_latin.png │ ├── font2_latin_widths.inc │ ├── font6_unown.png │ ├── font7_latin.png │ ├── font7_latin_widths.inc │ ├── font8_latin.png │ ├── font8_latin_widths.inc │ ├── font9_japanese.png │ ├── keypad_icons.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 │ ├── cursor.png │ ├── gold.pal │ ├── 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 │ ├── tilemap1.bin │ ├── tilemap2.bin │ ├── tiles.bin │ ├── tiles.pal │ ├── tiles.png │ ├── tiles2.png │ └── unknown_571298.bin ├── interface │ ├── 855C604.pal │ ├── 855C624.bin │ ├── 860F074.pal │ ├── 860F0B0.pal │ ├── appealjam_tilemap.bin │ ├── bag_pyramid.pal │ ├── bag_pyramid.png │ ├── bag_pyramid_tilemap.bin │ ├── bag_swap.png │ ├── ball │ │ ├── dive.png │ │ ├── fast.png │ │ ├── friend.png │ │ ├── great.png │ │ ├── heavy.png │ │ ├── level.png │ │ ├── love.png │ │ ├── lure.png │ │ ├── luxury.png │ │ ├── master.png │ │ ├── moon.png │ │ ├── nest.png │ │ ├── net.png │ │ ├── park.png │ │ ├── poke.png │ │ ├── premier.png │ │ ├── repeat.png │ │ ├── safari.png │ │ ├── timer.png │ │ └── ultra.png │ ├── ball_open.png │ ├── berry_tag.bin │ ├── berry_tag_screen.pal │ ├── berry_tag_title.bin │ ├── blank.pal │ ├── blank.png │ ├── blank_1x2.png │ ├── check_berry.pal │ ├── check_berry.png │ ├── check_berry_circle.png │ ├── hold_icons.png │ ├── hpbar_anim.png │ ├── link_test_digits.png │ ├── money.png │ ├── numbers1.png │ ├── numbers2.png │ ├── 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 │ ├── selector_outline.png │ ├── shop_menu.bin │ ├── shop_menu.pal │ ├── shop_menu.png │ ├── shop_menu_tm_hm.bin │ ├── 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_a_button.png │ ├── summary_b_button.png │ ├── summary_frames.png │ ├── summary_markings.pal │ ├── 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 │ ├── 85F0CFC.pal │ ├── 85F0D5C.pal │ ├── 85F231C.pal │ ├── copyright.bin │ ├── copyright.png │ ├── intro1_background.png │ ├── intro1_bg1.bin │ ├── intro1_bg1.png │ ├── intro1_bg2.bin │ ├── intro1_bg2_logo.bin │ ├── intro1_bg3.bin │ ├── intro1_ditto.png │ ├── intro1_ditto2.png │ ├── intro1_ditto_shiny.pal │ ├── intro1_logotiles.png │ ├── intro1_presents.png │ ├── intro1_text.pal │ ├── intro2_bg1.bin │ ├── intro2_bg1.png │ ├── intro2_bg2.bin │ ├── intro2_bg2.png │ ├── intro2_bg3.bin │ ├── intro2_bg3.png │ ├── intro2_bgclouds.png │ ├── intro2_bgclouds2.png │ ├── intro2_bgclouds_afternoon.pal │ ├── intro2_bgclouds_map.bin │ ├── intro2_bgnight.png │ ├── intro2_bgnight_map.bin │ ├── intro2_bgtrees.png │ ├── intro2_bgtrees2.pal │ ├── intro2_bgtrees2_afternoon.pal │ ├── intro2_bgtrees_map.bin │ ├── intro2_bgtreessmall.png │ ├── intro2_bicycle.png │ ├── intro2_brendan.png │ ├── intro2_flygon.png │ ├── intro2_grass.png │ ├── intro2_grass_afternoon.pal │ ├── intro2_grass_map.bin │ ├── intro2_grass_night.pal │ ├── intro2_latias.png │ ├── intro2_latios.png │ ├── intro2_may.png │ ├── intro2_night.png │ ├── intro2_pichu.png │ ├── intro2_suicune_silhouette.png │ ├── intro2_tiny_unowns.png │ ├── intro2_unownA.png │ ├── intro2_unown_pulse.png │ ├── intro2_wooper.png │ ├── intro3.pal │ ├── intro3_fallingbg.pal │ ├── intro3_name.bin │ ├── intro3_name.png │ ├── intro3_suicune.png │ ├── intro3_suicune_mug.bin │ ├── intro3_suicune_mug.png │ └── intro3_unownF.png ├── item_menu │ ├── bag_female.png │ ├── bag_male.png │ ├── bag_pal1.pal │ ├── bag_pal2.pal │ ├── bag_tilemap1.bin │ ├── bag_tilemap2.bin │ ├── bag_tiles.png │ ├── bag_window_pal.pal │ ├── bagmap_0.bin │ ├── bagmap_1.bin │ ├── bagmap_2.bin │ ├── bagmap_3.bin │ ├── bagmap_4.bin │ ├── bagmap_5.bin │ ├── bagmap_6.bin │ ├── bagmap_7.bin │ ├── bagmap_8.bin │ ├── bagmap_9.bin │ ├── bagmap_A.bin │ ├── bagmap_B.bin │ ├── hm.png │ └── select_button.png ├── item_pc │ ├── bg.bin │ ├── bg.pal │ └── bg.png ├── items │ ├── icon_palettes │ │ ├── acro_bike.pal │ │ ├── aguav_berry.pal │ │ ├── amulet_coin.pal │ │ ├── antidote.pal │ │ ├── apicot_berry.pal │ │ ├── aspear_berry.pal │ │ ├── aurora_ticket.pal │ │ ├── awakening.pal │ │ ├── bead_mail.pal │ │ ├── belue_berry.pal │ │ ├── berry_juice.pal │ │ ├── berry_pouch.pal │ │ ├── bicycle.pal │ │ ├── bike_voucher.pal │ │ ├── black_flute.pal │ │ ├── black_type_enhancing_item.pal │ │ ├── blk_apricorn.pal │ │ ├── blu_apricorn.pal │ │ ├── blue_card.pal │ │ ├── blue_flute.pal │ │ ├── blue_orb.pal │ │ ├── blue_scarf.pal │ │ ├── blue_shard.pal │ │ ├── bluk_berry.pal │ │ ├── bright_powder.pal │ │ ├── burn_heal.pal │ │ ├── calcium.pal │ │ ├── carbos.pal │ │ ├── card_key.pal │ │ ├── charcoal.pal │ │ ├── cheri_berry.pal │ │ ├── chesto_berry.pal │ │ ├── choice_band.pal │ │ ├── cleanse_tag.pal │ │ ├── coin_case.pal │ │ ├── contest_pass.pal │ │ ├── cornn_berry.pal │ │ ├── dark_tm_hm.pal │ │ ├── deep_sea_scale.pal │ │ ├── deep_sea_tooth.pal │ │ ├── devon_goods.pal │ │ ├── devon_scope.pal │ │ ├── dire_hit.pal │ │ ├── dive_ball.pal │ │ ├── dragon_fang.pal │ │ ├── dragon_scale.pal │ │ ├── dragon_tm_hm.pal │ │ ├── dream_mail.pal │ │ ├── durin_berry.pal │ │ ├── egg_ticket.pal │ │ ├── electric_tm_hm.pal │ │ ├── elixir.pal │ │ ├── energy_powder.pal │ │ ├── energy_root.pal │ │ ├── enigma_berry.pal │ │ ├── eon_ticket.pal │ │ ├── escape_rope.pal │ │ ├── ether.pal │ │ ├── everstone.pal │ │ ├── exp_share.pal │ │ ├── fab_mail.pal │ │ ├── fame_checker.pal │ │ ├── fast_ball.pal │ │ ├── fighting_tm_hm.pal │ │ ├── figy_berry.pal │ │ ├── fire_stone.pal │ │ ├── fire_tm_hm.pal │ │ ├── fluffy_tail.pal │ │ ├── flying_tm_hm.pal │ │ ├── focus_band.pal │ │ ├── fresh_water.pal │ │ ├── friend_ball.pal │ │ ├── full_heal.pal │ │ ├── full_restore.pal │ │ ├── ganlon_berry.pal │ │ ├── gb_player.pal │ │ ├── ghost_tm_hm.pal │ │ ├── glitter_mail.pal │ │ ├── go_goggles.pal │ │ ├── gold_teeth.pal │ │ ├── good_rod.pal │ │ ├── grass_tm_hm.pal │ │ ├── great_ball.pal │ │ ├── green_scarf.pal │ │ ├── green_shard.pal │ │ ├── grepa_berry.pal │ │ ├── grn_apricorn.pal │ │ ├── ground_tm_hm.pal │ │ ├── guard_spec.pal │ │ ├── harbor_mail.pal │ │ ├── hard_stone.pal │ │ ├── heal_powder.pal │ │ ├── heart_scale.pal │ │ ├── heavy_ball.pal │ │ ├── hoenn_fossil.pal │ │ ├── hondew_berry.pal │ │ ├── hp_up.pal │ │ ├── hyper_potion.pal │ │ ├── iapapa_berry.pal │ │ ├── ice_heal.pal │ │ ├── ice_tm_hm.pal │ │ ├── iron.pal │ │ ├── itemfinder.pal │ │ ├── kanto_fossil.pal │ │ ├── kelpsy_berry.pal │ │ ├── key.pal │ │ ├── kings_rock.pal │ │ ├── lansat_berry.pal │ │ ├── lava_cookie_and_letter.pal │ │ ├── lax_incense.pal │ │ ├── leaf_stone.pal │ │ ├── leftovers.pal │ │ ├── lemonade.pal │ │ ├── leppa_berry.pal │ │ ├── level_ball.pal │ │ ├── liechi_berry.pal │ │ ├── light_ball.pal │ │ ├── love_ball.pal │ │ ├── lucky_egg.pal │ │ ├── lucky_punch.pal │ │ ├── lum_berry.pal │ │ ├── lure_ball.pal │ │ ├── luxury_ball.pal │ │ ├── mach_bike.pal │ │ ├── macho_brace.pal │ │ ├── magma_emblem.pal │ │ ├── magnet.pal │ │ ├── mago_berry.pal │ │ ├── magost_berry.pal │ │ ├── master_ball.pal │ │ ├── max_elixir.pal │ │ ├── max_ether.pal │ │ ├── max_potion.pal │ │ ├── max_repel.pal │ │ ├── mech_mail.pal │ │ ├── mental_herb.pal │ │ ├── metal_coat.pal │ │ ├── metal_powder.pal │ │ ├── meteorite.pal │ │ ├── miracle_seed.pal │ │ ├── moomoo_milk.pal │ │ ├── moon_ball.pal │ │ ├── moon_stone.pal │ │ ├── mushroom.pal │ │ ├── mystery_egg.pal │ │ ├── mystic_ticket.pal │ │ ├── mystic_water.pal │ │ ├── nanab_berry.pal │ │ ├── nest_ball.pal │ │ ├── net_ball.pal │ │ ├── never_melt_ice.pal │ │ ├── nomel_berry.pal │ │ ├── normal_tm_hm.pal │ │ ├── nugget.pal │ │ ├── oaks_parcel.pal │ │ ├── old_amber.pal │ │ ├── old_key.pal │ │ ├── old_rod.pal │ │ ├── old_sea_map.pal │ │ ├── oran_berry.pal │ │ ├── orange_mail.pal │ │ ├── pamtre_berry.pal │ │ ├── paralyze_heal.pal │ │ ├── park_ball.pal │ │ ├── pearl.pal │ │ ├── pecha_berry.pal │ │ ├── persim_berry.pal │ │ ├── petaya_berry.pal │ │ ├── pinap_berry.pal │ │ ├── pink_scarf.pal │ │ ├── pnk_apricorn.pal │ │ ├── poison_barb.pal │ │ ├── poison_tm_hm.pal │ │ ├── poke_ball.pal │ │ ├── poke_doll.pal │ │ ├── poke_flute.pal │ │ ├── pokeblock_case.pal │ │ ├── pomeg_berry.pal │ │ ├── potion.pal │ │ ├── powder_jar.pal │ │ ├── pp_max.pal │ │ ├── pp_up.pal │ │ ├── protein.pal │ │ ├── psychic_tm_hm.pal │ │ ├── qualot_berry.pal │ │ ├── question_mark.pal │ │ ├── quick_claw.pal │ │ ├── rabuta_berry.pal │ │ ├── rainbow_pass.pal │ │ ├── rare_candy.pal │ │ ├── rawst_berry.pal │ │ ├── razz_berry.pal │ │ ├── red_apricorn.pal │ │ ├── red_flute.pal │ │ ├── red_orb.pal │ │ ├── red_scarf.pal │ │ ├── red_shard.pal │ │ ├── repeat_ball.pal │ │ ├── repel.pal │ │ ├── retro_mail.pal │ │ ├── return_to_field_arrow.pal │ │ ├── revival_herb.pal │ │ ├── revive.pal │ │ ├── rock_tm_hm.pal │ │ ├── ruby.pal │ │ ├── sacred_ash.pal │ │ ├── safari_ball.pal │ │ ├── salac_berry.pal │ │ ├── sapphire.pal │ │ ├── scanner.pal │ │ ├── scope_lens.pal │ │ ├── sea_incense.pal │ │ ├── secret_key.pal │ │ ├── shadow_mail.pal │ │ ├── sharp_beak.pal │ │ ├── shell.pal │ │ ├── shoal_salt.pal │ │ ├── silk_scarf.pal │ │ ├── silph_scope.pal │ │ ├── silver_powder.pal │ │ ├── sitrus_berry.pal │ │ ├── smoke_ball.pal │ │ ├── soda_pop.pal │ │ ├── soft_sand.pal │ │ ├── soot_sack.pal │ │ ├── soothe_bell.pal │ │ ├── soul_dew.pal │ │ ├── spell_tag.pal │ │ ├── spelon_berry.pal │ │ ├── squirtbottle.pal │ │ ├── ss_ticket.pal │ │ ├── star.pal │ │ ├── starf_berry.pal │ │ ├── steel_tm_hm.pal │ │ ├── stick.pal │ │ ├── sun_stone.pal │ │ ├── super_potion.pal │ │ ├── super_repel.pal │ │ ├── super_rod.pal │ │ ├── tamato_berry.pal │ │ ├── tea.pal │ │ ├── teachy_tv.pal │ │ ├── thick_club.pal │ │ ├── thunder_stone.pal │ │ ├── tm_case.pal │ │ ├── town_map.pal │ │ ├── tri_pass.pal │ │ ├── tropic_mail.pal │ │ ├── twisted_spoon.pal │ │ ├── ultra_ball.pal │ │ ├── up_grade.pal │ │ ├── vs_seeker.pal │ │ ├── wailmer_pail.pal │ │ ├── water_stone.pal │ │ ├── water_tm_hm.pal │ │ ├── watmel_berry.pal │ │ ├── wave_mail.pal │ │ ├── wepear_berry.pal │ │ ├── white_flute.pal │ │ ├── white_herb.pal │ │ ├── wht_apricorn.pal │ │ ├── wiki_berry.pal │ │ ├── wood_mail.pal │ │ ├── x_accuracy.pal │ │ ├── x_attack.pal │ │ ├── x_defend.pal │ │ ├── x_special.pal │ │ ├── x_speed.pal │ │ ├── yellow_flute.pal │ │ ├── yellow_scarf.pal │ │ ├── yellow_shard.pal │ │ ├── ylw_apricorn.pal │ │ └── zinc.pal │ └── icons │ │ ├── acro_bike.png │ │ ├── aguav_berry.png │ │ ├── amulet_coin.png │ │ ├── antidote.png │ │ ├── apicot_berry.png │ │ ├── apricorn.png │ │ ├── aspear_berry.png │ │ ├── aurora_ticket.png │ │ ├── basement_key.png │ │ ├── battle_stat_item.png │ │ ├── bead_mail.png │ │ ├── belue_berry.png │ │ ├── berry_juice.png │ │ ├── berry_pouch.png │ │ ├── bicycle.png │ │ ├── big_mushroom.png │ │ ├── big_pearl.png │ │ ├── bike_voucher.png │ │ ├── black_belt.png │ │ ├── black_glasses.png │ │ ├── blue_card.png │ │ ├── bluk_berry.png │ │ ├── bright_powder.png │ │ ├── card_key.png │ │ ├── charcoal.png │ │ ├── cheri_berry.png │ │ ├── chesto_berry.png │ │ ├── choice_band.png │ │ ├── claw_fossil.png │ │ ├── cleanse_tag.png │ │ ├── coin_case.png │ │ ├── contest_pass.png │ │ ├── cornn_berry.png │ │ ├── deep_sea_scale.png │ │ ├── deep_sea_tooth.png │ │ ├── devon_goods.png │ │ ├── devon_scope.png │ │ ├── dive_ball.png │ │ ├── dome_fossil.png │ │ ├── dragon_fang.png │ │ ├── dragon_scale.png │ │ ├── dream_mail.png │ │ ├── durin_berry.png │ │ ├── egg_ticket.png │ │ ├── energy_root.png │ │ ├── enigma_berry.png │ │ ├── eon_ticket.png │ │ ├── escape_rope.png │ │ ├── ether.png │ │ ├── everstone.png │ │ ├── exp_share.png │ │ ├── fab_mail.png │ │ ├── fame_checker.png │ │ ├── fast_ball.png │ │ ├── figy_berry.png │ │ ├── fire_stone.png │ │ ├── fluffy_tail.png │ │ ├── flute.png │ │ ├── focus_band.png │ │ ├── fresh_water.png │ │ ├── friend_ball.png │ │ ├── full_heal.png │ │ ├── ganlon_berry.png │ │ ├── gb_player.png │ │ ├── gem.png │ │ ├── glitter_mail.png │ │ ├── go_goggles.png │ │ ├── gold_teeth.png │ │ ├── good_rod.png │ │ ├── great_ball.png │ │ ├── grepa_berry.png │ │ ├── harbor_mail.png │ │ ├── hard_stone.png │ │ ├── heart_scale.png │ │ ├── heavy_ball.png │ │ ├── helix_fossil.png │ │ ├── hm.png │ │ ├── hondew_berry.png │ │ ├── hp_up.png │ │ ├── iapapa_berry.png │ │ ├── in_battle_herb.png │ │ ├── itemfinder.png │ │ ├── kelpsy_berry.png │ │ ├── kings_rock.png │ │ ├── lansat_berry.png │ │ ├── large_potion.png │ │ ├── lava_cookie.png │ │ ├── lax_incense.png │ │ ├── leaf_stone.png │ │ ├── leftovers.png │ │ ├── lemonade.png │ │ ├── leppa_berry.png │ │ ├── letter.png │ │ ├── level_ball.png │ │ ├── liechi_berry.png │ │ ├── lift_key.png │ │ ├── light_ball.png │ │ ├── love_ball.png │ │ ├── lucky_egg.png │ │ ├── lucky_punch.png │ │ ├── lum_berry.png │ │ ├── lure_ball.png │ │ ├── luxury_ball.png │ │ ├── mach_bike.png │ │ ├── macho_brace.png │ │ ├── magma_emblem.png │ │ ├── magnet.png │ │ ├── mago_berry.png │ │ ├── magost_berry.png │ │ ├── master_ball.png │ │ ├── max_revive.png │ │ ├── mech_mail.png │ │ ├── metal_coat.png │ │ ├── metal_powder.png │ │ ├── meteorite.png │ │ ├── miracle_seed.png │ │ ├── moomoo_milk.png │ │ ├── moon_ball.png │ │ ├── moon_stone.png │ │ ├── mystery_egg.png │ │ ├── mystic_ticket.png │ │ ├── mystic_water.png │ │ ├── nanab_berry.png │ │ ├── nest_ball.png │ │ ├── net_ball.png │ │ ├── never_melt_ice.png │ │ ├── nomel_berry.png │ │ ├── nugget.png │ │ ├── oaks_parcel.png │ │ ├── old_amber.png │ │ ├── old_rod.png │ │ ├── old_sea_map.png │ │ ├── oran_berry.png │ │ ├── orange_mail.png │ │ ├── orb.png │ │ ├── pamtre_berry.png │ │ ├── park_ball.png │ │ ├── pearl.png │ │ ├── pecha_berry.png │ │ ├── persim_berry.png │ │ ├── petaya_berry.png │ │ ├── pinap_berry.png │ │ ├── poison_barb.png │ │ ├── poke_ball.png │ │ ├── poke_doll.png │ │ ├── poke_flute.png │ │ ├── pokeblock_case.png │ │ ├── pomeg_berry.png │ │ ├── potion.png │ │ ├── powder.png │ │ ├── powder_jar.png │ │ ├── pp_max.png │ │ ├── pp_up.png │ │ ├── premier_ball.png │ │ ├── qualot_berry.png │ │ ├── question_mark.png │ │ ├── quick_claw.png │ │ ├── rabuta_berry.png │ │ ├── rainbow_pass.png │ │ ├── rare_candy.png │ │ ├── rawst_berry.png │ │ ├── razz_berry.png │ │ ├── repeat_ball.png │ │ ├── repel.png │ │ ├── retro_mail.png │ │ ├── return_to_field_arrow.png │ │ ├── revival_herb.png │ │ ├── revive.png │ │ ├── room1_key.png │ │ ├── room2_key.png │ │ ├── room4_key.png │ │ ├── room6_key.png │ │ ├── root_fossil.png │ │ ├── sacred_ash.png │ │ ├── safari_ball.png │ │ ├── salac_berry.png │ │ ├── scanner.png │ │ ├── scarf.png │ │ ├── scope_lens.png │ │ ├── sea_incense.png │ │ ├── secret_key.png │ │ ├── shadow_mail.png │ │ ├── shard.png │ │ ├── sharp_beak.png │ │ ├── shell_bell.png │ │ ├── shoal_shell.png │ │ ├── silk_scarf.png │ │ ├── silph_scope.png │ │ ├── silver_powder.png │ │ ├── sitrus_berry.png │ │ ├── smoke_ball.png │ │ ├── soda_pop.png │ │ ├── soft_sand.png │ │ ├── soot_sack.png │ │ ├── soothe_bell.png │ │ ├── soul_dew.png │ │ ├── spell_tag.png │ │ ├── spelon_berry.png │ │ ├── squirtbottle.png │ │ ├── ss_ticket.png │ │ ├── star_piece.png │ │ ├── stardust.png │ │ ├── starf_berry.png │ │ ├── status_heal.png │ │ ├── stick.png │ │ ├── storage_key.png │ │ ├── sun_stone.png │ │ ├── super_rod.png │ │ ├── tamato_berry.png │ │ ├── tea.png │ │ ├── teachy_tv.png │ │ ├── thick_club.png │ │ ├── thunder_stone.png │ │ ├── timer_ball.png │ │ ├── tiny_mushroom.png │ │ ├── tm.png │ │ ├── tm_case.png │ │ ├── town_map.png │ │ ├── tri_pass.png │ │ ├── tropic_mail.png │ │ ├── twisted_spoon.png │ │ ├── ultra_ball.png │ │ ├── up_grade.png │ │ ├── vitamin.png │ │ ├── vs_seeker.png │ │ ├── wailmer_pail.png │ │ ├── water_stone.png │ │ ├── watmel_berry.png │ │ ├── wave_mail.png │ │ ├── wepear_berry.png │ │ ├── wiki_berry.png │ │ └── wood_mail.png ├── link │ ├── gba.png │ ├── gba_pal2.pal │ ├── minigame_digits.png │ └── minigame_digits2.png ├── link_games │ ├── 321start.png │ ├── 321start_2.png │ ├── berrycrush_background.bin │ ├── berrycrush_btnpress.png │ ├── berrycrush_container_cap.bin │ ├── berrycrush_grinder_base.png │ ├── berrycrush_grinder_top.bin │ ├── berrycrush_misc.pal │ ├── berrycrush_sparkle.png │ ├── berrycrush_timerdigits.png │ ├── dodrioberry_berrysprites.png │ ├── dodrioberry_bg1.bin │ ├── dodrioberry_bg1.pal │ ├── dodrioberry_bg1.png │ ├── dodrioberry_bg2.pal │ ├── dodrioberry_bg2.png │ ├── dodrioberry_bg2left.bin │ ├── dodrioberry_bg2right.bin │ ├── dodrioberry_pkmn.png │ ├── dodrioberry_platform.png │ ├── dodrioberry_shiny.pal │ ├── dodrioberry_status.png │ ├── pkmnjump_bg.bin │ ├── pkmnjump_bg.png │ ├── pkmnjump_pal1.pal │ ├── pkmnjump_pal2.pal │ ├── pkmnjump_pal3.pal │ ├── pkmnjump_results.bin │ ├── pkmnjump_results.png │ ├── pkmnjump_rope1.png │ ├── pkmnjump_rope2.png │ ├── pkmnjump_rope3.png │ ├── pkmnjump_rope4.png │ ├── pkmnjump_star.png │ ├── pkmnjump_venusaur.bin │ └── pkmnjump_venusaur.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 ├── misc │ ├── 8597C1C.pal │ ├── 8597C24.pal │ ├── 85B2890.pal │ ├── 85B28A0.pal │ ├── birch_bag.png │ ├── birch_bag_map.bin │ ├── birch_grass.png │ ├── birch_grass_map.bin │ ├── cave_transition.png │ ├── cave_transition_black.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 │ ├── fossil.png │ ├── hof_monitor_big.png │ ├── hof_monitor_small.png │ ├── interview.pal │ ├── interview_frame.png │ ├── interview_frame_2.png │ ├── interview_frame_green.pal │ ├── interview_frame_orange.pal │ ├── japanese_hof.png │ ├── main_menu_bg.pal │ ├── main_menu_text.pal │ ├── mirage_tower.bin │ ├── mirage_tower.png │ ├── mirage_tower_crumbles.png │ ├── mom_bank_digit_selector_arrow.png │ ├── mon_markings.png │ ├── option_menu.pal │ ├── option_menu_equals_sign.png │ ├── option_menu_text.pal │ ├── pokeball_glow.png │ ├── pokeball_selection.png │ ├── pokecenter_monitor │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ ├── qr │ │ ├── domoreawesomecdupdate.png │ │ └── pokemoncrystaldustcomupdate.png │ ├── reset_rtc_screen_arrow.pal │ ├── reset_rtc_screen_downarrow.png │ ├── reset_rtc_screen_rightarrow.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 ├── oak_speech │ ├── bg0.png │ ├── bg1.pal │ ├── bg2.pal │ ├── gold.pal │ ├── gold.png │ ├── kris.pal │ ├── kris.png │ ├── map.bin │ ├── oak.pal │ ├── oak.png │ └── platform.png ├── object_events │ ├── 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 │ │ ├── 16.pal │ │ ├── 17.pal │ │ ├── 18.pal │ │ ├── 19.pal │ │ ├── 20.pal │ │ ├── 21.pal │ │ ├── 22.pal │ │ ├── 23.pal │ │ ├── 24.pal │ │ ├── 25.pal │ │ ├── 26.pal │ │ ├── 27.pal │ │ ├── 28.pal │ │ ├── 29.pal │ │ ├── 30.pal │ │ ├── 31.pal │ │ ├── 32.pal │ │ ├── 33.pal │ │ ├── 34.pal │ │ ├── 35.pal │ │ ├── 36.pal │ │ └── unused_palette.pal │ └── pics │ │ ├── berry_trees │ │ ├── aguav.png │ │ ├── aspear.png │ │ ├── cheri.png │ │ ├── chesto.png │ │ ├── cornn.png │ │ ├── dirt_pile.png │ │ ├── durin.png │ │ ├── figy.png │ │ ├── grepa.png │ │ ├── hondew.png │ │ ├── iapapa.png │ │ ├── kelpsy.png │ │ ├── lansat.png │ │ ├── leppa.png │ │ ├── liechi.png │ │ ├── lum.png │ │ ├── mago.png │ │ ├── nomel.png │ │ ├── oran.png │ │ ├── pamtre.png │ │ ├── pecha.png │ │ ├── persim.png │ │ ├── pomeg.png │ │ ├── rabuta.png │ │ ├── rawst.png │ │ ├── razz.png │ │ ├── sitrus.png │ │ ├── spelon.png │ │ ├── sprout.png │ │ ├── tamato.png │ │ ├── wepear.png │ │ └── wiki.png │ │ ├── cushions │ │ ├── ball_cushion.png │ │ ├── diamond_cushion.png │ │ ├── fire_cushion.png │ │ ├── grass_cushion.png │ │ ├── kiss_cushion.png │ │ ├── pika_cushion.png │ │ ├── round_cushion.png │ │ ├── spin_cushion.png │ │ ├── water_cushion.png │ │ └── zigzag_cushion.png │ │ ├── dolls │ │ ├── azurill_doll.png │ │ ├── baltoy_doll.png │ │ ├── big_blastoise_doll.png │ │ ├── big_charizard_doll.png │ │ ├── big_lapras_doll.png │ │ ├── big_regice_doll.png │ │ ├── big_regirock_doll.png │ │ ├── big_registeel_doll.png │ │ ├── big_rhydon_doll.png │ │ ├── big_snorlax_doll.png │ │ ├── big_venusaur_doll.png │ │ ├── big_wailmer_doll.png │ │ ├── chikorita_doll.png │ │ ├── clefairy_doll.png │ │ ├── cyndaquil_doll.png │ │ ├── ditto_doll.png │ │ ├── duskull_doll.png │ │ ├── gulpin_doll.png │ │ ├── jigglypuff_doll.png │ │ ├── kecleon_doll.png │ │ ├── lotad_doll.png │ │ ├── marill_doll.png │ │ ├── meowth_doll.png │ │ ├── mudkip_doll.png │ │ ├── pichu_doll.png │ │ ├── pikachu_doll.png │ │ ├── seedot_doll.png │ │ ├── skitty_doll.png │ │ ├── smoochum_doll.png │ │ ├── swablu_doll.png │ │ ├── togepi_doll.png │ │ ├── torchic_doll.png │ │ ├── totodile_doll.png │ │ ├── treecko_doll.png │ │ ├── unused_magnemite_doll.png │ │ ├── unused_natu_doll.png │ │ ├── unused_pikachu_doll.png │ │ ├── unused_porygon2_doll.png │ │ ├── unused_squirtle_doll.png │ │ ├── unused_wooper_doll.png │ │ └── wynaut_doll.png │ │ ├── misc │ │ ├── birchs_bag.png │ │ ├── birth_island_stone.png │ │ ├── breakable_rock.png │ │ ├── cable_car.png │ │ ├── cuttable_tree.png │ │ ├── fossil.png │ │ ├── item_ball.png │ │ ├── moving_box.png │ │ ├── mr_brineys_boat.png │ │ ├── pushable_boulder.png │ │ ├── ss_tidal.png │ │ ├── statue.png │ │ ├── submarine_shadow.png │ │ └── truck.png │ │ ├── people │ │ ├── bill.png │ │ ├── black_belt.png │ │ ├── boy_1.png │ │ ├── boy_2.png │ │ ├── boy_3.png │ │ ├── buena.png │ │ ├── bug_catcher.png │ │ ├── camper.png │ │ ├── contest_judge.png │ │ ├── cook.png │ │ ├── cycling_triathlete_f.png │ │ ├── cycling_triathlete_m.png │ │ ├── elite_four │ │ │ ├── drake.png │ │ │ ├── glacia.png │ │ │ ├── phoebe.png │ │ │ └── sidney.png │ │ ├── emerald_brendan.png │ │ ├── emerald_may.png │ │ ├── fat_man.png │ │ ├── firebreather.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 │ │ ├── gold │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── gym_leaders │ │ │ ├── bugsy.png │ │ │ ├── falkner.png │ │ │ ├── flannery.png │ │ │ ├── juan.png │ │ │ ├── liza.png │ │ │ ├── norman.png │ │ │ ├── tate.png │ │ │ ├── whitney.png │ │ │ └── winona.png │ │ ├── hiker.png │ │ ├── hot_springs_old_woman.png │ │ ├── kris │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── kurt.png │ │ ├── kurt_lying_down.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 │ │ ├── mart_employee.png │ │ ├── mauville_old_man_1.png │ │ ├── mauville_old_man_2.png │ │ ├── mom.png │ │ ├── mr_pokemon.png │ │ ├── mystery_event_deliveryman.png │ │ ├── ninja_boy.png │ │ ├── nurse.png │ │ ├── officer.png │ │ ├── old_man.png │ │ ├── old_woman.png │ │ ├── picnicker.png │ │ ├── pokefan_f.png │ │ ├── pokemaniac.png │ │ ├── prof_elm.png │ │ ├── prof_oak.png │ │ ├── psychic_m.png │ │ ├── quinty_plump.png │ │ ├── red.png │ │ ├── reporter_f.png │ │ ├── reporter_m.png │ │ ├── rich_boy.png │ │ ├── rooftop_sale_woman.png │ │ ├── rs_brendan.png │ │ ├── rs_little_boy.png │ │ ├── rs_may.png │ │ ├── running_triathlete_f.png │ │ ├── running_triathlete_m.png │ │ ├── sage.png │ │ ├── sailor.png │ │ ├── school_kid_m.png │ │ ├── scientist.png │ │ ├── scott.png │ │ ├── silver.png │ │ ├── steven.png │ │ ├── super_nerd.png │ │ ├── swimmer_f.png │ │ ├── swimmer_m.png │ │ ├── teala.png │ │ ├── team_magma │ │ │ ├── magma_member_f.png │ │ │ ├── magma_member_m.png │ │ │ └── maxie.png │ │ ├── team_rocket │ │ │ ├── archie.png │ │ │ ├── rocket_grunt_f.png │ │ │ └── rocket_grunt_m.png │ │ ├── tuber_f.png │ │ ├── tuber_m.png │ │ ├── tuber_m_swimming.png │ │ ├── twin.png │ │ ├── union_room_attendant.png │ │ ├── unused_woman.png │ │ ├── wallace.png │ │ ├── woman_1.png │ │ ├── woman_2.png │ │ ├── woman_3.png │ │ ├── woman_4.png │ │ ├── woman_5.png │ │ └── youngster.png │ │ └── pokemon │ │ ├── butterfree.png │ │ ├── deoxys.png │ │ ├── farfetchd.png │ │ ├── groudon.png │ │ ├── ho_oh.png │ │ ├── jigglypuff.png │ │ ├── kyogre.png │ │ ├── latias_latios.png │ │ ├── lugia.png │ │ ├── machoke.png │ │ ├── marill.png │ │ ├── mew.png │ │ ├── persian.png │ │ ├── pidgey.png │ │ ├── pikachu.png │ │ ├── rattata.png │ │ ├── rayquaza.png │ │ ├── rayquaza_still.png │ │ ├── regi.png │ │ ├── sentret.png │ │ ├── slowpoke.png │ │ ├── slowpoke_tailless.png │ │ ├── sudowoodo.png │ │ └── wooper.png ├── picture_frame │ ├── bg.pal │ ├── frame0.png │ ├── frame0_map.bin │ ├── frame1.png │ ├── frame1_map.bin │ ├── frame2.png │ ├── frame2_map.bin │ ├── frame3.png │ ├── frame3_map.bin │ ├── frame4.png │ ├── frame4_map.bin │ ├── frame5.png │ └── frame5_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 │ ├── area_glow.png │ ├── area_marker.png │ ├── area_unknown.png │ ├── arrows.png │ ├── bg_hoenn.pal │ ├── bg_national.pal │ ├── caught_ball.png │ ├── caught_screen.pal │ ├── cry_meter.png │ ├── cry_meter_map.bin │ ├── cry_meter_needle.png │ ├── cry_screen.bin │ ├── cry_screen_bg.png │ ├── info_screen.bin │ ├── interface.png │ ├── list.bin │ ├── list_underlay.bin │ ├── menu.png │ ├── noball_unused.png │ ├── screen_select_bar_main.bin │ ├── screen_select_bar_submenu.bin │ ├── search_menu.pal │ ├── search_menu.png │ ├── search_menu_hoenn.bin │ ├── search_menu_national.bin │ ├── search_results_bg.pal │ ├── size_screen.bin │ ├── size_silhouette.pal │ ├── start_menu_main.bin │ └── start_menu_search_results.bin ├── pokegear │ ├── background.bin │ ├── bg.pal │ ├── clock.bin │ ├── digits.png │ ├── icons.png │ ├── main.png │ ├── map.bin │ ├── menu_sprites.pal │ ├── phone.bin │ ├── phone_call.png │ ├── phone_call_icon.png │ ├── phone_signal.png │ └── radio.bin ├── pokemon │ ├── abra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── absol │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aerodactyl │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aggron │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aipom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alakazam │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── altaria │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ampharos │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── anorith │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arbok │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arcanine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ariados │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── armaldo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aron │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── articuno │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── azumarill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── azurill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bagon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── baltoy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── banette │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── barboach │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bayleef │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beautifly │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beedrill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beldum │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bellossom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bellsprout │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blastoise │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blaziken │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blissey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── breloom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bulbasaur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── butterfree │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cacnea │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cacturne │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── camerupt │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── carvanha │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cascoon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── castform │ │ ├── anim_front_normal_form.png │ │ ├── anim_front_rainy_form.png │ │ ├── anim_front_snowy_form.png │ │ ├── anim_front_sunny_form.png │ │ ├── back_normal_form.png │ │ ├── back_rainy_form.png │ │ ├── back_snowy_form.png │ │ ├── back_sunny_form.png │ │ ├── footprint.png │ │ ├── front_normal_form.png │ │ ├── front_rainy_form.png │ │ ├── front_snowy_form.png │ │ ├── front_sunny_form.png │ │ ├── icon.png │ │ ├── normal_normal_form.pal │ │ ├── normal_rainy_form.pal │ │ ├── normal_snowy_form.pal │ │ ├── normal_sunny_form.pal │ │ ├── shiny_normal_form.pal │ │ ├── shiny_rainy_form.pal │ │ ├── shiny_snowy_form.pal │ │ └── shiny_sunny_form.pal │ ├── caterpie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── celebi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chansey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charizard │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charmander │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charmeleon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chikorita │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chimecho │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chinchou │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clamperl │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── claydol │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clefable │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clefairy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cleffa │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cloyster │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── combusken │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corphish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corsola │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cradily │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crawdaunt │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crobat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── croconaw │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cubone │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cyndaquil │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── delcatty │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── delibird │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── deoxys │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── icon_speed.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dewgong │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── diglett │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ditto │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dodrio │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── doduo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── donphan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragonair │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragonite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dratini │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drowzee │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dugtrio │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dunsparce │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dusclops │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── duskull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dustox │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── eevee │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── egg │ │ ├── anim_front.png │ │ ├── front.png │ │ ├── icon.png │ │ └── normal.pal │ ├── ekans │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electabuzz │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electrike │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electrode │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── elekid │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── entei │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── espeon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggcute │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggutor │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exploud │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── farfetchd │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── fearow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── feebas │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── feraligatr │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flaaffy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flareon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flygon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── forretress │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── furret │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gardevoir │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gastly │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gengar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── geodude │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── girafarig │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── glalie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gligar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gloom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golbat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── goldeen │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golduck │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golem │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gorebyss │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── granbull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── graveler │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grimer │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── groudon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grovyle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── growlithe │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grumpig │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gulpin │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gyarados │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hariyama │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── haunter │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── heracross │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmonchan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmonlee │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmontop │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ho_oh │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hoothoot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hoppip │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── horsea │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── houndoom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── houndour │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── huntail │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hypno │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── icon_palettes │ │ ├── icon_palette_0.pal │ │ ├── icon_palette_1.pal │ │ └── icon_palette_2.pal │ ├── igglybuff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── illumise │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ivysaur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jigglypuff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jirachi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jolteon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jumpluff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jynx │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kabuto │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kabutops │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kadabra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kakuna │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kangaskhan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kecleon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kingdra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kingler │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kirlia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── koffing │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── krabby │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kyogre │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lairon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lanturn │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lapras │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── larvitar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── latias │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── latios │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ledian │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ledyba │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lickitung │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lileep │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── linoone │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lombre │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lotad │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── loudred │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ludicolo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lugia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lunatone │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── luvdisc │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machamp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machoke │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machop │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magby │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magcargo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magikarp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magmar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magnemite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magneton │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── makuhita │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── manectric │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mankey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mantine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mareep │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marowak │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marshtomp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── masquerain │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mawile │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── medicham │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meditite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meganium │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meowth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── metagross │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── metang │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── metapod │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mew │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mewtwo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mightyena │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── milotic │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── miltank │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── minun │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── misdreavus │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── moltres │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mr_mime │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mudkip │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── muk │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── murkrow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── natu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoking │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoqueen │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoran_f │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoran_m │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidorina │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidorino │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nincada │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ninetales │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ninjask │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── noctowl │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nosepass │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── numel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nuzleaf │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── octillery │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── oddish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── omanyte │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── omastar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── onix │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── paras │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── parasect │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pelipper │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── persian │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── phanpy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pichu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgeot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgeotto │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pikachu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── piloswine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pineco │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pinsir │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── plusle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── politoed │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwag │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwhirl │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwrath │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ponyta │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poochyena │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── porygon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── porygon2 │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── primeape │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── psyduck │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pupitar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── quagsire │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── question_mark │ │ ├── circled │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── double │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ └── icon.png │ ├── quilava │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── qwilfish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raichu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raikou │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ralts │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rapidash │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raticate │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rattata │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rayquaza │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── regice │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── regirock │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── registeel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── relicanth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── remoraid │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rhydon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rhyhorn │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── roselia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sableye │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── salamence │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandshrew │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandslash │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sceptile │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scizor │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scyther │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seadra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seaking │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sealeo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seedot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sentret │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seviper │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sharpedo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shedinja │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shelgon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shellder │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shiftry │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shroomish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shuckle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shuppet │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── silcoon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skarmory │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skiploom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skitty │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slaking │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slakoth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowbro │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowking │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowpoke │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slugma │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── smeargle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── smoochum │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sneasel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snorlax │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snorunt │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snubbull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── solrock │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spearow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spheal │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spinarak │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spinda │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spoink │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── squirtle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── stantler │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── starmie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── staryu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── steelix │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sudowoodo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── suicune │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sunflora │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sunkern │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── surskit │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swablu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swalot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swampert │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swellow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swinub │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── taillow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tangela │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tauros │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── teddiursa │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tentacool │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tentacruel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togepi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togetic │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── torchic │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── torkoal │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── totodile │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── trapinch │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── treecko │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tropius │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── typhlosion │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tyranitar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tyrogue │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── umbreon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── unown │ │ ├── a │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── b │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── c │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── d │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── e │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── exclamation_mark │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── f │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── footprint.png │ │ ├── g │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── h │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── i │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── j │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── k │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── l │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── m │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── n │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── normal.pal │ │ ├── o │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── p │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── q │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── question_mark │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── r │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── s │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── shiny.pal │ │ ├── t │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── u │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── v │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── w │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── x │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── y │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ └── z │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ ├── ursaring │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vaporeon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venomoth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venonat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venusaur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vibrava │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── victreebel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vigoroth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vileplume │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── volbeat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── voltorb │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vulpix │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wailmer │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wailord │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── walrein │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wartortle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weedle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weepinbell │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weezing │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── whiscash │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── whismur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wigglytuff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wingull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wobbuffet │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wooper │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wurmple │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wynaut │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── xatu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── yanma │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zangoose │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zapdos │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zigzagoon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ └── zubat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal ├── pokemon_storage │ ├── aqua_icon.png │ ├── arrow.png │ ├── asterisk_icon.png │ ├── azumarill.bin │ ├── azumarill_bg.png │ ├── beach.bin │ ├── beach_bg.png │ ├── beach_frame.png │ ├── big_asterisk_icon.png │ ├── blank.bin │ ├── blank_bg.png │ ├── block.bin │ ├── block_bg.png │ ├── bolt_icon.png │ ├── box_bg1.pal │ ├── box_selection_popup_center.png │ ├── box_selection_popup_sides.png │ ├── brick_icon.png │ ├── cave.bin │ ├── cave_bg.png │ ├── cave_frame.png │ ├── circle_icon.png │ ├── circles.bin │ ├── circles_bg.png │ ├── city.bin │ ├── city_bg.png │ ├── city_frame.png │ ├── crag.bin │ ├── crag_bg.png │ ├── crag_frame.png │ ├── cross_icon.png │ ├── crystal_icon.png │ ├── desert.bin │ ├── desert_bg.png │ ├── desert_frame.png │ ├── diagonal.bin │ ├── diagonal_bg.png │ ├── diglett_icon.png │ ├── dot_icon.png │ ├── dusclops.bin │ ├── dusclops_bg.png │ ├── five_star_icon.png │ ├── footprint_icon.png │ ├── forest.bin │ ├── forest_bg.png │ ├── forest_frame.png │ ├── four_circles_icon.png │ ├── four_star_icon.png │ ├── frame.bin │ ├── frame_bg.png │ ├── friends_frame1.png │ ├── friends_frame2.png │ ├── hand_cursor.png │ ├── hand_cursor_shadow.png │ ├── heart_icon.png │ ├── horizontal.bin │ ├── horizontal_bg.png │ ├── koffing_icon.png │ ├── latis_icon.png │ ├── legendary.bin │ ├── legendary_bg.png │ ├── line_circle_icon.png │ ├── lotad_icon.png │ ├── ludicolo.bin │ ├── ludicolo_bg.png │ ├── luvdisc_icon.png │ ├── machine.bin │ ├── machine_bg.png │ ├── machine_frame.png │ ├── magma_icon.png │ ├── maze_icon.png │ ├── menu.png │ ├── minun_icon.png │ ├── pichu_icon.png │ ├── pikachu.bin │ ├── pikachu_bg.png │ ├── plain.bin │ ├── plain_bg.png │ ├── plain_frame.png │ ├── plusle_icon.png │ ├── pokeball_icon.png │ ├── pokecenter.bin │ ├── pokecenter2.bin │ ├── pokecenter2_bg.png │ ├── pokecenter_bg.png │ ├── pokecenter_frame.png │ ├── polkadot.bin │ ├── polkadot_bg.png │ ├── polkadot_frame.png │ ├── ribbon.bin │ ├── ribbon_bg.png │ ├── ribbon_frame.pal │ ├── ribbon_icon.png │ ├── river.bin │ ├── river_bg.png │ ├── river_frame.png │ ├── savanna.bin │ ├── savanna_bg.png │ ├── savanna_frame.png │ ├── screen.bin │ ├── screen_bg.png │ ├── scrolling_bg.bin │ ├── scrolling_bg.png │ ├── seafloor.bin │ ├── seafloor_bg.png │ ├── seafloor_frame.png │ ├── sky.bin │ ├── sky_bg.png │ ├── sky_frame.png │ ├── snow.bin │ ├── snow_bg.png │ ├── snow_frame.png │ ├── spinda_icon.png │ ├── star_in_circle_icon.png │ ├── togepi_icon.png │ ├── unknown_frame.png │ ├── volcano.bin │ ├── volcano_bg.png │ ├── volcano_frame.png │ ├── waveform.png │ ├── whiscash.bin │ ├── whiscash_bg.png │ ├── zigzagoon.bin │ └── zigzagoon_bg.png ├── pokenav │ ├── 86226E0.pal │ ├── 8622700.pal │ ├── 8622720.pal │ ├── 8623228.png │ ├── 862323C.bin │ ├── 8623338.pal │ ├── 8623570.pal │ ├── 8623790.pal │ ├── 8624098.pal │ ├── arrow2.png │ ├── arrows_matchcall.png │ ├── bg.bin │ ├── bg.png │ ├── blue_light.png │ ├── city_maps │ │ ├── dewford_0.bin │ │ ├── ever_grande_0.bin │ │ ├── ever_grande_1.bin │ │ ├── fallarbor_0.bin │ │ ├── fortree_0.bin │ │ ├── lavaridge_0.bin │ │ ├── lilycove_0.bin │ │ ├── lilycove_1.bin │ │ ├── littleroot_0.bin │ │ ├── mauville_0.bin │ │ ├── mauville_1.bin │ │ ├── mossdeep_0.bin │ │ ├── mossdeep_1.bin │ │ ├── oldale_0.bin │ │ ├── pacifidlog_0.bin │ │ ├── petalburg_0.bin │ │ ├── rustboro_0.bin │ │ ├── rustboro_1.bin │ │ ├── slateport_0.bin │ │ ├── slateport_1.bin │ │ ├── sootopolis_0.bin │ │ └── verdanturf_0.bin │ ├── city_zoom_text.png │ ├── condition │ │ ├── cancel.pal │ │ ├── cancel.png │ │ ├── graph.bin │ │ ├── graph.png │ │ ├── graph_data.pal │ │ ├── marker.png │ │ ├── pokeball.png │ │ ├── pokeball_placeholder.png │ │ ├── sparkle.png │ │ └── text.pal │ ├── condition_search2.bin │ ├── condition_search2.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 │ ├── 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 │ ├── outline.png │ ├── outline_map.bin │ ├── pokeball_matchcall.pal │ ├── pokeball_matchcall.png │ ├── region_map_info_window.pal │ ├── ribbons.bin │ ├── ribbons.png │ ├── ribbons_icon.png │ ├── ribbons_icon1.pal │ ├── ribbons_icon2.pal │ ├── ribbons_icon3.pal │ ├── ribbons_icon4.pal │ ├── ribbons_icon5.pal │ ├── ribbons_icon_big.png │ ├── ui_matchcall.bin │ ├── ui_matchcall.png │ ├── ui_ribbons.bin │ ├── ui_ribbons.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 ├── region_map │ ├── combined.png │ ├── cursor.png │ ├── dots.png │ ├── fly_target_icon.png │ ├── gold_icon.png │ ├── johto_map.bin │ ├── kanto_map.bin │ ├── kris_icon.png │ ├── map_frame.bin │ ├── map_frame.png │ ├── mapsec_layout_johto_primary.bin │ ├── mapsec_layout_johto_secondary.bin │ ├── mapsec_layout_kanto_primary.bin │ ├── mapsec_layout_kanto_secondary.bin │ ├── region_map.pal │ ├── region_map.png │ ├── region_names.pal │ ├── region_names.png │ ├── region_names_curve.png │ └── town_names.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 ├── ruins_of_alph_puzzle │ ├── aerodactyl_pieces.png │ ├── hooh_pieces.png │ ├── kabuto_pieces.png │ ├── omanyte_pieces.png │ ├── puzzle_background.bin │ ├── puzzle_background.png │ └── puzzle_cursor.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 ├── 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 │ ├── message_box.png │ ├── message_box_sign.png │ ├── text_pal1.pal │ ├── text_pal2.pal │ ├── text_pal3.pal │ ├── text_pal4.pal │ └── thin.png ├── title_screen │ ├── clouds.png │ ├── emblem.bin │ ├── emblem.png │ ├── logo_shine.png │ ├── pokemon_logo.pal │ ├── pokemon_logo.png │ ├── press_start.bin │ ├── press_start.pal │ ├── press_start.png │ ├── rayquaza.bin │ ├── rayquaza.png │ ├── rayquaza_and_clouds.pal │ ├── suicune.png │ ├── title_screen1.bin │ ├── title_screen2.bin │ └── unk_853EF78.pal ├── trade │ ├── black.pal │ ├── buttons.png │ ├── cable_closeup_map.bin │ ├── cable_end.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 │ ├── glow1.png │ ├── glow2.png │ ├── menu.pal │ ├── menu.png │ ├── menu_mon_box.bin │ ├── misc.pal │ ├── moves_box_map.bin │ ├── party_box_map.bin │ ├── pokeball.png │ ├── pokeball_symbol.png │ ├── pokeball_symbol_map.bin │ ├── shadow.pal │ ├── shadow_map.bin │ ├── stripes_bg2_map.bin │ ├── stripes_bg3_map.bin │ ├── text.pal │ ├── unknown_3308C0.pal │ ├── unknown_3379A0.bin │ ├── unknown_338EA4.pal │ ├── unknown_DDB444.pal │ ├── unknown_DDCF04.bin │ ├── wireless_signal.bin │ ├── wireless_signal.png │ ├── wireless_signal_receive.pal │ └── wireless_signal_send.pal ├── trainer_card │ ├── 0star.pal │ ├── 0star_fr.pal │ ├── back.bin │ ├── back_fr.bin │ ├── badges_hoenn.png │ ├── badges_johto.png │ ├── badges_kanto.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 │ └── unknown_56F18C.pal ├── trainers │ ├── back_pics │ │ ├── brendan_back_pic.png │ │ ├── dude_back_pic.png │ │ ├── gold_back_pic.png │ │ ├── kris_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 │ ├── front_pics │ │ ├── aqua_admin_f_front_pic.png │ │ ├── aqua_admin_m_front_pic.png │ │ ├── aqua_leader_archie_front_pic.png │ │ ├── arena_tycoon_greta_front_pic.png │ │ ├── aroma_lady_front_pic.png │ │ ├── battle_girl_front_pic.png │ │ ├── beauty_front_pic.png │ │ ├── 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 │ │ ├── cool_trainer_f_front_pic.png │ │ ├── cool_trainer_m_front_pic.png │ │ ├── cycling_triathlete_f_front_pic.png │ │ ├── cycling_triathlete_m_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 │ │ ├── emerald_brendan_front_pic.png │ │ ├── emerald_may_front_pic.png │ │ ├── expert_f_front_pic.png │ │ ├── factory_head_noland_front_pic.png │ │ ├── firebreather_front_pic.png │ │ ├── fisherman_front_pic.png │ │ ├── gentleman_front_pic.png │ │ ├── gold_front_pic.png │ │ ├── guitarist_front_pic.png │ │ ├── hex_maniac_front_pic.png │ │ ├── hiker_front_pic.png │ │ ├── juggler_front_pic.png │ │ ├── kindler_front_pic.png │ │ ├── kris_front_pic.png │ │ ├── lady_front_pic.png │ │ ├── lass_front_pic.png │ │ ├── leader_bugsy_front_pic.png │ │ ├── leader_falkner_front_pic.png │ │ ├── leader_flannery_front_pic.png │ │ ├── leader_juan_front_pic.png │ │ ├── leader_norman_front_pic.png │ │ ├── leader_tate_and_liza_front_pic.png │ │ ├── leader_whitney_front_pic.png │ │ ├── leader_winona_front_pic.png │ │ ├── leaf_front_pic.png │ │ ├── magma_admin_front_pic.png │ │ ├── magma_grunt_f_front_pic.png │ │ ├── magma_leader_maxie_front_pic.png │ │ ├── may_front_pic.png │ │ ├── ninja_boy_front_pic.png │ │ ├── officer_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_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 │ │ ├── rival_front_pic.png │ │ ├── rocket_grunt_f_front_pic.png │ │ ├── rocket_grunt_m_front_pic.png │ │ ├── ruby_sapphire_brendan_front_pic.png │ │ ├── ruby_sapphire_may_front_pic.png │ │ ├── ruin_maniac_front_pic.png │ │ ├── running_triathlete_f_front_pic.png │ │ ├── running_triathlete_m_front_pic.png │ │ ├── sage_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 │ │ ├── super_nerd_front_pic.png │ │ ├── swimmer_f_front_pic.png │ │ ├── swimmer_m_front_pic.png │ │ ├── swimming_triathlete_f_front_pic.png │ │ ├── swimming_triathlete_m_front_pic.png │ │ ├── tuber_f_front_pic.png │ │ ├── tuber_m_front_pic.png │ │ ├── twins_front_pic.png │ │ ├── young_couple_front_pic.png │ │ └── youngster_front_pic.png │ └── palettes │ │ ├── aqua_admin_f.pal │ │ ├── aqua_admin_m.pal │ │ ├── aqua_leader_archie.pal │ │ ├── arena_tycoon_greta.pal │ │ ├── aroma_lady.pal │ │ ├── battle_girl.pal │ │ ├── beauty.pal │ │ ├── bird_keeper.pal │ │ ├── black_belt.pal │ │ ├── bug_catcher.pal │ │ ├── bug_maniac.pal │ │ ├── camper.pal │ │ ├── champion_wallace.pal │ │ ├── cool_trainer_f.pal │ │ ├── cool_trainer_m.pal │ │ ├── cycling_triathlete_f.pal │ │ ├── cycling_triathlete_m.pal │ │ ├── dome_ace_tucker.pal │ │ ├── dragon_tamer.pal │ │ ├── dude_back_pic.pal │ │ ├── elite_four_drake.pal │ │ ├── elite_four_glacia.pal │ │ ├── elite_four_phoebe.pal │ │ ├── elite_four_sidney.pal │ │ ├── emerald_brendan.pal │ │ ├── emerald_may.pal │ │ ├── expert_f.pal │ │ ├── factory_head_noland.pal │ │ ├── firebreather.pal │ │ ├── fisherman.pal │ │ ├── gentleman.pal │ │ ├── gold.pal │ │ ├── gold_back_pic.pal │ │ ├── guitarist.pal │ │ ├── hex_maniac.pal │ │ ├── hiker.pal │ │ ├── juggler.pal │ │ ├── kindler.pal │ │ ├── kris.pal │ │ ├── kris_back_pic.pal │ │ ├── lady.pal │ │ ├── lass.pal │ │ ├── leader_bugsy.pal │ │ ├── leader_falkner.pal │ │ ├── leader_flannery.pal │ │ ├── leader_juan.pal │ │ ├── leader_norman.pal │ │ ├── leader_roxanne.pal │ │ ├── leader_tate_and_liza.pal │ │ ├── leader_whitney.pal │ │ ├── leader_winona.pal │ │ ├── leaf.pal │ │ ├── leaf_back_pic.pal │ │ ├── magma_admin.pal │ │ ├── magma_grunt_f.pal │ │ ├── magma_leader_maxie.pal │ │ ├── ninja_boy.pal │ │ ├── officer.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_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 │ │ ├── rival.pal │ │ ├── rocket_grunt_f.pal │ │ ├── rocket_grunt_m.pal │ │ ├── ruby_sapphire_brendan.pal │ │ ├── ruby_sapphire_may.pal │ │ ├── ruin_maniac.pal │ │ ├── running_triathlete_f.pal │ │ ├── running_triathlete_m.pal │ │ ├── sage.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 │ │ ├── super_nerd.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 │ ├── fight.png │ ├── fire.png │ ├── flying.png │ ├── ghost.png │ ├── grass.png │ ├── ground.png │ ├── ice.png │ ├── move_types_1.pal │ ├── move_types_2.pal │ ├── move_types_3.pal │ ├── mystery.png │ ├── normal.png │ ├── poison.png │ ├── psychic.png │ ├── rock.png │ ├── steel.png │ └── water.png ├── union_room_chat │ ├── background.bin │ ├── background.png │ ├── border.bin │ ├── border.png │ ├── interface.pal │ ├── keyboard_cursor.png │ ├── r_button.png │ ├── r_button_labels.png │ ├── text_entry_arrow.png │ ├── text_entry_cursor.png │ ├── unk_palette1.pal │ ├── unk_palette2.pal │ ├── window_1.pal │ └── window_2.pal ├── unknown │ ├── unknown_57173C.pal │ ├── unknown_572280.pal │ ├── unknown_5722A0.bin │ ├── unknown_5723DC.pal │ ├── unknown_5723FC.pal │ ├── unknown_57241C.pal │ ├── unknown_57243C.pal │ ├── unknown_5726F4.pal │ ├── unknown_58D6B0.pal │ ├── unknown_58D6D0.png │ ├── unknown_593C80.png │ ├── unknown_593FFC.bin │ ├── unknown_5B3484.png │ ├── unknown_5B3564.bin │ ├── unknown_60F13C.pal │ ├── unknown_60F15C.pal │ ├── unknown_60F17C.pal │ ├── unknown_60F1BC.png │ ├── unknown_60F3BC.png │ ├── unknown_60F43C.png │ ├── unknown_60F53C.png │ ├── unknown_60F63C.png │ ├── unknown_60F6BC.png │ ├── unknown_60F7BC.png │ ├── unknown_60F83C.png │ ├── unknown_60F93C.png │ ├── unknown_60FA3C.png │ ├── unknown_61023C.bin │ ├── unknown_61033C.png │ ├── unknown_61039C.pal │ ├── unknown_61046C.pal │ ├── unknown_85CE55C.pal │ ├── 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_D8C374.bin │ ├── unknown_D8C5C4.bin │ ├── unknown_D9AF44.pal │ ├── unknown_DD36C8.bin │ └── 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 │ ├── 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 │ ├── tilemap_5773C4.bin │ ├── unknown_5726B4.pal │ ├── unused_DDCEE4.bin │ ├── water_splash.bin │ ├── water_splash.png │ └── yellow_frame.bin ├── wallclock │ ├── setclock.bin │ └── setclock.png ├── weather │ ├── 0.pal │ ├── 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_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_script_commands.h ├── battle_ai_switch_items.h ├── battle_anim.h ├── battle_arena.h ├── battle_bg.h ├── battle_controllers.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 ├── buenas_password.h ├── bug_catching_contest.h ├── cable_club.h ├── card_flip.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_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 │ ├── day_night.h │ ├── daycare.h │ ├── decorations.h │ ├── easy_chat.h │ ├── event_bg.h │ ├── event_object_movement.h │ ├── event_objects.h │ ├── field_effects.h │ ├── field_poison.h │ ├── field_specials.h │ ├── field_tasks.h │ ├── field_weather.h │ ├── flags.h │ ├── frontier_util.h │ ├── fruit_trees.h │ ├── game_stat.h │ ├── global.h │ ├── heal_locations.h │ ├── hold_effects.h │ ├── item.h │ ├── item_effects.h │ ├── items.h │ ├── layouts.h │ ├── lilycove_lady.h │ ├── map_groups.h │ ├── map_scripts.h │ ├── map_types.h │ ├── maps.h │ ├── mauville_old_man.h │ ├── metatile_behaviors.h │ ├── metatile_labels.h │ ├── mevent.h │ ├── moves.h │ ├── opponents.h │ ├── party_menu.h │ ├── phone_contact.h │ ├── pokemon.h │ ├── radio.h │ ├── region_map_sections.h │ ├── rgb.h │ ├── roulette.h │ ├── script_menu.h │ ├── secret_bases.h │ ├── slot_machine.h │ ├── songs.h │ ├── species.h │ ├── text.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 ├── day_night.h ├── daycare.h ├── debug.h ├── decompress.h ├── decoration.h ├── decoration_inventory.h ├── dewford_trend.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 ├── fruit_tree.h ├── game_build.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 ├── gbs.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_pc.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 ├── 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 ├── overworld.h ├── palette.h ├── palette_util.h ├── party_menu.h ├── pc_screen_effect.h ├── phone_contact.h ├── phone_script.h ├── phone_scripts.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 ├── pokegear.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 ├── radio.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 ├── roamer.h ├── rotating_gate.h ├── rotating_tile_puzzle.h ├── roulette.h ├── rtc.h ├── ruins_of_alph_puzzle.h ├── safari_zone.h ├── save.h ├── save_location.h ├── scanline_effect.h ├── script.h ├── script_menu.h ├── script_movement.h ├── script_pokemon_util.h ├── secret_base.h ├── shop.h ├── siirtc.h ├── slot_machine.h ├── sound.h ├── start_menu.h ├── starter_choose.h ├── strings.h ├── task.h ├── text_window.h ├── tileset_anims.h ├── tilesets.h ├── time_events.h ├── title_screen.h ├── trade.h ├── trader.h ├── trainer_card.h ├── trainer_hill.h ├── trainer_pokemon_sprites.h ├── trainer_see.h ├── trig.h ├── tv.h ├── union_room.h ├── union_room_battle.h ├── union_room_chat.h ├── union_room_player_avatar.h ├── util.h ├── walda_phrase.h ├── wallclock.h └── wild_encounter.h ├── json_data_rules.mk ├── ld_script.txt ├── ld_script_modern.txt ├── libagbsyscall ├── Makefile └── libagbsyscall.s ├── map_data_rules.mk ├── mapadder.py ├── other ├── Beta 2 saves │ ├── Drunk 8 badges.sav │ ├── IloudNoize77 post game.sav │ ├── Lunos Olivine 4 badges.sav │ ├── X4vv after_league.sav │ └── X4vv mid_game.sav ├── Brendan_Emerald2_SDH.png ├── Brendan_Emerald3_SDH.png ├── Brendan_Ruby.png ├── C_-_Battle_Vs_Gym_Leader_-_Kanto_-_FRLG_Style_1.mp3 ├── CrystalDust boxart_oldlogo.jpg ├── DMA presents.psd ├── Gym_Wall_Icons.png ├── Kerssey Fanfares │ ├── evolvejingleII.mid │ ├── gscapturefanfare.mid │ ├── gsitemobtained.mid │ ├── gskeyitem.mid │ ├── gspokemonevolved.mid │ ├── gspokemontraded.mid │ ├── gsrecovery.mid │ └── gstmfound.mid ├── Maps │ ├── AzaleaTown.png │ ├── CherrygroveCity.png │ ├── DarkCave_South.png │ ├── GoldenrodCity.png │ ├── GoldenrodCity_GameCorner.png │ ├── IlexForest.png │ ├── NationalPark.png │ ├── NewBarkTown.png │ ├── Route29.png │ ├── Route30.png │ ├── Route31.png │ ├── Route32.png │ ├── Route33.png │ ├── Route34.png │ ├── Route35.png │ ├── Route36.png │ ├── Route46.png │ ├── RuinsOfAlph_Outside.png │ ├── SlowpokeWell_B1F.png │ └── UnionCave_1F.png ├── May_Emerald2_sdh.png ├── New CD logo.ai ├── New CD logo.png ├── Pokedex WIP │ ├── Pokemon_CD_Pokedex_redo.png │ ├── Pokemon_CD_Pokedex_reskin.png │ ├── Pokemon_CD_Pokedex_reskin2.png │ └── pokedexwip.png ├── PokemonOWSprites │ ├── Gen1 │ │ ├── Day 1 │ │ │ ├── Gen1-1.png │ │ │ ├── Gen1-4.png │ │ │ ├── gen1-2.png │ │ │ └── gen1-3.png │ │ ├── Day 2 │ │ │ ├── Gen1-5.png │ │ │ ├── gen1-6.png │ │ │ ├── gen1-7.png │ │ │ └── gen1-8.png │ │ ├── Day 3 │ │ │ ├── gen1-10.png │ │ │ ├── gen1-11.png │ │ │ ├── gen1-12.png │ │ │ └── gen1-9.png │ │ ├── Day 4-7 │ │ │ ├── gen1-13.png │ │ │ ├── gen1-14.png │ │ │ ├── gen1-15.png │ │ │ └── gen1-16.png │ │ ├── Day 8-10 │ │ │ ├── gen1-17.png │ │ │ ├── gen1-18.png │ │ │ ├── gen1-19.png │ │ │ └── gen1-20.png │ │ └── Gen1.png │ ├── Gen2-alt.png │ ├── Gen2 │ │ ├── Day1-3 │ │ │ ├── Gen2-1.png │ │ │ ├── Gen2-2.png │ │ │ ├── Gen2-3.png │ │ │ └── Gen2-4.png │ │ └── Day3-6 │ │ │ ├── Gen2-5.png │ │ │ ├── Gen2-6.png │ │ │ └── Gen2-7.png │ ├── Gen3.png │ └── ReadMe.txt ├── Pond reflection levels.alv ├── Progress Stuff │ ├── AzaleaTown-old.png │ ├── AzaleaTown.png │ ├── AzaleaTown2.png │ ├── AzaleaTown_Gym.png │ ├── CDintro.mp4 │ ├── CherrygroveCity.png │ ├── CrystalDust-1.png │ ├── CrystalDust-10.png │ ├── CrystalDust-100.png │ ├── CrystalDust-101.png │ ├── CrystalDust-102.png │ ├── CrystalDust-103.png │ ├── CrystalDust-104.png │ ├── CrystalDust-105.png │ ├── CrystalDust-106.png │ ├── CrystalDust-107.png │ ├── CrystalDust-108.png │ ├── CrystalDust-109.png │ ├── CrystalDust-11.png │ ├── CrystalDust-110.png │ ├── CrystalDust-111.png │ ├── CrystalDust-112.png │ ├── CrystalDust-113.png │ ├── CrystalDust-114.png │ ├── CrystalDust-115.png │ ├── CrystalDust-116.png │ ├── CrystalDust-117.png │ ├── CrystalDust-118.png │ ├── CrystalDust-119.png │ ├── CrystalDust-12.png │ ├── CrystalDust-120.png │ ├── CrystalDust-13.png │ ├── CrystalDust-14.png │ ├── CrystalDust-15.png │ ├── CrystalDust-16.png │ ├── CrystalDust-17.png │ ├── CrystalDust-18.png │ ├── CrystalDust-19.png │ ├── CrystalDust-2.png │ ├── CrystalDust-20.png │ ├── CrystalDust-21.png │ ├── CrystalDust-22.png │ ├── CrystalDust-23.png │ ├── CrystalDust-24.png │ ├── CrystalDust-25.png │ ├── CrystalDust-26.png │ ├── CrystalDust-27.png │ ├── CrystalDust-28.png │ ├── CrystalDust-29.png │ ├── CrystalDust-3.png │ ├── CrystalDust-30.png │ ├── CrystalDust-31.png │ ├── CrystalDust-32.png │ ├── CrystalDust-33.png │ ├── CrystalDust-34.png │ ├── CrystalDust-35.png │ ├── CrystalDust-36.png │ ├── CrystalDust-37.png │ ├── CrystalDust-38.png │ ├── CrystalDust-39.png │ ├── CrystalDust-4.png │ ├── CrystalDust-40.png │ ├── CrystalDust-41.png │ ├── CrystalDust-42.png │ ├── CrystalDust-43.png │ ├── CrystalDust-44.png │ ├── CrystalDust-45.png │ ├── CrystalDust-46.png │ ├── CrystalDust-47.png │ ├── CrystalDust-48.png │ ├── CrystalDust-49.png │ ├── CrystalDust-5.png │ ├── CrystalDust-50.png │ ├── CrystalDust-51.png │ ├── CrystalDust-52.png │ ├── CrystalDust-53.png │ ├── CrystalDust-54.png │ ├── CrystalDust-55.png │ ├── CrystalDust-56.png │ ├── CrystalDust-57.png │ ├── CrystalDust-58.png │ ├── CrystalDust-59.png │ ├── CrystalDust-6.png │ ├── CrystalDust-60.png │ ├── CrystalDust-61.png │ ├── CrystalDust-62.png │ ├── CrystalDust-63.png │ ├── CrystalDust-64.png │ ├── CrystalDust-65.png │ ├── CrystalDust-66.png │ ├── CrystalDust-67.png │ ├── CrystalDust-68.png │ ├── CrystalDust-69.png │ ├── CrystalDust-7.png │ ├── CrystalDust-70.png │ ├── CrystalDust-71.png │ ├── CrystalDust-72.png │ ├── CrystalDust-73.png │ ├── CrystalDust-74.png │ ├── CrystalDust-75.png │ ├── CrystalDust-76.png │ ├── CrystalDust-77.png │ ├── CrystalDust-78.png │ ├── CrystalDust-79.png │ ├── CrystalDust-8.png │ ├── CrystalDust-80.png │ ├── CrystalDust-81.png │ ├── CrystalDust-82.png │ ├── CrystalDust-83.png │ ├── CrystalDust-84.png │ ├── CrystalDust-85.png │ ├── CrystalDust-86.png │ ├── CrystalDust-87.png │ ├── CrystalDust-88.png │ ├── CrystalDust-89.png │ ├── CrystalDust-9.png │ ├── CrystalDust-90.png │ ├── CrystalDust-91.png │ ├── CrystalDust-92.png │ ├── CrystalDust-93.png │ ├── CrystalDust-94.png │ ├── CrystalDust-95.png │ ├── CrystalDust-96.png │ ├── CrystalDust-97.png │ ├── CrystalDust-98.png │ ├── CrystalDust-99.png │ ├── GB Player test.mp4 │ ├── GoldenrodCity.png │ ├── GoldenrodCity_2.png │ ├── GoldenrodCity_GameCorner.png │ ├── GoldenrodCity_Gym.png │ ├── GoldenrodCity_PokemonCenter_1F.png │ ├── NationalPark.png │ ├── NationalPark2.png │ ├── NewBarkTown_PlayersHouse_1F.png │ ├── RadioTower_2F.png │ ├── RadioTower_2F_obj.png │ ├── Route29glitched.png │ ├── Route29v1.png │ ├── Route29v2.png │ ├── Route30v1.png │ ├── Route30v2.png │ ├── Route31.png │ ├── Route32-DiegosDesktop.png │ ├── Route32.png │ ├── Route33.png │ ├── Route34-2.png │ ├── Route34-3.png │ ├── Route34.png │ ├── Route36.png │ ├── RuinsOfAlph_Outside.png │ ├── SlowpokeWell_B1F.png │ ├── SproutTower_3F.png │ ├── Stitch_From_GoldenrodCity.png │ ├── Stitch_From_NewBarkTown.png │ ├── Stitch_From_Route32.png │ ├── Stitch_From_Route34.png │ ├── Stitch_From_Route46.png │ ├── Stitch_From_RustboroCity.png │ ├── VIOLET CITY.png │ ├── VioletCity.png │ ├── cdtitle.png │ ├── dittointro.mp4 │ ├── kris.mp4 │ ├── merry_christmas.gif │ ├── name border test.psd │ ├── new gold ow demo 2.gif │ ├── new gold ow demo.gif │ ├── new rival thing.mp4 │ ├── new_time_cycle.mp4 │ ├── open_sesame.mp4 │ ├── pokegear concept.png │ ├── presents.mp4 │ ├── proof.gif │ ├── rival encounter test.mp4 │ ├── scanline.mp4 │ ├── scrolling main menu.gif │ ├── sign signs signs.mp4 │ ├── smooth.mp4 │ ├── stairs are hard.mp4 │ ├── time_of_day_old.gif │ ├── title.psd │ ├── unowntest.mp4 │ ├── vvvvvv.mp4 │ └── zoom goes the textbox.mp4 ├── Suicunes │ ├── WIPColoredDesignV2Take_1.png │ ├── WIPColoredDesignV2Take_2.png │ ├── WIPColoredDesignV2Take_3.png │ ├── WIPColoredDesignV2Take_4.png │ └── WIPColoredDesignV2Take_5.png ├── apricorn.png ├── badges.png ├── battle_terrain.png ├── brendan_may_sdh.png ├── credits.txt ├── frlg_hoenn_wild.mid ├── ladder2-jj_olli.png ├── lance-SDH.PNG ├── misc info.txt ├── mus_rg_load01_new.mid ├── pallettown.mid ├── qrcode.png ├── trainers1_mementorory.png ├── trainers2_mementorory.png └── trainers3_mementorory.png ├── overworld_ripper.py ├── porymap.project.cfg ├── poryscript_clean.py ├── release_builds.py ├── 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 │ │ ├── abra.aif │ │ ├── absol.aif │ │ ├── aerodactyl.aif │ │ ├── aggron.aif │ │ ├── aipom.aif │ │ ├── alakazam.aif │ │ ├── altaria.aif │ │ ├── ampharos.aif │ │ ├── anorith.aif │ │ ├── arbok.aif │ │ ├── arcanine.aif │ │ ├── ariados.aif │ │ ├── armaldo.aif │ │ ├── aron.aif │ │ ├── articuno.aif │ │ ├── azumarill.aif │ │ ├── azurill.aif │ │ ├── bagon.aif │ │ ├── baltoy.aif │ │ ├── banette.aif │ │ ├── barboach.aif │ │ ├── bayleef.aif │ │ ├── beautifly.aif │ │ ├── beedrill.aif │ │ ├── beldum.aif │ │ ├── bellossom.aif │ │ ├── bellsprout.aif │ │ ├── blastoise.aif │ │ ├── blaziken.aif │ │ ├── blissey.aif │ │ ├── breloom.aif │ │ ├── bulbasaur.aif │ │ ├── butterfree.aif │ │ ├── cacnea.aif │ │ ├── cacturne.aif │ │ ├── camerupt.aif │ │ ├── carvanha.aif │ │ ├── cascoon.aif │ │ ├── castform.aif │ │ ├── caterpie.aif │ │ ├── celebi.aif │ │ ├── chansey.aif │ │ ├── charizard.aif │ │ ├── charmander.aif │ │ ├── charmeleon.aif │ │ ├── chikorita.aif │ │ ├── chimecho.aif │ │ ├── chinchou.aif │ │ ├── clamperl.aif │ │ ├── claydol.aif │ │ ├── clefable.aif │ │ ├── clefairy.aif │ │ ├── cleffa.aif │ │ ├── cloyster.aif │ │ ├── combusken.aif │ │ ├── corphish.aif │ │ ├── corsola.aif │ │ ├── cradily.aif │ │ ├── crawdaunt.aif │ │ ├── crobat.aif │ │ ├── croconaw.aif │ │ ├── cubone.aif │ │ ├── cyndaquil.aif │ │ ├── delcatty.aif │ │ ├── delibird.aif │ │ ├── deoxys.aif │ │ ├── dewgong.aif │ │ ├── diglett.aif │ │ ├── ditto.aif │ │ ├── dodrio.aif │ │ ├── doduo.aif │ │ ├── donphan.aif │ │ ├── dragonair.aif │ │ ├── dragonite.aif │ │ ├── dratini.aif │ │ ├── drowzee.aif │ │ ├── dugtrio.aif │ │ ├── dunsparce.aif │ │ ├── dusclops.aif │ │ ├── duskull.aif │ │ ├── dustox.aif │ │ ├── eevee.aif │ │ ├── ekans.aif │ │ ├── electabuzz.aif │ │ ├── electrike.aif │ │ ├── electrode.aif │ │ ├── elekid.aif │ │ ├── entei.aif │ │ ├── espeon.aif │ │ ├── exeggcute.aif │ │ ├── exeggutor.aif │ │ ├── exploud.aif │ │ ├── farfetchd.aif │ │ ├── fearow.aif │ │ ├── feebas.aif │ │ ├── feraligatr.aif │ │ ├── flaaffy.aif │ │ ├── flareon.aif │ │ ├── flygon.aif │ │ ├── forretress.aif │ │ ├── furret.aif │ │ ├── gardevoir.aif │ │ ├── gastly.aif │ │ ├── gengar.aif │ │ ├── geodude.aif │ │ ├── girafarig.aif │ │ ├── glalie.aif │ │ ├── gligar.aif │ │ ├── gloom.aif │ │ ├── golbat.aif │ │ ├── goldeen.aif │ │ ├── golduck.aif │ │ ├── golem.aif │ │ ├── gorebyss.aif │ │ ├── granbull.aif │ │ ├── graveler.aif │ │ ├── grimer.aif │ │ ├── groudon.aif │ │ ├── grovyle.aif │ │ ├── growlithe.aif │ │ ├── grumpig.aif │ │ ├── gulpin.aif │ │ ├── gyarados.aif │ │ ├── hariyama.aif │ │ ├── haunter.aif │ │ ├── heracross.aif │ │ ├── hitmonchan.aif │ │ ├── hitmonlee.aif │ │ ├── hitmontop.aif │ │ ├── ho_oh.aif │ │ ├── hoothoot.aif │ │ ├── hoppip.aif │ │ ├── horsea.aif │ │ ├── houndoom.aif │ │ ├── houndour.aif │ │ ├── huntail.aif │ │ ├── hypno.aif │ │ ├── igglybuff.aif │ │ ├── illumise.aif │ │ ├── ivysaur.aif │ │ ├── jigglypuff.aif │ │ ├── jirachi.aif │ │ ├── jolteon.aif │ │ ├── jumpluff.aif │ │ ├── jynx.aif │ │ ├── kabuto.aif │ │ ├── kabutops.aif │ │ ├── kadabra.aif │ │ ├── kakuna.aif │ │ ├── kangaskhan.aif │ │ ├── kecleon.aif │ │ ├── kingdra.aif │ │ ├── kingler.aif │ │ ├── kirlia.aif │ │ ├── koffing.aif │ │ ├── krabby.aif │ │ ├── kyogre.aif │ │ ├── lairon.aif │ │ ├── lanturn.aif │ │ ├── lapras.aif │ │ ├── larvitar.aif │ │ ├── latias.aif │ │ ├── latios.aif │ │ ├── ledian.aif │ │ ├── ledyba.aif │ │ ├── lickitung.aif │ │ ├── lileep.aif │ │ ├── linoone.aif │ │ ├── lombre.aif │ │ ├── lotad.aif │ │ ├── loudred.aif │ │ ├── ludicolo.aif │ │ ├── lugia.aif │ │ ├── lunatone.aif │ │ ├── luvdisc.aif │ │ ├── machamp.aif │ │ ├── machoke.aif │ │ ├── machop.aif │ │ ├── magby.aif │ │ ├── magcargo.aif │ │ ├── magikarp.aif │ │ ├── magmar.aif │ │ ├── magnemite.aif │ │ ├── magneton.aif │ │ ├── makuhita.aif │ │ ├── manectric.aif │ │ ├── mankey.aif │ │ ├── mantine.aif │ │ ├── mareep.aif │ │ ├── marill.aif │ │ ├── marowak.aif │ │ ├── marshtomp.aif │ │ ├── masquerain.aif │ │ ├── mawile.aif │ │ ├── medicham.aif │ │ ├── meditite.aif │ │ ├── meganium.aif │ │ ├── meowth.aif │ │ ├── metagross.aif │ │ ├── metang.aif │ │ ├── metapod.aif │ │ ├── mew.aif │ │ ├── mewtwo.aif │ │ ├── mightyena.aif │ │ ├── milotic.aif │ │ ├── miltank.aif │ │ ├── minun.aif │ │ ├── misdreavus.aif │ │ ├── moltres.aif │ │ ├── mr_mime.aif │ │ ├── mudkip.aif │ │ ├── muk.aif │ │ ├── murkrow.aif │ │ ├── natu.aif │ │ ├── nidoking.aif │ │ ├── nidoqueen.aif │ │ ├── nidoran_f.aif │ │ ├── nidoran_m.aif │ │ ├── nidorina.aif │ │ ├── nidorino.aif │ │ ├── nincada.aif │ │ ├── ninetales.aif │ │ ├── ninjask.aif │ │ ├── noctowl.aif │ │ ├── nosepass.aif │ │ ├── numel.aif │ │ ├── nuzleaf.aif │ │ ├── octillery.aif │ │ ├── oddish.aif │ │ ├── omanyte.aif │ │ ├── omastar.aif │ │ ├── onix.aif │ │ ├── paras.aif │ │ ├── parasect.aif │ │ ├── pelipper.aif │ │ ├── persian.aif │ │ ├── phanpy.aif │ │ ├── pichu.aif │ │ ├── pidgeot.aif │ │ ├── pidgeotto.aif │ │ ├── pidgey.aif │ │ ├── pikachu.aif │ │ ├── piloswine.aif │ │ ├── pineco.aif │ │ ├── pinsir.aif │ │ ├── plusle.aif │ │ ├── politoed.aif │ │ ├── poliwag.aif │ │ ├── poliwhirl.aif │ │ ├── poliwrath.aif │ │ ├── ponyta.aif │ │ ├── poochyena.aif │ │ ├── porygon.aif │ │ ├── porygon2.aif │ │ ├── primeape.aif │ │ ├── psyduck.aif │ │ ├── pupitar.aif │ │ ├── quagsire.aif │ │ ├── quilava.aif │ │ ├── qwilfish.aif │ │ ├── raichu.aif │ │ ├── raikou.aif │ │ ├── ralts.aif │ │ ├── rapidash.aif │ │ ├── raticate.aif │ │ ├── rattata.aif │ │ ├── rayquaza.aif │ │ ├── regice.aif │ │ ├── regirock.aif │ │ ├── registeel.aif │ │ ├── relicanth.aif │ │ ├── remoraid.aif │ │ ├── rhydon.aif │ │ ├── rhyhorn.aif │ │ ├── roselia.aif │ │ ├── sableye.aif │ │ ├── salamence.aif │ │ ├── sandshrew.aif │ │ ├── sandslash.aif │ │ ├── sceptile.aif │ │ ├── scizor.aif │ │ ├── scyther.aif │ │ ├── seadra.aif │ │ ├── seaking.aif │ │ ├── sealeo.aif │ │ ├── seedot.aif │ │ ├── seel.aif │ │ ├── sentret.aif │ │ ├── seviper.aif │ │ ├── sharpedo.aif │ │ ├── shedinja.aif │ │ ├── shelgon.aif │ │ ├── shellder.aif │ │ ├── shiftry.aif │ │ ├── shroomish.aif │ │ ├── shuckle.aif │ │ ├── shuppet.aif │ │ ├── silcoon.aif │ │ ├── skarmory.aif │ │ ├── skiploom.aif │ │ ├── skitty.aif │ │ ├── slaking.aif │ │ ├── slakoth.aif │ │ ├── slowbro.aif │ │ ├── slowking.aif │ │ ├── slowpoke.aif │ │ ├── slugma.aif │ │ ├── smeargle.aif │ │ ├── smoochum.aif │ │ ├── sneasel.aif │ │ ├── snorlax.aif │ │ ├── snorunt.aif │ │ ├── snubbull.aif │ │ ├── solrock.aif │ │ ├── spearow.aif │ │ ├── spheal.aif │ │ ├── spinarak.aif │ │ ├── spinda.aif │ │ ├── spoink.aif │ │ ├── squirtle.aif │ │ ├── stantler.aif │ │ ├── starmie.aif │ │ ├── staryu.aif │ │ ├── steelix.aif │ │ ├── sudowoodo.aif │ │ ├── suicune.aif │ │ ├── sunflora.aif │ │ ├── sunkern.aif │ │ ├── surskit.aif │ │ ├── swablu.aif │ │ ├── swalot.aif │ │ ├── swampert.aif │ │ ├── swellow.aif │ │ ├── swinub.aif │ │ ├── taillow.aif │ │ ├── tangela.aif │ │ ├── tauros.aif │ │ ├── teddiursa.aif │ │ ├── tentacool.aif │ │ ├── tentacruel.aif │ │ ├── togepi.aif │ │ ├── togetic.aif │ │ ├── torchic.aif │ │ ├── torkoal.aif │ │ ├── totodile.aif │ │ ├── trapinch.aif │ │ ├── treecko.aif │ │ ├── tropius.aif │ │ ├── typhlosion.aif │ │ ├── tyranitar.aif │ │ ├── tyrogue.aif │ │ ├── umbreon.aif │ │ ├── unown.aif │ │ ├── unused_265.aif │ │ ├── unused_268.aif │ │ ├── ursaring.aif │ │ ├── vaporeon.aif │ │ ├── venomoth.aif │ │ ├── venonat.aif │ │ ├── venusaur.aif │ │ ├── vibrava.aif │ │ ├── victreebel.aif │ │ ├── vigoroth.aif │ │ ├── vileplume.aif │ │ ├── volbeat.aif │ │ ├── voltorb.aif │ │ ├── vulpix.aif │ │ ├── wailmer.aif │ │ ├── wailord.aif │ │ ├── walrein.aif │ │ ├── wartortle.aif │ │ ├── weedle.aif │ │ ├── weepinbell.aif │ │ ├── weezing.aif │ │ ├── whiscash.aif │ │ ├── whismur.aif │ │ ├── wigglytuff.aif │ │ ├── wingull.aif │ │ ├── wobbuffet.aif │ │ ├── wooper.aif │ │ ├── wurmple.aif │ │ ├── wynaut.aif │ │ ├── xatu.aif │ │ ├── yanma.aif │ │ ├── zangoose.aif │ │ ├── zapdos.aif │ │ ├── zigzagoon.aif │ │ └── zubat.aif │ ├── dance_drums_ride_bell.aif │ ├── drum_and_percussion_kick.aif │ ├── emu_ii_pipe_organ.aif │ ├── heart_of_asia_gamelan.aif │ ├── jv1080_slap_bass.aif │ ├── register_noise.aif │ ├── sc88_accordion.aif │ ├── sc88_accordion_duplicate.aif │ ├── sc88_bongo.aif │ ├── sc88_bongo_low.aif │ ├── sc88_bubbles.aif │ ├── sc88_flute.aif │ ├── sc88_french_horn_60.aif │ ├── sc88_french_horn_72.aif │ ├── sc88_fretless_bass.aif │ ├── sc88_glockenspiel.aif │ ├── sc88_harp.aif │ ├── sc88_nylon_str_guitar.aif │ ├── sc88_orchestra_cymbal_crash.aif │ ├── sc88_orchestra_snare.aif │ ├── sc88_organ2.aif │ ├── sc88_piano1_48.aif │ ├── sc88_piano1_60.aif │ ├── sc88_piano1_72.aif │ ├── sc88_piano1_84.aif │ ├── sc88_pick_bass.aif │ ├── sc88_pizzicato_strings.aif │ ├── sc88_square_wave.aif │ ├── sc88_standard3_snare.aif │ ├── sc88_standard_bells.aif │ ├── sc88_standard_hand_clap.aif │ ├── sc88_standard_kick.aif │ ├── sc88_string_ensemble_60.aif │ ├── sc88_string_ensemble_72.aif │ ├── sc88_string_ensemble_84.aif │ ├── sc88_synth_bass.aif │ ├── sc88_timpani.aif │ ├── sc88_timpani_with_snare.aif │ ├── sc88_trumpet_60.aif │ ├── sc88_trumpet_72.aif │ ├── sc88_trumpet_84.aif │ ├── sc88_tubular_bell.aif │ ├── sc88_wind.aif │ ├── sc88_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_enhanced_delay_shaku.aif │ ├── sd90_solo_snare.aif │ ├── sd90_special_scream_drive.aif │ ├── steinway_b_piano.aif │ ├── trinity_cymbal_crash.aif │ ├── unknown_anvil_high.aif │ ├── unknown_anvil_low.aif │ ├── unknown_bell.aif │ ├── unknown_church_organ.aif │ ├── unknown_close_hihat.aif │ ├── unknown_cowbell.aif │ ├── unknown_djembe.aif │ ├── unknown_ethnic_drum.aif │ ├── unknown_female_voice.aif │ ├── unknown_koto_high.aif │ ├── unknown_koto_low.aif │ ├── unknown_open_hihat.aif │ ├── unknown_polysynth.aif │ ├── unknown_snare.aif │ ├── unknown_synth_snare.aif │ ├── unknown_tambourine.aif │ ├── unknown_tom.aif │ ├── unknown_trombone_39.aif │ ├── unknown_trombone_51.aif │ ├── unknown_tsuzumi.aif │ ├── unknown_wood_block_high.aif │ ├── unknown_wood_block_low.aif │ ├── unused_acid_bass.aif │ ├── unused_electric_guitar.aif │ ├── unused_sc88_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 │ ├── unused_86B4930.pcm │ ├── unused_86B4940.pcm │ ├── unused_86B4950.pcm │ └── unused_86B4960.pcm ├── song_table.inc ├── songs │ ├── gbs │ │ ├── gbs_aftertherivalfight.s │ │ ├── gbs_azaleatown.s │ │ ├── gbs_battletowerlobby.s │ │ ├── gbs_battletowertheme.s │ │ ├── gbs_bicycle.s │ │ ├── gbs_buenaspassword.s │ │ ├── gbs_bugcatchingcontest.s │ │ ├── gbs_burnedtower.s │ │ ├── gbs_caughtmon.s │ │ ├── gbs_celadoncity.s │ │ ├── gbs_championbattle.s │ │ ├── gbs_cherrygrovecity.s │ │ ├── gbs_clair.s │ │ ├── gbs_contestresults.s │ │ ├── gbs_credits.s │ │ ├── gbs_crystalopening.s │ │ ├── gbs_dancinghall.s │ │ ├── gbs_darkcave.s │ │ ├── gbs_dragonsden.s │ │ ├── gbs_ecruteakcity.s │ │ ├── gbs_elmslab.s │ │ ├── gbs_evolution.s │ │ ├── gbs_evolutionintro.s │ │ ├── gbs_gamecorner.s │ │ ├── gbs_getbadge.s │ │ ├── gbs_getegg.s │ │ ├── gbs_gettm.s │ │ ├── gbs_goldenrodcity.s │ │ ├── gbs_goldsilveropening.s │ │ ├── gbs_goldsilveropening2.s │ │ ├── gbs_gym.s │ │ ├── gbs_gymleadervictory.s │ │ ├── gbs_halloffame.s │ │ ├── gbs_healpokemon.s │ │ ├── gbs_indigoplateau.s │ │ ├── gbs_item.s │ │ ├── gbs_johtogymbattle.s │ │ ├── gbs_johtotrainerbattle.s │ │ ├── gbs_johtowildbattle.s │ │ ├── gbs_johtowildbattlenight.s │ │ ├── gbs_kantogymbattle.s │ │ ├── gbs_kantotrainerbattle.s │ │ ├── gbs_kantowildbattle.s │ │ ├── gbs_keyitem.s │ │ ├── gbs_lakeofrage.s │ │ ├── gbs_lakeofragerocketradio.s │ │ ├── gbs_lavendertown.s │ │ ├── gbs_levelup.s │ │ ├── gbs_lighthouse.s │ │ ├── gbs_lookbeauty.s │ │ ├── gbs_lookhiker.s │ │ ├── gbs_lookkimonogirl.s │ │ ├── gbs_looklass.s │ │ ├── gbs_lookmysticalman.s │ │ ├── gbs_lookofficer.s │ │ ├── gbs_lookpokemaniac.s │ │ ├── gbs_lookrival.s │ │ ├── gbs_lookrocket.s │ │ ├── gbs_looksage.s │ │ ├── gbs_lookyoungster.s │ │ ├── gbs_magnettrain.s │ │ ├── gbs_mainmenu.s │ │ ├── gbs_mobileadapter.s │ │ ├── gbs_mobileadaptermenu.s │ │ ├── gbs_mobilecenter.s │ │ ├── gbs_mom.s │ │ ├── gbs_mtmoon.s │ │ ├── gbs_mtmoonsquare.s │ │ ├── gbs_nationalpark.s │ │ ├── gbs_newbarktown.s │ │ ├── gbs_pallettown.s │ │ ├── gbs_pokeflutechannel.s │ │ ├── gbs_pokemoncenter.s │ │ ├── gbs_pokemonchannel.s │ │ ├── gbs_pokemonlullaby.s │ │ ├── gbs_pokemonmarch.s │ │ ├── gbs_postcredits.s │ │ ├── gbs_printer.s │ │ ├── gbs_profoak.s │ │ ├── gbs_profoakspokemontalk.s │ │ ├── gbs_registerphonenumber.s │ │ ├── gbs_rivalbattle.s │ │ ├── gbs_rocketbattle.s │ │ ├── gbs_rockethideout.s │ │ ├── gbs_rockettheme.s │ │ ├── gbs_route1.s │ │ ├── gbs_route12.s │ │ ├── gbs_route2.s │ │ ├── gbs_route26.s │ │ ├── gbs_route29.s │ │ ├── gbs_route3.s │ │ ├── gbs_route30.s │ │ ├── gbs_route36.s │ │ ├── gbs_route37.s │ │ ├── gbs_ruinsofalphinterior.s │ │ ├── gbs_ruinsofalphradio.s │ │ ├── gbs_sfx_call.s │ │ ├── gbs_sfx_caughtmon.s │ │ ├── gbs_sfx_dittobounce.s │ │ ├── gbs_sfx_dittopopup.s │ │ ├── gbs_sfx_dittotransform.s │ │ ├── gbs_sfx_gamefreakpresents.s │ │ ├── gbs_sfx_intropichu.s │ │ ├── gbs_sfx_introsuicune1.s │ │ ├── gbs_sfx_introsuicune2.s │ │ ├── gbs_sfx_introsuicune3.s │ │ ├── gbs_sfx_introunown1.s │ │ ├── gbs_sfx_introunown2.s │ │ ├── gbs_sfx_introunown3.s │ │ ├── gbs_sfx_phonebeep.s │ │ ├── gbs_sfx_phoneclick.s │ │ ├── gbs_showmearound.s │ │ ├── gbs_sprouttower.s │ │ ├── gbs_ssaqua.s │ │ ├── gbs_successfulcapture.s │ │ ├── gbs_suicunebattle.s │ │ ├── gbs_surf.s │ │ ├── gbs_tintower.s │ │ ├── gbs_titlescreen.s │ │ ├── gbs_trainervictory.s │ │ ├── gbs_unioncave.s │ │ ├── gbs_vermilioncity.s │ │ ├── gbs_victoryroad.s │ │ ├── gbs_violetcity.s │ │ ├── gbs_viridiancity.s │ │ └── gbs_wildpokemonvictory.s │ ├── midi │ │ ├── mus_aqua_magma_hideout.mid │ │ ├── mus_azalea.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_buenas_theme.mid │ │ ├── mus_bug_catching_contest.mid │ │ ├── mus_bug_contest_prep.mid │ │ ├── mus_c_vs_legend_beast.mid │ │ ├── mus_cable_car.mid │ │ ├── mus_caught.mid │ │ ├── mus_cave_of_origin.mid │ │ ├── mus_cherrygrove.mid │ │ ├── mus_contest.mid │ │ ├── mus_contest_lobby.mid │ │ ├── mus_contest_results.mid │ │ ├── mus_contest_winner.mid │ │ ├── mus_credits.mid │ │ ├── mus_cycling.mid │ │ ├── mus_dark_cave.mid │ │ ├── mus_dummy.mid │ │ ├── mus_elms_lab.mid │ │ ├── mus_encounter_champion.mid │ │ ├── mus_encounter_elite_four.mid │ │ ├── mus_encounter_female.mid │ │ ├── mus_encounter_fisherman.mid │ │ ├── mus_encounter_kimono.mid │ │ ├── mus_encounter_lass.mid │ │ ├── mus_encounter_male.mid │ │ ├── mus_encounter_officer.mid │ │ ├── mus_encounter_rival.mid │ │ ├── mus_encounter_rocket.mid │ │ ├── mus_encounter_sage.mid │ │ ├── mus_encounter_suspicious.mid │ │ ├── mus_encounter_swimmer.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_goldenrod.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_ilex_forest.mid │ │ ├── mus_intro.mid │ │ ├── mus_level_up.mid │ │ ├── mus_lilycove.mid │ │ ├── mus_link_contest_p1.mid │ │ ├── mus_link_contest_p2.mid │ │ ├── mus_link_contest_p3.mid │ │ ├── mus_link_contest_p4.mid │ │ ├── mus_littleroot_test.mid │ │ ├── mus_main_menu.mid │ │ ├── mus_moms_theme.mid │ │ ├── mus_move_deleted.mid │ │ ├── mus_mt_chimney.mid │ │ ├── mus_national_park.mid │ │ ├── mus_new_bark.mid │ │ ├── mus_oaks_lab.mid │ │ ├── mus_oaks_theme.mid │ │ ├── mus_obtain_b_points.mid │ │ ├── mus_obtain_badge.mid │ │ ├── mus_obtain_egg.mid │ │ ├── mus_obtain_item.mid │ │ ├── mus_obtain_symbol.mid │ │ ├── mus_obtain_tmhm.mid │ │ ├── mus_pkmnchannel_interlude.mid │ │ ├── mus_poke_center.mid │ │ ├── mus_pokecom_center.mid │ │ ├── mus_pokemon_lullaby.mid │ │ ├── mus_pokemon_march.mid │ │ ├── mus_rayquaza_appears.mid │ │ ├── mus_register_phone.mid │ │ ├── mus_rg_berry_pick.mid │ │ ├── mus_rg_caught.mid │ │ ├── mus_rg_caught_intro.mid │ │ ├── mus_rg_celadon.mid │ │ ├── mus_rg_cinnabar.mid │ │ ├── mus_rg_credits.mid │ │ ├── mus_rg_cycling.mid │ │ ├── mus_rg_dex_rating.mid │ │ ├── mus_rg_encounter_boy.mid │ │ ├── mus_rg_encounter_deoxys.mid │ │ ├── mus_rg_encounter_girl.mid │ │ ├── mus_rg_encounter_gym_leader.mid │ │ ├── mus_rg_encounter_rival.mid │ │ ├── mus_rg_encounter_rocket.mid │ │ ├── mus_rg_follow_me.mid │ │ ├── mus_rg_fuchsia.mid │ │ ├── mus_rg_game_corner.mid │ │ ├── mus_rg_game_freak.mid │ │ ├── mus_rg_gym.mid │ │ ├── mus_rg_hall_of_fame.mid │ │ ├── mus_rg_heal.mid │ │ ├── mus_rg_intro_fight.mid │ │ ├── mus_rg_jigglypuff.mid │ │ ├── mus_rg_lavender.mid │ │ ├── mus_rg_mt_moon.mid │ │ ├── mus_rg_mystery_gift.mid │ │ ├── mus_rg_net_center.mid │ │ ├── mus_rg_new_game_exit.mid │ │ ├── mus_rg_new_game_instruct.mid │ │ ├── mus_rg_new_game_intro.mid │ │ ├── mus_rg_oak.mid │ │ ├── mus_rg_oak_lab.mid │ │ ├── mus_rg_obtain_key_item.mid │ │ ├── mus_rg_pallet.mid │ │ ├── mus_rg_pewter.mid │ │ ├── mus_rg_photo.mid │ │ ├── mus_rg_poke_center.mid │ │ ├── mus_rg_poke_flute.mid │ │ ├── mus_rg_poke_jump.mid │ │ ├── mus_rg_poke_mansion.mid │ │ ├── mus_rg_poke_tower.mid │ │ ├── mus_rg_rival_exit.mid │ │ ├── mus_rg_rocket_hideout.mid │ │ ├── mus_rg_route1.mid │ │ ├── mus_rg_route11.mid │ │ ├── mus_rg_route24.mid │ │ ├── mus_rg_route3.mid │ │ ├── mus_rg_sevii_123.mid │ │ ├── mus_rg_sevii_45.mid │ │ ├── mus_rg_sevii_67.mid │ │ ├── mus_rg_sevii_cave.mid │ │ ├── mus_rg_sevii_dungeon.mid │ │ ├── mus_rg_sevii_route.mid │ │ ├── mus_rg_silph.mid │ │ ├── mus_rg_slow_pallet.mid │ │ ├── mus_rg_ss_anne.mid │ │ ├── mus_rg_surf.mid │ │ ├── mus_rg_teachy_tv_menu.mid │ │ ├── mus_rg_teachy_tv_show.mid │ │ ├── mus_rg_title.mid │ │ ├── mus_rg_trainer_tower.mid │ │ ├── mus_rg_union_room.mid │ │ ├── mus_rg_vermillion.mid │ │ ├── mus_rg_victory_gym_leader.mid │ │ ├── mus_rg_victory_road.mid │ │ ├── mus_rg_victory_trainer.mid │ │ ├── mus_rg_victory_wild.mid │ │ ├── mus_rg_viridian_forest.mid │ │ ├── mus_rg_vs_champion.mid │ │ ├── mus_rg_vs_deoxys.mid │ │ ├── mus_rg_vs_gym_leader.mid │ │ ├── mus_rg_vs_legend.mid │ │ ├── mus_rg_vs_mewtwo.mid │ │ ├── mus_rg_vs_trainer.mid │ │ ├── mus_rg_vs_wild.mid │ │ ├── mus_rival_exit.mid │ │ ├── mus_rocket_takeover.mid │ │ ├── mus_roulette.mid │ │ ├── mus_route104.mid │ │ ├── mus_route111.mid │ │ ├── mus_route119.mid │ │ ├── mus_route120.mid │ │ ├── mus_route29.mid │ │ ├── mus_route30.mid │ │ ├── mus_route34.mid │ │ ├── mus_ruins_of_alph.mid │ │ ├── mus_sailing.mid │ │ ├── mus_sealed_chamber.mid │ │ ├── mus_slateport.mid │ │ ├── mus_slots_jackpot.mid │ │ ├── mus_slots_win.mid │ │ ├── mus_sootopolis.mid │ │ ├── mus_sprout_tower.mid │ │ ├── mus_surf.mid │ │ ├── mus_title.mid │ │ ├── mus_too_bad.mid │ │ ├── mus_trick_house.mid │ │ ├── mus_underwater.mid │ │ ├── mus_unown_radio.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_violet.mid │ │ ├── mus_vs_aqua_magma_leader.mid │ │ ├── mus_vs_champion.mid │ │ ├── mus_vs_elite_four.mid │ │ ├── mus_vs_frontier_brain.mid │ │ ├── mus_vs_johto_leader.mid │ │ ├── mus_vs_johto_trainer.mid │ │ ├── mus_vs_johto_wild.mid │ │ ├── mus_vs_kyogre_groudon.mid │ │ ├── mus_vs_mew.mid │ │ ├── mus_vs_rayquaza.mid │ │ ├── mus_vs_regi.mid │ │ ├── mus_vs_rival.mid │ │ ├── mus_vs_rocket.mid │ │ ├── mus_weather_groudon.mid │ │ ├── ph_choice_blend.mid │ │ ├── ph_choice_held.mid │ │ ├── ph_choice_solo.mid │ │ ├── ph_cloth_blend.mid │ │ ├── ph_cloth_held.mid │ │ ├── ph_cloth_solo.mid │ │ ├── ph_cure_blend.mid │ │ ├── ph_cure_held.mid │ │ ├── ph_cure_solo.mid │ │ ├── ph_dress_blend.mid │ │ ├── ph_dress_held.mid │ │ ├── ph_dress_solo.mid │ │ ├── ph_face_blend.mid │ │ ├── ph_face_held.mid │ │ ├── ph_face_solo.mid │ │ ├── ph_fleece_blend.mid │ │ ├── ph_fleece_held.mid │ │ ├── ph_fleece_solo.mid │ │ ├── ph_foot_blend.mid │ │ ├── ph_foot_held.mid │ │ ├── ph_foot_solo.mid │ │ ├── ph_goat_blend.mid │ │ ├── ph_goat_held.mid │ │ ├── ph_goat_solo.mid │ │ ├── ph_goose_blend.mid │ │ ├── ph_goose_held.mid │ │ ├── ph_goose_solo.mid │ │ ├── ph_kit_blend.mid │ │ ├── ph_kit_held.mid │ │ ├── ph_kit_solo.mid │ │ ├── ph_lot_blend.mid │ │ ├── ph_lot_held.mid │ │ ├── ph_lot_solo.mid │ │ ├── ph_mouth_blend.mid │ │ ├── ph_mouth_held.mid │ │ ├── ph_mouth_solo.mid │ │ ├── ph_nurse_blend.mid │ │ ├── ph_nurse_held.mid │ │ ├── ph_nurse_solo.mid │ │ ├── ph_price_blend.mid │ │ ├── ph_price_held.mid │ │ ├── ph_price_solo.mid │ │ ├── ph_strut_blend.mid │ │ ├── ph_strut_held.mid │ │ ├── ph_strut_solo.mid │ │ ├── ph_thought_blend.mid │ │ ├── ph_thought_held.mid │ │ ├── ph_thought_solo.mid │ │ ├── ph_trap_blend.mid │ │ ├── ph_trap_held.mid │ │ ├── ph_trap_solo.mid │ │ ├── se_a.mid │ │ ├── se_applause.mid │ │ ├── se_arena_timeup1.mid │ │ ├── se_arena_timeup2.mid │ │ ├── se_ball.mid │ │ ├── se_ball_bounce_1.mid │ │ ├── se_ball_bounce_2.mid │ │ ├── se_ball_bounce_3.mid │ │ ├── se_ball_bounce_4.mid │ │ ├── se_ball_open.mid │ │ ├── se_ball_throw.mid │ │ ├── se_ball_trade.mid │ │ ├── se_ball_tray_ball.mid │ │ ├── se_ball_tray_enter.mid │ │ ├── se_ball_tray_exit.mid │ │ ├── se_balloon_blue.mid │ │ ├── se_balloon_red.mid │ │ ├── se_balloon_yellow.mid │ │ ├── se_bang.mid │ │ ├── se_berry_blender.mid │ │ ├── se_bike_bell.mid │ │ ├── se_bike_hop.mid │ │ ├── se_boo.mid │ │ ├── se_breakable_door.mid │ │ ├── se_bridge_walk.mid │ │ ├── se_card.mid │ │ ├── se_click.mid │ │ ├── se_contest_condition_lose.mid │ │ ├── se_contest_curtain_fall.mid │ │ ├── se_contest_curtain_rise.mid │ │ ├── se_contest_heart.mid │ │ ├── se_contest_icon_change.mid │ │ ├── se_contest_icon_clear.mid │ │ ├── se_contest_mons_turn.mid │ │ ├── se_contest_place.mid │ │ ├── se_dex_search.mid │ │ ├── se_ding_dong.mid │ │ ├── se_door.mid │ │ ├── se_downpour.mid │ │ ├── se_downpour_stop.mid │ │ ├── se_e.mid │ │ ├── se_effective.mid │ │ ├── se_egg_hatch.mid │ │ ├── se_elevator.mid │ │ ├── se_escalator.mid │ │ ├── se_exit.mid │ │ ├── se_exp.mid │ │ ├── se_exp_max.mid │ │ ├── se_failure.mid │ │ ├── se_faint.mid │ │ ├── se_fall.mid │ │ ├── se_field_poison.mid │ │ ├── se_flee.mid │ │ ├── se_fu_zaku.mid │ │ ├── se_glass_flute.mid │ │ ├── se_i.mid │ │ ├── se_ice_break.mid │ │ ├── se_ice_crack.mid │ │ ├── se_ice_stairs.mid │ │ ├── se_intro_blast.mid │ │ ├── se_intro_dittobounce1.mid │ │ ├── se_intro_dittobounce2.mid │ │ ├── se_intro_dittotransform.mid │ │ ├── se_intro_logo_ding.mid │ │ ├── se_intro_unown1.mid │ │ ├── se_intro_unown2.mid │ │ ├── se_intro_unown3.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_phone_beep.mid │ │ ├── se_phone_call.mid │ │ ├── se_phone_click.mid │ │ ├── se_pike_curtain_close.mid │ │ ├── se_pike_curtain_open.mid │ │ ├── se_pin.mid │ │ ├── se_pokenav_off.mid │ │ ├── se_pokenav_on.mid │ │ ├── se_puddle.mid │ │ ├── se_rain.mid │ │ ├── se_rain_stop.mid │ │ ├── se_repel.mid │ │ ├── se_rg_bag_cursor.mid │ │ ├── se_rg_bag_pocket.mid │ │ ├── se_rg_ball_click.mid │ │ ├── se_rg_card_flip.mid │ │ ├── se_rg_card_flipping.mid │ │ ├── se_rg_card_open.mid │ │ ├── se_rg_deoxys_move.mid │ │ ├── se_rg_door.mid │ │ ├── se_rg_help_close.mid │ │ ├── se_rg_help_error.mid │ │ ├── se_rg_help_open.mid │ │ ├── se_rg_poke_jump_failure.mid │ │ ├── se_rg_poke_jump_success.mid │ │ ├── se_rg_shop.mid │ │ ├── se_rg_ss_anne_horn.mid │ │ ├── se_rotating_gate.mid │ │ ├── se_roulette_ball.mid │ │ ├── se_roulette_ball2.mid │ │ ├── se_save.mid │ │ ├── se_select.mid │ │ ├── se_shiny.mid │ │ ├── se_ship.mid │ │ ├── se_shop.mid │ │ ├── se_sliding_door.mid │ │ ├── se_success.mid │ │ ├── se_sudowoodo_shake.mid │ │ ├── se_super_effective.mid │ │ ├── se_switch.mid │ │ ├── se_taillow_wing_flap.mid │ │ ├── se_thunder.mid │ │ ├── se_thunder2.mid │ │ ├── se_thunderstorm.mid │ │ ├── se_thunderstorm_stop.mid │ │ ├── se_truck_door.mid │ │ ├── se_truck_move.mid │ │ ├── se_truck_stop.mid │ │ ├── se_truck_unload.mid │ │ ├── se_u.mid │ │ ├── se_unlock.mid │ │ ├── se_use_item.mid │ │ ├── se_vend.mid │ │ ├── se_warp_in.mid │ │ └── se_warp_out.mid │ ├── se_dex_page.s │ ├── se_dex_scroll.s │ ├── se_m_absorb.s │ ├── se_m_absorb_2.s │ ├── se_m_acid_armor.s │ ├── se_m_attract.s │ ├── se_m_attract2.s │ ├── se_m_barrier.s │ ├── se_m_baton_pass.s │ ├── se_m_belly_drum.s │ ├── se_m_bite.s │ ├── se_m_blizzard.s │ ├── se_m_blizzard2.s │ ├── se_m_bonemerang.s │ ├── se_m_brick_break.s │ ├── se_m_bubble.s │ ├── se_m_bubble2.s │ ├── se_m_bubble3.s │ ├── se_m_bubble_beam.s │ ├── se_m_bubble_beam2.s │ ├── se_m_charge.s │ ├── se_m_charm.s │ ├── se_m_confuse_ray.s │ ├── se_m_cosmic_power.s │ ├── se_m_crabhammer.s │ ├── se_m_detect.s │ ├── se_m_dig.s │ ├── se_m_dive.s │ ├── se_m_dizzy_punch.s │ ├── se_m_double_team.s │ ├── se_m_dragon_rage.s │ ├── se_m_earthquake.s │ ├── se_m_ember.s │ ├── se_m_encore.s │ ├── se_m_encore2.s │ ├── se_m_explosion.s │ ├── se_m_faint_attack.s │ ├── se_m_flame_wheel.s │ ├── se_m_flame_wheel2.s │ ├── se_m_flamethrower.s │ ├── se_m_flatter.s │ ├── se_m_giga_drain.s │ ├── se_m_grasswhistle.s │ ├── se_m_hail.s │ ├── se_m_harden.s │ ├── se_m_haze.s │ ├── se_m_heal_bell.s │ ├── se_m_heat_wave.s │ ├── se_m_hydro_pump.s │ ├── se_m_hyper_beam.s │ ├── se_m_hyper_beam2.s │ ├── se_m_icy_wind.s │ ├── se_m_lick.s │ ├── se_m_lock_on.s │ ├── se_m_metronome.s │ ├── se_m_milk_drink.s │ ├── se_m_minimize.s │ ├── se_m_mist.s │ ├── se_m_moonlight.s │ ├── se_m_morning_sun.s │ ├── se_m_nightmare.s │ ├── se_m_perish_song.s │ ├── se_m_petal_dance.s │ ├── se_m_poison_powder.s │ ├── se_m_psybeam.s │ ├── se_m_psybeam2.s │ ├── se_m_rain_dance.s │ ├── se_m_reflect.s │ ├── se_m_reversal.s │ ├── se_m_rock_throw.s │ ├── se_m_sacred_fire.s │ ├── se_m_sacred_fire2.s │ ├── se_m_sand_tomb.s │ ├── se_m_sandstorm.s │ ├── se_m_screech.s │ ├── se_m_self_destruct.s │ ├── se_m_sing.s │ ├── se_m_sketch.s │ ├── se_m_sky_uppercut.s │ ├── se_m_snore.s │ ├── se_m_solar_beam.s │ ├── se_m_spit_up.s │ ├── se_m_stat_decrease.s │ ├── se_m_stat_increase.s │ ├── se_m_strength.s │ ├── se_m_string_shot.s │ ├── se_m_string_shot2.s │ ├── se_m_supersonic.s │ ├── se_m_surf.s │ ├── se_m_swagger.s │ ├── se_m_swagger2.s │ ├── se_m_sweet_scent.s │ ├── se_m_swift.s │ ├── se_m_teeter_dance.s │ ├── se_m_teleport.s │ ├── se_m_thunder_wave.s │ ├── se_m_thunderbolt.s │ ├── se_m_thunderbolt2.s │ ├── se_m_toxic.s │ ├── se_m_tri_attack.s │ ├── se_m_tri_attack2.s │ ├── se_m_twister.s │ ├── se_m_uproar.s │ ├── se_m_vital_throw.s │ ├── se_m_vital_throw2.s │ ├── se_m_waterfall.s │ ├── se_m_whirlpool.s │ ├── se_m_yawn.s │ ├── se_wall_hit.s │ └── se_win_open.s ├── voice_groups.inc └── voicegroups │ ├── voicegroup000.inc │ ├── voicegroup001.inc │ ├── voicegroup002.inc │ ├── voicegroup003.inc │ ├── voicegroup004.inc │ ├── voicegroup005.inc │ ├── voicegroup006.inc │ ├── voicegroup007.inc │ ├── voicegroup008.inc │ ├── voicegroup009.inc │ ├── voicegroup010.inc │ ├── voicegroup011.inc │ ├── voicegroup012.inc │ ├── voicegroup013.inc │ ├── voicegroup014.inc │ ├── voicegroup015.inc │ ├── voicegroup016.inc │ ├── voicegroup017.inc │ ├── voicegroup018.inc │ ├── voicegroup019.inc │ ├── voicegroup020.inc │ ├── voicegroup021.inc │ ├── voicegroup022.inc │ ├── voicegroup023.inc │ ├── voicegroup024.inc │ ├── voicegroup025.inc │ ├── voicegroup026.inc │ ├── voicegroup027.inc │ ├── voicegroup028.inc │ ├── voicegroup029.inc │ ├── voicegroup030.inc │ ├── voicegroup031.inc │ ├── voicegroup032.inc │ ├── voicegroup033.inc │ ├── voicegroup034.inc │ ├── voicegroup035.inc │ ├── voicegroup036.inc │ ├── voicegroup037.inc │ ├── voicegroup038.inc │ ├── voicegroup039.inc │ ├── voicegroup040.inc │ ├── voicegroup041.inc │ ├── voicegroup042.inc │ ├── voicegroup043.inc │ ├── voicegroup044.inc │ ├── voicegroup045.inc │ ├── voicegroup046.inc │ ├── voicegroup047.inc │ ├── voicegroup048.inc │ ├── voicegroup049.inc │ ├── voicegroup050.inc │ ├── voicegroup051.inc │ ├── voicegroup052.inc │ ├── voicegroup053.inc │ ├── voicegroup054.inc │ ├── voicegroup055.inc │ ├── voicegroup056.inc │ ├── voicegroup057.inc │ ├── voicegroup058.inc │ ├── voicegroup059.inc │ ├── voicegroup060.inc │ ├── voicegroup061.inc │ ├── voicegroup062.inc │ ├── voicegroup063.inc │ ├── voicegroup064.inc │ ├── voicegroup065.inc │ ├── voicegroup066.inc │ ├── voicegroup067.inc │ ├── voicegroup068.inc │ ├── voicegroup069.inc │ ├── voicegroup070.inc │ ├── voicegroup071.inc │ ├── voicegroup072.inc │ ├── voicegroup073.inc │ ├── voicegroup074.inc │ ├── voicegroup075.inc │ ├── voicegroup076.inc │ ├── voicegroup077.inc │ ├── voicegroup078.inc │ ├── voicegroup079.inc │ ├── voicegroup080.inc │ ├── voicegroup081.inc │ ├── voicegroup082.inc │ ├── voicegroup083.inc │ ├── voicegroup084.inc │ ├── voicegroup085.inc │ ├── voicegroup086.inc │ ├── voicegroup087.inc │ ├── voicegroup088.inc │ ├── voicegroup089.inc │ ├── voicegroup090.inc │ ├── voicegroup091.inc │ ├── voicegroup092.inc │ ├── voicegroup093.inc │ ├── voicegroup094.inc │ ├── voicegroup095.inc │ ├── voicegroup096.inc │ ├── voicegroup097.inc │ ├── voicegroup098.inc │ ├── voicegroup099.inc │ ├── voicegroup100.inc │ ├── voicegroup101.inc │ ├── voicegroup102.inc │ ├── voicegroup103.inc │ ├── voicegroup104.inc │ ├── voicegroup105.inc │ ├── voicegroup106.inc │ ├── voicegroup107.inc │ ├── voicegroup108.inc │ ├── voicegroup109.inc │ ├── voicegroup110.inc │ ├── voicegroup111.inc │ ├── voicegroup112.inc │ ├── voicegroup113.inc │ ├── voicegroup114.inc │ ├── voicegroup115.inc │ ├── voicegroup116.inc │ ├── voicegroup117.inc │ ├── voicegroup118.inc │ ├── voicegroup119.inc │ ├── voicegroup120.inc │ ├── voicegroup121.inc │ ├── voicegroup122.inc │ ├── voicegroup123.inc │ ├── voicegroup124.inc │ ├── voicegroup125.inc │ ├── voicegroup126.inc │ ├── voicegroup127.inc │ ├── voicegroup128.inc │ ├── voicegroup129.inc │ ├── voicegroup130.inc │ ├── voicegroup131.inc │ ├── voicegroup132.inc │ ├── voicegroup133.inc │ ├── voicegroup134.inc │ ├── voicegroup135.inc │ ├── voicegroup136.inc │ ├── voicegroup137.inc │ ├── voicegroup138.inc │ ├── voicegroup139.inc │ ├── voicegroup140.inc │ ├── voicegroup141.inc │ ├── voicegroup142.inc │ ├── voicegroup143.inc │ ├── voicegroup144.inc │ ├── voicegroup145.inc │ ├── voicegroup146.inc │ ├── voicegroup147.inc │ ├── voicegroup148.inc │ ├── voicegroup149.inc │ ├── voicegroup150.inc │ ├── voicegroup151.inc │ ├── voicegroup152.inc │ ├── voicegroup153.inc │ ├── voicegroup154.inc │ ├── voicegroup155.inc │ ├── voicegroup156.inc │ ├── voicegroup157.inc │ ├── voicegroup158.inc │ ├── voicegroup159.inc │ ├── voicegroup160.inc │ ├── voicegroup161.inc │ ├── voicegroup162.inc │ ├── voicegroup163.inc │ ├── voicegroup164.inc │ ├── voicegroup165.inc │ ├── voicegroup166.inc │ ├── voicegroup167.inc │ ├── voicegroup168.inc │ ├── voicegroup169.inc │ ├── voicegroup170.inc │ ├── voicegroup171.inc │ ├── voicegroup172.inc │ ├── voicegroup173.inc │ ├── voicegroup174.inc │ ├── voicegroup175.inc │ ├── voicegroup176.inc │ ├── voicegroup177.inc │ ├── voicegroup178.inc │ ├── voicegroup179.inc │ ├── voicegroup180.inc │ ├── voicegroup181.inc │ ├── voicegroup182.inc │ ├── voicegroup183.inc │ ├── voicegroup184.inc │ ├── voicegroup185.inc │ ├── voicegroup186.inc │ ├── voicegroup187.inc │ ├── voicegroup188.inc │ ├── voicegroup189.inc │ └── voicegroup190.inc ├── spritesheet_rules.mk ├── src ├── AgbRfu_LinkManager.c ├── agb_flash.c ├── agb_flash_1m.c ├── agb_flash_le.c ├── agb_flash_mx.c ├── anim_mon_front_pics.c ├── apprentice.c ├── apricorn_menu.c ├── bard_music.c ├── battle_ai_script_commands.c ├── battle_ai_switch_items.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_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_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 ├── braille_puzzles.c ├── buenas_password.c ├── bug_catching_contest.c ├── cable_car.c ├── cable_club.c ├── card_flip.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 │ ├── 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 │ ├── decoration │ │ ├── description.h │ │ ├── header.h │ │ ├── icon.h │ │ ├── tilemaps.h │ │ └── tiles.h │ ├── easy_chat │ │ ├── easy_chat_group_actions.h │ │ ├── easy_chat_group_adjectives.h │ │ ├── easy_chat_group_battle.h │ │ ├── easy_chat_group_conditions.h │ │ ├── easy_chat_group_endings.h │ │ ├── easy_chat_group_events.h │ │ ├── easy_chat_group_feelings.h │ │ ├── easy_chat_group_greetings.h │ │ ├── easy_chat_group_hobbies.h │ │ ├── easy_chat_group_lifestyle.h │ │ ├── easy_chat_group_misc.h │ │ ├── easy_chat_group_move_1.h │ │ ├── easy_chat_group_move_2.h │ │ ├── easy_chat_group_people.h │ │ ├── easy_chat_group_pokemon.h │ │ ├── easy_chat_group_pokemon2.h │ │ ├── easy_chat_group_speech.h │ │ ├── easy_chat_group_status.h │ │ ├── easy_chat_group_time.h │ │ ├── easy_chat_group_trainer.h │ │ ├── easy_chat_group_trendy_saying.h │ │ ├── easy_chat_group_voices.h │ │ ├── easy_chat_groups.h │ │ └── easy_chat_words_by_letter.h │ ├── field_effects │ │ ├── field_effect_object_template_pointers.h │ │ └── field_effect_objects.h │ ├── gbs.h │ ├── graphics │ │ ├── battle_terrain.h │ │ ├── berries.h │ │ ├── berry_fix.h │ │ ├── decorations.h │ │ ├── interface_pokeballs.h │ │ ├── items.h │ │ ├── mail.h │ │ ├── pokemon.h │ │ ├── rayquaza_scene.h │ │ ├── slot_machine.h │ │ └── trainers.h │ ├── heal_locations.h │ ├── item_icon_table.h │ ├── items.json │ ├── items.json.txt │ ├── 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 │ ├── pokemon │ │ ├── base_stats.h │ │ ├── cry_ids.h │ │ ├── egg_moves.h │ │ ├── evolution.h │ │ ├── experience_tables.h │ │ ├── item_effects.h │ │ ├── level_up_learnset_pointers.h │ │ ├── level_up_learnsets.h │ │ ├── pokedex_entries.h │ │ ├── pokedex_orders.h │ │ ├── pokedex_text.h │ │ ├── tmhm_learnsets.h │ │ ├── trainer_class_lookups.h │ │ └── tutor_learnsets.h │ ├── pokemon_graphics │ │ ├── back_pic_coordinates.h │ │ ├── back_pic_table.h │ │ ├── enemy_mon_elevation.h │ │ ├── footprint_table.h │ │ ├── front_pic_anims.h │ │ ├── front_pic_coordinates.h │ │ ├── front_pic_table.h │ │ ├── palette_table.h │ │ ├── shiny_palette_table.h │ │ ├── still_front_pic_table.h │ │ └── unknown_anims.h │ ├── region_map │ │ ├── city_map_entries.h │ │ ├── city_map_tilemaps.h │ │ ├── mapsec_flags.h │ │ ├── mapsec_to_region.h │ │ ├── region_map_entries.h │ │ └── region_map_names_emerald.h │ ├── script_menu.h │ ├── text │ │ ├── abilities.h │ │ ├── gift_ribbon_descriptions.h │ │ ├── match_call_messages.h │ │ ├── move_descriptions.h │ │ ├── move_names.h │ │ ├── nature_names.h │ │ ├── ribbon_descriptions.h │ │ ├── species_names.h │ │ └── trainer_class_names.h │ ├── trade.h │ ├── trainer_graphics │ │ ├── back_pic_anims.h │ │ ├── back_pic_tables.h │ │ ├── front_pic_anims.h │ │ └── front_pic_tables.h │ ├── trainer_parties.h │ ├── trainers.h │ ├── union_room.h │ ├── wild_encounters.json │ └── wild_encounters.json.txt ├── day_night.c ├── daycare.c ├── debug │ ├── debug_menu.c │ └── sound_check_menu.c ├── decompress.c ├── decoration.c ├── decoration_inventory.c ├── dewford_trend.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_headbutt.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 ├── fruit_tree.c ├── game_build.c ├── gbs.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_pc.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 ├── minigame_countdown.c ├── mirage_tower.c ├── mom_bank.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 ├── overworld.c ├── palette.c ├── palette_util.c ├── party_menu.c ├── phone_contact.c ├── phone_script.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 ├── pokegear.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 ├── prof_pc.c ├── radio.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 ├── roamer.c ├── rotating_gate.c ├── rotating_tile_puzzle.c ├── roulette.c ├── rtc.c ├── ruins_of_alph_puzzle.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 ├── 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 ├── trade.c ├── trader.c ├── trainer_card.c ├── trainer_hill.c ├── trainer_pokemon_sprites.c ├── trainer_see.c ├── trig.c ├── tv.c ├── union_room.c ├── union_room_battle.c ├── union_room_chat.c ├── union_room_player_avatar.c ├── 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 ├── tilemap_shifter.py ├── tileset_fixer.py ├── tileset_palettes.py ├── tileset_ripper.py ├── tileset_ripper_cd.py ├── tileset_sanitizer.py ├── 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 │ ├── act.c │ ├── act.h │ ├── 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 ├── poryscript │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ └── font_widths.json ├── 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 └── xorencrypt │ ├── .gitignore │ ├── Makefile │ └── main.c └── trainer_rename.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/README.md -------------------------------------------------------------------------------- /alpha_builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/alpha_builds.py -------------------------------------------------------------------------------- /alpha_testers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/alpha_testers.txt -------------------------------------------------------------------------------- /asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros.inc -------------------------------------------------------------------------------- /asm/macros/asm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros/asm.inc -------------------------------------------------------------------------------- /asm/macros/ec.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros/ec.inc -------------------------------------------------------------------------------- /asm/macros/event.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros/event.inc -------------------------------------------------------------------------------- /asm/macros/function.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros/function.inc -------------------------------------------------------------------------------- /asm/macros/gbs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros/gbs.inc -------------------------------------------------------------------------------- /asm/macros/m4a.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros/m4a.inc -------------------------------------------------------------------------------- /asm/macros/map.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros/map.inc -------------------------------------------------------------------------------- /asm/macros/movement.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros/movement.inc -------------------------------------------------------------------------------- /asm/macros/phone.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros/phone.inc -------------------------------------------------------------------------------- /asm/macros/window.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/macros/window.inc -------------------------------------------------------------------------------- /asm/rom_header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asm/rom_header.inc -------------------------------------------------------------------------------- /asmdiff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asmdiff.ps1 -------------------------------------------------------------------------------- /asmdiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/asmdiff.sh -------------------------------------------------------------------------------- /berry_fix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/berry_fix/Makefile -------------------------------------------------------------------------------- /berry_fix/asm/loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/berry_fix/asm/loader.s -------------------------------------------------------------------------------- /berry_fix/charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/berry_fix/charmap.txt -------------------------------------------------------------------------------- /berry_fix/data/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/berry_fix/data/data.s -------------------------------------------------------------------------------- /berry_fix/ld_script.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/berry_fix/ld_script.sed -------------------------------------------------------------------------------- /berry_fix/ld_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/berry_fix/ld_script.txt -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /cgb2gbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/cgb2gbs.py -------------------------------------------------------------------------------- /charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/charmap.txt -------------------------------------------------------------------------------- /common_syms/AgbRfu_LinkManager.txt: -------------------------------------------------------------------------------- 1 | lman 2 | -------------------------------------------------------------------------------- /common_syms/battle_factory_screen.txt: -------------------------------------------------------------------------------- 1 | gUnknown_030062E8 2 | -------------------------------------------------------------------------------- /common_syms/battle_tower.txt: -------------------------------------------------------------------------------- 1 | gUnknown_03006298 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/debug/sound_check_menu.txt: -------------------------------------------------------------------------------- 1 | sMPlayInfo_Cry 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/Sierraffinity/CrystalDust/HEAD/common_syms/link.txt -------------------------------------------------------------------------------- /common_syms/link_rfu_2.txt: -------------------------------------------------------------------------------- 1 | gf_rfu_REQ_api 2 | Rfu 3 | -------------------------------------------------------------------------------- /common_syms/m4a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/common_syms/m4a.txt -------------------------------------------------------------------------------- /common_syms/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/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.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/common_syms/pokedex.txt -------------------------------------------------------------------------------- /common_syms/pokedex_cry_screen.txt: -------------------------------------------------------------------------------- 1 | gDexCryScreenState 2 | -------------------------------------------------------------------------------- /common_syms/random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/common_syms/random.txt -------------------------------------------------------------------------------- /common_syms/rtc.txt: -------------------------------------------------------------------------------- 1 | gLocalTime 2 | -------------------------------------------------------------------------------- /common_syms/save.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/common_syms/save.txt -------------------------------------------------------------------------------- /common_syms/sound.txt: -------------------------------------------------------------------------------- 1 | gDisableMusic 2 | -------------------------------------------------------------------------------- /common_syms/sprite.txt: -------------------------------------------------------------------------------- 1 | gOamMatrixAllocBitmap 2 | gReservedSpritePaletteCount 3 | -------------------------------------------------------------------------------- /common_syms/start_menu.txt: -------------------------------------------------------------------------------- 1 | gMenuCallback 2 | -------------------------------------------------------------------------------- /common_syms/task.txt: -------------------------------------------------------------------------------- 1 | gTasks 2 | -------------------------------------------------------------------------------- /common_syms/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/common_syms/text.txt -------------------------------------------------------------------------------- /common_syms/tv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/common_syms/tv.txt -------------------------------------------------------------------------------- /common_syms/window.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/common_syms/window.txt -------------------------------------------------------------------------------- /constants/constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/constants/constants.inc -------------------------------------------------------------------------------- /constants/global.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/constants/global.inc -------------------------------------------------------------------------------- /data/battle_scripts_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/battle_scripts_1.s -------------------------------------------------------------------------------- /data/battle_scripts_2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/battle_scripts_2.s -------------------------------------------------------------------------------- /data/event_scripts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/event_scripts.s -------------------------------------------------------------------------------- /data/fonts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/fonts.s -------------------------------------------------------------------------------- /data/layouts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/layouts/.gitignore -------------------------------------------------------------------------------- /data/layouts/AlteringCave/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_B2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_UnusedRubyMap1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_UnusedRubyMap2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_UnusedRubyMap3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ArtisanCave_1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ArtisanCave_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/AzaleaTown/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/BattleColosseum_2P/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/BattleColosseum_4P/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /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_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/CaveOfOrigin_1F/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_B1F/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_UnusedRubySapphireMap1/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_UnusedRubySapphireMap2/border.bin: -------------------------------------------------------------------------------- 1 | SfVC -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_UnusedRubySapphireMap3/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_Unused_B4F_Lava/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CherrygroveCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /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/DarkCave_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/DesertUnderpass/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /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/GoldenrodCity_DeptStore_Rooftop/border.bin: -------------------------------------------------------------------------------- 1 | gC -------------------------------------------------------------------------------- /data/layouts/GoldenrodCity_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/GoldenrodCity_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/GoldenrodCity_NameRatersHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Harbor/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/House4/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/MagmaHideout_1F/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_2F_1R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_2F_2R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_2F_3R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_3F_1R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_3F_2R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_3F_3R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_4F/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MauvilleCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/MauvilleCity_GameCorner/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MauvilleCity_Gym/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MirageTower_1F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MirageTower_2F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MirageTower_3F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MirageTower_4F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MossdeepCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_GameCorner_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_GameCorner_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_SpaceCenter_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_SpaceCenter_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_StevensHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/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/NationalPark/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/NewBarkTown/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/NewBarkTown_ProfessorElmsLabWithTable/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /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/RadioTower_3F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RadioTower_4F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RadioTower_5F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RecordCorner/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/Route104_Prototype/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /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/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/Route117_PokemonDayCare/border.bin: -------------------------------------------------------------------------------- 1 | cfbC -------------------------------------------------------------------------------- /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/Route29/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route30/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route31/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route32/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route33/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route34/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route35/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route36/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route45/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route46/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/RuinsOfAlph_Outside/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /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/ScorchedSlab/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SealedChamber_InnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/SealedChamber_OuterRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/ShoalCave_HighTideEntranceRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_HighTideInnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideEntranceRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideIceRoom/border.bin: -------------------------------------------------------------------------------- 1 | kdnC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideInnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideLowerRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideStairsRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_1F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_2F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_3F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_3F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_4F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_4F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_5F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_5F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_Outside/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/SlateportCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_OceanicMuseum_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_OceanicMuseum_2F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_PokemonFanClub/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_SternsShipyard_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SlateportCity_SternsShipyard_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_Gym_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_Gym_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_House3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_LotadAndSeedotHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_MysteryEventsHouse_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_MysteryEventsHouse_1F_StairsUnblocked/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_MysteryEventsHouse_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SouthernIsland_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/TradeCenter/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /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/UnionCave_B2F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_29/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_29/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_30/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_30/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_31/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_31/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_32/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_32/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_33/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_33/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_34/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnknownLinkContestRoom_25_34/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_08428450/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Unknown_08428450/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E6C0/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E6C0/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E6E4/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E6E4/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E708/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E708/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E72C/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E72C/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E750/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E750/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E774/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E774/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E798/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E798/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E7BC/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E7BC/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E7E0/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E7E0/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E804/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E804/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E828/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E828/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E84C/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E84C/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E870/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E870/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E894/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Unknown_0843E894/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_08447028/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Unknown_084693AC/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /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/layouts/VioletCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/map_events.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/map_events.s -------------------------------------------------------------------------------- /data/maps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/maps.s -------------------------------------------------------------------------------- /data/maps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/maps/.gitignore -------------------------------------------------------------------------------- /data/maps/ArtisanCave_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | ArtisanCave_1F_MapScripts:: @ 823AFB7 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/BattleColosseum_2P/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleColosseum_2P_MapScripts:: @ 823B77D 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/BattleColosseum_4P/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleColosseum_4P_MapScripts:: @ 823B780 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/BattlePyramidSquare01/scripts.inc: -------------------------------------------------------------------------------- 1 | BattlePyramidSquare01_MapScripts:: @ 823D1A5 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_2F_3R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_2F_3R_MapScripts:: @ 823AD00 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_3F_3R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_3F_3R_MapScripts:: @ 823ACFF 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_B1F_MapScripts:: @ 826910D 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down01/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down01_MapScripts:: @ 826924A 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down02/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down02_MapScripts:: @ 826924B 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down03/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down03_MapScripts:: @ 826924C 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down04/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down04_MapScripts:: @ 826924D 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down05/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down05_MapScripts:: @ 826924E 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down06/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down06_MapScripts:: @ 826924F 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down07/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down07_MapScripts:: @ 8269250 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down08/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down08_MapScripts:: @ 8269251 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down09/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down09_MapScripts:: @ 8269252 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down10/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down10_MapScripts:: @ 8269253 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down11/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down11_MapScripts:: @ 8269254 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Entrance/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Entrance_MapScripts:: @ 826910C 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Fork/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Fork_MapScripts:: @ 826910E 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up1/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up1_MapScripts:: @ 826910F 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up2/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up2_MapScripts:: @ 8269110 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up3/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up3_MapScripts:: @ 8269111 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up4/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up4_MapScripts:: @ 8269112 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/RadioTower_3F/scripts.inc: -------------------------------------------------------------------------------- 1 | RadioTower_3F_MapScripts:: @ 822CE25 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/RadioTower_4F/scripts.inc: -------------------------------------------------------------------------------- 1 | RadioTower_4F_MapScripts:: @ 822CE26 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/RecordCorner/scripts.inc: -------------------------------------------------------------------------------- 1 | RecordCorner_MapScripts:: @ 823B77F 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Route104_Prototype/scripts.inc: -------------------------------------------------------------------------------- 1 | Route104_Prototype_MapScripts:: @ 82693F2 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Route122/scripts.inc: -------------------------------------------------------------------------------- 1 | Route122_MapScripts:: @ 81F6146 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room2/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room2_MapScripts:: @ 8234936 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room5/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room5_MapScripts:: @ 8234DC4 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room6/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room6_MapScripts:: @ 8234DC5 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room7/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room7_MapScripts:: @ 8234DC6 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room8/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room8_MapScripts:: @ 8234DC7 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/TradeCenter/scripts.inc: -------------------------------------------------------------------------------- 1 | TradeCenter_MapScripts:: @ 823B77E 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route124/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route124_MapScripts:: @ 81F7722 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route126/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route126_MapScripts:: @ 81F7723 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route128/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route128_MapScripts:: @ 81F7730 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/UnionCave_B2F/scripts.inc: -------------------------------------------------------------------------------- 1 | UnionCave_B2F_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/mystery_event.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/mystery_event.s -------------------------------------------------------------------------------- /data/phone.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/phone.s -------------------------------------------------------------------------------- /data/scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/scripts/.gitignore -------------------------------------------------------------------------------- /data/scripts/flash.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/scripts/flash.inc -------------------------------------------------------------------------------- /data/scripts/pc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/scripts/pc.inc -------------------------------------------------------------------------------- /data/scripts/repel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/scripts/repel.inc -------------------------------------------------------------------------------- /data/scripts/surf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/scripts/surf.inc -------------------------------------------------------------------------------- /data/sound_data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/sound_data.s -------------------------------------------------------------------------------- /data/specials.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/specials.inc -------------------------------------------------------------------------------- /data/text/berries.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/text/berries.inc -------------------------------------------------------------------------------- /data/text/braille.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/text/braille.inc -------------------------------------------------------------------------------- /data/text/mevent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/text/mevent.inc -------------------------------------------------------------------------------- /data/text/pc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/text/pc.inc -------------------------------------------------------------------------------- /data/text/save.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/text/save.inc -------------------------------------------------------------------------------- /data/text/surf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/text/surf.inc -------------------------------------------------------------------------------- /data/text/trainers.pory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/text/trainers.pory -------------------------------------------------------------------------------- /data/text/tv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/text/tv.inc -------------------------------------------------------------------------------- /data/tilesets.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/data/tilesets.s -------------------------------------------------------------------------------- /data/tilesets/primary/secret_base/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /door_ripper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/door_ripper.py -------------------------------------------------------------------------------- /em_layout_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/em_layout_fixer.py -------------------------------------------------------------------------------- /em_tileset_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/em_tileset_fixer.py -------------------------------------------------------------------------------- /find.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/find.sh -------------------------------------------------------------------------------- /find_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/find_missing.py -------------------------------------------------------------------------------- /find_missing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/find_missing.sh -------------------------------------------------------------------------------- /findandreplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/findandreplace.py -------------------------------------------------------------------------------- /font_widths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/font_widths.json -------------------------------------------------------------------------------- /fr_tileset_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/fr_tileset_fixer.py -------------------------------------------------------------------------------- /gflib/bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/bg.c -------------------------------------------------------------------------------- /gflib/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/bg.h -------------------------------------------------------------------------------- /gflib/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/blit.c -------------------------------------------------------------------------------- /gflib/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/blit.h -------------------------------------------------------------------------------- /gflib/dma3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/dma3.h -------------------------------------------------------------------------------- /gflib/dma3_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/dma3_manager.c -------------------------------------------------------------------------------- /gflib/gpu_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/gpu_regs.c -------------------------------------------------------------------------------- /gflib/gpu_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/gpu_regs.h -------------------------------------------------------------------------------- /gflib/io_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/io_reg.c -------------------------------------------------------------------------------- /gflib/io_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/io_reg.h -------------------------------------------------------------------------------- /gflib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/malloc.c -------------------------------------------------------------------------------- /gflib/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/malloc.h -------------------------------------------------------------------------------- /gflib/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/sprite.c -------------------------------------------------------------------------------- /gflib/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/sprite.h -------------------------------------------------------------------------------- /gflib/string_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/string_util.c -------------------------------------------------------------------------------- /gflib/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/string_util.h -------------------------------------------------------------------------------- /gflib/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/text.c -------------------------------------------------------------------------------- /gflib/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/text.h -------------------------------------------------------------------------------- /gflib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/window.c -------------------------------------------------------------------------------- /gflib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/gflib/window.h -------------------------------------------------------------------------------- /graphics/contest/results_screen_link.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /graphics/item_pc/bg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/item_pc/bg.bin -------------------------------------------------------------------------------- /graphics/item_pc/bg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/item_pc/bg.pal -------------------------------------------------------------------------------- /graphics/item_pc/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/item_pc/bg.png -------------------------------------------------------------------------------- /graphics/link/gba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/link/gba.png -------------------------------------------------------------------------------- /graphics/pokenav/bg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/pokenav/bg.bin -------------------------------------------------------------------------------- /graphics/pokenav/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/pokenav/bg.png -------------------------------------------------------------------------------- /graphics/trade/gba.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/trade/gba.pal -------------------------------------------------------------------------------- /graphics/trade/menu.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/trade/menu.pal -------------------------------------------------------------------------------- /graphics/trade/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/trade/menu.png -------------------------------------------------------------------------------- /graphics/trade/misc.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/trade/misc.pal -------------------------------------------------------------------------------- /graphics/trade/text.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/trade/text.pal -------------------------------------------------------------------------------- /graphics/types/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/types/bug.png -------------------------------------------------------------------------------- /graphics/types/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/types/dark.png -------------------------------------------------------------------------------- /graphics/types/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/types/fire.png -------------------------------------------------------------------------------- /graphics/types/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/types/ice.png -------------------------------------------------------------------------------- /graphics/types/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/types/rock.png -------------------------------------------------------------------------------- /graphics/weather/0.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics/weather/0.pal -------------------------------------------------------------------------------- /graphics_file_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/graphics_file_rules.mk -------------------------------------------------------------------------------- /include/agb_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/agb_flash.h -------------------------------------------------------------------------------- /include/apprentice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/apprentice.h -------------------------------------------------------------------------------- /include/bard_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/bard_music.h -------------------------------------------------------------------------------- /include/battle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle.h -------------------------------------------------------------------------------- /include/battle_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_anim.h -------------------------------------------------------------------------------- /include/battle_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_arena.h -------------------------------------------------------------------------------- /include/battle_bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_bg.h -------------------------------------------------------------------------------- /include/battle_dome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_dome.h -------------------------------------------------------------------------------- /include/battle_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_main.h -------------------------------------------------------------------------------- /include/battle_pike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_pike.h -------------------------------------------------------------------------------- /include/battle_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_setup.h -------------------------------------------------------------------------------- /include/battle_tent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_tent.h -------------------------------------------------------------------------------- /include/battle_tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_tower.h -------------------------------------------------------------------------------- /include/battle_tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_tv.h -------------------------------------------------------------------------------- /include/battle_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_util.h -------------------------------------------------------------------------------- /include/battle_util2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/battle_util2.h -------------------------------------------------------------------------------- /include/berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/berry.h -------------------------------------------------------------------------------- /include/berry_blender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/berry_blender.h -------------------------------------------------------------------------------- /include/berry_crush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/berry_crush.h -------------------------------------------------------------------------------- /include/berry_powder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/berry_powder.h -------------------------------------------------------------------------------- /include/bike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/bike.h -------------------------------------------------------------------------------- /include/cable_club.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/cable_club.h -------------------------------------------------------------------------------- /include/card_flip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/card_flip.h -------------------------------------------------------------------------------- /include/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/clock.h -------------------------------------------------------------------------------- /include/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/coins.h -------------------------------------------------------------------------------- /include/confetti_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/confetti_util.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/config.h -------------------------------------------------------------------------------- /include/constants/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/constants/rgb.h -------------------------------------------------------------------------------- /include/constants/tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/constants/tv.h -------------------------------------------------------------------------------- /include/contest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/contest.h -------------------------------------------------------------------------------- /include/contest_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/contest_ai.h -------------------------------------------------------------------------------- /include/contest_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/contest_link.h -------------------------------------------------------------------------------- /include/contest_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/contest_util.h -------------------------------------------------------------------------------- /include/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/credits.h -------------------------------------------------------------------------------- /include/crt0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/crt0.h -------------------------------------------------------------------------------- /include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/data.h -------------------------------------------------------------------------------- /include/day_night.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/day_night.h -------------------------------------------------------------------------------- /include/daycare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/daycare.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/decompress.h -------------------------------------------------------------------------------- /include/decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/decoration.h -------------------------------------------------------------------------------- /include/dewford_trend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/dewford_trend.h -------------------------------------------------------------------------------- /include/diploma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/diploma.h -------------------------------------------------------------------------------- /include/easy_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/easy_chat.h -------------------------------------------------------------------------------- /include/egg_hatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/egg_hatch.h -------------------------------------------------------------------------------- /include/event_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/event_data.h -------------------------------------------------------------------------------- /include/event_scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/event_scripts.h -------------------------------------------------------------------------------- /include/field_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/field_camera.h -------------------------------------------------------------------------------- /include/field_door.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/field_door.h -------------------------------------------------------------------------------- /include/field_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/field_effect.h -------------------------------------------------------------------------------- /include/field_poison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/field_poison.h -------------------------------------------------------------------------------- /include/field_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/field_tasks.h -------------------------------------------------------------------------------- /include/field_weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/field_weather.h -------------------------------------------------------------------------------- /include/fieldmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/fieldmap.h -------------------------------------------------------------------------------- /include/fldeff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/fldeff.h -------------------------------------------------------------------------------- /include/fldeff_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/fldeff_misc.h -------------------------------------------------------------------------------- /include/frontier_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/frontier_pass.h -------------------------------------------------------------------------------- /include/frontier_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/frontier_util.h -------------------------------------------------------------------------------- /include/fruit_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/fruit_tree.h -------------------------------------------------------------------------------- /include/game_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/game_build.h -------------------------------------------------------------------------------- /include/gba/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/gba/defines.h -------------------------------------------------------------------------------- /include/gba/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/gba/gba.h -------------------------------------------------------------------------------- /include/gba/io_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/gba/io_reg.h -------------------------------------------------------------------------------- /include/gba/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/gba/macro.h -------------------------------------------------------------------------------- /include/gba/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/gba/multiboot.h -------------------------------------------------------------------------------- /include/gba/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/gba/syscall.h -------------------------------------------------------------------------------- /include/gba/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/gba/types.h -------------------------------------------------------------------------------- /include/gbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/gbs.h -------------------------------------------------------------------------------- /include/global.berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/global.berry.h -------------------------------------------------------------------------------- /include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/global.h -------------------------------------------------------------------------------- /include/global.tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/global.tv.h -------------------------------------------------------------------------------- /include/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/graphics.h -------------------------------------------------------------------------------- /include/hall_of_fame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/hall_of_fame.h -------------------------------------------------------------------------------- /include/heal_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/heal_location.h -------------------------------------------------------------------------------- /include/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/intro.h -------------------------------------------------------------------------------- /include/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/item.h -------------------------------------------------------------------------------- /include/item_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/item_icon.h -------------------------------------------------------------------------------- /include/item_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/item_menu.h -------------------------------------------------------------------------------- /include/item_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/item_pc.h -------------------------------------------------------------------------------- /include/item_use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/item_use.h -------------------------------------------------------------------------------- /include/landmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/landmark.h -------------------------------------------------------------------------------- /include/librfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/librfu.h -------------------------------------------------------------------------------- /include/lilycove_lady.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/lilycove_lady.h -------------------------------------------------------------------------------- /include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/link.h -------------------------------------------------------------------------------- /include/link_rfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/link_rfu.h -------------------------------------------------------------------------------- /include/list_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/list_menu.h -------------------------------------------------------------------------------- /include/load_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/load_save.h -------------------------------------------------------------------------------- /include/m4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/m4a.h -------------------------------------------------------------------------------- /include/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/mail.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/main.h -------------------------------------------------------------------------------- /include/main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/main_menu.h -------------------------------------------------------------------------------- /include/match_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/match_call.h -------------------------------------------------------------------------------- /include/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/math_util.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/menu_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/menu_helpers.h -------------------------------------------------------------------------------- /include/mevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/mevent.h -------------------------------------------------------------------------------- /include/mevent2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/mevent2.h -------------------------------------------------------------------------------- /include/mevent_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/mevent_client.h -------------------------------------------------------------------------------- /include/mevent_news.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/mevent_news.h -------------------------------------------------------------------------------- /include/mevent_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/mevent_server.h -------------------------------------------------------------------------------- /include/mirage_tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/mirage_tower.h -------------------------------------------------------------------------------- /include/mon_markings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/mon_markings.h -------------------------------------------------------------------------------- /include/money.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/money.h -------------------------------------------------------------------------------- /include/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/multiboot.h -------------------------------------------------------------------------------- /include/mystery_gift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/mystery_gift.h -------------------------------------------------------------------------------- /include/naming_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/naming_screen.h -------------------------------------------------------------------------------- /include/new_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/new_game.h -------------------------------------------------------------------------------- /include/option_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/option_menu.h -------------------------------------------------------------------------------- /include/overworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/overworld.h -------------------------------------------------------------------------------- /include/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/palette.h -------------------------------------------------------------------------------- /include/palette_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/palette_util.h -------------------------------------------------------------------------------- /include/party_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/party_menu.h -------------------------------------------------------------------------------- /include/phone_contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/phone_contact.h -------------------------------------------------------------------------------- /include/phone_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/phone_script.h -------------------------------------------------------------------------------- /include/phone_scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/phone_scripts.h -------------------------------------------------------------------------------- /include/play_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/play_time.h -------------------------------------------------------------------------------- /include/player_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/player_pc.h -------------------------------------------------------------------------------- /include/pokeball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/pokeball.h -------------------------------------------------------------------------------- /include/pokeblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/pokeblock.h -------------------------------------------------------------------------------- /include/pokedex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/pokedex.h -------------------------------------------------------------------------------- /include/pokegear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/pokegear.h -------------------------------------------------------------------------------- /include/pokemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/pokemon.h -------------------------------------------------------------------------------- /include/pokemon_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/pokemon_icon.h -------------------------------------------------------------------------------- /include/pokemon_jump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/pokemon_jump.h -------------------------------------------------------------------------------- /include/pokenav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/pokenav.h -------------------------------------------------------------------------------- /include/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/radio.h -------------------------------------------------------------------------------- /include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/random.h -------------------------------------------------------------------------------- /include/region_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/region_map.h -------------------------------------------------------------------------------- /include/roamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/roamer.h -------------------------------------------------------------------------------- /include/roulette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/roulette.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/safari_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/safari_zone.h -------------------------------------------------------------------------------- /include/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/save.h -------------------------------------------------------------------------------- /include/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/script.h -------------------------------------------------------------------------------- /include/script_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/script_menu.h -------------------------------------------------------------------------------- /include/secret_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/secret_base.h -------------------------------------------------------------------------------- /include/shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/shop.h -------------------------------------------------------------------------------- /include/siirtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/siirtc.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/start_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/start_menu.h -------------------------------------------------------------------------------- /include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/strings.h -------------------------------------------------------------------------------- /include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/task.h -------------------------------------------------------------------------------- /include/text_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/text_window.h -------------------------------------------------------------------------------- /include/tilesets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/tilesets.h -------------------------------------------------------------------------------- /include/time_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/time_events.h -------------------------------------------------------------------------------- /include/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/trade.h -------------------------------------------------------------------------------- /include/trader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/trader.h -------------------------------------------------------------------------------- /include/trainer_see.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/trainer_see.h -------------------------------------------------------------------------------- /include/trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/trig.h -------------------------------------------------------------------------------- /include/tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/tv.h -------------------------------------------------------------------------------- /include/union_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/union_room.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/util.h -------------------------------------------------------------------------------- /include/wallclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/include/wallclock.h -------------------------------------------------------------------------------- /json_data_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/json_data_rules.mk -------------------------------------------------------------------------------- /ld_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/ld_script.txt -------------------------------------------------------------------------------- /ld_script_modern.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/ld_script_modern.txt -------------------------------------------------------------------------------- /map_data_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/map_data_rules.mk -------------------------------------------------------------------------------- /mapadder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/mapadder.py -------------------------------------------------------------------------------- /other/New CD logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/other/New CD logo.ai -------------------------------------------------------------------------------- /other/New CD logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/other/New CD logo.png -------------------------------------------------------------------------------- /other/apricorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/other/apricorn.png -------------------------------------------------------------------------------- /other/badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/other/badges.png -------------------------------------------------------------------------------- /other/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/other/credits.txt -------------------------------------------------------------------------------- /other/lance-SDH.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/other/lance-SDH.PNG -------------------------------------------------------------------------------- /other/misc info.txt: -------------------------------------------------------------------------------- 1 | Window lights are 60 degree hue in PS -------------------------------------------------------------------------------- /other/pallettown.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/other/pallettown.mid -------------------------------------------------------------------------------- /other/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/other/qrcode.png -------------------------------------------------------------------------------- /overworld_ripper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/overworld_ripper.py -------------------------------------------------------------------------------- /porymap.project.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/porymap.project.cfg -------------------------------------------------------------------------------- /poryscript_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/poryscript_clean.py -------------------------------------------------------------------------------- /release_builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/release_builds.py -------------------------------------------------------------------------------- /rom.sha1: -------------------------------------------------------------------------------- 1 | f3ae088181bf583e55daf962a92bb46f4f1d07b7 pokeemerald.gba 2 | -------------------------------------------------------------------------------- /songs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/songs.mk -------------------------------------------------------------------------------- /sound/MPlayDef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/sound/MPlayDef.s -------------------------------------------------------------------------------- /sound/cry_tables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/sound/cry_tables.inc -------------------------------------------------------------------------------- /sound/programmable_wave_samples/86B4910.pcm: -------------------------------------------------------------------------------- 1 | &8J\n~lZH6$ -------------------------------------------------------------------------------- /sound/song_table.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/sound/song_table.inc -------------------------------------------------------------------------------- /spritesheet_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/spritesheet_rules.mk -------------------------------------------------------------------------------- /src/agb_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/agb_flash.c -------------------------------------------------------------------------------- /src/agb_flash_1m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/agb_flash_1m.c -------------------------------------------------------------------------------- /src/agb_flash_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/agb_flash_le.c -------------------------------------------------------------------------------- /src/agb_flash_mx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/agb_flash_mx.c -------------------------------------------------------------------------------- /src/apprentice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/apprentice.c -------------------------------------------------------------------------------- /src/apricorn_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/apricorn_menu.c -------------------------------------------------------------------------------- /src/bard_music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/bard_music.c -------------------------------------------------------------------------------- /src/battle_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_anim.c -------------------------------------------------------------------------------- /src/battle_anim_bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_anim_bug.c -------------------------------------------------------------------------------- /src/battle_anim_ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_anim_ice.c -------------------------------------------------------------------------------- /src/battle_arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_arena.c -------------------------------------------------------------------------------- /src/battle_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_bg.c -------------------------------------------------------------------------------- /src/battle_dome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_dome.c -------------------------------------------------------------------------------- /src/battle_factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_factory.c -------------------------------------------------------------------------------- /src/battle_intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_intro.c -------------------------------------------------------------------------------- /src/battle_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_main.c -------------------------------------------------------------------------------- /src/battle_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_message.c -------------------------------------------------------------------------------- /src/battle_palace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_palace.c -------------------------------------------------------------------------------- /src/battle_pike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_pike.c -------------------------------------------------------------------------------- /src/battle_pyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_pyramid.c -------------------------------------------------------------------------------- /src/battle_records.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_records.c -------------------------------------------------------------------------------- /src/battle_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_setup.c -------------------------------------------------------------------------------- /src/battle_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_tent.c -------------------------------------------------------------------------------- /src/battle_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_tower.c -------------------------------------------------------------------------------- /src/battle_tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_tv.c -------------------------------------------------------------------------------- /src/battle_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_util.c -------------------------------------------------------------------------------- /src/battle_util2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/battle_util2.c -------------------------------------------------------------------------------- /src/berry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/berry.c -------------------------------------------------------------------------------- /src/berry_blender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/berry_blender.c -------------------------------------------------------------------------------- /src/berry_crush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/berry_crush.c -------------------------------------------------------------------------------- /src/berry_powder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/berry_powder.c -------------------------------------------------------------------------------- /src/bike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/bike.c -------------------------------------------------------------------------------- /src/braille_puzzles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/braille_puzzles.c -------------------------------------------------------------------------------- /src/buenas_password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/buenas_password.c -------------------------------------------------------------------------------- /src/cable_car.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/cable_car.c -------------------------------------------------------------------------------- /src/cable_club.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/cable_club.c -------------------------------------------------------------------------------- /src/card_flip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/card_flip.c -------------------------------------------------------------------------------- /src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/clock.c -------------------------------------------------------------------------------- /src/coins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/coins.c -------------------------------------------------------------------------------- /src/confetti_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/confetti_util.c -------------------------------------------------------------------------------- /src/contest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/contest.c -------------------------------------------------------------------------------- /src/contest_ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/contest_ai.c -------------------------------------------------------------------------------- /src/contest_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/contest_effect.c -------------------------------------------------------------------------------- /src/contest_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/contest_link.c -------------------------------------------------------------------------------- /src/contest_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/contest_util.c -------------------------------------------------------------------------------- /src/credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/credits.c -------------------------------------------------------------------------------- /src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/crt0.s -------------------------------------------------------------------------------- /src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/data.c -------------------------------------------------------------------------------- /src/data/gbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/data/gbs.h -------------------------------------------------------------------------------- /src/data/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/data/items.json -------------------------------------------------------------------------------- /src/data/party_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/data/party_menu.h -------------------------------------------------------------------------------- /src/data/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/data/trade.h -------------------------------------------------------------------------------- /src/data/trainers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/data/trainers.h -------------------------------------------------------------------------------- /src/data/union_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/data/union_room.h -------------------------------------------------------------------------------- /src/day_night.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/day_night.c -------------------------------------------------------------------------------- /src/daycare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/daycare.c -------------------------------------------------------------------------------- /src/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/decompress.c -------------------------------------------------------------------------------- /src/decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/decoration.c -------------------------------------------------------------------------------- /src/dewford_trend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/dewford_trend.c -------------------------------------------------------------------------------- /src/digit_obj_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/digit_obj_util.c -------------------------------------------------------------------------------- /src/diploma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/diploma.c -------------------------------------------------------------------------------- /src/easy_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/easy_chat.c -------------------------------------------------------------------------------- /src/egg_hatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/egg_hatch.c -------------------------------------------------------------------------------- /src/ereader_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/ereader_helpers.c -------------------------------------------------------------------------------- /src/ereader_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/ereader_screen.c -------------------------------------------------------------------------------- /src/event_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/event_data.c -------------------------------------------------------------------------------- /src/evolution_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/evolution_scene.c -------------------------------------------------------------------------------- /src/faraway_island.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/faraway_island.c -------------------------------------------------------------------------------- /src/field_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/field_camera.c -------------------------------------------------------------------------------- /src/field_door.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/field_door.c -------------------------------------------------------------------------------- /src/field_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/field_effect.c -------------------------------------------------------------------------------- /src/field_poison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/field_poison.c -------------------------------------------------------------------------------- /src/field_specials.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/field_specials.c -------------------------------------------------------------------------------- /src/field_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/field_tasks.c -------------------------------------------------------------------------------- /src/field_weather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/field_weather.c -------------------------------------------------------------------------------- /src/fieldmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/fieldmap.c -------------------------------------------------------------------------------- /src/fldeff_cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/fldeff_cut.c -------------------------------------------------------------------------------- /src/fldeff_dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/fldeff_dig.c -------------------------------------------------------------------------------- /src/fldeff_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/fldeff_flash.c -------------------------------------------------------------------------------- /src/fldeff_headbutt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/fldeff_headbutt.c -------------------------------------------------------------------------------- /src/fldeff_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/fldeff_misc.c -------------------------------------------------------------------------------- /src/fldeff_strength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/fldeff_strength.c -------------------------------------------------------------------------------- /src/fldeff_teleport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/fldeff_teleport.c -------------------------------------------------------------------------------- /src/frontier_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/frontier_pass.c -------------------------------------------------------------------------------- /src/frontier_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/frontier_util.c -------------------------------------------------------------------------------- /src/fruit_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/fruit_tree.c -------------------------------------------------------------------------------- /src/game_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/game_build.c -------------------------------------------------------------------------------- /src/gbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/gbs.c -------------------------------------------------------------------------------- /src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/graphics.c -------------------------------------------------------------------------------- /src/hall_of_fame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/hall_of_fame.c -------------------------------------------------------------------------------- /src/heal_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/heal_location.c -------------------------------------------------------------------------------- /src/hof_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/hof_pc.c -------------------------------------------------------------------------------- /src/intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/intro.c -------------------------------------------------------------------------------- /src/item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/item.c -------------------------------------------------------------------------------- /src/item_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/item_icon.c -------------------------------------------------------------------------------- /src/item_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/item_menu.c -------------------------------------------------------------------------------- /src/item_menu_icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/item_menu_icons.c -------------------------------------------------------------------------------- /src/item_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/item_pc.c -------------------------------------------------------------------------------- /src/item_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/item_use.c -------------------------------------------------------------------------------- /src/landmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/landmark.c -------------------------------------------------------------------------------- /src/libgcnmultiboot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/libgcnmultiboot.s -------------------------------------------------------------------------------- /src/libisagbprn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/libisagbprn.c -------------------------------------------------------------------------------- /src/librfu_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/librfu_intr.c -------------------------------------------------------------------------------- /src/librfu_rfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/librfu_rfu.c -------------------------------------------------------------------------------- /src/librfu_sio32id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/librfu_sio32id.c -------------------------------------------------------------------------------- /src/librfu_stwi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/librfu_stwi.c -------------------------------------------------------------------------------- /src/lilycove_lady.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/lilycove_lady.c -------------------------------------------------------------------------------- /src/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/link.c -------------------------------------------------------------------------------- /src/link_rfu_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/link_rfu_2.c -------------------------------------------------------------------------------- /src/link_rfu_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/link_rfu_3.c -------------------------------------------------------------------------------- /src/list_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/list_menu.c -------------------------------------------------------------------------------- /src/load_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/load_save.c -------------------------------------------------------------------------------- /src/lottery_corner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/lottery_corner.c -------------------------------------------------------------------------------- /src/m4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/m4a.c -------------------------------------------------------------------------------- /src/m4a_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/m4a_1.s -------------------------------------------------------------------------------- /src/m4a_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/m4a_tables.c -------------------------------------------------------------------------------- /src/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mail.c -------------------------------------------------------------------------------- /src/mail_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mail_data.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/main_menu.c -------------------------------------------------------------------------------- /src/map_name_popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/map_name_popup.c -------------------------------------------------------------------------------- /src/match_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/match_call.c -------------------------------------------------------------------------------- /src/math_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/math_util.c -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/menu_helpers.c -------------------------------------------------------------------------------- /src/mevent2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mevent2.c -------------------------------------------------------------------------------- /src/mevent_801BAAC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mevent_801BAAC.c -------------------------------------------------------------------------------- /src/mevent_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mevent_client.c -------------------------------------------------------------------------------- /src/mevent_news.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mevent_news.c -------------------------------------------------------------------------------- /src/mevent_scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mevent_scripts.c -------------------------------------------------------------------------------- /src/mevent_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mevent_server.c -------------------------------------------------------------------------------- /src/mirage_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mirage_tower.c -------------------------------------------------------------------------------- /src/mom_bank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mom_bank.c -------------------------------------------------------------------------------- /src/mon_markings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mon_markings.c -------------------------------------------------------------------------------- /src/money.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/money.c -------------------------------------------------------------------------------- /src/move_relearner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/move_relearner.c -------------------------------------------------------------------------------- /src/multiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/multiboot.c -------------------------------------------------------------------------------- /src/mystery_gift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/mystery_gift.c -------------------------------------------------------------------------------- /src/naming_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/naming_screen.c -------------------------------------------------------------------------------- /src/new_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/new_game.c -------------------------------------------------------------------------------- /src/option_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/option_menu.c -------------------------------------------------------------------------------- /src/overworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/overworld.c -------------------------------------------------------------------------------- /src/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/palette.c -------------------------------------------------------------------------------- /src/palette_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/palette_util.c -------------------------------------------------------------------------------- /src/party_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/party_menu.c -------------------------------------------------------------------------------- /src/phone_contact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/phone_contact.c -------------------------------------------------------------------------------- /src/phone_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/phone_script.c -------------------------------------------------------------------------------- /src/play_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/play_time.c -------------------------------------------------------------------------------- /src/player_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/player_pc.c -------------------------------------------------------------------------------- /src/pokeball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/pokeball.c -------------------------------------------------------------------------------- /src/pokeblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/pokeblock.c -------------------------------------------------------------------------------- /src/pokeblock_feed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/pokeblock_feed.c -------------------------------------------------------------------------------- /src/pokedex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/pokedex.c -------------------------------------------------------------------------------- /src/pokegear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/pokegear.c -------------------------------------------------------------------------------- /src/pokemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/pokemon.c -------------------------------------------------------------------------------- /src/pokemon_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/pokemon_icon.c -------------------------------------------------------------------------------- /src/pokemon_jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/pokemon_jump.c -------------------------------------------------------------------------------- /src/pokenav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/pokenav.c -------------------------------------------------------------------------------- /src/prof_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/prof_pc.c -------------------------------------------------------------------------------- /src/radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/radio.c -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/random.c -------------------------------------------------------------------------------- /src/rayquaza_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/rayquaza_scene.c -------------------------------------------------------------------------------- /src/record_mixing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/record_mixing.c -------------------------------------------------------------------------------- /src/recorded_battle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/recorded_battle.c -------------------------------------------------------------------------------- /src/region_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/region_map.c -------------------------------------------------------------------------------- /src/reset_save_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/reset_save_heap.c -------------------------------------------------------------------------------- /src/roamer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/roamer.c -------------------------------------------------------------------------------- /src/rotating_gate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/rotating_gate.c -------------------------------------------------------------------------------- /src/roulette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/roulette.c -------------------------------------------------------------------------------- /src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/rtc.c -------------------------------------------------------------------------------- /src/safari_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/safari_zone.c -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/save.c -------------------------------------------------------------------------------- /src/save_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/save_location.c -------------------------------------------------------------------------------- /src/scanline_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/scanline_effect.c -------------------------------------------------------------------------------- /src/scrcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/scrcmd.c -------------------------------------------------------------------------------- /src/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/script.c -------------------------------------------------------------------------------- /src/script_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/script_menu.c -------------------------------------------------------------------------------- /src/script_movement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/script_movement.c -------------------------------------------------------------------------------- /src/secret_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/secret_base.c -------------------------------------------------------------------------------- /src/shop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/shop.c -------------------------------------------------------------------------------- /src/siirtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/siirtc.c -------------------------------------------------------------------------------- /src/slot_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/slot_machine.c -------------------------------------------------------------------------------- /src/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/sound.c -------------------------------------------------------------------------------- /src/start_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/start_menu.c -------------------------------------------------------------------------------- /src/starter_choose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/starter_choose.c -------------------------------------------------------------------------------- /src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/strings.c -------------------------------------------------------------------------------- /src/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/task.c -------------------------------------------------------------------------------- /src/text_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/text_window.c -------------------------------------------------------------------------------- /src/tileset_anims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/tileset_anims.c -------------------------------------------------------------------------------- /src/time_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/time_events.c -------------------------------------------------------------------------------- /src/title_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/title_screen.c -------------------------------------------------------------------------------- /src/trade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/trade.c -------------------------------------------------------------------------------- /src/trader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/trader.c -------------------------------------------------------------------------------- /src/trainer_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/trainer_card.c -------------------------------------------------------------------------------- /src/trainer_hill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/trainer_hill.c -------------------------------------------------------------------------------- /src/trainer_see.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/trainer_see.c -------------------------------------------------------------------------------- /src/trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/trig.c -------------------------------------------------------------------------------- /src/tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/tv.c -------------------------------------------------------------------------------- /src/union_room.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/union_room.c -------------------------------------------------------------------------------- /src/union_room_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/union_room_chat.c -------------------------------------------------------------------------------- /src/unk_text_util_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/unk_text_util_2.c -------------------------------------------------------------------------------- /src/use_pokeblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/use_pokeblock.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/util.c -------------------------------------------------------------------------------- /src/walda_phrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/walda_phrase.c -------------------------------------------------------------------------------- /src/wallclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/wallclock.c -------------------------------------------------------------------------------- /src/wild_encounter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/src/wild_encounter.c -------------------------------------------------------------------------------- /sym_bss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/sym_bss.txt -------------------------------------------------------------------------------- /sym_common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/sym_common.txt -------------------------------------------------------------------------------- /sym_ewram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/sym_ewram.txt -------------------------------------------------------------------------------- /tilemap_shifter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tilemap_shifter.py -------------------------------------------------------------------------------- /tileset_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tileset_fixer.py -------------------------------------------------------------------------------- /tileset_palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tileset_palettes.py -------------------------------------------------------------------------------- /tileset_ripper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tileset_ripper.py -------------------------------------------------------------------------------- /tileset_ripper_cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tileset_ripper_cd.py -------------------------------------------------------------------------------- /tileset_sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tileset_sanitizer.py -------------------------------------------------------------------------------- /tools/aif2pcm/.gitignore: -------------------------------------------------------------------------------- 1 | aif2pcm 2 | 3 | -------------------------------------------------------------------------------- /tools/aif2pcm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/aif2pcm/LICENSE -------------------------------------------------------------------------------- /tools/aif2pcm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/aif2pcm/main.c -------------------------------------------------------------------------------- /tools/bin2c/.gitignore: -------------------------------------------------------------------------------- 1 | bin2c 2 | -------------------------------------------------------------------------------- /tools/bin2c/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/bin2c/LICENSE -------------------------------------------------------------------------------- /tools/bin2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/bin2c/Makefile -------------------------------------------------------------------------------- /tools/bin2c/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/bin2c/bin2c.c -------------------------------------------------------------------------------- /tools/gbafix/.gitignore: -------------------------------------------------------------------------------- 1 | gbafix 2 | README 3 | -------------------------------------------------------------------------------- /tools/gbafix/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbafix/COPYING -------------------------------------------------------------------------------- /tools/gbafix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbafix/Makefile -------------------------------------------------------------------------------- /tools/gbafix/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbafix/elf.h -------------------------------------------------------------------------------- /tools/gbafix/gbafix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbafix/gbafix.c -------------------------------------------------------------------------------- /tools/gbagfx/.gitignore: -------------------------------------------------------------------------------- 1 | gbagfx 2 | -------------------------------------------------------------------------------- /tools/gbagfx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/LICENSE -------------------------------------------------------------------------------- /tools/gbagfx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/Makefile -------------------------------------------------------------------------------- /tools/gbagfx/act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/act.c -------------------------------------------------------------------------------- /tools/gbagfx/act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/act.h -------------------------------------------------------------------------------- /tools/gbagfx/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/font.c -------------------------------------------------------------------------------- /tools/gbagfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/font.h -------------------------------------------------------------------------------- /tools/gbagfx/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/gfx.c -------------------------------------------------------------------------------- /tools/gbagfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/gfx.h -------------------------------------------------------------------------------- /tools/gbagfx/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/global.h -------------------------------------------------------------------------------- /tools/gbagfx/huff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/huff.c -------------------------------------------------------------------------------- /tools/gbagfx/huff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/huff.h -------------------------------------------------------------------------------- /tools/gbagfx/lz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/lz.c -------------------------------------------------------------------------------- /tools/gbagfx/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/lz.h -------------------------------------------------------------------------------- /tools/gbagfx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/main.c -------------------------------------------------------------------------------- /tools/gbagfx/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/rl.c -------------------------------------------------------------------------------- /tools/gbagfx/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/rl.h -------------------------------------------------------------------------------- /tools/gbagfx/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/util.c -------------------------------------------------------------------------------- /tools/gbagfx/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/gbagfx/util.h -------------------------------------------------------------------------------- /tools/jsonproc/.gitignore: -------------------------------------------------------------------------------- 1 | jsonproc 2 | -------------------------------------------------------------------------------- /tools/mapjson/.gitignore: -------------------------------------------------------------------------------- 1 | mapjson 2 | -------------------------------------------------------------------------------- /tools/mid2agb/.gitignore: -------------------------------------------------------------------------------- 1 | mid2agb 2 | -------------------------------------------------------------------------------- /tools/mid2agb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/mid2agb/LICENSE -------------------------------------------------------------------------------- /tools/mid2agb/agb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/mid2agb/agb.cpp -------------------------------------------------------------------------------- /tools/mid2agb/agb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/mid2agb/agb.h -------------------------------------------------------------------------------- /tools/mid2agb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/mid2agb/error.h -------------------------------------------------------------------------------- /tools/mid2agb/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/mid2agb/main.h -------------------------------------------------------------------------------- /tools/mid2agb/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/mid2agb/midi.h -------------------------------------------------------------------------------- /tools/poryscript/.gitignore: -------------------------------------------------------------------------------- 1 | poryscript 2 | 3 | -------------------------------------------------------------------------------- /tools/preproc/.gitignore: -------------------------------------------------------------------------------- 1 | preproc 2 | -------------------------------------------------------------------------------- /tools/preproc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/preproc/LICENSE -------------------------------------------------------------------------------- /tools/preproc/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/preproc/utf8.h -------------------------------------------------------------------------------- /tools/ramscrgen/.gitignore: -------------------------------------------------------------------------------- 1 | ramscrgen 2 | -------------------------------------------------------------------------------- /tools/ramscrgen/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/ramscrgen/elf.h -------------------------------------------------------------------------------- /tools/rsfont/.gitignore: -------------------------------------------------------------------------------- 1 | rsfont 2 | -------------------------------------------------------------------------------- /tools/rsfont/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/rsfont/LICENSE -------------------------------------------------------------------------------- /tools/rsfont/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/rsfont/Makefile -------------------------------------------------------------------------------- /tools/rsfont/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/rsfont/font.c -------------------------------------------------------------------------------- /tools/rsfont/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/rsfont/font.h -------------------------------------------------------------------------------- /tools/rsfont/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/rsfont/gfx.h -------------------------------------------------------------------------------- /tools/rsfont/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/rsfont/global.h -------------------------------------------------------------------------------- /tools/rsfont/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/rsfont/main.c -------------------------------------------------------------------------------- /tools/rsfont/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/rsfont/util.c -------------------------------------------------------------------------------- /tools/rsfont/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/rsfont/util.h -------------------------------------------------------------------------------- /tools/scaninc/.gitignore: -------------------------------------------------------------------------------- 1 | scaninc 2 | -------------------------------------------------------------------------------- /tools/scaninc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/tools/scaninc/LICENSE -------------------------------------------------------------------------------- /tools/xorencrypt/.gitignore: -------------------------------------------------------------------------------- 1 | xorencrypt 2 | -------------------------------------------------------------------------------- /trainer_rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sierraffinity/CrystalDust/HEAD/trainer_rename.sh --------------------------------------------------------------------------------