├── .gitattributes ├── .github ├── calcrom │ ├── calcrom.pl │ └── webhook.sh └── workflows │ └── build.yml ├── .gitignore ├── FAQ.md ├── FEATURES.md ├── INSTALL.md ├── Makefile ├── README.md ├── asm ├── macros.inc └── macros │ ├── asm.inc │ ├── battle_ai_script.inc │ ├── battle_anim.inc │ ├── battle_anim_script.inc │ ├── battle_script.inc │ ├── contest_ai_script.inc │ ├── ec.inc │ ├── event.inc │ ├── field_effect_script.inc │ ├── function.inc │ ├── m4a.inc │ ├── map.inc │ ├── movement.inc │ ├── music_voice.inc │ └── trainer_tower.inc ├── asmdiff.sh ├── charmap.txt ├── common_syms ├── AgbRfu_LinkManager.txt ├── agb_flash.txt ├── battle_anim_special.txt ├── battle_controller_pokedude.txt ├── battle_main.txt ├── berry_fix_program.txt ├── bg.txt ├── cable_club.txt ├── ereader_screen.txt ├── event_data.txt ├── evolution_scene.txt ├── fame_checker.txt ├── field_camera.txt ├── field_control_avatar.txt ├── field_specials.txt ├── fieldmap.txt ├── help_system.txt ├── help_system_util.txt ├── image_processing_effects.txt ├── librfu_rfu.txt ├── librfu_sio32id.txt ├── librfu_stwi.txt ├── link.txt ├── link_rfu_2.txt ├── list_menu.txt ├── load_save.txt ├── m4a.txt ├── main.txt ├── overworld.txt ├── party_menu.txt ├── quest_log.txt ├── random.txt ├── save.txt ├── save_failed_screen.txt ├── scrcmd.txt ├── sound.txt ├── sprite.txt ├── task.txt ├── text.txt ├── text_printer.txt └── window.txt ├── compare.sh ├── config.mk ├── constants ├── constants.inc ├── gba_constants.inc ├── m4a_constants.inc └── misc_constants.inc ├── data ├── battle_ai_scripts.s ├── battle_anim_scripts.s ├── battle_scripts_1.s ├── battle_scripts_2.s ├── event_scripts.s ├── field_effect_scripts.s ├── layouts │ ├── .gitignore │ ├── ArtisanCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── ArtisanCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── BattleColosseum_2P │ │ ├── border.bin │ │ └── map.bin │ ├── BattleColosseum_4P │ │ ├── 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 │ ├── BirthIsland_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Condominiums_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Condominiums_2F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Condominiums_3F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Condominiums_Roof │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Condominiums_RoofRoom │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_2F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_3F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_4F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_5F │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_Elevator │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_DepartmentStore_Roof │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_GameCorner │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_GameCorner_PrizeRoom │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Hotel │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Hotel_Duplicate │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Restaurant │ │ ├── border.bin │ │ └── map.bin │ ├── CeladonCity_Restaurant_Duplicate │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_1F_Blue │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_1F_Yellow │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_2F │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_2F_Blue │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_2F_Yellow │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_B1F_Blue │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCave_B1F_Yellow │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_BikeShop │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── CeruleanCity_House5 │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_PokemonLab_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_PokemonLab_ExperimentRoom │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_PokemonLab_Lounge │ │ ├── border.bin │ │ └── map.bin │ ├── CinnabarIsland_PokemonLab_ResearchRoom │ │ ├── border.bin │ │ └── map.bin │ ├── DiglettsCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── DiglettsCave_NorthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── DiglettsCave_SouthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Entrance_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Entrance_2F │ │ ├── border.bin │ │ └── map.bin │ ├── EverGrandeCity_HallOfFame │ │ ├── border.bin │ │ └── map.bin │ ├── FarawayIsland_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── FarawayIsland_Interior │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room1 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room10 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room11 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room12 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room13 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room14 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room2 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room3 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room4 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room5 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room6 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room7 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room8 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_LostCave_Room9 │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_Meadow │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_MemorialPillar │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_ResortGorgeous │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_ResortGorgeous_House │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_RocketWarehouse │ │ ├── border.bin │ │ └── map.bin │ ├── FiveIsland_WaterLabyrinth │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_DecorationShop │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── FortreeCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── FourIsland │ │ ├── border.bin │ │ └── map.bin │ ├── FourIsland_Base │ │ ├── border.bin │ │ └── map.bin │ ├── FourIsland_Base_CableCarStation │ │ ├── border.bin │ │ └── map.bin │ ├── FourIsland_CableCarStation │ │ ├── border.bin │ │ └── map.bin │ ├── FourIsland_IcefallCave_1F │ │ ├── border.bin │ │ └── map.bin │ ├── FourIsland_IcefallCave_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── FourIsland_IcefallCave_Back │ │ ├── border.bin │ │ └── map.bin │ ├── FourIsland_IcefallCave_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── FourIsland_LoreleisHouse │ │ ├── border.bin │ │ └── map.bin │ ├── FourIsland_PokemonDayCare │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_SafariZone_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_SafariZone_Office │ │ ├── border.bin │ │ └── map.bin │ ├── FuchsiaCity_WardensHouse │ │ ├── border.bin │ │ └── map.bin │ ├── House1 │ │ ├── border.bin │ │ └── map.bin │ ├── House2 │ │ ├── border.bin │ │ └── map.bin │ ├── House3 │ │ ├── border.bin │ │ └── map.bin │ ├── House4 │ │ ├── border.bin │ │ └── map.bin │ ├── House5 │ │ ├── border.bin │ │ └── map.bin │ ├── IndigoPlateau_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── IndigoPlateau_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Island_Harbor │ │ ├── border.bin │ │ └── map.bin │ ├── LavaridgeTown_HerbShop │ │ ├── border.bin │ │ └── map.bin │ ├── LavenderTown │ │ ├── border.bin │ │ └── map.bin │ ├── LavenderTown_VolunteerPokemonHouse │ │ ├── border.bin │ │ └── map.bin │ ├── LittlerootTown_MaysHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── Mart │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_EReaderTrainerHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MossdeepCity_EReaderTrainerHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_RubyPath_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_RubyPath_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_RubyPath_B1F_Stairs │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_RubyPath_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_RubyPath_B2F_Stairs │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_RubyPath_B3F │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_RubyPath_B4F │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_RubyPath_B5F │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_Summit │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_SummitPath_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_SummitPath_2F │ │ ├── border.bin │ │ └── map.bin │ ├── MtEmber_SummitPath_3F │ │ ├── border.bin │ │ └── map.bin │ ├── MtMoon_1F │ │ ├── border.bin │ │ └── map.bin │ ├── MtMoon_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── MtMoon_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_1F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Base │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B10F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B11F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B3F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B4F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B5F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B6F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B7F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B8F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_BasePath_B9F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Fork │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_Summit │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_SummitPath_2F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_SummitPath_3F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_SummitPath_4F │ │ ├── border.bin │ │ └── map.bin │ ├── NavelRock_SummitPath_5F │ │ ├── border.bin │ │ └── map.bin │ ├── OneIsland │ │ ├── border.bin │ │ └── map.bin │ ├── OneIsland_KindleRoad │ │ ├── border.bin │ │ └── map.bin │ ├── OneIsland_KindleRoad_EmberSpa │ │ ├── border.bin │ │ └── map.bin │ ├── OneIsland_KindleRoad_GlassWorkshop │ │ ├── border.bin │ │ └── map.bin │ ├── OneIsland_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── OneIsland_PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── OneIsland_TreasureBeach │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── PacifidlogTown_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── PalletTown │ │ ├── border.bin │ │ └── map.bin │ ├── PalletTown_PlayersHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PalletTown_PlayersHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PalletTown_ProfessorOaksLab │ │ ├── border.bin │ │ └── map.bin │ ├── PalletTown_RivalsHouse │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_Museum_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PewterCity_Museum_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonCenter_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_AgathasRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_BrunosRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_ChampionsRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_HallOfFame │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_LancesRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonLeague_LoreleisRoom │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonMansion_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonMansion_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonMansion_3F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonMansion_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_1F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_2F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_3F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_4F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_5F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_6F │ │ ├── border.bin │ │ └── map.bin │ ├── PokemonTower_7F │ │ ├── border.bin │ │ └── map.bin │ ├── PowerPlant │ │ ├── border.bin │ │ └── map.bin │ ├── Prototype_SeviiIsle_22 │ │ ├── border.bin │ │ └── map.bin │ ├── Prototype_SeviiIsle_23_East │ │ ├── border.bin │ │ └── map.bin │ ├── Prototype_SeviiIsle_23_West │ │ ├── border.bin │ │ └── map.bin │ ├── Prototype_SeviiIsle_24 │ │ ├── border.bin │ │ └── map.bin │ ├── Prototype_SeviiIsle_6 │ │ ├── border.bin │ │ └── map.bin │ ├── Prototype_SeviiIsle_7 │ │ ├── border.bin │ │ └── map.bin │ ├── Prototype_SeviiIsle_8 │ │ ├── border.bin │ │ └── map.bin │ ├── Prototype_SeviiIsle_9 │ │ ├── border.bin │ │ └── map.bin │ ├── RS_BattleTower │ │ ├── border.bin │ │ └── map.bin │ ├── RS_BattleTower_BattleRoom │ │ ├── border.bin │ │ └── map.bin │ ├── RS_BattleTower_Corridor │ │ ├── border.bin │ │ └── map.bin │ ├── RS_BattleTower_Elevator │ │ ├── border.bin │ │ └── map.bin │ ├── RS_BattleTower_Lobby │ │ ├── border.bin │ │ └── map.bin │ ├── RS_PokemonCenter_1F │ │ ├── border.bin │ │ └── map.bin │ ├── RS_SafariZone_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── RS_SafariZone_Northeast │ │ ├── border.bin │ │ └── map.bin │ ├── RS_SafariZone_RestHouse │ │ ├── border.bin │ │ └── map.bin │ ├── RS_SafariZone_Southeast │ │ ├── border.bin │ │ └── map.bin │ ├── RS_SafariZone_Southwest │ │ ├── border.bin │ │ └── map.bin │ ├── RecordCorner │ │ ├── border.bin │ │ └── map.bin │ ├── RockTunnel_1F │ │ ├── border.bin │ │ └── map.bin │ ├── RockTunnel_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── RocketHideout_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── RocketHideout_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── RocketHideout_B3F │ │ ├── border.bin │ │ └── map.bin │ ├── RocketHideout_B4F │ │ ├── border.bin │ │ └── map.bin │ ├── RocketHideout_Elevator │ │ ├── border.bin │ │ └── map.bin │ ├── Route1 │ │ ├── border.bin │ │ └── map.bin │ ├── Route10 │ │ ├── border.bin │ │ └── map.bin │ ├── Route11 │ │ ├── border.bin │ │ └── map.bin │ ├── Route12 │ │ ├── border.bin │ │ └── map.bin │ ├── Route12_NorthEntrance_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Route13 │ │ ├── border.bin │ │ └── map.bin │ ├── Route14 │ │ ├── border.bin │ │ └── map.bin │ ├── Route15 │ │ ├── border.bin │ │ └── map.bin │ ├── Route16 │ │ ├── border.bin │ │ └── map.bin │ ├── Route16_NorthEntrance_1F │ │ ├── border.bin │ │ └── map.bin │ ├── Route17 │ │ ├── border.bin │ │ └── map.bin │ ├── Route18 │ │ ├── border.bin │ │ └── map.bin │ ├── Route19 │ │ ├── border.bin │ │ └── map.bin │ ├── Route2 │ │ ├── border.bin │ │ └── map.bin │ ├── Route20 │ │ ├── border.bin │ │ └── map.bin │ ├── Route20_Underwater │ │ ├── border.bin │ │ └── map.bin │ ├── Route21_North │ │ ├── border.bin │ │ └── map.bin │ ├── Route21_South │ │ ├── border.bin │ │ └── map.bin │ ├── Route22 │ │ ├── border.bin │ │ └── map.bin │ ├── Route22_NorthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route23 │ │ ├── border.bin │ │ └── map.bin │ ├── Route24 │ │ ├── border.bin │ │ └── map.bin │ ├── Route25 │ │ ├── border.bin │ │ └── map.bin │ ├── Route25_SeaCottage │ │ ├── border.bin │ │ └── map.bin │ ├── Route2_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── Route3 │ │ ├── border.bin │ │ └── map.bin │ ├── Route4 │ │ ├── border.bin │ │ └── map.bin │ ├── Route5 │ │ ├── border.bin │ │ └── map.bin │ ├── Route5_PokemonDayCare │ │ ├── border.bin │ │ └── map.bin │ ├── Route6 │ │ ├── border.bin │ │ └── map.bin │ ├── Route7 │ │ ├── border.bin │ │ └── map.bin │ ├── Route8 │ │ ├── border.bin │ │ └── map.bin │ ├── Route9 │ │ ├── border.bin │ │ └── map.bin │ ├── RustboroCity_CuttersHouse │ │ ├── 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 │ ├── SSAnne_1F_Corridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_2F_Corridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_3F_Corridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_B1F_Corridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_CaptainsOffice │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_Deck │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_Kitchen │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_Room1 │ │ ├── border.bin │ │ └── map.bin │ ├── SSAnne_Room2 │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidal_Corridor │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidal_LowerDeck │ │ ├── border.bin │ │ └── map.bin │ ├── SSTidal_Rooms │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_Center │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_East │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_North │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_NorthEast │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_NorthWest │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_RestHouse │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_SecretHouse │ │ ├── border.bin │ │ └── map.bin │ ├── SafariZone_West │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_Connection │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_CopycatsHouse_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_CopycatsHouse_2F │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_Dojo │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_EastWestEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_NorthSouthEntrance │ │ ├── border.bin │ │ └── map.bin │ ├── SaffronCity_PokemonTrainerFanClub │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B3F │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B3F_CurrentStopped │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B4F │ │ ├── border.bin │ │ └── map.bin │ ├── SeafoamIslands_B4F_CurrentStopped │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_House_Room1 │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_House_Room1_DoorOpen │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_House_Room2 │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_SevaultCanyon │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_SevaultCanyon_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_SevaultCanyon_TanobyKey │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_TanobyRuins │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_TanobyRuins_DilfordChamber │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_TanobyRuins_LiptooChamber │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_TanobyRuins_MoneanChamber │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_TanobyRuins_RixyChamber │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_TanobyRuins_ScufibChamber │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_TanobyRuins_ViapoisChamber │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_TanobyRuins_WeepthChamber │ │ ├── border.bin │ │ └── map.bin │ ├── SevenIsland_TrainerTower │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_10F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_11F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_2F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_3F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_4F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_5F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_6F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_7F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_8F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_9F │ │ ├── border.bin │ │ └── map.bin │ ├── SilphCo_Elevator │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_AlteringCave │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_DottedHole_1F │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_DottedHole_B1F │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_DottedHole_B2F │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_DottedHole_B3F │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_DottedHole_B4F │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_DottedHole_SapphireRoom │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_GreenPath │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_OutcastIsland │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_PatternBush │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_RuinValley │ │ ├── border.bin │ │ └── map.bin │ ├── SixIsland_WaterPath │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_House2 │ │ ├── border.bin │ │ └── map.bin │ ├── SootopolisCity_House3 │ │ ├── border.bin │ │ └── map.bin │ ├── SouthernIsland_Exterior │ │ ├── border.bin │ │ └── map.bin │ ├── SouthernIsland_Interior │ │ ├── border.bin │ │ └── map.bin │ ├── ThreeIsland │ │ ├── border.bin │ │ └── map.bin │ ├── ThreeIsland_BerryForest │ │ ├── border.bin │ │ └── map.bin │ ├── ThreeIsland_BondBridge │ │ ├── border.bin │ │ └── map.bin │ ├── ThreeIsland_BondBridge_Underwater │ │ ├── border.bin │ │ └── map.bin │ ├── ThreeIsland_DunsparceTunnel │ │ ├── border.bin │ │ └── map.bin │ ├── ThreeIsland_DunsparceTunnel_DugOut │ │ ├── border.bin │ │ └── map.bin │ ├── ThreeIsland_House1 │ │ ├── border.bin │ │ └── map.bin │ ├── ThreeIsland_Port │ │ ├── border.bin │ │ └── map.bin │ ├── TradeCenter │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_1F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_1F_Doubles │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_1F_Knockout │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_2F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_2F_Doubles │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_2F_Knockout │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_3F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_3F_Doubles │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_3F_Knockout │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_4F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_4F_Doubles │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_4F_Knockout │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_5F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_5F_Doubles │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_5F_Knockout │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_6F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_6F_Doubles │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_6F_Knockout │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_7F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_7F_Doubles │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_7F_Knockout │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_8F │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_8F_Doubles │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_8F_Knockout │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_Elevator │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_Lobby │ │ ├── border.bin │ │ └── map.bin │ ├── TrainerTower_Roof │ │ ├── border.bin │ │ └── map.bin │ ├── TwoIsland │ │ ├── border.bin │ │ └── map.bin │ ├── TwoIsland_CapeBrink │ │ ├── border.bin │ │ └── map.bin │ ├── TwoIsland_JoyfulGameCorner │ │ ├── border.bin │ │ └── map.bin │ ├── UndergroundPath_EastWestTunnel │ │ ├── border.bin │ │ └── map.bin │ ├── UndergroundPath_Entrance │ │ ├── border.bin │ │ └── map.bin │ ├── UndergroundPath_NorthSouthTunnel │ │ ├── border.bin │ │ └── map.bin │ ├── UnionRoom │ │ ├── border.bin │ │ └── map.bin │ ├── Unused1 │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── VermilionCity_PokemonFanClub │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_1F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_2F │ │ ├── border.bin │ │ └── map.bin │ ├── VictoryRoad_3F │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity_Gym │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity_House │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianCity_School │ │ ├── border.bin │ │ └── map.bin │ ├── ViridianForest │ │ ├── border.bin │ │ └── map.bin │ └── layouts.json ├── map_events.s ├── maps.s ├── maps │ ├── .gitignore │ ├── ArtisanCave_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ArtisanCave_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleColosseum_2P │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleColosseum_4P │ │ ├── map.json │ │ └── scripts.inc │ ├── BattleFrontier_ExchangeServiceCorner │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_Lounge1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_Lounge2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_Lounge3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_Lounge4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_Lounge5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_Lounge6 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_Lounge7 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_Lounge8 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_OutsideEast │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_OutsideWest │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_PokemonCenter_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_RankingHall │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_ReceptionGate │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BattleFrontier_ScottsHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── BirthIsland_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── BirthIsland_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_Condominiums_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_Condominiums_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_Condominiums_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_Condominiums_Roof │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_Condominiums_RoofRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_DepartmentStore_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_DepartmentStore_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_DepartmentStore_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_DepartmentStore_4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_DepartmentStore_5F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_DepartmentStore_Elevator │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_DepartmentStore_Roof │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_GameCorner │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_GameCorner_PrizeRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_Hotel │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeladonCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeladonCity_Restaurant │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCave_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCave_1F_Blue │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCave_1F_Yellow │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCave_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── CeruleanCave_2F_Blue │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCave_2F_Yellow │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCave_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCave_B1F_Blue │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCave_B1F_Yellow │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity_BikeShop │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity_House3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity_House4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity_House5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CeruleanCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CinnabarIsland_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CinnabarIsland_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CinnabarIsland_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CinnabarIsland_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── CinnabarIsland_PokemonLab_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CinnabarIsland_PokemonLab_ExperimentRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CinnabarIsland_PokemonLab_Lounge │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── CinnabarIsland_PokemonLab_ResearchRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── DiglettsCave_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── DiglettsCave_NorthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── DiglettsCave_SouthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FarawayIsland_Exterior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FarawayIsland_Interior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_LostCave_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_LostCave_Room10 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_LostCave_Room11 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room12 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room13 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room14 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room2 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room3 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_LostCave_Room5 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room6 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room7 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room8 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_LostCave_Room9 │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_Meadow │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_MemorialPillar │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── FiveIsland_ResortGorgeous │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_ResortGorgeous_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_RocketWarehouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FiveIsland_WaterLabyrinth │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FourIsland │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FourIsland_Base │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FourIsland_Base_CableCarStation │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FourIsland_CableCarStation │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FourIsland_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── FourIsland_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FourIsland_House2 │ │ ├── map.json │ │ └── scripts.inc │ ├── FourIsland_IcefallCave_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── FourIsland_IcefallCave_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── FourIsland_IcefallCave_Back │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FourIsland_IcefallCave_Entrance │ │ ├── map.json │ │ └── scripts.inc │ ├── FourIsland_LoreleisHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FourIsland_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FourIsland_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FourIsland_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── FourIsland_PokemonDayCare │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FuchsiaCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FuchsiaCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FuchsiaCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FuchsiaCity_House3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FuchsiaCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FuchsiaCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FuchsiaCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── FuchsiaCity_SafariZone_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FuchsiaCity_SafariZone_Office │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── FuchsiaCity_WardensHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── IndigoPlateau_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── IndigoPlateau_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── IndigoPlateau_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavenderTown │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── LavenderTown_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── LavenderTown_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── LavenderTown_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── LavenderTown_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── LavenderTown_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── LavenderTown_VolunteerPokemonHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── MtEmber_Exterior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── MtEmber_RubyPath_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtEmber_RubyPath_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtEmber_RubyPath_B1F_Stairs │ │ ├── map.json │ │ └── scripts.inc │ ├── MtEmber_RubyPath_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtEmber_RubyPath_B2F_Stairs │ │ ├── map.json │ │ └── scripts.inc │ ├── MtEmber_RubyPath_B3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── MtEmber_RubyPath_B4F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtEmber_RubyPath_B5F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtEmber_Summit │ │ ├── map.json │ │ └── scripts.inc │ ├── MtEmber_SummitPath_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtEmber_SummitPath_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtEmber_SummitPath_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtMoon_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── MtMoon_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── MtMoon_B2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── NavelRock_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Base │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B10F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B11F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B3F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B4F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B5F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B6F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B7F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B8F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_BasePath_B9F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Fork │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_Summit │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_SummitPath_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_SummitPath_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_SummitPath_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── NavelRock_SummitPath_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── OneIsland │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── OneIsland_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── OneIsland_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── OneIsland_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── OneIsland_KindleRoad │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── OneIsland_KindleRoad_EmberSpa │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── OneIsland_KindleRoad_GlassWorkshop │ │ ├── map.json │ │ └── scripts.inc │ ├── OneIsland_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── OneIsland_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── OneIsland_TreasureBeach │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PalletTown │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PalletTown_PlayersHouse_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PalletTown_PlayersHouse_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PalletTown_ProfessorOaksLab │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PalletTown_RivalsHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PewterCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PewterCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PewterCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PewterCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PewterCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PewterCity_Museum_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PewterCity_Museum_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PewterCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PewterCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── PokemonLeague_AgathasRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonLeague_BrunosRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonLeague_ChampionsRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonLeague_HallOfFame │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonLeague_LancesRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonLeague_LoreleisRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonMansion_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonMansion_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonMansion_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonMansion_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonTower_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonTower_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonTower_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonTower_4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonTower_5F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonTower_6F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PokemonTower_7F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── PowerPlant │ │ ├── map.json │ │ └── scripts.inc │ ├── Prototype_SeviiIsle_6 │ │ ├── map.json │ │ └── scripts.inc │ ├── Prototype_SeviiIsle_7 │ │ ├── map.json │ │ └── scripts.inc │ ├── Prototype_SeviiIsle_8 │ │ ├── map.json │ │ └── scripts.inc │ ├── Prototype_SeviiIsle_9 │ │ ├── map.json │ │ └── scripts.inc │ ├── RS_BattleTower │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RS_BattleTower_BattleRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RS_BattleTower_Corridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RS_BattleTower_Elevator │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RS_BattleTower_Lobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RecordCorner │ │ ├── map.json │ │ └── scripts.inc │ ├── RockTunnel_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RockTunnel_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RocketHideout_B1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RocketHideout_B2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RocketHideout_B3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RocketHideout_B4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── RocketHideout_Elevator │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route10 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route10_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route10_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route11 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route11_EastEntrance_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route11_EastEntrance_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route12 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route12_FishingHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route12_NorthEntrance_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route12_NorthEntrance_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route13 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route14 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route15 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route15_WestEntrance_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route15_WestEntrance_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route16 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route16_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route16_NorthEntrance_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route16_NorthEntrance_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route17 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route18 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route18_EastEntrance_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route18_EastEntrance_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route19 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route19_UnusedHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route20 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route20_Underwater │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route21_North │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route21_South │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route22 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route22_NorthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── Route23 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route23_UnusedHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route24 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route25 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route25_SeaCottage │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route2_EastBuilding │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route2_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route2_ViridianForest_NorthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route2_ViridianForest_SouthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route4_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route4_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── Route5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route5_PokemonDayCare │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route5_SouthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route6 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route6_NorthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route6_UnusedHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── Route7 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route7_EastEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route8 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route8_WestEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── Route9 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_1F_Corridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_1F_Room1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_1F_Room2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_1F_Room3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_1F_Room4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_1F_Room5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_1F_Room6 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_1F_Room7 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_2F_Corridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_2F_Room1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_2F_Room2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_2F_Room3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_2F_Room4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_2F_Room5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_2F_Room6 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_3F_Corridor │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_B1F_Corridor │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_B1F_Room1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_B1F_Room2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_B1F_Room3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_B1F_Room4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_B1F_Room5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_CaptainsOffice │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_Deck │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SSAnne_Exterior │ │ ├── map.json │ │ └── scripts.inc │ ├── SSAnne_Kitchen │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_Center │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_Center_RestHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_East │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_East_RestHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_North │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_NorthEast │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_NorthWest │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_NorthWest_RestHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_North_RestHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_SecretHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_West │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SafariZone_West_RestHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SaffronCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SaffronCity_Connection │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_CopycatsHouse_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SaffronCity_CopycatsHouse_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SaffronCity_Dojo │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SaffronCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SaffronCity_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SaffronCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SaffronCity_MrPsychicsHouse │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SaffronCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SaffronCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SaffronCity_PokemonTrainerFanClub │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SeafoamIslands_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafoamIslands_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafoamIslands_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafoamIslands_B3F │ │ ├── map.json │ │ └── scripts.inc │ ├── SeafoamIslands_B4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── SevenIsland_House_Room1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland_House_Room2 │ │ ├── map.json │ │ └── scripts.inc │ ├── SevenIsland_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SevenIsland_SevaultCanyon │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland_SevaultCanyon_Entrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland_SevaultCanyon_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland_SevaultCanyon_TanobyKey │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland_TanobyRuins │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland_TanobyRuins_DilfordChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── SevenIsland_TanobyRuins_LiptooChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── SevenIsland_TanobyRuins_MoneanChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── SevenIsland_TanobyRuins_RixyChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── SevenIsland_TanobyRuins_ScufibChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── SevenIsland_TanobyRuins_ViapoisChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── SevenIsland_TanobyRuins_WeepthChamber │ │ ├── map.json │ │ └── scripts.inc │ ├── SevenIsland_TrainerTower │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SevenIsland_UnusedHouse │ │ ├── map.json │ │ └── scripts.inc │ ├── SilphCo_10F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_11F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_4F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_5F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_6F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_7F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_8F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_9F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SilphCo_Elevator │ │ ├── map.json │ │ └── scripts.inc │ ├── SixIsland │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_AlteringCave │ │ ├── map.json │ │ └── scripts.inc │ ├── SixIsland_DottedHole_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SixIsland_DottedHole_B1F │ │ ├── map.json │ │ └── scripts.inc │ ├── SixIsland_DottedHole_B2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SixIsland_DottedHole_B3F │ │ ├── map.json │ │ └── scripts.inc │ ├── SixIsland_DottedHole_B4F │ │ ├── map.json │ │ └── scripts.inc │ ├── SixIsland_DottedHole_SapphireRoom │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_GreenPath │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── SixIsland_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_OutcastIsland │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_PatternBush │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── SixIsland_RuinValley │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_WaterPath │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_WaterPath_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SixIsland_WaterPath_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SouthernIsland_Exterior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── SouthernIsland_Interior │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_BerryForest │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_BondBridge │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_BondBridge_Underwater │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_DunsparceTunnel │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── ThreeIsland_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_House3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_House4 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_House5 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ThreeIsland_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── ThreeIsland_Port │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── TradeCenter │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerTower_1F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerTower_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerTower_3F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerTower_4F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerTower_5F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerTower_6F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerTower_7F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerTower_8F │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerTower_Elevator │ │ ├── map.json │ │ └── scripts.inc │ ├── TrainerTower_Lobby │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── TrainerTower_Roof │ │ ├── map.json │ │ └── scripts.inc │ ├── TwoIsland │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── TwoIsland_CapeBrink │ │ ├── map.json │ │ └── scripts.inc │ ├── TwoIsland_CapeBrink_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── TwoIsland_Harbor │ │ ├── map.json │ │ └── scripts.inc │ ├── TwoIsland_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── TwoIsland_JoyfulGameCorner │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── TwoIsland_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── TwoIsland_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── UndergroundPath_EastEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── UndergroundPath_EastWestTunnel │ │ ├── map.json │ │ └── scripts.inc │ ├── UndergroundPath_NorthEntrance │ │ ├── map.json │ │ └── scripts.inc │ ├── UndergroundPath_NorthSouthTunnel │ │ ├── map.json │ │ └── scripts.inc │ ├── UndergroundPath_SouthEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── UndergroundPath_WestEntrance │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── UnionRoom │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── VermilionCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── VermilionCity_House1 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── VermilionCity_House2 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── VermilionCity_House3 │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── VermilionCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── VermilionCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── VermilionCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── VermilionCity_PokemonFanClub │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── VictoryRoad_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── VictoryRoad_2F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── VictoryRoad_3F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ViridianCity │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ViridianCity_Gym │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ViridianCity_House │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ViridianCity_Mart │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ViridianCity_PokemonCenter_1F │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ViridianCity_PokemonCenter_2F │ │ ├── map.json │ │ └── scripts.inc │ ├── ViridianCity_School │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.inc │ ├── ViridianForest │ │ ├── map.json │ │ ├── scripts.inc │ │ └── text.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_msg.s ├── mystery_event_script_cmd_table.s ├── script_cmd_table.inc ├── scripts │ ├── aide.inc │ ├── bag_full.inc │ ├── cable_club.inc │ ├── cave_of_origin.inc │ ├── day_care.inc │ ├── fame_checker.inc │ ├── field_moves.inc │ ├── flash.inc │ ├── flavor_text.inc │ ├── fuji_event.inc │ ├── fuji_event.pory │ ├── hall_of_fame.inc │ ├── hole.inc │ ├── item_ball_scripts.inc │ ├── itemfinder.inc │ ├── master_trainers.inc │ ├── move_tutors.inc │ ├── movement.inc │ ├── mystery_event_club.inc │ ├── national_dex_aide.inc │ ├── national_dex_aide.pory │ ├── obtain_item.inc │ ├── pc.inc │ ├── pc_transfer.inc │ ├── pkmn_center_nurse.inc │ ├── pokedex_rating.inc │ ├── pokemon_league.inc │ ├── pokemon_mansion.inc │ ├── questionnaire.inc │ ├── repel.inc │ ├── route23.inc │ ├── safari_zone.inc │ ├── seagallop.inc │ ├── set_gym_trainers.inc │ ├── silphco_doors.inc │ ├── static_pokemon.inc │ ├── std_msgbox.inc │ ├── surf.inc │ ├── trainer_battle.inc │ ├── trainer_card.inc │ ├── trainer_tower.inc │ ├── trainers.inc │ └── white_out.inc ├── sound_data.s ├── specials.inc ├── text │ ├── aide.inc │ ├── braille.inc │ ├── day_care.inc │ ├── fame_checker.inc │ ├── flavor_text.inc │ ├── help_system.inc │ ├── ingame_trade.inc │ ├── itemfinder.inc │ ├── new_game_intro.inc │ ├── obtain_item.inc │ ├── pc.inc │ ├── pc_transfer.inc │ ├── poke_mart.inc │ ├── pokedex_rating.inc │ ├── pokedude.inc │ ├── route23.inc │ ├── safari_zone.inc │ ├── save.inc │ ├── seagallop.inc │ ├── sign_lady.inc │ ├── surf.inc │ ├── trainer_card.inc │ ├── trainers.inc │ └── white_out.inc └── tilesets │ ├── primary │ ├── 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 │ └── general │ │ ├── anim │ │ ├── flower │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ ├── sandwatersedge │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ │ └── water_current_landwatersedge │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ │ ├── metatile_attributes.bin │ │ ├── metatiles.bin │ │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ │ └── tiles.png │ └── secondary │ ├── battlefrontier │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ └── 12.pal │ └── tiles.png │ ├── battlefrontieroutsideeast │ ├── anim │ │ ├── flag │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ └── flower │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ └── 12.pal │ └── tiles.png │ ├── battlefrontieroutsidewest │ ├── anim │ │ ├── flag │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ └── flower │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ └── 12.pal │ └── tiles.png │ ├── battlefrontierrankinghall │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ └── 12.pal │ └── tiles.png │ ├── berry_forest │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── bike_shop │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── burgled_house │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── cable_club │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── cave │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── celadon_city │ ├── anim │ │ └── fountain │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── celadon_gym │ ├── anim │ │ └── flowers │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── cerulean_cave │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── cerulean_city │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── cerulean_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── cinnabar_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── cinnabar_island │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── condominiums │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── department_store │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── digletts_cave │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── dummy_1 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── dummy_2 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── dummy_3 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── dummy_4 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── fan_club_daycare │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── fuchsia_city │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── fuchsia_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── game_corner │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── generic_building_1 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── generic_building_2 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── hall_of_fame │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── hoenn_building │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── indigo_plateau │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── 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 │ ├── lavender_town │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── mart │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── mt_ember │ ├── anim │ │ └── steam │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── museum │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── 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 │ ├── pallet_town │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pewter_city │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pewter_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pokemon_center │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pokemon_league │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pokemon_mansion │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── pokemon_tower │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── power_plant │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── restaurant_hotel │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── rock_tunnel │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── safari_zone_building │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── saffron_city │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── saffron_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── school │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── sea_cottage │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── seafoam_islands │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── sevii_islands_123 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── sevii_islands_45 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── sevii_islands_67 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── seviiislands5 │ ├── anim │ │ └── mossdeep_tree_base │ │ │ ├── 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 │ ├── seviiislands6 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── silph_co │ ├── anim │ │ └── fountain │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── metatile_attributes.bin │ └── metatiles.bin │ ├── ss_anne │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── tanoby_ruins │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── trainer_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 │ ├── underground_path │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── underwater │ ├── anim │ │ └── seaweed │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── unused_gatehouse_1 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── unused_gatehouse_2 │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── vermilion_city │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── vermilion_gym │ ├── anim │ │ └── motorizeddoor │ │ │ ├── 0.png │ │ │ └── 1.png │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── viridian_city │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ ├── viridian_forest │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ │ ├── 00.pal │ │ ├── 01.pal │ │ ├── 02.pal │ │ ├── 03.pal │ │ ├── 04.pal │ │ ├── 05.pal │ │ ├── 06.pal │ │ ├── 07.pal │ │ ├── 08.pal │ │ ├── 09.pal │ │ ├── 10.pal │ │ ├── 11.pal │ │ ├── 12.pal │ │ ├── 13.pal │ │ ├── 14.pal │ │ └── 15.pal │ └── tiles.png │ └── viridian_gym │ ├── metatile_attributes.bin │ ├── metatiles.bin │ ├── palettes │ ├── 00.pal │ ├── 01.pal │ ├── 02.pal │ ├── 03.pal │ ├── 04.pal │ ├── 05.pal │ ├── 06.pal │ ├── 07.pal │ ├── 08.pal │ ├── 09.pal │ ├── 10.pal │ ├── 11.pal │ ├── 12.pal │ ├── 13.pal │ ├── 14.pal │ └── 15.pal │ └── tiles.png ├── docs ├── bugs_and_glitches.md └── legacy_WSL1_INSTALL.md ├── firered.sha1 ├── firered_rev1.sha1 ├── graphics ├── battle_anims │ ├── backgrounds │ │ ├── attract.bin │ │ ├── attract.png │ │ ├── aurora.bin │ │ ├── aurora.png │ │ ├── bug.pal │ │ ├── cosmic.bin │ │ ├── cosmic.png │ │ ├── dark.bin │ │ ├── dark.png │ │ ├── drill.bin │ │ ├── drill.png │ │ ├── drill_contests.bin │ │ ├── fissure.bin │ │ ├── fissure.png │ │ ├── fog.bin │ │ ├── ghost.bin │ │ ├── ghost.png │ │ ├── guillotine.png │ │ ├── guillotine_contests.bin │ │ ├── guillotine_opponent.bin │ │ ├── guillotine_player.bin │ │ ├── highspeed.png │ │ ├── highspeed_opponent.bin │ │ ├── highspeed_player.bin │ │ ├── ice.bin │ │ ├── ice.png │ │ ├── impact.png │ │ ├── impact_contests.bin │ │ ├── impact_opponent.bin │ │ ├── impact_player.bin │ │ ├── in_air.bin │ │ ├── in_air.png │ │ ├── psychic.bin │ │ ├── psychic.png │ │ ├── sandstorm_brew.bin │ │ ├── sandstorm_brew.png │ │ ├── scary_face.png │ │ ├── scary_face_contest.bin │ │ ├── scary_face_opponent.bin │ │ ├── scary_face_player.bin │ │ ├── sky.pal │ │ ├── solarbeam.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 │ │ ├── stat.png │ │ ├── stat1.pal │ │ ├── stat2.pal │ │ ├── stat3.pal │ │ ├── stat4.pal │ │ ├── stat5.pal │ │ ├── stat6.pal │ │ ├── stat7.pal │ │ ├── stat8.pal │ │ ├── stat_tilemap_1.bin │ │ ├── stat_tilemap_2.bin │ │ ├── unused_level_up.bin │ │ └── unused_level_up.png │ ├── sprites │ │ ├── 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 │ │ ├── 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 │ │ ├── safari_bait.png │ │ ├── sap_drip.png │ │ ├── sap_drip_2.pal │ │ ├── scratch.png │ │ ├── scratch_2.png │ │ ├── scratch_3.png │ │ ├── seed.png │ │ ├── seed_2.png │ │ ├── shadow_ball.png │ │ ├── sharp_teeth.png │ │ ├── shock.png │ │ ├── shock_2.png │ │ ├── shock_3.png │ │ ├── shock_4.png │ │ ├── slam_hit.png │ │ ├── slam_hit_2.png │ │ ├── slash.png │ │ ├── slash_2.pal │ │ ├── sleep_powder.pal │ │ ├── small_bubbles.png │ │ ├── small_ember.png │ │ ├── small_red_eye.png │ │ ├── smellingsalt_effect.png │ │ ├── smoke.png │ │ ├── smoke_2.png │ │ ├── smokescreen_impact.png │ │ ├── snore_z.png │ │ ├── snowball.png │ │ ├── spark.pal │ │ ├── spark_0.png │ │ ├── spark_1.png │ │ ├── spark_2.png │ │ ├── spark_h.png │ │ ├── sparkle_1.png │ │ ├── sparkle_2.pal │ │ ├── sparkle_3.png │ │ ├── sparkle_4.png │ │ ├── sparkle_6.png │ │ ├── speed_dust.png │ │ ├── sphere_to_cube.png │ │ ├── spider_web.png │ │ ├── spikes.png │ │ ├── spinning_fire.png │ │ ├── spinning_green_orbs.png │ │ ├── spiral.png │ │ ├── splash.png │ │ ├── spore.png │ │ ├── spotlight.png │ │ ├── sprout.png │ │ ├── string.png │ │ ├── string_2.png │ │ ├── stun_spore.pal │ │ ├── substitute.bin │ │ ├── substitute.png │ │ ├── sunlight.png │ │ ├── sweat_bead.png │ │ ├── sweat_drop.png │ │ ├── swipe.png │ │ ├── sword.png │ │ ├── sword_2.png │ │ ├── tag_hand.png │ │ ├── teal_alert.png │ │ ├── teeth.png │ │ ├── tendrils.png │ │ ├── thin_ring.png │ │ ├── thought_bubble.png │ │ ├── tied_bag.png │ │ ├── tongue.png │ │ ├── torn_metal.png │ │ ├── toxic_bubble.png │ │ ├── tri_attack_triangle.png │ │ ├── unknown.png │ │ ├── vine.png │ │ ├── vine_2.png │ │ ├── void_lines.png │ │ ├── warm_rock.png │ │ ├── water_column.png │ │ ├── water_droplet.png │ │ ├── water_droplet_2.png │ │ ├── water_impact.png │ │ ├── water_orb.png │ │ ├── waving_hand.png │ │ ├── weather_ball.png │ │ ├── web.png │ │ ├── web_thread.png │ │ ├── whip_hit.pal │ │ ├── whirlwind.png │ │ ├── whirlwind_2.png │ │ ├── whirlwind_lines.png │ │ ├── white_bag.png │ │ ├── white_circle_of_light.pal │ │ ├── white_feather.png │ │ ├── white_shadow.png │ │ ├── wisp_fire.png │ │ ├── wisp_orb.png │ │ ├── x_sign.png │ │ ├── yellow_ball.png │ │ ├── yellow_star.png │ │ ├── yellow_unk.png │ │ ├── yellow_unk_2.png │ │ └── z.png │ └── unused │ │ ├── flying.pal │ │ ├── lights.bin │ │ ├── lights.png │ │ ├── line_sketch_2.bin │ │ ├── line_sketch_2.pal │ │ ├── line_sketch_2.png │ │ ├── spinning_ball.png │ │ ├── spinning_ball_2.pal │ │ ├── unknown.pal │ │ ├── unknown_1.bin │ │ ├── unknown_2.bin │ │ ├── unknown_3.bin │ │ ├── unknown_4.bin │ │ ├── water.bin │ │ └── water.png ├── battle_interface │ ├── enemy_mon_shadow.png │ ├── healthbar.pal │ ├── healthbox.pal │ ├── healthbox_doubles_opponent.png │ ├── healthbox_doubles_player.png │ ├── healthbox_elements.png │ ├── healthbox_safari.png │ ├── healthbox_singles_opponent.png │ ├── healthbox_singles_player.png │ ├── level_up_banner.png │ ├── nuzlocke_indicator.png │ ├── party_summary_bar.png │ ├── textbox.bin │ ├── textbox.png │ ├── textbox1.pal │ ├── textbox2.pal │ ├── unused.png │ ├── unused_window.png │ ├── unused_window2.png │ ├── unused_window2bar.png │ ├── unused_window3.png │ └── unused_window4.png ├── battle_records │ ├── bg_tiles.bin │ └── bg_tiles.png ├── battle_terrain │ ├── building │ │ ├── anim.bin │ │ ├── anim.png │ │ ├── terrain.bin │ │ ├── terrain.pal │ │ └── terrain.png │ ├── cave │ │ ├── anim.bin │ │ ├── anim.png │ │ ├── terrain.bin │ │ ├── terrain.pal │ │ └── terrain.png │ ├── grass │ │ ├── anim.bin │ │ ├── anim.png │ │ ├── terrain.bin │ │ ├── terrain.pal │ │ └── terrain.png │ ├── indoor │ │ ├── 1.pal │ │ ├── 2.pal │ │ ├── agatha.pal │ │ ├── bruno.pal │ │ ├── champion.pal │ │ ├── gym.pal │ │ ├── lance.pal │ │ ├── leader.pal │ │ ├── link.pal │ │ ├── lorelei.pal │ │ ├── plain.pal │ │ ├── terrain.bin │ │ └── terrain.png │ ├── longgrass │ │ ├── anim.bin │ │ ├── anim.png │ │ ├── terrain.bin │ │ ├── terrain.pal │ │ └── terrain.png │ ├── mountain │ │ ├── anim.bin │ │ ├── anim.png │ │ ├── terrain.bin │ │ ├── terrain.pal │ │ └── terrain.png │ ├── pond │ │ ├── anim.bin │ │ ├── anim.png │ │ ├── terrain.bin │ │ ├── terrain.pal │ │ └── terrain.png │ ├── sand │ │ ├── anim.bin │ │ ├── anim.png │ │ ├── terrain.bin │ │ ├── terrain.pal │ │ └── terrain.png │ ├── underwater │ │ ├── anim.bin │ │ ├── anim.png │ │ ├── terrain.bin │ │ ├── terrain.pal │ │ └── terrain.png │ ├── unused │ │ ├── building │ │ │ ├── anim_map.bin │ │ │ ├── anim_tiles.png │ │ │ ├── map.bin │ │ │ ├── palette.pal │ │ │ ├── palette2.pal │ │ │ ├── palette3.pal │ │ │ └── tiles.png │ │ ├── groudon.pal │ │ ├── kyogre.pal │ │ ├── plain.pal │ │ └── stadium │ │ │ ├── battle_frontier.pal │ │ │ ├── map.bin │ │ │ ├── palette1.pal │ │ │ ├── palette2.pal │ │ │ ├── palette3.pal │ │ │ ├── palette4.pal │ │ │ ├── palette5.pal │ │ │ ├── palette6.pal │ │ │ ├── palette7.pal │ │ │ └── tiles.png │ └── water │ │ ├── anim.bin │ │ ├── anim.png │ │ ├── terrain.bin │ │ ├── terrain.pal │ │ └── terrain.png ├── battle_transitions │ ├── agatha_bg.pal │ ├── big_pokeball.png │ ├── big_pokeball_tilemap.bin │ ├── blue_bg.pal │ ├── bruno_bg.pal │ ├── green_bg.pal │ ├── grid_square.png │ ├── lance_bg.pal │ ├── lorelei_bg.pal │ ├── mugshot_banner.png │ ├── red_bg.pal │ ├── sliding_pokeball.bin │ ├── sliding_pokeball.pal │ ├── sliding_pokeball.png │ ├── unused_brendan.png │ ├── unused_lass.png │ ├── unused_trainer.pal │ ├── vs.png │ ├── vs_frame.bin │ ├── vs_frame.png │ └── vsbar_tilemap.bin ├── berry_blender │ ├── center.png │ ├── outer.png │ └── outer_map.bin ├── berry_crush │ ├── bg.bin │ ├── container_cap.bin │ ├── crusher.png │ ├── crusher_base.png │ ├── crusher_top.bin │ ├── impact.png │ ├── sparkle.png │ ├── text_windows.bin │ └── timer_digits.png ├── berry_fix │ ├── gba_small.bin │ ├── gba_small.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 │ ├── window.bin │ └── window.png ├── berry_pouch │ ├── background.bin │ ├── background.png │ ├── background_female.pal │ └── berry_pouch.png ├── cable_car │ ├── bg.pal │ ├── bg.png │ ├── bg_mountains.bin │ ├── cable.png │ ├── cable_car.png │ ├── door.png │ ├── ground.bin │ ├── pylons.bin │ └── trees.bin ├── cave_transition │ ├── black.pal │ ├── enter.pal │ ├── exit.pal │ ├── tilemap.bin │ ├── tiles.png │ └── white.pal ├── contest │ ├── applause.png │ ├── applause_meter.png │ ├── audience.bin │ ├── audience.png │ ├── curtain.bin │ ├── faces.png │ ├── interface.bin │ ├── interface.pal │ ├── interface.png │ ├── japanese │ │ ├── audience.bin │ │ ├── audience.png │ │ ├── bg.bin │ │ ├── classes.png │ │ ├── floor.png │ │ ├── frame_1.png │ │ ├── frame_2.png │ │ ├── interface.bin │ │ ├── interface.png │ │ ├── meter.png │ │ ├── numbers.png │ │ ├── numbers_2.png │ │ ├── palette.pal │ │ ├── results.png │ │ ├── symbols.png │ │ ├── voltage.png │ │ └── windows.bin │ ├── judge.png │ ├── judge_symbols.png │ ├── next_turn.png │ ├── next_turn_numbers.png │ ├── next_turn_random.png │ ├── results.pal │ ├── results_bg.bin │ ├── results_interface.bin │ ├── results_winner_banner.bin │ └── slider_heart.png ├── credits │ ├── blastoise_1.png │ ├── blastoise_2.png │ ├── charizard_1.png │ ├── charizard_2.png │ ├── copyright.bin │ ├── copyright.png │ ├── ground_city.png │ ├── ground_dirt.png │ ├── ground_grass.png │ ├── pikachu_1.png │ ├── pikachu_2.png │ ├── player_female.png │ ├── player_male.png │ ├── pokeball.bin │ ├── pokeball.png │ ├── pokeball_blastoise.pal │ ├── pokeball_charizard.pal │ ├── pokeball_pikachu.pal │ ├── pokeball_venusaur.pal │ ├── rival.png │ ├── the_end.bin │ ├── the_end.png │ ├── venusaur_1.png │ ├── venusaur_2.png │ ├── venusaur_unused.png │ ├── white_circle.bin │ ├── white_circle.pal │ └── white_circle.png ├── diploma │ ├── diploma.bin │ └── diploma.png ├── dodrio_berry_picking │ ├── berries.png │ ├── bg.bin │ ├── bg.pal │ ├── bg.png │ ├── cloud.png │ ├── dodrio.png │ ├── shiny.pal │ ├── status.png │ ├── tree_border.pal │ ├── tree_border.png │ ├── tree_border_left.bin │ └── tree_border_right.bin ├── door_anims │ ├── battle_tower.png │ ├── battle_tower_elevator.png │ ├── cable_club.png │ ├── cerulean.png │ ├── cinnabar_lab.png │ ├── dept_store.png │ ├── dept_store_elevator.png │ ├── four_island_day_care.png │ ├── fuchsia.png │ ├── general.png │ ├── hideout_elevator.png │ ├── joyful_game_corner.png │ ├── lavender.png │ ├── oaks_lab.png │ ├── one_island_poke_center.png │ ├── pallet.png │ ├── pewter.png │ ├── pokemon_fan_club.png │ ├── rocket_warehouse.png │ ├── safari_zone.png │ ├── saffron.png │ ├── sevii_123.png │ ├── sevii_45.png │ ├── sevii_67.png │ ├── silph_co.png │ ├── silph_co_elevator.png │ ├── sliding_double.png │ ├── sliding_single.png │ ├── ss_anne.png │ ├── teleporter.png │ ├── trainer_tower_lobby_elevator.png │ ├── trainer_tower_roof_elevator.png │ ├── unused_bottom.png │ ├── unused_midbottom.png │ ├── unused_midtop.png │ ├── unused_top.png │ ├── vermilion.png │ └── viridian.png ├── easy_chat │ ├── button_window.png │ ├── interview_frame.png │ ├── mode.png │ ├── rectangle_cursor.png │ ├── scroll_indicator.png │ ├── start_select_buttons.png │ ├── text.pal │ ├── text_input_frame.png │ ├── text_input_frame_green.pal │ ├── text_input_frame_orange.pal │ ├── title_text.pal │ ├── triangle_cursor.png │ ├── window.bin │ └── window.png ├── evolution_scene │ ├── bg.bin │ ├── bg.png │ ├── bg2.bin │ ├── gray_transition_intro.pal │ ├── sparkle.png │ ├── transition.pal │ ├── unused.pal │ └── unused_tilemap.bin ├── fame_checker │ ├── bg.png │ ├── bill.png │ ├── cursor.png │ ├── daisy.png │ ├── mr_fuji.png │ ├── prof_oak.png │ ├── question_mark.png │ ├── silhouette.pal │ ├── spinning_pokeball.png │ ├── tilemap1.bin │ ├── tilemap2.bin │ ├── tilemap3.bin │ └── unk.pal ├── field_effects │ ├── fldeff_cut.png │ ├── palettes │ │ ├── ash.pal │ │ ├── general_0.pal │ │ ├── general_1.pal │ │ └── small_sparkle.pal │ └── pics │ │ ├── arrow.png │ │ ├── ash.png │ │ ├── bike_tire_tracks.png │ │ ├── bird.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 │ │ ├── field_move_streaks_indoors.bin │ │ ├── field_move_streaks_indoors.png │ │ ├── field_move_streaks_outdoors.bin │ │ ├── field_move_streaks_outdoors.png │ │ ├── ground_impact_dust.png │ │ ├── hof_monitor.png │ │ ├── hot_springs_water.png │ │ ├── jump_big_splash.png │ │ ├── jump_long_grass.png │ │ ├── jump_small_splash.png │ │ ├── jump_tall_grass.png │ │ ├── lavaridge_warp.png │ │ ├── long_grass.png │ │ ├── mountain_disguise.png │ │ ├── new_game_oak.png │ │ ├── pokeball_glow.png │ │ ├── pokemoncenter_monitor.png │ │ ├── pop_out_of_ash.png │ │ ├── ripple.png │ │ ├── sand_disguise.png │ │ ├── sand_footprints.png │ │ ├── sand_pile.png │ │ ├── shadow_extra_large.png │ │ ├── shadow_large.png │ │ ├── shadow_medium.png │ │ ├── shadow_small.png │ │ ├── short_grass.png │ │ ├── small_sparkle.png │ │ ├── splash.png │ │ ├── tall_grass.png │ │ ├── tree_disguise.png │ │ ├── underwater_bubbles.png │ │ ├── unused_grass.png │ │ ├── unused_grass_2.png │ │ ├── unused_grass_3.png │ │ ├── unused_grass_4.png │ │ ├── unused_sand.png │ │ └── water_surfacing.png ├── field_specials │ ├── champion_room_lighting_0.pal │ ├── champion_room_lighting_1.pal │ ├── champion_room_lighting_2.pal │ ├── champion_room_lighting_3.pal │ ├── champion_room_lighting_4.pal │ ├── champion_room_lighting_5.pal │ ├── champion_room_lighting_6.pal │ ├── champion_room_lighting_7.pal │ ├── champion_room_lighting_8.pal │ ├── deoxys_rock_0.pal │ ├── deoxys_rock_1.pal │ ├── deoxys_rock_10.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 │ ├── elite_four_lighting_0.pal │ ├── elite_four_lighting_1.pal │ ├── elite_four_lighting_10.pal │ ├── elite_four_lighting_11.pal │ ├── elite_four_lighting_2.pal │ ├── elite_four_lighting_3.pal │ ├── elite_four_lighting_4.pal │ ├── elite_four_lighting_5.pal │ ├── elite_four_lighting_6.pal │ ├── elite_four_lighting_7.pal │ ├── elite_four_lighting_8.pal │ └── elite_four_lighting_9.pal ├── fonts │ ├── braille.png │ ├── down_arrow.png │ ├── down_arrow_2.png │ ├── down_arrow_3.png │ ├── down_arrow_4.png │ ├── down_arrow_RS.png │ ├── down_arrow_RS_2.png │ ├── japanese_bold.png │ ├── japanese_female.png │ ├── japanese_male.png │ ├── japanese_normal.png │ ├── japanese_small.png │ ├── japanese_tall.png │ ├── keypad_icons.png │ ├── latin_female.png │ ├── latin_male.png │ ├── latin_normal.png │ └── latin_small.png ├── hall_of_fame │ └── hall_of_fame.png ├── help_system │ ├── bg_tiles.png │ ├── msg_window.png │ └── unused.bin ├── interface │ ├── bag.pal │ ├── bag_female.png │ ├── bag_male.png │ ├── bag_swap.png │ ├── ball │ │ ├── dive.png │ │ ├── great.png │ │ ├── luxury.png │ │ ├── master.png │ │ ├── nest.png │ │ ├── net.png │ │ ├── poke.png │ │ ├── premier.png │ │ ├── repeat.png │ │ ├── safari.png │ │ ├── timer.png │ │ └── ultra.png │ ├── ball_open.png │ ├── blank.pal │ ├── blank.png │ ├── dex_caught_pokeball.pal │ ├── hp_bar_anim.png │ ├── hpbar_unused.png │ ├── learn_move.bin │ ├── learn_move.png │ ├── menu_info.png │ ├── mystery_gift_textbox_border.png │ ├── numbers1.png │ ├── numbers2.png │ ├── pokemon_types.pal │ ├── red_arrow.pal │ ├── red_arrow.png │ ├── red_arrow_other.png │ ├── save_failed_screen.pal │ ├── select_button.png │ ├── selector_outline.png │ ├── status_icons.png │ ├── std_menu.pal │ └── text_pp.pal ├── intro │ ├── copyright.bin │ ├── copyright.pal │ ├── copyright.png │ ├── game_freak │ │ ├── bg.bin │ │ ├── bg.pal │ │ ├── bg.png │ │ ├── game_freak.png │ │ ├── logo.png │ │ ├── presents.png │ │ ├── sparkles.pal │ │ ├── sparkles_big.png │ │ ├── sparkles_small.png │ │ └── star.png │ ├── gengar.pal │ ├── nidorino.pal │ ├── scene_1 │ │ ├── bg.bin │ │ ├── bg.png │ │ ├── grass.bin │ │ └── grass.png │ ├── scene_2 │ │ ├── bg.bin │ │ ├── bg.pal │ │ ├── bg.png │ │ ├── gengar.png │ │ ├── gengar_close.bin │ │ ├── gengar_close.png │ │ ├── nidorino.png │ │ ├── nidorino_close.bin │ │ ├── nidorino_close.pal │ │ ├── nidorino_close.png │ │ ├── plants.bin │ │ └── plants.png │ └── scene_3 │ │ ├── bg.bin │ │ ├── bg.pal │ │ ├── bg.png │ │ ├── gengar_anim.bin │ │ ├── gengar_anim.png │ │ ├── gengar_static.png │ │ ├── grass.png │ │ ├── nidorino.png │ │ ├── recoil_dust.png │ │ └── swipe.png ├── item_menu │ ├── bag_window_pal.pal │ ├── bg.bin │ ├── bg.png │ ├── bg_female.pal │ ├── bg_item_pc.bin │ └── list.bin ├── item_pc │ ├── bg.bin │ └── bg.png ├── itemfinder │ └── spr_tiles.png ├── items │ ├── icon_palettes │ │ ├── acro_bike.pal │ │ ├── aguav_berry.pal │ │ ├── amulet_coin.pal │ │ ├── antidote.pal │ │ ├── apicot_berry.pal │ │ ├── aspear_berry.pal │ │ ├── aurora_ticket.pal │ │ ├── awakening.pal │ │ ├── bead_mail.pal │ │ ├── belue_berry.pal │ │ ├── berry_juice.pal │ │ ├── berry_pouch.pal │ │ ├── bicycle.pal │ │ ├── bike_voucher.pal │ │ ├── black_flute.pal │ │ ├── black_type_enhancing_item.pal │ │ ├── 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 │ │ ├── link_bracelet.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 │ │ ├── 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 │ │ ├── link_bracelet.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_case.png │ │ ├── tm_hm.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 ├── learn_move │ └── interface_sprites.png ├── link │ ├── 321start.png │ ├── test_font.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 ├── main_menu │ ├── bg.pal │ └── textbox.pal ├── map_preview │ ├── altering_cave │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── berry_forest │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── cerulean_cave │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── digletts_cave │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── dotted_hole │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── icefall_cave │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── lost_cave │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── monean_chamber │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── mt_ember │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── mt_moon │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── pokemon_mansion │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── pokemon_tower │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── power_plant │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── rock_tunnel │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── rocket_hideout │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── rocket_warehouse │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── safari_zone │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── seafoam_islands │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── silph_co │ │ ├── tilemap.bin │ │ └── tiles.png │ ├── victory_road │ │ ├── tilemap.bin │ │ └── tiles.png │ └── viridian_forest │ │ ├── tilemap.bin │ │ └── tiles.png ├── misc │ ├── confetti.png │ ├── egg_hatch.png │ ├── egg_shard.png │ ├── emoticons.png │ ├── markings2.png │ ├── minigame_countdown.png │ ├── minigame_digits.png │ ├── minigame_digits_unused.png │ ├── mon_markings.png │ └── option_menu.pal ├── 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 │ ├── rival.png │ └── underscore.png ├── oak_speech │ ├── bg_tiles.png │ ├── controls_guide_page_2.bin │ ├── controls_guide_page_3.bin │ ├── leaf │ │ ├── pal.pal │ │ └── pic.png │ ├── oak │ │ ├── pal.pal │ │ └── pic.png │ ├── oak_speech_bg.bin │ ├── oak_speech_bg.png │ ├── pikachu_intro │ │ ├── body.png │ │ ├── ears.png │ │ ├── eyes.png │ │ ├── pikachu.pal │ │ └── tilemap.bin │ ├── platform.pal │ ├── platform.png │ ├── red │ │ ├── pal.pal │ │ └── pic.png │ └── rival │ │ ├── pal.pal │ │ └── pic.png ├── object_events │ ├── palettes │ │ ├── 22.pal │ │ ├── 23.pal │ │ ├── 839C588.pal │ │ ├── 839D3A8.pal │ │ ├── black_sand_footprints.pal │ │ ├── bridge_reflection.pal │ │ ├── cable_car.pal │ │ ├── lady.pal │ │ ├── meteorite.pal │ │ ├── npc_blue.pal │ │ ├── npc_blue_reflection.pal │ │ ├── npc_green.pal │ │ ├── npc_green_reflection.pal │ │ ├── npc_pink.pal │ │ ├── npc_pink_reflection.pal │ │ ├── npc_white.pal │ │ ├── npc_white_reflection.pal │ │ ├── player.pal │ │ ├── player_reflection.pal │ │ ├── player_unused.pal │ │ ├── rs_quinty_plump.pal │ │ ├── rs_quinty_plump_reflection.pal │ │ ├── seagallop.pal │ │ ├── snow_footprints.pal │ │ ├── ss_anne.pal │ │ ├── three_island_grass.pal │ │ └── underwater_sprites.pal │ └── pics │ │ ├── misc │ │ ├── birth_island_stone.png │ │ ├── cable_car.png │ │ ├── clipboard.png │ │ ├── cut_tree.png │ │ ├── fossil.png │ │ ├── gym_sign.png │ │ ├── item_ball.png │ │ ├── lapras_doll.png │ │ ├── old_amber.png │ │ ├── pokedex.png │ │ ├── rock_smash_rock.png │ │ ├── ruby.png │ │ ├── sapphire.png │ │ ├── seagallop.png │ │ ├── sign.png │ │ ├── ss_anne.png │ │ ├── strength_boulder.png │ │ ├── surf_blob.png │ │ ├── town_map.png │ │ └── wooden_sign.png │ │ ├── people │ │ ├── agatha.png │ │ ├── anabel.png │ │ ├── aroma_lady.png │ │ ├── balding_man.png │ │ ├── battle_girl.png │ │ ├── beauty.png │ │ ├── biker.png │ │ ├── bill.png │ │ ├── bird_keeper.png │ │ ├── blackbelt.png │ │ ├── blaine.png │ │ ├── blue.png │ │ ├── boy.png │ │ ├── brandon.png │ │ ├── brock.png │ │ ├── bruno.png │ │ ├── bug_catcher.png │ │ ├── burglar.png │ │ ├── cable_club_receptionist.png │ │ ├── cameraman.png │ │ ├── camper.png │ │ ├── captain.png │ │ ├── celio.png │ │ ├── channeler.png │ │ ├── chef.png │ │ ├── clerk.png │ │ ├── cooltrainer_f.png │ │ ├── cooltrainer_m.png │ │ ├── cue_ball.png │ │ ├── daisy.png │ │ ├── em_brendan.png │ │ ├── em_may.png │ │ ├── engineer.png │ │ ├── erika.png │ │ ├── fat_man.png │ │ ├── fisher.png │ │ ├── gba_kid.png │ │ ├── gentleman.png │ │ ├── giovanni.png │ │ ├── green_bike.png │ │ ├── green_fish.png │ │ ├── green_item.png │ │ ├── green_normal.png │ │ ├── green_surf.png │ │ ├── green_surf_run.png │ │ ├── green_underwater.png │ │ ├── green_vs_seeker_bike.png │ │ ├── greta.png │ │ ├── gym_guy.png │ │ ├── hiker.png │ │ ├── juggler.png │ │ ├── koga.png │ │ ├── lady.png │ │ ├── lance.png │ │ ├── lass.png │ │ ├── little_boy.png │ │ ├── little_girl.png │ │ ├── lorelei.png │ │ ├── lt_surge.png │ │ ├── lucy.png │ │ ├── man.png │ │ ├── master_beauty.png │ │ ├── master_bird_keeper.png │ │ ├── master_blackbelt.png │ │ ├── master_bug_catcher.png │ │ ├── master_cooltrainer_m.png │ │ ├── master_hiker.png │ │ ├── master_lass.png │ │ ├── master_psychic_m.png │ │ ├── master_scientist.png │ │ ├── master_youngster.png │ │ ├── mg_deliveryman.png │ │ ├── misty.png │ │ ├── mom.png │ │ ├── mr_fuji.png │ │ ├── noland.png │ │ ├── nurse.png │ │ ├── old_man_1.png │ │ ├── old_man_2.png │ │ ├── old_man_lying_down.png │ │ ├── old_woman.png │ │ ├── painter.png │ │ ├── picnicker.png │ │ ├── pokemaniac.png │ │ ├── pokemon_breeder.png │ │ ├── pokemon_ranger_f.png │ │ ├── pokemon_ranger_m.png │ │ ├── policeman.png │ │ ├── prof_oak.png │ │ ├── psychic_f.png │ │ ├── psychic_m.png │ │ ├── red_bike.png │ │ ├── red_fish.png │ │ ├── red_item.png │ │ ├── red_normal.png │ │ ├── red_surf.png │ │ ├── red_surf_run.png │ │ ├── red_underwater.png │ │ ├── red_vs_seeker_bike.png │ │ ├── rich_boy.png │ │ ├── rocker.png │ │ ├── rocker_2.png │ │ ├── rocket_f.png │ │ ├── rocket_m.png │ │ ├── rs_brendan.png │ │ ├── rs_may.png │ │ ├── ruin_maniac.png │ │ ├── sabrina.png │ │ ├── sailor.png │ │ ├── scientist.png │ │ ├── scott.png │ │ ├── sitting_boy.png │ │ ├── spenser.png │ │ ├── super_nerd.png │ │ ├── swimmer_f_land.png │ │ ├── swimmer_f_water.png │ │ ├── swimmer_f_water_2.png │ │ ├── swimmer_m_land.png │ │ ├── swimmer_m_water.png │ │ ├── tamer.png │ │ ├── teachy_tv_host.png │ │ ├── trainer_tower_dude.png │ │ ├── tuber_f.png │ │ ├── tuber_m_land.png │ │ ├── tuber_m_water.png │ │ ├── tucker.png │ │ ├── twin.png │ │ ├── union_room_receptionist.png │ │ ├── unused_male_receptionist.png │ │ ├── unused_man.png │ │ ├── unused_woman.png │ │ ├── woman_1.png │ │ ├── woman_2.png │ │ ├── woman_3.png │ │ ├── worker_f.png │ │ ├── worker_m.png │ │ ├── young_couple_f.png │ │ ├── young_couple_m.png │ │ └── youngster.png │ │ ├── pokemon │ │ ├── abra.png │ │ ├── articuno.png │ │ ├── bulbasaur.png │ │ ├── celebi.png │ │ ├── chansey.png │ │ ├── charmander.png │ │ ├── clefairy.png │ │ ├── cubone.png │ │ ├── deoxys_a.png │ │ ├── deoxys_d.png │ │ ├── deoxys_n.png │ │ ├── doduo.png │ │ ├── entei.png │ │ ├── fearow.png │ │ ├── ho_oh.png │ │ ├── jigglypuff.png │ │ ├── kabuto.png │ │ ├── kangaskhan.png │ │ ├── lapras.png │ │ ├── latias.png │ │ ├── latios.png │ │ ├── lugia.png │ │ ├── machoke.png │ │ ├── machop.png │ │ ├── meowth.png │ │ ├── mew.png │ │ ├── mewtwo.png │ │ ├── moltres.png │ │ ├── nidoran_f.png │ │ ├── nidoran_m.png │ │ ├── nidorino.png │ │ ├── omanyte.png │ │ ├── pidgeot.png │ │ ├── pidgey.png │ │ ├── pikachu.png │ │ ├── poliwrath.png │ │ ├── psyduck.png │ │ ├── raikou.png │ │ ├── seel.png │ │ ├── slowbro.png │ │ ├── slowpoke.png │ │ ├── snorlax.png │ │ ├── spearow.png │ │ ├── squirtle.png │ │ ├── sudowoodo.png │ │ ├── suicune.png │ │ ├── voltorb.png │ │ ├── wigglytuff.png │ │ └── zapdos.png │ │ └── unknown │ │ └── SevenIsland_Grass.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 ├── pokedex │ ├── area_markers │ │ ├── marker.pal │ │ ├── marker_0.png │ │ ├── marker_1.png │ │ ├── marker_2.png │ │ ├── marker_3.png │ │ ├── marker_4.png │ │ ├── marker_5.png │ │ └── marker_6.png │ ├── blit_wide_ellipse.png │ ├── cat_icon_abc.png │ ├── cat_icon_cancel.png │ ├── cat_icon_cave.png │ ├── cat_icon_forest.png │ ├── cat_icon_grassland.png │ ├── cat_icon_lightest.png │ ├── cat_icon_mountain.png │ ├── cat_icon_numerical.png │ ├── cat_icon_qmark.png │ ├── cat_icon_rare.png │ ├── cat_icon_rough_terrain.png │ ├── cat_icon_sea.png │ ├── cat_icon_smallest.png │ ├── cat_icon_type.png │ ├── cat_icon_urban.png │ ├── cat_icon_waters_edge.png │ ├── caught_marker.png │ ├── kanto_dex_bgpals.pal │ ├── kanto_dex_bgtiles.png │ ├── map_five_island.png │ ├── map_four_island.png │ ├── map_kanto.png │ ├── map_one_island.png │ ├── map_seven_island.png │ ├── map_six_island.png │ ├── map_three_island.png │ ├── map_two_island.png │ ├── mini_page.png │ ├── national_dex_bgpals.pal │ ├── national_dex_bgtiles.png │ ├── page_icon_tilemap.bin │ └── silhouette_sprite_pal.pal ├── pokemon │ ├── abra │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── absol │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aerodactyl │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aggron │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aipom │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alakazam │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── altaria │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ampharos │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── anorith │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arbok │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arcanine │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ariados │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── armaldo │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aron │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── articuno │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── azumarill │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── azurill │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bagon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── baltoy │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── banette │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── barboach │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bayleef │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beautifly │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beedrill │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beldum │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bellossom │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bellsprout │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blastoise │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blaziken │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blissey │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── breloom │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bulbasaur │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── butterfree │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cacnea │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cacturne │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── camerupt │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── carvanha │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cascoon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── castform │ │ ├── footprint.png │ │ ├── icon.png │ │ ├── normal │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── rainy │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── snowy │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ └── sunny │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ ├── caterpie │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── celebi │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chansey │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charizard │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charmander │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charmeleon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chikorita │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chimecho │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chinchou │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clamperl │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── claydol │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clefable │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clefairy │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cleffa │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cloyster │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── combusken │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corphish │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corsola │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cradily │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crawdaunt │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crobat │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── croconaw │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cubone │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cyndaquil │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── delcatty │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── delibird │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── deoxys │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── icon_attack.png │ │ ├── icon_defense.png │ │ ├── icon_speed.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dewgong │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── diglett │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ditto │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dodrio │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── doduo │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── donphan │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragonair │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragonite │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dratini │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drowzee │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dugtrio │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dunsparce │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dusclops │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── duskull │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dustox │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── eevee │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── egg │ │ ├── front.png │ │ ├── icon.png │ │ └── normal.pal │ ├── ekans │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electabuzz │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electrike │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electrode │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── elekid │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── entei │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── espeon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggcute │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggutor │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exploud │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── farfetchd │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── fearow │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── feebas │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── feraligatr │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flaaffy │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flareon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flygon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── forretress │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── furret │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gardevoir │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gastly │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gengar │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── geodude │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ghost │ │ └── front.png │ ├── girafarig │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── glalie │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gligar │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gloom │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golbat │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── goldeen │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golduck │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golem │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gorebyss │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── granbull │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── graveler │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grimer │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── groudon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grovyle │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── growlithe │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grumpig │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gulpin │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gyarados │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hariyama │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── haunter │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── heracross │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── unk_icon.png │ ├── hitmonchan │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmonlee │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmontop │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ ├── shiny.pal │ │ └── unused_garbage.bin │ ├── ho_oh │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hoothoot │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hoppip │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── horsea │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── houndoom │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── houndour │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── huntail │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hypno │ │ ├── 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 │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── illumise │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ivysaur │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jigglypuff │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jirachi │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jolteon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jumpluff │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jynx │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kabuto │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kabutops │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kadabra │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kakuna │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kangaskhan │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kecleon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kingdra │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kingler │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kirlia │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── koffing │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── krabby │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kyogre │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lairon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lanturn │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lapras │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── larvitar │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── latias │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── latios │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ledian │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ledyba │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lickitung │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lileep │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── linoone │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lombre │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lotad │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── loudred │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ludicolo │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lugia │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lunatone │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── luvdisc │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machamp │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machoke │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machop │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magby │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magcargo │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magikarp │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magmar │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magnemite │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magneton │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── makuhita │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── manectric │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mankey │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mantine │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mareep │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marill │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marowak │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marshtomp │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── masquerain │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mawile │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── medicham │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meditite │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meganium │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meowth │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── metagross │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── metang │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── metapod │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mew │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mewtwo │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mightyena │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── milotic │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── miltank │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── minun │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── misdreavus │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── moltres │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mr_mime │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mudkip │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── muk │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── murkrow │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── natu │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoking │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoqueen │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoran_f │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoran_m │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidorina │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidorino │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nincada │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ninetales │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ninjask │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── noctowl │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nosepass │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── numel │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nuzleaf │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── octillery │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── oddish │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── omanyte │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── omastar │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── onix │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── paras │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── parasect │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pelipper │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── persian │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── phanpy │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pichu │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgeot │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgeotto │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgey │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pikachu │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── piloswine │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pineco │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pinsir │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── plusle │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── politoed │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwag │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwhirl │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwrath │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ponyta │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poochyena │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── porygon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── porygon2 │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── primeape │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── psyduck │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pupitar │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── quagsire │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── question_mark │ │ ├── circled │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── double │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── normal.pal │ │ │ └── shiny.pal │ │ ├── footprint.png │ │ └── icon.png │ ├── quilava │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── qwilfish │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raichu │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raikou │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ralts │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rapidash │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raticate │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rattata │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rayquaza │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── regice │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── regirock │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── registeel │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── relicanth │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── remoraid │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rhydon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rhyhorn │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── roselia │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sableye │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── salamence │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandshrew │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandslash │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sceptile │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scizor │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scyther │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seadra │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seaking │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sealeo │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seedot │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seel │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sentret │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seviper │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sharpedo │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shedinja │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shelgon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shellder │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shiftry │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shroomish │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shuckle │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shuppet │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── silcoon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skarmory │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skiploom │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skitty │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slaking │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slakoth │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowbro │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowking │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowpoke │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slugma │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── smeargle │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── smoochum │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sneasel │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snorlax │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snorunt │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snubbull │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── solrock │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spearow │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spheal │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spinarak │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spinda │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spoink │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── squirtle │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── stantler │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── starmie │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── staryu │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── steelix │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sudowoodo │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── suicune │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sunflora │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sunkern │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── surskit │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swablu │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swalot │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swampert │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swellow │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swinub │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── taillow │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tangela │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tauros │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── teddiursa │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tentacool │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tentacruel │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togepi │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togetic │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── torchic │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── torkoal │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── totodile │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── trapinch │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── treecko │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tropius │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── typhlosion │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tyranitar │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tyrogue │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── umbreon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── unown │ │ ├── a │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── b │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── c │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── d │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── e │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── exclamation_mark │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── f │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── footprint.png │ │ ├── g │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── h │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── i │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── j │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── k │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── l │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── m │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── n │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── normal.pal │ │ ├── o │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── p │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── q │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── question_mark │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── r │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── s │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── shiny.pal │ │ ├── t │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── u │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── v │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── w │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── x │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ ├── y │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ │ └── z │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ └── icon.png │ ├── ursaring │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vaporeon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venomoth │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venonat │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venusaur │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vibrava │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── victreebel │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vigoroth │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vileplume │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── volbeat │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── voltorb │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vulpix │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wailmer │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wailord │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── walrein │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wartortle │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weedle │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weepinbell │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weezing │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── whiscash │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── whismur │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wigglytuff │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wingull │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wobbuffet │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wooper │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wurmple │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wynaut │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── xatu │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── yanma │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zangoose │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zapdos │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zigzagoon │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal │ └── zubat │ │ ├── back.png │ │ ├── footprint.png │ │ ├── front.png │ │ ├── icon.png │ │ ├── normal.pal │ │ └── shiny.pal ├── pokemon_jump │ ├── bg.bin │ ├── bg.pal │ ├── bg.png │ ├── bonuses.bin │ ├── bonuses.pal │ ├── bonuses.png │ ├── interface.pal │ ├── pal1.pal │ ├── pal2.pal │ ├── star.png │ ├── venusaur.bin │ ├── venusaur.pal │ ├── venusaur.png │ ├── vine1.png │ ├── vine2.png │ ├── vine3.png │ └── vine4.png ├── pokemon_special_anim │ ├── bg.bin │ ├── bg.pal │ ├── bg.png │ ├── bg_tm_hm.pal │ ├── level_up.png │ ├── outward_spiral_dots.png │ └── star.png ├── pokemon_storage │ ├── box_scroll_arrow.png │ ├── choose_box_menu_center.png │ ├── choose_box_menu_corners.png │ ├── close_box_button.bin │ ├── cursor.png │ ├── cursor_shadow.png │ ├── interface.pal │ ├── interface_no_display_mon.pal │ ├── item_info_frame.png │ ├── menu.bin │ ├── menu.pal │ ├── menu.png │ ├── misc1.pal │ ├── misc2.pal │ ├── party_menu.bin │ ├── party_menu.pal │ ├── party_slot_empty.bin │ ├── party_slot_filled.bin │ ├── pkmn_data.bin │ ├── scrolling_bg.bin │ ├── scrolling_bg.png │ ├── scrolling_bg_move_items.pal │ ├── unused.pal │ ├── unused_choose_box_menu.pal │ ├── wallpapers │ │ ├── beach │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── cave │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── city │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── crag │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── desert │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── forest │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── pokecenter │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── river │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── savanna │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── seafloor │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── simple │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── sky │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── snow │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── stars │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── tiles │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ │ ├── unused.bin │ │ └── volcano │ │ │ ├── tilemap.bin │ │ │ └── tiles.png │ └── waveform.png ├── quest_log │ └── description_window.png ├── region_map │ ├── background.bin │ ├── background.png │ ├── cursor.pal │ ├── cursor.png │ ├── dungeon_icon.png │ ├── fly_icon.png │ ├── hoenn.bin │ ├── kanto.bin │ ├── map_edge.bin │ ├── map_edge.png │ ├── map_edge_bottom_left.png │ ├── map_edge_bottom_right.png │ ├── map_edge_mid_left.png │ ├── map_edge_mid_right.png │ ├── map_edge_top_left.png │ ├── map_edge_top_right.png │ ├── misc_icon.pal │ ├── player_icon_leaf.pal │ ├── player_icon_leaf.png │ ├── player_icon_red.pal │ ├── player_icon_red.png │ ├── region_map.pal │ ├── region_map.png │ ├── region_map_hoenn.pal │ ├── region_map_hoenn.png │ ├── sevii_123.bin │ ├── sevii_45.bin │ ├── sevii_67.bin │ ├── switch_map_cursor.pal │ ├── switch_map_cursor_left.png │ ├── switch_map_cursor_right.png │ ├── switch_map_kanto_sevii_123.bin │ ├── switch_map_kanto_sevii_all.bin │ ├── switch_map_kanto_sevii_all2.bin │ ├── switch_map_menu.png │ └── top_bar.pal ├── script_menu │ ├── aerodactyl_fossil.png │ └── kabutops_fossil.png ├── seagallop │ ├── eb_tilemap.bin │ ├── ferry_and_wake.pal │ ├── ferry_sprite.png │ ├── wake.png │ ├── water.png │ └── wb_tilemap.bin ├── shop_menu │ ├── shop_menu.png │ ├── shop_tilemap.bin │ └── shop_tm_hm_tilemap.bin ├── slot_machine │ ├── digits.png │ ├── firered │ │ ├── bg.bin │ │ ├── bg.png │ │ ├── button_pressed.png │ │ ├── clefairy.png │ │ ├── combos_window.bin │ │ ├── combos_window.png │ │ ├── match_lines.pal │ │ ├── payout_lights.pal │ │ └── reel_icons.png │ └── leafgreen │ │ ├── bg.bin │ │ ├── bg.png │ │ ├── button_pressed.png │ │ ├── clefairy.png │ │ ├── combos_window.bin │ │ ├── combos_window.png │ │ ├── match_lines.pal │ │ ├── payout_lights.pal │ │ └── reel_icons.png ├── spinda_spots │ ├── spot_0.bin │ ├── spot_1.bin │ ├── spot_2.bin │ └── spot_3.bin ├── ss_anne │ ├── smoke.png │ └── wake.png ├── summary_screen │ ├── bg.png │ ├── exp_bar.png │ ├── hp_bar.png │ ├── hp_bar_red.pal │ ├── hp_bar_yellow.pal │ ├── marking.pal │ ├── move_selection_cursor.pal │ ├── move_selection_cursor_left.png │ ├── move_selection_cursor_right.png │ ├── moves_info_page.bin │ ├── moves_page.bin │ ├── page_egg.bin │ ├── page_info.bin │ ├── page_moves.bin │ ├── page_moves_info.bin │ ├── page_skills.bin │ ├── pokerus_cured.png │ ├── shiny_star.png │ ├── status_ailment_icons.png │ ├── text_header.pal │ └── text_moves.pal ├── teachy_tv │ ├── border.png │ ├── palettes.pal │ ├── screen.bin │ ├── tiles.png │ └── title.bin ├── text_window │ ├── frame11.png │ ├── menu_message.png │ ├── quest_log.png │ ├── signpost.png │ ├── std.png │ ├── stdpal_0.pal │ ├── stdpal_1.pal │ ├── stdpal_2.pal │ ├── stdpal_3.pal │ ├── stdpal_4.pal │ ├── type1.png │ ├── type10.png │ ├── type2.png │ ├── type3.png │ ├── type4.png │ ├── type5.png │ ├── type6.png │ ├── type7.png │ ├── type8.png │ ├── type9.png │ └── unused.png ├── title_screen │ ├── blank_sprite.png │ ├── border_bg.png │ ├── copyright_press_start.bin │ ├── copyright_press_start.png │ ├── firered │ │ ├── background.pal │ │ ├── blank_flames.png │ │ ├── border_bg.bin │ │ ├── box_art_mon.bin │ │ ├── box_art_mon.pal │ │ ├── box_art_mon.png │ │ ├── flames.png │ │ ├── game_title_logo.bin │ │ ├── game_title_logo.pal │ │ ├── game_title_logo.png │ │ └── slash.pal │ ├── leafgreen │ │ ├── background.pal │ │ ├── border_bg.bin │ │ ├── box_art_mon.bin │ │ ├── box_art_mon.pal │ │ ├── box_art_mon.png │ │ ├── game_title_logo.bin │ │ ├── game_title_logo.pal │ │ ├── game_title_logo.png │ │ ├── leaves.png │ │ ├── slash.pal │ │ └── streak.png │ ├── slash.png │ ├── unused1.bin │ ├── unused2.bin │ ├── unused3.bin │ ├── unused4.bin │ ├── unused5.bin │ └── unused6.bin ├── tm_case │ ├── disc.png │ ├── disc_types_1.pal │ ├── disc_types_2.pal │ ├── hm.png │ ├── menu.bin │ ├── menu_female.pal │ ├── menu_male.pal │ ├── tm_case.bin │ └── tm_case.png ├── trade │ ├── black.pal │ ├── cable_closeup_map.bin │ ├── cable_end.png │ ├── 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.png │ ├── menu.bin │ ├── menu.pal │ ├── menu.png │ ├── menu_mon_box.bin │ ├── moves_box_map.bin │ ├── party_box_map.bin │ ├── pokeball.png │ ├── pokeball_symbol.png │ ├── pokeball_symbol_map.bin │ ├── shadow.pal │ ├── shadow_map.bin │ ├── stripes_bg2_map.bin │ ├── stripes_bg3_map.bin │ ├── text.pal │ ├── unused.bin │ ├── unused1.pal │ ├── wireless_signal.bin │ ├── wireless_signal.png │ ├── wireless_signal_closeup.bin │ ├── wireless_signal_receive.pal │ └── wireless_signal_send.pal ├── trainer_card │ ├── back.bin │ ├── badges.png │ ├── bg.bin │ ├── blue.pal │ ├── bronze.pal │ ├── female_bg.pal │ ├── front.bin │ ├── front_link.bin │ ├── gold.pal │ ├── green.pal │ ├── rse │ │ ├── back.bin │ │ ├── badges.png │ │ ├── bg.bin │ │ ├── bronze.pal │ │ ├── copper.pal │ │ ├── female_bg.pal │ │ ├── front.bin │ │ ├── front_link.bin │ │ ├── gold.pal │ │ ├── green.pal │ │ ├── silver.pal │ │ └── tiles.png │ ├── silver.pal │ ├── star.pal │ ├── stickers.png │ ├── stickers1.pal │ ├── stickers2.pal │ ├── stickers3.pal │ ├── stickers4.pal │ ├── tiles.png │ └── unused.pal ├── trainers │ ├── back_pics │ │ ├── emerald_brendan_back_pic.png │ │ ├── emerald_may_back_pic.png │ │ ├── leaf_back_pic.png │ │ ├── old_man_back_pic.png │ │ ├── pokedude_back_pic.png │ │ ├── red_back_pic.png │ │ ├── ruby_sapphire_brendan_back_pic.png │ │ └── ruby_sapphire_may_back_pic.png │ ├── front_pics │ │ ├── aqua_admin_f_front_pic.png │ │ ├── aqua_admin_m_front_pic.png │ │ ├── aqua_grunt_f_front_pic.png │ │ ├── aqua_grunt_m_front_pic.png │ │ ├── aqua_leader_archie_front_pic.png │ │ ├── aroma_lady_front_pic.png │ │ ├── battle_girl_front_pic.png │ │ ├── beauty_front_pic.png │ │ ├── biker_front_pic.png │ │ ├── bird_keeper_front_pic.png │ │ ├── black_belt_front_pic.png │ │ ├── bug_catcher_front_pic.png │ │ ├── bug_maniac_front_pic.png │ │ ├── burglar_front_pic.png │ │ ├── camper_front_pic.png │ │ ├── champion_rival_front_pic.png │ │ ├── champion_steven_front_pic.png │ │ ├── channeler_front_pic.png │ │ ├── collector_front_pic.png │ │ ├── cool_couple_front_pic.png │ │ ├── cool_trainer_f_front_pic.png │ │ ├── cool_trainer_m_front_pic.png │ │ ├── crush_girl_front_pic.png │ │ ├── crush_kin_front_pic.png │ │ ├── cue_ball_front_pic.png │ │ ├── cycling_triathlete_f_front_pic.png │ │ ├── cycling_triathlete_m_front_pic.png │ │ ├── dragon_tamer_front_pic.png │ │ ├── elite_four_agatha_front_pic.png │ │ ├── elite_four_bruno_front_pic.png │ │ ├── elite_four_drake_front_pic.png │ │ ├── elite_four_glacia_front_pic.png │ │ ├── elite_four_lance_front_pic.png │ │ ├── elite_four_lorelei_front_pic.png │ │ ├── elite_four_phoebe_front_pic.png │ │ ├── elite_four_sidney_front_pic.png │ │ ├── emerald_brendan_front_pic.png │ │ ├── emerald_may_front_pic.png │ │ ├── engineer_front_pic.png │ │ ├── expert_f_front_pic.png │ │ ├── expert_m_front_pic.png │ │ ├── fisherman_front_pic.png │ │ ├── gamer_front_pic.png │ │ ├── gentleman_front_pic.png │ │ ├── guitarist_front_pic.png │ │ ├── hex_maniac_front_pic.png │ │ ├── hiker_front_pic.png │ │ ├── interviewer_front_pic.png │ │ ├── juggler_front_pic.png │ │ ├── kindler_front_pic.png │ │ ├── lady_front_pic.png │ │ ├── lass_front_pic.png │ │ ├── leader_blaine_front_pic.png │ │ ├── leader_brawly_front_pic.png │ │ ├── leader_brock_front_pic.png │ │ ├── leader_erika_front_pic.png │ │ ├── leader_flannery_front_pic.png │ │ ├── leader_giovanni_front_pic.png │ │ ├── leader_koga_front_pic.png │ │ ├── leader_lt_surge_front_pic.png │ │ ├── leader_misty_front_pic.png │ │ ├── leader_norman_front_pic.png │ │ ├── leader_roxanne_front_pic.png │ │ ├── leader_sabrina_front_pic.png │ │ ├── leader_tate_and_liza_front_pic.png │ │ ├── leader_wallace_front_pic.png │ │ ├── leader_wattson_front_pic.png │ │ ├── leader_winona_front_pic.png │ │ ├── leaf_front_pic.png │ │ ├── magma_admin_f_front_pic.png │ │ ├── magma_admin_m_front_pic.png │ │ ├── magma_grunt_f_front_pic.png │ │ ├── magma_grunt_m_front_pic.png │ │ ├── magma_leader_maxie_front_pic.png │ │ ├── master_beauty_front_pic.png │ │ ├── master_bird_keeper_front_pic.png │ │ ├── master_black_belt_front_pic.png │ │ ├── master_bug_catcher_front_pic.png │ │ ├── master_cool_trainer_m_front_pic.png │ │ ├── master_hiker_front_pic.png │ │ ├── master_lass_front_pic.png │ │ ├── master_psychic_m_front_pic.png │ │ ├── master_scientist_front_pic.png │ │ ├── master_swimmer_front_pic.png │ │ ├── master_youngster_front_pic.png │ │ ├── ninja_boy_front_pic.png │ │ ├── old_couple_front_pic.png │ │ ├── painter_front_pic.png │ │ ├── parasol_lady_front_pic.png │ │ ├── picnicker_front_pic.png │ │ ├── pokefan_f_front_pic.png │ │ ├── pokefan_m_front_pic.png │ │ ├── pokemaniac_front_pic.png │ │ ├── pokemon_breeder_front_pic.png │ │ ├── pokemon_ranger_f_front_pic.png │ │ ├── pokemon_ranger_m_front_pic.png │ │ ├── professor_oak_front_pic.png │ │ ├── psychic_f_front_pic.png │ │ ├── psychic_m_front_pic.png │ │ ├── red_front_pic.png │ │ ├── rich_boy_front_pic.png │ │ ├── rival_early_front_pic.png │ │ ├── rival_late_front_pic.png │ │ ├── rocker_front_pic.png │ │ ├── rocket_grunt_f_front_pic.png │ │ ├── rocket_grunt_m_front_pic.png │ │ ├── rs_aroma_lady_front_pic.png │ │ ├── rs_beauty_front_pic.png │ │ ├── rs_bird_keeper_front_pic.png │ │ ├── rs_black_belt_front_pic.png │ │ ├── rs_bug_catcher_front_pic.png │ │ ├── rs_camper_front_pic.png │ │ ├── rs_cool_trainer_f_front_pic.png │ │ ├── rs_cool_trainer_m_front_pic.png │ │ ├── rs_fisherman_front_pic.png │ │ ├── rs_gentleman_front_pic.png │ │ ├── rs_hiker_front_pic.png │ │ ├── rs_lady_front_pic.png │ │ ├── rs_lass_front_pic.png │ │ ├── rs_picnicker_front_pic.png │ │ ├── rs_pokemaniac_front_pic.png │ │ ├── rs_pokemon_breeder_f_front_pic.png │ │ ├── rs_pokemon_breeder_m_front_pic.png │ │ ├── rs_pokemon_ranger_f_front_pic.png │ │ ├── rs_pokemon_ranger_m_front_pic.png │ │ ├── rs_psychic_f_front_pic.png │ │ ├── rs_psychic_m_front_pic.png │ │ ├── rs_ruin_maniac_front_pic.png │ │ ├── rs_sailor_front_pic.png │ │ ├── rs_sis_and_bro_front_pic.png │ │ ├── rs_swimmer_f_front_pic.png │ │ ├── rs_swimmer_m_front_pic.png │ │ ├── rs_tuber_f_front_pic.png │ │ ├── rs_twins_front_pic.png │ │ ├── rs_young_couple_front_pic.png │ │ ├── rs_youngster_front_pic.png │ │ ├── ruby_sapphire_brendan_front_pic.png │ │ ├── ruby_sapphire_may_front_pic.png │ │ ├── ruin_maniac_front_pic.png │ │ ├── running_triathlete_f_front_pic.png │ │ ├── running_triathlete_m_front_pic.png │ │ ├── sailor_front_pic.png │ │ ├── school_kid_f_front_pic.png │ │ ├── school_kid_m_front_pic.png │ │ ├── scientist_front_pic.png │ │ ├── sis_and_bro_front_pic.png │ │ ├── sr_and_jr_front_pic.png │ │ ├── super_nerd_front_pic.png │ │ ├── swimmer_f_front_pic.png │ │ ├── swimmer_m_front_pic.png │ │ ├── swimming_triathlete_f_front_pic.png │ │ ├── swimming_triathlete_m_front_pic.png │ │ ├── tamer_front_pic.png │ │ ├── tuber_f_front_pic.png │ │ ├── tuber_m_front_pic.png │ │ ├── twins_front_pic.png │ │ ├── wally_front_pic.png │ │ ├── young_couple_front_pic.png │ │ └── youngster_front_pic.png │ └── palettes │ │ ├── aqua_admin_f.pal │ │ ├── aqua_admin_m.pal │ │ ├── aqua_grunt_f.pal │ │ ├── aqua_grunt_m.pal │ │ ├── aqua_leader_archie.pal │ │ ├── aroma_lady.pal │ │ ├── battle_girl.pal │ │ ├── beauty.pal │ │ ├── biker.pal │ │ ├── bird_keeper.pal │ │ ├── black_belt.pal │ │ ├── bug_catcher.pal │ │ ├── bug_maniac.pal │ │ ├── burglar.pal │ │ ├── camper.pal │ │ ├── champion_rival.pal │ │ ├── champion_steven.pal │ │ ├── channeler.pal │ │ ├── collector.pal │ │ ├── cool_couple.pal │ │ ├── cool_trainer_f.pal │ │ ├── cool_trainer_m.pal │ │ ├── crush_girl.pal │ │ ├── crush_kin.pal │ │ ├── cue_ball.pal │ │ ├── cycling_triathlete_f.pal │ │ ├── cycling_triathlete_m.pal │ │ ├── dragon_tamer.pal │ │ ├── elite_four_agatha.pal │ │ ├── elite_four_bruno.pal │ │ ├── elite_four_drake.pal │ │ ├── elite_four_glacia.pal │ │ ├── elite_four_lance.pal │ │ ├── elite_four_lorelei.pal │ │ ├── elite_four_phoebe.pal │ │ ├── elite_four_sidney.pal │ │ ├── emerald_brendan.pal │ │ ├── emerald_may.pal │ │ ├── engineer.pal │ │ ├── expert_f.pal │ │ ├── expert_m.pal │ │ ├── fisherman.pal │ │ ├── gamer.pal │ │ ├── gentleman.pal │ │ ├── guitarist.pal │ │ ├── hex_maniac.pal │ │ ├── hiker.pal │ │ ├── interviewer.pal │ │ ├── juggler.pal │ │ ├── kindler.pal │ │ ├── lady.pal │ │ ├── lass.pal │ │ ├── leader_blaine.pal │ │ ├── leader_brawly.pal │ │ ├── leader_brock.pal │ │ ├── leader_erika.pal │ │ ├── leader_flannery.pal │ │ ├── leader_giovanni.pal │ │ ├── leader_koga.pal │ │ ├── leader_lt_surge.pal │ │ ├── leader_misty.pal │ │ ├── leader_norman.pal │ │ ├── leader_roxanne.pal │ │ ├── leader_sabrina.pal │ │ ├── leader_tate_and_liza.pal │ │ ├── leader_wallace.pal │ │ ├── leader_wattson.pal │ │ ├── leader_winona.pal │ │ ├── leaf.pal │ │ ├── leaf_back_pic.pal │ │ ├── magma_admin_f.pal │ │ ├── magma_admin_m.pal │ │ ├── magma_grunt_f.pal │ │ ├── magma_grunt_m.pal │ │ ├── magma_leader_maxie.pal │ │ ├── master_beauty.pal │ │ ├── master_bird_keeper.pal │ │ ├── master_black_belt.pal │ │ ├── master_bug_catcher.pal │ │ ├── master_cool_trainer_m.pal │ │ ├── master_hiker.pal │ │ ├── master_lass.pal │ │ ├── master_psychic_m.pal │ │ ├── master_scientist.pal │ │ ├── master_swimmer.pal │ │ ├── master_youngster.pal │ │ ├── ninja_boy.pal │ │ ├── old_couple.pal │ │ ├── old_man_back_pic.pal │ │ ├── painter.pal │ │ ├── parasol_lady.pal │ │ ├── picnicker.pal │ │ ├── pokedude_back_pic.pal │ │ ├── pokefan_f.pal │ │ ├── pokefan_m.pal │ │ ├── pokemaniac.pal │ │ ├── pokemon_breeder.pal │ │ ├── pokemon_ranger_f.pal │ │ ├── pokemon_ranger_m.pal │ │ ├── professor_oak.pal │ │ ├── psychic_f.pal │ │ ├── psychic_m.pal │ │ ├── red.pal │ │ ├── red_back_pic.pal │ │ ├── rich_boy.pal │ │ ├── rival_early.pal │ │ ├── rival_late.pal │ │ ├── rocker.pal │ │ ├── rocket_grunt_f.pal │ │ ├── rocket_grunt_m.pal │ │ ├── rs_aroma_lady.pal │ │ ├── rs_beauty.pal │ │ ├── rs_bird_keeper.pal │ │ ├── rs_black_belt.pal │ │ ├── rs_bug_catcher.pal │ │ ├── rs_camper.pal │ │ ├── rs_cool_trainer_f.pal │ │ ├── rs_cool_trainer_m.pal │ │ ├── rs_fisherman.pal │ │ ├── rs_gentleman.pal │ │ ├── rs_hiker.pal │ │ ├── rs_lady.pal │ │ ├── rs_lass.pal │ │ ├── rs_picnicker.pal │ │ ├── rs_pokemaniac.pal │ │ ├── rs_pokemon_breeder_f.pal │ │ ├── rs_pokemon_breeder_m.pal │ │ ├── rs_pokemon_ranger_f.pal │ │ ├── rs_pokemon_ranger_m.pal │ │ ├── rs_psychic_f.pal │ │ ├── rs_psychic_m.pal │ │ ├── rs_ruin_maniac.pal │ │ ├── rs_sailor.pal │ │ ├── rs_sis_and_bro.pal │ │ ├── rs_swimmer_f.pal │ │ ├── rs_swimmer_m.pal │ │ ├── rs_tuber_f.pal │ │ ├── rs_twins.pal │ │ ├── rs_young_couple.pal │ │ ├── rs_youngster.pal │ │ ├── ruby_sapphire_brendan.pal │ │ ├── ruby_sapphire_may.pal │ │ ├── ruin_maniac.pal │ │ ├── running_triathlete_f.pal │ │ ├── running_triathlete_m.pal │ │ ├── sailor.pal │ │ ├── school_kid_f.pal │ │ ├── school_kid_m.pal │ │ ├── scientist.pal │ │ ├── sis_and_bro.pal │ │ ├── sr_and_jr.pal │ │ ├── super_nerd.pal │ │ ├── swimmer_f.pal │ │ ├── swimmer_m.pal │ │ ├── swimming_triathlete_f.pal │ │ ├── swimming_triathlete_m.pal │ │ ├── tamer.pal │ │ ├── tuber_f.pal │ │ ├── tuber_m.pal │ │ ├── twins.pal │ │ ├── wally.pal │ │ ├── young_couple.pal │ │ └── youngster.pal ├── union_room_chat │ ├── bg.bin │ ├── bg.png │ ├── character_select_cursor.png │ ├── icons.png │ ├── messages.pal │ ├── objects.pal │ ├── panel.bin │ ├── panel.png │ ├── r_button.png │ ├── selector_cursor.png │ ├── text_entry.pal │ ├── text_entry_cursor.png │ └── unused.pal ├── unused │ ├── basic_frame.bin │ ├── basic_frame.png │ ├── battle_anim_023.pal │ ├── blue_frame.bin │ ├── color_frames.png │ ├── goosuto.bin │ ├── goosuto.png │ ├── gray_palette.pal │ ├── line_sketch.png │ ├── metronome_hand_small.png │ ├── music_notes.png │ ├── old_battle_interface_1.png │ ├── old_battle_interface_2.png │ ├── old_battle_interface_3.png │ ├── old_battle_interface_tilemap.bin │ ├── old_beatup.png │ ├── old_bulbasaur.png │ ├── old_bulbasaur2.png │ ├── old_charizard.png │ ├── old_charmap.bin │ ├── old_charmap.png │ ├── old_pal1.pal │ ├── old_pal2.pal │ ├── old_pal3.pal │ ├── old_pal4.pal │ ├── old_pal5.pal │ ├── old_pal6.pal │ ├── old_pal7.pal │ ├── red_palette.pal │ ├── redyellowgreen_frame.bin │ ├── shadow.png │ ├── water_splash.bin │ └── water_splash.png ├── weather │ ├── ash.png │ ├── bubble.png │ ├── cloud.png │ ├── default.pal │ ├── drought │ │ ├── colors_0.bin │ │ ├── colors_1.bin │ │ ├── colors_2.bin │ │ ├── colors_3.bin │ │ ├── colors_4.bin │ │ └── colors_5.bin │ ├── 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 │ ├── bg0.bin │ ├── bg0.pal │ ├── bg0.png │ ├── bg1.bin │ ├── bg1.pal │ ├── bg1.png │ ├── bg2.bin │ ├── bg2.pal │ ├── bg2.png │ ├── bg3.pal │ ├── bg4.pal │ ├── bg5.pal │ ├── bg6.bin │ ├── bg6.pal │ ├── bg6.png │ ├── bg7.bin │ ├── bg7.pal │ ├── bg7.png │ ├── stamp_shadow.png │ ├── stamp_shadow_0.pal │ ├── 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 └── wonder_news │ ├── bg0.bin │ ├── bg0.pal │ ├── bg0.png │ ├── bg1.bin │ ├── bg1.png │ ├── bg2.bin │ ├── bg2.png │ ├── bg6.bin │ ├── bg6.pal │ ├── bg6.png │ ├── bg7.bin │ ├── bg7.pal │ └── bg7.png ├── graphics_file_rules.mk ├── include ├── AgbRfu_LinkManager.h ├── bag.h ├── battle.h ├── battle_ai_script_commands.h ├── battle_ai_switch_items.h ├── battle_anim.h ├── battle_bg.h ├── battle_controllers.h ├── battle_gfx_sfx_util.h ├── battle_interface.h ├── battle_main.h ├── battle_message.h ├── battle_records.h ├── battle_script_commands.h ├── battle_scripts.h ├── battle_setup.h ├── battle_tower.h ├── battle_transition.h ├── battle_util.h ├── battle_util2.h ├── berry.h ├── berry_crush.h ├── berry_fix_program.h ├── berry_pouch.h ├── berry_powder.h ├── bg.h ├── bg_regs.h ├── bike.h ├── blend_palette.h ├── blit.h ├── cable_club.h ├── calculate_base_damage.h ├── cereader_tool.h ├── characters.h ├── clear_save_data_screen.h ├── coins.h ├── config.h ├── constants │ ├── abilities.h │ ├── battle.h │ ├── battle_ai.h │ ├── battle_anim.h │ ├── battle_move_effects.h │ ├── battle_script_commands.h │ ├── battle_setup.h │ ├── battle_string_ids.h │ ├── battle_tower.h │ ├── cable_club.h │ ├── coins.h │ ├── daycare.h │ ├── decorations.h │ ├── easy_chat.h │ ├── event_bg.h │ ├── event_object_movement.h │ ├── event_objects.h │ ├── fame_checker.h │ ├── field_effects.h │ ├── field_tasks.h │ ├── field_weather.h │ ├── flags.h │ ├── game_stat.h │ ├── global.h │ ├── heal_locations.h │ ├── help_system.h │ ├── hoenn_cries.h │ ├── hold_effects.h │ ├── item_effects.h │ ├── item_menu.h │ ├── items.h │ ├── layouts.h │ ├── map_groups.h │ ├── map_scripts.h │ ├── map_types.h │ ├── maps.h │ ├── master_opponents.h │ ├── menu.h │ ├── metatile_behaviors.h │ ├── metatile_labels.h │ ├── moves.h │ ├── mystery_gift.h │ ├── opponents.h │ ├── party_menu.h │ ├── pokedex.h │ ├── pokemon.h │ ├── quest_log.h │ ├── region_map_sections.h │ ├── rgb.h │ ├── seagallop.h │ ├── songs.h │ ├── sound.h │ ├── species.h │ ├── trade.h │ ├── trainer_card.h │ ├── trainer_fan_club.h │ ├── trainer_tower.h │ ├── trainer_types.h │ ├── trainers.h │ ├── union_room.h │ ├── vars.h │ └── weather.h ├── coord_event_weather.h ├── credits.h ├── data.h ├── daycare.h ├── decompress.h ├── decoration.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 ├── event_data.h ├── event_object_lock.h ├── event_object_movement.h ├── event_scripts.h ├── evolution_graphics.h ├── evolution_scene.h ├── fame_checker.h ├── faraway_island.h ├── field_camera.h ├── field_control_avatar.h ├── field_door.h ├── field_effect.h ├── field_effect_helpers.h ├── field_effect_scripts.h ├── field_fadetransition.h ├── field_message_box.h ├── field_player_avatar.h ├── field_poison.h ├── field_screen.h ├── field_screen_effect.h ├── field_specials.h ├── field_tasks.h ├── field_weather.h ├── field_weather_effects.h ├── field_weather_util.h ├── fieldmap.h ├── fldeff.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 ├── gflib.h ├── global.berry.h ├── global.fieldmap.h ├── global.h ├── gpu_regs.h ├── graphics.h ├── hall_of_fame.h ├── heal_location.h ├── help_message.h ├── help_system.h ├── image_processing_effects.h ├── intro.h ├── item.h ├── item_menu.h ├── item_menu_icons.h ├── item_pc.h ├── item_use.h ├── itemfinder.h ├── keyboard_text.h ├── libgcnmultiboot.h ├── librfu.h ├── link.h ├── link_rfu.h ├── list_menu.h ├── load_save.h ├── m4a.h ├── mail.h ├── mail_data.h ├── mailbox_pc.h ├── main.h ├── main_menu.h ├── malloc.h ├── map_name_popup.h ├── map_preview_screen.h ├── math_util.h ├── menu.h ├── menu_helpers.h ├── menu_indicators.h ├── metatile_behavior.h ├── mini_printf.h ├── minigame_countdown.h ├── mon_markings.h ├── money.h ├── multiboot.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 ├── naming_screen.h ├── new_game.h ├── new_menu_helpers.h ├── oak_speech.h ├── option_menu.h ├── orre_met_location_strings.h ├── overworld.h ├── palette.h ├── palette_util.h ├── party_menu.h ├── pc_screen_effect.h ├── play_time.h ├── player_pc.h ├── pokeball.h ├── pokedex.h ├── pokedex_area_markers.h ├── pokedex_screen.h ├── pokemon.h ├── pokemon_icon.h ├── pokemon_item_effects.h ├── pokemon_jump.h ├── pokemon_size_record.h ├── pokemon_special_anim.h ├── pokemon_special_anim_internal.h ├── pokemon_storage_system.h ├── pokemon_storage_system_internal.h ├── pokemon_summary_screen.h ├── quest_log.h ├── quest_log_battle.h ├── quest_log_objects.h ├── quest_log_player.h ├── random.h ├── region_map.h ├── renewable_hidden_items.h ├── reset_save_heap.h ├── reshow_battle_screen.h ├── roamer.h ├── safari_zone.h ├── save.h ├── save_failed_screen.h ├── save_location.h ├── save_menu_util.h ├── scanline_effect.h ├── script.h ├── script_menu.h ├── script_movement.h ├── script_pokemon_util.h ├── shop.h ├── slot_machine.h ├── sound.h ├── special_field_anim.h ├── sprite.h ├── start_menu.h ├── string_util.h ├── strings.h ├── task.h ├── teachy_tv.h ├── text.h ├── text_window.h ├── text_window_graphics.h ├── tilemap_util.h ├── tileset_anims.h ├── tilesets.h ├── title_screen.h ├── tm_case.h ├── trade.h ├── trade_scene.h ├── trainer_card.h ├── trainer_front_sprites.h ├── trainer_ids.h ├── trainer_pokemon_sprites.h ├── trainer_see.h ├── trainer_tower.h ├── trig.h ├── union_room.h ├── union_room_battle.h ├── union_room_chat.h ├── union_room_chat_display.h ├── union_room_chat_objects.h ├── union_room_message.h ├── union_room_player_avatar.h ├── util.h ├── vs_seeker.h ├── wild_encounter.h ├── wild_pokemon_area.h ├── window.h └── wonder_news.h ├── json_data_rules.mk ├── ld_script.ld ├── ld_script_modern.ld ├── leafgreen.sha1 ├── leafgreen_rev1.sha1 ├── map_data_rules.mk ├── patch └── frlgPlus.bps ├── replace.sh ├── screenshots ├── Battle Anim Fast.gif ├── Battle Tower.png ├── Dive.png ├── EV Rematches.png ├── Extended Dex.png ├── Faraway Island.png ├── Farfetchd Master.gif ├── Four Island.png ├── Gym Leader Rematches.png ├── Help Key System.png ├── Key System.gif ├── Latias.png ├── Latios.png ├── Main Menu.png ├── Master Title.png ├── Mewtwo Master.png ├── Nature Indicators.png ├── New Move Tutors.png ├── New Option.gif └── Version Toggle.gif ├── songs.mk ├── sound ├── MPlayDef.s ├── cry_tables.inc ├── direct_sound_data.inc ├── direct_sound_samples │ ├── bicycle_bell.aif │ ├── classical_choir_voice_ahhs.aif │ ├── cries │ │ ├── abra.aif │ │ ├── absol.aif │ │ ├── aerodactyl.aif │ │ ├── aggron.aif │ │ ├── aipom.aif │ │ ├── alakazam.aif │ │ ├── altaria.aif │ │ ├── ampharos.aif │ │ ├── anorith.aif │ │ ├── arbok.aif │ │ ├── arcanine.aif │ │ ├── ariados.aif │ │ ├── armaldo.aif │ │ ├── aron.aif │ │ ├── articuno.aif │ │ ├── azumarill.aif │ │ ├── azurill.aif │ │ ├── bagon.aif │ │ ├── baltoy.aif │ │ ├── banette.aif │ │ ├── barboach.aif │ │ ├── bayleef.aif │ │ ├── beautifly.aif │ │ ├── beedrill.aif │ │ ├── beldum.aif │ │ ├── bellossom.aif │ │ ├── bellsprout.aif │ │ ├── blastoise.aif │ │ ├── blaziken.aif │ │ ├── blissey.aif │ │ ├── breloom.aif │ │ ├── bulbasaur.aif │ │ ├── butterfree.aif │ │ ├── cacnea.aif │ │ ├── cacturne.aif │ │ ├── camerupt.aif │ │ ├── carvanha.aif │ │ ├── cascoon.aif │ │ ├── castform.aif │ │ ├── caterpie.aif │ │ ├── celebi.aif │ │ ├── chansey.aif │ │ ├── charizard.aif │ │ ├── charmander.aif │ │ ├── charmeleon.aif │ │ ├── chikorita.aif │ │ ├── chimecho.aif │ │ ├── chinchou.aif │ │ ├── clamperl.aif │ │ ├── claydol.aif │ │ ├── clefable.aif │ │ ├── clefairy.aif │ │ ├── cleffa.aif │ │ ├── cloyster.aif │ │ ├── combusken.aif │ │ ├── corphish.aif │ │ ├── corsola.aif │ │ ├── cradily.aif │ │ ├── crawdaunt.aif │ │ ├── crobat.aif │ │ ├── croconaw.aif │ │ ├── cubone.aif │ │ ├── cyndaquil.aif │ │ ├── delcatty.aif │ │ ├── delibird.aif │ │ ├── deoxys.aif │ │ ├── dewgong.aif │ │ ├── diglett.aif │ │ ├── ditto.aif │ │ ├── dodrio.aif │ │ ├── doduo.aif │ │ ├── donphan.aif │ │ ├── dragonair.aif │ │ ├── dragonite.aif │ │ ├── dratini.aif │ │ ├── drowzee.aif │ │ ├── dugtrio.aif │ │ ├── dunsparce.aif │ │ ├── dusclops.aif │ │ ├── duskull.aif │ │ ├── dustox.aif │ │ ├── eevee.aif │ │ ├── ekans.aif │ │ ├── electabuzz.aif │ │ ├── electrike.aif │ │ ├── electrode.aif │ │ ├── elekid.aif │ │ ├── entei.aif │ │ ├── espeon.aif │ │ ├── exeggcute.aif │ │ ├── exeggutor.aif │ │ ├── exploud.aif │ │ ├── farfetchd.aif │ │ ├── fearow.aif │ │ ├── feebas.aif │ │ ├── feraligatr.aif │ │ ├── flaaffy.aif │ │ ├── flareon.aif │ │ ├── flygon.aif │ │ ├── forretress.aif │ │ ├── furret.aif │ │ ├── gardevoir.aif │ │ ├── gastly.aif │ │ ├── gengar.aif │ │ ├── geodude.aif │ │ ├── girafarig.aif │ │ ├── glalie.aif │ │ ├── gligar.aif │ │ ├── gloom.aif │ │ ├── golbat.aif │ │ ├── goldeen.aif │ │ ├── golduck.aif │ │ ├── golem.aif │ │ ├── gorebyss.aif │ │ ├── granbull.aif │ │ ├── graveler.aif │ │ ├── grimer.aif │ │ ├── groudon.aif │ │ ├── grovyle.aif │ │ ├── growlithe.aif │ │ ├── grumpig.aif │ │ ├── gulpin.aif │ │ ├── gyarados.aif │ │ ├── hariyama.aif │ │ ├── haunter.aif │ │ ├── heracross.aif │ │ ├── hitmonchan.aif │ │ ├── hitmonlee.aif │ │ ├── hitmontop.aif │ │ ├── ho_oh.aif │ │ ├── hoothoot.aif │ │ ├── hoppip.aif │ │ ├── horsea.aif │ │ ├── houndoom.aif │ │ ├── houndour.aif │ │ ├── huntail.aif │ │ ├── hypno.aif │ │ ├── igglybuff.aif │ │ ├── illumise.aif │ │ ├── ivysaur.aif │ │ ├── jigglypuff.aif │ │ ├── jirachi.aif │ │ ├── jolteon.aif │ │ ├── jumpluff.aif │ │ ├── jynx.aif │ │ ├── kabuto.aif │ │ ├── kabutops.aif │ │ ├── kadabra.aif │ │ ├── kakuna.aif │ │ ├── kangaskhan.aif │ │ ├── kecleon.aif │ │ ├── kingdra.aif │ │ ├── kingler.aif │ │ ├── kirlia.aif │ │ ├── koffing.aif │ │ ├── krabby.aif │ │ ├── kyogre.aif │ │ ├── lairon.aif │ │ ├── lanturn.aif │ │ ├── lapras.aif │ │ ├── larvitar.aif │ │ ├── latias.aif │ │ ├── latios.aif │ │ ├── ledian.aif │ │ ├── ledyba.aif │ │ ├── lickitung.aif │ │ ├── lileep.aif │ │ ├── linoone.aif │ │ ├── lombre.aif │ │ ├── lotad.aif │ │ ├── loudred.aif │ │ ├── ludicolo.aif │ │ ├── lugia.aif │ │ ├── lunatone.aif │ │ ├── luvdisc.aif │ │ ├── machamp.aif │ │ ├── machoke.aif │ │ ├── machop.aif │ │ ├── magby.aif │ │ ├── magcargo.aif │ │ ├── magikarp.aif │ │ ├── magmar.aif │ │ ├── magnemite.aif │ │ ├── magneton.aif │ │ ├── makuhita.aif │ │ ├── manectric.aif │ │ ├── mankey.aif │ │ ├── mantine.aif │ │ ├── mareep.aif │ │ ├── marill.aif │ │ ├── marowak.aif │ │ ├── marshtomp.aif │ │ ├── masquerain.aif │ │ ├── mawile.aif │ │ ├── medicham.aif │ │ ├── meditite.aif │ │ ├── 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 │ ├── wave_54.aif │ └── wave_77.aif ├── keysplit_tables.inc ├── music_player_table.inc ├── programmable_wave_data.inc ├── programmable_wave_samples │ ├── 01.pcm │ ├── 02.pcm │ ├── 03.pcm │ ├── 04.pcm │ ├── 05.pcm │ ├── 06.pcm │ ├── 07.pcm │ ├── 08.pcm │ ├── 09.pcm │ ├── 10.pcm │ ├── 11.pcm │ ├── 12.pcm │ ├── 13.pcm │ ├── 14.pcm │ ├── 15.pcm │ ├── 16.pcm │ ├── 17.pcm │ ├── 18.pcm │ ├── 19.pcm │ ├── 20.pcm │ ├── 21.pcm │ ├── 22.pcm │ ├── 23.pcm │ ├── 24.pcm │ └── 25.pcm ├── song_table.inc ├── songs │ ├── midi │ │ ├── mus_abandoned_ship.mid │ │ ├── mus_abnormal_weather.mid │ │ ├── mus_aqua_magma_hideout.mid │ │ ├── mus_awaken_legend.mid │ │ ├── mus_b_arena.mid │ │ ├── mus_b_dome.mid │ │ ├── mus_b_dome_lobby.mid │ │ ├── mus_b_factory.mid │ │ ├── mus_b_frontier.mid │ │ ├── mus_b_palace.mid │ │ ├── mus_b_pike.mid │ │ ├── mus_b_pyramid.mid │ │ ├── mus_b_pyramid_top.mid │ │ ├── mus_b_tower.mid │ │ ├── mus_b_tower_rs.mid │ │ ├── mus_birch_lab.mid │ │ ├── mus_c_comm_center.mid │ │ ├── mus_c_vs_legend_beast.mid │ │ ├── mus_cable_car.mid │ │ ├── mus_caught.mid │ │ ├── mus_cave_of_origin.mid │ │ ├── mus_contest.mid │ │ ├── mus_contest_lobby.mid │ │ ├── mus_contest_results.mid │ │ ├── mus_contest_winner.mid │ │ ├── mus_credits.mid │ │ ├── mus_cycling.mid │ │ ├── mus_dewford.mid │ │ ├── mus_dummy.mid │ │ ├── mus_encounter_aqua.mid │ │ ├── mus_encounter_brendan.mid │ │ ├── mus_encounter_champion.mid │ │ ├── mus_encounter_cool.mid │ │ ├── mus_encounter_elite_four.mid │ │ ├── mus_encounter_female.mid │ │ ├── mus_encounter_girl.mid │ │ ├── mus_encounter_hiker.mid │ │ ├── mus_encounter_intense.mid │ │ ├── mus_encounter_interviewer.mid │ │ ├── mus_encounter_magma.mid │ │ ├── mus_encounter_male.mid │ │ ├── mus_encounter_may.mid │ │ ├── mus_encounter_rich.mid │ │ ├── mus_encounter_suspicious.mid │ │ ├── mus_encounter_swimmer.mid │ │ ├── mus_encounter_twins.mid │ │ ├── mus_end.mid │ │ ├── mus_ever_grande.mid │ │ ├── mus_evolution.mid │ │ ├── mus_evolution_intro.mid │ │ ├── mus_evolved.mid │ │ ├── mus_fallarbor.mid │ │ ├── mus_follow_me.mid │ │ ├── mus_fortree.mid │ │ ├── mus_game_corner.mid │ │ ├── mus_gsc_pewter.mid │ │ ├── mus_gsc_route38.mid │ │ ├── mus_gym.mid │ │ ├── mus_hall_of_fame.mid │ │ ├── mus_hall_of_fame_room.mid │ │ ├── mus_heal.mid │ │ ├── mus_help.mid │ │ ├── mus_intro.mid │ │ ├── mus_intro_battle.mid │ │ ├── mus_level_up.mid │ │ ├── mus_lilycove.mid │ │ ├── mus_lilycove_museum.mid │ │ ├── mus_link_contest_p1.mid │ │ ├── mus_link_contest_p2.mid │ │ ├── mus_link_contest_p3.mid │ │ ├── mus_link_contest_p4.mid │ │ ├── mus_littleroot.mid │ │ ├── mus_littleroot_test.mid │ │ ├── mus_move_deleted.mid │ │ ├── mus_mt_chimney.mid │ │ ├── mus_mt_pyre.mid │ │ ├── mus_mt_pyre_exterior.mid │ │ ├── mus_obtain_b_points.mid │ │ ├── mus_obtain_badge.mid │ │ ├── mus_obtain_berry.mid │ │ ├── mus_obtain_item.mid │ │ ├── mus_obtain_symbol.mid │ │ ├── mus_obtain_tmhm.mid │ │ ├── mus_oceanic_museum.mid │ │ ├── mus_oldale.mid │ │ ├── mus_petalburg.mid │ │ ├── mus_petalburg_woods.mid │ │ ├── mus_poke_center.mid │ │ ├── mus_poke_mart.mid │ │ ├── mus_rayquaza_appears.mid │ │ ├── mus_register_match_call.mid │ │ ├── mus_rg_berry_pick.mid │ │ ├── mus_rg_caught.mid │ │ ├── mus_rg_caught_intro.mid │ │ ├── mus_rg_celadon.mid │ │ ├── mus_rg_cinnabar.mid │ │ ├── mus_rg_credits.mid │ │ ├── mus_rg_cycling.mid │ │ ├── mus_rg_dex_rating.mid │ │ ├── mus_rg_encounter_boy.mid │ │ ├── mus_rg_encounter_deoxys.mid │ │ ├── mus_rg_encounter_girl.mid │ │ ├── mus_rg_encounter_gym_leader.mid │ │ ├── mus_rg_encounter_rival.mid │ │ ├── mus_rg_encounter_rocket.mid │ │ ├── mus_rg_follow_me.mid │ │ ├── mus_rg_fuchsia.mid │ │ ├── mus_rg_game_corner.mid │ │ ├── mus_rg_game_freak.mid │ │ ├── mus_rg_gym.mid │ │ ├── mus_rg_hall_of_fame.mid │ │ ├── mus_rg_heal.mid │ │ ├── mus_rg_intro_fight.mid │ │ ├── mus_rg_jigglypuff.mid │ │ ├── mus_rg_lavender.mid │ │ ├── mus_rg_mt_moon.mid │ │ ├── mus_rg_mystery_gift.mid │ │ ├── mus_rg_net_center.mid │ │ ├── mus_rg_new_game_exit.mid │ │ ├── mus_rg_new_game_instruct.mid │ │ ├── mus_rg_new_game_intro.mid │ │ ├── mus_rg_oak.mid │ │ ├── mus_rg_oak_lab.mid │ │ ├── mus_rg_obtain_key_item.mid │ │ ├── mus_rg_pallet.mid │ │ ├── mus_rg_pewter.mid │ │ ├── mus_rg_photo.mid │ │ ├── mus_rg_poke_center.mid │ │ ├── mus_rg_poke_flute.mid │ │ ├── mus_rg_poke_jump.mid │ │ ├── mus_rg_poke_mansion.mid │ │ ├── mus_rg_poke_tower.mid │ │ ├── mus_rg_rival_exit.mid │ │ ├── mus_rg_rocket_hideout.mid │ │ ├── mus_rg_route1.mid │ │ ├── mus_rg_route11.mid │ │ ├── mus_rg_route24.mid │ │ ├── mus_rg_route3.mid │ │ ├── mus_rg_sevii_123.mid │ │ ├── mus_rg_sevii_45.mid │ │ ├── mus_rg_sevii_67.mid │ │ ├── mus_rg_sevii_cave.mid │ │ ├── mus_rg_sevii_dungeon.mid │ │ ├── mus_rg_sevii_route.mid │ │ ├── mus_rg_silph.mid │ │ ├── mus_rg_slow_pallet.mid │ │ ├── mus_rg_ss_anne.mid │ │ ├── mus_rg_surf.mid │ │ ├── mus_rg_teachy_tv_menu.mid │ │ ├── mus_rg_teachy_tv_show.mid │ │ ├── mus_rg_title.mid │ │ ├── mus_rg_trainer_tower.mid │ │ ├── mus_rg_union_room.mid │ │ ├── mus_rg_vermillion.mid │ │ ├── mus_rg_victory_gym_leader.mid │ │ ├── mus_rg_victory_road.mid │ │ ├── mus_rg_victory_trainer.mid │ │ ├── mus_rg_victory_wild.mid │ │ ├── mus_rg_viridian_forest.mid │ │ ├── mus_rg_vs_champion.mid │ │ ├── mus_rg_vs_deoxys.mid │ │ ├── mus_rg_vs_gym_leader.mid │ │ ├── mus_rg_vs_legend.mid │ │ ├── mus_rg_vs_mewtwo.mid │ │ ├── mus_rg_vs_trainer.mid │ │ ├── mus_rg_vs_wild.mid │ │ ├── mus_roulette.mid │ │ ├── mus_route101.mid │ │ ├── mus_route104.mid │ │ ├── mus_route110.mid │ │ ├── mus_route111.mid │ │ ├── mus_route113.mid │ │ ├── mus_route119.mid │ │ ├── mus_route120.mid │ │ ├── mus_route122.mid │ │ ├── mus_rustboro.mid │ │ ├── mus_safari_zone.mid │ │ ├── mus_sailing.mid │ │ ├── mus_school.mid │ │ ├── mus_sealed_chamber.mid │ │ ├── mus_slateport.mid │ │ ├── mus_slots_jackpot.mid │ │ ├── mus_slots_win.mid │ │ ├── mus_sootopolis.mid │ │ ├── mus_surf.mid │ │ ├── mus_title.mid │ │ ├── mus_too_bad.mid │ │ ├── mus_trick_house.mid │ │ ├── mus_underwater.mid │ │ ├── mus_verdanturf.mid │ │ ├── mus_victory_aqua_magma.mid │ │ ├── mus_victory_gym_leader.mid │ │ ├── mus_victory_league.mid │ │ ├── mus_victory_road.mid │ │ ├── mus_victory_trainer.mid │ │ ├── mus_victory_wild.mid │ │ ├── mus_vs_aqua_magma.mid │ │ ├── mus_vs_aqua_magma_leader.mid │ │ ├── mus_vs_champion.mid │ │ ├── mus_vs_elite_four.mid │ │ ├── mus_vs_frontier_brain.mid │ │ ├── mus_vs_gym_leader.mid │ │ ├── mus_vs_kyogre_groudon.mid │ │ ├── mus_vs_mew.mid │ │ ├── mus_vs_rayquaza.mid │ │ ├── mus_vs_regi.mid │ │ ├── mus_vs_rival.mid │ │ ├── mus_vs_trainer.mid │ │ ├── mus_vs_wild.mid │ │ ├── mus_weather_groudon.mid │ │ ├── ph_choice_blend.mid │ │ ├── ph_choice_held.mid │ │ ├── ph_choice_solo.mid │ │ ├── ph_cloth_blend.mid │ │ ├── ph_cloth_held.mid │ │ ├── ph_cloth_solo.mid │ │ ├── ph_cure_blend.mid │ │ ├── ph_cure_held.mid │ │ ├── ph_cure_solo.mid │ │ ├── ph_dress_blend.mid │ │ ├── ph_dress_held.mid │ │ ├── ph_dress_solo.mid │ │ ├── ph_face_blend.mid │ │ ├── ph_face_held.mid │ │ ├── ph_face_solo.mid │ │ ├── ph_fleece_blend.mid │ │ ├── ph_fleece_held.mid │ │ ├── ph_fleece_solo.mid │ │ ├── ph_foot_blend.mid │ │ ├── ph_foot_held.mid │ │ ├── ph_foot_solo.mid │ │ ├── ph_goat_blend.mid │ │ ├── ph_goat_held.mid │ │ ├── ph_goat_solo.mid │ │ ├── ph_goose_blend.mid │ │ ├── ph_goose_held.mid │ │ ├── ph_goose_solo.mid │ │ ├── ph_kit_blend.mid │ │ ├── ph_kit_held.mid │ │ ├── ph_kit_solo.mid │ │ ├── ph_lot_blend.mid │ │ ├── ph_lot_held.mid │ │ ├── ph_lot_solo.mid │ │ ├── ph_mouth_blend.mid │ │ ├── ph_mouth_held.mid │ │ ├── ph_mouth_solo.mid │ │ ├── ph_nurse_blend.mid │ │ ├── ph_nurse_held.mid │ │ ├── ph_nurse_solo.mid │ │ ├── ph_price_blend.mid │ │ ├── ph_price_held.mid │ │ ├── ph_price_solo.mid │ │ ├── ph_strut_blend.mid │ │ ├── ph_strut_held.mid │ │ ├── ph_strut_solo.mid │ │ ├── ph_thought_blend.mid │ │ ├── ph_thought_held.mid │ │ ├── ph_thought_solo.mid │ │ ├── ph_trap_blend.mid │ │ ├── ph_trap_held.mid │ │ ├── ph_trap_solo.mid │ │ ├── se_a.mid │ │ ├── se_applause.mid │ │ ├── se_arena_timeup1.mid │ │ ├── se_arena_timeup2.mid │ │ ├── se_ball.mid │ │ ├── se_ball_bounce_1.mid │ │ ├── se_ball_bounce_2.mid │ │ ├── se_ball_bounce_3.mid │ │ ├── se_ball_bounce_4.mid │ │ ├── se_ball_open.mid │ │ ├── se_ball_throw.mid │ │ ├── se_ball_trade.mid │ │ ├── se_ball_tray_ball.mid │ │ ├── se_ball_tray_enter.mid │ │ ├── se_ball_tray_exit.mid │ │ ├── se_balloon_blue.mid │ │ ├── se_balloon_red.mid │ │ ├── se_balloon_yellow.mid │ │ ├── se_bang.mid │ │ ├── se_berry_blender.mid │ │ ├── se_bike_bell.mid │ │ ├── se_bike_hop.mid │ │ ├── se_boo.mid │ │ ├── se_breakable_door.mid │ │ ├── se_bridge_walk.mid │ │ ├── se_card.mid │ │ ├── se_click.mid │ │ ├── se_contest_condition_lose.mid │ │ ├── se_contest_curtain_fall.mid │ │ ├── se_contest_curtain_rise.mid │ │ ├── se_contest_heart.mid │ │ ├── se_contest_icon_change.mid │ │ ├── se_contest_icon_clear.mid │ │ ├── se_contest_mons_turn.mid │ │ ├── se_contest_place.mid │ │ ├── se_dex_search.mid │ │ ├── se_ding_dong.mid │ │ ├── se_door.mid │ │ ├── se_downpour.mid │ │ ├── se_downpour_stop.mid │ │ ├── se_e.mid │ │ ├── se_effective.mid │ │ ├── se_egg_hatch.mid │ │ ├── se_elevator.mid │ │ ├── se_escalator.mid │ │ ├── se_exit.mid │ │ ├── se_exp.mid │ │ ├── se_exp_max.mid │ │ ├── se_failure.mid │ │ ├── se_faint.mid │ │ ├── se_fall.mid │ │ ├── se_field_poison.mid │ │ ├── se_flee.mid │ │ ├── se_fu_zaku.mid │ │ ├── se_glass_flute.mid │ │ ├── se_i.mid │ │ ├── se_ice_break.mid │ │ ├── se_ice_crack.mid │ │ ├── se_ice_stairs.mid │ │ ├── se_intro_blast.mid │ │ ├── se_itemfinder.mid │ │ ├── se_lavaridge_fall_warp.mid │ │ ├── se_ledge.mid │ │ ├── se_low_health.mid │ │ ├── se_m_bind.mid │ │ ├── se_m_comet_punch.mid │ │ ├── se_m_cut.mid │ │ ├── se_m_double_slap.mid │ │ ├── se_m_fire_punch.mid │ │ ├── se_m_fly.mid │ │ ├── se_m_gust.mid │ │ ├── se_m_gust2.mid │ │ ├── se_m_headbutt.mid │ │ ├── se_m_horn_attack.mid │ │ ├── se_m_jump_kick.mid │ │ ├── se_m_leer.mid │ │ ├── se_m_mega_kick.mid │ │ ├── se_m_mega_kick2.mid │ │ ├── se_m_pay_day.mid │ │ ├── se_m_razor_wind.mid │ │ ├── se_m_razor_wind2.mid │ │ ├── se_m_sand_attack.mid │ │ ├── se_m_scratch.mid │ │ ├── se_m_swords_dance.mid │ │ ├── se_m_tail_whip.mid │ │ ├── se_m_take_down.mid │ │ ├── se_m_vicegrip.mid │ │ ├── se_m_wing_attack.mid │ │ ├── se_mud_ball.mid │ │ ├── se_mugshot.mid │ │ ├── se_n.mid │ │ ├── se_not_effective.mid │ │ ├── se_note_a.mid │ │ ├── se_note_b.mid │ │ ├── se_note_c.mid │ │ ├── se_note_c_high.mid │ │ ├── se_note_d.mid │ │ ├── se_note_e.mid │ │ ├── se_note_f.mid │ │ ├── se_note_g.mid │ │ ├── se_o.mid │ │ ├── se_orb.mid │ │ ├── se_pc_login.mid │ │ ├── se_pc_off.mid │ │ ├── se_pc_on.mid │ │ ├── se_pike_curtain_close.mid │ │ ├── se_pike_curtain_open.mid │ │ ├── se_pin.mid │ │ ├── se_pokenav_call.mid │ │ ├── se_pokenav_hang_up.mid │ │ ├── se_pokenav_off.mid │ │ ├── se_pokenav_on.mid │ │ ├── se_puddle.mid │ │ ├── se_rain.mid │ │ ├── se_rain_stop.mid │ │ ├── se_repel.mid │ │ ├── se_rg_bag_cursor.mid │ │ ├── se_rg_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_rg_bag_pocket.s │ ├── se_wall_hit.s │ └── se_win_open.s ├── voice_groups.inc └── voicegroups │ ├── voicegroup000.inc │ ├── voicegroup001.inc │ ├── voicegroup002.inc │ ├── voicegroup003.inc │ ├── voicegroup004.inc │ ├── voicegroup005.inc │ ├── voicegroup006.inc │ ├── voicegroup007.inc │ ├── voicegroup008.inc │ ├── voicegroup009.inc │ ├── voicegroup010.inc │ ├── voicegroup011.inc │ ├── voicegroup012.inc │ ├── voicegroup013.inc │ ├── voicegroup014.inc │ ├── voicegroup015.inc │ ├── voicegroup016.inc │ ├── voicegroup017.inc │ ├── voicegroup018.inc │ ├── voicegroup019.inc │ ├── voicegroup020.inc │ ├── voicegroup021.inc │ ├── voicegroup022.inc │ ├── voicegroup023.inc │ ├── voicegroup024.inc │ ├── voicegroup025.inc │ ├── voicegroup026.inc │ ├── voicegroup027.inc │ ├── voicegroup028.inc │ ├── voicegroup029.inc │ ├── voicegroup030.inc │ ├── voicegroup031.inc │ ├── voicegroup032.inc │ ├── voicegroup033.inc │ ├── voicegroup034.inc │ ├── voicegroup035.inc │ ├── voicegroup036.inc │ ├── voicegroup037.inc │ ├── voicegroup038.inc │ ├── voicegroup039.inc │ ├── voicegroup040.inc │ ├── voicegroup041.inc │ ├── voicegroup042.inc │ ├── voicegroup043.inc │ ├── voicegroup044.inc │ ├── voicegroup045.inc │ ├── voicegroup046.inc │ ├── voicegroup047.inc │ ├── voicegroup048.inc │ ├── voicegroup049.inc │ ├── voicegroup050.inc │ ├── voicegroup051.inc │ ├── voicegroup052.inc │ ├── voicegroup053.inc │ ├── voicegroup054.inc │ ├── voicegroup055.inc │ ├── voicegroup056.inc │ ├── voicegroup057.inc │ ├── voicegroup058.inc │ ├── voicegroup059.inc │ ├── voicegroup060.inc │ ├── voicegroup061.inc │ ├── voicegroup062.inc │ ├── voicegroup063.inc │ ├── voicegroup064.inc │ ├── voicegroup065.inc │ ├── voicegroup066.inc │ ├── voicegroup067.inc │ ├── voicegroup068.inc │ ├── voicegroup069.inc │ ├── voicegroup070.inc │ ├── voicegroup071.inc │ ├── voicegroup072.inc │ ├── voicegroup073.inc │ ├── voicegroup074.inc │ ├── voicegroup075.inc │ ├── voicegroup076.inc │ ├── voicegroup077.inc │ ├── voicegroup078.inc │ ├── voicegroup079.inc │ ├── voicegroup080.inc │ ├── voicegroup081.inc │ ├── voicegroup082.inc │ ├── voicegroup083.inc │ ├── voicegroup084.inc │ ├── voicegroup085.inc │ ├── voicegroup086.inc │ ├── voicegroup087.inc │ ├── voicegroup088.inc │ ├── voicegroup089.inc │ ├── voicegroup090.inc │ ├── voicegroup091.inc │ ├── voicegroup092.inc │ ├── voicegroup093.inc │ ├── voicegroup094.inc │ ├── voicegroup095.inc │ ├── voicegroup096.inc │ ├── voicegroup097.inc │ ├── voicegroup098.inc │ ├── voicegroup099.inc │ ├── voicegroup100.inc │ ├── voicegroup101.inc │ ├── voicegroup102.inc │ ├── voicegroup103.inc │ ├── voicegroup104.inc │ ├── voicegroup105.inc │ ├── voicegroup106.inc │ ├── voicegroup107.inc │ ├── voicegroup108.inc │ ├── voicegroup109.inc │ ├── voicegroup110.inc │ ├── voicegroup111.inc │ ├── voicegroup112.inc │ ├── voicegroup113.inc │ ├── voicegroup114.inc │ ├── voicegroup115.inc │ ├── voicegroup116.inc │ ├── voicegroup117.inc │ ├── voicegroup118.inc │ ├── voicegroup119.inc │ ├── voicegroup120.inc │ ├── voicegroup121.inc │ ├── voicegroup122.inc │ ├── voicegroup123.inc │ ├── voicegroup124.inc │ ├── voicegroup125.inc │ ├── voicegroup126.inc │ ├── voicegroup127.inc │ ├── voicegroup128.inc │ ├── voicegroup129.inc │ ├── voicegroup130.inc │ ├── voicegroup131.inc │ ├── voicegroup132.inc │ ├── voicegroup133.inc │ ├── voicegroup134.inc │ ├── voicegroup135.inc │ ├── voicegroup136.inc │ ├── voicegroup137.inc │ ├── voicegroup138.inc │ ├── voicegroup139.inc │ ├── voicegroup140.inc │ ├── voicegroup141.inc │ ├── voicegroup142.inc │ ├── voicegroup143.inc │ ├── voicegroup144.inc │ ├── voicegroup145.inc │ ├── voicegroup146.inc │ ├── voicegroup147.inc │ ├── voicegroup148.inc │ ├── voicegroup149.inc │ ├── voicegroup150.inc │ ├── voicegroup151.inc │ ├── voicegroup152.inc │ ├── voicegroup153.inc │ ├── voicegroup154.inc │ ├── voicegroup155.inc │ ├── voicegroup156.inc │ ├── voicegroup157.inc │ ├── voicegroup158.inc │ ├── voicegroup159.inc │ ├── voicegroup160.inc │ ├── voicegroup161.inc │ ├── voicegroup162.inc │ ├── voicegroup163.inc │ ├── voicegroup164.inc │ ├── voicegroup165.inc │ ├── voicegroup166.inc │ ├── voicegroup167.inc │ ├── voicegroup168.inc │ ├── voicegroup169.inc │ ├── voicegroup170.inc │ ├── voicegroup171.inc │ ├── voicegroup172.inc │ ├── voicegroup173.inc │ ├── voicegroup174.inc │ ├── voicegroup175.inc │ ├── voicegroup176.inc │ ├── voicegroup177.inc │ ├── voicegroup178.inc │ ├── voicegroup179.inc │ ├── voicegroup180.inc │ ├── voicegroup181.inc │ ├── voicegroup182.inc │ ├── voicegroup183.inc │ ├── voicegroup184.inc │ ├── voicegroup185.inc │ ├── voicegroup186.inc │ ├── voicegroup187.inc │ ├── voicegroup188.inc │ ├── voicegroup189.inc │ ├── voicegroup190.inc │ └── voicegroup191.inc ├── spritesheet_rules.mk ├── src ├── AgbRfu_LinkManager.c ├── agb_flash.c ├── agb_flash_1m.c ├── agb_flash_le.c ├── agb_flash_mx.c ├── bag.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_special.c ├── battle_anim_status_effects.c ├── battle_anim_utility_funcs.c ├── battle_anim_water.c ├── battle_bg.c ├── battle_controller_link_opponent.c ├── battle_controller_link_partner.c ├── battle_controller_oak_old_man.c ├── battle_controller_opponent.c ├── battle_controller_player.c ├── battle_controller_pokedude.c ├── battle_controller_safari.c ├── battle_controllers.c ├── battle_gfx_sfx_util.c ├── battle_interface.c ├── battle_intro.c ├── battle_main.c ├── battle_message.c ├── battle_records.c ├── battle_script_commands.c ├── battle_setup.c ├── battle_tower.c ├── battle_transition.c ├── battle_util.c ├── battle_util2.c ├── berry.c ├── berry_crush.c ├── berry_fix_program.c ├── berry_pouch.c ├── berry_powder.c ├── bg.c ├── bg_regs.c ├── bike.c ├── blend_palette.c ├── blit.c ├── braille_text.c ├── buy_menu_helpers.c ├── cable_car.c ├── cable_car_util.c ├── cable_club.c ├── cereader_tool.c ├── clear_save_data_screen.c ├── coins.c ├── coord_event_weather.c ├── credits.c ├── crt0.s ├── data.c ├── data │ ├── battle_anim.h │ ├── battle_moves.h │ ├── battle_tower │ │ ├── level_100_mons.h │ │ ├── level_50_mons.h │ │ └── trainers.h │ ├── decoration │ │ ├── description.h │ │ ├── header.h │ │ └── tiles.h │ ├── easy_chat │ │ ├── easy_chat_group_actions.h │ │ ├── easy_chat_group_adjectives.h │ │ ├── easy_chat_group_battle.h │ │ ├── easy_chat_group_conditions.h │ │ ├── easy_chat_group_endings.h │ │ ├── easy_chat_group_events.h │ │ ├── easy_chat_group_feelings.h │ │ ├── easy_chat_group_greetings.h │ │ ├── easy_chat_group_hobbies.h │ │ ├── easy_chat_group_lifestyle.h │ │ ├── easy_chat_group_misc.h │ │ ├── easy_chat_group_move_1.h │ │ ├── easy_chat_group_move_2.h │ │ ├── easy_chat_group_people.h │ │ ├── easy_chat_group_pokemon.h │ │ ├── easy_chat_group_pokemon2.h │ │ ├── easy_chat_group_speech.h │ │ ├── easy_chat_group_status.h │ │ ├── easy_chat_group_time.h │ │ ├── easy_chat_group_trainer.h │ │ ├── easy_chat_group_trendy_saying.h │ │ ├── easy_chat_group_voices.h │ │ ├── easy_chat_groups.h │ │ └── easy_chat_words_by_letter.h │ ├── field_effects │ │ ├── field_effect_object_template_pointers.h │ │ └── field_effect_objects.h │ ├── graphics │ │ ├── battle_terrain_unused.h │ │ ├── interface_pokeballs.h │ │ ├── items.h │ │ ├── mail.h │ │ ├── pokemon.h │ │ └── trainers.h │ ├── heal_locations.h │ ├── ingame_trades.h │ ├── item_icon_table.h │ ├── items.json │ ├── items.json.txt │ ├── master_trainer_parties.h │ ├── master_trainers.h │ ├── object_events │ │ ├── base_oam.h │ │ ├── movement_action_func_tables.h │ │ ├── movement_type_func_tables.h │ │ ├── object_event_anims.h │ │ ├── object_event_graphics.h │ │ ├── object_event_graphics_info.h │ │ ├── object_event_graphics_info_pointers.h │ │ ├── object_event_pic_tables.h │ │ └── object_event_subsprites.h │ ├── party_menu.h │ ├── pokemon │ │ ├── cry_ids.h │ │ ├── egg_moves.h │ │ ├── evolution.h │ │ ├── experience_tables.h │ │ ├── item_effects.h │ │ ├── level_up_learnset_pointers.h │ │ ├── level_up_learnsets.h │ │ ├── pokedex_categories.h │ │ ├── pokedex_entries.h │ │ ├── pokedex_orders.h │ │ ├── pokedex_text_fr.h │ │ ├── pokedex_text_lg.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_coordinates.h │ │ ├── front_pic_table.h │ │ ├── palette_table.h │ │ └── shiny_palette_table.h │ ├── region_map │ │ ├── region_map_layout_kanto.h │ │ ├── region_map_layout_sevii_123.h │ │ ├── region_map_layout_sevii_45.h │ │ ├── region_map_layout_sevii_67.h │ │ ├── region_map_sections.entries.json.txt │ │ ├── region_map_sections.json │ │ └── region_map_sections.strings.json.txt │ ├── text │ │ ├── abilities.h │ │ ├── move_names.h │ │ ├── nature_names.h │ │ ├── quest_log.h │ │ ├── species_names.h │ │ ├── teachy_tv.h │ │ └── trainer_class_names.h │ ├── tilesets │ │ ├── graphics.h │ │ ├── headers.h │ │ └── metatiles.h │ ├── trainer_graphics │ │ ├── back_pic_anims.h │ │ ├── back_pic_tables.h │ │ ├── front_pic_anims.h │ │ └── front_pic_tables.h │ ├── trainer_parties.h │ ├── trainers.h │ ├── union_room.h │ └── wild_encounters.h ├── daycare.c ├── decompress.c ├── decoration.c ├── digit_obj_util.c ├── diploma.c ├── dma3_manager.c ├── dodrio_berry_picking.c ├── dodrio_berry_picking_comm.c ├── dynamic_placeholder_text_util.c ├── easy_chat.c ├── easy_chat_2.c ├── easy_chat_3.c ├── ereader_helpers.c ├── ereader_screen.c ├── event_data.c ├── event_object_lock.c ├── event_object_movement.c ├── evolution_graphics.c ├── evolution_scene.c ├── fame_checker.c ├── faraway_island.c ├── field_camera.c ├── field_control_avatar.c ├── field_door.c ├── field_effect.c ├── field_effect_helpers.c ├── field_fadetransition.c ├── field_message_box.c ├── field_player_avatar.c ├── field_poison.c ├── field_screen_effect.c ├── field_special_scene.c ├── field_specials.c ├── field_tasks.c ├── field_weather.c ├── field_weather_effects.c ├── field_weather_util.c ├── fieldmap.c ├── fldeff_berrytree.c ├── fldeff_cut.c ├── fldeff_dig.c ├── fldeff_flash.c ├── fldeff_poison.c ├── fldeff_rocksmash.c ├── fldeff_softboiled.c ├── fldeff_strength.c ├── fldeff_sweetscent.c ├── fldeff_teleport.c ├── gpu_regs.c ├── graphics.c ├── hall_of_fame.c ├── heal_location.c ├── help_message.c ├── help_system.c ├── help_system_util.c ├── hof_pc.c ├── image_processing_effects.c ├── intro.c ├── isagbprn.c ├── item.c ├── item_menu.c ├── item_menu_icons.c ├── item_pc.c ├── item_use.c ├── itemfinder.c ├── key_system_menu.c ├── keyboard_text.c ├── learn_move.c ├── libagbsyscall.s ├── libgcnmultiboot.s ├── librfu_intr.c ├── librfu_rfu.c ├── librfu_sio32id.c ├── librfu_stwi.c ├── link.c ├── link_rfu_2.c ├── link_rfu_3.c ├── list_menu.c ├── load_save.c ├── m4a.c ├── m4a_1.s ├── m4a_tables.c ├── mail.c ├── mail_data.c ├── mailbox_pc.c ├── main.c ├── main_menu.c ├── malloc.c ├── map_name_popup.c ├── map_preview_screen.c ├── math_util.c ├── menu.c ├── menu2.c ├── menu_helpers.c ├── menu_indicators.c ├── metatile_behavior.c ├── mini_printf.c ├── minigame_countdown.c ├── mon_markings.c ├── money.c ├── move_descriptions.c ├── multiboot.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_show_card.c ├── mystery_gift_show_news.c ├── naming_screen.c ├── new_game.c ├── new_menu_helpers.c ├── oak_speech.c ├── option_menu.c ├── orre_met_location_handler.c ├── orre_met_location_strings.c ├── overworld.c ├── palette.c ├── palette_util.c ├── party_menu.c ├── party_menu_specials.c ├── pc_screen_effect.c ├── play_time.c ├── player_pc.c ├── pokeball.c ├── pokedex.c ├── pokedex_area_markers.c ├── pokedex_screen.c ├── pokemon.c ├── pokemon_icon.c ├── pokemon_jump.c ├── pokemon_size_record.c ├── pokemon_special_anim.c ├── pokemon_special_anim_scene.c ├── pokemon_storage_system.c ├── pokemon_storage_system_data.c ├── pokemon_storage_system_graphics.c ├── pokemon_storage_system_menu.c ├── pokemon_storage_system_misc.c ├── pokemon_storage_system_tasks.c ├── pokemon_summary_screen.c ├── post_battle_event_funcs.c ├── prof_pc.c ├── quest_log.c ├── quest_log_battle.c ├── quest_log_events.c ├── quest_log_objects.c ├── quest_log_player.c ├── random.c ├── region_map.c ├── renewable_hidden_items.c ├── reset_save_heap.c ├── reshow_battle_screen.c ├── roamer.c ├── rom_header.s ├── rom_header_gf.c ├── safari_zone.c ├── save.c ├── save_failed_screen.c ├── save_location.c ├── save_menu_util.c ├── scanline_effect.c ├── scrcmd.c ├── script.c ├── script_menu.c ├── script_movement.c ├── script_pokemon_util.c ├── seagallop.c ├── shop.c ├── slot_machine.c ├── sound.c ├── special_field_anim.c ├── sprite.c ├── ss_anne.c ├── start_menu.c ├── string_util.c ├── strings.c ├── task.c ├── teachy_tv.c ├── text.c ├── text_printer.c ├── text_window.c ├── text_window_graphics.c ├── tilemap_util.c ├── tileset_anims.c ├── tilesets.c ├── title_screen.c ├── tm_case.c ├── trade.c ├── trade_scene.c ├── trainer_card.c ├── trainer_fan_club.c ├── trainer_pokemon_sprites.c ├── trainer_see.c ├── trainer_tower.c ├── trainer_tower_sets.c ├── trig.c ├── union_room.c ├── union_room_battle.c ├── union_room_chat.c ├── union_room_chat_display.c ├── union_room_chat_objects.c ├── union_room_message.c ├── union_room_player_avatar.c ├── util.c ├── vs_seeker.c ├── wild_encounter.c ├── wild_pokemon_area.c ├── window.c ├── window_8bpp.c ├── wireless_communication_status_screen.c └── wonder_news.c ├── sym_bss.txt ├── sym_common.txt ├── sym_ewram.txt ├── tileset_rules.mk └── tools ├── aif2pcm ├── .gitignore ├── LICENSE ├── Makefile ├── extended.c └── main.c ├── bin2c ├── .gitignore ├── LICENSE ├── Makefile └── bin2c.c ├── gbafix ├── .gitignore ├── COPYING ├── Makefile ├── elf.h └── gbafix.c ├── gbagfx ├── .gitignore ├── LICENSE ├── Makefile ├── convert_png.c ├── convert_png.h ├── font.c ├── font.h ├── gfx.c ├── gfx.h ├── global.h ├── huff.c ├── huff.h ├── jasc_pal.c ├── jasc_pal.h ├── lz.c ├── lz.h ├── main.c ├── options.h ├── rl.c ├── rl.h ├── util.c └── util.h ├── jsonproc ├── .gitignore ├── Makefile ├── inja.hpp ├── jsonproc.cpp ├── jsonproc.h └── nlohmann │ └── json.hpp ├── mapjson ├── .gitignore ├── Makefile ├── json11.cpp ├── json11.h ├── mapjson.cpp └── mapjson.h ├── mid2agb ├── .gitignore ├── LICENSE ├── Makefile ├── agb.cpp ├── agb.h ├── error.cpp ├── error.h ├── main.cpp ├── main.h ├── midi.cpp ├── midi.h ├── tables.cpp └── tables.h ├── preproc ├── .gitignore ├── LICENSE ├── Makefile ├── asm_file.cpp ├── asm_file.h ├── c_file.cpp ├── c_file.h ├── char_util.h ├── charmap.cpp ├── charmap.h ├── preproc.cpp ├── preproc.h ├── string_parser.cpp ├── string_parser.h ├── utf8.cpp └── utf8.h ├── ramscrgen ├── .gitignore ├── LICENSE ├── Makefile ├── char_util.h ├── elf.cpp ├── elf.h ├── main.cpp ├── ramscrgen.h ├── sym_file.cpp └── sym_file.h ├── rsfont ├── .gitignore ├── LICENSE ├── Makefile ├── convert_png.c ├── convert_png.h ├── font.c ├── font.h ├── gfx.h ├── global.h ├── main.c ├── util.c └── util.h └── scaninc ├── .gitignore ├── LICENSE ├── Makefile ├── asm_file.cpp ├── asm_file.h ├── c_file.cpp ├── c_file.h ├── scaninc.cpp ├── scaninc.h ├── source_file.cpp └── source_file.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/calcrom/calcrom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/.github/calcrom/calcrom.pl -------------------------------------------------------------------------------- /.github/calcrom/webhook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/.github/calcrom/webhook.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/.gitignore -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/FAQ.md -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/FEATURES.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/README.md -------------------------------------------------------------------------------- /asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asm/macros.inc -------------------------------------------------------------------------------- /asm/macros/asm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asm/macros/asm.inc -------------------------------------------------------------------------------- /asm/macros/battle_anim.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asm/macros/battle_anim.inc -------------------------------------------------------------------------------- /asm/macros/ec.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asm/macros/ec.inc -------------------------------------------------------------------------------- /asm/macros/event.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asm/macros/event.inc -------------------------------------------------------------------------------- /asm/macros/function.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asm/macros/function.inc -------------------------------------------------------------------------------- /asm/macros/m4a.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asm/macros/m4a.inc -------------------------------------------------------------------------------- /asm/macros/map.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asm/macros/map.inc -------------------------------------------------------------------------------- /asm/macros/movement.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asm/macros/movement.inc -------------------------------------------------------------------------------- /asm/macros/music_voice.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asm/macros/music_voice.inc -------------------------------------------------------------------------------- /asmdiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/asmdiff.sh -------------------------------------------------------------------------------- /charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/charmap.txt -------------------------------------------------------------------------------- /common_syms/AgbRfu_LinkManager.txt: -------------------------------------------------------------------------------- 1 | lman 2 | -------------------------------------------------------------------------------- /common_syms/agb_flash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/agb_flash.txt -------------------------------------------------------------------------------- /common_syms/battle_controller_pokedude.txt: -------------------------------------------------------------------------------- 1 | gPokedudeBattlerStates 2 | -------------------------------------------------------------------------------- /common_syms/bg.txt: -------------------------------------------------------------------------------- 1 | gWindowTileAutoAllocEnabled 2 | -------------------------------------------------------------------------------- /common_syms/cable_club.txt: -------------------------------------------------------------------------------- 1 | UnusedVarNeededToMatch 2 | -------------------------------------------------------------------------------- /common_syms/ereader_screen.txt: -------------------------------------------------------------------------------- 1 | gEReaderData 2 | -------------------------------------------------------------------------------- /common_syms/event_data.txt: -------------------------------------------------------------------------------- 1 | gLastQuestLogStoredFlagOrVarIdx 2 | -------------------------------------------------------------------------------- /common_syms/evolution_scene.txt: -------------------------------------------------------------------------------- 1 | gCB2_AfterEvolution 2 | -------------------------------------------------------------------------------- /common_syms/fame_checker.txt: -------------------------------------------------------------------------------- 1 | gFameChecker_ListMenuTemplate 2 | gIconDescriptionBoxIsOpen 3 | -------------------------------------------------------------------------------- /common_syms/field_control_avatar.txt: -------------------------------------------------------------------------------- 1 | gFieldInputRecord 2 | -------------------------------------------------------------------------------- /common_syms/fieldmap.txt: -------------------------------------------------------------------------------- 1 | VMap 2 | -------------------------------------------------------------------------------- /common_syms/help_system.txt: -------------------------------------------------------------------------------- 1 | gHelpSystemState 2 | gHelpContextIdBackup 3 | -------------------------------------------------------------------------------- /common_syms/help_system_util.txt: -------------------------------------------------------------------------------- 1 | gHelpSystemEnabled 2 | -------------------------------------------------------------------------------- /common_syms/librfu_rfu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/librfu_rfu.txt -------------------------------------------------------------------------------- /common_syms/librfu_sio32id.txt: -------------------------------------------------------------------------------- 1 | gRfuSIO32Id 2 | -------------------------------------------------------------------------------- /common_syms/librfu_stwi.txt: -------------------------------------------------------------------------------- 1 | gSTWIStatus 2 | -------------------------------------------------------------------------------- /common_syms/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/link.txt -------------------------------------------------------------------------------- /common_syms/link_rfu_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/link_rfu_2.txt -------------------------------------------------------------------------------- /common_syms/list_menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/list_menu.txt -------------------------------------------------------------------------------- /common_syms/load_save.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/load_save.txt -------------------------------------------------------------------------------- /common_syms/m4a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/m4a.txt -------------------------------------------------------------------------------- /common_syms/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/main.txt -------------------------------------------------------------------------------- /common_syms/overworld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/overworld.txt -------------------------------------------------------------------------------- /common_syms/party_menu.txt: -------------------------------------------------------------------------------- 1 | gItemUseCB 2 | -------------------------------------------------------------------------------- /common_syms/quest_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/quest_log.txt -------------------------------------------------------------------------------- /common_syms/random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/random.txt -------------------------------------------------------------------------------- /common_syms/save.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/save.txt -------------------------------------------------------------------------------- /common_syms/save_failed_screen.txt: -------------------------------------------------------------------------------- 1 | sIsInSaveFailedScreen 2 | -------------------------------------------------------------------------------- /common_syms/scrcmd.txt: -------------------------------------------------------------------------------- 1 | sQuestLogScriptContextPtr 2 | gSelectedObjectEvent 3 | -------------------------------------------------------------------------------- /common_syms/sound.txt: -------------------------------------------------------------------------------- 1 | gDisableMusic 2 | -------------------------------------------------------------------------------- /common_syms/sprite.txt: -------------------------------------------------------------------------------- 1 | gOamMatrixAllocBitmap 2 | gReservedSpritePaletteCount 3 | -------------------------------------------------------------------------------- /common_syms/task.txt: -------------------------------------------------------------------------------- 1 | gTasks 2 | -------------------------------------------------------------------------------- /common_syms/text.txt: -------------------------------------------------------------------------------- 1 | gTextFlags 2 | -------------------------------------------------------------------------------- /common_syms/text_printer.txt: -------------------------------------------------------------------------------- 1 | gFonts 2 | gGlyphInfo 3 | -------------------------------------------------------------------------------- /common_syms/window.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/common_syms/window.txt -------------------------------------------------------------------------------- /compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/compare.sh -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/config.mk -------------------------------------------------------------------------------- /constants/constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/constants/constants.inc -------------------------------------------------------------------------------- /data/battle_ai_scripts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/battle_ai_scripts.s -------------------------------------------------------------------------------- /data/battle_anim_scripts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/battle_anim_scripts.s -------------------------------------------------------------------------------- /data/battle_scripts_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/battle_scripts_1.s -------------------------------------------------------------------------------- /data/battle_scripts_2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/battle_scripts_2.s -------------------------------------------------------------------------------- /data/event_scripts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/event_scripts.s -------------------------------------------------------------------------------- /data/layouts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/layouts/.gitignore -------------------------------------------------------------------------------- /data/layouts/BattleColosseum_2P/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/BattleColosseum_4P/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/BirthIsland_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +c*C -------------------------------------------------------------------------------- /data/layouts/CeladonCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/CeladonCity_DepartmentStore_Roof/border.bin: -------------------------------------------------------------------------------- 1 | gC -------------------------------------------------------------------------------- /data/layouts/CeruleanCity/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/EverGrandeCity_HallOfFame/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/FarawayIsland_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +f*C -------------------------------------------------------------------------------- /data/layouts/FarawayIsland_Interior/border.bin: -------------------------------------------------------------------------------- 1 | 3d2C -------------------------------------------------------------------------------- /data/layouts/FortreeCity_DecorationShop/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FortreeCity_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FortreeCity_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/FourIsland/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/FourIsland_Base/border.bin: -------------------------------------------------------------------------------- 1 | +c*C -------------------------------------------------------------------------------- /data/layouts/FourIsland_Base_CableCarStation/border.bin: -------------------------------------------------------------------------------- 1 | k`jC -------------------------------------------------------------------------------- /data/layouts/FourIsland_CableCarStation/border.bin: -------------------------------------------------------------------------------- 1 | k`jC -------------------------------------------------------------------------------- /data/layouts/FuchsiaCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/IndigoPlateau_Exterior/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Island_Harbor/border.bin: -------------------------------------------------------------------------------- 1 | k`jC -------------------------------------------------------------------------------- /data/layouts/LavaridgeTown_HerbShop/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/LavenderTown/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Mart/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/layouts/Mart/map.bin -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_EReaderTrainerHouse_1F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MossdeepCity_EReaderTrainerHouse_2F/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/MtEmber_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | dC -------------------------------------------------------------------------------- /data/layouts/MtEmber_Summit/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/NavelRock_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +c*C -------------------------------------------------------------------------------- /data/layouts/PacifidlogTown_House1/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/PacifidlogTown_House2/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/PalletTown/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/PewterCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/PokemonTower_1F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_2F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_3F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_4F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_5F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_6F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/PokemonTower_7F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/Prototype_SeviiIsle_6/map.bin: -------------------------------------------------------------------------------- 1 | + -------------------------------------------------------------------------------- /data/layouts/Prototype_SeviiIsle_7/map.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/RS_BattleTower/border.bin: -------------------------------------------------------------------------------- 1 | +c*C -------------------------------------------------------------------------------- /data/layouts/RS_PokemonCenter_1F/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/RS_SafariZone_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/RS_SafariZone_RestHouse/border.bin: -------------------------------------------------------------------------------- 1 | cd`C -------------------------------------------------------------------------------- /data/layouts/RecordCorner/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/Route1/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route10/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route11/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route15/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route2/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route22/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route23/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route24/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route25/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route3/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route4/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route5/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route6/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route7/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/Route8/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/Route9/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/RustboroCity_CuttersHouse/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/SSTidal_Corridor/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SSTidal_LowerDeck/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SSTidal_Rooms/border.bin: -------------------------------------------------------------------------------- 1 | cdbC -------------------------------------------------------------------------------- /data/layouts/SaffronCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/SaffronCity_Connection/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/SevenIsland/border.bin: -------------------------------------------------------------------------------- 1 | +c*C -------------------------------------------------------------------------------- /data/layouts/SevenIsland_SevaultCanyon_Entrance/border.bin: -------------------------------------------------------------------------------- 1 | +c*C -------------------------------------------------------------------------------- /data/layouts/SevenIsland_SevaultCanyon_TanobyKey/border.bin: -------------------------------------------------------------------------------- 1 | cbfC -------------------------------------------------------------------------------- /data/layouts/SixIsland_RuinValley/border.bin: -------------------------------------------------------------------------------- 1 | +d(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/SouthernIsland_Exterior/border.bin: -------------------------------------------------------------------------------- 1 | +f*C -------------------------------------------------------------------------------- /data/layouts/SouthernIsland_Interior/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/ThreeIsland_Port/border.bin: -------------------------------------------------------------------------------- 1 | +c*C -------------------------------------------------------------------------------- /data/layouts/TradeCenter/border.bin: -------------------------------------------------------------------------------- 1 | kdjC -------------------------------------------------------------------------------- /data/layouts/TwoIsland/border.bin: -------------------------------------------------------------------------------- 1 | +d(C -------------------------------------------------------------------------------- /data/layouts/TwoIsland_CapeBrink/border.bin: -------------------------------------------------------------------------------- 1 | +c*C -------------------------------------------------------------------------------- /data/layouts/ViridianCity/border.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/layouts/layouts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/layouts/layouts.json -------------------------------------------------------------------------------- /data/map_events.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/map_events.s -------------------------------------------------------------------------------- /data/maps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps.s -------------------------------------------------------------------------------- /data/maps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/.gitignore -------------------------------------------------------------------------------- /data/maps/ArtisanCave_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | ArtisanCave_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/ArtisanCave_1F/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/ArtisanCave_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | ArtisanCave_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/ArtisanCave_B1F/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleColosseum_2P/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleColosseum_2P_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleColosseum_4P/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleColosseum_4P_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_ExchangeServiceCorner/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge1/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge1_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge1/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge2/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge2/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge3/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge3_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge3/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge4/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge4_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge4/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge5/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge5_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge5/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge6/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge6_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge6/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge7/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge7_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge7/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge8/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Lounge8_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Lounge8/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Mart/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_Mart_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_Mart/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_OutsideEast/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_OutsideEast_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_OutsideEast/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_OutsideWest/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_OutsideWest_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_OutsideWest/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_PokemonCenter_1F/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_PokemonCenter_2F/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_RankingHall/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_RankingHall_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_RankingHall/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_ReceptionGate/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_ScottsHouse/scripts.inc: -------------------------------------------------------------------------------- 1 | BattleFrontier_ScottsHouse_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/BattleFrontier_ScottsHouse/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/CeruleanCave_1F_Blue/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/CeruleanCave_1F_Yellow/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/CeruleanCave_2F/scripts.inc: -------------------------------------------------------------------------------- 1 | CeruleanCave_2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/CeruleanCave_2F_Blue/scripts.inc: -------------------------------------------------------------------------------- 1 | CeruleanCave_2F_Blue_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/CeruleanCave_2F_Blue/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/CeruleanCave_2F_Yellow/scripts.inc: -------------------------------------------------------------------------------- 1 | CeruleanCave_2F_Yellow_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/CeruleanCave_2F_Yellow/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/CeruleanCave_B1F_Blue/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/CeruleanCave_B1F_Yellow/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/FarawayIsland_Exterior/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/FarawayIsland_Interior/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room11/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room11_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room12/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room12_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room13/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room13_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room14/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room14_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room2/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room3/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room3_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room5/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room5_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room6/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room6_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room7/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room7_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room8/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room8_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FiveIsland_LostCave_Room9/scripts.inc: -------------------------------------------------------------------------------- 1 | FiveIsland_LostCave_Room9_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FourIsland_Base/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/FourIsland_Base_CableCarStation/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/FourIsland_CableCarStation/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/FourIsland_House2/scripts.inc: -------------------------------------------------------------------------------- 1 | FourIsland_House2_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/FourIsland_IcefallCave_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | FourIsland_IcefallCave_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtEmber_RubyPath_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtEmber_RubyPath_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtEmber_RubyPath_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtEmber_RubyPath_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtEmber_RubyPath_B1F_Stairs/scripts.inc: -------------------------------------------------------------------------------- 1 | MtEmber_RubyPath_B1F_Stairs_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtEmber_RubyPath_B2F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtEmber_RubyPath_B2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtEmber_RubyPath_B2F_Stairs/scripts.inc: -------------------------------------------------------------------------------- 1 | MtEmber_RubyPath_B2F_Stairs_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtEmber_SummitPath_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtEmber_SummitPath_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtEmber_SummitPath_2F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtEmber_SummitPath_2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/MtEmber_SummitPath_3F/scripts.inc: -------------------------------------------------------------------------------- 1 | MtEmber_SummitPath_3F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_1F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B10F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B10F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B11F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B11F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B2F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B3F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B3F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B4F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B4F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B5F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B5F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B6F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B6F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B7F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B7F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B8F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B8F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_BasePath_B9F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_BasePath_B9F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_Fork/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_Fork_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_SummitPath_2F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_SummitPath_2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_SummitPath_3F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_SummitPath_3F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_SummitPath_4F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_SummitPath_4F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/NavelRock_SummitPath_5F/scripts.inc: -------------------------------------------------------------------------------- 1 | NavelRock_SummitPath_5F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Prototype_SeviiIsle_6/scripts.inc: -------------------------------------------------------------------------------- 1 | Prototype_SeviiIsle_6_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Prototype_SeviiIsle_7/scripts.inc: -------------------------------------------------------------------------------- 1 | Prototype_SeviiIsle_7_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Prototype_SeviiIsle_8/scripts.inc: -------------------------------------------------------------------------------- 1 | Prototype_SeviiIsle_8_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Prototype_SeviiIsle_9/scripts.inc: -------------------------------------------------------------------------------- 1 | Prototype_SeviiIsle_9_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/RS_BattleTower_Corridor/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/RS_BattleTower_Elevator/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/RecordCorner/scripts.inc: -------------------------------------------------------------------------------- 1 | RecordCorner_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route1/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route1/map.json -------------------------------------------------------------------------------- /data/maps/Route1/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route1/text.inc -------------------------------------------------------------------------------- /data/maps/Route10/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route10/map.json -------------------------------------------------------------------------------- /data/maps/Route10/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route10/text.inc -------------------------------------------------------------------------------- /data/maps/Route11/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route11/map.json -------------------------------------------------------------------------------- /data/maps/Route11/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route11/text.inc -------------------------------------------------------------------------------- /data/maps/Route12/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route12/map.json -------------------------------------------------------------------------------- /data/maps/Route12/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route12/text.inc -------------------------------------------------------------------------------- /data/maps/Route13/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route13/map.json -------------------------------------------------------------------------------- /data/maps/Route13/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route13/text.inc -------------------------------------------------------------------------------- /data/maps/Route14/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route14/map.json -------------------------------------------------------------------------------- /data/maps/Route14/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route14/text.inc -------------------------------------------------------------------------------- /data/maps/Route15/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route15/map.json -------------------------------------------------------------------------------- /data/maps/Route15/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route15/text.inc -------------------------------------------------------------------------------- /data/maps/Route16/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route16/map.json -------------------------------------------------------------------------------- /data/maps/Route16/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route16/text.inc -------------------------------------------------------------------------------- /data/maps/Route17/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route17/map.json -------------------------------------------------------------------------------- /data/maps/Route17/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route17/text.inc -------------------------------------------------------------------------------- /data/maps/Route18/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route18/map.json -------------------------------------------------------------------------------- /data/maps/Route18/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route18/text.inc -------------------------------------------------------------------------------- /data/maps/Route19/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route19/map.json -------------------------------------------------------------------------------- /data/maps/Route19/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route19/text.inc -------------------------------------------------------------------------------- /data/maps/Route19_UnusedHouse/scripts.inc: -------------------------------------------------------------------------------- 1 | Route19_UnusedHouse_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route2/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route2/map.json -------------------------------------------------------------------------------- /data/maps/Route2/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route2/text.inc -------------------------------------------------------------------------------- /data/maps/Route20/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route20/map.json -------------------------------------------------------------------------------- /data/maps/Route20/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route20/text.inc -------------------------------------------------------------------------------- /data/maps/Route20_Underwater/scripts.inc: -------------------------------------------------------------------------------- 1 | Route20_Underwater_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route20_Underwater/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/Route22/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route22/map.json -------------------------------------------------------------------------------- /data/maps/Route22/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route22/text.inc -------------------------------------------------------------------------------- /data/maps/Route23/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route23/map.json -------------------------------------------------------------------------------- /data/maps/Route23/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route23/text.inc -------------------------------------------------------------------------------- /data/maps/Route23_UnusedHouse/scripts.inc: -------------------------------------------------------------------------------- 1 | Route23_UnusedHouse_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route24/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route24/map.json -------------------------------------------------------------------------------- /data/maps/Route24/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route24/text.inc -------------------------------------------------------------------------------- /data/maps/Route25/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route25/map.json -------------------------------------------------------------------------------- /data/maps/Route25/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route25/text.inc -------------------------------------------------------------------------------- /data/maps/Route3/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route3/map.json -------------------------------------------------------------------------------- /data/maps/Route3/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route3/text.inc -------------------------------------------------------------------------------- /data/maps/Route4/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route4/map.json -------------------------------------------------------------------------------- /data/maps/Route4/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route4/text.inc -------------------------------------------------------------------------------- /data/maps/Route5/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route5/map.json -------------------------------------------------------------------------------- /data/maps/Route5/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route5/text.inc -------------------------------------------------------------------------------- /data/maps/Route6/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route6/map.json -------------------------------------------------------------------------------- /data/maps/Route6/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route6/text.inc -------------------------------------------------------------------------------- /data/maps/Route6_UnusedHouse/scripts.inc: -------------------------------------------------------------------------------- 1 | Route6_UnusedHouse_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/Route7/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route7/map.json -------------------------------------------------------------------------------- /data/maps/Route7/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route7/text.inc -------------------------------------------------------------------------------- /data/maps/Route8/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route8/map.json -------------------------------------------------------------------------------- /data/maps/Route8/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route8/text.inc -------------------------------------------------------------------------------- /data/maps/Route9/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route9/map.json -------------------------------------------------------------------------------- /data/maps/Route9/text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/Route9/text.inc -------------------------------------------------------------------------------- /data/maps/SSAnne_B1F_Corridor/scripts.inc: -------------------------------------------------------------------------------- 1 | SSAnne_B1F_Corridor_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SafariZone_NorthEast/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/SafariZone_NorthWest/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/SafariZone_NorthWest_RestHouse/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/SaffronCity_Connection/scripts.inc: -------------------------------------------------------------------------------- 1 | SaffronCity_Connection_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SeafoamIslands_B2F/scripts.inc: -------------------------------------------------------------------------------- 1 | SeafoamIslands_B2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SevenIsland_TanobyRuins/scripts.inc: -------------------------------------------------------------------------------- 1 | SevenIsland_TanobyRuins_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SevenIsland_UnusedHouse/scripts.inc: -------------------------------------------------------------------------------- 1 | SevenIsland_UnusedHouse_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SixIsland_DottedHole_B1F/scripts.inc: -------------------------------------------------------------------------------- 1 | SixIsland_DottedHole_B1F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SixIsland_DottedHole_B2F/scripts.inc: -------------------------------------------------------------------------------- 1 | SixIsland_DottedHole_B2F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SixIsland_DottedHole_B3F/scripts.inc: -------------------------------------------------------------------------------- 1 | SixIsland_DottedHole_B3F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SixIsland_DottedHole_B4F/scripts.inc: -------------------------------------------------------------------------------- 1 | SixIsland_DottedHole_B4F_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/SouthernIsland_Exterior/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/SouthernIsland_Interior/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/ThreeIsland_BondBridge_Underwater/text.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/maps/TradeCenter/scripts.inc: -------------------------------------------------------------------------------- 1 | TradeCenter_MapScripts:: 2 | .byte 0 3 | -------------------------------------------------------------------------------- /data/maps/map_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/maps/map_groups.json -------------------------------------------------------------------------------- /data/mb_berry_fix.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/mb_berry_fix.gba -------------------------------------------------------------------------------- /data/mb_colosseum.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/mb_colosseum.gba -------------------------------------------------------------------------------- /data/mb_ereader.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/mb_ereader.gba -------------------------------------------------------------------------------- /data/multiboot_ereader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/multiboot_ereader.s -------------------------------------------------------------------------------- /data/mystery_event_msg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/mystery_event_msg.s -------------------------------------------------------------------------------- /data/script_cmd_table.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/script_cmd_table.inc -------------------------------------------------------------------------------- /data/scripts/aide.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/aide.inc -------------------------------------------------------------------------------- /data/scripts/bag_full.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/bag_full.inc -------------------------------------------------------------------------------- /data/scripts/day_care.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/day_care.inc -------------------------------------------------------------------------------- /data/scripts/flash.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/flash.inc -------------------------------------------------------------------------------- /data/scripts/hole.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/hole.inc -------------------------------------------------------------------------------- /data/scripts/movement.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/movement.inc -------------------------------------------------------------------------------- /data/scripts/pc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/pc.inc -------------------------------------------------------------------------------- /data/scripts/repel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/repel.inc -------------------------------------------------------------------------------- /data/scripts/route23.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/route23.inc -------------------------------------------------------------------------------- /data/scripts/seagallop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/seagallop.inc -------------------------------------------------------------------------------- /data/scripts/surf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/surf.inc -------------------------------------------------------------------------------- /data/scripts/trainers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/trainers.inc -------------------------------------------------------------------------------- /data/scripts/white_out.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/scripts/white_out.inc -------------------------------------------------------------------------------- /data/sound_data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/sound_data.s -------------------------------------------------------------------------------- /data/specials.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/specials.inc -------------------------------------------------------------------------------- /data/text/aide.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/aide.inc -------------------------------------------------------------------------------- /data/text/braille.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/braille.inc -------------------------------------------------------------------------------- /data/text/day_care.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/day_care.inc -------------------------------------------------------------------------------- /data/text/fame_checker.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/fame_checker.inc -------------------------------------------------------------------------------- /data/text/flavor_text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/flavor_text.inc -------------------------------------------------------------------------------- /data/text/help_system.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/help_system.inc -------------------------------------------------------------------------------- /data/text/ingame_trade.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/ingame_trade.inc -------------------------------------------------------------------------------- /data/text/itemfinder.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/itemfinder.inc -------------------------------------------------------------------------------- /data/text/obtain_item.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/obtain_item.inc -------------------------------------------------------------------------------- /data/text/pc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/pc.inc -------------------------------------------------------------------------------- /data/text/pc_transfer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/pc_transfer.inc -------------------------------------------------------------------------------- /data/text/poke_mart.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/poke_mart.inc -------------------------------------------------------------------------------- /data/text/pokedude.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/pokedude.inc -------------------------------------------------------------------------------- /data/text/route23.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/route23.inc -------------------------------------------------------------------------------- /data/text/safari_zone.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/safari_zone.inc -------------------------------------------------------------------------------- /data/text/save.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/save.inc -------------------------------------------------------------------------------- /data/text/seagallop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/seagallop.inc -------------------------------------------------------------------------------- /data/text/sign_lady.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/sign_lady.inc -------------------------------------------------------------------------------- /data/text/surf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/surf.inc -------------------------------------------------------------------------------- /data/text/trainer_card.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/trainer_card.inc -------------------------------------------------------------------------------- /data/text/trainers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/trainers.inc -------------------------------------------------------------------------------- /data/text/white_out.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/data/text/white_out.inc -------------------------------------------------------------------------------- /docs/bugs_and_glitches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/docs/bugs_and_glitches.md -------------------------------------------------------------------------------- /firered.sha1: -------------------------------------------------------------------------------- 1 | 41cb23d8dccc8ebd7c649cd8fbb58eeace6e2fdc pokefirered.gba 2 | -------------------------------------------------------------------------------- /firered_rev1.sha1: -------------------------------------------------------------------------------- 1 | dd5945db9b930750cb39d00c84da8571feebf417 pokefirered_rev1.gba 2 | -------------------------------------------------------------------------------- /graphics/cable_car/bg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/cable_car/bg.pal -------------------------------------------------------------------------------- /graphics/cable_car/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/cable_car/bg.png -------------------------------------------------------------------------------- /graphics/contest/faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/contest/faces.png -------------------------------------------------------------------------------- /graphics/contest/judge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/contest/judge.png -------------------------------------------------------------------------------- /graphics/credits/rival.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/credits/rival.png -------------------------------------------------------------------------------- /graphics/fonts/braille.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/fonts/braille.png -------------------------------------------------------------------------------- /graphics/interface/bag.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/interface/bag.pal -------------------------------------------------------------------------------- /graphics/intro/gengar.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/intro/gengar.pal -------------------------------------------------------------------------------- /graphics/item_menu/bg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/item_menu/bg.bin -------------------------------------------------------------------------------- /graphics/item_menu/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/item_menu/bg.png -------------------------------------------------------------------------------- /graphics/item_pc/bg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/item_pc/bg.bin -------------------------------------------------------------------------------- /graphics/item_pc/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/item_pc/bg.png -------------------------------------------------------------------------------- /graphics/link/321start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/link/321start.png -------------------------------------------------------------------------------- /graphics/mail/bead/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/mail/bead/map.bin -------------------------------------------------------------------------------- /graphics/mail/fab/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/mail/fab/map.bin -------------------------------------------------------------------------------- /graphics/mail/mech/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/mail/mech/map.bin -------------------------------------------------------------------------------- /graphics/mail/wave/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/mail/wave/map.bin -------------------------------------------------------------------------------- /graphics/mail/wood/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/mail/wood/map.bin -------------------------------------------------------------------------------- /graphics/main_menu/bg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/main_menu/bg.pal -------------------------------------------------------------------------------- /graphics/misc/confetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/misc/confetti.png -------------------------------------------------------------------------------- /graphics/party_menu/bg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/party_menu/bg.bin -------------------------------------------------------------------------------- /graphics/party_menu/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/party_menu/bg.png -------------------------------------------------------------------------------- /graphics/ss_anne/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/ss_anne/smoke.png -------------------------------------------------------------------------------- /graphics/ss_anne/wake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/ss_anne/wake.png -------------------------------------------------------------------------------- /graphics/tm_case/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/tm_case/disc.png -------------------------------------------------------------------------------- /graphics/tm_case/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/tm_case/hm.png -------------------------------------------------------------------------------- /graphics/tm_case/menu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/tm_case/menu.bin -------------------------------------------------------------------------------- /graphics/trade/black.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/black.pal -------------------------------------------------------------------------------- /graphics/trade/cursor.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/cursor.pal -------------------------------------------------------------------------------- /graphics/trade/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/cursor.png -------------------------------------------------------------------------------- /graphics/trade/gba.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/gba.pal -------------------------------------------------------------------------------- /graphics/trade/gba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/gba.png -------------------------------------------------------------------------------- /graphics/trade/menu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/menu.bin -------------------------------------------------------------------------------- /graphics/trade/menu.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/menu.pal -------------------------------------------------------------------------------- /graphics/trade/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/menu.png -------------------------------------------------------------------------------- /graphics/trade/shadow.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/shadow.pal -------------------------------------------------------------------------------- /graphics/trade/text.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/text.pal -------------------------------------------------------------------------------- /graphics/trade/unused.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/unused.bin -------------------------------------------------------------------------------- /graphics/trade/unused1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/trade/unused1.pal -------------------------------------------------------------------------------- /graphics/unused/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/unused/shadow.png -------------------------------------------------------------------------------- /graphics/weather/ash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/weather/ash.png -------------------------------------------------------------------------------- /graphics/weather/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/weather/cloud.png -------------------------------------------------------------------------------- /graphics/weather/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/weather/rain.png -------------------------------------------------------------------------------- /graphics/weather/snow0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/weather/snow0.png -------------------------------------------------------------------------------- /graphics/weather/snow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics/weather/snow1.png -------------------------------------------------------------------------------- /graphics_file_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/graphics_file_rules.mk -------------------------------------------------------------------------------- /include/bag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/bag.h -------------------------------------------------------------------------------- /include/battle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle.h -------------------------------------------------------------------------------- /include/battle_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_anim.h -------------------------------------------------------------------------------- /include/battle_bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_bg.h -------------------------------------------------------------------------------- /include/battle_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_interface.h -------------------------------------------------------------------------------- /include/battle_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_main.h -------------------------------------------------------------------------------- /include/battle_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_message.h -------------------------------------------------------------------------------- /include/battle_records.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_records.h -------------------------------------------------------------------------------- /include/battle_scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_scripts.h -------------------------------------------------------------------------------- /include/battle_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_setup.h -------------------------------------------------------------------------------- /include/battle_tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_tower.h -------------------------------------------------------------------------------- /include/battle_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_util.h -------------------------------------------------------------------------------- /include/battle_util2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/battle_util2.h -------------------------------------------------------------------------------- /include/berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/berry.h -------------------------------------------------------------------------------- /include/berry_crush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/berry_crush.h -------------------------------------------------------------------------------- /include/berry_pouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/berry_pouch.h -------------------------------------------------------------------------------- /include/berry_powder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/berry_powder.h -------------------------------------------------------------------------------- /include/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/bg.h -------------------------------------------------------------------------------- /include/bg_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/bg_regs.h -------------------------------------------------------------------------------- /include/bike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/bike.h -------------------------------------------------------------------------------- /include/blend_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/blend_palette.h -------------------------------------------------------------------------------- /include/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/blit.h -------------------------------------------------------------------------------- /include/cable_club.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/cable_club.h -------------------------------------------------------------------------------- /include/cereader_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/cereader_tool.h -------------------------------------------------------------------------------- /include/characters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/characters.h -------------------------------------------------------------------------------- /include/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/coins.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/config.h -------------------------------------------------------------------------------- /include/constants/battle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/battle.h -------------------------------------------------------------------------------- /include/constants/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/coins.h -------------------------------------------------------------------------------- /include/constants/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/flags.h -------------------------------------------------------------------------------- /include/constants/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/global.h -------------------------------------------------------------------------------- /include/constants/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/items.h -------------------------------------------------------------------------------- /include/constants/maps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/maps.h -------------------------------------------------------------------------------- /include/constants/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/menu.h -------------------------------------------------------------------------------- /include/constants/moves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/moves.h -------------------------------------------------------------------------------- /include/constants/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/rgb.h -------------------------------------------------------------------------------- /include/constants/songs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/songs.h -------------------------------------------------------------------------------- /include/constants/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/sound.h -------------------------------------------------------------------------------- /include/constants/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/trade.h -------------------------------------------------------------------------------- /include/constants/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/constants/vars.h -------------------------------------------------------------------------------- /include/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/credits.h -------------------------------------------------------------------------------- /include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/data.h -------------------------------------------------------------------------------- /include/daycare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/daycare.h -------------------------------------------------------------------------------- /include/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/decompress.h -------------------------------------------------------------------------------- /include/decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/decoration.h -------------------------------------------------------------------------------- /include/digit_obj_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/digit_obj_util.h -------------------------------------------------------------------------------- /include/diploma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/diploma.h -------------------------------------------------------------------------------- /include/dma3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/dma3.h -------------------------------------------------------------------------------- /include/easy_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/easy_chat.h -------------------------------------------------------------------------------- /include/egg_hatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/egg_hatch.h -------------------------------------------------------------------------------- /include/ereader_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/ereader_helpers.h -------------------------------------------------------------------------------- /include/event_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/event_data.h -------------------------------------------------------------------------------- /include/event_scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/event_scripts.h -------------------------------------------------------------------------------- /include/evolution_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/evolution_scene.h -------------------------------------------------------------------------------- /include/fame_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/fame_checker.h -------------------------------------------------------------------------------- /include/faraway_island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/faraway_island.h -------------------------------------------------------------------------------- /include/field_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/field_camera.h -------------------------------------------------------------------------------- /include/field_door.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/field_door.h -------------------------------------------------------------------------------- /include/field_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/field_effect.h -------------------------------------------------------------------------------- /include/field_poison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/field_poison.h -------------------------------------------------------------------------------- /include/field_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/field_screen.h -------------------------------------------------------------------------------- /include/field_specials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/field_specials.h -------------------------------------------------------------------------------- /include/field_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/field_tasks.h -------------------------------------------------------------------------------- /include/field_weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/field_weather.h -------------------------------------------------------------------------------- /include/fieldmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/fieldmap.h -------------------------------------------------------------------------------- /include/fldeff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/fldeff.h -------------------------------------------------------------------------------- /include/gba/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gba/defines.h -------------------------------------------------------------------------------- /include/gba/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gba/gba.h -------------------------------------------------------------------------------- /include/gba/io_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gba/io_reg.h -------------------------------------------------------------------------------- /include/gba/isagbprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gba/isagbprint.h -------------------------------------------------------------------------------- /include/gba/m4a_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gba/m4a_internal.h -------------------------------------------------------------------------------- /include/gba/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gba/macro.h -------------------------------------------------------------------------------- /include/gba/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gba/multiboot.h -------------------------------------------------------------------------------- /include/gba/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gba/syscall.h -------------------------------------------------------------------------------- /include/gba/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gba/types.h -------------------------------------------------------------------------------- /include/gflib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gflib.h -------------------------------------------------------------------------------- /include/global.berry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/global.berry.h -------------------------------------------------------------------------------- /include/global.fieldmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/global.fieldmap.h -------------------------------------------------------------------------------- /include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/global.h -------------------------------------------------------------------------------- /include/gpu_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/gpu_regs.h -------------------------------------------------------------------------------- /include/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/graphics.h -------------------------------------------------------------------------------- /include/hall_of_fame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/hall_of_fame.h -------------------------------------------------------------------------------- /include/heal_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/heal_location.h -------------------------------------------------------------------------------- /include/help_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/help_message.h -------------------------------------------------------------------------------- /include/help_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/help_system.h -------------------------------------------------------------------------------- /include/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/intro.h -------------------------------------------------------------------------------- /include/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/item.h -------------------------------------------------------------------------------- /include/item_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/item_menu.h -------------------------------------------------------------------------------- /include/item_menu_icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/item_menu_icons.h -------------------------------------------------------------------------------- /include/item_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/item_pc.h -------------------------------------------------------------------------------- /include/item_use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/item_use.h -------------------------------------------------------------------------------- /include/itemfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/itemfinder.h -------------------------------------------------------------------------------- /include/keyboard_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/keyboard_text.h -------------------------------------------------------------------------------- /include/libgcnmultiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/libgcnmultiboot.h -------------------------------------------------------------------------------- /include/librfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/librfu.h -------------------------------------------------------------------------------- /include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/link.h -------------------------------------------------------------------------------- /include/link_rfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/link_rfu.h -------------------------------------------------------------------------------- /include/list_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/list_menu.h -------------------------------------------------------------------------------- /include/load_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/load_save.h -------------------------------------------------------------------------------- /include/m4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/m4a.h -------------------------------------------------------------------------------- /include/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/mail.h -------------------------------------------------------------------------------- /include/mail_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/mail_data.h -------------------------------------------------------------------------------- /include/mailbox_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/mailbox_pc.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/main.h -------------------------------------------------------------------------------- /include/main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/main_menu.h -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/map_name_popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/map_name_popup.h -------------------------------------------------------------------------------- /include/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/math_util.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/menu_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/menu_helpers.h -------------------------------------------------------------------------------- /include/menu_indicators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/menu_indicators.h -------------------------------------------------------------------------------- /include/mini_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/mini_printf.h -------------------------------------------------------------------------------- /include/mon_markings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/mon_markings.h -------------------------------------------------------------------------------- /include/money.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/money.h -------------------------------------------------------------------------------- /include/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/multiboot.h -------------------------------------------------------------------------------- /include/mystery_gift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/mystery_gift.h -------------------------------------------------------------------------------- /include/naming_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/naming_screen.h -------------------------------------------------------------------------------- /include/new_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/new_game.h -------------------------------------------------------------------------------- /include/new_menu_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/new_menu_helpers.h -------------------------------------------------------------------------------- /include/oak_speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/oak_speech.h -------------------------------------------------------------------------------- /include/option_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/option_menu.h -------------------------------------------------------------------------------- /include/overworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/overworld.h -------------------------------------------------------------------------------- /include/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/palette.h -------------------------------------------------------------------------------- /include/palette_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/palette_util.h -------------------------------------------------------------------------------- /include/party_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/party_menu.h -------------------------------------------------------------------------------- /include/pc_screen_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/pc_screen_effect.h -------------------------------------------------------------------------------- /include/play_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/play_time.h -------------------------------------------------------------------------------- /include/player_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/player_pc.h -------------------------------------------------------------------------------- /include/pokeball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/pokeball.h -------------------------------------------------------------------------------- /include/pokedex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/pokedex.h -------------------------------------------------------------------------------- /include/pokedex_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/pokedex_screen.h -------------------------------------------------------------------------------- /include/pokemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/pokemon.h -------------------------------------------------------------------------------- /include/pokemon_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/pokemon_icon.h -------------------------------------------------------------------------------- /include/pokemon_jump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/pokemon_jump.h -------------------------------------------------------------------------------- /include/quest_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/quest_log.h -------------------------------------------------------------------------------- /include/quest_log_battle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/quest_log_battle.h -------------------------------------------------------------------------------- /include/quest_log_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/quest_log_player.h -------------------------------------------------------------------------------- /include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/random.h -------------------------------------------------------------------------------- /include/region_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/region_map.h -------------------------------------------------------------------------------- /include/reset_save_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/reset_save_heap.h -------------------------------------------------------------------------------- /include/roamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/roamer.h -------------------------------------------------------------------------------- /include/safari_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/safari_zone.h -------------------------------------------------------------------------------- /include/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/save.h -------------------------------------------------------------------------------- /include/save_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/save_location.h -------------------------------------------------------------------------------- /include/save_menu_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/save_menu_util.h -------------------------------------------------------------------------------- /include/scanline_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/scanline_effect.h -------------------------------------------------------------------------------- /include/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/script.h -------------------------------------------------------------------------------- /include/script_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/script_menu.h -------------------------------------------------------------------------------- /include/script_movement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/script_movement.h -------------------------------------------------------------------------------- /include/shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/shop.h -------------------------------------------------------------------------------- /include/slot_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/slot_machine.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/sprite.h -------------------------------------------------------------------------------- /include/start_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/start_menu.h -------------------------------------------------------------------------------- /include/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/string_util.h -------------------------------------------------------------------------------- /include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/strings.h -------------------------------------------------------------------------------- /include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/task.h -------------------------------------------------------------------------------- /include/teachy_tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/teachy_tv.h -------------------------------------------------------------------------------- /include/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/text.h -------------------------------------------------------------------------------- /include/text_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/text_window.h -------------------------------------------------------------------------------- /include/tilemap_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/tilemap_util.h -------------------------------------------------------------------------------- /include/tileset_anims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/tileset_anims.h -------------------------------------------------------------------------------- /include/tilesets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/tilesets.h -------------------------------------------------------------------------------- /include/title_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/title_screen.h -------------------------------------------------------------------------------- /include/tm_case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/tm_case.h -------------------------------------------------------------------------------- /include/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/trade.h -------------------------------------------------------------------------------- /include/trade_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/trade_scene.h -------------------------------------------------------------------------------- /include/trainer_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/trainer_card.h -------------------------------------------------------------------------------- /include/trainer_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/trainer_ids.h -------------------------------------------------------------------------------- /include/trainer_see.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/trainer_see.h -------------------------------------------------------------------------------- /include/trainer_tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/trainer_tower.h -------------------------------------------------------------------------------- /include/trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/trig.h -------------------------------------------------------------------------------- /include/union_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/union_room.h -------------------------------------------------------------------------------- /include/union_room_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/union_room_chat.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/util.h -------------------------------------------------------------------------------- /include/vs_seeker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/vs_seeker.h -------------------------------------------------------------------------------- /include/wild_encounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/wild_encounter.h -------------------------------------------------------------------------------- /include/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/window.h -------------------------------------------------------------------------------- /include/wonder_news.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/include/wonder_news.h -------------------------------------------------------------------------------- /json_data_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/json_data_rules.mk -------------------------------------------------------------------------------- /ld_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/ld_script.ld -------------------------------------------------------------------------------- /ld_script_modern.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/ld_script_modern.ld -------------------------------------------------------------------------------- /leafgreen.sha1: -------------------------------------------------------------------------------- 1 | 574fa542ffebb14be69902d1d36f1ec0a4afd71e pokeleafgreen.gba 2 | -------------------------------------------------------------------------------- /leafgreen_rev1.sha1: -------------------------------------------------------------------------------- 1 | 7862c67bdecbe21d1d69ce082ce34327e1c6ed5e pokeleafgreen_rev1.gba 2 | -------------------------------------------------------------------------------- /map_data_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/map_data_rules.mk -------------------------------------------------------------------------------- /patch/frlgPlus.bps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/patch/frlgPlus.bps -------------------------------------------------------------------------------- /replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/replace.sh -------------------------------------------------------------------------------- /screenshots/Dive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/screenshots/Dive.png -------------------------------------------------------------------------------- /screenshots/Key System.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/screenshots/Key System.gif -------------------------------------------------------------------------------- /screenshots/Latias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/screenshots/Latias.png -------------------------------------------------------------------------------- /screenshots/Latios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/screenshots/Latios.png -------------------------------------------------------------------------------- /screenshots/Main Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/screenshots/Main Menu.png -------------------------------------------------------------------------------- /screenshots/New Option.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/screenshots/New Option.gif -------------------------------------------------------------------------------- /songs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/songs.mk -------------------------------------------------------------------------------- /sound/MPlayDef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/MPlayDef.s -------------------------------------------------------------------------------- /sound/cry_tables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/cry_tables.inc -------------------------------------------------------------------------------- /sound/keysplit_tables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/keysplit_tables.inc -------------------------------------------------------------------------------- /sound/programmable_wave_samples/15.pcm: -------------------------------------------------------------------------------- 1 | &8J\n~lZH6$ -------------------------------------------------------------------------------- /sound/song_table.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/song_table.inc -------------------------------------------------------------------------------- /sound/songs/midi/se_a.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/midi/se_a.mid -------------------------------------------------------------------------------- /sound/songs/midi/se_e.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/midi/se_e.mid -------------------------------------------------------------------------------- /sound/songs/midi/se_i.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/midi/se_i.mid -------------------------------------------------------------------------------- /sound/songs/midi/se_n.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/midi/se_n.mid -------------------------------------------------------------------------------- /sound/songs/midi/se_o.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/midi/se_o.mid -------------------------------------------------------------------------------- /sound/songs/midi/se_u.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/midi/se_u.mid -------------------------------------------------------------------------------- /sound/songs/se_dex_page.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_dex_page.s -------------------------------------------------------------------------------- /sound/songs/se_m_absorb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_absorb.s -------------------------------------------------------------------------------- /sound/songs/se_m_attract.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_attract.s -------------------------------------------------------------------------------- /sound/songs/se_m_barrier.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_barrier.s -------------------------------------------------------------------------------- /sound/songs/se_m_bite.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_bite.s -------------------------------------------------------------------------------- /sound/songs/se_m_bubble.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_bubble.s -------------------------------------------------------------------------------- /sound/songs/se_m_bubble2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_bubble2.s -------------------------------------------------------------------------------- /sound/songs/se_m_bubble3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_bubble3.s -------------------------------------------------------------------------------- /sound/songs/se_m_charge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_charge.s -------------------------------------------------------------------------------- /sound/songs/se_m_charm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_charm.s -------------------------------------------------------------------------------- /sound/songs/se_m_detect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_detect.s -------------------------------------------------------------------------------- /sound/songs/se_m_dig.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_dig.s -------------------------------------------------------------------------------- /sound/songs/se_m_dive.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_dive.s -------------------------------------------------------------------------------- /sound/songs/se_m_ember.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_ember.s -------------------------------------------------------------------------------- /sound/songs/se_m_encore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_encore.s -------------------------------------------------------------------------------- /sound/songs/se_m_encore2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_encore2.s -------------------------------------------------------------------------------- /sound/songs/se_m_flatter.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_flatter.s -------------------------------------------------------------------------------- /sound/songs/se_m_hail.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_hail.s -------------------------------------------------------------------------------- /sound/songs/se_m_harden.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_harden.s -------------------------------------------------------------------------------- /sound/songs/se_m_haze.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_haze.s -------------------------------------------------------------------------------- /sound/songs/se_m_lick.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_lick.s -------------------------------------------------------------------------------- /sound/songs/se_m_lock_on.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_lock_on.s -------------------------------------------------------------------------------- /sound/songs/se_m_mist.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_mist.s -------------------------------------------------------------------------------- /sound/songs/se_m_psybeam.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_psybeam.s -------------------------------------------------------------------------------- /sound/songs/se_m_reflect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_reflect.s -------------------------------------------------------------------------------- /sound/songs/se_m_screech.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_screech.s -------------------------------------------------------------------------------- /sound/songs/se_m_sing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_sing.s -------------------------------------------------------------------------------- /sound/songs/se_m_sketch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_sketch.s -------------------------------------------------------------------------------- /sound/songs/se_m_snore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_snore.s -------------------------------------------------------------------------------- /sound/songs/se_m_spit_up.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_spit_up.s -------------------------------------------------------------------------------- /sound/songs/se_m_surf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_surf.s -------------------------------------------------------------------------------- /sound/songs/se_m_swagger.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_swagger.s -------------------------------------------------------------------------------- /sound/songs/se_m_yawn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/songs/se_m_yawn.s -------------------------------------------------------------------------------- /sound/voice_groups.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sound/voice_groups.inc -------------------------------------------------------------------------------- /spritesheet_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/spritesheet_rules.mk -------------------------------------------------------------------------------- /src/agb_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/agb_flash.c -------------------------------------------------------------------------------- /src/agb_flash_1m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/agb_flash_1m.c -------------------------------------------------------------------------------- /src/agb_flash_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/agb_flash_le.c -------------------------------------------------------------------------------- /src/agb_flash_mx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/agb_flash_mx.c -------------------------------------------------------------------------------- /src/bag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/bag.c -------------------------------------------------------------------------------- /src/battle_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_anim.c -------------------------------------------------------------------------------- /src/battle_anim_bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_anim_bug.c -------------------------------------------------------------------------------- /src/battle_anim_dark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_anim_dark.c -------------------------------------------------------------------------------- /src/battle_anim_fight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_anim_fight.c -------------------------------------------------------------------------------- /src/battle_anim_fire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_anim_fire.c -------------------------------------------------------------------------------- /src/battle_anim_ghost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_anim_ghost.c -------------------------------------------------------------------------------- /src/battle_anim_ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_anim_ice.c -------------------------------------------------------------------------------- /src/battle_anim_mons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_anim_mons.c -------------------------------------------------------------------------------- /src/battle_anim_rock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_anim_rock.c -------------------------------------------------------------------------------- /src/battle_anim_water.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_anim_water.c -------------------------------------------------------------------------------- /src/battle_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_bg.c -------------------------------------------------------------------------------- /src/battle_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_interface.c -------------------------------------------------------------------------------- /src/battle_intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_intro.c -------------------------------------------------------------------------------- /src/battle_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_main.c -------------------------------------------------------------------------------- /src/battle_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_message.c -------------------------------------------------------------------------------- /src/battle_records.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_records.c -------------------------------------------------------------------------------- /src/battle_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_setup.c -------------------------------------------------------------------------------- /src/battle_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_tower.c -------------------------------------------------------------------------------- /src/battle_transition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_transition.c -------------------------------------------------------------------------------- /src/battle_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_util.c -------------------------------------------------------------------------------- /src/battle_util2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/battle_util2.c -------------------------------------------------------------------------------- /src/berry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/berry.c -------------------------------------------------------------------------------- /src/berry_crush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/berry_crush.c -------------------------------------------------------------------------------- /src/berry_fix_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/berry_fix_program.c -------------------------------------------------------------------------------- /src/berry_pouch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/berry_pouch.c -------------------------------------------------------------------------------- /src/berry_powder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/berry_powder.c -------------------------------------------------------------------------------- /src/bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/bg.c -------------------------------------------------------------------------------- /src/bg_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/bg_regs.c -------------------------------------------------------------------------------- /src/bike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/bike.c -------------------------------------------------------------------------------- /src/blend_palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/blend_palette.c -------------------------------------------------------------------------------- /src/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/blit.c -------------------------------------------------------------------------------- /src/braille_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/braille_text.c -------------------------------------------------------------------------------- /src/buy_menu_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/buy_menu_helpers.c -------------------------------------------------------------------------------- /src/cable_car.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/cable_car.c -------------------------------------------------------------------------------- /src/cable_car_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/cable_car_util.c -------------------------------------------------------------------------------- /src/cable_club.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/cable_club.c -------------------------------------------------------------------------------- /src/cereader_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/cereader_tool.c -------------------------------------------------------------------------------- /src/coins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/coins.c -------------------------------------------------------------------------------- /src/credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/credits.c -------------------------------------------------------------------------------- /src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/crt0.s -------------------------------------------------------------------------------- /src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/data.c -------------------------------------------------------------------------------- /src/data/battle_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/data/battle_anim.h -------------------------------------------------------------------------------- /src/data/battle_moves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/data/battle_moves.h -------------------------------------------------------------------------------- /src/data/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/data/items.json -------------------------------------------------------------------------------- /src/data/items.json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/data/items.json.txt -------------------------------------------------------------------------------- /src/data/party_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/data/party_menu.h -------------------------------------------------------------------------------- /src/data/trainers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/data/trainers.h -------------------------------------------------------------------------------- /src/data/union_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/data/union_room.h -------------------------------------------------------------------------------- /src/daycare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/daycare.c -------------------------------------------------------------------------------- /src/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/decompress.c -------------------------------------------------------------------------------- /src/decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/decoration.c -------------------------------------------------------------------------------- /src/digit_obj_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/digit_obj_util.c -------------------------------------------------------------------------------- /src/diploma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/diploma.c -------------------------------------------------------------------------------- /src/dma3_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/dma3_manager.c -------------------------------------------------------------------------------- /src/easy_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/easy_chat.c -------------------------------------------------------------------------------- /src/easy_chat_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/easy_chat_2.c -------------------------------------------------------------------------------- /src/easy_chat_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/easy_chat_3.c -------------------------------------------------------------------------------- /src/ereader_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/ereader_helpers.c -------------------------------------------------------------------------------- /src/ereader_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/ereader_screen.c -------------------------------------------------------------------------------- /src/event_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/event_data.c -------------------------------------------------------------------------------- /src/event_object_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/event_object_lock.c -------------------------------------------------------------------------------- /src/evolution_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/evolution_scene.c -------------------------------------------------------------------------------- /src/fame_checker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fame_checker.c -------------------------------------------------------------------------------- /src/faraway_island.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/faraway_island.c -------------------------------------------------------------------------------- /src/field_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/field_camera.c -------------------------------------------------------------------------------- /src/field_door.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/field_door.c -------------------------------------------------------------------------------- /src/field_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/field_effect.c -------------------------------------------------------------------------------- /src/field_message_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/field_message_box.c -------------------------------------------------------------------------------- /src/field_poison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/field_poison.c -------------------------------------------------------------------------------- /src/field_specials.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/field_specials.c -------------------------------------------------------------------------------- /src/field_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/field_tasks.c -------------------------------------------------------------------------------- /src/field_weather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/field_weather.c -------------------------------------------------------------------------------- /src/fieldmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fieldmap.c -------------------------------------------------------------------------------- /src/fldeff_berrytree.c: -------------------------------------------------------------------------------- 1 | // From R/S, removed 2 | void DoWateringBerryTreeAnim(void) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /src/fldeff_cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fldeff_cut.c -------------------------------------------------------------------------------- /src/fldeff_dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fldeff_dig.c -------------------------------------------------------------------------------- /src/fldeff_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fldeff_flash.c -------------------------------------------------------------------------------- /src/fldeff_poison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fldeff_poison.c -------------------------------------------------------------------------------- /src/fldeff_rocksmash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fldeff_rocksmash.c -------------------------------------------------------------------------------- /src/fldeff_softboiled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fldeff_softboiled.c -------------------------------------------------------------------------------- /src/fldeff_strength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fldeff_strength.c -------------------------------------------------------------------------------- /src/fldeff_sweetscent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fldeff_sweetscent.c -------------------------------------------------------------------------------- /src/fldeff_teleport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/fldeff_teleport.c -------------------------------------------------------------------------------- /src/gpu_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/gpu_regs.c -------------------------------------------------------------------------------- /src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/graphics.c -------------------------------------------------------------------------------- /src/hall_of_fame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/hall_of_fame.c -------------------------------------------------------------------------------- /src/heal_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/heal_location.c -------------------------------------------------------------------------------- /src/help_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/help_message.c -------------------------------------------------------------------------------- /src/help_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/help_system.c -------------------------------------------------------------------------------- /src/help_system_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/help_system_util.c -------------------------------------------------------------------------------- /src/hof_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/hof_pc.c -------------------------------------------------------------------------------- /src/intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/intro.c -------------------------------------------------------------------------------- /src/isagbprn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/isagbprn.c -------------------------------------------------------------------------------- /src/item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/item.c -------------------------------------------------------------------------------- /src/item_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/item_menu.c -------------------------------------------------------------------------------- /src/item_menu_icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/item_menu_icons.c -------------------------------------------------------------------------------- /src/item_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/item_pc.c -------------------------------------------------------------------------------- /src/item_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/item_use.c -------------------------------------------------------------------------------- /src/itemfinder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/itemfinder.c -------------------------------------------------------------------------------- /src/key_system_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/key_system_menu.c -------------------------------------------------------------------------------- /src/keyboard_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/keyboard_text.c -------------------------------------------------------------------------------- /src/learn_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/learn_move.c -------------------------------------------------------------------------------- /src/libagbsyscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/libagbsyscall.s -------------------------------------------------------------------------------- /src/libgcnmultiboot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/libgcnmultiboot.s -------------------------------------------------------------------------------- /src/librfu_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/librfu_intr.c -------------------------------------------------------------------------------- /src/librfu_rfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/librfu_rfu.c -------------------------------------------------------------------------------- /src/librfu_sio32id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/librfu_sio32id.c -------------------------------------------------------------------------------- /src/librfu_stwi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/librfu_stwi.c -------------------------------------------------------------------------------- /src/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/link.c -------------------------------------------------------------------------------- /src/link_rfu_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/link_rfu_2.c -------------------------------------------------------------------------------- /src/link_rfu_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/link_rfu_3.c -------------------------------------------------------------------------------- /src/list_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/list_menu.c -------------------------------------------------------------------------------- /src/load_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/load_save.c -------------------------------------------------------------------------------- /src/m4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/m4a.c -------------------------------------------------------------------------------- /src/m4a_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/m4a_1.s -------------------------------------------------------------------------------- /src/m4a_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/m4a_tables.c -------------------------------------------------------------------------------- /src/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/mail.c -------------------------------------------------------------------------------- /src/mail_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/mail_data.c -------------------------------------------------------------------------------- /src/mailbox_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/mailbox_pc.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/main_menu.c -------------------------------------------------------------------------------- /src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/malloc.c -------------------------------------------------------------------------------- /src/map_name_popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/map_name_popup.c -------------------------------------------------------------------------------- /src/math_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/math_util.c -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/menu2.c -------------------------------------------------------------------------------- /src/menu_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/menu_helpers.c -------------------------------------------------------------------------------- /src/menu_indicators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/menu_indicators.c -------------------------------------------------------------------------------- /src/metatile_behavior.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/metatile_behavior.c -------------------------------------------------------------------------------- /src/mini_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/mini_printf.c -------------------------------------------------------------------------------- /src/mon_markings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/mon_markings.c -------------------------------------------------------------------------------- /src/money.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/money.c -------------------------------------------------------------------------------- /src/move_descriptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/move_descriptions.c -------------------------------------------------------------------------------- /src/multiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/multiboot.c -------------------------------------------------------------------------------- /src/mystery_event_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/mystery_event_msg.c -------------------------------------------------------------------------------- /src/mystery_gift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/mystery_gift.c -------------------------------------------------------------------------------- /src/mystery_gift_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/mystery_gift_link.c -------------------------------------------------------------------------------- /src/mystery_gift_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/mystery_gift_menu.c -------------------------------------------------------------------------------- /src/naming_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/naming_screen.c -------------------------------------------------------------------------------- /src/new_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/new_game.c -------------------------------------------------------------------------------- /src/new_menu_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/new_menu_helpers.c -------------------------------------------------------------------------------- /src/oak_speech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/oak_speech.c -------------------------------------------------------------------------------- /src/option_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/option_menu.c -------------------------------------------------------------------------------- /src/overworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/overworld.c -------------------------------------------------------------------------------- /src/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/palette.c -------------------------------------------------------------------------------- /src/palette_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/palette_util.c -------------------------------------------------------------------------------- /src/party_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/party_menu.c -------------------------------------------------------------------------------- /src/pc_screen_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/pc_screen_effect.c -------------------------------------------------------------------------------- /src/play_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/play_time.c -------------------------------------------------------------------------------- /src/player_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/player_pc.c -------------------------------------------------------------------------------- /src/pokeball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/pokeball.c -------------------------------------------------------------------------------- /src/pokedex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/pokedex.c -------------------------------------------------------------------------------- /src/pokedex_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/pokedex_screen.c -------------------------------------------------------------------------------- /src/pokemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/pokemon.c -------------------------------------------------------------------------------- /src/pokemon_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/pokemon_icon.c -------------------------------------------------------------------------------- /src/pokemon_jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/pokemon_jump.c -------------------------------------------------------------------------------- /src/prof_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/prof_pc.c -------------------------------------------------------------------------------- /src/quest_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/quest_log.c -------------------------------------------------------------------------------- /src/quest_log_battle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/quest_log_battle.c -------------------------------------------------------------------------------- /src/quest_log_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/quest_log_events.c -------------------------------------------------------------------------------- /src/quest_log_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/quest_log_objects.c -------------------------------------------------------------------------------- /src/quest_log_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/quest_log_player.c -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/random.c -------------------------------------------------------------------------------- /src/region_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/region_map.c -------------------------------------------------------------------------------- /src/reset_save_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/reset_save_heap.c -------------------------------------------------------------------------------- /src/roamer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/roamer.c -------------------------------------------------------------------------------- /src/rom_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/rom_header.s -------------------------------------------------------------------------------- /src/rom_header_gf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/rom_header_gf.c -------------------------------------------------------------------------------- /src/safari_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/safari_zone.c -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/save.c -------------------------------------------------------------------------------- /src/save_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/save_location.c -------------------------------------------------------------------------------- /src/save_menu_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/save_menu_util.c -------------------------------------------------------------------------------- /src/scanline_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/scanline_effect.c -------------------------------------------------------------------------------- /src/scrcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/scrcmd.c -------------------------------------------------------------------------------- /src/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/script.c -------------------------------------------------------------------------------- /src/script_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/script_menu.c -------------------------------------------------------------------------------- /src/script_movement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/script_movement.c -------------------------------------------------------------------------------- /src/seagallop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/seagallop.c -------------------------------------------------------------------------------- /src/shop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/shop.c -------------------------------------------------------------------------------- /src/slot_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/slot_machine.c -------------------------------------------------------------------------------- /src/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/sound.c -------------------------------------------------------------------------------- /src/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/sprite.c -------------------------------------------------------------------------------- /src/ss_anne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/ss_anne.c -------------------------------------------------------------------------------- /src/start_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/start_menu.c -------------------------------------------------------------------------------- /src/string_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/string_util.c -------------------------------------------------------------------------------- /src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/strings.c -------------------------------------------------------------------------------- /src/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/task.c -------------------------------------------------------------------------------- /src/teachy_tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/teachy_tv.c -------------------------------------------------------------------------------- /src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/text.c -------------------------------------------------------------------------------- /src/text_printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/text_printer.c -------------------------------------------------------------------------------- /src/text_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/text_window.c -------------------------------------------------------------------------------- /src/tilemap_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/tilemap_util.c -------------------------------------------------------------------------------- /src/tileset_anims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/tileset_anims.c -------------------------------------------------------------------------------- /src/tilesets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/tilesets.c -------------------------------------------------------------------------------- /src/title_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/title_screen.c -------------------------------------------------------------------------------- /src/tm_case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/tm_case.c -------------------------------------------------------------------------------- /src/trade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/trade.c -------------------------------------------------------------------------------- /src/trade_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/trade_scene.c -------------------------------------------------------------------------------- /src/trainer_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/trainer_card.c -------------------------------------------------------------------------------- /src/trainer_fan_club.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/trainer_fan_club.c -------------------------------------------------------------------------------- /src/trainer_see.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/trainer_see.c -------------------------------------------------------------------------------- /src/trainer_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/trainer_tower.c -------------------------------------------------------------------------------- /src/trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/trig.c -------------------------------------------------------------------------------- /src/union_room.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/union_room.c -------------------------------------------------------------------------------- /src/union_room_battle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/union_room_battle.c -------------------------------------------------------------------------------- /src/union_room_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/union_room_chat.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/util.c -------------------------------------------------------------------------------- /src/vs_seeker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/vs_seeker.c -------------------------------------------------------------------------------- /src/wild_encounter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/wild_encounter.c -------------------------------------------------------------------------------- /src/wild_pokemon_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/wild_pokemon_area.c -------------------------------------------------------------------------------- /src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/window.c -------------------------------------------------------------------------------- /src/window_8bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/window_8bpp.c -------------------------------------------------------------------------------- /src/wonder_news.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/src/wonder_news.c -------------------------------------------------------------------------------- /sym_bss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sym_bss.txt -------------------------------------------------------------------------------- /sym_common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sym_common.txt -------------------------------------------------------------------------------- /sym_ewram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/sym_ewram.txt -------------------------------------------------------------------------------- /tileset_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tileset_rules.mk -------------------------------------------------------------------------------- /tools/aif2pcm/.gitignore: -------------------------------------------------------------------------------- 1 | aif2pcm 2 | 3 | -------------------------------------------------------------------------------- /tools/aif2pcm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/aif2pcm/LICENSE -------------------------------------------------------------------------------- /tools/aif2pcm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/aif2pcm/Makefile -------------------------------------------------------------------------------- /tools/aif2pcm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/aif2pcm/main.c -------------------------------------------------------------------------------- /tools/bin2c/.gitignore: -------------------------------------------------------------------------------- 1 | bin2c 2 | -------------------------------------------------------------------------------- /tools/bin2c/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/bin2c/LICENSE -------------------------------------------------------------------------------- /tools/bin2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/bin2c/Makefile -------------------------------------------------------------------------------- /tools/bin2c/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/bin2c/bin2c.c -------------------------------------------------------------------------------- /tools/gbafix/.gitignore: -------------------------------------------------------------------------------- 1 | gbafix 2 | README 3 | -------------------------------------------------------------------------------- /tools/gbafix/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbafix/COPYING -------------------------------------------------------------------------------- /tools/gbafix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbafix/Makefile -------------------------------------------------------------------------------- /tools/gbafix/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbafix/elf.h -------------------------------------------------------------------------------- /tools/gbafix/gbafix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbafix/gbafix.c -------------------------------------------------------------------------------- /tools/gbagfx/.gitignore: -------------------------------------------------------------------------------- 1 | gbagfx 2 | -------------------------------------------------------------------------------- /tools/gbagfx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/LICENSE -------------------------------------------------------------------------------- /tools/gbagfx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/Makefile -------------------------------------------------------------------------------- /tools/gbagfx/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/font.c -------------------------------------------------------------------------------- /tools/gbagfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/font.h -------------------------------------------------------------------------------- /tools/gbagfx/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/gfx.c -------------------------------------------------------------------------------- /tools/gbagfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/gfx.h -------------------------------------------------------------------------------- /tools/gbagfx/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/global.h -------------------------------------------------------------------------------- /tools/gbagfx/huff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/huff.c -------------------------------------------------------------------------------- /tools/gbagfx/huff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/huff.h -------------------------------------------------------------------------------- /tools/gbagfx/jasc_pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/jasc_pal.c -------------------------------------------------------------------------------- /tools/gbagfx/jasc_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/jasc_pal.h -------------------------------------------------------------------------------- /tools/gbagfx/lz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/lz.c -------------------------------------------------------------------------------- /tools/gbagfx/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/lz.h -------------------------------------------------------------------------------- /tools/gbagfx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/main.c -------------------------------------------------------------------------------- /tools/gbagfx/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/options.h -------------------------------------------------------------------------------- /tools/gbagfx/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/rl.c -------------------------------------------------------------------------------- /tools/gbagfx/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/rl.h -------------------------------------------------------------------------------- /tools/gbagfx/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/util.c -------------------------------------------------------------------------------- /tools/gbagfx/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/gbagfx/util.h -------------------------------------------------------------------------------- /tools/jsonproc/.gitignore: -------------------------------------------------------------------------------- 1 | jsonproc 2 | -------------------------------------------------------------------------------- /tools/jsonproc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/jsonproc/Makefile -------------------------------------------------------------------------------- /tools/jsonproc/inja.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/jsonproc/inja.hpp -------------------------------------------------------------------------------- /tools/mapjson/.gitignore: -------------------------------------------------------------------------------- 1 | mapjson 2 | -------------------------------------------------------------------------------- /tools/mapjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mapjson/Makefile -------------------------------------------------------------------------------- /tools/mapjson/json11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mapjson/json11.h -------------------------------------------------------------------------------- /tools/mapjson/mapjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mapjson/mapjson.h -------------------------------------------------------------------------------- /tools/mid2agb/.gitignore: -------------------------------------------------------------------------------- 1 | mid2agb 2 | -------------------------------------------------------------------------------- /tools/mid2agb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/LICENSE -------------------------------------------------------------------------------- /tools/mid2agb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/Makefile -------------------------------------------------------------------------------- /tools/mid2agb/agb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/agb.cpp -------------------------------------------------------------------------------- /tools/mid2agb/agb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/agb.h -------------------------------------------------------------------------------- /tools/mid2agb/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/error.cpp -------------------------------------------------------------------------------- /tools/mid2agb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/error.h -------------------------------------------------------------------------------- /tools/mid2agb/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/main.cpp -------------------------------------------------------------------------------- /tools/mid2agb/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/main.h -------------------------------------------------------------------------------- /tools/mid2agb/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/midi.cpp -------------------------------------------------------------------------------- /tools/mid2agb/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/midi.h -------------------------------------------------------------------------------- /tools/mid2agb/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/mid2agb/tables.h -------------------------------------------------------------------------------- /tools/preproc/.gitignore: -------------------------------------------------------------------------------- 1 | preproc 2 | -------------------------------------------------------------------------------- /tools/preproc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/preproc/LICENSE -------------------------------------------------------------------------------- /tools/preproc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/preproc/Makefile -------------------------------------------------------------------------------- /tools/preproc/c_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/preproc/c_file.h -------------------------------------------------------------------------------- /tools/preproc/charmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/preproc/charmap.h -------------------------------------------------------------------------------- /tools/preproc/preproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/preproc/preproc.h -------------------------------------------------------------------------------- /tools/preproc/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/preproc/utf8.cpp -------------------------------------------------------------------------------- /tools/preproc/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/preproc/utf8.h -------------------------------------------------------------------------------- /tools/ramscrgen/.gitignore: -------------------------------------------------------------------------------- 1 | ramscrgen 2 | -------------------------------------------------------------------------------- /tools/ramscrgen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/ramscrgen/LICENSE -------------------------------------------------------------------------------- /tools/ramscrgen/elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/ramscrgen/elf.cpp -------------------------------------------------------------------------------- /tools/ramscrgen/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/ramscrgen/elf.h -------------------------------------------------------------------------------- /tools/rsfont/.gitignore: -------------------------------------------------------------------------------- 1 | rsfont 2 | -------------------------------------------------------------------------------- /tools/rsfont/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/rsfont/LICENSE -------------------------------------------------------------------------------- /tools/rsfont/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/rsfont/Makefile -------------------------------------------------------------------------------- /tools/rsfont/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/rsfont/font.c -------------------------------------------------------------------------------- /tools/rsfont/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/rsfont/font.h -------------------------------------------------------------------------------- /tools/rsfont/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/rsfont/gfx.h -------------------------------------------------------------------------------- /tools/rsfont/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/rsfont/global.h -------------------------------------------------------------------------------- /tools/rsfont/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/rsfont/main.c -------------------------------------------------------------------------------- /tools/rsfont/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/rsfont/util.c -------------------------------------------------------------------------------- /tools/rsfont/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/rsfont/util.h -------------------------------------------------------------------------------- /tools/scaninc/.gitignore: -------------------------------------------------------------------------------- 1 | scaninc 2 | -------------------------------------------------------------------------------- /tools/scaninc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/scaninc/LICENSE -------------------------------------------------------------------------------- /tools/scaninc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/scaninc/Makefile -------------------------------------------------------------------------------- /tools/scaninc/c_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/scaninc/c_file.h -------------------------------------------------------------------------------- /tools/scaninc/scaninc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deokishisu/FRLG-Plus/HEAD/tools/scaninc/scaninc.h --------------------------------------------------------------------------------