├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── calcrom │ ├── calcrom.pl │ └── webhook.sh ├── pull_request_template.md └── workflows │ └── build.yml ├── .gitignore ├── INSTALL.md ├── Makefile ├── README.md ├── asm ├── macros.inc └── macros │ ├── asm.inc │ ├── battle_ai_script.inc │ ├── battle_anim_script.inc │ ├── battle_frontier │ ├── apprentice.inc │ ├── battle_arena.inc │ ├── battle_dome.inc │ ├── battle_factory.inc │ ├── battle_palace.inc │ ├── battle_pike.inc │ ├── battle_pyramid.inc │ ├── battle_tower.inc │ └── frontier_util.inc │ ├── battle_script.inc │ ├── battle_tent.inc │ ├── contest_ai_script.inc │ ├── event.inc │ ├── field_effect_script.inc │ ├── function.inc │ ├── m4a.inc │ ├── map.inc │ ├── movement.inc │ ├── music_voice.inc │ └── trainer_hill.inc ├── asmdiff.ps1 ├── asmdiff.sh ├── audio_rules.mk ├── charmap.txt ├── compile_flags.txt ├── constants ├── constants.inc ├── gba_constants.inc ├── global.inc ├── m4a_constants.inc └── tms_hms.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 ├── layouts │ ├── .gitignore │ ├── AbandonedShip_CaptainsOffice │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Corridors_1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Corridors_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Deck │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_HiddenFloorCorridors │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_HiddenFloorRooms │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Room_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Rooms2_1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Rooms2_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Rooms_1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Rooms_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Underwater1 │ │ ├── border.bin │ │ └── map.bin │ ├── AbandonedShip_Underwater2 │ │ ├── border.bin │ │ └── map.bin │ ├── AlteringCave │ │ ├── border.bin │ │ └── map.bin │ ├── AncientTomb │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_1F │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_UnusedRubyMap1 │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_UnusedRubyMap2 │ │ ├── border.bin │ │ └── map.bin │ ├── AquaHideout_UnusedRubyMap3 │ │ ├── border.bin │ │ └── map.bin │ ├── ArtisanCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── ArtisanCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── BattleColosseum_2P │ │ ├── border.bin │ │ └── map.bin │ ├── BattleColosseum_4P │ │ ├── border.bin │ │ └── map.bin │ ├── BattleElevator │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleArenaBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleArenaCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleArenaLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleDomeBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleDomeCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleDomeLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleDomePreBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleFactoryBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleFactoryLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleFactoryPreBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePalaceBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePalaceCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePalaceLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeRoomFinal │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeRoomNormal │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeRoomUnused │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeRoomWildMons │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePikeThreePathRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePyramidFloor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePyramidLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattlePyramidTop │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleTowerBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleTowerCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleTowerLobby │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleTowerMultiCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_BattleTowerMultiPartnerRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_ExchangeServiceCorner │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_Lounge1 │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_Lounge2 │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_OutsideEast │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_OutsideWest │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_RankingHall │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_ReceptionGate │ │ ├── border.bin │ │ └── map.bin │ ├── BattleFrontier_ScottsHouse │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare01 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare02 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare03 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare04 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare05 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare06 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare07 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare08 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare09 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare10 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare11 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare12 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare13 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare14 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare15 │ │ ├── border.bin │ │ └── map.bin │ ├── BattlePyramidSquare16 │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTentBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTentCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── BattleTentLobby │ │ ├── border.bin │ │ └── map.bin │ ├── 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 │ ├── ContestHall │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHallBeauty │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHallCool │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHallCute │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHallSmart │ │ ├── border.bin │ │ └── map.bin │ ├── ContestHallTough │ │ ├── border.bin │ │ └── map.bin │ ├── DesertRuins │ │ ├── border.bin │ │ └── map.bin │ ├── DesertUnderpass │ │ ├── border.bin │ │ └── map.bin │ ├── DewfordTown │ │ ├── border.bin │ │ └── map.bin │ ├── DewfordTown_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── DewfordTown_Hall │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_ChampionsRoom │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_DrakesRoom │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_GlaciasRoom │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_Hall4 │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_HallOfFame │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_PhoebesRoom │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_PokemonLeague_1F │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_ShortHall │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_SidneysRoom │ │ ├── border.bin │ │ └── map.bin │ ├── FallarborTown │ │ ├── border.bin │ │ └── map.bin │ ├── FallarborTown_LeftoverRSContestHall │ │ ├── border.bin │ │ └── map.bin │ ├── FallarborTown_LeftoverRSContestLobby │ │ ├── border.bin │ │ └── map.bin │ ├── FarawayIsland_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── FarawayIsland_Interior │ │ ├── border.bin │ │ └── map.bin │ ├── FieryPath │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_DecorationShop │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── GraniteCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── GraniteCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── GraniteCave_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── GraniteCave_StevensRoom │ │ ├── border.bin │ │ └── map.bin │ ├── Harbor │ │ ├── border.bin │ │ └── map.bin │ ├── House1 │ │ ├── border.bin │ │ └── map.bin │ ├── House2 │ │ ├── border.bin │ │ └── map.bin │ ├── House3 │ │ ├── border.bin │ │ └── map.bin │ ├── House4 │ │ ├── border.bin │ │ └── map.bin │ ├── HouseWithBed │ │ ├── border.bin │ │ └── map.bin │ ├── InsideOfTruck │ │ ├── border.bin │ │ └── map.bin │ ├── IslandCave │ │ ├── border.bin │ │ └── map.bin │ ├── IslandHarbor │ │ ├── border.bin │ │ └── map.bin │ ├── JaggedPass │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown_Gym_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown_Gym_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown_HerbShop │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_ContestHall │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_ContestLobby │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_CoveLilyMotel_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_CoveLilyMotel_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStoreElevator │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStoreRooftop │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStore_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStore_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStore_3F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStore_4F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_DepartmentStore_5F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_LilycoveMuseum_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_LilycoveMuseum_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LilycoveCity_PokemonTrainerFanClub │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_BrendansHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_BrendansHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_MaysHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_MaysHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_ProfessorBirchsLab │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_ProfessorBirchsLabWithTable │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_2F_1R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_2F_2R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_2F_3R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_3F_1R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_3F_2R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_3F_3R │ │ ├── border.bin │ │ └── map.bin │ ├── MagmaHideout_4F │ │ ├── border.bin │ │ └── map.bin │ ├── MarineCave_End │ │ ├── border.bin │ │ └── map.bin │ ├── MarineCave_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── Mart │ │ ├── border.bin │ │ └── map.bin │ ├── MauvilleCity │ │ ├── border.bin │ │ └── map.bin │ ├── MauvilleCity_BikeShop │ │ ├── border.bin │ │ └── map.bin │ ├── MauvilleCity_GameCorner │ │ ├── border.bin │ │ └── map.bin │ ├── MauvilleCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_1F_1R │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_1F_2R │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_B1F_1R │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_B1F_2R │ │ ├── border.bin │ │ └── map.bin │ ├── MeteorFalls_StevensCave │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_2F │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_3F │ │ ├── border.bin │ │ └── map.bin │ ├── MirageTower_4F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_GameCorner_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_GameCorner_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_SpaceCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_SpaceCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_StevensHouse │ │ ├── border.bin │ │ └── map.bin │ ├── MtChimney │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_2F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_3F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_4F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_5F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_6F │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── MtPyre_Summit │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Bottom │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Fork │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_LadderRoom1 │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_LadderRoom2 │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Top │ │ ├── border.bin │ │ └── map.bin │ ├── NewMauville_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── NewMauville_Inside │ │ ├── border.bin │ │ └── map.bin │ ├── OldaleTown │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgCity │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── PetalburgWoods │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── RecordCorner │ │ ├── border.bin │ │ └── map.bin │ ├── Route101 │ │ ├── border.bin │ │ └── map.bin │ ├── Route102 │ │ ├── border.bin │ │ └── map.bin │ ├── Route103 │ │ ├── border.bin │ │ └── map.bin │ ├── Route104 │ │ ├── border.bin │ │ └── map.bin │ ├── Route104_MrBrineysHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route104_PrettyPetalFlowerShop │ │ ├── border.bin │ │ └── map.bin │ ├── Route104_Prototype │ │ ├── border.bin │ │ └── map.bin │ ├── Route105 │ │ ├── border.bin │ │ └── map.bin │ ├── Route106 │ │ ├── border.bin │ │ └── map.bin │ ├── Route107 │ │ ├── border.bin │ │ └── map.bin │ ├── Route108 │ │ ├── border.bin │ │ └── map.bin │ ├── Route109 │ │ ├── border.bin │ │ └── map.bin │ ├── Route109_SeashoreHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route110 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_SeasideCyclingRoadEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHouseCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHouseEnd │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHouseEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle1 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle2 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle3 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle4 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle5 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle6 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle7 │ │ ├── border.bin │ │ └── map.bin │ ├── Route110_TrickHousePuzzle8 │ │ ├── border.bin │ │ └── map.bin │ ├── Route111 │ │ ├── border.bin │ │ └── map.bin │ ├── Route111_NoMirageTower │ │ ├── border.bin │ │ └── map.bin │ ├── Route112 │ │ ├── border.bin │ │ └── map.bin │ ├── Route113 │ │ ├── border.bin │ │ └── map.bin │ ├── Route114 │ │ ├── border.bin │ │ └── map.bin │ ├── Route114_FossilManiacsHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route114_FossilManiacsTunnel │ │ ├── border.bin │ │ └── map.bin │ ├── Route114_LanettesHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route115 │ │ ├── border.bin │ │ └── map.bin │ ├── Route116 │ │ ├── border.bin │ │ └── map.bin │ ├── Route116_TunnelersRestHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route117 │ │ ├── border.bin │ │ └── map.bin │ ├── Route117_PokemonDayCare │ │ ├── border.bin │ │ └── map.bin │ ├── Route118 │ │ ├── border.bin │ │ └── map.bin │ ├── Route119 │ │ ├── border.bin │ │ └── map.bin │ ├── Route119_WeatherInstitute_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Route119_WeatherInstitute_2F │ │ ├── border.bin │ │ └── map.bin │ ├── Route120 │ │ ├── border.bin │ │ └── map.bin │ ├── Route121 │ │ ├── border.bin │ │ └── map.bin │ ├── Route121_SafariZoneEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route122 │ │ ├── border.bin │ │ └── map.bin │ ├── Route123 │ │ ├── border.bin │ │ └── map.bin │ ├── Route124 │ │ ├── border.bin │ │ └── map.bin │ ├── Route124_DivingTreasureHuntersHouse │ │ ├── border.bin │ │ └── map.bin │ ├── Route125 │ │ ├── border.bin │ │ └── map.bin │ ├── Route126 │ │ ├── border.bin │ │ └── map.bin │ ├── Route127 │ │ ├── border.bin │ │ └── map.bin │ ├── Route128 │ │ ├── border.bin │ │ └── map.bin │ ├── Route129 │ │ ├── border.bin │ │ └── map.bin │ ├── Route130 │ │ ├── border.bin │ │ └── map.bin │ ├── Route130_MirageIsland │ │ ├── border.bin │ │ └── map.bin │ ├── Route131 │ │ ├── border.bin │ │ └── map.bin │ ├── Route131_SkyPillar │ │ ├── border.bin │ │ └── map.bin │ ├── Route132 │ │ ├── border.bin │ │ └── map.bin │ ├── Route133 │ │ ├── border.bin │ │ └── map.bin │ ├── Route134 │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_CuttersHouse │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_DevonCorp_1F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_DevonCorp_2F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_DevonCorp_3F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Flat1_1F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Flat1_2F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Flat2_1F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Flat2_2F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Flat2_3F │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_House │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_PokemonSchool │ │ ├── border.bin │ │ └── map.bin │ ├── RusturfTunnel │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidalCorridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidalLowerDeck │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidalRooms │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_North │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Northeast │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Northwest │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_RestHouse │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_South │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Southeast │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Southwest │ │ ├── border.bin │ │ └── map.bin │ ├── 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 │ ├── SootopolisCity │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_Gym_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_Gym_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_House3 │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_LegendsBattle │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_LotadAndSeedotHouse │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_MysteryEventsHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_MysteryEventsHouse_1F_StairsUnblocked │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_MysteryEventsHouse_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── SouthernIsland_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── SouthernIsland_Interior │ │ ├── border.bin │ │ └── map.bin │ ├── TerraCave_End │ │ ├── border.bin │ │ └── map.bin │ ├── TerraCave_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── TradeCenter │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_1F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_2F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_3F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_4F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerHill_Roof │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_MarineCave │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route105 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route124 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route125 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route126 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route127 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route128 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route129 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_Route134 │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_SeafloorCavern │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_SealedChamber │ │ ├── border.bin │ │ └── map.bin │ ├── Underwater_SootopolisCity │ │ ├── border.bin │ │ └── map.bin │ ├── UnionRoom │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave1 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave10 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave11 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave12 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave13 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave14 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave2 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave3 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave4 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave5 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave6 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave7 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave8 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedCave9 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall1 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall2 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall3 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall4 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall5 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestHall6 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestRoom1 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestRoom2 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedContestRoom3 │ │ ├── border.bin │ │ └── map.bin │ ├── UnusedOutdoorArea │ │ ├── border.bin │ │ └── map.bin │ ├── VerdanturfTown │ │ ├── border.bin │ │ └── map.bin │ ├── VerdanturfTown_BattleTentBattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── VerdanturfTown_WandasHouse │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_1F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_B2F │ │ ├── border.bin │ │ └── map.bin │ └── layouts.json ├── map_events.s ├── maps.s ├── maps │ ├── .gitignore │ ├── AbandonedShip_CaptainsOffice │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Corridors_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Corridors_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Deck │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_HiddenFloorCorridors │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_HiddenFloorRooms │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Room_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Rooms2_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Rooms2_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Rooms_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Rooms_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Underwater1 │ │ ├── map.json │ │ └── scripts.inc │ ├── AbandonedShip_Underwater2 │ │ ├── map.json │ │ └── scripts.inc │ ├── AlteringCave │ │ ├── map.json │ │ └── scripts.inc │ ├── AncientTomb │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_UnusedRubyMap1 │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_UnusedRubyMap2 │ │ ├── map.json │ │ └── scripts.inc │ ├── AquaHideout_UnusedRubyMap3 │ │ ├── map.json │ │ └── scripts.inc │ ├── ArtisanCave_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── ArtisanCave_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleColosseum_2P │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleColosseum_4P │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleArenaBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleArenaCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleArenaLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomeBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomeCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomeLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleDomePreBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleFactoryBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleFactoryLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleFactoryPreBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePalaceBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePalaceCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePalaceLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeRoomFinal │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeRoomNormal │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeRoomWildMons │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePikeThreePathRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePyramidFloor │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePyramidLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattlePyramidTop │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_BattleTowerBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_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 │ ├── ContestHall │ │ ├── map.json │ │ └── scripts.inc │ ├── ContestHallBeauty │ │ └── map.json │ ├── ContestHallCool │ │ └── map.json │ ├── ContestHallCute │ │ └── map.json │ ├── ContestHallSmart │ │ └── map.json │ ├── ContestHallTough │ │ └── map.json │ ├── DesertRuins │ │ ├── map.json │ │ └── scripts.inc │ ├── DesertUnderpass │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_Hall │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── DewfordTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── 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 │ ├── GraniteCave_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── GraniteCave_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── GraniteCave_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── GraniteCave_StevensRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── InsideOfTruck │ │ ├── map.json │ │ └── scripts.inc │ ├── IslandCave │ │ ├── map.json │ │ └── scripts.inc │ ├── JaggedPass │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_Gym_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_Gym_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_HerbShop │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_House │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavaridgeTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_ContestHall │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_ContestLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_CoveLilyMotel_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_CoveLilyMotel_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStoreElevator │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStoreRooftop │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_DepartmentStore_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_LilycoveMuseum_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_LilycoveMuseum_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_MoveDeletersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_PokemonTrainerFanClub │ │ ├── map.json │ │ └── scripts.inc │ ├── LilycoveCity_UnusedMart │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown_BrendansHouse_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown_BrendansHouse_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown_MaysHouse_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown_MaysHouse_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LittlerootTown_ProfessorBirchsLab │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_2F_1R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_2F_2R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_2F_3R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_3F_1R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_3F_2R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_3F_3R │ │ ├── map.json │ │ └── scripts.inc │ ├── MagmaHideout_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── MarineCave_End │ │ ├── map.json │ │ └── scripts.inc │ ├── MarineCave_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_BikeShop │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_GameCorner │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MauvilleCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MeteorFalls_1F_1R │ │ ├── map.json │ │ └── scripts.inc │ ├── MeteorFalls_1F_2R │ │ ├── map.json │ │ └── scripts.inc │ ├── MeteorFalls_B1F_1R │ │ ├── map.json │ │ └── scripts.inc │ ├── MeteorFalls_B1F_2R │ │ ├── map.json │ │ └── scripts.inc │ ├── MeteorFalls_StevensCave │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── MirageTower_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_GameCorner_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_GameCorner_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_SpaceCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_SpaceCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MossdeepCity_StevensHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── MtChimney │ │ ├── map.json │ │ └── scripts.inc │ ├── MtChimney_CableCarStation │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_6F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── MtPyre_Summit │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Bottom │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down01 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down02 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down03 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down04 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down05 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down06 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down07 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down08 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down09 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down10 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Down11 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Fork │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Top │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up1 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up2 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up3 │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Up4 │ │ ├── map.json │ │ └── scripts.inc │ ├── NewMauville_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── NewMauville_Inside │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── OldaleTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_House5 │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PacifidlogTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgCity_WallysHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── PetalburgWoods │ │ ├── map.json │ │ └── scripts.inc │ ├── RecordCorner │ │ ├── map.json │ │ └── scripts.inc │ ├── Route101 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route102 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route103 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104_MrBrineysHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104_PrettyPetalFlowerShop │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104_Prototype │ │ ├── map.json │ │ └── scripts.inc │ ├── Route104_PrototypePrettyPetalFlowerShop │ │ ├── map.json │ │ └── scripts.inc │ ├── Route105 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route106 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route107 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route108 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route109 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route109_SeashoreHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_SeasideCyclingRoadNorthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_SeasideCyclingRoadSouthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHouseCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHouseEnd │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHouseEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle1 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle2 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle3 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle4 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle5 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle6 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle7 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route110_TrickHousePuzzle8 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route111 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route111_OldLadysRestStop │ │ ├── map.json │ │ └── scripts.inc │ ├── Route111_WinstrateFamilysHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route112 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route112_CableCarStation │ │ ├── map.json │ │ └── scripts.inc │ ├── Route113 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route113_GlassWorkshop │ │ ├── map.json │ │ └── scripts.inc │ ├── Route114 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route114_FossilManiacsHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route114_FossilManiacsTunnel │ │ ├── map.json │ │ └── scripts.inc │ ├── Route114_LanettesHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route115 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route116 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route116_TunnelersRestHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route117 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route117_PokemonDayCare │ │ ├── map.json │ │ └── scripts.inc │ ├── Route118 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119_House │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119_WeatherInstitute_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route119_WeatherInstitute_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route120 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route121 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route121_SafariZoneEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route122 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route123 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route123_BerryMastersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route124 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route124_DivingTreasureHuntersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route125 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route126 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route127 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route128 │ │ ├── map.json │ │ └── scripts.inc │ ├── Route129 │ │ ├── map.json │ │ └── scripts.inc │ ├── 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 │ ├── RustboroCity │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_CuttersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_DevonCorp_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_DevonCorp_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_DevonCorp_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Flat1_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Flat1_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Flat2_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Flat2_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Flat2_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Gym │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── RustboroCity_PokemonSchool │ │ ├── map.json │ │ └── scripts.inc │ ├── RusturfTunnel │ │ ├── map.json │ │ └── scripts.inc │ ├── 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 │ ├── SootopolisCity │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_Gym_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_Gym_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House1 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House3 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House4 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House5 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House6 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_House7 │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_LotadAndSeedotHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_MysteryEventsHouse_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_MysteryEventsHouse_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SootopolisCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SouthernIsland_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── SouthernIsland_Interior │ │ ├── map.json │ │ └── scripts.inc │ ├── TerraCave_End │ │ ├── map.json │ │ └── scripts.inc │ ├── TerraCave_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── TradeCenter │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_Elevator │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerHill_Roof │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_MarineCave │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route105 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route124 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route125 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route126 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route127 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route128 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route129 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_Route134 │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_SeafloorCavern │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_SealedChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── Underwater_SootopolisCity │ │ ├── map.json │ │ └── scripts.inc │ ├── UnionRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── UnusedContestHall1 │ │ └── map.json │ ├── UnusedContestHall2 │ │ └── map.json │ ├── UnusedContestHall3 │ │ └── map.json │ ├── UnusedContestHall4 │ │ └── map.json │ ├── UnusedContestHall5 │ │ └── map.json │ ├── UnusedContestHall6 │ │ └── map.json │ ├── VerdanturfTown │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_BattleTentBattleRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_BattleTentCorridor │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_BattleTentLobby │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_FriendshipRatersHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_House │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_Mart │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_PokemonCenter_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── VerdanturfTown_WandasHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── VictoryRoad_B2F │ │ ├── map.json │ │ └── scripts.inc │ └── map_groups.json ├── mb_berry_fix.gba ├── mb_colosseum.gba ├── mb_ereader.gba ├── multiboot_berry_glitch_fix.s ├── multiboot_ereader.s ├── multiboot_pokemon_colosseum.s ├── mystery_event_script_cmd_table.s ├── mystery_gift.s ├── script_cmd_table.inc ├── scripts │ ├── abnormal_weather.inc │ ├── apprentice.inc │ ├── battle_pike.inc │ ├── berry_blender.inc │ ├── berry_tree.inc │ ├── cable_club.inc │ ├── cave_hole.inc │ ├── cave_of_origin.inc │ ├── check_furniture.inc │ ├── contest_hall.inc │ ├── day_care.inc │ ├── elite_four.inc │ ├── field_move_scripts.inc │ ├── field_poison.inc │ ├── flash.inc │ ├── follower.inc │ ├── gabby_and_ty.inc │ ├── gift_altering_cave.inc │ ├── gift_aurora_ticket.inc │ ├── gift_battle_card.inc │ ├── gift_mystic_ticket.inc │ ├── gift_old_sea_map.inc │ ├── gift_pichu.inc │ ├── gift_stamp_card.inc │ ├── gift_trainer.inc │ ├── hall_of_fame.inc │ ├── interview.inc │ ├── item_ball_scripts.inc │ ├── kecleon.inc │ ├── lilycove_lady.inc │ ├── mauville_man.inc │ ├── move_tutors.inc │ ├── movement.inc │ ├── new_game.inc │ ├── obtain_item.inc │ ├── pc.inc │ ├── pc_transfer.inc │ ├── pkmn_center_nurse.inc │ ├── players_house.inc │ ├── prof_birch.inc │ ├── profile_man.inc │ ├── questionnaire.inc │ ├── record_mix.inc │ ├── repel.inc │ ├── rival_graphics.inc │ ├── roulette.inc │ ├── safari_zone.inc │ ├── secret_base.inc │ ├── secret_power_tm.inc │ ├── set_gym_trainers.inc │ ├── shared_secret_base.inc │ ├── std_msgbox.inc │ ├── surf.inc │ ├── test_signpost.inc │ ├── trainer_battle.inc │ ├── trainer_hill.inc │ ├── trainer_script.inc │ └── tv.inc ├── sound_data.s ├── specials.inc ├── text │ ├── abnormal_weather.inc │ ├── apprentice.inc │ ├── battle_dome.inc │ ├── battle_tent.inc │ ├── berries.inc │ ├── birch_speech.inc │ ├── blend_master.inc │ ├── braille.inc │ ├── cable_club.inc │ ├── check_furniture.inc │ ├── contest_link.inc │ ├── contest_painting.inc │ ├── contest_strings.inc │ ├── event_ticket_1.inc │ ├── event_ticket_2.inc │ ├── frontier_brain.inc │ ├── lottery_corner.inc │ ├── mart_clerk.inc │ ├── match_call.inc │ ├── mauville_man.inc │ ├── move_tutors.inc │ ├── obtain_item.inc │ ├── pc.inc │ ├── pc_transfer.inc │ ├── pkmn_center_nurse.inc │ ├── pokedex_rating.inc │ ├── pokemon_news.inc │ ├── questionnaire.inc │ ├── record_mix.inc │ ├── save.inc │ ├── secret_base_trainers.inc │ ├── shoal_cave.inc │ ├── surf.inc │ ├── trainers.inc │ ├── trick_house_mechadolls.inc │ └── tv.inc └── tilesets │ ├── primary │ ├── building │ │ ├── anim │ │ │ └── tv_turned_on │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ ├── general │ │ ├── anim │ │ │ ├── flower │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ ├── land_water_edge │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ │ ├── sand_water_edge │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ └── 6.png │ │ │ ├── water │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ └── waterfall │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ └── tiles.png │ └── secret_base │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ │ ├── tiles.png │ │ └── unknown_tiles.png │ └── secondary │ ├── battle_arena │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── battle_dome │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── battle_factory │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── battle_frontier │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── battle_frontier_outside_east │ ├── anim │ │ └── flag │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── battle_frontier_outside_west │ ├── anim │ │ └── flag │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── battle_frontier_ranking_hall │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── battle_palace │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── battle_pike │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── battle_pyramid │ ├── anim │ │ ├── statue_shadow │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── torch │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── battle_tent │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── bike_shop │ ├── anim │ │ └── blinking_lights │ │ │ ├── 0.png │ │ │ └── 1.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── brendans_mays_house │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── cable_club │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ ├── tiles.png │ └── unknown_tiles.png │ ├── cave │ ├── anim │ │ └── lava │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── contest │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── dewford │ ├── anim │ │ └── flag │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── dewford_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── elite_four │ ├── anim │ │ ├── floor_light │ │ │ ├── 0.png │ │ │ └── 1.png │ │ └── wall_lights │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── ever_grande │ ├── anim │ │ └── flowers │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── facility │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── fallarbor │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── fortree │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── fortree_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── generic_building │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── inside_of_truck │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── inside_ship │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── island_harbor │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── lab │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── lavaridge │ ├── anim │ │ └── steam │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── lavaridge_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── lilycove │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── lilycove_museum │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── mauville │ ├── anim │ │ ├── flower_1 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ └── flower_2 │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── mauville_game_corner │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── mauville_gym │ ├── anim │ │ └── electric_gates │ │ │ ├── 0.png │ │ │ └── 1.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── meteor_falls │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── mirage_tower │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── mossdeep │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── mossdeep_game_corner │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── mossdeep_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── mystery_events_house │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── navel_rock │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── oceanic_museum │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pacifidlog │ ├── anim │ │ ├── log_bridges │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── water_currents │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── petalburg │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── petalburg_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pokemon_center │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pokemon_day_care │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pokemon_fan_club │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pokemon_school │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pretty_petal_flower_shop │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── rustboro │ ├── anim │ │ ├── fountain │ │ │ ├── 0.png │ │ │ └── 1.png │ │ └── windy_water │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── rustboro_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── rusturf_tunnel │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── seashore_house │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── secret_base │ ├── blue_cave │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ ├── tiles.png │ │ └── unused_tiles.png │ ├── brown_cave │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ ├── tiles.png │ │ └── unused_tiles.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── red_cave │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ ├── tiles.png │ │ └── unused_tiles.png │ ├── shrub │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ ├── tiles.png │ │ └── unused_tiles.png │ ├── tree │ │ ├── palettes │ │ │ ├── 00.pal │ │ │ ├── 01.pal │ │ │ ├── 02.pal │ │ │ ├── 03.pal │ │ │ ├── 04.pal │ │ │ ├── 05.pal │ │ │ ├── 06.pal │ │ │ ├── 07.pal │ │ │ ├── 08.pal │ │ │ ├── 09.pal │ │ │ ├── 10.pal │ │ │ ├── 11.pal │ │ │ ├── 12.pal │ │ │ ├── 13.pal │ │ │ ├── 14.pal │ │ │ └── 15.pal │ │ ├── tiles.png │ │ └── unused_tiles.png │ └── yellow_cave │ │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ │ ├── tiles.png │ │ └── unused_tiles.png │ ├── shop │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── slateport │ ├── anim │ │ └── balloons │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── sootopolis │ ├── anim │ │ └── stormy_water │ │ │ ├── 0_groudon.png │ │ │ ├── 0_kyogre.png │ │ │ ├── 1_groudon.png │ │ │ ├── 1_kyogre.png │ │ │ ├── 2_groudon.png │ │ │ ├── 2_kyogre.png │ │ │ ├── 3_groudon.png │ │ │ ├── 3_kyogre.png │ │ │ ├── 4_groudon.png │ │ │ ├── 4_kyogre.png │ │ │ ├── 5_groudon.png │ │ │ ├── 5_kyogre.png │ │ │ ├── 6_groudon.png │ │ │ ├── 6_kyogre.png │ │ │ ├── 7_groudon.png │ │ │ └── 7_kyogre.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── sootopolis_gym │ ├── anim │ │ ├── front_waterfall │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── side_waterfall │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── trainer_hill │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── trick_house_puzzle │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── underwater │ ├── anim │ │ └── seaweed │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── union_room │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── unused_1 │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ └── unused_2 │ ├── 0.png │ ├── 1.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ ├── 00.pal │ ├── 01.pal │ ├── 02.pal │ ├── 03.pal │ ├── 04.pal │ ├── 05.pal │ ├── 06.pal │ ├── 07.pal │ ├── 08.pal │ ├── 09.pal │ ├── 10.pal │ ├── 11.pal │ ├── 12.pal │ ├── 13.pal │ ├── 14.pal │ └── 15.pal │ └── tiles.png ├── docs └── legacy_WSL1_INSTALL.md ├── extract_sprites.py ├── follower_emotions.py ├── front_palette.py ├── graphics ├── bag │ ├── bag.pal │ ├── bag_female.png │ ├── bag_male.png │ ├── bag_pyramid.pal │ ├── bag_pyramid.png │ ├── berry_tag.bin │ ├── berry_tag_screen.pal │ ├── berry_tag_title.bin │ ├── check_berry.pal │ ├── check_berry.png │ ├── check_berry_circle.png │ ├── hm.png │ ├── menu.bin │ ├── menu.png │ ├── menu_female.pal │ ├── menu_male.pal │ ├── menu_pyramid.bin │ ├── menu_pyramid.pal │ ├── rotating_ball.png │ └── select_button.png ├── balls │ ├── dive.png │ ├── great.png │ ├── luxury.png │ ├── master.png │ ├── nest.png │ ├── net.png │ ├── open.png │ ├── poke.png │ ├── premier.png │ ├── repeat.png │ ├── safari.png │ ├── timer.png │ └── ultra.png ├── battle_anims │ ├── backgrounds │ │ ├── attract.bin │ │ ├── attract.png │ │ ├── aurora.bin │ │ ├── aurora.png │ │ ├── bug.pal │ │ ├── cosmic.bin │ │ ├── cosmic.png │ │ ├── dark.bin │ │ ├── dark.png │ │ ├── drill.bin │ │ ├── drill.png │ │ ├── drill_contests.bin │ │ ├── fissure.bin │ │ ├── fissure.png │ │ ├── fog.bin │ │ ├── ghost.bin │ │ ├── ghost.png │ │ ├── guillotine.png │ │ ├── guillotine_contests.bin │ │ ├── guillotine_opponent.bin │ │ ├── guillotine_player.bin │ │ ├── highspeed.png │ │ ├── highspeed_opponent.bin │ │ ├── highspeed_player.bin │ │ ├── ice.bin │ │ ├── ice.png │ │ ├── impact.png │ │ ├── impact_contests.bin │ │ ├── impact_opponent.bin │ │ ├── impact_player.bin │ │ ├── in_air.bin │ │ ├── in_air.png │ │ ├── psychic.bin │ │ ├── psychic.png │ │ ├── sandstorm_brew.bin │ │ ├── sandstorm_brew.png │ │ ├── scary_face.png │ │ ├── scary_face_contest.bin │ │ ├── scary_face_opponent.bin │ │ ├── scary_face_player.bin │ │ ├── sky.pal │ │ ├── solarbeam.bin │ │ ├── solarbeam.pal │ │ ├── thunder.bin │ │ ├── thunder.png │ │ ├── water.png │ │ ├── water_contest.bin │ │ ├── water_muddy.pal │ │ ├── water_opponent.bin │ │ └── water_player.bin │ ├── masks │ │ ├── cure_bubbles.bin │ │ ├── cure_bubbles.png │ │ ├── curse.bin │ │ ├── curse.png │ │ ├── light_beam.bin │ │ ├── light_beam.png │ │ ├── metal_shine.bin │ │ ├── metal_shine.png │ │ ├── unused_level_up.bin │ │ └── unused_level_up.png │ ├── sprites │ │ ├── air_slash.png │ │ ├── air_wave.png │ │ ├── air_wave_2.png │ │ ├── alert.png │ │ ├── amnesia.png │ │ ├── angel.png │ │ ├── anger.png │ │ ├── bell.png │ │ ├── bell_2.png │ │ ├── bent_spoon.png │ │ ├── bird.png │ │ ├── black_ball.pal │ │ ├── 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.png │ │ ├── substitute_back.png │ │ ├── sunlight.png │ │ ├── sweat_bead.png │ │ ├── sweat_drop.png │ │ ├── swipe.png │ │ ├── sword.png │ │ ├── sword_2.png │ │ ├── tag_hand.png │ │ ├── teal_alert.png │ │ ├── teeth.png │ │ ├── tendrils.png │ │ ├── thin_ring.png │ │ ├── thought_bubble.png │ │ ├── tied_bag.png │ │ ├── tongue.png │ │ ├── torn_metal.png │ │ ├── toxic_bubble.png │ │ ├── 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 │ ├── stat_change │ │ ├── accuracy.pal │ │ ├── attack.pal │ │ ├── decrease.bin │ │ ├── defense.pal │ │ ├── evasion.pal │ │ ├── increase.bin │ │ ├── multiple.pal │ │ ├── sp_attack.pal │ │ ├── sp_defense.pal │ │ ├── speed.pal │ │ └── tiles.png │ └── unused │ │ ├── goosuto.bin │ │ ├── goosuto.png │ │ ├── lights.bin │ │ ├── lights.png │ │ ├── line_sketch.png │ │ ├── line_sketch_2.bin │ │ ├── line_sketch_2.pal │ │ ├── line_sketch_2.png │ │ ├── metronome_hand_small.png │ │ ├── music_notes.pal │ │ ├── music_notes.png │ │ ├── old_beatup.png │ │ ├── spinning_ball.png │ │ ├── spinning_ball_2.pal │ │ ├── unknown.pal │ │ ├── unknown_1.bin │ │ ├── unknown_2.bin │ │ ├── unknown_2.pal │ │ ├── unknown_3.bin │ │ ├── unknown_4.bin │ │ ├── water.bin │ │ ├── water_gfx.png │ │ ├── water_splash.bin │ │ └── water_splash.png ├── battle_environment │ ├── building │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ ├── palette2.pal │ │ ├── palette3.pal │ │ └── tiles.png │ ├── cave │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── groudon.pal │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── long_grass │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── plain │ │ └── palette.pal │ ├── pond_water │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── rock │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── sand │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── sky │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── stadium │ │ ├── battle_frontier.pal │ │ ├── map.bin │ │ ├── palette1.pal │ │ ├── palette2.pal │ │ ├── palette3.pal │ │ ├── palette4.pal │ │ ├── palette5.pal │ │ ├── palette6.pal │ │ ├── palette7.pal │ │ └── tiles.png │ ├── tall_grass │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── underwater │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ └── water │ │ ├── anim_map.bin │ │ ├── anim_tiles.png │ │ ├── kyogre.pal │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png ├── battle_frontier │ ├── arena_judgment_symbols.png │ ├── dome_anim1.pal │ ├── dome_anim2.pal │ ├── dome_anim3.pal │ ├── dome_anim4.pal │ ├── factory_screen │ │ ├── action_box_left.png │ │ ├── action_box_right.png │ │ ├── action_highlight_left.png │ │ ├── action_highlight_middle.png │ │ ├── action_highlight_right.png │ │ ├── arrow.png │ │ ├── interface.pal │ │ ├── menu.bin │ │ ├── menu.png │ │ ├── menu_highlight_left.png │ │ ├── menu_highlight_right.png │ │ ├── mon_pic_bg.bin │ │ ├── mon_pic_bg.png │ │ ├── mon_pic_bg_anim.png │ │ ├── pokeball.png │ │ ├── pokeball_gray.pal │ │ ├── pokeball_selected.pal │ │ └── text.pal │ ├── multi_battle_intro_bg_opponent.bin │ ├── multi_battle_intro_bg_player.bin │ ├── pyramid_floor.pal │ ├── tourney_buttons.pal │ ├── tourney_buttons.png │ ├── tourney_info_card.png │ ├── tourney_info_card_bg.bin │ ├── tourney_info_card_tilemap.bin │ ├── tourney_line.png │ ├── tourney_line_down_map.bin │ ├── tourney_line_up_map.bin │ ├── tourney_match_card_bg.pal │ ├── tourney_tree.bin │ └── tourney_tree.png ├── battle_interface │ ├── ball_caught_indicator.png │ ├── ball_display.png │ ├── ball_status_bar.png │ ├── enemy_mon_shadow.png │ ├── expbar.png │ ├── healthbox_doubles_frameend.png │ ├── healthbox_doubles_frameend_bar.png │ ├── healthbox_doubles_opponent.png │ ├── healthbox_doubles_player.png │ ├── healthbox_safari.png │ ├── healthbox_singles_opponent.png │ ├── healthbox_singles_player.png │ ├── hpbar.png │ ├── hpbar_anim.png │ ├── hpbar_anim_unused.png │ ├── hpbar_unused.png │ ├── level_up_banner.png │ ├── misc.png │ ├── misc_frameend.png │ ├── numbers1.png │ ├── numbers2.png │ ├── status.png │ ├── status2.png │ ├── status3.png │ ├── status4.png │ ├── text.pal │ ├── text_pp.pal │ ├── textbox.png │ ├── textbox_0.pal │ ├── textbox_1.pal │ ├── textbox_map.bin │ ├── unused_status_summary.png │ ├── unused_window.png │ ├── unused_window2.png │ ├── unused_window2bar.png │ ├── unused_window3.png │ └── unused_window4.png ├── battle_transitions │ ├── big_pokeball.png │ ├── big_pokeball_map.bin │ ├── brendan_bg.pal │ ├── drake_bg.pal │ ├── elite_four_bg.png │ ├── elite_four_bg_map.bin │ ├── evil_team.pal │ ├── frontier_logo.bin │ ├── frontier_logo.png │ ├── frontier_logo_center.bin │ ├── frontier_logo_center.png │ ├── frontier_logo_circles.png │ ├── frontier_squares.bin │ ├── frontier_squares_1.png │ ├── frontier_squares_2.png │ ├── frontier_squares_3.png │ ├── frontier_squares_4.png │ ├── frontier_squares_blanktiles.png │ ├── glacia_bg.pal │ ├── groudon.bin │ ├── groudon.png │ ├── groudon_pt1.pal │ ├── groudon_pt2.pal │ ├── kyogre.bin │ ├── kyogre.png │ ├── kyogre_pt1.pal │ ├── kyogre_pt2.pal │ ├── may_bg.pal │ ├── phoebe_bg.pal │ ├── pokeball.png │ ├── pokeball_trail.png │ ├── rayquaza.bin │ ├── rayquaza.pal │ ├── rayquaza.png │ ├── regice.bin │ ├── regice.pal │ ├── regirock.bin │ ├── regirock.pal │ ├── regis.png │ ├── registeel.bin │ ├── registeel.pal │ ├── shrinking_box.png │ ├── sidney_bg.pal │ ├── team_aqua.bin │ ├── team_aqua.png │ ├── team_magma.bin │ ├── team_magma.png │ ├── unused.pal │ ├── unused_brendan.png │ ├── unused_lass.png │ ├── unused_trainer.pal │ ├── vs.png │ ├── vs_frame.bin │ ├── vs_frame.png │ └── wallace_bg.pal ├── berries │ ├── aguav.png │ ├── apicot.png │ ├── aspear.png │ ├── belue.png │ ├── bluk.png │ ├── cheri.png │ ├── chesto.png │ ├── cornn.png │ ├── durin.png │ ├── enigma.png │ ├── figy.png │ ├── ganlon.png │ ├── grepa.png │ ├── hondew.png │ ├── iapapa.png │ ├── kelpsy.png │ ├── lansat.png │ ├── leppa.png │ ├── liechi.png │ ├── lum.png │ ├── mago.png │ ├── magost.png │ ├── nanab.png │ ├── nomel.png │ ├── oran.png │ ├── pamtre.png │ ├── pecha.png │ ├── persim.png │ ├── petaya.png │ ├── pinap.png │ ├── pomeg.png │ ├── qualot.png │ ├── rabuta.png │ ├── rawst.png │ ├── razz.png │ ├── salac.png │ ├── sitrus.png │ ├── spelon.png │ ├── starf.png │ ├── tamato.png │ ├── watmel.png │ ├── wepear.png │ └── wiki.png ├── berry_blender │ ├── arrow.png │ ├── arrow_old.png │ ├── center.png │ ├── center_map.bin │ ├── countdown_numbers.png │ ├── misc.pal │ ├── outer.png │ ├── outer_map.bin │ ├── particles.png │ ├── score_symbols.png │ ├── start.png │ └── unused.pal ├── berry_crush │ ├── bg.bin │ ├── container_cap.bin │ ├── crusher.png │ ├── crusher_base.png │ ├── crusher_top.bin │ ├── effects.pal │ ├── impact.png │ ├── sparkle.png │ ├── text_windows.bin │ └── timer_digits.png ├── berry_fix │ ├── gba_connect.bin │ ├── gba_connect.png │ ├── gba_transfer.bin │ ├── gba_transfer.png │ ├── gba_transfer_error.bin │ ├── gba_transfer_error.png │ ├── gba_transfer_highlight.bin │ ├── gba_transfer_highlight.png │ ├── logo.bin │ ├── logo.png │ ├── text.pal │ ├── window.bin │ └── window.png ├── birch_speech │ ├── bg0.pal │ ├── bg1.pal │ ├── bg2.pal │ ├── birch.png │ ├── map.bin │ ├── shadow.png │ └── unused_beauty.png ├── cable_car │ ├── bg.png │ ├── bg_mountains.bin │ ├── cable.png │ ├── cable_car.png │ ├── door.png │ ├── ground.bin │ ├── pylon_pole.bin │ ├── pylon_top.bin │ └── trees.bin ├── cave_transition │ ├── black.pal │ ├── enter.pal │ ├── tilemap.bin │ ├── tiles.png │ └── white.pal ├── contest │ ├── applause.png │ ├── applause_meter.png │ ├── audience.bin │ ├── audience.png │ ├── curtain.bin │ ├── faces.png │ ├── interface.bin │ ├── interface.png │ ├── japanese │ │ ├── audience.bin │ │ ├── audience.png │ │ ├── bg.bin │ │ ├── floor.png │ │ ├── frame_1.png │ │ ├── frame_2.png │ │ ├── interface.bin │ │ ├── interface.png │ │ ├── letters.png │ │ ├── meter.png │ │ ├── numbers.png │ │ ├── palette.pal │ │ ├── symbols.png │ │ ├── voltage.png │ │ └── windows.bin │ ├── judge.png │ ├── judge_symbols.png │ ├── nextturn.png │ ├── nextturn_numbers.png │ ├── nextturn_random.png │ ├── results_screen │ │ ├── bg.bin │ │ ├── interface.bin │ │ ├── text_window.pal │ │ ├── text_window.png │ │ ├── tiles.png │ │ ├── title.bin │ │ ├── title_beauty.bin │ │ ├── title_cool.bin │ │ ├── title_cute.bin │ │ ├── title_hyper.bin │ │ ├── title_link.bin │ │ ├── title_master.bin │ │ ├── title_normal.bin │ │ ├── title_smart.bin │ │ ├── title_super.bin │ │ ├── title_tough.bin │ │ └── winner_banner.bin │ ├── slider_heart.png │ └── text.pal ├── credits │ ├── credits.pal │ └── the_end_copyright.png ├── decorations │ ├── attract_mat.png │ ├── big_plant.png │ ├── blastoise_doll.png │ ├── blue_brick.png │ ├── blue_tent.png │ ├── breakable_door.png │ ├── brendan.pal │ ├── brick_desk.png │ ├── camp_desk.png │ ├── charizard_doll.png │ ├── colorful_plant.png │ ├── comfort_desk.png │ ├── decoration_menu.pal │ ├── fire_blast_mat.png │ ├── fissure_mat.png │ ├── glass_ornament.png │ ├── gorgeous_plant.png │ ├── hard_desk.png │ ├── heavy_desk.png │ ├── lapras_doll.png │ ├── may.pal │ ├── powder_snow_mat.png │ ├── pretty_desk.png │ ├── pretty_flowers.png │ ├── put_away_cursor.png │ ├── ragged_desk.png │ ├── red_brick.png │ ├── red_plant.png │ ├── red_tent.png │ ├── regice_doll.png │ ├── regirock_doll.png │ ├── registeel_doll.png │ ├── rhydon_doll.png │ ├── sand_ornament.png │ ├── slide.png │ ├── snorlax_doll.png │ ├── solid_board.png │ ├── spikes_mat.png │ ├── stand.png │ ├── surf_mat.png │ ├── thunder_mat.png │ ├── tire.png │ ├── tropical_plant.png │ ├── venusaur_doll.png │ ├── wailmer_doll.png │ └── yellow_brick.png ├── diploma │ ├── hoenn.pal │ ├── national.pal │ ├── tilemap.bin │ └── tiles.png ├── dodrio_berry_picking │ ├── berries.png │ ├── bg.bin │ ├── bg.png │ ├── cloud.png │ ├── dodrio.png │ ├── shiny.pal │ ├── status.png │ ├── tree_border.png │ ├── tree_border_left.bin │ └── tree_border_right.bin ├── door_anims │ ├── abandoned_ship.png │ ├── abandoned_ship_room.png │ ├── battle_arena.png │ ├── battle_arena_lobby.png │ ├── battle_dome.png │ ├── battle_dome_corridor.png │ ├── battle_dome_lobby.png │ ├── battle_dome_pre_battle_room.png │ ├── battle_factory.png │ ├── battle_frontier.png │ ├── battle_frontier_sliding.png │ ├── battle_palace_lobby.png │ ├── battle_tent.png │ ├── battle_tent_interior.png │ ├── battle_tower.png │ ├── battle_tower_elevator.png │ ├── battle_tower_multi_corridor.png │ ├── battle_tower_old.png │ ├── birchs_lab.png │ ├── cable_club.png │ ├── contest.png │ ├── cycling_road.png │ ├── dewford.png │ ├── fallarbor_dark_roof.png │ ├── fallarbor_light_roof.png │ ├── general.png │ ├── gym.png │ ├── lilycove.png │ ├── lilycove_dept_store.png │ ├── lilycove_dept_store_elevator.png │ ├── lilycove_wooden.png │ ├── littleroot.png │ ├── mauville.png │ ├── mossdeep.png │ ├── mossdeep_space_center.png │ ├── oldale.png │ ├── pacifidlog.png │ ├── petalburg_gym.png │ ├── poke_center.png │ ├── poke_mart.png │ ├── pokemon_league.png │ ├── rustboro_gray.png │ ├── rustboro_tan.png │ ├── safari_zone.png │ ├── slateport.png │ ├── sootopolis.png │ ├── sootopolis_peaked_roof.png │ ├── trainer_hill_lobby_elevator.png │ ├── trainer_hill_roof_elevator.png │ ├── unused_battle_frontier.png │ ├── unused_bottom.png │ ├── unused_top.png │ └── verdanturf.png ├── easy_chat │ ├── button_window.png │ ├── interview_frame.png │ ├── mode.png │ ├── rectangle_cursor.png │ ├── scroll_indicator.png │ ├── start_select_buttons.png │ ├── text.pal │ ├── text_input_frame.png │ ├── text_input_frame_green.pal │ ├── text_input_frame_orange.pal │ ├── title_text.pal │ ├── triangle_cursor.png │ ├── window.bin │ └── window.png ├── evolution_scene │ ├── bg.png │ ├── bg_anim.pal │ ├── bg_anim_intro.pal │ ├── bg_inner.bin │ ├── bg_outer.bin │ ├── unused_1.pal │ ├── unused_2.pal │ ├── unused_3.pal │ └── unused_4.pal ├── field_effects │ ├── palettes │ │ ├── ash.pal │ │ ├── cut_grass.pal │ │ ├── deoxys_rock_1.pal │ │ ├── deoxys_rock_10.pal │ │ ├── deoxys_rock_11.pal │ │ ├── deoxys_rock_2.pal │ │ ├── deoxys_rock_3.pal │ │ ├── deoxys_rock_4.pal │ │ ├── deoxys_rock_5.pal │ │ ├── deoxys_rock_6.pal │ │ ├── deoxys_rock_7.pal │ │ ├── deoxys_rock_8.pal │ │ ├── deoxys_rock_9.pal │ │ ├── general_0.pal │ │ ├── general_1.pal │ │ ├── hof_monitor.pal │ │ ├── pokeball.pal │ │ ├── pokeball_glow.pal │ │ ├── record_mix_lights.pal │ │ ├── secret_power_cave.pal │ │ ├── secret_power_plant.pal │ │ └── small_sparkle.pal │ └── pics │ │ ├── arrow.png │ │ ├── ash.png │ │ ├── ash_launch.png │ │ ├── ash_puff.png │ │ ├── bike_tire_tracks.png │ │ ├── bird.png │ │ ├── bubbles.png │ │ ├── bug_tracks.png │ │ ├── cut_grass.png │ │ ├── deep_sand_footprints.png │ │ ├── deoxys_rock_fragment_bottom_left.png │ │ ├── deoxys_rock_fragment_bottom_right.png │ │ ├── deoxys_rock_fragment_top_left.png │ │ ├── deoxys_rock_fragment_top_right.png │ │ ├── emotion_exclamation.png │ │ ├── emotion_heart.png │ │ ├── emotion_question.png │ │ ├── field_move_streaks.bin │ │ ├── field_move_streaks.png │ │ ├── field_move_streaks_indoors.bin │ │ ├── field_move_streaks_indoors.png │ │ ├── ground_impact_dust.png │ │ ├── hof_monitor_big.png │ │ ├── hof_monitor_small.png │ │ ├── hot_springs_water.png │ │ ├── jump_big_splash.png │ │ ├── jump_long_grass.png │ │ ├── jump_small_splash.png │ │ ├── jump_tall_grass.png │ │ ├── long_grass.png │ │ ├── mountain_disguise.png │ │ ├── pokeball_glow.png │ │ ├── pokecenter_monitor │ │ ├── 0.png │ │ └── 1.png │ │ ├── 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 │ │ ├── slither_tracks.png │ │ ├── small_sparkle.png │ │ ├── sparkle.png │ │ ├── splash.png │ │ ├── spot_tracks.png │ │ ├── spotlight.png │ │ ├── surf_blob.png │ │ ├── tall_grass.png │ │ ├── tree_disguise.png │ │ ├── unknown_17.png │ │ ├── unused_grass_2.png │ │ ├── unused_grass_3.png │ │ ├── unused_sand.png │ │ └── water_surfacing.png ├── fonts │ ├── braille.png │ ├── down_arrow.png │ ├── down_arrow_alt.png │ ├── japanese_bold.png │ ├── japanese_frlg_female.png │ ├── japanese_frlg_male.png │ ├── japanese_normal.png │ ├── japanese_short.png │ ├── japanese_small.png │ ├── keypad_icons.png │ ├── latin_narrow.png │ ├── latin_normal.png │ ├── latin_short.png │ ├── latin_small.png │ ├── latin_small_narrow.png │ ├── unused_frlg_blanked_down_arrow.png │ └── unused_frlg_down_arrow.png ├── frontier_pass │ ├── bg.bin │ ├── bg.png │ ├── cancel.bin │ ├── cancel_highlighted.bin │ ├── card_ball_filled.bin │ ├── cursor.png │ ├── gold.pal │ ├── map_and_card.png │ ├── map_cursor.png │ ├── map_heads.png │ ├── map_heads_female.pal │ ├── map_screen.bin │ ├── map_screen.png │ ├── medals.png │ ├── record_frame.bin │ ├── silver.pal │ ├── small_map_and_card.bin │ └── small_map_and_card_affine.bin ├── interface │ ├── arrow_cursor.png │ ├── blank.pal │ ├── blank.png │ ├── hof_pc_topbar.pal │ ├── main_menu_bg.pal │ ├── main_menu_text.pal │ ├── menu_info.png │ ├── menu_info1.pal │ ├── menu_info2.pal │ ├── menu_info3.pal │ ├── mon_markings.png │ ├── mon_markings_menu.png │ ├── mystery_gift_textbox_border.png │ ├── option_menu_equals_sign.png │ ├── option_menu_text.pal │ ├── outline_cursor.png │ ├── red.pal │ ├── scroll_indicator.png │ ├── status_icons.png │ ├── std_menu.pal │ ├── swap_line.png │ └── ui_learn_move.png ├── intro │ ├── copyright.bin │ ├── copyright.png │ ├── scene_1 │ │ ├── bg.png │ │ ├── bg0_map.bin │ │ ├── bg1_map.bin │ │ ├── bg2_map.bin │ │ ├── bg3_map.bin │ │ ├── drops.pal │ │ ├── drops_logo.png │ │ ├── flygon.png │ │ ├── lati.png │ │ ├── logo.pal │ │ ├── sparkle.png │ │ └── text.pal │ ├── scene_2 │ │ ├── bicycle.png │ │ ├── brendan.png │ │ ├── brendan_credits.png │ │ ├── clouds.png │ │ ├── clouds_bg.pal │ │ ├── clouds_bg.png │ │ ├── clouds_bg_map.bin │ │ ├── clouds_bg_sunset.pal │ │ ├── clouds_sunset.pal │ │ ├── flygon.png │ │ ├── grass.png │ │ ├── grass_map.bin │ │ ├── grass_night.pal │ │ ├── grass_sunset.pal │ │ ├── house_silhouette.png │ │ ├── houses.pal │ │ ├── houses.png │ │ ├── houses_map.bin │ │ ├── latias.png │ │ ├── latios.png │ │ ├── manectric.png │ │ ├── may.png │ │ ├── may_credits.png │ │ ├── player.pal │ │ ├── torchic.png │ │ ├── trees.png │ │ ├── trees_map.bin │ │ ├── trees_small.png │ │ ├── trees_sunset.pal │ │ └── volbeat.png │ └── scene_3 │ │ ├── bg.pal │ │ ├── bubbles.png │ │ ├── clouds.png │ │ ├── clouds_left.bin │ │ ├── clouds_right.bin │ │ ├── clouds_sun.bin │ │ ├── groudon.bin │ │ ├── groudon.png │ │ ├── groudon_bg.bin │ │ ├── kyogre.bin │ │ ├── kyogre.png │ │ ├── kyogre_bg.bin │ │ ├── legend_bg.png │ │ ├── lightning.png │ │ ├── misc.pal │ │ ├── misc.png │ │ ├── pokeball.png │ │ ├── pokeball_map.bin │ │ ├── rayquaza.bin │ │ ├── rayquaza.png │ │ ├── rayquaza_clouds.bin │ │ ├── rayquaza_clouds.png │ │ ├── rayquaza_orb.pal │ │ ├── streaks.png │ │ ├── streaks_map.bin │ │ ├── unused_1.bin │ │ └── unused_2.bin ├── items │ ├── icon_palettes │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── fighting_tm_hm.pal │ │ ├── figy_berry.pal │ │ ├── fire_stone.pal │ │ ├── fire_tm_hm.pal │ │ ├── fluffy_tail.pal │ │ ├── flying_tm_hm.pal │ │ ├── focus_band.pal │ │ ├── fresh_water.pal │ │ ├── full_heal.pal │ │ ├── full_restore.pal │ │ ├── ganlon_berry.pal │ │ ├── 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 │ │ ├── ground_tm_hm.pal │ │ ├── guard_spec.pal │ │ ├── harbor_mail.pal │ │ ├── hard_stone.pal │ │ ├── heal_powder.pal │ │ ├── heart_scale.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 │ │ ├── liechi_berry.pal │ │ ├── light_ball.pal │ │ ├── lucky_egg.pal │ │ ├── lucky_punch.pal │ │ ├── lum_berry.pal │ │ ├── luxury_ball.pal │ │ ├── mach_bike.pal │ │ ├── macho_brace.pal │ │ ├── magma_emblem.pal │ │ ├── magnet.pal │ │ ├── mago_berry.pal │ │ ├── magost_berry.pal │ │ ├── master_ball.pal │ │ ├── max_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_stone.pal │ │ ├── mushroom.pal │ │ ├── mystic_ticket.pal │ │ ├── mystic_water.pal │ │ ├── nanab_berry.pal │ │ ├── nest_ball.pal │ │ ├── net_ball.pal │ │ ├── never_melt_ice.pal │ │ ├── nomel_berry.pal │ │ ├── normal_tm_hm.pal │ │ ├── nugget.pal │ │ ├── oaks_parcel.pal │ │ ├── old_amber.pal │ │ ├── old_key.pal │ │ ├── old_rod.pal │ │ ├── old_sea_map.pal │ │ ├── oran_berry.pal │ │ ├── orange_mail.pal │ │ ├── pamtre_berry.pal │ │ ├── paralyze_heal.pal │ │ ├── pearl.pal │ │ ├── pecha_berry.pal │ │ ├── persim_berry.pal │ │ ├── petaya_berry.pal │ │ ├── pinap_berry.pal │ │ ├── pink_scarf.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_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 │ │ ├── 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 │ │ ├── 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 │ │ └── zinc.pal │ └── icons │ │ ├── acro_bike.png │ │ ├── aguav_berry.png │ │ ├── amulet_coin.png │ │ ├── antidote.png │ │ ├── apicot_berry.png │ │ ├── aspear_berry.png │ │ ├── aurora_ticket.png │ │ ├── basement_key.png │ │ ├── battle_stat_item.png │ │ ├── bead_mail.png │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── figy_berry.png │ │ ├── fire_stone.png │ │ ├── fluffy_tail.png │ │ ├── flute.png │ │ ├── focus_band.png │ │ ├── fresh_water.png │ │ ├── full_heal.png │ │ ├── ganlon_berry.png │ │ ├── gem.png │ │ ├── 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 │ │ ├── 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 │ │ ├── liechi_berry.png │ │ ├── lift_key.png │ │ ├── light_ball.png │ │ ├── lucky_egg.png │ │ ├── lucky_punch.png │ │ ├── lum_berry.png │ │ ├── luxury_ball.png │ │ ├── mach_bike.png │ │ ├── macho_brace.png │ │ ├── magma_emblem.png │ │ ├── magnet.png │ │ ├── mago_berry.png │ │ ├── magost_berry.png │ │ ├── master_ball.png │ │ ├── max_revive.png │ │ ├── mech_mail.png │ │ ├── metal_coat.png │ │ ├── metal_powder.png │ │ ├── meteorite.png │ │ ├── miracle_seed.png │ │ ├── moomoo_milk.png │ │ ├── moon_stone.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 │ │ ├── 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 │ │ ├── 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 │ ├── 321start.png │ ├── 321start_static.png │ ├── comm_error_bg.png │ ├── minigame_digits.png │ ├── minigame_digits2.png │ ├── test_digits.png │ ├── wireless_display.bin │ ├── wireless_display.png │ └── wireless_icon.png ├── mail │ ├── bead │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── dream │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── fab │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── glitter │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── harbor │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── mech │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── orange │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── retro │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── shadow │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── tropic │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ ├── wave │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png │ └── wood │ │ ├── map.bin │ │ ├── palette.pal │ │ └── tiles.png ├── map_popup │ ├── brick.png │ ├── brick_outline.png │ ├── marble.png │ ├── marble_outline.png │ ├── stone.png │ ├── stone2.png │ ├── stone2_outline.png │ ├── stone_outline.png │ ├── underwater.pal │ ├── underwater.png │ ├── underwater_outline.png │ ├── wood.png │ └── wood_outline.png ├── misc │ ├── clock_small.png │ ├── confetti.png │ ├── emotes.pal │ ├── emotes.png │ ├── evo_sparkle.png │ ├── japanese_hof.png │ ├── mirage_tower.bin │ ├── mirage_tower.png │ └── mirage_tower_crumbles.png ├── naming_screen │ ├── back_button.png │ ├── background.bin │ ├── buttons.pal │ ├── cursor.pal │ ├── cursor.png │ ├── cursor_filled.png │ ├── cursor_squished.png │ ├── input_arrow.png │ ├── keyboard.pal │ ├── keyboard_lower.bin │ ├── keyboard_symbols.bin │ ├── keyboard_upper.bin │ ├── menu.pal │ ├── menu.png │ ├── ok_button.png │ ├── page_swap_button.png │ ├── page_swap_frame.png │ ├── page_swap_lower.pal │ ├── page_swap_lower.png │ ├── page_swap_others.pal │ ├── page_swap_others.png │ ├── page_swap_upper.pal │ ├── page_swap_upper.png │ ├── pc_icon_off.png │ ├── pc_icon_on.png │ ├── rival.pal │ └── underscore.png ├── object_events │ ├── palettes │ │ ├── birth_island_stone.pal │ │ ├── brendan.pal │ │ ├── brendan_reflection.pal │ │ ├── bridge_reflection.pal │ │ ├── cable_car.pal │ │ ├── deoxys.pal │ │ ├── enemy_zigzagoon.pal │ │ ├── groudon.pal │ │ ├── groudon_reflection.pal │ │ ├── ho_oh.pal │ │ ├── kyogre.pal │ │ ├── kyogre_reflection.pal │ │ ├── lugia.pal │ │ ├── may.pal │ │ ├── may_reflection.pal │ │ ├── moving_box.pal │ │ ├── npc_1.pal │ │ ├── npc_1_reflection.pal │ │ ├── npc_2.pal │ │ ├── npc_2_reflection.pal │ │ ├── npc_3.pal │ │ ├── npc_3_reflection.pal │ │ ├── npc_4.pal │ │ ├── npc_4_reflection.pal │ │ ├── player_underwater.pal │ │ ├── poochyena.pal │ │ ├── quinty_plump.pal │ │ ├── quinty_plump_reflection.pal │ │ ├── red_leaf.pal │ │ ├── ruby_sapphire_brendan.pal │ │ ├── ruby_sapphire_may.pal │ │ ├── ss_tidal.pal │ │ ├── submarine_shadow.pal │ │ ├── truck.pal │ │ ├── unused_palette.pal │ │ └── vigoroth.pal │ └── pics │ │ ├── berry_trees │ │ ├── aguav.png │ │ ├── aspear.png │ │ ├── cheri.png │ │ ├── chesto.png │ │ ├── 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 │ │ ├── ball_beast.png │ │ ├── ball_cherish.png │ │ ├── ball_dive.png │ │ ├── ball_dream.png │ │ ├── ball_dusk.png │ │ ├── ball_fast.png │ │ ├── ball_friend.png │ │ ├── ball_great.png │ │ ├── ball_heal.png │ │ ├── ball_heavy.png │ │ ├── ball_level.png │ │ ├── ball_love.png │ │ ├── ball_lure.png │ │ ├── ball_luxury.png │ │ ├── ball_master.png │ │ ├── ball_moon.png │ │ ├── ball_nest.png │ │ ├── ball_net.png │ │ ├── ball_park.png │ │ ├── ball_poke.png │ │ ├── ball_premier.png │ │ ├── ball_quick.png │ │ ├── ball_repeat.png │ │ ├── ball_safari.png │ │ ├── ball_sport.png │ │ ├── ball_strange.png │ │ ├── ball_timer.png │ │ ├── ball_ultra.png │ │ ├── birchs_bag.png │ │ ├── birth_island_stone.png │ │ ├── breakable_rock.png │ │ ├── cable_car.png │ │ ├── cuttable_tree.png │ │ ├── fossil.png │ │ ├── light.png │ │ ├── moving_box.png │ │ ├── mr_brineys_boat.png │ │ ├── pushable_boulder.png │ │ ├── ss_tidal.png │ │ ├── statue.png │ │ ├── submarine_shadow.png │ │ └── truck.png │ │ ├── people │ │ ├── artist.png │ │ ├── beauty.png │ │ ├── black_belt.png │ │ ├── boy_1.png │ │ ├── boy_2.png │ │ ├── boy_3.png │ │ ├── brendan │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── bug_catcher.png │ │ ├── cameraman.png │ │ ├── camper.png │ │ ├── contest_judge.png │ │ ├── cook.png │ │ ├── cycling_triathlete_f.png │ │ ├── cycling_triathlete_m.png │ │ ├── devon_employee.png │ │ ├── elite_four │ │ │ ├── drake.png │ │ │ ├── glacia.png │ │ │ ├── phoebe.png │ │ │ └── sidney.png │ │ ├── expert_f.png │ │ ├── expert_m.png │ │ ├── fat_man.png │ │ ├── fisherman.png │ │ ├── frontier_brains │ │ │ ├── anabel.png │ │ │ ├── brandon.png │ │ │ ├── greta.png │ │ │ ├── lucy.png │ │ │ ├── noland.png │ │ │ ├── spenser.png │ │ │ └── tucker.png │ │ ├── gameboy_kid.png │ │ ├── gentleman.png │ │ ├── girl_1.png │ │ ├── girl_2.png │ │ ├── girl_3.png │ │ ├── gym_leaders │ │ │ ├── brawly.png │ │ │ ├── flannery.png │ │ │ ├── juan.png │ │ │ ├── liza.png │ │ │ ├── norman.png │ │ │ ├── roxanne.png │ │ │ ├── tate.png │ │ │ ├── wattson.png │ │ │ └── winona.png │ │ ├── hex_maniac.png │ │ ├── hiker.png │ │ ├── hot_springs_old_woman.png │ │ ├── lass.png │ │ ├── leaf.png │ │ ├── link_receptionist.png │ │ ├── little_boy.png │ │ ├── little_girl.png │ │ ├── man_1.png │ │ ├── man_2.png │ │ ├── man_3.png │ │ ├── man_4.png │ │ ├── man_5.png │ │ ├── maniac.png │ │ ├── mart_employee.png │ │ ├── mauville_old_man_1.png │ │ ├── mauville_old_man_2.png │ │ ├── may │ │ │ ├── acro_bike.png │ │ │ ├── decorating.png │ │ │ ├── field_move.png │ │ │ ├── fishing.png │ │ │ ├── mach_bike.png │ │ │ ├── running.png │ │ │ ├── surfing.png │ │ │ ├── underwater.png │ │ │ ├── walking.png │ │ │ └── watering.png │ │ ├── mom.png │ │ ├── mystery_event_deliveryman.png │ │ ├── ninja_boy.png │ │ ├── nurse.png │ │ ├── old_man.png │ │ ├── old_woman.png │ │ ├── picnicker.png │ │ ├── pokefan_f.png │ │ ├── pokefan_m.png │ │ ├── prof_birch.png │ │ ├── psychic_m.png │ │ ├── quinty_plump.png │ │ ├── red.png │ │ ├── reporter_f.png │ │ ├── reporter_m.png │ │ ├── rich_boy.png │ │ ├── rooftop_sale_woman.png │ │ ├── rs_little_boy.png │ │ ├── ruby_sapphire_brendan │ │ │ ├── running.png │ │ │ └── walking.png │ │ ├── ruby_sapphire_may │ │ │ ├── running.png │ │ │ └── walking.png │ │ ├── running_triathlete_f.png │ │ ├── running_triathlete_m.png │ │ ├── sailor.png │ │ ├── school_kid_m.png │ │ ├── scientist_1.png │ │ ├── scientist_2.png │ │ ├── scott.png │ │ ├── steven.png │ │ ├── swimmer_f.png │ │ ├── swimmer_m.png │ │ ├── teala.png │ │ ├── team_aqua │ │ │ ├── aqua_member_f.png │ │ │ ├── aqua_member_m.png │ │ │ └── archie.png │ │ ├── team_magma │ │ │ ├── magma_member_f.png │ │ │ ├── magma_member_m.png │ │ │ └── maxie.png │ │ ├── tuber_f.png │ │ ├── tuber_m.png │ │ ├── tuber_m_swimming.png │ │ ├── twin.png │ │ ├── union_room_attendant.png │ │ ├── unused_woman.png │ │ ├── wallace.png │ │ ├── wally.png │ │ ├── woman_1.png │ │ ├── woman_2.png │ │ ├── woman_3.png │ │ ├── woman_4.png │ │ ├── woman_5.png │ │ └── youngster.png │ │ └── pokemon │ │ ├── abra.png │ │ ├── absol.png │ │ ├── aerodactyl.png │ │ ├── aggron.png │ │ ├── aipom.png │ │ ├── alakazam.png │ │ ├── altaria.png │ │ ├── ampharos.png │ │ ├── anorith.png │ │ ├── arbok.png │ │ ├── arcanine.png │ │ ├── ariados.png │ │ ├── armaldo.png │ │ ├── aron.png │ │ ├── articuno.png │ │ ├── azumarill.png │ │ ├── azumarill_old.png │ │ ├── azurill.png │ │ ├── azurill_old.png │ │ ├── bagon.png │ │ ├── baltoy.png │ │ ├── banette.png │ │ ├── barboach.png │ │ ├── bayleef.png │ │ ├── beautifly.png │ │ ├── beedrill.png │ │ ├── beldum.png │ │ ├── bellossom.png │ │ ├── bellsprout.png │ │ ├── blastoise.png │ │ ├── blaziken.png │ │ ├── blissey.png │ │ ├── breloom.png │ │ ├── bulbasaur.png │ │ ├── butterfree.png │ │ ├── cacnea.png │ │ ├── cacturne.png │ │ ├── camerupt.png │ │ ├── carvanha.png │ │ ├── cascoon.png │ │ ├── castform.png │ │ ├── castform_rainy.png │ │ ├── castform_snowy.png │ │ ├── castform_sunny.png │ │ ├── caterpie.png │ │ ├── celebi.png │ │ ├── chansey.png │ │ ├── charizard.png │ │ ├── charmander.png │ │ ├── charmeleon.png │ │ ├── chikorita.png │ │ ├── chimecho.png │ │ ├── chinchou.png │ │ ├── clamperl.png │ │ ├── claydol.png │ │ ├── clefable.png │ │ ├── clefairy.png │ │ ├── cleffa.png │ │ ├── cloyster.png │ │ ├── combusken.png │ │ ├── corphish.png │ │ ├── corsola.png │ │ ├── cradily.png │ │ ├── crawdaunt.png │ │ ├── crobat.png │ │ ├── croconaw.png │ │ ├── cubone.png │ │ ├── cyndaquil.png │ │ ├── delcatty.png │ │ ├── delibird.png │ │ ├── deoxys.png │ │ ├── deoxys_old.png │ │ ├── dewgong.png │ │ ├── diglett.png │ │ ├── ditto.png │ │ ├── dodrio.png │ │ ├── doduo.png │ │ ├── donphan.png │ │ ├── dragonair.png │ │ ├── dragonite.png │ │ ├── dratini.png │ │ ├── drowzee.png │ │ ├── dugtrio.png │ │ ├── dunsparce.png │ │ ├── dusclops.png │ │ ├── dusclops_old.png │ │ ├── duskull.png │ │ ├── dustox.png │ │ ├── eevee.png │ │ ├── ekans.png │ │ ├── electabuzz.png │ │ ├── electrike.png │ │ ├── electrode.png │ │ ├── elekid.png │ │ ├── enemy_zigzagoon.png │ │ ├── entei.png │ │ ├── espeon.png │ │ ├── exeggcute.png │ │ ├── exeggutor.png │ │ ├── exploud.png │ │ ├── farfetchd.png │ │ ├── fearow.png │ │ ├── feebas.png │ │ ├── feraligatr.png │ │ ├── flaaffy.png │ │ ├── flareon.png │ │ ├── flygon.png │ │ ├── forretress.png │ │ ├── furret.png │ │ ├── gardevoir.png │ │ ├── gastly.png │ │ ├── gengar.png │ │ ├── geodude.png │ │ ├── girafarig.png │ │ ├── glalie.png │ │ ├── gligar.png │ │ ├── gloom.png │ │ ├── golbat.png │ │ ├── goldeen.png │ │ ├── golduck.png │ │ ├── golem.png │ │ ├── gorebyss.png │ │ ├── granbull.png │ │ ├── graveler.png │ │ ├── grimer.png │ │ ├── groudon.png │ │ ├── groudon_old.png │ │ ├── grovyle.png │ │ ├── growlithe.png │ │ ├── grumpig.png │ │ ├── gulpin.png │ │ ├── gyarados.png │ │ ├── hariyama.png │ │ ├── haunter.png │ │ ├── heracross.png │ │ ├── hitmonchan.png │ │ ├── hitmonlee.png │ │ ├── hitmontop.png │ │ ├── ho_oh.png │ │ ├── ho_oh_old.png │ │ ├── hoothoot.png │ │ ├── hoppip.png │ │ ├── horsea.png │ │ ├── houndoom.png │ │ ├── houndour.png │ │ ├── huntail.png │ │ ├── hypno.png │ │ ├── igglybuff.png │ │ ├── illumise.png │ │ ├── ivysaur.png │ │ ├── jigglypuff.png │ │ ├── jirachi.png │ │ ├── jolteon.png │ │ ├── jumpluff.png │ │ ├── jynx.png │ │ ├── kabuto.png │ │ ├── kabutops.png │ │ ├── kadabra.png │ │ ├── kakuna.png │ │ ├── kangaskhan.png │ │ ├── kecleon.png │ │ ├── kecleon_old.png │ │ ├── kingdra.png │ │ ├── kingler.png │ │ ├── kirlia.png │ │ ├── kirlia_old.png │ │ ├── koffing.png │ │ ├── krabby.png │ │ ├── kyogre.png │ │ ├── kyogre_old.png │ │ ├── lairon.png │ │ ├── lanturn.png │ │ ├── lapras.png │ │ ├── larvitar.png │ │ ├── latias.png │ │ ├── latias_latios.png │ │ ├── latios.png │ │ ├── ledian.png │ │ ├── ledyba.png │ │ ├── lickitung.png │ │ ├── lileep.png │ │ ├── linoone.png │ │ ├── lombre.png │ │ ├── lotad.png │ │ ├── loudred.png │ │ ├── ludicolo.png │ │ ├── lugia.png │ │ ├── lugia_old.png │ │ ├── lunatone.png │ │ ├── luvdisc.png │ │ ├── machamp.png │ │ ├── machoke.png │ │ ├── machop.png │ │ ├── magby.png │ │ ├── magcargo.png │ │ ├── magikarp.png │ │ ├── magmar.png │ │ ├── magnemite.png │ │ ├── magneton.png │ │ ├── makuhita.png │ │ ├── manectric.png │ │ ├── mankey.png │ │ ├── mantine.png │ │ ├── mareep.png │ │ ├── marill.png │ │ ├── marowak.png │ │ ├── marshtomp.png │ │ ├── masquerain.png │ │ ├── mawile.png │ │ ├── medicham.png │ │ ├── meditite.png │ │ ├── meganium.png │ │ ├── meowth.png │ │ ├── metagross.png │ │ ├── metang.png │ │ ├── metapod.png │ │ ├── mew.png │ │ ├── mew_old.png │ │ ├── mewtwo.png │ │ ├── mightyena.png │ │ ├── milotic.png │ │ ├── miltank.png │ │ ├── minun.png │ │ ├── misdreavus.png │ │ ├── moltres.png │ │ ├── mr_mime.png │ │ ├── mudkip.png │ │ ├── muk.png │ │ ├── murkrow.png │ │ ├── natu.png │ │ ├── nidoking.png │ │ ├── nidoqueen.png │ │ ├── nidoran_f.png │ │ ├── nidoran_m.png │ │ ├── nidorina.png │ │ ├── nidorino.png │ │ ├── nincada.png │ │ ├── ninetales.png │ │ ├── ninjask.png │ │ ├── noctowl.png │ │ ├── nosepass.png │ │ ├── numel.png │ │ ├── nuzleaf.png │ │ ├── octillery.png │ │ ├── oddish.png │ │ ├── omanyte.png │ │ ├── omastar.png │ │ ├── onix.png │ │ ├── paras.png │ │ ├── parasect.png │ │ ├── pelipper.png │ │ ├── persian.png │ │ ├── phanpy.png │ │ ├── pichu.png │ │ ├── pidgeot.png │ │ ├── pidgeotto.png │ │ ├── pidgey.png │ │ ├── pikachu.png │ │ ├── pikachu_old.png │ │ ├── piloswine.png │ │ ├── pineco.png │ │ ├── pinsir.png │ │ ├── plusle.png │ │ ├── politoed.png │ │ ├── poliwag.png │ │ ├── poliwhirl.png │ │ ├── poliwrath.png │ │ ├── ponyta.png │ │ ├── poochyena.png │ │ ├── poochyena_old.png │ │ ├── porygon.png │ │ ├── porygon2.png │ │ ├── primeape.png │ │ ├── psyduck.png │ │ ├── pupitar.png │ │ ├── quagsire.png │ │ ├── quilava.png │ │ ├── qwilfish.png │ │ ├── raichu.png │ │ ├── raikou.png │ │ ├── ralts.png │ │ ├── rapidash.png │ │ ├── raticate.png │ │ ├── rattata.png │ │ ├── rayquaza.png │ │ ├── rayquaza_cutscene.png │ │ ├── rayquaza_still.png │ │ ├── regi.png │ │ ├── regice.png │ │ ├── regirock.png │ │ ├── registeel.png │ │ ├── relicanth.png │ │ ├── remoraid.png │ │ ├── rhydon.png │ │ ├── rhyhorn.png │ │ ├── roselia.png │ │ ├── sableye.png │ │ ├── salamence.png │ │ ├── sandshrew.png │ │ ├── sandslash.png │ │ ├── sceptile.png │ │ ├── scizor.png │ │ ├── scyther.png │ │ ├── seadra.png │ │ ├── seaking.png │ │ ├── sealeo.png │ │ ├── seedot.png │ │ ├── seel.png │ │ ├── sentret.png │ │ ├── seviper.png │ │ ├── sharpedo.png │ │ ├── shedinja.png │ │ ├── shelgon.png │ │ ├── shellder.png │ │ ├── shiftry.png │ │ ├── shroomish.png │ │ ├── shuckle.png │ │ ├── shuppet.png │ │ ├── silcoon.png │ │ ├── skarmory.png │ │ ├── skiploom.png │ │ ├── skitty.png │ │ ├── skitty_old.png │ │ ├── slaking.png │ │ ├── slakoth.png │ │ ├── slowbro.png │ │ ├── slowking.png │ │ ├── slowpoke.png │ │ ├── slugma.png │ │ ├── smeargle.png │ │ ├── smoochum.png │ │ ├── sneasel.png │ │ ├── snorlax.png │ │ ├── snorunt.png │ │ ├── snubbull.png │ │ ├── solrock.png │ │ ├── spearow.png │ │ ├── spheal.png │ │ ├── spinarak.png │ │ ├── spinda.png │ │ ├── spoink.png │ │ ├── squirtle.png │ │ ├── stantler.png │ │ ├── starmie.png │ │ ├── staryu.png │ │ ├── steelix.png │ │ ├── substitute.png │ │ ├── sudowoodo.png │ │ ├── sudowoodo_tree.png │ │ ├── suicune.png │ │ ├── sunflora.png │ │ ├── sunkern.png │ │ ├── surskit.png │ │ ├── swablu.png │ │ ├── swalot.png │ │ ├── swampert.png │ │ ├── swellow.png │ │ ├── swinub.png │ │ ├── taillow.png │ │ ├── tangela.png │ │ ├── tauros.png │ │ ├── teddiursa.png │ │ ├── tentacool.png │ │ ├── tentacruel.png │ │ ├── togepi.png │ │ ├── togetic.png │ │ ├── torchic.png │ │ ├── torkoal.png │ │ ├── totodile.png │ │ ├── trapinch.png │ │ ├── treecko.png │ │ ├── tropius.png │ │ ├── typhlosion.png │ │ ├── tyranitar.png │ │ ├── tyrogue.png │ │ ├── umbreon.png │ │ ├── unown_a.png │ │ ├── unown_b.png │ │ ├── unown_c.png │ │ ├── unown_d.png │ │ ├── unown_e.png │ │ ├── unown_exclamation.png │ │ ├── unown_f.png │ │ ├── unown_g.png │ │ ├── unown_h.png │ │ ├── unown_i.png │ │ ├── unown_j.png │ │ ├── unown_k.png │ │ ├── unown_l.png │ │ ├── unown_m.png │ │ ├── unown_n.png │ │ ├── unown_o.png │ │ ├── unown_p.png │ │ ├── unown_q.png │ │ ├── unown_question.png │ │ ├── unown_r.png │ │ ├── unown_s.png │ │ ├── unown_t.png │ │ ├── unown_u.png │ │ ├── unown_v.png │ │ ├── unown_w.png │ │ ├── unown_x.png │ │ ├── unown_y.png │ │ ├── unown_z.png │ │ ├── ursaring.png │ │ ├── vaporeon.png │ │ ├── venomoth.png │ │ ├── venonat.png │ │ ├── venusaur.png │ │ ├── vibrava.png │ │ ├── victreebel.png │ │ ├── vigoroth.png │ │ ├── vigoroth_mover.png │ │ ├── vileplume.png │ │ ├── volbeat.png │ │ ├── voltorb.png │ │ ├── vulpix.png │ │ ├── wailmer.png │ │ ├── wailord.png │ │ ├── walrein.png │ │ ├── wartortle.png │ │ ├── weedle.png │ │ ├── weepinbell.png │ │ ├── weezing.png │ │ ├── whiscash.png │ │ ├── whismur.png │ │ ├── wigglytuff.png │ │ ├── wingull.png │ │ ├── wingull_old.png │ │ ├── wobbuffet.png │ │ ├── wooper.png │ │ ├── wurmple.png │ │ ├── wynaut.png │ │ ├── xatu.png │ │ ├── yanma.png │ │ ├── zangoose.png │ │ ├── zapdos.png │ │ ├── zigzagoon.png │ │ ├── zigzagoon_old.png │ │ └── zubat.png ├── party_menu │ ├── bg.bin │ ├── bg.png │ ├── cancel_button.bin │ ├── confirm_button.bin │ ├── hold_icons.png │ ├── pokeball.png │ ├── pokeball_small.png │ ├── slot_main.bin │ ├── slot_main_no_hp.bin │ ├── slot_wide.bin │ ├── slot_wide_empty.bin │ └── slot_wide_no_hp.bin ├── picture_frame │ ├── beauty.png │ ├── beauty_map.bin │ ├── bg.pal │ ├── cool.png │ ├── cool_map.bin │ ├── cute.png │ ├── cute_map.bin │ ├── lobby.png │ ├── lobby_map.bin │ ├── smart.png │ ├── smart_map.bin │ ├── tough.png │ └── tough_map.bin ├── pokeblock │ ├── black.pal │ ├── blue.pal │ ├── brown.pal │ ├── device.png │ ├── feeding_bg.bin │ ├── gold.pal │ ├── gray.pal │ ├── green.pal │ ├── indigo.pal │ ├── liteblue.pal │ ├── menu.bin │ ├── menu.pal │ ├── menu.png │ ├── olive.pal │ ├── pink.pal │ ├── pokeblock.png │ ├── purple.pal │ ├── red.pal │ ├── use_screen │ │ ├── condition.png │ │ ├── graph.bin │ │ ├── graph.png │ │ ├── graph_data.bin │ │ ├── mon_frame.bin │ │ ├── mon_frame.png │ │ ├── mon_frame_pal.bin │ │ ├── nature.pal │ │ └── updown.png │ ├── white.pal │ └── yellow.pal ├── pokedex │ ├── area_glow.png │ ├── area_marker.png │ ├── area_unknown.png │ ├── arrows.png │ ├── bg_hoenn.pal │ ├── bg_national.pal │ ├── caught_ball.png │ ├── cry_meter.png │ ├── cry_meter_map.bin │ ├── cry_meter_needle.png │ ├── cry_screen.bin │ ├── cry_screen_bg │ ├── cry_screen_bg.png │ ├── info_screen.bin │ ├── interface.png │ ├── list.bin │ ├── list_underlay.bin │ ├── menu.png │ ├── noball_unused.png │ ├── region_map.bin │ ├── region_map.pal │ ├── region_map.png │ ├── region_map_affine.bin │ ├── region_map_affine.png │ ├── screen_select_bar_main.bin │ ├── screen_select_bar_submenu.bin │ ├── search_menu.pal │ ├── search_menu.png │ ├── search_menu_hoenn.bin │ ├── search_menu_national.bin │ ├── search_results_bg.pal │ ├── size_screen.bin │ ├── size_silhouette.pal │ ├── start_menu_main.bin │ └── start_menu_search_results.bin ├── pokemon │ ├── abra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── absol │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aerodactyl │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aggron │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aipom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alakazam │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── altaria │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ampharos │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── anorith │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arbok │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arcanine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ariados │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── armaldo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aron │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── articuno │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── azumarill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── azurill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bagon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── baltoy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── banette │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── barboach │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bayleef │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beautifly │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beedrill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beldum │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bellossom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bellsprout │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blastoise │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blaziken │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blissey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── breloom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bulbasaur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── butterfree │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cacnea │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cacturne │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── camerupt │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── carvanha │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cascoon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── castform │ │ ├── footprint.png │ │ ├── icon.png │ │ ├── normal │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── rainy │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── snowy │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── sunny │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── caterpie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── celebi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chansey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charizard │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charmander │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charmeleon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chikorita │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chimecho │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chinchou │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clamperl │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── claydol │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clefable │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clefairy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cleffa │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cloyster │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── combusken │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corphish │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corsola │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cradily │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crawdaunt │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crobat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── croconaw │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cubone │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cyndaquil │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── delcatty │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── delibird │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── deoxys │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── icon_speed.png │ │ ├── icon_speed_wide.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dewgong │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── diglett │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ditto │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dodrio │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── doduo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── donphan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragonair │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragonite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dratini │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drowzee │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dugtrio │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dunsparce │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dusclops │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── duskull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dustox │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── eevee │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── egg │ │ ├── anim_front.png │ │ ├── front.png │ │ ├── hatch.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shard.png │ ├── ekans │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electabuzz │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electrike │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electrode │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── elekid │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── entei │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── espeon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggcute │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggutor │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exploud │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── farfetchd │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── fearow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── feebas │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── feraligatr │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flaaffy │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flareon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flygon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── forretress │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── furret │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gardevoir │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gastly │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gengar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── geodude │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── girafarig │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── glalie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gligar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gloom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golbat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── goldeen │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golduck │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golem │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gorebyss │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── granbull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── graveler │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grimer │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── groudon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grovyle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── growlithe │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grumpig │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gulpin │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gyarados │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hariyama │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── haunter │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── heracross │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmonchan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmonlee │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmontop │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ho_oh │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hoothoot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hoppip │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── horsea │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── houndoom │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── houndour │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── huntail │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hypno │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── icon_palettes │ │ ├── icon_palette_0.pal │ │ ├── icon_palette_1.pal │ │ └── icon_palette_2.pal │ ├── igglybuff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── illumise │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ivysaur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jigglypuff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jirachi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jolteon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jumpluff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jynx │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kabuto │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kabutops │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kadabra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kakuna │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kangaskhan │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kecleon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kingdra │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kingler │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kirlia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── koffing │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── krabby │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kyogre │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lairon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lanturn │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lapras │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── larvitar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── latias │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── latios │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ledian │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ledyba │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lickitung │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lileep │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── linoone │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lombre │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lotad │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── loudred │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ludicolo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lugia │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lunatone │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── luvdisc │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machamp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machoke │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machop │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magby │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magcargo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magikarp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magmar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magnemite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magneton │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── makuhita │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── manectric │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mankey │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mantine │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mareep │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marill │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marowak │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marshtomp │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── masquerain │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mawile │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── medicham │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meditite │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── 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 │ │ └── spots │ │ │ ├── spot_0.png │ │ │ ├── spot_1.png │ │ │ ├── spot_2.png │ │ │ └── spot_3.png │ ├── spoink │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── squirtle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── stantler │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── starmie │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── staryu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── steelix │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sudowoodo │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── suicune │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sunflora │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sunkern │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── surskit │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swablu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swalot │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swampert │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swellow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swinub │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── taillow │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tangela │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tauros │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── teddiursa │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tentacool │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tentacruel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togepi │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togetic │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── torchic │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── torkoal │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── totodile │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── trapinch │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── treecko │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tropius │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── typhlosion │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tyranitar │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tyrogue │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── umbreon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── unown │ │ ├── a │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── b │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── c │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── d │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── e │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── exclamation_mark │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── f │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── footprint.png │ │ ├── g │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── h │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── i │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── j │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── k │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── l │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── m │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── n │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── normal.pal │ │ ├── o │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── p │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── q │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── question_mark │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── r │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── s │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── shiny.pal │ │ ├── t │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── u │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── v │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── w │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── x │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── y │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ └── z │ │ │ ├── anim_front.png │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ ├── unused_garbage.bin │ ├── ursaring │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vaporeon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venomoth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venonat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venusaur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vibrava │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── victreebel │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vigoroth │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vileplume │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── volbeat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── voltorb │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vulpix │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wailmer │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wailord │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── walrein │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wartortle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weedle │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weepinbell │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weezing │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── whiscash │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── whismur │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wigglytuff │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wingull │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wobbuffet │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wooper │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wurmple │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wynaut │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── xatu │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── yanma │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zangoose │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zapdos │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zigzagoon │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ └── zubat │ │ ├── anim_front.png │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal ├── pokemon_jump │ ├── bg.bin │ ├── bg.png │ ├── bonuses.bin │ ├── bonuses.png │ ├── interface.pal │ ├── pal1.pal │ ├── pal2.pal │ ├── star.png │ ├── venusaur.bin │ ├── venusaur.png │ ├── vine1.png │ ├── vine2.png │ ├── vine3.png │ └── vine4.png ├── pokemon_storage │ ├── arrow.png │ ├── box_selection_popup.pal │ ├── box_selection_popup_center.png │ ├── box_selection_popup_sides.png │ ├── close_box_button.bin │ ├── display_menu.bin │ ├── display_menu.pal │ ├── hand_cursor.png │ ├── hand_cursor_shadow.png │ ├── interface.pal │ ├── item_info_frame.png │ ├── menu.png │ ├── party_menu.bin │ ├── party_menu.pal │ ├── party_slot_empty.bin │ ├── party_slot_filled.bin │ ├── pkmn_data.bin │ ├── pkmn_data_gray.pal │ ├── scrolling_bg.bin │ ├── scrolling_bg.pal │ ├── scrolling_bg.png │ ├── scrolling_bg_move_items.pal │ ├── text_windows.pal │ ├── unused.pal │ ├── wallpapers │ │ ├── azumarill │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── beach │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── blank │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── block │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── cave │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── circles │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── city │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── crag │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── desert │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── diagonal │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── dusclops │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── forest │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── frame │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── friends_frame1.png │ │ ├── friends_frame2.png │ │ ├── horizontal │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── icons │ │ │ ├── aqua.png │ │ │ ├── asterisk.png │ │ │ ├── big_asterisk.png │ │ │ ├── bolt.png │ │ │ ├── brick.png │ │ │ ├── circle.png │ │ │ ├── cross.png │ │ │ ├── crystal.png │ │ │ ├── diglett.png │ │ │ ├── dot.png │ │ │ ├── five_star.png │ │ │ ├── footprint.png │ │ │ ├── four_circles.png │ │ │ ├── four_star.png │ │ │ ├── heart.png │ │ │ ├── koffing.png │ │ │ ├── latis.png │ │ │ ├── line_circle.png │ │ │ ├── lotad.png │ │ │ ├── luvdisc.png │ │ │ ├── magma.png │ │ │ ├── maze.png │ │ │ ├── minun.png │ │ │ ├── pichu.png │ │ │ ├── plusle.png │ │ │ ├── pokeball.png │ │ │ ├── ribbon.png │ │ │ ├── spinda.png │ │ │ ├── star_in_circle.png │ │ │ └── togepi.png │ │ ├── legendary │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── ludicolo │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── machine │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── pikachu │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── plain │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── pokecenter │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── pokecenter2 │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── polkadot │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── ribbon │ │ │ ├── bg.png │ │ │ ├── frame.pal │ │ │ └── tilemap.bin │ │ ├── river │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── savanna │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── screen │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ ├── seafloor │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── sky │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── snow │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── unused.bin │ │ ├── volcano │ │ │ ├── bg.png │ │ │ ├── frame.png │ │ │ └── tilemap.bin │ │ ├── whiscash │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ │ └── zigzagoon │ │ │ ├── bg.png │ │ │ └── tilemap.bin │ └── waveform.png ├── pokenav │ ├── bg_dots.bin │ ├── bg_dots.png │ ├── blue_light.png │ ├── condition │ │ ├── cancel.pal │ │ ├── cancel.png │ │ ├── graph.bin │ │ ├── graph.png │ │ ├── graph_data.bin │ │ ├── graph_data.pal │ │ ├── graph_data.png │ │ ├── mon_markings.pal │ │ ├── pokeball.png │ │ ├── pokeball_placeholder.png │ │ ├── search_results.bin │ │ ├── search_results.png │ │ ├── search_results_list.pal │ │ ├── sparkle.png │ │ └── text.pal │ ├── device_outline.png │ ├── device_outline_map.bin │ ├── header.bin │ ├── header.png │ ├── left_headers │ │ ├── beauty.png │ │ ├── condition.png │ │ ├── cool.png │ │ ├── cute.png │ │ ├── hoenn_map.png │ │ ├── main_menu.png │ │ ├── match_call.png │ │ ├── palette.pal │ │ ├── party.png │ │ ├── ribbons.png │ │ ├── search.png │ │ ├── smart.png │ │ └── tough.png │ ├── list_arrows.png │ ├── match_call │ │ ├── call_window.pal │ │ ├── list_window.pal │ │ ├── nav_icon.png │ │ ├── options_cursor.png │ │ ├── pokeball.pal │ │ ├── pokeball.png │ │ ├── ui.bin │ │ ├── ui.png │ │ └── window.png │ ├── message.bin │ ├── message.png │ ├── nav_icon.png │ ├── options │ │ ├── beauty.png │ │ ├── cancel.png │ │ ├── condition.png │ │ ├── cool.png │ │ ├── cute.png │ │ ├── hoenn_map.png │ │ ├── match_call.png │ │ ├── options.bin │ │ ├── options.pal │ │ ├── party.png │ │ ├── ribbons.png │ │ ├── search.png │ │ ├── smart.png │ │ ├── switch_off.png │ │ └── tough.png │ ├── region_map │ │ ├── brendan_icon.png │ │ ├── city_maps │ │ │ ├── dewford_0.bin │ │ │ ├── ever_grande_0.bin │ │ │ ├── ever_grande_1.bin │ │ │ ├── fallarbor_0.bin │ │ │ ├── fortree_0.bin │ │ │ ├── lavaridge_0.bin │ │ │ ├── lilycove_0.bin │ │ │ ├── lilycove_1.bin │ │ │ ├── littleroot_0.bin │ │ │ ├── mauville_0.bin │ │ │ ├── mauville_1.bin │ │ │ ├── mossdeep_0.bin │ │ │ ├── mossdeep_1.bin │ │ │ ├── oldale_0.bin │ │ │ ├── pacifidlog_0.bin │ │ │ ├── petalburg_0.bin │ │ │ ├── rustboro_0.bin │ │ │ ├── rustboro_1.bin │ │ │ ├── slateport_0.bin │ │ │ ├── slateport_1.bin │ │ │ ├── sootopolis_0.bin │ │ │ └── verdanturf_0.bin │ │ ├── city_zoom_text.png │ │ ├── cursor.pal │ │ ├── cursor_large.png │ │ ├── cursor_small.png │ │ ├── fly_target_icons.png │ │ ├── frame.bin │ │ ├── frame.png │ │ ├── info_window.pal │ │ ├── map.bin │ │ ├── map.pal │ │ ├── map.png │ │ ├── may_icon.png │ │ └── zoom_tiles.png │ └── ribbons │ │ ├── icons.png │ │ ├── icons1.pal │ │ ├── icons2.pal │ │ ├── icons3.pal │ │ ├── icons4.pal │ │ ├── icons5.pal │ │ ├── icons_big.png │ │ ├── list_bg.bin │ │ ├── list_bg.png │ │ ├── list_ui.pal │ │ ├── mon_info.pal │ │ ├── summary_bg.bin │ │ └── summary_bg.png ├── rayquaza_scene │ ├── scene_1 │ │ ├── clouds.png │ │ ├── clouds1.bin │ │ ├── clouds2.bin │ │ ├── clouds3.bin │ │ ├── groudon.png │ │ ├── groudon_claw.png │ │ ├── groudon_shoulder.png │ │ ├── kyogre.png │ │ ├── kyogre_dorsal_fin.png │ │ └── kyogre_pectoral_fin.png │ ├── scene_2 │ │ ├── bg.bin │ │ ├── bg.png │ │ ├── rayquaza.bin │ │ ├── rayquaza.png │ │ └── smoke.png │ ├── scene_3 │ │ ├── bg.bin │ │ ├── bg.pal │ │ ├── bg.png │ │ ├── light.bin │ │ ├── light.png │ │ ├── rayquaza.png │ │ └── rayquaza_tail.png │ ├── scene_4 │ │ ├── bg.bin │ │ ├── bg.pal │ │ ├── bg.png │ │ ├── orbs.bin │ │ ├── rayquaza.bin │ │ ├── rayquaza.png │ │ ├── streaks.bin │ │ └── streaks.png │ └── scene_5 │ │ ├── bg.bin │ │ ├── bg.pal │ │ ├── groudon.png │ │ ├── groudon_tail.png │ │ ├── kyogre.png │ │ ├── kyogre_splash.png │ │ ├── light.bin │ │ ├── light.png │ │ ├── rayquaza.png │ │ ├── rayquaza_tail.png │ │ ├── ring.bin │ │ └── ring.png ├── reset_rtc_screen │ ├── arrow.pal │ ├── arrow_down.png │ └── arrow_right.png ├── rotating_gates │ ├── l1.png │ ├── l2.png │ ├── l3.png │ ├── l4.png │ ├── t1.png │ ├── t2.png │ ├── t3.png │ └── t4.png ├── roulette │ ├── azurill.png │ ├── ball.png │ ├── ball_counter.png │ ├── center.png │ ├── credit.png │ ├── cursor.png │ ├── grid.bin │ ├── grid_icons.png │ ├── headers.png │ ├── makuhita.png │ ├── multiplier.png │ ├── numbers.png │ ├── shadow.png │ ├── shroomish.png │ ├── skitty.png │ ├── tailow.png │ ├── unused_1.pal │ ├── unused_2.pal │ ├── unused_3.pal │ ├── unused_4.pal │ ├── wheel.bin │ ├── wheel.png │ ├── window.png │ └── wynaut.png ├── shop │ ├── menu.bin │ ├── menu.png │ └── money.png ├── slot_machine │ ├── bolt.png │ ├── digital_display.png │ ├── duck.png │ ├── flashing_lights_inside.pal │ ├── flashing_lights_middle.pal │ ├── flashing_lights_outside.pal │ ├── info_box.bin │ ├── large_bolt │ │ ├── 0.png │ │ └── 1.png │ ├── menu.bin │ ├── menu.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 ├── starter_choose │ ├── birch_bag.bin │ ├── birch_grass.bin │ ├── pokeball_selection.png │ ├── starter_circle.png │ └── tiles.png ├── summary_screen │ ├── a_button.png │ ├── b_button.png │ ├── effect_battle.bin │ ├── effect_cancel.bin │ ├── effect_contest.bin │ ├── markings.pal │ ├── move_select.png │ ├── page_battle_moves.bin │ ├── page_contest_moves.bin │ ├── page_info.bin │ ├── page_info_egg.bin │ ├── page_skills.bin │ ├── status_tilemap.bin │ └── tiles.png ├── text_window │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── message_box.png │ ├── text_pal1.pal │ ├── text_pal2.pal │ ├── text_pal3.pal │ └── text_pal4.pal ├── title_screen │ ├── clouds.bin │ ├── clouds.png │ ├── emerald_version.png │ ├── logo_shine.png │ ├── pokemon_logo.bin │ ├── pokemon_logo.pal │ ├── pokemon_logo.png │ ├── press_start.png │ ├── rayquaza.bin │ ├── rayquaza.png │ ├── rayquaza_and_clouds.pal │ └── unused.pal ├── trade │ ├── cable_end.png │ ├── crossing_highlight_cable.bin │ ├── crossing_highlight_wireless.bin │ ├── cursor.pal │ ├── cursor.png │ ├── gba.pal │ ├── gba.png │ ├── gba_affine.png │ ├── gba_affine_map_cable.bin │ ├── gba_affine_map_wireless.bin │ ├── gba_map_cable.bin │ ├── gba_map_wireless.bin │ ├── gba_pal2.pal │ ├── gba_screen.png │ ├── link_mon.pal │ ├── link_mon_glow.png │ ├── link_mon_shadow.pal │ ├── link_mon_shadow.png │ ├── menu.bin │ ├── menu.pal │ ├── menu.png │ ├── menu_mon_box.bin │ ├── moves_box_map.bin │ ├── party_box_map.bin │ ├── platform.bin │ ├── pokeball.png │ ├── pokeball_symbol.png │ ├── pokeball_symbol_map.bin │ ├── stripes_bg2_map.bin │ ├── stripes_bg3_map.bin │ ├── text.pal │ ├── unused.bin │ ├── unused1.pal │ ├── unused2.pal │ ├── wireless_signal.bin │ ├── wireless_signal.png │ ├── wireless_signal_none.pal │ ├── wireless_signal_receive.pal │ └── wireless_signal_send.pal ├── trainer_card │ ├── back.bin │ ├── badges.png │ ├── bg.bin │ ├── bronze.pal │ ├── copper.pal │ ├── female_bg.pal │ ├── frlg │ │ ├── back.bin │ │ ├── badges.png │ │ ├── bg.bin │ │ ├── blue.pal │ │ ├── bronze.pal │ │ ├── female_bg.pal │ │ ├── front.bin │ │ ├── front_link.bin │ │ ├── gold.pal │ │ ├── green.pal │ │ ├── silver.pal │ │ ├── stickers.png │ │ ├── stickers1.pal │ │ ├── stickers2.pal │ │ ├── stickers3.pal │ │ ├── stickers4.pal │ │ └── tiles.png │ ├── front.bin │ ├── front_link.bin │ ├── gold.pal │ ├── green.pal │ ├── silver.pal │ ├── star.pal │ ├── tiles.png │ └── unused.pal ├── trainer_hill │ ├── ereader.pal │ ├── maps_expert │ │ ├── floor_0 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_1 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_2 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ └── floor_3 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ ├── maps_jp │ │ ├── floor_0 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ └── floor_1 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ ├── maps_normal │ │ ├── floor_0 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_1 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_2 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ └── floor_3 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ ├── maps_unique │ │ ├── floor_0 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_1 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_2 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ └── floor_3 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ ├── maps_variety │ │ ├── floor_0 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_1 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ ├── floor_2 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ │ └── floor_3 │ │ │ ├── collision.bin │ │ │ └── metatiles.bin │ ├── records_window.bin │ └── records_window.png ├── trainers │ ├── back_pics │ │ ├── brendan.png │ │ ├── brendan_rs.png │ │ ├── leaf.png │ │ ├── may.png │ │ ├── may_rs.png │ │ ├── red.png │ │ ├── steven.png │ │ └── wally.png │ ├── front_pics │ │ ├── aqua_admin_f.png │ │ ├── aqua_admin_m.png │ │ ├── aqua_grunt_f.png │ │ ├── aqua_grunt_m.png │ │ ├── aqua_leader_archie.png │ │ ├── arena_tycoon_greta.png │ │ ├── aroma_lady.png │ │ ├── battle_girl.png │ │ ├── beauty.png │ │ ├── bird_keeper.png │ │ ├── black_belt.png │ │ ├── brendan.png │ │ ├── brendan_rs.png │ │ ├── bug_catcher.png │ │ ├── bug_maniac.png │ │ ├── camper.png │ │ ├── champion_wallace.png │ │ ├── collector.png │ │ ├── cooltrainer_f.png │ │ ├── cooltrainer_m.png │ │ ├── cycling_triathlete_f.png │ │ ├── cycling_triathlete_m.png │ │ ├── dome_ace_tucker.png │ │ ├── dragon_tamer.png │ │ ├── elite_four_drake.png │ │ ├── elite_four_glacia.png │ │ ├── elite_four_phoebe.png │ │ ├── elite_four_sidney.png │ │ ├── expert_f.png │ │ ├── expert_m.png │ │ ├── factory_head_noland.png │ │ ├── fisherman.png │ │ ├── gentleman.png │ │ ├── guitarist.png │ │ ├── hex_maniac.png │ │ ├── hiker.png │ │ ├── interviewer.png │ │ ├── kindler.png │ │ ├── lady.png │ │ ├── lass.png │ │ ├── leader_brawly.png │ │ ├── leader_flannery.png │ │ ├── leader_juan.png │ │ ├── leader_norman.png │ │ ├── leader_roxanne.png │ │ ├── leader_tate_and_liza.png │ │ ├── leader_wattson.png │ │ ├── leader_winona.png │ │ ├── leaf.png │ │ ├── magma_admin.png │ │ ├── magma_grunt_f.png │ │ ├── magma_grunt_m.png │ │ ├── magma_leader_maxie.png │ │ ├── may.png │ │ ├── may_rs.png │ │ ├── ninja_boy.png │ │ ├── old_couple.png │ │ ├── palace_maven_spenser.png │ │ ├── parasol_lady.png │ │ ├── picnicker.png │ │ ├── pike_queen_lucy.png │ │ ├── pokefan_f.png │ │ ├── pokefan_m.png │ │ ├── pokemaniac.png │ │ ├── pokemon_breeder_f.png │ │ ├── pokemon_breeder_m.png │ │ ├── pokemon_ranger_f.png │ │ ├── pokemon_ranger_m.png │ │ ├── psychic_f.png │ │ ├── psychic_m.png │ │ ├── pyramid_king_brandon.png │ │ ├── red.png │ │ ├── rich_boy.png │ │ ├── ruin_maniac.png │ │ ├── running_triathlete_f.png │ │ ├── running_triathlete_m.png │ │ ├── sailor.png │ │ ├── salon_maiden_anabel.png │ │ ├── school_kid_f.png │ │ ├── school_kid_m.png │ │ ├── sis_and_bro.png │ │ ├── sr_and_jr.png │ │ ├── steven.png │ │ ├── swimmer_f.png │ │ ├── swimmer_m.png │ │ ├── swimming_triathlete_f.png │ │ ├── swimming_triathlete_m.png │ │ ├── tuber_f.png │ │ ├── tuber_m.png │ │ ├── twins.png │ │ ├── wally.png │ │ ├── young_couple.png │ │ └── youngster.png │ └── palettes │ │ ├── brendan.pal │ │ ├── brendan_rs.pal │ │ ├── may.pal │ │ ├── may_rs.pal │ │ ├── steven.pal │ │ └── wally.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 │ ├── chat_messages_window.pal │ ├── input_text.pal │ ├── interface.pal │ ├── keyboard.bin │ ├── keyboard.png │ ├── keyboard_cursor.png │ ├── r_button.png │ ├── r_button_labels.png │ ├── text_entry_arrow.png │ ├── text_entry_cursor.png │ └── unused.pal ├── unused │ ├── .gitignore │ ├── basic_frame.bin │ ├── basic_frame.png │ ├── blank_frame.bin │ ├── blue_frame.bin │ ├── cherry.png │ ├── color_frames.png │ ├── green_frame.bin │ ├── old_battle_interface_1.png │ ├── old_battle_interface_2.png │ ├── old_battle_interface_3.png │ ├── old_battle_interface_tilemap.bin │ ├── old_bulbasaur.png │ ├── old_bulbasaur2.png │ ├── old_charizard.png │ ├── old_charmap.bin │ ├── old_charmap.png │ ├── old_pal1.pal │ ├── old_pal2.pal │ ├── old_pal3.pal │ ├── old_pal4.pal │ ├── old_pal5.pal │ ├── old_pal6.pal │ ├── old_pal7.pal │ ├── red_frame.bin │ ├── shadow.png │ └── yellow_frame.bin ├── wallclock │ ├── clock.png │ ├── clock_start.bin │ ├── clock_view.bin │ ├── female.pal │ ├── hand.png │ ├── male.pal │ └── text_prompt.pal ├── weather │ ├── ash.png │ ├── bubble.png │ ├── cloud.png │ ├── drought │ │ ├── colors_0.bin │ │ ├── colors_1.bin │ │ ├── colors_2.bin │ │ ├── colors_3.bin │ │ ├── colors_4.bin │ │ └── colors_5.bin │ ├── drought0.bin │ ├── drought1.bin │ ├── drought2.bin │ ├── drought3.bin │ ├── drought4.bin │ ├── drought5.bin │ ├── fog.pal │ ├── fog_diagonal.png │ ├── fog_horizontal.png │ ├── rain.png │ ├── sandstorm.png │ ├── snow0.png │ └── snow1.png ├── wireless_status_screen │ ├── anim_00.pal │ ├── anim_01.pal │ ├── anim_02.pal │ ├── anim_03.pal │ ├── anim_04.pal │ ├── anim_05.pal │ ├── anim_06.pal │ ├── anim_07.pal │ ├── anim_08.pal │ ├── anim_09.pal │ ├── anim_10.pal │ ├── anim_11.pal │ ├── anim_12.pal │ ├── anim_13.pal │ ├── bg.bin │ ├── bg.png │ └── default.pal ├── wonder_card │ ├── bg1.bin │ ├── bg1.png │ ├── bg2.bin │ ├── bg2.png │ ├── bg3.bin │ ├── bg3.png │ ├── bg4.png │ ├── bg5.png │ ├── bg6.png │ ├── bg7.bin │ ├── bg7.png │ ├── bg8.bin │ ├── bg8.png │ ├── stamp_shadow.png │ ├── stamp_shadow_1.pal │ ├── stamp_shadow_2.pal │ ├── stamp_shadow_3.pal │ ├── stamp_shadow_4.pal │ ├── stamp_shadow_5.pal │ ├── stamp_shadow_6.pal │ ├── stamp_shadow_7.pal │ └── stamp_shadow_8.pal └── wonder_news │ ├── bg1.bin │ ├── bg1.png │ ├── bg2.bin │ ├── bg2.png │ ├── bg3.bin │ ├── bg3.png │ ├── bg7.bin │ ├── bg7.png │ ├── bg8.bin │ └── bg8.png ├── graphics_file_rules.mk ├── include ├── AgbRfu_LinkManager.h ├── agb_flash.h ├── apprentice.h ├── bard_music.h ├── battle.h ├── battle_ai_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 ├── bg.h ├── bike.h ├── blit.h ├── braille_puzzles.h ├── cable_club.h ├── clear_save_data_menu.h ├── clock.h ├── coins.h ├── confetti_util.h ├── config.h ├── constants │ ├── .gitignore │ ├── 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 │ ├── characters.h │ ├── coins.h │ ├── contest.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 │ ├── game_stat.h │ ├── global.h │ ├── hold_effects.h │ ├── item.h │ ├── item_effects.h │ ├── items.h │ ├── lilycove_lady.h │ ├── map_scripts.h │ ├── map_types.h │ ├── maps.h │ ├── mauville_old_man.h │ ├── metatile_behaviors.h │ ├── metatile_labels.h │ ├── moves.h │ ├── mystery_gift.h │ ├── opponents.h │ ├── party_menu.h │ ├── pokedex.h │ ├── pokemon.h │ ├── pokemon_icon.h │ ├── rematches.h │ ├── rgb.h │ ├── roulette.h │ ├── script_menu.h │ ├── secret_bases.h │ ├── slot_machine.h │ ├── songs.h │ ├── sound.h │ ├── species.h │ ├── tms_hms.h │ ├── trade.h │ ├── trainer_hill.h │ ├── trainer_types.h │ ├── trainers.h │ ├── tv.h │ ├── union_room.h │ ├── vars.h │ ├── weather.h │ └── wild_encounter.h ├── contest.h ├── contest_ai.h ├── contest_effect.h ├── contest_link.h ├── contest_painting.h ├── contest_util.h ├── coord_event_weather.h ├── credits.h ├── crt0.h ├── data.h ├── daycare.h ├── decompress.h ├── decoration.h ├── decoration_inventory.h ├── dewford_trend.h ├── digit_obj_util.h ├── diploma.h ├── dma3.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 ├── follower_helper.h ├── fonts.h ├── frontier_pass.h ├── frontier_util.h ├── gametypes.h ├── gba │ ├── defines.h │ ├── flash_internal.h │ ├── gba.h │ ├── io_reg.h │ ├── isagbprint.h │ ├── m4a_internal.h │ ├── macro.h │ ├── multiboot.h │ ├── syscall.h │ └── types.h ├── global.berry.h ├── global.fieldmap.h ├── global.h ├── global.tv.h ├── gpu_regs.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 ├── io_reg.h ├── item.h ├── item_icon.h ├── item_menu.h ├── item_menu_icons.h ├── item_use.h ├── landmark.h ├── libgcnmultiboot.h ├── librfu.h ├── lilycove_lady.h ├── link.h ├── link_rfu.h ├── list_menu.h ├── load_save.h ├── lottery_corner.h ├── m4a.h ├── mail.h ├── main.h ├── main_menu.h ├── malloc.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 ├── mini_printf.h ├── minigame_countdown.h ├── mirage_tower.h ├── mon_markings.h ├── money.h ├── move_relearner.h ├── multiboot.h ├── multiboot_pokemon_colosseum.h ├── mystery_event_menu.h ├── mystery_event_msg.h ├── mystery_event_script.h ├── mystery_gift.h ├── mystery_gift_client.h ├── mystery_gift_link.h ├── mystery_gift_menu.h ├── mystery_gift_server.h ├── mystery_gift_view.h ├── naming_screen.h ├── new_game.h ├── option_menu.h ├── overworld.h ├── palette.h ├── palette_util.h ├── party_menu.h ├── pc_screen_effect.h ├── play_time.h ├── player_pc.h ├── pokeball.h ├── pokeblock.h ├── pokedex.h ├── pokedex_area_region_map.h ├── pokedex_area_screen.h ├── pokedex_cry_screen.h ├── pokemon.h ├── pokemon_animation.h ├── pokemon_icon.h ├── pokemon_jump.h ├── pokemon_size_record.h ├── pokemon_storage_system.h ├── pokemon_summary_screen.h ├── pokenav.h ├── random.h ├── rayquaza_scene.h ├── record_mixing.h ├── recorded_battle.h ├── region_map.h ├── reload_save.h ├── reset_rtc_screen.h ├── reshow_battle_screen.h ├── roamer.h ├── rotating_gate.h ├── rotating_tile_puzzle.h ├── roulette.h ├── rtc.h ├── safari_zone.h ├── save.h ├── save_location.h ├── scanline_effect.h ├── script.h ├── script_menu.h ├── script_movement.h ├── script_pokemon_util.h ├── secret_base.h ├── shop.h ├── siirtc.h ├── slot_machine.h ├── sound.h ├── sprite.h ├── start_menu.h ├── starter_choose.h ├── string_util.h ├── strings.h ├── task.h ├── text.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 ├── window.h └── wonder_news.h ├── json_data_rules.mk ├── ld_script.ld ├── ld_script_modern.ld ├── libagbsyscall ├── Makefile └── libagbsyscall.s ├── make_tools.mk ├── map_data_rules.mk ├── palette.py ├── remote_build.sh ├── rom.sha1 ├── sound ├── MPlayDef.s ├── cry_tables.inc ├── direct_sound_data.inc ├── direct_sound_samples │ ├── bicycle_bell.aif │ ├── classical_choir_voice_ahhs.aif │ ├── cries │ │ ├── abra.aif │ │ ├── absol.aif │ │ ├── aerodactyl.aif │ │ ├── aggron.aif │ │ ├── aipom.aif │ │ ├── alakazam.aif │ │ ├── altaria.aif │ │ ├── ampharos.aif │ │ ├── anorith.aif │ │ ├── arbok.aif │ │ ├── arcanine.aif │ │ ├── ariados.aif │ │ ├── armaldo.aif │ │ ├── aron.aif │ │ ├── articuno.aif │ │ ├── azumarill.aif │ │ ├── azurill.aif │ │ ├── bagon.aif │ │ ├── baltoy.aif │ │ ├── banette.aif │ │ ├── barboach.aif │ │ ├── bayleef.aif │ │ ├── beautifly.aif │ │ ├── beedrill.aif │ │ ├── beldum.aif │ │ ├── bellossom.aif │ │ ├── bellsprout.aif │ │ ├── blastoise.aif │ │ ├── blaziken.aif │ │ ├── blissey.aif │ │ ├── breloom.aif │ │ ├── bulbasaur.aif │ │ ├── butterfree.aif │ │ ├── cacnea.aif │ │ ├── cacturne.aif │ │ ├── camerupt.aif │ │ ├── carvanha.aif │ │ ├── cascoon.aif │ │ ├── castform.aif │ │ ├── caterpie.aif │ │ ├── celebi.aif │ │ ├── chansey.aif │ │ ├── charizard.aif │ │ ├── charmander.aif │ │ ├── charmeleon.aif │ │ ├── chikorita.aif │ │ ├── chimecho.aif │ │ ├── chinchou.aif │ │ ├── clamperl.aif │ │ ├── claydol.aif │ │ ├── clefable.aif │ │ ├── clefairy.aif │ │ ├── cleffa.aif │ │ ├── cloyster.aif │ │ ├── combusken.aif │ │ ├── corphish.aif │ │ ├── corsola.aif │ │ ├── cradily.aif │ │ ├── crawdaunt.aif │ │ ├── crobat.aif │ │ ├── croconaw.aif │ │ ├── cubone.aif │ │ ├── cyndaquil.aif │ │ ├── delcatty.aif │ │ ├── delibird.aif │ │ ├── deoxys.aif │ │ ├── dewgong.aif │ │ ├── diglett.aif │ │ ├── ditto.aif │ │ ├── dodrio.aif │ │ ├── doduo.aif │ │ ├── donphan.aif │ │ ├── dragonair.aif │ │ ├── dragonite.aif │ │ ├── dratini.aif │ │ ├── drowzee.aif │ │ ├── dugtrio.aif │ │ ├── dunsparce.aif │ │ ├── dusclops.aif │ │ ├── duskull.aif │ │ ├── dustox.aif │ │ ├── eevee.aif │ │ ├── ekans.aif │ │ ├── electabuzz.aif │ │ ├── electrike.aif │ │ ├── electrode.aif │ │ ├── elekid.aif │ │ ├── entei.aif │ │ ├── espeon.aif │ │ ├── exeggcute.aif │ │ ├── exeggutor.aif │ │ ├── exploud.aif │ │ ├── farfetchd.aif │ │ ├── fearow.aif │ │ ├── feebas.aif │ │ ├── feraligatr.aif │ │ ├── flaaffy.aif │ │ ├── flareon.aif │ │ ├── flygon.aif │ │ ├── forretress.aif │ │ ├── furret.aif │ │ ├── gardevoir.aif │ │ ├── gastly.aif │ │ ├── gengar.aif │ │ ├── geodude.aif │ │ ├── girafarig.aif │ │ ├── glalie.aif │ │ ├── gligar.aif │ │ ├── gloom.aif │ │ ├── golbat.aif │ │ ├── goldeen.aif │ │ ├── golduck.aif │ │ ├── golem.aif │ │ ├── gorebyss.aif │ │ ├── granbull.aif │ │ ├── graveler.aif │ │ ├── grimer.aif │ │ ├── groudon.aif │ │ ├── grovyle.aif │ │ ├── growlithe.aif │ │ ├── grumpig.aif │ │ ├── gulpin.aif │ │ ├── gyarados.aif │ │ ├── hariyama.aif │ │ ├── haunter.aif │ │ ├── heracross.aif │ │ ├── hitmonchan.aif │ │ ├── hitmonlee.aif │ │ ├── hitmontop.aif │ │ ├── ho_oh.aif │ │ ├── hoothoot.aif │ │ ├── hoppip.aif │ │ ├── horsea.aif │ │ ├── houndoom.aif │ │ ├── houndour.aif │ │ ├── huntail.aif │ │ ├── hypno.aif │ │ ├── igglybuff.aif │ │ ├── illumise.aif │ │ ├── ivysaur.aif │ │ ├── jigglypuff.aif │ │ ├── jirachi.aif │ │ ├── jolteon.aif │ │ ├── jumpluff.aif │ │ ├── jynx.aif │ │ ├── kabuto.aif │ │ ├── kabutops.aif │ │ ├── kadabra.aif │ │ ├── kakuna.aif │ │ ├── kangaskhan.aif │ │ ├── kecleon.aif │ │ ├── kingdra.aif │ │ ├── kingler.aif │ │ ├── kirlia.aif │ │ ├── koffing.aif │ │ ├── krabby.aif │ │ ├── kyogre.aif │ │ ├── lairon.aif │ │ ├── lanturn.aif │ │ ├── lapras.aif │ │ ├── larvitar.aif │ │ ├── latias.aif │ │ ├── latios.aif │ │ ├── ledian.aif │ │ ├── ledyba.aif │ │ ├── lickitung.aif │ │ ├── lileep.aif │ │ ├── linoone.aif │ │ ├── lombre.aif │ │ ├── lotad.aif │ │ ├── loudred.aif │ │ ├── ludicolo.aif │ │ ├── lugia.aif │ │ ├── lunatone.aif │ │ ├── luvdisc.aif │ │ ├── machamp.aif │ │ ├── machoke.aif │ │ ├── machop.aif │ │ ├── magby.aif │ │ ├── magcargo.aif │ │ ├── magikarp.aif │ │ ├── magmar.aif │ │ ├── magnemite.aif │ │ ├── magneton.aif │ │ ├── makuhita.aif │ │ ├── manectric.aif │ │ ├── mankey.aif │ │ ├── mantine.aif │ │ ├── mareep.aif │ │ ├── marill.aif │ │ ├── marowak.aif │ │ ├── marshtomp.aif │ │ ├── masquerain.aif │ │ ├── mawile.aif │ │ ├── medicham.aif │ │ ├── meditite.aif │ │ ├── meganium.aif │ │ ├── meowth.aif │ │ ├── metagross.aif │ │ ├── metang.aif │ │ ├── metapod.aif │ │ ├── mew.aif │ │ ├── mewtwo.aif │ │ ├── mightyena.aif │ │ ├── milotic.aif │ │ ├── miltank.aif │ │ ├── minun.aif │ │ ├── misdreavus.aif │ │ ├── moltres.aif │ │ ├── mr_mime.aif │ │ ├── mudkip.aif │ │ ├── muk.aif │ │ ├── murkrow.aif │ │ ├── natu.aif │ │ ├── nidoking.aif │ │ ├── nidoqueen.aif │ │ ├── nidoran_f.aif │ │ ├── nidoran_m.aif │ │ ├── nidorina.aif │ │ ├── nidorino.aif │ │ ├── nincada.aif │ │ ├── ninetales.aif │ │ ├── ninjask.aif │ │ ├── noctowl.aif │ │ ├── nosepass.aif │ │ ├── numel.aif │ │ ├── nuzleaf.aif │ │ ├── octillery.aif │ │ ├── oddish.aif │ │ ├── omanyte.aif │ │ ├── omastar.aif │ │ ├── onix.aif │ │ ├── paras.aif │ │ ├── parasect.aif │ │ ├── pelipper.aif │ │ ├── persian.aif │ │ ├── phanpy.aif │ │ ├── pichu.aif │ │ ├── pidgeot.aif │ │ ├── pidgeotto.aif │ │ ├── pidgey.aif │ │ ├── pikachu.aif │ │ ├── piloswine.aif │ │ ├── pineco.aif │ │ ├── pinsir.aif │ │ ├── plusle.aif │ │ ├── politoed.aif │ │ ├── poliwag.aif │ │ ├── poliwhirl.aif │ │ ├── poliwrath.aif │ │ ├── ponyta.aif │ │ ├── poochyena.aif │ │ ├── porygon.aif │ │ ├── porygon2.aif │ │ ├── primeape.aif │ │ ├── psyduck.aif │ │ ├── pupitar.aif │ │ ├── quagsire.aif │ │ ├── quilava.aif │ │ ├── qwilfish.aif │ │ ├── raichu.aif │ │ ├── raikou.aif │ │ ├── ralts.aif │ │ ├── rapidash.aif │ │ ├── raticate.aif │ │ ├── rattata.aif │ │ ├── rayquaza.aif │ │ ├── regice.aif │ │ ├── regirock.aif │ │ ├── registeel.aif │ │ ├── relicanth.aif │ │ ├── remoraid.aif │ │ ├── rhydon.aif │ │ ├── rhyhorn.aif │ │ ├── roselia.aif │ │ ├── sableye.aif │ │ ├── salamence.aif │ │ ├── sandshrew.aif │ │ ├── sandslash.aif │ │ ├── sceptile.aif │ │ ├── scizor.aif │ │ ├── scyther.aif │ │ ├── seadra.aif │ │ ├── seaking.aif │ │ ├── sealeo.aif │ │ ├── seedot.aif │ │ ├── seel.aif │ │ ├── sentret.aif │ │ ├── seviper.aif │ │ ├── sharpedo.aif │ │ ├── shedinja.aif │ │ ├── shelgon.aif │ │ ├── shellder.aif │ │ ├── shiftry.aif │ │ ├── shroomish.aif │ │ ├── shuckle.aif │ │ ├── shuppet.aif │ │ ├── silcoon.aif │ │ ├── skarmory.aif │ │ ├── skiploom.aif │ │ ├── skitty.aif │ │ ├── slaking.aif │ │ ├── slakoth.aif │ │ ├── slowbro.aif │ │ ├── slowking.aif │ │ ├── slowpoke.aif │ │ ├── slugma.aif │ │ ├── smeargle.aif │ │ ├── smoochum.aif │ │ ├── sneasel.aif │ │ ├── snorlax.aif │ │ ├── snorunt.aif │ │ ├── snubbull.aif │ │ ├── solrock.aif │ │ ├── spearow.aif │ │ ├── spheal.aif │ │ ├── spinarak.aif │ │ ├── spinda.aif │ │ ├── spoink.aif │ │ ├── squirtle.aif │ │ ├── stantler.aif │ │ ├── starmie.aif │ │ ├── staryu.aif │ │ ├── steelix.aif │ │ ├── sudowoodo.aif │ │ ├── suicune.aif │ │ ├── sunflora.aif │ │ ├── sunkern.aif │ │ ├── surskit.aif │ │ ├── swablu.aif │ │ ├── swalot.aif │ │ ├── swampert.aif │ │ ├── swellow.aif │ │ ├── swinub.aif │ │ ├── taillow.aif │ │ ├── tangela.aif │ │ ├── tauros.aif │ │ ├── teddiursa.aif │ │ ├── tentacool.aif │ │ ├── tentacruel.aif │ │ ├── togepi.aif │ │ ├── togetic.aif │ │ ├── torchic.aif │ │ ├── torkoal.aif │ │ ├── totodile.aif │ │ ├── trapinch.aif │ │ ├── treecko.aif │ │ ├── tropius.aif │ │ ├── typhlosion.aif │ │ ├── tyranitar.aif │ │ ├── tyrogue.aif │ │ ├── umbreon.aif │ │ ├── unown.aif │ │ ├── unused_265.aif │ │ ├── unused_268.aif │ │ ├── ursaring.aif │ │ ├── vaporeon.aif │ │ ├── venomoth.aif │ │ ├── venonat.aif │ │ ├── venusaur.aif │ │ ├── vibrava.aif │ │ ├── victreebel.aif │ │ ├── vigoroth.aif │ │ ├── vileplume.aif │ │ ├── volbeat.aif │ │ ├── voltorb.aif │ │ ├── vulpix.aif │ │ ├── wailmer.aif │ │ ├── wailord.aif │ │ ├── walrein.aif │ │ ├── wartortle.aif │ │ ├── weedle.aif │ │ ├── weepinbell.aif │ │ ├── weezing.aif │ │ ├── whiscash.aif │ │ ├── whismur.aif │ │ ├── wigglytuff.aif │ │ ├── wingull.aif │ │ ├── wobbuffet.aif │ │ ├── wooper.aif │ │ ├── wurmple.aif │ │ ├── wynaut.aif │ │ ├── xatu.aif │ │ ├── yanma.aif │ │ ├── zangoose.aif │ │ ├── zapdos.aif │ │ ├── zigzagoon.aif │ │ └── zubat.aif │ ├── dance_drums_ride_bell.aif │ ├── drum_and_percussion_kick.aif │ ├── ethnic_flavours_atarigane.aif │ ├── ethnic_flavours_hyoushigi.aif │ ├── ethnic_flavours_kotsuzumi.aif │ ├── ethnic_flavours_ohtsuzumi.aif │ ├── heart_of_asia_gamelan.aif │ ├── phonemes │ │ ├── 01.aif │ │ ├── 02.aif │ │ ├── 03.aif │ │ ├── 04.aif │ │ ├── 05.aif │ │ ├── 06.aif │ │ ├── 07.aif │ │ ├── 08.aif │ │ ├── 09.aif │ │ ├── 10.aif │ │ ├── 11.aif │ │ ├── 12.aif │ │ ├── 13.aif │ │ ├── 14.aif │ │ ├── 15.aif │ │ ├── 16.aif │ │ ├── 17.aif │ │ ├── 18.aif │ │ ├── 19.aif │ │ ├── 20.aif │ │ ├── 21.aif │ │ ├── 22.aif │ │ ├── 23.aif │ │ ├── 24.aif │ │ ├── 25.aif │ │ ├── 26.aif │ │ ├── 27.aif │ │ ├── 28.aif │ │ ├── 29.aif │ │ ├── 30.aif │ │ ├── 31.aif │ │ ├── 32.aif │ │ ├── 33.aif │ │ ├── 34.aif │ │ ├── 35.aif │ │ ├── 36.aif │ │ ├── 37.aif │ │ ├── 38.aif │ │ ├── 39.aif │ │ ├── 40.aif │ │ ├── 41.aif │ │ ├── 42.aif │ │ ├── 43.aif │ │ ├── 44.aif │ │ ├── 45.aif │ │ ├── 46.aif │ │ ├── 47.aif │ │ ├── 48.aif │ │ ├── 49.aif │ │ ├── 50.aif │ │ └── 51.aif │ ├── register_noise.aif │ ├── sc88pro_accordion.aif │ ├── sc88pro_accordion_duplicate.aif │ ├── sc88pro_bubbles.aif │ ├── sc88pro_church_organ3_high.aif │ ├── sc88pro_church_organ3_low.aif │ ├── sc88pro_fingered_bass.aif │ ├── sc88pro_flute.aif │ ├── sc88pro_french_horn_60.aif │ ├── sc88pro_french_horn_72.aif │ ├── sc88pro_fretless_bass.aif │ ├── sc88pro_glockenspiel.aif │ ├── sc88pro_harp.aif │ ├── sc88pro_jingle_bell.aif │ ├── sc88pro_mute_high_conga.aif │ ├── sc88pro_nylon_str_guitar.aif │ ├── sc88pro_open_low_conga.aif │ ├── sc88pro_orchestra_cymbal_crash.aif │ ├── sc88pro_orchestra_snare.aif │ ├── sc88pro_organ2.aif │ ├── sc88pro_piano1_48.aif │ ├── sc88pro_piano1_60.aif │ ├── sc88pro_piano1_72.aif │ ├── sc88pro_piano1_84.aif │ ├── sc88pro_pizzicato_strings.aif │ ├── sc88pro_rnd_kick.aif │ ├── sc88pro_rnd_snare.aif │ ├── sc88pro_slap_bass.aif │ ├── sc88pro_square_wave.aif │ ├── sc88pro_string_ensemble_60.aif │ ├── sc88pro_string_ensemble_72.aif │ ├── sc88pro_string_ensemble_84.aif │ ├── sc88pro_synth_bass.aif │ ├── sc88pro_taiko.aif │ ├── sc88pro_tambourine.aif │ ├── sc88pro_timpani.aif │ ├── sc88pro_timpani_with_snare.aif │ ├── sc88pro_tr909_hand_clap.aif │ ├── sc88pro_trumpet_60.aif │ ├── sc88pro_trumpet_72.aif │ ├── sc88pro_trumpet_84.aif │ ├── sc88pro_tuba_39.aif │ ├── sc88pro_tuba_51.aif │ ├── sc88pro_tubular_bell.aif │ ├── sc88pro_wind.aif │ ├── sc88pro_xylophone.aif │ ├── sd90_ambient_tom.aif │ ├── sd90_classical_detuned_ep1_high.aif │ ├── sd90_classical_detuned_ep1_low.aif │ ├── sd90_classical_distortion_guitar_high.aif │ ├── sd90_classical_distortion_guitar_low.aif │ ├── sd90_classical_oboe.aif │ ├── sd90_classical_overdrive_guitar.aif │ ├── sd90_classical_shakuhachi.aif │ ├── sd90_classical_whistle.aif │ ├── sd90_cowbell.aif │ ├── sd90_enhanced_delay_shaku.aif │ ├── sd90_open_triangle.aif │ ├── sd90_solo_snare.aif │ ├── sd90_special_scream_drive.aif │ ├── steinway_b_piano.aif │ ├── trinity_30303_mega_bass.aif │ ├── trinity_big_boned.aif │ ├── trinity_cymbal_crash.aif │ ├── unknown_01.aif │ ├── unknown_02.aif │ ├── unknown_03.aif │ ├── unknown_04.aif │ ├── unknown_05.aif │ ├── unknown_06.aif │ ├── unknown_07.aif │ ├── unknown_08.aif │ ├── unknown_09.aif │ ├── unknown_10.aif │ ├── unknown_11.aif │ ├── unknown_12.aif │ ├── unknown_13.aif │ ├── unknown_14.aif │ ├── unknown_15.aif │ ├── unknown_16.aif │ ├── unknown_17.aif │ ├── unknown_18.aif │ ├── unknown_bell.aif │ ├── unknown_close_hihat.aif │ ├── unknown_female_voice.aif │ ├── unknown_koto_high.aif │ ├── unknown_koto_low.aif │ ├── unknown_open_hihat.aif │ ├── unknown_snare.aif │ ├── unknown_synth_snare.aif │ ├── unused_guitar_separates_power_chord.aif │ ├── unused_heart_of_asia_indian_drum.aif │ ├── unused_sc55_tom.aif │ ├── unused_sc88pro_unison_slap.aif │ ├── unused_sd90_oboe.aif │ └── unused_unknown_male_voice.aif ├── keysplit_tables.inc ├── music_player_table.inc ├── programmable_wave_data.inc ├── programmable_wave_samples │ ├── 01.pcm │ ├── 02.pcm │ ├── 03.pcm │ ├── 04.pcm │ ├── 05.pcm │ ├── 06.pcm │ ├── 07.pcm │ ├── 08.pcm │ ├── 09.pcm │ ├── 10.pcm │ ├── 11.pcm │ ├── 12.pcm │ ├── 13.pcm │ ├── 14.pcm │ ├── 15.pcm │ ├── 16.pcm │ ├── 17.pcm │ ├── 18.pcm │ ├── 19.pcm │ ├── 20.pcm │ ├── 21.pcm │ ├── 22.pcm │ ├── 23.pcm │ ├── 24.pcm │ └── 25.pcm ├── song_table.inc ├── songs │ ├── midi │ │ ├── midi.cfg │ │ ├── mus_abandoned_ship.mid │ │ ├── mus_abnormal_weather.mid │ │ ├── mus_aqua_magma_hideout.mid │ │ ├── mus_awaken_legend.mid │ │ ├── mus_b_arena.mid │ │ ├── mus_b_dome.mid │ │ ├── mus_b_dome_lobby.mid │ │ ├── mus_b_factory.mid │ │ ├── mus_b_frontier.mid │ │ ├── mus_b_palace.mid │ │ ├── mus_b_pike.mid │ │ ├── mus_b_pyramid.mid │ │ ├── mus_b_pyramid_top.mid │ │ ├── mus_b_tower.mid │ │ ├── mus_b_tower_rs.mid │ │ ├── mus_birch_lab.mid │ │ ├── mus_c_comm_center.mid │ │ ├── mus_c_vs_legend_beast.mid │ │ ├── mus_cable_car.mid │ │ ├── mus_caught.mid │ │ ├── mus_cave_of_origin.mid │ │ ├── mus_contest.mid │ │ ├── mus_contest_lobby.mid │ │ ├── mus_contest_results.mid │ │ ├── mus_contest_winner.mid │ │ ├── mus_credits.mid │ │ ├── mus_cycling.mid │ │ ├── mus_dewford.mid │ │ ├── mus_dummy.mid │ │ ├── mus_encounter_aqua.mid │ │ ├── mus_encounter_brendan.mid │ │ ├── mus_encounter_champion.mid │ │ ├── mus_encounter_cool.mid │ │ ├── mus_encounter_elite_four.mid │ │ ├── mus_encounter_female.mid │ │ ├── mus_encounter_girl.mid │ │ ├── mus_encounter_hiker.mid │ │ ├── mus_encounter_intense.mid │ │ ├── mus_encounter_interviewer.mid │ │ ├── mus_encounter_magma.mid │ │ ├── mus_encounter_male.mid │ │ ├── mus_encounter_may.mid │ │ ├── mus_encounter_rich.mid │ │ ├── mus_encounter_suspicious.mid │ │ ├── mus_encounter_swimmer.mid │ │ ├── mus_encounter_twins.mid │ │ ├── mus_end.mid │ │ ├── mus_ever_grande.mid │ │ ├── mus_evolution.mid │ │ ├── mus_evolution_intro.mid │ │ ├── mus_evolved.mid │ │ ├── mus_fallarbor.mid │ │ ├── mus_follow_me.mid │ │ ├── mus_fortree.mid │ │ ├── mus_game_corner.mid │ │ ├── mus_gsc_pewter.mid │ │ ├── mus_gsc_route38.mid │ │ ├── mus_gym.mid │ │ ├── mus_hall_of_fame.mid │ │ ├── mus_hall_of_fame_room.mid │ │ ├── mus_heal.mid │ │ ├── mus_help.mid │ │ ├── mus_intro.mid │ │ ├── mus_intro_battle.mid │ │ ├── mus_level_up.mid │ │ ├── mus_lilycove.mid │ │ ├── mus_lilycove_museum.mid │ │ ├── mus_link_contest_p1.mid │ │ ├── mus_link_contest_p2.mid │ │ ├── mus_link_contest_p3.mid │ │ ├── mus_link_contest_p4.mid │ │ ├── mus_littleroot.mid │ │ ├── mus_littleroot_test.mid │ │ ├── mus_move_deleted.mid │ │ ├── mus_mt_chimney.mid │ │ ├── mus_mt_pyre.mid │ │ ├── mus_mt_pyre_exterior.mid │ │ ├── mus_obtain_b_points.mid │ │ ├── mus_obtain_badge.mid │ │ ├── mus_obtain_berry.mid │ │ ├── mus_obtain_item.mid │ │ ├── mus_obtain_symbol.mid │ │ ├── mus_obtain_tmhm.mid │ │ ├── mus_oceanic_museum.mid │ │ ├── mus_oldale.mid │ │ ├── mus_petalburg.mid │ │ ├── mus_petalburg_woods.mid │ │ ├── mus_poke_center.mid │ │ ├── mus_poke_mart.mid │ │ ├── mus_rayquaza_appears.mid │ │ ├── mus_register_match_call.mid │ │ ├── mus_rg_berry_pick.mid │ │ ├── mus_rg_caught.mid │ │ ├── mus_rg_caught_intro.mid │ │ ├── mus_rg_celadon.mid │ │ ├── mus_rg_cinnabar.mid │ │ ├── mus_rg_credits.mid │ │ ├── mus_rg_cycling.mid │ │ ├── mus_rg_dex_rating.mid │ │ ├── mus_rg_encounter_boy.mid │ │ ├── mus_rg_encounter_deoxys.mid │ │ ├── mus_rg_encounter_girl.mid │ │ ├── mus_rg_encounter_gym_leader.mid │ │ ├── mus_rg_encounter_rival.mid │ │ ├── mus_rg_encounter_rocket.mid │ │ ├── mus_rg_follow_me.mid │ │ ├── mus_rg_fuchsia.mid │ │ ├── mus_rg_game_corner.mid │ │ ├── mus_rg_game_freak.mid │ │ ├── mus_rg_gym.mid │ │ ├── mus_rg_hall_of_fame.mid │ │ ├── mus_rg_heal.mid │ │ ├── mus_rg_intro_fight.mid │ │ ├── mus_rg_jigglypuff.mid │ │ ├── mus_rg_lavender.mid │ │ ├── mus_rg_mt_moon.mid │ │ ├── mus_rg_mystery_gift.mid │ │ ├── mus_rg_net_center.mid │ │ ├── mus_rg_new_game_exit.mid │ │ ├── mus_rg_new_game_instruct.mid │ │ ├── mus_rg_new_game_intro.mid │ │ ├── mus_rg_oak.mid │ │ ├── mus_rg_oak_lab.mid │ │ ├── mus_rg_obtain_key_item.mid │ │ ├── mus_rg_pallet.mid │ │ ├── mus_rg_pewter.mid │ │ ├── mus_rg_photo.mid │ │ ├── mus_rg_poke_center.mid │ │ ├── mus_rg_poke_flute.mid │ │ ├── mus_rg_poke_jump.mid │ │ ├── mus_rg_poke_mansion.mid │ │ ├── mus_rg_poke_tower.mid │ │ ├── mus_rg_rival_exit.mid │ │ ├── mus_rg_rocket_hideout.mid │ │ ├── mus_rg_route1.mid │ │ ├── mus_rg_route11.mid │ │ ├── mus_rg_route24.mid │ │ ├── mus_rg_route3.mid │ │ ├── mus_rg_sevii_123.mid │ │ ├── mus_rg_sevii_45.mid │ │ ├── mus_rg_sevii_67.mid │ │ ├── mus_rg_sevii_cave.mid │ │ ├── mus_rg_sevii_dungeon.mid │ │ ├── mus_rg_sevii_route.mid │ │ ├── mus_rg_silph.mid │ │ ├── mus_rg_slow_pallet.mid │ │ ├── mus_rg_ss_anne.mid │ │ ├── mus_rg_surf.mid │ │ ├── mus_rg_teachy_tv_menu.mid │ │ ├── mus_rg_teachy_tv_show.mid │ │ ├── mus_rg_title.mid │ │ ├── mus_rg_trainer_tower.mid │ │ ├── mus_rg_union_room.mid │ │ ├── mus_rg_vermillion.mid │ │ ├── mus_rg_victory_gym_leader.mid │ │ ├── mus_rg_victory_road.mid │ │ ├── mus_rg_victory_trainer.mid │ │ ├── mus_rg_victory_wild.mid │ │ ├── mus_rg_viridian_forest.mid │ │ ├── mus_rg_vs_champion.mid │ │ ├── mus_rg_vs_deoxys.mid │ │ ├── mus_rg_vs_gym_leader.mid │ │ ├── mus_rg_vs_legend.mid │ │ ├── mus_rg_vs_mewtwo.mid │ │ ├── mus_rg_vs_trainer.mid │ │ ├── mus_rg_vs_wild.mid │ │ ├── mus_roulette.mid │ │ ├── mus_route101.mid │ │ ├── mus_route104.mid │ │ ├── mus_route110.mid │ │ ├── mus_route111.mid │ │ ├── mus_route113.mid │ │ ├── mus_route119.mid │ │ ├── mus_route120.mid │ │ ├── mus_route122.mid │ │ ├── mus_rustboro.mid │ │ ├── mus_safari_zone.mid │ │ ├── mus_sailing.mid │ │ ├── mus_school.mid │ │ ├── mus_sealed_chamber.mid │ │ ├── mus_slateport.mid │ │ ├── mus_slots_jackpot.mid │ │ ├── mus_slots_win.mid │ │ ├── mus_sootopolis.mid │ │ ├── mus_surf.mid │ │ ├── mus_title.mid │ │ ├── mus_too_bad.mid │ │ ├── mus_trick_house.mid │ │ ├── mus_underwater.mid │ │ ├── mus_verdanturf.mid │ │ ├── mus_victory_aqua_magma.mid │ │ ├── mus_victory_gym_leader.mid │ │ ├── mus_victory_league.mid │ │ ├── mus_victory_road.mid │ │ ├── mus_victory_trainer.mid │ │ ├── mus_victory_wild.mid │ │ ├── mus_vs_aqua_magma.mid │ │ ├── mus_vs_aqua_magma_leader.mid │ │ ├── mus_vs_champion.mid │ │ ├── mus_vs_elite_four.mid │ │ ├── mus_vs_frontier_brain.mid │ │ ├── mus_vs_gym_leader.mid │ │ ├── mus_vs_kyogre_groudon.mid │ │ ├── mus_vs_mew.mid │ │ ├── mus_vs_rayquaza.mid │ │ ├── mus_vs_regi.mid │ │ ├── mus_vs_rival.mid │ │ ├── mus_vs_trainer.mid │ │ ├── mus_vs_wild.mid │ │ ├── mus_weather_groudon.mid │ │ ├── ph_choice_blend.mid │ │ ├── ph_choice_held.mid │ │ ├── ph_choice_solo.mid │ │ ├── ph_cloth_blend.mid │ │ ├── ph_cloth_held.mid │ │ ├── ph_cloth_solo.mid │ │ ├── ph_cure_blend.mid │ │ ├── ph_cure_held.mid │ │ ├── ph_cure_solo.mid │ │ ├── ph_dress_blend.mid │ │ ├── ph_dress_held.mid │ │ ├── ph_dress_solo.mid │ │ ├── ph_face_blend.mid │ │ ├── ph_face_held.mid │ │ ├── ph_face_solo.mid │ │ ├── ph_fleece_blend.mid │ │ ├── ph_fleece_held.mid │ │ ├── ph_fleece_solo.mid │ │ ├── ph_foot_blend.mid │ │ ├── ph_foot_held.mid │ │ ├── ph_foot_solo.mid │ │ ├── ph_goat_blend.mid │ │ ├── ph_goat_held.mid │ │ ├── ph_goat_solo.mid │ │ ├── ph_goose_blend.mid │ │ ├── ph_goose_held.mid │ │ ├── ph_goose_solo.mid │ │ ├── ph_kit_blend.mid │ │ ├── ph_kit_held.mid │ │ ├── ph_kit_solo.mid │ │ ├── ph_lot_blend.mid │ │ ├── ph_lot_held.mid │ │ ├── ph_lot_solo.mid │ │ ├── ph_mouth_blend.mid │ │ ├── ph_mouth_held.mid │ │ ├── ph_mouth_solo.mid │ │ ├── ph_nurse_blend.mid │ │ ├── ph_nurse_held.mid │ │ ├── ph_nurse_solo.mid │ │ ├── ph_price_blend.mid │ │ ├── ph_price_held.mid │ │ ├── ph_price_solo.mid │ │ ├── ph_strut_blend.mid │ │ ├── ph_strut_held.mid │ │ ├── ph_strut_solo.mid │ │ ├── ph_thought_blend.mid │ │ ├── ph_thought_held.mid │ │ ├── ph_thought_solo.mid │ │ ├── ph_trap_blend.mid │ │ ├── ph_trap_held.mid │ │ ├── ph_trap_solo.mid │ │ ├── se_a.mid │ │ ├── se_applause.mid │ │ ├── se_arena_timeup1.mid │ │ ├── se_arena_timeup2.mid │ │ ├── se_ball.mid │ │ ├── se_ball_bounce_1.mid │ │ ├── se_ball_bounce_2.mid │ │ ├── se_ball_bounce_3.mid │ │ ├── se_ball_bounce_4.mid │ │ ├── se_ball_open.mid │ │ ├── se_ball_throw.mid │ │ ├── se_ball_trade.mid │ │ ├── se_ball_tray_ball.mid │ │ ├── se_ball_tray_enter.mid │ │ ├── se_ball_tray_exit.mid │ │ ├── se_balloon_blue.mid │ │ ├── se_balloon_red.mid │ │ ├── se_balloon_yellow.mid │ │ ├── se_bang.mid │ │ ├── se_berry_blender.mid │ │ ├── se_bike_bell.mid │ │ ├── se_bike_hop.mid │ │ ├── se_boo.mid │ │ ├── se_breakable_door.mid │ │ ├── se_bridge_walk.mid │ │ ├── se_card.mid │ │ ├── se_click.mid │ │ ├── se_contest_condition_lose.mid │ │ ├── se_contest_curtain_fall.mid │ │ ├── se_contest_curtain_rise.mid │ │ ├── se_contest_heart.mid │ │ ├── se_contest_icon_change.mid │ │ ├── se_contest_icon_clear.mid │ │ ├── se_contest_mons_turn.mid │ │ ├── se_contest_place.mid │ │ ├── se_dex_search.mid │ │ ├── se_ding_dong.mid │ │ ├── se_door.mid │ │ ├── se_downpour.mid │ │ ├── se_downpour_stop.mid │ │ ├── se_e.mid │ │ ├── se_effective.mid │ │ ├── se_egg_hatch.mid │ │ ├── se_elevator.mid │ │ ├── se_escalator.mid │ │ ├── se_exit.mid │ │ ├── se_exp.mid │ │ ├── se_exp_max.mid │ │ ├── se_failure.mid │ │ ├── se_faint.mid │ │ ├── se_fall.mid │ │ ├── se_field_poison.mid │ │ ├── se_flee.mid │ │ ├── se_fu_zaku.mid │ │ ├── se_glass_flute.mid │ │ ├── se_i.mid │ │ ├── se_ice_break.mid │ │ ├── se_ice_crack.mid │ │ ├── se_ice_stairs.mid │ │ ├── se_intro_blast.mid │ │ ├── se_itemfinder.mid │ │ ├── se_lavaridge_fall_warp.mid │ │ ├── se_ledge.mid │ │ ├── se_low_health.mid │ │ ├── se_m_bind.mid │ │ ├── se_m_comet_punch.mid │ │ ├── se_m_cut.mid │ │ ├── se_m_double_slap.mid │ │ ├── se_m_fire_punch.mid │ │ ├── se_m_fly.mid │ │ ├── se_m_gust.mid │ │ ├── se_m_gust2.mid │ │ ├── se_m_headbutt.mid │ │ ├── se_m_horn_attack.mid │ │ ├── se_m_jump_kick.mid │ │ ├── se_m_leer.mid │ │ ├── se_m_mega_kick.mid │ │ ├── se_m_mega_kick2.mid │ │ ├── se_m_pay_day.mid │ │ ├── se_m_razor_wind.mid │ │ ├── se_m_razor_wind2.mid │ │ ├── se_m_sand_attack.mid │ │ ├── se_m_scratch.mid │ │ ├── se_m_swords_dance.mid │ │ ├── se_m_tail_whip.mid │ │ ├── se_m_take_down.mid │ │ ├── se_m_vicegrip.mid │ │ ├── se_m_wing_attack.mid │ │ ├── se_mud_ball.mid │ │ ├── se_mugshot.mid │ │ ├── se_n.mid │ │ ├── se_not_effective.mid │ │ ├── se_note_a.mid │ │ ├── se_note_b.mid │ │ ├── se_note_c.mid │ │ ├── se_note_c_high.mid │ │ ├── se_note_d.mid │ │ ├── se_note_e.mid │ │ ├── se_note_f.mid │ │ ├── se_note_g.mid │ │ ├── se_o.mid │ │ ├── se_orb.mid │ │ ├── se_pc_login.mid │ │ ├── se_pc_off.mid │ │ ├── se_pc_on.mid │ │ ├── se_pike_curtain_close.mid │ │ ├── se_pike_curtain_open.mid │ │ ├── se_pin.mid │ │ ├── se_pokenav_call.mid │ │ ├── se_pokenav_hang_up.mid │ │ ├── se_pokenav_off.mid │ │ ├── se_pokenav_on.mid │ │ ├── se_puddle.mid │ │ ├── se_rain.mid │ │ ├── se_rain_stop.mid │ │ ├── se_repel.mid │ │ ├── se_rg_bag_cursor.mid │ │ ├── se_rg_bag_pocket.mid │ │ ├── se_rg_ball_click.mid │ │ ├── se_rg_card_flip.mid │ │ ├── se_rg_card_flipping.mid │ │ ├── se_rg_card_open.mid │ │ ├── se_rg_deoxys_move.mid │ │ ├── se_rg_door.mid │ │ ├── se_rg_help_close.mid │ │ ├── se_rg_help_error.mid │ │ ├── se_rg_help_open.mid │ │ ├── se_rg_poke_jump_failure.mid │ │ ├── se_rg_poke_jump_success.mid │ │ ├── se_rg_shop.mid │ │ ├── se_rg_ss_anne_horn.mid │ │ ├── se_rotating_gate.mid │ │ ├── se_roulette_ball.mid │ │ ├── se_roulette_ball2.mid │ │ ├── se_save.mid │ │ ├── se_select.mid │ │ ├── se_shiny.mid │ │ ├── se_ship.mid │ │ ├── se_shop.mid │ │ ├── se_sliding_door.mid │ │ ├── se_success.mid │ │ ├── se_sudowoodo_shake.mid │ │ ├── se_super_effective.mid │ │ ├── se_switch.mid │ │ ├── se_taillow_wing_flap.mid │ │ ├── se_thunder.mid │ │ ├── se_thunder2.mid │ │ ├── se_thunderstorm.mid │ │ ├── se_thunderstorm_stop.mid │ │ ├── se_truck_door.mid │ │ ├── se_truck_move.mid │ │ ├── se_truck_stop.mid │ │ ├── se_truck_unload.mid │ │ ├── se_u.mid │ │ ├── se_unlock.mid │ │ ├── se_use_item.mid │ │ ├── se_vend.mid │ │ ├── se_warp_in.mid │ │ └── se_warp_out.mid │ ├── se_dex_page.s │ ├── se_dex_scroll.s │ ├── se_m_absorb.s │ ├── se_m_absorb_2.s │ ├── se_m_acid_armor.s │ ├── se_m_attract.s │ ├── se_m_attract2.s │ ├── se_m_barrier.s │ ├── se_m_baton_pass.s │ ├── se_m_belly_drum.s │ ├── se_m_bite.s │ ├── se_m_blizzard.s │ ├── se_m_blizzard2.s │ ├── se_m_bonemerang.s │ ├── se_m_brick_break.s │ ├── se_m_bubble.s │ ├── se_m_bubble2.s │ ├── se_m_bubble3.s │ ├── se_m_bubble_beam.s │ ├── se_m_bubble_beam2.s │ ├── se_m_charge.s │ ├── se_m_charm.s │ ├── se_m_confuse_ray.s │ ├── se_m_cosmic_power.s │ ├── se_m_crabhammer.s │ ├── se_m_detect.s │ ├── se_m_dig.s │ ├── se_m_dive.s │ ├── se_m_dizzy_punch.s │ ├── se_m_double_team.s │ ├── se_m_dragon_rage.s │ ├── se_m_earthquake.s │ ├── se_m_ember.s │ ├── se_m_encore.s │ ├── se_m_encore2.s │ ├── se_m_explosion.s │ ├── se_m_faint_attack.s │ ├── se_m_flame_wheel.s │ ├── se_m_flame_wheel2.s │ ├── se_m_flamethrower.s │ ├── se_m_flatter.s │ ├── se_m_giga_drain.s │ ├── se_m_grasswhistle.s │ ├── se_m_hail.s │ ├── se_m_harden.s │ ├── se_m_haze.s │ ├── se_m_heal_bell.s │ ├── se_m_heat_wave.s │ ├── se_m_hydro_pump.s │ ├── se_m_hyper_beam.s │ ├── se_m_hyper_beam2.s │ ├── se_m_icy_wind.s │ ├── se_m_lick.s │ ├── se_m_lock_on.s │ ├── se_m_metronome.s │ ├── se_m_milk_drink.s │ ├── se_m_minimize.s │ ├── se_m_mist.s │ ├── se_m_moonlight.s │ ├── se_m_morning_sun.s │ ├── se_m_nightmare.s │ ├── se_m_perish_song.s │ ├── se_m_petal_dance.s │ ├── se_m_poison_powder.s │ ├── se_m_psybeam.s │ ├── se_m_psybeam2.s │ ├── se_m_rain_dance.s │ ├── se_m_reflect.s │ ├── se_m_reversal.s │ ├── se_m_rock_throw.s │ ├── se_m_sacred_fire.s │ ├── se_m_sacred_fire2.s │ ├── se_m_sand_tomb.s │ ├── se_m_sandstorm.s │ ├── se_m_screech.s │ ├── se_m_self_destruct.s │ ├── se_m_sing.s │ ├── se_m_sketch.s │ ├── se_m_sky_uppercut.s │ ├── se_m_snore.s │ ├── se_m_solar_beam.s │ ├── se_m_spit_up.s │ ├── se_m_stat_decrease.s │ ├── se_m_stat_increase.s │ ├── se_m_strength.s │ ├── se_m_string_shot.s │ ├── se_m_string_shot2.s │ ├── se_m_supersonic.s │ ├── se_m_surf.s │ ├── se_m_swagger.s │ ├── se_m_swagger2.s │ ├── se_m_sweet_scent.s │ ├── se_m_swift.s │ ├── se_m_teeter_dance.s │ ├── se_m_teleport.s │ ├── se_m_thunder_wave.s │ ├── se_m_thunderbolt.s │ ├── se_m_thunderbolt2.s │ ├── se_m_toxic.s │ ├── se_m_tri_attack.s │ ├── se_m_tri_attack2.s │ ├── se_m_twister.s │ ├── se_m_uproar.s │ ├── se_m_vital_throw.s │ ├── se_m_vital_throw2.s │ ├── se_m_waterfall.s │ ├── se_m_whirlpool.s │ ├── se_m_yawn.s │ ├── se_wall_hit.s │ └── se_win_open.s ├── voice_groups.inc └── voicegroups │ ├── abandoned_ship.inc │ ├── abnormal_weather.inc │ ├── aqua_magma_hideout.inc │ ├── b_arena.inc │ ├── b_dome.inc │ ├── b_factory.inc │ ├── b_frontier.inc │ ├── b_palace.inc │ ├── b_pike.inc │ ├── b_pyramid.inc │ ├── b_pyramid_top.inc │ ├── b_tower.inc │ ├── b_tower_rs.inc │ ├── bard.inc │ ├── birch_lab.inc │ ├── cable_car.inc │ ├── cave_of_origin.inc │ ├── contest.inc │ ├── contest_lobby.inc │ ├── contest_results.inc │ ├── contest_winner.inc │ ├── credits.inc │ ├── cycling.inc │ ├── dewford.inc │ ├── drumsets │ ├── emerald_1.inc │ ├── emerald_2.inc │ ├── frlg.inc │ ├── frlg_fanfare_1.inc │ ├── frlg_fanfare_2.inc │ ├── petalburg.inc │ ├── rg_credits.inc │ ├── route101.inc │ ├── route110.inc │ └── rs.inc │ ├── dummy.inc │ ├── encounter_aqua.inc │ ├── encounter_brendan.inc │ ├── encounter_champion.inc │ ├── encounter_cool.inc │ ├── encounter_elite_four.inc │ ├── encounter_female.inc │ ├── encounter_girl.inc │ ├── encounter_hiker.inc │ ├── encounter_intense.inc │ ├── encounter_interviewer.inc │ ├── encounter_magma.inc │ ├── encounter_male.inc │ ├── encounter_may.inc │ ├── encounter_rich.inc │ ├── encounter_suspicious.inc │ ├── encounter_swimmer.inc │ ├── encounter_twins.inc │ ├── end.inc │ ├── ever_grande.inc │ ├── evolution.inc │ ├── fallarbor.inc │ ├── fanfare.inc │ ├── follow_me.inc │ ├── fortree.inc │ ├── frlg_sfx.inc │ ├── game_corner.inc │ ├── gym.inc │ ├── hall_of_fame.inc │ ├── hall_of_fame_room.inc │ ├── help.inc │ ├── intro.inc │ ├── intro_battle.inc │ ├── keysplits │ ├── french_horn.inc │ ├── piano.inc │ ├── strings.inc │ ├── trumpet.inc │ └── tuba.inc │ ├── lilycove.inc │ ├── lilycove_museum.inc │ ├── link_contest_p1.inc │ ├── link_contest_p2.inc │ ├── link_contest_p3.inc │ ├── link_contest_p4.inc │ ├── littleroot.inc │ ├── littleroot_test.inc │ ├── mt_chimney.inc │ ├── mt_pyre.inc │ ├── mt_pyre_exterior.inc │ ├── oceanic_museum.inc │ ├── oldale.inc │ ├── petalburg.inc │ ├── petalburg_woods.inc │ ├── poke_center.inc │ ├── poke_mart.inc │ ├── rayquaza_appears.inc │ ├── register_match_call.inc │ ├── rg_caught_intro.inc │ ├── rg_celadon.inc │ ├── rg_cinnabar.inc │ ├── rg_credits.inc │ ├── rg_cycling.inc │ ├── rg_dex_rating.inc │ ├── rg_encounter_boy.inc │ ├── rg_encounter_deoxys.inc │ ├── rg_encounter_girl.inc │ ├── rg_encounter_rival.inc │ ├── rg_encounter_rocket.inc │ ├── rg_follow_me.inc │ ├── rg_fuchsia.inc │ ├── rg_game_corner.inc │ ├── rg_game_freak.inc │ ├── rg_gym.inc │ ├── rg_hall_of_fame.inc │ ├── rg_heal.inc │ ├── rg_intro_fight.inc │ ├── rg_jigglypuff.inc │ ├── rg_lavender.inc │ ├── rg_mt_moon.inc │ ├── rg_mystery_gift.inc │ ├── rg_new_game.inc │ ├── rg_oak.inc │ ├── rg_oak_lab.inc │ ├── rg_obtain_key_item.inc │ ├── rg_pallet.inc │ ├── rg_pewter.inc │ ├── rg_photo.inc │ ├── rg_poke_center.inc │ ├── rg_poke_mansion.inc │ ├── rg_poke_tower.inc │ ├── rg_rocket_hideout.inc │ ├── rg_route1.inc │ ├── rg_route11.inc │ ├── rg_route24.inc │ ├── rg_route3.inc │ ├── rg_sevii_45.inc │ ├── rg_sevii_67.inc │ ├── rg_sevii_route.inc │ ├── rg_silph.inc │ ├── rg_ss_anne.inc │ ├── rg_surf.inc │ ├── rg_teachy_tv_menu.inc │ ├── rg_title.inc │ ├── rg_unused.inc │ ├── rg_unused_2.inc │ ├── rg_vermillion.inc │ ├── rg_victory_gym_leader.inc │ ├── rg_victory_road.inc │ ├── rg_victory_trainer.inc │ ├── rg_victory_wild.inc │ ├── rg_viridian_forest.inc │ ├── rg_vs_champion.inc │ ├── rg_vs_deoxys.inc │ ├── rg_vs_gym_leader.inc │ ├── rg_vs_trainer.inc │ ├── rg_vs_wild.inc │ ├── roulette.inc │ ├── route101.inc │ ├── route104.inc │ ├── route110.inc │ ├── route111.inc │ ├── route113.inc │ ├── route119.inc │ ├── route120.inc │ ├── route122.inc │ ├── rs_sfx_1.inc │ ├── rs_sfx_2.inc │ ├── rustboro.inc │ ├── safari_zone.inc │ ├── sailing.inc │ ├── school.inc │ ├── sealed_chamber.inc │ ├── slateport.inc │ ├── sootopolis.inc │ ├── surf.inc │ ├── title.inc │ ├── trick_house.inc │ ├── underwater.inc │ ├── unused.inc │ ├── unused_2.inc │ ├── verdanturf.inc │ ├── victory_aqua_magma.inc │ ├── victory_gym_leader.inc │ ├── victory_league.inc │ ├── victory_road.inc │ ├── victory_trainer.inc │ ├── victory_wild.inc │ ├── vs_aqua_magma.inc │ ├── vs_aqua_magma_leader.inc │ ├── vs_champion.inc │ ├── vs_elite_four.inc │ ├── vs_frontier_brain.inc │ ├── vs_gym_leader.inc │ ├── vs_kyogre_groudon.inc │ ├── vs_mew.inc │ ├── vs_rayquaza.inc │ ├── vs_regi.inc │ ├── vs_rival.inc │ ├── vs_trainer.inc │ ├── vs_wild.inc │ └── weather_groudon.inc ├── spritesheet_rules.mk ├── src ├── AgbRfu_LinkManager.c ├── agb_flash.c ├── agb_flash_1m.c ├── agb_flash_le.c ├── agb_flash_mx.c ├── anim_mon_front_pics.c ├── apprentice.c ├── bard_music.c ├── battle_ai_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 ├── bg.c ├── bike.c ├── birch_pc.c ├── blit.c ├── braille.c ├── braille_puzzles.c ├── cable_car.c ├── cable_club.c ├── clear_save_data_screen.c ├── clock.c ├── coins.c ├── confetti_util.c ├── contest.c ├── contest_ai.c ├── contest_effect.c ├── contest_link.c ├── contest_link_util.c ├── contest_painting.c ├── contest_util.c ├── coord_event_weather.c ├── credits.c ├── crt0.s ├── data.c ├── data │ ├── .gitignore │ ├── bard_music │ │ ├── actions.h │ │ ├── adjectives.h │ │ ├── battle.h │ │ ├── conditions.h │ │ ├── endings.h │ │ ├── events.h │ │ ├── feelings.h │ │ ├── greetings.h │ │ ├── hobbies.h │ │ ├── lifestyle.h │ │ ├── misc.h │ │ ├── moves.h │ │ ├── people.h │ │ ├── pokemon.h │ │ ├── speech.h │ │ ├── status.h │ │ ├── time.h │ │ ├── trainer.h │ │ ├── trendysaying.h │ │ └── voices.h │ ├── battle_anim.h │ ├── battle_frontier │ │ ├── apprentice.h │ │ ├── battle_frontier_exchange_corner.h │ │ ├── battle_frontier_mons.h │ │ ├── battle_frontier_trainer_mons.h │ │ ├── battle_frontier_trainers.h │ │ ├── battle_pyramid_level_50_wild_mons.h │ │ ├── battle_pyramid_open_level_wild_mons.h │ │ ├── battle_tent.h │ │ └── trainer_hill.h │ ├── battle_moves.h │ ├── contest_moves.h │ ├── contest_opponents.h │ ├── contest_text_tables.h │ ├── credits.h │ ├── decoration │ │ ├── description.h │ │ ├── header.h │ │ ├── icon.h │ │ ├── tilemaps.h │ │ └── tiles.h │ ├── easy_chat │ │ ├── easy_chat_group_actions.h │ │ ├── easy_chat_group_adjectives.h │ │ ├── easy_chat_group_battle.h │ │ ├── easy_chat_group_conditions.h │ │ ├── easy_chat_group_endings.h │ │ ├── easy_chat_group_events.h │ │ ├── easy_chat_group_feelings.h │ │ ├── easy_chat_group_greetings.h │ │ ├── easy_chat_group_hobbies.h │ │ ├── easy_chat_group_lifestyle.h │ │ ├── easy_chat_group_misc.h │ │ ├── easy_chat_group_move_1.h │ │ ├── easy_chat_group_move_2.h │ │ ├── easy_chat_group_people.h │ │ ├── easy_chat_group_pokemon.h │ │ ├── easy_chat_group_pokemon2.h │ │ ├── easy_chat_group_speech.h │ │ ├── easy_chat_group_status.h │ │ ├── easy_chat_group_time.h │ │ ├── easy_chat_group_trainer.h │ │ ├── easy_chat_group_trendy_saying.h │ │ ├── easy_chat_group_voices.h │ │ ├── easy_chat_groups.h │ │ └── easy_chat_words_by_letter.h │ ├── field_effects │ │ ├── field_effect_object_template_pointers.h │ │ └── field_effect_objects.h │ ├── graphics │ │ ├── battle_environment.h │ │ ├── berries.h │ │ ├── berry_fix.h │ │ ├── decorations.h │ │ ├── intro_scene.h │ │ ├── items.h │ │ ├── mail.h │ │ ├── pokeballs.h │ │ ├── pokemon.h │ │ ├── rayquaza_scene.h │ │ ├── slot_machine.h │ │ └── trainers.h │ ├── heal_locations.constants.json.txt │ ├── heal_locations.json │ ├── heal_locations.json.txt │ ├── item_icon_table.h │ ├── items.h │ ├── lilycove_lady.h │ ├── object_events │ │ ├── base_oam.h │ │ ├── berry_tree_graphics_tables.h │ │ ├── movement_action_func_tables.h │ │ ├── movement_type_func_tables.h │ │ ├── object_event_anims.h │ │ ├── object_event_graphics.h │ │ ├── object_event_graphics_info.h │ │ ├── object_event_graphics_info_followers.h │ │ ├── object_event_graphics_info_pointers.h │ │ ├── object_event_pic_tables.h │ │ └── object_event_subsprites.h │ ├── party_menu.h │ ├── pointillism_points.h │ ├── pokedex_area_glow.h │ ├── pokemon │ │ ├── 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 │ │ ├── species_info.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_table.h │ │ └── unused_anims.h │ ├── region_map │ │ ├── city_map_entries.h │ │ ├── city_map_tilemaps.h │ │ ├── region_map_layout.h │ │ ├── region_map_sections.constants.json.txt │ │ ├── region_map_sections.json │ │ └── region_map_sections.json.txt │ ├── script_menu.h │ ├── text │ │ ├── abilities.h │ │ ├── follower_messages.h │ │ ├── gift_ribbon_descriptions.h │ │ ├── item_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 │ ├── tilesets │ │ ├── graphics.h │ │ ├── headers.h │ │ └── metatiles.h │ ├── trade.h │ ├── trainer_graphics │ │ ├── back_pic_anims.h │ │ ├── back_pic_tables.h │ │ ├── front_pic_anims.h │ │ └── front_pic_tables.h │ ├── trainer_parties.h │ ├── trainers.h │ ├── union_room.h │ ├── wallpapers.h │ ├── wild_encounters.json │ └── wild_encounters.json.txt ├── daycare.c ├── decompress.c ├── decoration.c ├── decoration_inventory.c ├── dewford_trend.c ├── digit_obj_util.c ├── diploma.c ├── dma3_manager.c ├── dodrio_berry_picking.c ├── dynamic_placeholder_text_util.c ├── easy_chat.c ├── egg_hatch.c ├── ereader_helpers.c ├── ereader_screen.c ├── event_data.c ├── event_object_lock.c ├── event_object_movement.c ├── evolution_graphics.c ├── evolution_scene.c ├── faraway_island.c ├── field_camera.c ├── field_control_avatar.c ├── field_door.c ├── field_effect.c ├── field_effect_helpers.c ├── field_message_box.c ├── field_player_avatar.c ├── field_poison.c ├── field_region_map.c ├── field_screen_effect.c ├── field_special_scene.c ├── field_specials.c ├── field_tasks.c ├── field_weather.c ├── field_weather_effect.c ├── fieldmap.c ├── fldeff_cut.c ├── fldeff_dig.c ├── fldeff_escalator.c ├── fldeff_flash.c ├── fldeff_misc.c ├── fldeff_rocksmash.c ├── fldeff_softboiled.c ├── fldeff_strength.c ├── fldeff_sweetscent.c ├── fldeff_teleport.c ├── follower_helper.c ├── fonts.c ├── frontier_pass.c ├── frontier_util.c ├── gpu_regs.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 ├── io_reg.c ├── item.c ├── item_icon.c ├── item_menu.c ├── item_menu_icons.c ├── item_use.c ├── landmark.c ├── libgcnmultiboot.s ├── libisagbprn.c ├── librfu_intr.c ├── librfu_rfu.c ├── librfu_sio32id.c ├── librfu_stwi.c ├── lilycove_lady.c ├── link.c ├── link_rfu_2.c ├── link_rfu_3.c ├── list_menu.c ├── load_save.c ├── lottery_corner.c ├── m4a.c ├── m4a_1.s ├── m4a_tables.c ├── mail.c ├── mail_data.c ├── main.c ├── main_menu.c ├── malloc.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 ├── mini_printf.c ├── minigame_countdown.c ├── mirage_tower.c ├── mon_markings.c ├── money.c ├── move_relearner.c ├── multiboot.c ├── mystery_event_menu.c ├── mystery_event_msg.c ├── mystery_event_script.c ├── mystery_gift.c ├── mystery_gift_client.c ├── mystery_gift_link.c ├── mystery_gift_menu.c ├── mystery_gift_scripts.c ├── mystery_gift_server.c ├── mystery_gift_view.c ├── naming_screen.c ├── new_game.c ├── option_menu.c ├── overworld.c ├── palette.c ├── palette_util.c ├── party_menu.c ├── play_time.c ├── player_pc.c ├── pokeball.c ├── pokeblock.c ├── pokeblock_feed.c ├── pokedex.c ├── pokedex_area_region_map.c ├── pokedex_area_screen.c ├── pokedex_cry_screen.c ├── pokemon.c ├── pokemon_animation.c ├── pokemon_icon.c ├── pokemon_jump.c ├── pokemon_size_record.c ├── pokemon_storage_system.c ├── pokemon_summary_screen.c ├── pokenav.c ├── pokenav_conditions.c ├── pokenav_conditions_gfx.c ├── pokenav_conditions_search_results.c ├── pokenav_list.c ├── pokenav_main_menu.c ├── pokenav_match_call_data.c ├── pokenav_match_call_gfx.c ├── pokenav_match_call_list.c ├── pokenav_menu_handler.c ├── pokenav_menu_handler_gfx.c ├── pokenav_region_map.c ├── pokenav_ribbons_list.c ├── pokenav_ribbons_summary.c ├── post_battle_event_funcs.c ├── random.c ├── rayquaza_scene.c ├── record_mixing.c ├── recorded_battle.c ├── region_map.c ├── reload_save.c ├── reset_rtc_screen.c ├── reshow_battle_screen.c ├── roamer.c ├── rom_header.s ├── rom_header_gf.c ├── rotating_gate.c ├── rotating_tile_puzzle.c ├── roulette.c ├── rtc.c ├── safari_zone.c ├── save.c ├── save_failed_screen.c ├── save_location.c ├── scanline_effect.c ├── scrcmd.c ├── script.c ├── script_menu.c ├── script_movement.c ├── script_pokemon_util.c ├── secret_base.c ├── shop.c ├── siirtc.c ├── slot_machine.c ├── sound.c ├── sprite.c ├── start_menu.c ├── starter_choose.c ├── string_util.c ├── strings.c ├── task.c ├── text.c ├── text_input_strings.c ├── text_window.c ├── tileset_anims.c ├── tilesets.c ├── time_events.c ├── title_screen.c ├── trade.c ├── trader.c ├── trainer_card.c ├── trainer_hill.c ├── trainer_pokemon_sprites.c ├── trainer_see.c ├── trig.c ├── tv.c ├── union_room.c ├── union_room_battle.c ├── union_room_chat.c ├── union_room_player_avatar.c ├── use_pokeblock.c ├── util.c ├── walda_phrase.c ├── wallclock.c ├── wild_encounter.c ├── window.c ├── wireless_communication_status_screen.c └── wonder_news.c ├── sym_bss.txt ├── sym_common.txt ├── sym_ewram.txt └── tools ├── aif2pcm ├── .gitignore ├── LICENSE ├── Makefile ├── extended.c └── main.c ├── bin2c ├── .gitignore ├── LICENSE ├── Makefile └── bin2c.c ├── gbafix ├── .gitignore ├── COPYING ├── Makefile ├── elf.h └── gbafix.c ├── gbagfx ├── .gitignore ├── LICENSE ├── Makefile ├── convert_png.c ├── convert_png.h ├── font.c ├── font.h ├── gfx.c ├── gfx.h ├── global.h ├── huff.c ├── huff.h ├── jasc_pal.c ├── jasc_pal.h ├── lz.c ├── lz.h ├── main.c ├── options.h ├── rl.c ├── rl.h ├── util.c └── util.h ├── jsonproc ├── .gitignore ├── Makefile ├── inja.hpp ├── jsonproc.cpp ├── jsonproc.h └── nlohmann │ └── json.hpp ├── mapjson ├── .gitignore ├── Makefile ├── json11.cpp ├── json11.h ├── mapjson.cpp └── mapjson.h ├── mid2agb ├── .gitignore ├── LICENSE ├── Makefile ├── agb.cpp ├── agb.h ├── error.cpp ├── error.h ├── main.cpp ├── main.h ├── midi.cpp ├── midi.h ├── tables.cpp └── tables.h ├── preproc ├── .gitignore ├── LICENSE ├── Makefile ├── asm_file.cpp ├── asm_file.h ├── c_file.cpp ├── c_file.h ├── char_util.h ├── charmap.cpp ├── charmap.h ├── io.cpp ├── io.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 /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/README.md -------------------------------------------------------------------------------- /asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/asm/macros.inc -------------------------------------------------------------------------------- /asm/macros/asm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/asm/macros/asm.inc -------------------------------------------------------------------------------- /asm/macros/event.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/asm/macros/event.inc -------------------------------------------------------------------------------- /asm/macros/function.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/asm/macros/function.inc -------------------------------------------------------------------------------- /asm/macros/m4a.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/asm/macros/m4a.inc -------------------------------------------------------------------------------- /asm/macros/map.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/asm/macros/map.inc -------------------------------------------------------------------------------- /asm/macros/movement.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/asm/macros/movement.inc -------------------------------------------------------------------------------- /asmdiff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/asmdiff.ps1 -------------------------------------------------------------------------------- /asmdiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/asmdiff.sh -------------------------------------------------------------------------------- /audio_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/audio_rules.mk -------------------------------------------------------------------------------- /charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/charmap.txt -------------------------------------------------------------------------------- /compile_flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/compile_flags.txt -------------------------------------------------------------------------------- /constants/constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/constants/constants.inc -------------------------------------------------------------------------------- /constants/global.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/constants/global.inc -------------------------------------------------------------------------------- /constants/tms_hms.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/constants/tms_hms.inc -------------------------------------------------------------------------------- /data/battle_ai_scripts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/battle_ai_scripts.s -------------------------------------------------------------------------------- /data/battle_scripts_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/battle_scripts_1.s -------------------------------------------------------------------------------- /data/battle_scripts_2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/battle_scripts_2.s -------------------------------------------------------------------------------- /data/event_scripts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/event_scripts.s -------------------------------------------------------------------------------- /data/layouts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/layouts/.gitignore -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_CaptainsOffice/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Corridors_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Corridors_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Deck/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_HiddenFloorCorridors/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_HiddenFloorRooms/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Room_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Rooms2_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Rooms2_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Rooms_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Rooms_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Underwater1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AbandonedShip_Underwater2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AlteringCave/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_B2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_UnusedRubyMap1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_UnusedRubyMap2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/AquaHideout_UnusedRubyMap3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ArtisanCave_1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ArtisanCave_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/BattleColosseum_2P/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/BattleColosseum_4P/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/BattleElevator/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleArenaBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleArenaCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleArenaLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleDomeBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleDomeCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleDomeLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleDomePreBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleFactoryBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleFactoryLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleFactoryPreBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePalaceBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePalaceCorridor/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePalaceLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeRoomFinal/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeRoomNormal/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeRoomUnused/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeRoomWildMons/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePikeThreePathRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePyramidFloor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePyramidLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattlePyramidTop/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleTowerBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleTowerCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleTowerLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleTowerMultiCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_BattleTowerMultiPartnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_ExchangeServiceCorner/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_Lounge1/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_Lounge2/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_OutsideEast/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_OutsideWest/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_RankingHall/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_ReceptionGate/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/BattleFrontier_ScottsHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare01/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare02/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare03/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare04/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare05/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare06/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare07/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare08/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare09/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare10/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare11/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare12/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare13/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare14/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare15/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattlePyramidSquare16/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleTentBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleTentCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BattleTentLobby/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/BirthIsland_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/CableCarStation/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_1F/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_B1F/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_UnusedRubySapphireMap1/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_UnusedRubySapphireMap2/border.bin: -------------------------------------------------------------------------------- 1 | SfVC -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_UnusedRubySapphireMap3/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/CaveOfOrigin_Unused_B4F_Lava/border.bin: -------------------------------------------------------------------------------- 1 | 3f6C -------------------------------------------------------------------------------- /data/layouts/ContestHall/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ContestHallBeauty/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ContestHallCool/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ContestHallCute/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ContestHallSmart/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/ContestHallTough/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/DesertUnderpass/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/DewfordTown/border.bin: -------------------------------------------------------------------------------- 1 | sfrC -------------------------------------------------------------------------------- /data/layouts/DewfordTown_Gym/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/DewfordTown_Hall/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_ChampionsRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_DrakesRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_GlaciasRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_Hall4/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_HallOfFame/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_PhoebesRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_PokemonLeague_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_ShortHall/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_SidneysRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/FallarborTown/border.bin: -------------------------------------------------------------------------------- 1 | klst -------------------------------------------------------------------------------- /data/layouts/FallarborTown_LeftoverRSContestHall/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FallarborTown_LeftoverRSContestLobby/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FarawayIsland_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/FieryPath/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/FortreeCity_DecorationShop/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FortreeCity_Gym/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/FortreeCity_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FortreeCity_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/GraniteCave_1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/GraniteCave_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/GraniteCave_B2F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/GraniteCave_StevensRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/Harbor/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/House1/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/House2/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/House3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/House4/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/HouseWithBed/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/InsideOfTruck/border.bin: -------------------------------------------------------------------------------- 1 | ccbC -------------------------------------------------------------------------------- /data/layouts/InsideOfTruck/map.bin: -------------------------------------------------------------------------------- 1 |   2 | 2 2 22222!"#$  -------------------------------------------------------------------------------- /data/layouts/IslandHarbor/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/JaggedPass/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown_Gym_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown_Gym_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown_HerbShop/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown_PokemonCenter_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_ContestHall/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_ContestLobby/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_CoveLilyMotel_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_CoveLilyMotel_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStoreElevator/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStore_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStore_2F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStore_3F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStore_4F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_DepartmentStore_5F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_LilycoveMuseum_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_LilycoveMuseum_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LilycoveCity_PokemonTrainerFanClub/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LittlerootTown_BrendansHouse_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LittlerootTown_ProfessorBirchsLab/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/LittlerootTown_ProfessorBirchsLabWithTable/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_1F/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_2F_1R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_2F_2R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_2F_3R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_3F_1R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_3F_2R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_3F_3R/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MagmaHideout_4F/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/Mart/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MauvilleCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/MauvilleCity_GameCorner/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MauvilleCity_Gym/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_1F_1R/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_1F_2R/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_B1F_1R/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_B1F_2R/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MeteorFalls_StevensCave/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MirageTower_1F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MirageTower_2F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MirageTower_3F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MirageTower_4F/border.bin: -------------------------------------------------------------------------------- 1 | serC -------------------------------------------------------------------------------- /data/layouts/MossdeepCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_GameCorner_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_GameCorner_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_SpaceCenter_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_SpaceCenter_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_StevensHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MtChimney/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/MtPyre_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_3F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_4F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_5F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_6F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/MtPyre_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | [Ȱ  -------------------------------------------------------------------------------- /data/layouts/MtPyre_Summit/border.bin: -------------------------------------------------------------------------------- 1 | [Ȱ  -------------------------------------------------------------------------------- /data/layouts/NavelRock_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NavelRock_Bottom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NavelRock_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NavelRock_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/NavelRock_Fork/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NavelRock_LadderRoom1/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NavelRock_LadderRoom2/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/NewMauville_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/PacifidlogTown/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/PacifidlogTown_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/PacifidlogTown_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/PokemonCenter_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/PokemonCenter_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RecordCorner/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route104_MrBrineysHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route104_PrettyPetalFlowerShop/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route104_Prototype/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route105/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route106/border.bin: -------------------------------------------------------------------------------- 1 | sfrC -------------------------------------------------------------------------------- /data/layouts/Route107/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route108/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route109/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route109_SeashoreHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route110_SeasideCyclingRoadEntrance/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHouseCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHouseEnd/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHouseEntrance/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle1/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle2/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle3/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle4/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle5/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle6/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle7/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route110_TrickHousePuzzle8/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route111/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route111_NoMirageTower/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route112/border.bin: -------------------------------------------------------------------------------- 1 | +d*C -------------------------------------------------------------------------------- /data/layouts/Route113/border.bin: -------------------------------------------------------------------------------- 1 | mnuv -------------------------------------------------------------------------------- /data/layouts/Route114/border.bin: -------------------------------------------------------------------------------- 1 | klst -------------------------------------------------------------------------------- /data/layouts/Route114_FossilManiacsHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route114_FossilManiacsTunnel/border.bin: -------------------------------------------------------------------------------- 1 | +g*C -------------------------------------------------------------------------------- /data/layouts/Route114_LanettesHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route115/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route116_TunnelersRestHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route117_PokemonDayCare/border.bin: -------------------------------------------------------------------------------- 1 | cfbC -------------------------------------------------------------------------------- /data/layouts/Route118/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route119_WeatherInstitute_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route119_WeatherInstitute_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Route121_SafariZoneEntrance/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route122/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route124/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route124_DivingTreasureHuntersHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/Route125/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route126/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route127/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route128/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route129/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route130/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route130_MirageIsland/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route131/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route131_SkyPillar/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route132/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route133/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/Route134/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/RustboroCity_CuttersHouse/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_DevonCorp_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_DevonCorp_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_DevonCorp_3F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Flat1_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Flat1_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Flat2_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Flat2_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Flat2_3F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_Gym/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/RustboroCity_House/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/RustboroCity_PokemonSchool/border.bin: -------------------------------------------------------------------------------- 1 | cgbC -------------------------------------------------------------------------------- /data/layouts/RusturfTunnel/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SSTidalCorridor/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SSTidalLowerDeck/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SSTidalRooms/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SafariZone_RestHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/ScorchedSlab/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SealedChamber_InnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/SealedChamber_OuterRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BlueCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_BrownCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_RedCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave1/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave2/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave3/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/SecretBase_YellowCave4/border.bin: -------------------------------------------------------------------------------- 1 | `C -------------------------------------------------------------------------------- /data/layouts/ShoalCave_HighTideEntranceRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_HighTideInnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideEntranceRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideIceRoom/border.bin: -------------------------------------------------------------------------------- 1 | kdnC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideInnerRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideLowerRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/ShoalCave_LowTideStairsRoom/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_1F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_2F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_3F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_3F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_4F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_4F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_5F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_5F_Clean/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/SkyPillar_Outside/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/SlateportCity/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_OceanicMuseum_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_OceanicMuseum_2F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_PokemonFanClub/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SlateportCity_SternsShipyard_1F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SlateportCity_SternsShipyard_2F/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_Gym_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_Gym_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_House3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_LotadAndSeedotHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_MysteryEventsHouse_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_MysteryEventsHouse_1F_StairsUnblocked/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SootopolisCity_MysteryEventsHouse_B1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/SouthernIsland_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +`,C -------------------------------------------------------------------------------- /data/layouts/TradeCenter/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/Underwater_MarineCave/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route105/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route124/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route125/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route126/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route127/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route128/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route129/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_Route134/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_SeafloorCavern/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_SealedChamber/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/Underwater_SootopolisCity/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnionRoom/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/UnusedCave1/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave1/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave10/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave10/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave11/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave11/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave12/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave12/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave13/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave13/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave14/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave14/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave2/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave2/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave3/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave3/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave4/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave4/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave5/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave5/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave6/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave6/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave7/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave7/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave8/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave8/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedCave9/border.bin: -------------------------------------------------------------------------------- 1 | fC -------------------------------------------------------------------------------- /data/layouts/UnusedCave9/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall1/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall2/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall3/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall4/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall4/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall5/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall5/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall6/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestHall6/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom1/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom2/map.bin: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom3/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/UnusedContestRoom3/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/UnusedOutdoorArea/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/VerdanturfTown_BattleTentBattleRoom/border.bin: -------------------------------------------------------------------------------- 1 | SfPC -------------------------------------------------------------------------------- /data/layouts/VerdanturfTown_WandasHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/VictoryRoad_1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/VictoryRoad_B1F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/VictoryRoad_B2F/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/map_events.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/map_events.s -------------------------------------------------------------------------------- /data/maps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/maps.s -------------------------------------------------------------------------------- /data/maps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/maps/.gitignore -------------------------------------------------------------------------------- /data/maps/AbandonedShip_Room_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | AbandonedShip_Room_B1F_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/ArtisanCave_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | ArtisanCave_1F_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/BattleColosseum_2P/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleColosseum_2P_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/BattleColosseum_4P/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleColosseum_4P_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge9/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge9_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/BattlePyramidSquare01/scripts.inc: -------------------------------------------------------------------------------- 1 | BattlePyramidSquare01_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/GraniteCave_B2F/scripts.inc: -------------------------------------------------------------------------------- 1 | GraniteCave_B2F_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_2F_3R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_2F_3R_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/MagmaHideout_3F_3R/scripts.inc: -------------------------------------------------------------------------------- 1 | MagmaHideout_3F_3R_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/MeteorFalls_B1F_1R/scripts.inc: -------------------------------------------------------------------------------- 1 | MeteorFalls_B1F_1R_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/MeteorFalls_B1F_2R/scripts.inc: -------------------------------------------------------------------------------- 1 | MeteorFalls_B1F_2R_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_B1F_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down01/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down01_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down02/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down02_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down03/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down03_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down04/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down04_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down05/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down05_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down06/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down06_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down07/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down07_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down08/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down08_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down09/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down09_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down10/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down10_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Down11/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Down11_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Entrance/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Entrance_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Fork/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Fork_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up1/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up1_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up2/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up2_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up3/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up3_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Up4/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Up4_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/RecordCorner/scripts.inc: -------------------------------------------------------------------------------- 1 | RecordCorner_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Route104_Prototype/scripts.inc: -------------------------------------------------------------------------------- 1 | Route104_Prototype_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Route122/scripts.inc: -------------------------------------------------------------------------------- 1 | Route122_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room2/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room2_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room5/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room5_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room6/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room6_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room7/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room7_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/SeafloorCavern_Room8/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafloorCavern_Room8_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/TradeCenter/scripts.inc: -------------------------------------------------------------------------------- 1 | TradeCenter_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route124/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route124_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route126/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route126_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/maps/Underwater_Route128/scripts.inc: -------------------------------------------------------------------------------- 1 | Underwater_Route128_MapScripts:: 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /data/mb_berry_fix.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/mb_berry_fix.gba -------------------------------------------------------------------------------- /data/mb_colosseum.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/mb_colosseum.gba -------------------------------------------------------------------------------- /data/mb_ereader.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/mb_ereader.gba -------------------------------------------------------------------------------- /data/multiboot_ereader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/multiboot_ereader.s -------------------------------------------------------------------------------- /data/mystery_gift.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/mystery_gift.s -------------------------------------------------------------------------------- /data/scripts/flash.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/scripts/flash.inc -------------------------------------------------------------------------------- /data/scripts/kecleon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/scripts/kecleon.inc -------------------------------------------------------------------------------- /data/scripts/pc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/scripts/pc.inc -------------------------------------------------------------------------------- /data/scripts/repel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/scripts/repel.inc -------------------------------------------------------------------------------- /data/scripts/surf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/scripts/surf.inc -------------------------------------------------------------------------------- /data/scripts/tv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/scripts/tv.inc -------------------------------------------------------------------------------- /data/sound_data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/sound_data.s -------------------------------------------------------------------------------- /data/specials.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/specials.inc -------------------------------------------------------------------------------- /data/text/apprentice.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/apprentice.inc -------------------------------------------------------------------------------- /data/text/berries.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/berries.inc -------------------------------------------------------------------------------- /data/text/braille.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/braille.inc -------------------------------------------------------------------------------- /data/text/cable_club.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/cable_club.inc -------------------------------------------------------------------------------- /data/text/mart_clerk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/mart_clerk.inc -------------------------------------------------------------------------------- /data/text/match_call.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/match_call.inc -------------------------------------------------------------------------------- /data/text/pc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/pc.inc -------------------------------------------------------------------------------- /data/text/record_mix.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/record_mix.inc -------------------------------------------------------------------------------- /data/text/save.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/save.inc -------------------------------------------------------------------------------- /data/text/shoal_cave.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/shoal_cave.inc -------------------------------------------------------------------------------- /data/text/surf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/surf.inc -------------------------------------------------------------------------------- /data/text/trainers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/trainers.inc -------------------------------------------------------------------------------- /data/text/tv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/data/text/tv.inc -------------------------------------------------------------------------------- /data/tilesets/primary/secret_base/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tilesets/secondary/unused_1/metatile_attributes.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extract_sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/extract_sprites.py -------------------------------------------------------------------------------- /follower_emotions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/follower_emotions.py -------------------------------------------------------------------------------- /front_palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/front_palette.py -------------------------------------------------------------------------------- /graphics/bag/bag.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/bag/bag.pal -------------------------------------------------------------------------------- /graphics/bag/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/bag/hm.png -------------------------------------------------------------------------------- /graphics/bag/menu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/bag/menu.bin -------------------------------------------------------------------------------- /graphics/bag/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/bag/menu.png -------------------------------------------------------------------------------- /graphics/balls/dive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/balls/dive.png -------------------------------------------------------------------------------- /graphics/balls/great.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/balls/great.png -------------------------------------------------------------------------------- /graphics/balls/nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/balls/nest.png -------------------------------------------------------------------------------- /graphics/balls/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/balls/net.png -------------------------------------------------------------------------------- /graphics/balls/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/balls/open.png -------------------------------------------------------------------------------- /graphics/balls/poke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/balls/poke.png -------------------------------------------------------------------------------- /graphics/balls/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/balls/timer.png -------------------------------------------------------------------------------- /graphics/balls/ultra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/balls/ultra.png -------------------------------------------------------------------------------- /graphics/berries/lum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/berries/lum.png -------------------------------------------------------------------------------- /graphics/cable_car/pylon_top.bin: -------------------------------------------------------------------------------- 1 | 000000000 0 -------------------------------------------------------------------------------- /graphics/contest/results_screen/title_link.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /graphics/misc/emotes.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/misc/emotes.pal -------------------------------------------------------------------------------- /graphics/misc/emotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/misc/emotes.png -------------------------------------------------------------------------------- /graphics/shop/menu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/shop/menu.bin -------------------------------------------------------------------------------- /graphics/shop/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/shop/menu.png -------------------------------------------------------------------------------- /graphics/shop/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/shop/money.png -------------------------------------------------------------------------------- /graphics/trade/gba.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/trade/gba.pal -------------------------------------------------------------------------------- /graphics/trade/gba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/trade/gba.png -------------------------------------------------------------------------------- /graphics/trade/menu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/trade/menu.bin -------------------------------------------------------------------------------- /graphics/trade/menu.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/trade/menu.pal -------------------------------------------------------------------------------- /graphics/trade/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/trade/menu.png -------------------------------------------------------------------------------- /graphics/trade/text.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/trade/text.pal -------------------------------------------------------------------------------- /graphics/types/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/types/bug.png -------------------------------------------------------------------------------- /graphics/types/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/types/dark.png -------------------------------------------------------------------------------- /graphics/types/fight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/types/fight.png -------------------------------------------------------------------------------- /graphics/types/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/types/fire.png -------------------------------------------------------------------------------- /graphics/types/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/types/ghost.png -------------------------------------------------------------------------------- /graphics/types/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/types/grass.png -------------------------------------------------------------------------------- /graphics/types/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/types/ice.png -------------------------------------------------------------------------------- /graphics/types/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/types/rock.png -------------------------------------------------------------------------------- /graphics/types/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/types/steel.png -------------------------------------------------------------------------------- /graphics/types/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/types/water.png -------------------------------------------------------------------------------- /graphics/unused/.gitignore: -------------------------------------------------------------------------------- 1 | redyellowgreen_frame.bin -------------------------------------------------------------------------------- /graphics/weather/ash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/weather/ash.png -------------------------------------------------------------------------------- /graphics/weather/fog.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics/weather/fog.pal -------------------------------------------------------------------------------- /graphics_file_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/graphics_file_rules.mk -------------------------------------------------------------------------------- /include/agb_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/agb_flash.h -------------------------------------------------------------------------------- /include/apprentice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/apprentice.h -------------------------------------------------------------------------------- /include/bard_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/bard_music.h -------------------------------------------------------------------------------- /include/battle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle.h -------------------------------------------------------------------------------- /include/battle_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_anim.h -------------------------------------------------------------------------------- /include/battle_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_arena.h -------------------------------------------------------------------------------- /include/battle_bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_bg.h -------------------------------------------------------------------------------- /include/battle_dome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_dome.h -------------------------------------------------------------------------------- /include/battle_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_factory.h -------------------------------------------------------------------------------- /include/battle_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_main.h -------------------------------------------------------------------------------- /include/battle_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_message.h -------------------------------------------------------------------------------- /include/battle_pike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_pike.h -------------------------------------------------------------------------------- /include/battle_pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_pyramid.h -------------------------------------------------------------------------------- /include/battle_records.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_records.h -------------------------------------------------------------------------------- /include/battle_scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_scripts.h -------------------------------------------------------------------------------- /include/battle_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_setup.h -------------------------------------------------------------------------------- /include/battle_tent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_tent.h -------------------------------------------------------------------------------- /include/battle_tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_tower.h -------------------------------------------------------------------------------- /include/battle_tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_tv.h -------------------------------------------------------------------------------- /include/battle_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_util.h -------------------------------------------------------------------------------- /include/battle_util2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/battle_util2.h -------------------------------------------------------------------------------- /include/berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/berry.h -------------------------------------------------------------------------------- /include/berry_blender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/berry_blender.h -------------------------------------------------------------------------------- /include/berry_crush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/berry_crush.h -------------------------------------------------------------------------------- /include/berry_powder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/berry_powder.h -------------------------------------------------------------------------------- /include/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/bg.h -------------------------------------------------------------------------------- /include/bike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/bike.h -------------------------------------------------------------------------------- /include/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/blit.h -------------------------------------------------------------------------------- /include/cable_club.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/cable_club.h -------------------------------------------------------------------------------- /include/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/clock.h -------------------------------------------------------------------------------- /include/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/coins.h -------------------------------------------------------------------------------- /include/confetti_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/confetti_util.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/config.h -------------------------------------------------------------------------------- /include/constants/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/constants/item.h -------------------------------------------------------------------------------- /include/constants/maps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/constants/maps.h -------------------------------------------------------------------------------- /include/constants/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/constants/rgb.h -------------------------------------------------------------------------------- /include/constants/tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/constants/tv.h -------------------------------------------------------------------------------- /include/constants/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/constants/vars.h -------------------------------------------------------------------------------- /include/contest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/contest.h -------------------------------------------------------------------------------- /include/contest_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/contest_ai.h -------------------------------------------------------------------------------- /include/contest_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/contest_effect.h -------------------------------------------------------------------------------- /include/contest_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/contest_link.h -------------------------------------------------------------------------------- /include/contest_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/contest_util.h -------------------------------------------------------------------------------- /include/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/credits.h -------------------------------------------------------------------------------- /include/crt0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/crt0.h -------------------------------------------------------------------------------- /include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/data.h -------------------------------------------------------------------------------- /include/daycare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/daycare.h -------------------------------------------------------------------------------- /include/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/decompress.h -------------------------------------------------------------------------------- /include/decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/decoration.h -------------------------------------------------------------------------------- /include/dewford_trend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/dewford_trend.h -------------------------------------------------------------------------------- /include/digit_obj_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/digit_obj_util.h -------------------------------------------------------------------------------- /include/diploma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/diploma.h -------------------------------------------------------------------------------- /include/dma3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/dma3.h -------------------------------------------------------------------------------- /include/easy_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/easy_chat.h -------------------------------------------------------------------------------- /include/egg_hatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/egg_hatch.h -------------------------------------------------------------------------------- /include/ereader_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/ereader_screen.h -------------------------------------------------------------------------------- /include/event_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/event_data.h -------------------------------------------------------------------------------- /include/event_scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/event_scripts.h -------------------------------------------------------------------------------- /include/faraway_island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/faraway_island.h -------------------------------------------------------------------------------- /include/field_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/field_camera.h -------------------------------------------------------------------------------- /include/field_door.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/field_door.h -------------------------------------------------------------------------------- /include/field_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/field_effect.h -------------------------------------------------------------------------------- /include/field_poison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/field_poison.h -------------------------------------------------------------------------------- /include/field_specials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/field_specials.h -------------------------------------------------------------------------------- /include/field_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/field_tasks.h -------------------------------------------------------------------------------- /include/fieldmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/fieldmap.h -------------------------------------------------------------------------------- /include/fldeff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/fldeff.h -------------------------------------------------------------------------------- /include/fldeff_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/fldeff_misc.h -------------------------------------------------------------------------------- /include/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/fonts.h -------------------------------------------------------------------------------- /include/gametypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/gametypes.h -------------------------------------------------------------------------------- /include/gba/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/gba/defines.h -------------------------------------------------------------------------------- /include/gba/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/gba/gba.h -------------------------------------------------------------------------------- /include/gba/io_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/gba/io_reg.h -------------------------------------------------------------------------------- /include/gba/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/gba/macro.h -------------------------------------------------------------------------------- /include/gba/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/gba/syscall.h -------------------------------------------------------------------------------- /include/gba/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/gba/types.h -------------------------------------------------------------------------------- /include/global.berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/global.berry.h -------------------------------------------------------------------------------- /include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/global.h -------------------------------------------------------------------------------- /include/global.tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/global.tv.h -------------------------------------------------------------------------------- /include/gpu_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/gpu_regs.h -------------------------------------------------------------------------------- /include/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/graphics.h -------------------------------------------------------------------------------- /include/hall_of_fame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/hall_of_fame.h -------------------------------------------------------------------------------- /include/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/intro.h -------------------------------------------------------------------------------- /include/io_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/io_reg.h -------------------------------------------------------------------------------- /include/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/item.h -------------------------------------------------------------------------------- /include/item_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/item_icon.h -------------------------------------------------------------------------------- /include/item_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/item_menu.h -------------------------------------------------------------------------------- /include/item_use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/item_use.h -------------------------------------------------------------------------------- /include/landmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/landmark.h -------------------------------------------------------------------------------- /include/librfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/librfu.h -------------------------------------------------------------------------------- /include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/link.h -------------------------------------------------------------------------------- /include/link_rfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/link_rfu.h -------------------------------------------------------------------------------- /include/list_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/list_menu.h -------------------------------------------------------------------------------- /include/load_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/load_save.h -------------------------------------------------------------------------------- /include/m4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/m4a.h -------------------------------------------------------------------------------- /include/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/mail.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/main.h -------------------------------------------------------------------------------- /include/main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/main_menu.h -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/match_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/match_call.h -------------------------------------------------------------------------------- /include/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/math_util.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/menu_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/menu_helpers.h -------------------------------------------------------------------------------- /include/mini_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/mini_printf.h -------------------------------------------------------------------------------- /include/mirage_tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/mirage_tower.h -------------------------------------------------------------------------------- /include/mon_markings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/mon_markings.h -------------------------------------------------------------------------------- /include/money.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/money.h -------------------------------------------------------------------------------- /include/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/multiboot.h -------------------------------------------------------------------------------- /include/mystery_gift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/mystery_gift.h -------------------------------------------------------------------------------- /include/new_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/new_game.h -------------------------------------------------------------------------------- /include/option_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/option_menu.h -------------------------------------------------------------------------------- /include/overworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/overworld.h -------------------------------------------------------------------------------- /include/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/palette.h -------------------------------------------------------------------------------- /include/palette_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/palette_util.h -------------------------------------------------------------------------------- /include/party_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/party_menu.h -------------------------------------------------------------------------------- /include/play_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/play_time.h -------------------------------------------------------------------------------- /include/player_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/player_pc.h -------------------------------------------------------------------------------- /include/pokeball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/pokeball.h -------------------------------------------------------------------------------- /include/pokeblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/pokeblock.h -------------------------------------------------------------------------------- /include/pokedex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/pokedex.h -------------------------------------------------------------------------------- /include/pokemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/pokemon.h -------------------------------------------------------------------------------- /include/pokemon_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/pokemon_icon.h -------------------------------------------------------------------------------- /include/pokemon_jump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/pokemon_jump.h -------------------------------------------------------------------------------- /include/pokenav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/pokenav.h -------------------------------------------------------------------------------- /include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/random.h -------------------------------------------------------------------------------- /include/region_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/region_map.h -------------------------------------------------------------------------------- /include/reload_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/reload_save.h -------------------------------------------------------------------------------- /include/roamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/roamer.h -------------------------------------------------------------------------------- /include/roulette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/roulette.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/safari_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/safari_zone.h -------------------------------------------------------------------------------- /include/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/save.h -------------------------------------------------------------------------------- /include/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/script.h -------------------------------------------------------------------------------- /include/script_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/script_menu.h -------------------------------------------------------------------------------- /include/secret_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/secret_base.h -------------------------------------------------------------------------------- /include/shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/shop.h -------------------------------------------------------------------------------- /include/siirtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/siirtc.h -------------------------------------------------------------------------------- /include/slot_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/slot_machine.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/sprite.h -------------------------------------------------------------------------------- /include/start_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/start_menu.h -------------------------------------------------------------------------------- /include/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/string_util.h -------------------------------------------------------------------------------- /include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/strings.h -------------------------------------------------------------------------------- /include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/task.h -------------------------------------------------------------------------------- /include/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/text.h -------------------------------------------------------------------------------- /include/text_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/text_window.h -------------------------------------------------------------------------------- /include/tilesets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/tilesets.h -------------------------------------------------------------------------------- /include/time_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/time_events.h -------------------------------------------------------------------------------- /include/title_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/title_screen.h -------------------------------------------------------------------------------- /include/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/trade.h -------------------------------------------------------------------------------- /include/trader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/trader.h -------------------------------------------------------------------------------- /include/trainer_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/trainer_card.h -------------------------------------------------------------------------------- /include/trainer_hill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/trainer_hill.h -------------------------------------------------------------------------------- /include/trainer_see.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/trainer_see.h -------------------------------------------------------------------------------- /include/trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/trig.h -------------------------------------------------------------------------------- /include/tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/tv.h -------------------------------------------------------------------------------- /include/union_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/union_room.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/util.h -------------------------------------------------------------------------------- /include/walda_phrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/walda_phrase.h -------------------------------------------------------------------------------- /include/wallclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/wallclock.h -------------------------------------------------------------------------------- /include/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/window.h -------------------------------------------------------------------------------- /include/wonder_news.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/include/wonder_news.h -------------------------------------------------------------------------------- /json_data_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/json_data_rules.mk -------------------------------------------------------------------------------- /ld_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/ld_script.ld -------------------------------------------------------------------------------- /ld_script_modern.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/ld_script_modern.ld -------------------------------------------------------------------------------- /libagbsyscall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/libagbsyscall/Makefile -------------------------------------------------------------------------------- /make_tools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/make_tools.mk -------------------------------------------------------------------------------- /map_data_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/map_data_rules.mk -------------------------------------------------------------------------------- /palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/palette.py -------------------------------------------------------------------------------- /remote_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/remote_build.sh -------------------------------------------------------------------------------- /rom.sha1: -------------------------------------------------------------------------------- 1 | f3ae088181bf583e55daf962a92bb46f4f1d07b7 pokeemerald.gba 2 | -------------------------------------------------------------------------------- /sound/MPlayDef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/sound/MPlayDef.s -------------------------------------------------------------------------------- /sound/cry_tables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/sound/cry_tables.inc -------------------------------------------------------------------------------- /sound/programmable_wave_samples/15.pcm: -------------------------------------------------------------------------------- 1 | &8J\n~lZH6$ -------------------------------------------------------------------------------- /sound/song_table.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/sound/song_table.inc -------------------------------------------------------------------------------- /sound/songs/se_m_dig.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/sound/songs/se_m_dig.s -------------------------------------------------------------------------------- /sound/voice_groups.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/sound/voice_groups.inc -------------------------------------------------------------------------------- /spritesheet_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/spritesheet_rules.mk -------------------------------------------------------------------------------- /src/agb_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/agb_flash.c -------------------------------------------------------------------------------- /src/agb_flash_1m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/agb_flash_1m.c -------------------------------------------------------------------------------- /src/agb_flash_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/agb_flash_le.c -------------------------------------------------------------------------------- /src/agb_flash_mx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/agb_flash_mx.c -------------------------------------------------------------------------------- /src/apprentice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/apprentice.c -------------------------------------------------------------------------------- /src/bard_music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/bard_music.c -------------------------------------------------------------------------------- /src/battle_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_anim.c -------------------------------------------------------------------------------- /src/battle_anim_bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_anim_bug.c -------------------------------------------------------------------------------- /src/battle_anim_dark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_anim_dark.c -------------------------------------------------------------------------------- /src/battle_anim_fire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_anim_fire.c -------------------------------------------------------------------------------- /src/battle_anim_ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_anim_ice.c -------------------------------------------------------------------------------- /src/battle_anim_mons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_anim_mons.c -------------------------------------------------------------------------------- /src/battle_anim_rock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_anim_rock.c -------------------------------------------------------------------------------- /src/battle_arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_arena.c -------------------------------------------------------------------------------- /src/battle_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_bg.c -------------------------------------------------------------------------------- /src/battle_dome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_dome.c -------------------------------------------------------------------------------- /src/battle_factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_factory.c -------------------------------------------------------------------------------- /src/battle_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_interface.c -------------------------------------------------------------------------------- /src/battle_intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_intro.c -------------------------------------------------------------------------------- /src/battle_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_main.c -------------------------------------------------------------------------------- /src/battle_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_message.c -------------------------------------------------------------------------------- /src/battle_palace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_palace.c -------------------------------------------------------------------------------- /src/battle_pike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_pike.c -------------------------------------------------------------------------------- /src/battle_pyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_pyramid.c -------------------------------------------------------------------------------- /src/battle_records.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_records.c -------------------------------------------------------------------------------- /src/battle_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_setup.c -------------------------------------------------------------------------------- /src/battle_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_tent.c -------------------------------------------------------------------------------- /src/battle_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_tower.c -------------------------------------------------------------------------------- /src/battle_tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_tv.c -------------------------------------------------------------------------------- /src/battle_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_util.c -------------------------------------------------------------------------------- /src/battle_util2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/battle_util2.c -------------------------------------------------------------------------------- /src/berry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/berry.c -------------------------------------------------------------------------------- /src/berry_blender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/berry_blender.c -------------------------------------------------------------------------------- /src/berry_crush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/berry_crush.c -------------------------------------------------------------------------------- /src/berry_powder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/berry_powder.c -------------------------------------------------------------------------------- /src/berry_tag_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/berry_tag_screen.c -------------------------------------------------------------------------------- /src/bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/bg.c -------------------------------------------------------------------------------- /src/bike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/bike.c -------------------------------------------------------------------------------- /src/birch_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/birch_pc.c -------------------------------------------------------------------------------- /src/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/blit.c -------------------------------------------------------------------------------- /src/braille.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/braille.c -------------------------------------------------------------------------------- /src/braille_puzzles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/braille_puzzles.c -------------------------------------------------------------------------------- /src/cable_car.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/cable_car.c -------------------------------------------------------------------------------- /src/cable_club.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/cable_club.c -------------------------------------------------------------------------------- /src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/clock.c -------------------------------------------------------------------------------- /src/coins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/coins.c -------------------------------------------------------------------------------- /src/confetti_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/confetti_util.c -------------------------------------------------------------------------------- /src/contest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/contest.c -------------------------------------------------------------------------------- /src/contest_ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/contest_ai.c -------------------------------------------------------------------------------- /src/contest_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/contest_effect.c -------------------------------------------------------------------------------- /src/contest_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/contest_link.c -------------------------------------------------------------------------------- /src/contest_painting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/contest_painting.c -------------------------------------------------------------------------------- /src/contest_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/contest_util.c -------------------------------------------------------------------------------- /src/credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/credits.c -------------------------------------------------------------------------------- /src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/crt0.s -------------------------------------------------------------------------------- /src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data.c -------------------------------------------------------------------------------- /src/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data/.gitignore -------------------------------------------------------------------------------- /src/data/battle_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data/battle_anim.h -------------------------------------------------------------------------------- /src/data/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data/credits.h -------------------------------------------------------------------------------- /src/data/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data/items.h -------------------------------------------------------------------------------- /src/data/party_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data/party_menu.h -------------------------------------------------------------------------------- /src/data/script_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data/script_menu.h -------------------------------------------------------------------------------- /src/data/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data/trade.h -------------------------------------------------------------------------------- /src/data/trainers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data/trainers.h -------------------------------------------------------------------------------- /src/data/union_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data/union_room.h -------------------------------------------------------------------------------- /src/data/wallpapers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/data/wallpapers.h -------------------------------------------------------------------------------- /src/daycare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/daycare.c -------------------------------------------------------------------------------- /src/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/decompress.c -------------------------------------------------------------------------------- /src/decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/decoration.c -------------------------------------------------------------------------------- /src/dewford_trend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/dewford_trend.c -------------------------------------------------------------------------------- /src/digit_obj_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/digit_obj_util.c -------------------------------------------------------------------------------- /src/diploma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/diploma.c -------------------------------------------------------------------------------- /src/dma3_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/dma3_manager.c -------------------------------------------------------------------------------- /src/easy_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/easy_chat.c -------------------------------------------------------------------------------- /src/egg_hatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/egg_hatch.c -------------------------------------------------------------------------------- /src/ereader_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/ereader_helpers.c -------------------------------------------------------------------------------- /src/ereader_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/ereader_screen.c -------------------------------------------------------------------------------- /src/event_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/event_data.c -------------------------------------------------------------------------------- /src/evolution_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/evolution_scene.c -------------------------------------------------------------------------------- /src/faraway_island.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/faraway_island.c -------------------------------------------------------------------------------- /src/field_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/field_camera.c -------------------------------------------------------------------------------- /src/field_door.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/field_door.c -------------------------------------------------------------------------------- /src/field_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/field_effect.c -------------------------------------------------------------------------------- /src/field_poison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/field_poison.c -------------------------------------------------------------------------------- /src/field_region_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/field_region_map.c -------------------------------------------------------------------------------- /src/field_specials.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/field_specials.c -------------------------------------------------------------------------------- /src/field_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/field_tasks.c -------------------------------------------------------------------------------- /src/field_weather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/field_weather.c -------------------------------------------------------------------------------- /src/fieldmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/fieldmap.c -------------------------------------------------------------------------------- /src/fldeff_cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/fldeff_cut.c -------------------------------------------------------------------------------- /src/fldeff_dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/fldeff_dig.c -------------------------------------------------------------------------------- /src/fldeff_escalator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/fldeff_escalator.c -------------------------------------------------------------------------------- /src/fldeff_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/fldeff_flash.c -------------------------------------------------------------------------------- /src/fldeff_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/fldeff_misc.c -------------------------------------------------------------------------------- /src/fldeff_rocksmash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/fldeff_rocksmash.c -------------------------------------------------------------------------------- /src/fldeff_strength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/fldeff_strength.c -------------------------------------------------------------------------------- /src/fldeff_teleport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/fldeff_teleport.c -------------------------------------------------------------------------------- /src/follower_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/follower_helper.c -------------------------------------------------------------------------------- /src/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/fonts.c -------------------------------------------------------------------------------- /src/frontier_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/frontier_pass.c -------------------------------------------------------------------------------- /src/frontier_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/frontier_util.c -------------------------------------------------------------------------------- /src/gpu_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/gpu_regs.c -------------------------------------------------------------------------------- /src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/graphics.c -------------------------------------------------------------------------------- /src/hall_of_fame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/hall_of_fame.c -------------------------------------------------------------------------------- /src/heal_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/heal_location.c -------------------------------------------------------------------------------- /src/hof_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/hof_pc.c -------------------------------------------------------------------------------- /src/intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/intro.c -------------------------------------------------------------------------------- /src/io_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/io_reg.c -------------------------------------------------------------------------------- /src/item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/item.c -------------------------------------------------------------------------------- /src/item_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/item_icon.c -------------------------------------------------------------------------------- /src/item_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/item_menu.c -------------------------------------------------------------------------------- /src/item_menu_icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/item_menu_icons.c -------------------------------------------------------------------------------- /src/item_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/item_use.c -------------------------------------------------------------------------------- /src/landmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/landmark.c -------------------------------------------------------------------------------- /src/libgcnmultiboot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/libgcnmultiboot.s -------------------------------------------------------------------------------- /src/libisagbprn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/libisagbprn.c -------------------------------------------------------------------------------- /src/librfu_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/librfu_intr.c -------------------------------------------------------------------------------- /src/librfu_rfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/librfu_rfu.c -------------------------------------------------------------------------------- /src/librfu_sio32id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/librfu_sio32id.c -------------------------------------------------------------------------------- /src/librfu_stwi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/librfu_stwi.c -------------------------------------------------------------------------------- /src/lilycove_lady.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/lilycove_lady.c -------------------------------------------------------------------------------- /src/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/link.c -------------------------------------------------------------------------------- /src/link_rfu_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/link_rfu_2.c -------------------------------------------------------------------------------- /src/link_rfu_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/link_rfu_3.c -------------------------------------------------------------------------------- /src/list_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/list_menu.c -------------------------------------------------------------------------------- /src/load_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/load_save.c -------------------------------------------------------------------------------- /src/lottery_corner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/lottery_corner.c -------------------------------------------------------------------------------- /src/m4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/m4a.c -------------------------------------------------------------------------------- /src/m4a_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/m4a_1.s -------------------------------------------------------------------------------- /src/m4a_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/m4a_tables.c -------------------------------------------------------------------------------- /src/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/mail.c -------------------------------------------------------------------------------- /src/mail_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/mail_data.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/main_menu.c -------------------------------------------------------------------------------- /src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/malloc.c -------------------------------------------------------------------------------- /src/map_name_popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/map_name_popup.c -------------------------------------------------------------------------------- /src/match_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/match_call.c -------------------------------------------------------------------------------- /src/math_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/math_util.c -------------------------------------------------------------------------------- /src/mauville_old_man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/mauville_old_man.c -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/menu_helpers.c -------------------------------------------------------------------------------- /src/menu_specialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/menu_specialized.c -------------------------------------------------------------------------------- /src/mini_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/mini_printf.c -------------------------------------------------------------------------------- /src/mirage_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/mirage_tower.c -------------------------------------------------------------------------------- /src/mon_markings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/mon_markings.c -------------------------------------------------------------------------------- /src/money.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/money.c -------------------------------------------------------------------------------- /src/move_relearner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/move_relearner.c -------------------------------------------------------------------------------- /src/multiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/multiboot.c -------------------------------------------------------------------------------- /src/mystery_gift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/mystery_gift.c -------------------------------------------------------------------------------- /src/naming_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/naming_screen.c -------------------------------------------------------------------------------- /src/new_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/new_game.c -------------------------------------------------------------------------------- /src/option_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/option_menu.c -------------------------------------------------------------------------------- /src/overworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/overworld.c -------------------------------------------------------------------------------- /src/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/palette.c -------------------------------------------------------------------------------- /src/palette_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/palette_util.c -------------------------------------------------------------------------------- /src/party_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/party_menu.c -------------------------------------------------------------------------------- /src/play_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/play_time.c -------------------------------------------------------------------------------- /src/player_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/player_pc.c -------------------------------------------------------------------------------- /src/pokeball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/pokeball.c -------------------------------------------------------------------------------- /src/pokeblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/pokeblock.c -------------------------------------------------------------------------------- /src/pokeblock_feed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/pokeblock_feed.c -------------------------------------------------------------------------------- /src/pokedex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/pokedex.c -------------------------------------------------------------------------------- /src/pokemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/pokemon.c -------------------------------------------------------------------------------- /src/pokemon_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/pokemon_icon.c -------------------------------------------------------------------------------- /src/pokemon_jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/pokemon_jump.c -------------------------------------------------------------------------------- /src/pokenav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/pokenav.c -------------------------------------------------------------------------------- /src/pokenav_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/pokenav_list.c -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/random.c -------------------------------------------------------------------------------- /src/rayquaza_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/rayquaza_scene.c -------------------------------------------------------------------------------- /src/record_mixing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/record_mixing.c -------------------------------------------------------------------------------- /src/recorded_battle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/recorded_battle.c -------------------------------------------------------------------------------- /src/region_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/region_map.c -------------------------------------------------------------------------------- /src/reload_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/reload_save.c -------------------------------------------------------------------------------- /src/reset_rtc_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/reset_rtc_screen.c -------------------------------------------------------------------------------- /src/roamer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/roamer.c -------------------------------------------------------------------------------- /src/rom_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/rom_header.s -------------------------------------------------------------------------------- /src/rom_header_gf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/rom_header_gf.c -------------------------------------------------------------------------------- /src/rotating_gate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/rotating_gate.c -------------------------------------------------------------------------------- /src/roulette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/roulette.c -------------------------------------------------------------------------------- /src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/rtc.c -------------------------------------------------------------------------------- /src/safari_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/safari_zone.c -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/save.c -------------------------------------------------------------------------------- /src/save_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/save_location.c -------------------------------------------------------------------------------- /src/scanline_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/scanline_effect.c -------------------------------------------------------------------------------- /src/scrcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/scrcmd.c -------------------------------------------------------------------------------- /src/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/script.c -------------------------------------------------------------------------------- /src/script_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/script_menu.c -------------------------------------------------------------------------------- /src/script_movement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/script_movement.c -------------------------------------------------------------------------------- /src/secret_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/secret_base.c -------------------------------------------------------------------------------- /src/shop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/shop.c -------------------------------------------------------------------------------- /src/siirtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/siirtc.c -------------------------------------------------------------------------------- /src/slot_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/slot_machine.c -------------------------------------------------------------------------------- /src/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/sound.c -------------------------------------------------------------------------------- /src/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/sprite.c -------------------------------------------------------------------------------- /src/start_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/start_menu.c -------------------------------------------------------------------------------- /src/starter_choose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/starter_choose.c -------------------------------------------------------------------------------- /src/string_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/string_util.c -------------------------------------------------------------------------------- /src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/strings.c -------------------------------------------------------------------------------- /src/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/task.c -------------------------------------------------------------------------------- /src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/text.c -------------------------------------------------------------------------------- /src/text_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/text_window.c -------------------------------------------------------------------------------- /src/tileset_anims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/tileset_anims.c -------------------------------------------------------------------------------- /src/tilesets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/tilesets.c -------------------------------------------------------------------------------- /src/time_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/time_events.c -------------------------------------------------------------------------------- /src/title_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/title_screen.c -------------------------------------------------------------------------------- /src/trade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/trade.c -------------------------------------------------------------------------------- /src/trader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/trader.c -------------------------------------------------------------------------------- /src/trainer_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/trainer_card.c -------------------------------------------------------------------------------- /src/trainer_hill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/trainer_hill.c -------------------------------------------------------------------------------- /src/trainer_see.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/trainer_see.c -------------------------------------------------------------------------------- /src/trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/trig.c -------------------------------------------------------------------------------- /src/tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/tv.c -------------------------------------------------------------------------------- /src/union_room.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/union_room.c -------------------------------------------------------------------------------- /src/union_room_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/union_room_chat.c -------------------------------------------------------------------------------- /src/use_pokeblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/use_pokeblock.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/util.c -------------------------------------------------------------------------------- /src/walda_phrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/walda_phrase.c -------------------------------------------------------------------------------- /src/wallclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/wallclock.c -------------------------------------------------------------------------------- /src/wild_encounter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/wild_encounter.c -------------------------------------------------------------------------------- /src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/window.c -------------------------------------------------------------------------------- /src/wonder_news.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/src/wonder_news.c -------------------------------------------------------------------------------- /sym_bss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/sym_bss.txt -------------------------------------------------------------------------------- /sym_common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/sym_common.txt -------------------------------------------------------------------------------- /sym_ewram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/sym_ewram.txt -------------------------------------------------------------------------------- /tools/aif2pcm/.gitignore: -------------------------------------------------------------------------------- 1 | aif2pcm 2 | 3 | -------------------------------------------------------------------------------- /tools/aif2pcm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/aif2pcm/LICENSE -------------------------------------------------------------------------------- /tools/aif2pcm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/aif2pcm/Makefile -------------------------------------------------------------------------------- /tools/aif2pcm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/aif2pcm/main.c -------------------------------------------------------------------------------- /tools/bin2c/.gitignore: -------------------------------------------------------------------------------- 1 | bin2c 2 | -------------------------------------------------------------------------------- /tools/bin2c/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/bin2c/LICENSE -------------------------------------------------------------------------------- /tools/bin2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/bin2c/Makefile -------------------------------------------------------------------------------- /tools/bin2c/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/bin2c/bin2c.c -------------------------------------------------------------------------------- /tools/gbafix/.gitignore: -------------------------------------------------------------------------------- 1 | gbafix 2 | README 3 | -------------------------------------------------------------------------------- /tools/gbafix/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbafix/COPYING -------------------------------------------------------------------------------- /tools/gbafix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbafix/Makefile -------------------------------------------------------------------------------- /tools/gbafix/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbafix/elf.h -------------------------------------------------------------------------------- /tools/gbafix/gbafix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbafix/gbafix.c -------------------------------------------------------------------------------- /tools/gbagfx/.gitignore: -------------------------------------------------------------------------------- 1 | gbagfx 2 | -------------------------------------------------------------------------------- /tools/gbagfx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/LICENSE -------------------------------------------------------------------------------- /tools/gbagfx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/Makefile -------------------------------------------------------------------------------- /tools/gbagfx/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/font.c -------------------------------------------------------------------------------- /tools/gbagfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/font.h -------------------------------------------------------------------------------- /tools/gbagfx/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/gfx.c -------------------------------------------------------------------------------- /tools/gbagfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/gfx.h -------------------------------------------------------------------------------- /tools/gbagfx/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/global.h -------------------------------------------------------------------------------- /tools/gbagfx/huff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/huff.c -------------------------------------------------------------------------------- /tools/gbagfx/huff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/huff.h -------------------------------------------------------------------------------- /tools/gbagfx/lz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/lz.c -------------------------------------------------------------------------------- /tools/gbagfx/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/lz.h -------------------------------------------------------------------------------- /tools/gbagfx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/main.c -------------------------------------------------------------------------------- /tools/gbagfx/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/options.h -------------------------------------------------------------------------------- /tools/gbagfx/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/rl.c -------------------------------------------------------------------------------- /tools/gbagfx/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/rl.h -------------------------------------------------------------------------------- /tools/gbagfx/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/util.c -------------------------------------------------------------------------------- /tools/gbagfx/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/gbagfx/util.h -------------------------------------------------------------------------------- /tools/jsonproc/.gitignore: -------------------------------------------------------------------------------- 1 | jsonproc 2 | -------------------------------------------------------------------------------- /tools/mapjson/.gitignore: -------------------------------------------------------------------------------- 1 | mapjson 2 | -------------------------------------------------------------------------------- /tools/mapjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mapjson/Makefile -------------------------------------------------------------------------------- /tools/mapjson/json11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mapjson/json11.h -------------------------------------------------------------------------------- /tools/mid2agb/.gitignore: -------------------------------------------------------------------------------- 1 | mid2agb 2 | -------------------------------------------------------------------------------- /tools/mid2agb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mid2agb/LICENSE -------------------------------------------------------------------------------- /tools/mid2agb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mid2agb/Makefile -------------------------------------------------------------------------------- /tools/mid2agb/agb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mid2agb/agb.cpp -------------------------------------------------------------------------------- /tools/mid2agb/agb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mid2agb/agb.h -------------------------------------------------------------------------------- /tools/mid2agb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mid2agb/error.h -------------------------------------------------------------------------------- /tools/mid2agb/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mid2agb/main.cpp -------------------------------------------------------------------------------- /tools/mid2agb/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mid2agb/main.h -------------------------------------------------------------------------------- /tools/mid2agb/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mid2agb/midi.cpp -------------------------------------------------------------------------------- /tools/mid2agb/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mid2agb/midi.h -------------------------------------------------------------------------------- /tools/mid2agb/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/mid2agb/tables.h -------------------------------------------------------------------------------- /tools/preproc/.gitignore: -------------------------------------------------------------------------------- 1 | preproc 2 | -------------------------------------------------------------------------------- /tools/preproc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/preproc/LICENSE -------------------------------------------------------------------------------- /tools/preproc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/preproc/Makefile -------------------------------------------------------------------------------- /tools/preproc/c_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/preproc/c_file.h -------------------------------------------------------------------------------- /tools/preproc/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/preproc/io.cpp -------------------------------------------------------------------------------- /tools/preproc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/preproc/io.h -------------------------------------------------------------------------------- /tools/preproc/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/preproc/utf8.cpp -------------------------------------------------------------------------------- /tools/preproc/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/preproc/utf8.h -------------------------------------------------------------------------------- /tools/ramscrgen/.gitignore: -------------------------------------------------------------------------------- 1 | ramscrgen 2 | -------------------------------------------------------------------------------- /tools/ramscrgen/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/ramscrgen/elf.h -------------------------------------------------------------------------------- /tools/rsfont/.gitignore: -------------------------------------------------------------------------------- 1 | rsfont 2 | -------------------------------------------------------------------------------- /tools/rsfont/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/rsfont/LICENSE -------------------------------------------------------------------------------- /tools/rsfont/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/rsfont/Makefile -------------------------------------------------------------------------------- /tools/rsfont/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/rsfont/font.c -------------------------------------------------------------------------------- /tools/rsfont/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/rsfont/font.h -------------------------------------------------------------------------------- /tools/rsfont/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/rsfont/gfx.h -------------------------------------------------------------------------------- /tools/rsfont/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/rsfont/global.h -------------------------------------------------------------------------------- /tools/rsfont/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/rsfont/main.c -------------------------------------------------------------------------------- /tools/rsfont/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/rsfont/util.c -------------------------------------------------------------------------------- /tools/rsfont/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/rsfont/util.h -------------------------------------------------------------------------------- /tools/scaninc/.gitignore: -------------------------------------------------------------------------------- 1 | scaninc 2 | -------------------------------------------------------------------------------- /tools/scaninc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/scaninc/LICENSE -------------------------------------------------------------------------------- /tools/scaninc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/scaninc/Makefile -------------------------------------------------------------------------------- /tools/scaninc/c_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarant/pokeemerald/HEAD/tools/scaninc/c_file.h --------------------------------------------------------------------------------