├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── blank_issue.md │ └── config.yml ├── webhook.sh └── workflows │ └── main.yml ├── .gitignore ├── .rgbds-version ├── INSTALL.md ├── Makefile ├── README.md ├── audio.asm ├── audio ├── alternate_tempo.asm ├── engine_1.asm ├── engine_2.asm ├── engine_3.asm ├── engine_4.asm ├── headers │ ├── musicheaders1.asm │ ├── musicheaders2.asm │ ├── musicheaders3.asm │ ├── musicheaders4.asm │ ├── sfxheaders1.asm │ ├── sfxheaders2.asm │ ├── sfxheaders3.asm │ └── sfxheaders4.asm ├── low_health_alarm.asm ├── music │ ├── bikeriding.asm │ ├── celadon.asm │ ├── cinnabar.asm │ ├── cinnabarmansion.asm │ ├── cities1.asm │ ├── cities2.asm │ ├── credits.asm │ ├── defeatedgymleader.asm │ ├── defeatedtrainer.asm │ ├── defeatedwildmon.asm │ ├── dungeon1.asm │ ├── dungeon2.asm │ ├── dungeon3.asm │ ├── finalbattle.asm │ ├── gamecorner.asm │ ├── gym.asm │ ├── gymleaderbattle.asm │ ├── halloffame.asm │ ├── indigoplateau.asm │ ├── introbattle.asm │ ├── jigglypuffsong.asm │ ├── lavender.asm │ ├── meeteviltrainer.asm │ ├── meetfemaletrainer.asm │ ├── meetjessiejames.asm │ ├── meetmaletrainer.asm │ ├── meetprofoak.asm │ ├── meetrival.asm │ ├── museumguy.asm │ ├── oakslab.asm │ ├── pallettown.asm │ ├── pkmnhealed.asm │ ├── pokecenter.asm │ ├── pokemontower.asm │ ├── printer.asm │ ├── routes1.asm │ ├── routes2.asm │ ├── routes3.asm │ ├── routes4.asm │ ├── safarizone.asm │ ├── silphco.asm │ ├── ssanne.asm │ ├── surfing.asm │ ├── surfingpikachu.asm │ ├── titlescreen.asm │ ├── trainerbattle.asm │ ├── unusedsong.asm │ ├── vermilion.asm │ ├── wildbattle.asm │ ├── yellowintro.asm │ └── yellowunusedsong.asm ├── notes.asm ├── pikachu_cries.asm ├── pikachu_cries │ ├── pikachu_cry_1.wav │ ├── pikachu_cry_10.wav │ ├── pikachu_cry_11.wav │ ├── pikachu_cry_12.wav │ ├── pikachu_cry_13.wav │ ├── pikachu_cry_14.wav │ ├── pikachu_cry_15.wav │ ├── pikachu_cry_16.wav │ ├── pikachu_cry_17.wav │ ├── pikachu_cry_18.wav │ ├── pikachu_cry_19.wav │ ├── pikachu_cry_2.wav │ ├── pikachu_cry_20.wav │ ├── pikachu_cry_21.wav │ ├── pikachu_cry_22.wav │ ├── pikachu_cry_23.wav │ ├── pikachu_cry_24.wav │ ├── pikachu_cry_25.wav │ ├── pikachu_cry_26.wav │ ├── pikachu_cry_27.wav │ ├── pikachu_cry_28.wav │ ├── pikachu_cry_29.wav │ ├── pikachu_cry_3.wav │ ├── pikachu_cry_30.wav │ ├── pikachu_cry_31.wav │ ├── pikachu_cry_32.wav │ ├── pikachu_cry_33.wav │ ├── pikachu_cry_34.wav │ ├── pikachu_cry_35.wav │ ├── pikachu_cry_36.wav │ ├── pikachu_cry_37.wav │ ├── pikachu_cry_38.wav │ ├── pikachu_cry_39.wav │ ├── pikachu_cry_4.wav │ ├── pikachu_cry_40.wav │ ├── pikachu_cry_41.wav │ ├── pikachu_cry_42.wav │ ├── pikachu_cry_5.wav │ ├── pikachu_cry_6.wav │ ├── pikachu_cry_7.wav │ ├── pikachu_cry_8.wav │ └── pikachu_cry_9.wav ├── play_battle_music.asm ├── poke_flute.asm ├── pokedex_rating_sfx.asm ├── sfx │ ├── 59_1.asm │ ├── 59_3.asm │ ├── arrow_tiles_1.asm │ ├── arrow_tiles_3.asm │ ├── ball_poof.asm │ ├── ball_toss.asm │ ├── battle_09.asm │ ├── battle_0b.asm │ ├── battle_0c.asm │ ├── battle_0d.asm │ ├── battle_0e.asm │ ├── battle_0f.asm │ ├── battle_12.asm │ ├── battle_13.asm │ ├── battle_14.asm │ ├── battle_16.asm │ ├── battle_17.asm │ ├── battle_18.asm │ ├── battle_19.asm │ ├── battle_1b.asm │ ├── battle_1c.asm │ ├── battle_1e.asm │ ├── battle_20.asm │ ├── battle_21.asm │ ├── battle_22.asm │ ├── battle_23.asm │ ├── battle_24.asm │ ├── battle_25.asm │ ├── battle_26.asm │ ├── battle_27.asm │ ├── battle_28.asm │ ├── battle_29.asm │ ├── battle_2a.asm │ ├── battle_2b.asm │ ├── battle_2c.asm │ ├── battle_2e.asm │ ├── battle_2f.asm │ ├── battle_31.asm │ ├── battle_32.asm │ ├── battle_33.asm │ ├── battle_34.asm │ ├── battle_35.asm │ ├── battle_36.asm │ ├── caught_mon.asm │ ├── collision_1.asm │ ├── collision_3.asm │ ├── cry00_1.asm │ ├── cry00_2.asm │ ├── cry00_3.asm │ ├── cry00_4.asm │ ├── cry01_1.asm │ ├── cry01_2.asm │ ├── cry01_3.asm │ ├── cry01_4.asm │ ├── cry02_1.asm │ ├── cry02_2.asm │ ├── cry02_3.asm │ ├── cry02_4.asm │ ├── cry03_1.asm │ ├── cry03_2.asm │ ├── cry03_3.asm │ ├── cry03_4.asm │ ├── cry04_1.asm │ ├── cry04_2.asm │ ├── cry04_3.asm │ ├── cry04_4.asm │ ├── cry05_1.asm │ ├── cry05_2.asm │ ├── cry05_3.asm │ ├── cry05_4.asm │ ├── cry06_1.asm │ ├── cry06_2.asm │ ├── cry06_3.asm │ ├── cry06_4.asm │ ├── cry07_1.asm │ ├── cry07_2.asm │ ├── cry07_3.asm │ ├── cry07_4.asm │ ├── cry08_1.asm │ ├── cry08_2.asm │ ├── cry08_3.asm │ ├── cry08_4.asm │ ├── cry09_1.asm │ ├── cry09_2.asm │ ├── cry09_3.asm │ ├── cry09_4.asm │ ├── cry0a_1.asm │ ├── cry0a_2.asm │ ├── cry0a_3.asm │ ├── cry0a_4.asm │ ├── cry0b_1.asm │ ├── cry0b_2.asm │ ├── cry0b_3.asm │ ├── cry0b_4.asm │ ├── cry0c_1.asm │ ├── cry0c_2.asm │ ├── cry0c_3.asm │ ├── cry0c_4.asm │ ├── cry0d_1.asm │ ├── cry0d_2.asm │ ├── cry0d_3.asm │ ├── cry0d_4.asm │ ├── cry0e_1.asm │ ├── cry0e_2.asm │ ├── cry0e_3.asm │ ├── cry0e_4.asm │ ├── cry0f_1.asm │ ├── cry0f_2.asm │ ├── cry0f_3.asm │ ├── cry0f_4.asm │ ├── cry10_1.asm │ ├── cry10_2.asm │ ├── cry10_3.asm │ ├── cry10_4.asm │ ├── cry11_1.asm │ ├── cry11_2.asm │ ├── cry11_3.asm │ ├── cry11_4.asm │ ├── cry12_1.asm │ ├── cry12_2.asm │ ├── cry12_3.asm │ ├── cry12_4.asm │ ├── cry13_1.asm │ ├── cry13_2.asm │ ├── cry13_3.asm │ ├── cry13_4.asm │ ├── cry14_1.asm │ ├── cry14_2.asm │ ├── cry14_3.asm │ ├── cry14_4.asm │ ├── cry15_1.asm │ ├── cry15_2.asm │ ├── cry15_3.asm │ ├── cry15_4.asm │ ├── cry16_1.asm │ ├── cry16_2.asm │ ├── cry16_3.asm │ ├── cry16_4.asm │ ├── cry17_1.asm │ ├── cry17_2.asm │ ├── cry17_3.asm │ ├── cry17_4.asm │ ├── cry18_1.asm │ ├── cry18_2.asm │ ├── cry18_3.asm │ ├── cry18_4.asm │ ├── cry19_1.asm │ ├── cry19_2.asm │ ├── cry19_3.asm │ ├── cry19_4.asm │ ├── cry1a_1.asm │ ├── cry1a_2.asm │ ├── cry1a_3.asm │ ├── cry1a_4.asm │ ├── cry1b_1.asm │ ├── cry1b_2.asm │ ├── cry1b_3.asm │ ├── cry1b_4.asm │ ├── cry1c_1.asm │ ├── cry1c_2.asm │ ├── cry1c_3.asm │ ├── cry1c_4.asm │ ├── cry1d_1.asm │ ├── cry1d_2.asm │ ├── cry1d_3.asm │ ├── cry1d_4.asm │ ├── cry1e_1.asm │ ├── cry1e_2.asm │ ├── cry1e_3.asm │ ├── cry1e_4.asm │ ├── cry1f_1.asm │ ├── cry1f_2.asm │ ├── cry1f_3.asm │ ├── cry1f_4.asm │ ├── cry20_1.asm │ ├── cry20_2.asm │ ├── cry20_3.asm │ ├── cry20_4.asm │ ├── cry21_1.asm │ ├── cry21_2.asm │ ├── cry21_3.asm │ ├── cry21_4.asm │ ├── cry22_1.asm │ ├── cry22_2.asm │ ├── cry22_3.asm │ ├── cry22_4.asm │ ├── cry23_1.asm │ ├── cry23_2.asm │ ├── cry23_3.asm │ ├── cry23_4.asm │ ├── cry24_1.asm │ ├── cry24_2.asm │ ├── cry24_3.asm │ ├── cry24_4.asm │ ├── cry25_1.asm │ ├── cry25_2.asm │ ├── cry25_3.asm │ ├── cry25_4.asm │ ├── cut_1.asm │ ├── cut_3.asm │ ├── damage.asm │ ├── denied_1.asm │ ├── denied_3.asm │ ├── dex_page_added.asm │ ├── doubleslap.asm │ ├── enter_pc_1.asm │ ├── enter_pc_3.asm │ ├── faint_fall.asm │ ├── faint_thud.asm │ ├── fly_1.asm │ ├── fly_3.asm │ ├── get_item1_1.asm │ ├── get_item1_3.asm │ ├── get_item1_4.asm │ ├── get_item1_4_2.asm │ ├── get_item2_1.asm │ ├── get_item2_2.asm │ ├── get_item2_3.asm │ ├── get_item2_4.asm │ ├── get_item2_4_2.asm │ ├── get_key_item_1.asm │ ├── get_key_item_3.asm │ ├── go_inside_1.asm │ ├── go_inside_3.asm │ ├── go_outside_1.asm │ ├── go_outside_3.asm │ ├── heal_ailment_1.asm │ ├── heal_ailment_2.asm │ ├── heal_ailment_3.asm │ ├── heal_ailment_4.asm │ ├── heal_hp_1.asm │ ├── heal_hp_2.asm │ ├── heal_hp_3.asm │ ├── heal_hp_4.asm │ ├── healing_machine_1.asm │ ├── healing_machine_3.asm │ ├── horn_drill.asm │ ├── intro_crash.asm │ ├── intro_hip.asm │ ├── intro_hop.asm │ ├── intro_lunge.asm │ ├── intro_raise.asm │ ├── intro_whoosh.asm │ ├── ledge_1.asm │ ├── ledge_3.asm │ ├── level_up.asm │ ├── noise_instrument01_1.asm │ ├── noise_instrument01_2.asm │ ├── noise_instrument01_3.asm │ ├── noise_instrument01_4.asm │ ├── noise_instrument02_1.asm │ ├── noise_instrument02_2.asm │ ├── noise_instrument02_3.asm │ ├── noise_instrument02_4.asm │ ├── noise_instrument03_1.asm │ ├── noise_instrument03_2.asm │ ├── noise_instrument03_3.asm │ ├── noise_instrument03_4.asm │ ├── noise_instrument04_1.asm │ ├── noise_instrument04_2.asm │ ├── noise_instrument04_3.asm │ ├── noise_instrument04_4.asm │ ├── noise_instrument05_1.asm │ ├── noise_instrument05_2.asm │ ├── noise_instrument05_3.asm │ ├── noise_instrument05_4.asm │ ├── noise_instrument06_1.asm │ ├── noise_instrument06_2.asm │ ├── noise_instrument06_3.asm │ ├── noise_instrument06_4.asm │ ├── noise_instrument07_1.asm │ ├── noise_instrument07_2.asm │ ├── noise_instrument07_3.asm │ ├── noise_instrument07_4.asm │ ├── noise_instrument08_1.asm │ ├── noise_instrument08_2.asm │ ├── noise_instrument08_3.asm │ ├── noise_instrument08_4.asm │ ├── noise_instrument09_1.asm │ ├── noise_instrument09_2.asm │ ├── noise_instrument09_3.asm │ ├── noise_instrument09_4.asm │ ├── noise_instrument10_1.asm │ ├── noise_instrument10_2.asm │ ├── noise_instrument10_3.asm │ ├── noise_instrument10_4.asm │ ├── noise_instrument11_1.asm │ ├── noise_instrument11_2.asm │ ├── noise_instrument11_3.asm │ ├── noise_instrument11_4.asm │ ├── noise_instrument12_1.asm │ ├── noise_instrument12_2.asm │ ├── noise_instrument12_3.asm │ ├── noise_instrument12_4.asm │ ├── noise_instrument13_1.asm │ ├── noise_instrument13_2.asm │ ├── noise_instrument13_3.asm │ ├── noise_instrument13_4.asm │ ├── noise_instrument14_1.asm │ ├── noise_instrument14_2.asm │ ├── noise_instrument14_3.asm │ ├── noise_instrument14_4.asm │ ├── noise_instrument15_1.asm │ ├── noise_instrument15_2.asm │ ├── noise_instrument15_3.asm │ ├── noise_instrument15_4.asm │ ├── noise_instrument16_1.asm │ ├── noise_instrument16_2.asm │ ├── noise_instrument16_3.asm │ ├── noise_instrument16_4.asm │ ├── noise_instrument17_1.asm │ ├── noise_instrument17_2.asm │ ├── noise_instrument17_3.asm │ ├── noise_instrument17_4.asm │ ├── noise_instrument18_1.asm │ ├── noise_instrument18_2.asm │ ├── noise_instrument18_3.asm │ ├── noise_instrument18_4.asm │ ├── noise_instrument19_1.asm │ ├── noise_instrument19_2.asm │ ├── noise_instrument19_3.asm │ ├── noise_instrument19_4.asm │ ├── not_very_effective.asm │ ├── peck.asm │ ├── poisoned_1.asm │ ├── poisoned_3.asm │ ├── pokedex_rating_1.asm │ ├── pokedex_rating_3.asm │ ├── pokeflute.asm │ ├── pokeflute_ch5_ch6.asm │ ├── pokeflute_ch7.asm │ ├── pound.asm │ ├── press_ab_1.asm │ ├── press_ab_2.asm │ ├── press_ab_3.asm │ ├── press_ab_4.asm │ ├── psybeam.asm │ ├── psychic_m.asm │ ├── purchase_1.asm │ ├── purchase_3.asm │ ├── push_boulder_1.asm │ ├── push_boulder_3.asm │ ├── run.asm │ ├── safari_zone_pa.asm │ ├── save_1.asm │ ├── save_3.asm │ ├── shooting_star.asm │ ├── shrink_1.asm │ ├── shrink_3.asm │ ├── silph_scope.asm │ ├── slots_new_spin.asm │ ├── slots_reward.asm │ ├── slots_stop_wheel.asm │ ├── ss_anne_horn_1.asm │ ├── ss_anne_horn_3.asm │ ├── start_menu_1.asm │ ├── start_menu_2.asm │ ├── start_menu_3.asm │ ├── start_menu_4.asm │ ├── super_effective.asm │ ├── surfing_crash.asm │ ├── surfing_flip.asm │ ├── surfing_jump.asm │ ├── surfing_land.asm │ ├── swap_1.asm │ ├── swap_2.asm │ ├── swap_3.asm │ ├── switch_1.asm │ ├── switch_3.asm │ ├── teleport_enter1_1.asm │ ├── teleport_enter1_3.asm │ ├── teleport_enter2_1.asm │ ├── teleport_enter2_3.asm │ ├── teleport_exit1_1.asm │ ├── teleport_exit1_3.asm │ ├── teleport_exit2_1.asm │ ├── teleport_exit2_3.asm │ ├── tink_1.asm │ ├── tink_2.asm │ ├── tink_3.asm │ ├── tink_4.asm │ ├── trade_machine_1.asm │ ├── trade_machine_3.asm │ ├── turn_off_pc_1.asm │ ├── turn_off_pc_3.asm │ ├── turn_on_pc_1.asm │ ├── turn_on_pc_3.asm │ ├── unknown_802cc.asm │ ├── unused_cry_1.asm │ ├── unused_cry_2.asm │ ├── unused_cry_3.asm │ ├── unused_cry_4.asm │ ├── unused_fanfare.asm │ ├── vine_whip.asm │ ├── withdraw_deposit_1.asm │ └── withdraw_deposit_3.asm └── wave_samples.asm ├── constants ├── audio_constants.asm ├── battle_anim_constants.asm ├── battle_constants.asm ├── charmap.asm ├── credits_constants.asm ├── event_constants.asm ├── gfx_constants.asm ├── hardware.inc ├── hide_show_constants.asm ├── icon_constants.asm ├── item_constants.asm ├── list_constants.asm ├── map_constants.asm ├── map_data_constants.asm ├── map_object_constants.asm ├── menu_constants.asm ├── misc_constants.asm ├── move_animation_constants.asm ├── move_constants.asm ├── move_effect_constants.asm ├── music_constants.asm ├── oam_constants.asm ├── palette_constants.asm ├── pikachu_emotion_constants.asm ├── pokedex_constants.asm ├── pokemon_constants.asm ├── pokemon_data_constants.asm ├── ram_constants.asm ├── script_constants.asm ├── serial_constants.asm ├── sprite_anim_constants.asm ├── sprite_constants.asm ├── sprite_data_constants.asm ├── sprite_set_constants.asm ├── text_constants.asm ├── tileset_constants.asm ├── trainer_constants.asm └── type_constants.asm ├── data ├── battle │ ├── always_happen_effects.asm │ ├── critical_hit_moves.asm │ ├── residual_effects_1.asm │ ├── residual_effects_2.asm │ ├── set_damage_effects.asm │ ├── special_effects.asm │ ├── stat_mod_names.asm │ ├── stat_modifiers.asm │ ├── stat_names.asm │ └── unused_critical_hit_moves.asm ├── battle_anims │ ├── base_coords.asm │ ├── frame_blocks.asm │ ├── special_effect_pointers.asm │ ├── special_effects.asm │ └── subanimations.asm ├── cgb │ └── bg_map_attributes.asm ├── credits │ ├── credits_mons.asm │ ├── credits_order.asm │ └── credits_text.asm ├── events │ ├── bench_guys.asm │ ├── card_key_coords.asm │ ├── card_key_maps.asm │ ├── hidden_coins.asm │ ├── hidden_item_coords.asm │ ├── hidden_objects.asm │ ├── prize_mon_levels.asm │ ├── prizes.asm │ ├── slot_machine_wheels.asm │ └── trades.asm ├── growth_rates.asm ├── icon_pointers.asm ├── items │ ├── guard_drink_items.asm │ ├── key_items.asm │ ├── marts.asm │ ├── names.asm │ ├── prices.asm │ ├── tm_prices.asm │ ├── use_overworld.asm │ ├── use_party.asm │ └── vending_prices.asm ├── maps │ ├── badge_maps.asm │ ├── bit_5_maps.asm │ ├── dungeon_maps.asm │ ├── force_bike_surf.asm │ ├── headers │ │ ├── AgathasRoom.asm │ │ ├── BikeShop.asm │ │ ├── BillsHouse.asm │ │ ├── BluesHouse.asm │ │ ├── BrunosRoom.asm │ │ ├── CeladonChiefHouse.asm │ │ ├── CeladonCity.asm │ │ ├── CeladonDiner.asm │ │ ├── CeladonGym.asm │ │ ├── CeladonHotel.asm │ │ ├── CeladonMansion1F.asm │ │ ├── CeladonMansion2F.asm │ │ ├── CeladonMansion3F.asm │ │ ├── CeladonMansionRoof.asm │ │ ├── CeladonMansionRoofHouse.asm │ │ ├── CeladonMart1F.asm │ │ ├── CeladonMart2F.asm │ │ ├── CeladonMart3F.asm │ │ ├── CeladonMart4F.asm │ │ ├── CeladonMart5F.asm │ │ ├── CeladonMartElevator.asm │ │ ├── CeladonMartRoof.asm │ │ ├── CeladonPokecenter.asm │ │ ├── CeruleanBadgeHouse.asm │ │ ├── CeruleanCave1F.asm │ │ ├── CeruleanCave2F.asm │ │ ├── CeruleanCaveB1F.asm │ │ ├── CeruleanCity.asm │ │ ├── CeruleanGym.asm │ │ ├── CeruleanMart.asm │ │ ├── CeruleanMelaniesHouse.asm │ │ ├── CeruleanPokecenter.asm │ │ ├── CeruleanTrashedHouse.asm │ │ ├── ChampionsRoom.asm │ │ ├── CinnabarGym.asm │ │ ├── CinnabarIsland.asm │ │ ├── CinnabarLab.asm │ │ ├── CinnabarLabFossilRoom.asm │ │ ├── CinnabarLabMetronomeRoom.asm │ │ ├── CinnabarLabTradeRoom.asm │ │ ├── CinnabarMart.asm │ │ ├── CinnabarPokecenter.asm │ │ ├── Colosseum.asm │ │ ├── CopycatsHouse1F.asm │ │ ├── CopycatsHouse2F.asm │ │ ├── Daycare.asm │ │ ├── DiglettsCave.asm │ │ ├── DiglettsCaveRoute11.asm │ │ ├── DiglettsCaveRoute2.asm │ │ ├── FightingDojo.asm │ │ ├── FuchsiaBillsGrandpasHouse.asm │ │ ├── FuchsiaCity.asm │ │ ├── FuchsiaGoodRodHouse.asm │ │ ├── FuchsiaGym.asm │ │ ├── FuchsiaMart.asm │ │ ├── FuchsiaMeetingRoom.asm │ │ ├── FuchsiaPokecenter.asm │ │ ├── GameCorner.asm │ │ ├── GameCornerPrizeRoom.asm │ │ ├── HallOfFame.asm │ │ ├── IndigoPlateau.asm │ │ ├── IndigoPlateauLobby.asm │ │ ├── LancesRoom.asm │ │ ├── LavenderCuboneHouse.asm │ │ ├── LavenderMart.asm │ │ ├── LavenderPokecenter.asm │ │ ├── LavenderTown.asm │ │ ├── LoreleisRoom.asm │ │ ├── MrFujisHouse.asm │ │ ├── MrPsychicsHouse.asm │ │ ├── MtMoon1F.asm │ │ ├── MtMoonB1F.asm │ │ ├── MtMoonB2F.asm │ │ ├── MtMoonPokecenter.asm │ │ ├── Museum1F.asm │ │ ├── Museum2F.asm │ │ ├── NameRatersHouse.asm │ │ ├── OaksLab.asm │ │ ├── PalletTown.asm │ │ ├── PewterCity.asm │ │ ├── PewterGym.asm │ │ ├── PewterMart.asm │ │ ├── PewterNidoranHouse.asm │ │ ├── PewterPokecenter.asm │ │ ├── PewterSpeechHouse.asm │ │ ├── PokemonFanClub.asm │ │ ├── PokemonMansion1F.asm │ │ ├── PokemonMansion2F.asm │ │ ├── PokemonMansion3F.asm │ │ ├── PokemonMansionB1F.asm │ │ ├── PokemonTower1F.asm │ │ ├── PokemonTower2F.asm │ │ ├── PokemonTower3F.asm │ │ ├── PokemonTower4F.asm │ │ ├── PokemonTower5F.asm │ │ ├── PokemonTower6F.asm │ │ ├── PokemonTower7F.asm │ │ ├── PowerPlant.asm │ │ ├── RedsHouse1F.asm │ │ ├── RedsHouse2F.asm │ │ ├── RockTunnel1F.asm │ │ ├── RockTunnelB1F.asm │ │ ├── RockTunnelPokecenter.asm │ │ ├── RocketHideoutB1F.asm │ │ ├── RocketHideoutB2F.asm │ │ ├── RocketHideoutB3F.asm │ │ ├── RocketHideoutB4F.asm │ │ ├── RocketHideoutElevator.asm │ │ ├── Route1.asm │ │ ├── Route10.asm │ │ ├── Route11.asm │ │ ├── Route11Gate1F.asm │ │ ├── Route11Gate2F.asm │ │ ├── Route12.asm │ │ ├── Route12Gate1F.asm │ │ ├── Route12Gate2F.asm │ │ ├── Route12SuperRodHouse.asm │ │ ├── Route13.asm │ │ ├── Route14.asm │ │ ├── Route15.asm │ │ ├── Route15Gate1F.asm │ │ ├── Route15Gate2F.asm │ │ ├── Route16.asm │ │ ├── Route16FlyHouse.asm │ │ ├── Route16Gate1F.asm │ │ ├── Route16Gate2F.asm │ │ ├── Route17.asm │ │ ├── Route18.asm │ │ ├── Route18Gate1F.asm │ │ ├── Route18Gate2F.asm │ │ ├── Route19.asm │ │ ├── Route2.asm │ │ ├── Route20.asm │ │ ├── Route21.asm │ │ ├── Route22.asm │ │ ├── Route22Gate.asm │ │ ├── Route23.asm │ │ ├── Route24.asm │ │ ├── Route25.asm │ │ ├── Route2Gate.asm │ │ ├── Route2TradeHouse.asm │ │ ├── Route3.asm │ │ ├── Route4.asm │ │ ├── Route5.asm │ │ ├── Route5Gate.asm │ │ ├── Route6.asm │ │ ├── Route6Gate.asm │ │ ├── Route7.asm │ │ ├── Route7Gate.asm │ │ ├── Route8.asm │ │ ├── Route8Gate.asm │ │ ├── Route9.asm │ │ ├── SSAnne1F.asm │ │ ├── SSAnne1FRooms.asm │ │ ├── SSAnne2F.asm │ │ ├── SSAnne2FRooms.asm │ │ ├── SSAnne3F.asm │ │ ├── SSAnneB1F.asm │ │ ├── SSAnneB1FRooms.asm │ │ ├── SSAnneBow.asm │ │ ├── SSAnneCaptainsRoom.asm │ │ ├── SSAnneKitchen.asm │ │ ├── SafariZoneCenter.asm │ │ ├── SafariZoneCenterRestHouse.asm │ │ ├── SafariZoneEast.asm │ │ ├── SafariZoneEastRestHouse.asm │ │ ├── SafariZoneGate.asm │ │ ├── SafariZoneNorth.asm │ │ ├── SafariZoneNorthRestHouse.asm │ │ ├── SafariZoneSecretHouse.asm │ │ ├── SafariZoneWest.asm │ │ ├── SafariZoneWestRestHouse.asm │ │ ├── SaffronCity.asm │ │ ├── SaffronGym.asm │ │ ├── SaffronMart.asm │ │ ├── SaffronPidgeyHouse.asm │ │ ├── SaffronPokecenter.asm │ │ ├── SeafoamIslands1F.asm │ │ ├── SeafoamIslandsB1F.asm │ │ ├── SeafoamIslandsB2F.asm │ │ ├── SeafoamIslandsB3F.asm │ │ ├── SeafoamIslandsB4F.asm │ │ ├── SilphCo10F.asm │ │ ├── SilphCo11F.asm │ │ ├── SilphCo1F.asm │ │ ├── SilphCo2F.asm │ │ ├── SilphCo3F.asm │ │ ├── SilphCo4F.asm │ │ ├── SilphCo5F.asm │ │ ├── SilphCo6F.asm │ │ ├── SilphCo7F.asm │ │ ├── SilphCo8F.asm │ │ ├── SilphCo9F.asm │ │ ├── SilphCoElevator.asm │ │ ├── SummerBeachHouse.asm │ │ ├── TradeCenter.asm │ │ ├── UndergroundPathNorthSouth.asm │ │ ├── UndergroundPathRoute5.asm │ │ ├── UndergroundPathRoute6.asm │ │ ├── UndergroundPathRoute7.asm │ │ ├── UndergroundPathRoute7Copy.asm │ │ ├── UndergroundPathRoute8.asm │ │ ├── UndergroundPathWestEast.asm │ │ ├── VermilionCity.asm │ │ ├── VermilionDock.asm │ │ ├── VermilionGym.asm │ │ ├── VermilionMart.asm │ │ ├── VermilionOldRodHouse.asm │ │ ├── VermilionPidgeyHouse.asm │ │ ├── VermilionPokecenter.asm │ │ ├── VermilionTradeHouse.asm │ │ ├── VictoryRoad1F.asm │ │ ├── VictoryRoad2F.asm │ │ ├── VictoryRoad3F.asm │ │ ├── ViridianCity.asm │ │ ├── ViridianForest.asm │ │ ├── ViridianForestNorthGate.asm │ │ ├── ViridianForestSouthGate.asm │ │ ├── ViridianGym.asm │ │ ├── ViridianMart.asm │ │ ├── ViridianNicknameHouse.asm │ │ ├── ViridianPokecenter.asm │ │ ├── ViridianSchoolHouse.asm │ │ └── WardensHouse.asm │ ├── hide_show_data.asm │ ├── map_header_banks.asm │ ├── map_header_pointers.asm │ ├── names.asm │ ├── objects │ │ ├── AgathasRoom.asm │ │ ├── BikeShop.asm │ │ ├── BillsHouse.asm │ │ ├── BluesHouse.asm │ │ ├── BrunosRoom.asm │ │ ├── CeladonChiefHouse.asm │ │ ├── CeladonCity.asm │ │ ├── CeladonDiner.asm │ │ ├── CeladonGym.asm │ │ ├── CeladonHotel.asm │ │ ├── CeladonMansion1F.asm │ │ ├── CeladonMansion2F.asm │ │ ├── CeladonMansion3F.asm │ │ ├── CeladonMansionRoof.asm │ │ ├── CeladonMansionRoofHouse.asm │ │ ├── CeladonMart1F.asm │ │ ├── CeladonMart2F.asm │ │ ├── CeladonMart3F.asm │ │ ├── CeladonMart4F.asm │ │ ├── CeladonMart5F.asm │ │ ├── CeladonMartElevator.asm │ │ ├── CeladonMartRoof.asm │ │ ├── CeladonPokecenter.asm │ │ ├── CeruleanBadgeHouse.asm │ │ ├── CeruleanCave1F.asm │ │ ├── CeruleanCave2F.asm │ │ ├── CeruleanCaveB1F.asm │ │ ├── CeruleanCity.asm │ │ ├── CeruleanGym.asm │ │ ├── CeruleanMart.asm │ │ ├── CeruleanMelaniesHouse.asm │ │ ├── CeruleanPokecenter.asm │ │ ├── CeruleanTrashedHouse.asm │ │ ├── ChampionsRoom.asm │ │ ├── CinnabarGym.asm │ │ ├── CinnabarIsland.asm │ │ ├── CinnabarLab.asm │ │ ├── CinnabarLabFossilRoom.asm │ │ ├── CinnabarLabMetronomeRoom.asm │ │ ├── CinnabarLabTradeRoom.asm │ │ ├── CinnabarMart.asm │ │ ├── CinnabarPokecenter.asm │ │ ├── Colosseum.asm │ │ ├── CopycatsHouse1F.asm │ │ ├── CopycatsHouse2F.asm │ │ ├── Daycare.asm │ │ ├── DiglettsCave.asm │ │ ├── DiglettsCaveRoute11.asm │ │ ├── DiglettsCaveRoute2.asm │ │ ├── FightingDojo.asm │ │ ├── FuchsiaBillsGrandpasHouse.asm │ │ ├── FuchsiaCity.asm │ │ ├── FuchsiaGoodRodHouse.asm │ │ ├── FuchsiaGym.asm │ │ ├── FuchsiaMart.asm │ │ ├── FuchsiaMeetingRoom.asm │ │ ├── FuchsiaPokecenter.asm │ │ ├── GameCorner.asm │ │ ├── GameCornerPrizeRoom.asm │ │ ├── HallOfFame.asm │ │ ├── IndigoPlateau.asm │ │ ├── IndigoPlateauLobby.asm │ │ ├── LancesRoom.asm │ │ ├── LavenderCuboneHouse.asm │ │ ├── LavenderMart.asm │ │ ├── LavenderPokecenter.asm │ │ ├── LavenderTown.asm │ │ ├── LoreleisRoom.asm │ │ ├── MrFujisHouse.asm │ │ ├── MrPsychicsHouse.asm │ │ ├── MtMoon1F.asm │ │ ├── MtMoonB1F.asm │ │ ├── MtMoonB2F.asm │ │ ├── MtMoonPokecenter.asm │ │ ├── Museum1F.asm │ │ ├── Museum2F.asm │ │ ├── NameRatersHouse.asm │ │ ├── OaksLab.asm │ │ ├── PalletTown.asm │ │ ├── PewterCity.asm │ │ ├── PewterGym.asm │ │ ├── PewterMart.asm │ │ ├── PewterNidoranHouse.asm │ │ ├── PewterPokecenter.asm │ │ ├── PewterSpeechHouse.asm │ │ ├── PokemonFanClub.asm │ │ ├── PokemonMansion1F.asm │ │ ├── PokemonMansion2F.asm │ │ ├── PokemonMansion3F.asm │ │ ├── PokemonMansionB1F.asm │ │ ├── PokemonTower1F.asm │ │ ├── PokemonTower2F.asm │ │ ├── PokemonTower3F.asm │ │ ├── PokemonTower4F.asm │ │ ├── PokemonTower5F.asm │ │ ├── PokemonTower6F.asm │ │ ├── PokemonTower7F.asm │ │ ├── PowerPlant.asm │ │ ├── RedsHouse1F.asm │ │ ├── RedsHouse2F.asm │ │ ├── RockTunnel1F.asm │ │ ├── RockTunnelB1F.asm │ │ ├── RockTunnelPokecenter.asm │ │ ├── RocketHideoutB1F.asm │ │ ├── RocketHideoutB2F.asm │ │ ├── RocketHideoutB3F.asm │ │ ├── RocketHideoutB4F.asm │ │ ├── RocketHideoutElevator.asm │ │ ├── Route1.asm │ │ ├── Route10.asm │ │ ├── Route11.asm │ │ ├── Route11Gate1F.asm │ │ ├── Route11Gate2F.asm │ │ ├── Route12.asm │ │ ├── Route12Gate1F.asm │ │ ├── Route12Gate2F.asm │ │ ├── Route12SuperRodHouse.asm │ │ ├── Route13.asm │ │ ├── Route14.asm │ │ ├── Route15.asm │ │ ├── Route15Gate1F.asm │ │ ├── Route15Gate2F.asm │ │ ├── Route16.asm │ │ ├── Route16FlyHouse.asm │ │ ├── Route16Gate1F.asm │ │ ├── Route16Gate2F.asm │ │ ├── Route17.asm │ │ ├── Route18.asm │ │ ├── Route18Gate1F.asm │ │ ├── Route18Gate2F.asm │ │ ├── Route19.asm │ │ ├── Route2.asm │ │ ├── Route20.asm │ │ ├── Route21.asm │ │ ├── Route22.asm │ │ ├── Route22Gate.asm │ │ ├── Route23.asm │ │ ├── Route24.asm │ │ ├── Route25.asm │ │ ├── Route2Gate.asm │ │ ├── Route2TradeHouse.asm │ │ ├── Route3.asm │ │ ├── Route4.asm │ │ ├── Route5.asm │ │ ├── Route5Gate.asm │ │ ├── Route6.asm │ │ ├── Route6Gate.asm │ │ ├── Route7.asm │ │ ├── Route7Gate.asm │ │ ├── Route8.asm │ │ ├── Route8Gate.asm │ │ ├── Route9.asm │ │ ├── SSAnne1F.asm │ │ ├── SSAnne1FRooms.asm │ │ ├── SSAnne2F.asm │ │ ├── SSAnne2FRooms.asm │ │ ├── SSAnne3F.asm │ │ ├── SSAnneB1F.asm │ │ ├── SSAnneB1FRooms.asm │ │ ├── SSAnneBow.asm │ │ ├── SSAnneCaptainsRoom.asm │ │ ├── SSAnneKitchen.asm │ │ ├── SafariZoneCenter.asm │ │ ├── SafariZoneCenterRestHouse.asm │ │ ├── SafariZoneEast.asm │ │ ├── SafariZoneEastRestHouse.asm │ │ ├── SafariZoneGate.asm │ │ ├── SafariZoneNorth.asm │ │ ├── SafariZoneNorthRestHouse.asm │ │ ├── SafariZoneSecretHouse.asm │ │ ├── SafariZoneWest.asm │ │ ├── SafariZoneWestRestHouse.asm │ │ ├── SaffronCity.asm │ │ ├── SaffronGym.asm │ │ ├── SaffronMart.asm │ │ ├── SaffronPidgeyHouse.asm │ │ ├── SaffronPokecenter.asm │ │ ├── SeafoamIslands1F.asm │ │ ├── SeafoamIslandsB1F.asm │ │ ├── SeafoamIslandsB2F.asm │ │ ├── SeafoamIslandsB3F.asm │ │ ├── SeafoamIslandsB4F.asm │ │ ├── SilphCo10F.asm │ │ ├── SilphCo11F.asm │ │ ├── SilphCo1F.asm │ │ ├── SilphCo2F.asm │ │ ├── SilphCo3F.asm │ │ ├── SilphCo4F.asm │ │ ├── SilphCo5F.asm │ │ ├── SilphCo6F.asm │ │ ├── SilphCo7F.asm │ │ ├── SilphCo8F.asm │ │ ├── SilphCo9F.asm │ │ ├── SilphCoElevator.asm │ │ ├── SummerBeachHouse.asm │ │ ├── TradeCenter.asm │ │ ├── UndergroundPathNorthSouth.asm │ │ ├── UndergroundPathRoute5.asm │ │ ├── UndergroundPathRoute6.asm │ │ ├── UndergroundPathRoute7.asm │ │ ├── UndergroundPathRoute7Copy.asm │ │ ├── UndergroundPathRoute8.asm │ │ ├── UndergroundPathWestEast.asm │ │ ├── VermilionCity.asm │ │ ├── VermilionDock.asm │ │ ├── VermilionGym.asm │ │ ├── VermilionMart.asm │ │ ├── VermilionOldRodHouse.asm │ │ ├── VermilionPidgeyHouse.asm │ │ ├── VermilionPokecenter.asm │ │ ├── VermilionTradeHouse.asm │ │ ├── VictoryRoad1F.asm │ │ ├── VictoryRoad2F.asm │ │ ├── VictoryRoad3F.asm │ │ ├── ViridianCity.asm │ │ ├── ViridianForest.asm │ │ ├── ViridianForestNorthGate.asm │ │ ├── ViridianForestSouthGate.asm │ │ ├── ViridianGym.asm │ │ ├── ViridianMart.asm │ │ ├── ViridianNicknameHouse.asm │ │ ├── ViridianPokecenter.asm │ │ ├── ViridianSchoolHouse.asm │ │ └── WardensHouse.asm │ ├── rest_house_maps.asm │ ├── songs.asm │ ├── special_warps.asm │ ├── sprite_sets.asm │ ├── town_map_entries.asm │ └── town_map_order.asm ├── moves │ ├── animations.asm │ ├── effects_pointers.asm │ ├── field_move_names.asm │ ├── field_moves.asm │ ├── grammar.asm │ ├── hm_moves.asm │ ├── moves.asm │ ├── names.asm │ ├── sfx.asm │ └── tmhm_moves.asm ├── pikachu │ ├── pikachu_emotions.asm │ ├── pikachu_pic_animation.asm │ ├── pikachu_pic_objects.asm │ └── pikachu_pic_tilemaps.asm ├── player_names.asm ├── player_names_list.asm ├── pokemon │ ├── base_stats.asm │ ├── base_stats │ │ ├── abra.asm │ │ ├── aerodactyl.asm │ │ ├── alakazam.asm │ │ ├── arbok.asm │ │ ├── arcanine.asm │ │ ├── articuno.asm │ │ ├── beedrill.asm │ │ ├── bellsprout.asm │ │ ├── blastoise.asm │ │ ├── bulbasaur.asm │ │ ├── butterfree.asm │ │ ├── caterpie.asm │ │ ├── chansey.asm │ │ ├── charizard.asm │ │ ├── charmander.asm │ │ ├── charmeleon.asm │ │ ├── clefable.asm │ │ ├── clefairy.asm │ │ ├── cloyster.asm │ │ ├── cubone.asm │ │ ├── dewgong.asm │ │ ├── diglett.asm │ │ ├── ditto.asm │ │ ├── dodrio.asm │ │ ├── doduo.asm │ │ ├── dragonair.asm │ │ ├── dragonite.asm │ │ ├── dratini.asm │ │ ├── drowzee.asm │ │ ├── dugtrio.asm │ │ ├── eevee.asm │ │ ├── ekans.asm │ │ ├── electabuzz.asm │ │ ├── electrode.asm │ │ ├── exeggcute.asm │ │ ├── exeggutor.asm │ │ ├── farfetchd.asm │ │ ├── fearow.asm │ │ ├── flareon.asm │ │ ├── gastly.asm │ │ ├── gengar.asm │ │ ├── geodude.asm │ │ ├── gloom.asm │ │ ├── golbat.asm │ │ ├── goldeen.asm │ │ ├── golduck.asm │ │ ├── golem.asm │ │ ├── graveler.asm │ │ ├── grimer.asm │ │ ├── growlithe.asm │ │ ├── gyarados.asm │ │ ├── haunter.asm │ │ ├── hitmonchan.asm │ │ ├── hitmonlee.asm │ │ ├── horsea.asm │ │ ├── hypno.asm │ │ ├── ivysaur.asm │ │ ├── jigglypuff.asm │ │ ├── jolteon.asm │ │ ├── jynx.asm │ │ ├── kabuto.asm │ │ ├── kabutops.asm │ │ ├── kadabra.asm │ │ ├── kakuna.asm │ │ ├── kangaskhan.asm │ │ ├── kingler.asm │ │ ├── koffing.asm │ │ ├── krabby.asm │ │ ├── lapras.asm │ │ ├── lickitung.asm │ │ ├── machamp.asm │ │ ├── machoke.asm │ │ ├── machop.asm │ │ ├── magikarp.asm │ │ ├── magmar.asm │ │ ├── magnemite.asm │ │ ├── magneton.asm │ │ ├── mankey.asm │ │ ├── marowak.asm │ │ ├── meowth.asm │ │ ├── metapod.asm │ │ ├── mew.asm │ │ ├── mewtwo.asm │ │ ├── moltres.asm │ │ ├── mrmime.asm │ │ ├── muk.asm │ │ ├── nidoking.asm │ │ ├── nidoqueen.asm │ │ ├── nidoranf.asm │ │ ├── nidoranm.asm │ │ ├── nidorina.asm │ │ ├── nidorino.asm │ │ ├── ninetales.asm │ │ ├── oddish.asm │ │ ├── omanyte.asm │ │ ├── omastar.asm │ │ ├── onix.asm │ │ ├── paras.asm │ │ ├── parasect.asm │ │ ├── persian.asm │ │ ├── pidgeot.asm │ │ ├── pidgeotto.asm │ │ ├── pidgey.asm │ │ ├── pikachu.asm │ │ ├── pinsir.asm │ │ ├── poliwag.asm │ │ ├── poliwhirl.asm │ │ ├── poliwrath.asm │ │ ├── ponyta.asm │ │ ├── porygon.asm │ │ ├── primeape.asm │ │ ├── psyduck.asm │ │ ├── raichu.asm │ │ ├── rapidash.asm │ │ ├── raticate.asm │ │ ├── rattata.asm │ │ ├── rhydon.asm │ │ ├── rhyhorn.asm │ │ ├── sandshrew.asm │ │ ├── sandslash.asm │ │ ├── scyther.asm │ │ ├── seadra.asm │ │ ├── seaking.asm │ │ ├── seel.asm │ │ ├── shellder.asm │ │ ├── slowbro.asm │ │ ├── slowpoke.asm │ │ ├── snorlax.asm │ │ ├── spearow.asm │ │ ├── squirtle.asm │ │ ├── starmie.asm │ │ ├── staryu.asm │ │ ├── tangela.asm │ │ ├── tauros.asm │ │ ├── tentacool.asm │ │ ├── tentacruel.asm │ │ ├── vaporeon.asm │ │ ├── venomoth.asm │ │ ├── venonat.asm │ │ ├── venusaur.asm │ │ ├── victreebel.asm │ │ ├── vileplume.asm │ │ ├── voltorb.asm │ │ ├── vulpix.asm │ │ ├── wartortle.asm │ │ ├── weedle.asm │ │ ├── weepinbell.asm │ │ ├── weezing.asm │ │ ├── wigglytuff.asm │ │ ├── zapdos.asm │ │ └── zubat.asm │ ├── cries.asm │ ├── dex_entries.asm │ ├── dex_order.asm │ ├── dex_text.asm │ ├── evos_moves.asm │ ├── menu_icons.asm │ ├── names.asm │ ├── palettes.asm │ └── unknown_list.asm ├── predef_pointers.asm ├── sgb │ ├── sgb_border.asm │ ├── sgb_packets.asm │ └── sgb_palettes.asm ├── sprite_anims │ ├── intro_frames.asm │ ├── intro_oam.asm │ ├── surfing_pikachu_frames.asm │ └── surfing_pikachu_oam.asm ├── sprites │ ├── facings.asm │ └── sprites.asm ├── text │ ├── alphabets.asm │ ├── dakutens.asm │ ├── text_1.asm │ ├── text_2.asm │ ├── text_3.asm │ ├── text_4.asm │ ├── text_5.asm │ ├── text_6.asm │ ├── text_7.asm │ ├── text_8.asm │ ├── text_9.asm │ └── unused_names.asm ├── text_boxes.asm ├── text_predef_pointers.asm ├── tilemaps.asm ├── tilesets │ ├── bike_riding_tilesets.asm │ ├── bookshelf_tile_ids.asm │ ├── collision_tile_ids.asm │ ├── cut_tree_blocks.asm │ ├── door_tile_ids.asm │ ├── dungeon_tilesets.asm │ ├── escape_rope_tilesets.asm │ ├── ledge_tiles.asm │ ├── pair_collision_tile_ids.asm │ ├── spinner_tiles.asm │ ├── tileset_headers.asm │ ├── warp_carpet_tile_ids.asm │ ├── warp_pad_hole_tile_ids.asm │ ├── warp_tile_ids.asm │ └── water_tilesets.asm ├── trainers │ ├── ai_pointers.asm │ ├── encounter_types.asm │ ├── move_choices.asm │ ├── name_pointers.asm │ ├── names.asm │ ├── parties.asm │ ├── pic_pointers_money.asm │ └── special_moves.asm ├── types │ ├── names.asm │ └── type_matchups.asm ├── wild │ ├── good_rod.asm │ ├── grass_water.asm │ ├── maps │ │ ├── CeruleanCave1F.asm │ │ ├── CeruleanCave2F.asm │ │ ├── CeruleanCaveB1F.asm │ │ ├── DiglettsCave.asm │ │ ├── MtMoon1F.asm │ │ ├── MtMoonB1F.asm │ │ ├── MtMoonB2F.asm │ │ ├── PokemonMansion1F.asm │ │ ├── PokemonMansion2F.asm │ │ ├── PokemonMansion3F.asm │ │ ├── PokemonMansionB1F.asm │ │ ├── PokemonTower1F.asm │ │ ├── PokemonTower2F.asm │ │ ├── PokemonTower3F.asm │ │ ├── PokemonTower4F.asm │ │ ├── PokemonTower5F.asm │ │ ├── PokemonTower6F.asm │ │ ├── PokemonTower7F.asm │ │ ├── PowerPlant.asm │ │ ├── RockTunnel1F.asm │ │ ├── RockTunnelB1F.asm │ │ ├── Route1.asm │ │ ├── Route10.asm │ │ ├── Route11.asm │ │ ├── Route12.asm │ │ ├── Route13.asm │ │ ├── Route14.asm │ │ ├── Route15.asm │ │ ├── Route16.asm │ │ ├── Route17.asm │ │ ├── Route18.asm │ │ ├── Route19.asm │ │ ├── Route2.asm │ │ ├── Route20.asm │ │ ├── Route21.asm │ │ ├── Route22.asm │ │ ├── Route23.asm │ │ ├── Route24.asm │ │ ├── Route25.asm │ │ ├── Route3.asm │ │ ├── Route4.asm │ │ ├── Route5.asm │ │ ├── Route6.asm │ │ ├── Route7.asm │ │ ├── Route8.asm │ │ ├── Route9.asm │ │ ├── SafariZoneCenter.asm │ │ ├── SafariZoneEast.asm │ │ ├── SafariZoneNorth.asm │ │ ├── SafariZoneWest.asm │ │ ├── SeafoamIslands1F.asm │ │ ├── SeafoamIslandsB1F.asm │ │ ├── SeafoamIslandsB2F.asm │ │ ├── SeafoamIslandsB3F.asm │ │ ├── SeafoamIslandsB4F.asm │ │ ├── VictoryRoad1F.asm │ │ ├── VictoryRoad2F.asm │ │ ├── VictoryRoad3F.asm │ │ ├── ViridianForest.asm │ │ └── nothing.asm │ ├── probabilities.asm │ └── super_rod.asm └── yes_no_menu_strings.asm ├── docs └── bugs_and_glitches.md ├── engine ├── battle │ ├── animations.asm │ ├── battle_transitions.asm │ ├── common_text.asm │ ├── core.asm │ ├── decrement_pp.asm │ ├── display_effectiveness.asm │ ├── draw_hud_pokeball_gfx.asm │ ├── effects.asm │ ├── end_of_battle.asm │ ├── experience.asm │ ├── get_trainer_name.asm │ ├── ghost_marowak_anim.asm │ ├── init_battle.asm │ ├── init_battle_variables.asm │ ├── link_battle_versus_text.asm │ ├── misc.asm │ ├── move_effects │ │ ├── conversion.asm │ │ ├── drain_hp.asm │ │ ├── focus_energy.asm │ │ ├── haze.asm │ │ ├── heal.asm │ │ ├── leech_seed.asm │ │ ├── mist.asm │ │ ├── one_hit_ko.asm │ │ ├── paralyze.asm │ │ ├── pay_day.asm │ │ ├── recoil.asm │ │ ├── reflect_light_screen.asm │ │ ├── substitute.asm │ │ └── transform.asm │ ├── pikachu_entrance_anim.asm │ ├── print_type.asm │ ├── read_trainer_party.asm │ ├── safari_zone.asm │ ├── save_trainer_name.asm │ ├── scale_sprites.asm │ ├── scroll_draw_trainer_pic.asm │ ├── trainer_ai.asm │ ├── unused_stats_functions.asm │ └── wild_encounters.asm ├── debug │ ├── debug_menu.asm │ └── debug_party.asm ├── events │ ├── black_out.asm │ ├── card_key.asm │ ├── cinnabar_lab.asm │ ├── diploma.asm │ ├── diploma2.asm │ ├── display_pokedex.asm │ ├── elevator.asm │ ├── give_pokemon.asm │ ├── heal_party.asm │ ├── hidden_items.asm │ ├── hidden_objects │ │ ├── bench_guys.asm │ │ ├── bills_house_pc.asm │ │ ├── blues_room.asm │ │ ├── book_or_sculpture.asm │ │ ├── bookshelves.asm │ │ ├── cinnabar_gym_quiz.asm │ │ ├── elevator.asm │ │ ├── fanclub_pictures.asm │ │ ├── fighting_dojo.asm │ │ ├── gym_statues.asm │ │ ├── indigo_plateau_hq.asm │ │ ├── indigo_plateau_statues.asm │ │ ├── magazines.asm │ │ ├── museum_fossils.asm │ │ ├── museum_fossils2.asm │ │ ├── new_bike.asm │ │ ├── oaks_lab_email.asm │ │ ├── oaks_lab_posters.asm │ │ ├── pokecenter_pc.asm │ │ ├── pokemon_stuff.asm │ │ ├── reds_room.asm │ │ ├── route_15_binoculars.asm │ │ ├── safari_game.asm │ │ ├── school_blackboard.asm │ │ ├── school_notebooks.asm │ │ ├── town_map.asm │ │ ├── vermilion_gym_trash.asm │ │ └── vermilion_gym_trash2.asm │ ├── in_game_trades.asm │ ├── oaks_aide.asm │ ├── pewter_guys.asm │ ├── pick_up_item.asm │ ├── pikachu_happiness.asm │ ├── poison.asm │ ├── pokecenter.asm │ ├── pokecenter_chansey.asm │ ├── pokedex_rating.asm │ ├── pokemart.asm │ ├── prize_menu.asm │ ├── saffron_guards.asm │ ├── set_blackout_map.asm │ ├── starter_dex.asm │ ├── try_pikachu_movement.asm │ └── vending_machine.asm ├── flag_action.asm ├── gfx │ ├── animated_objects.asm │ ├── bg_map_attributes.asm │ ├── hp_bar.asm │ ├── load_pokedex_tiles.asm │ ├── mon_icons.asm │ ├── oam_dma.asm │ ├── palettes.asm │ ├── screen_effects.asm │ └── sprite_oam.asm ├── items │ ├── get_bag_item_quantity.asm │ ├── inventory.asm │ ├── item_effects.asm │ ├── itemfinder.asm │ ├── subtract_paid_money.asm │ ├── super_rod.asm │ ├── tm_prices.asm │ ├── tmhm.asm │ ├── tms.asm │ └── town_map.asm ├── joypad.asm ├── link │ ├── cable_club.asm │ ├── cable_club_npc.asm │ └── print_waiting_text.asm ├── math │ ├── bcd.asm │ ├── multiply_divide.asm │ └── random.asm ├── menus │ ├── display_text_id_init.asm │ ├── draw_badges.asm │ ├── draw_start_menu.asm │ ├── league_pc.asm │ ├── link_menu.asm │ ├── main_menu.asm │ ├── naming_screen.asm │ ├── oaks_pc.asm │ ├── options.asm │ ├── party_menu.asm │ ├── pc.asm │ ├── players_pc.asm │ ├── pokedex.asm │ ├── save.asm │ ├── start_sub_menus.asm │ ├── swap_items.asm │ ├── text_box.asm │ └── unused_input.asm ├── minigame │ └── surfing_pikachu.asm ├── movie │ ├── credits.asm │ ├── evolution.asm │ ├── hall_of_fame.asm │ ├── intro.asm │ ├── intro_yellow.asm │ ├── oak_speech │ │ ├── clear_save.asm │ │ ├── init_player_data.asm │ │ ├── oak_speech.asm │ │ └── oak_speech2.asm │ ├── splash.asm │ ├── title.asm │ ├── title_rb.asm │ ├── title_yellow.asm │ ├── trade.asm │ └── trade2.asm ├── overworld │ ├── advance_player_sprite.asm │ ├── auto_movement.asm │ ├── clear_variables.asm │ ├── cut.asm │ ├── cut2.asm │ ├── daycare_exp.asm │ ├── doors.asm │ ├── dungeon_warps.asm │ ├── dust_smoke.asm │ ├── elevator.asm │ ├── emotion_bubbles.asm │ ├── field_move_messages.asm │ ├── healing_machine.asm │ ├── hidden_objects.asm │ ├── is_player_just_outside_map.asm │ ├── ledges.asm │ ├── map_sprites.asm │ ├── missable_objects.asm │ ├── movement.asm │ ├── npc_movement_2.asm │ ├── pathfinding.asm │ ├── player_animations.asm │ ├── player_state.asm │ ├── push_boulder.asm │ ├── special_warps.asm │ ├── specific_script_flags.asm │ ├── spinners.asm │ ├── sprite_collisions.asm │ ├── tilesets.asm │ ├── trainer_sight.asm │ ├── unused_load_missable_object_data.asm │ ├── update_map.asm │ └── wild_mons.asm ├── pikachu │ ├── pikachu_emotions.asm │ ├── pikachu_follow.asm │ ├── pikachu_movement.asm │ ├── pikachu_pcm.asm │ ├── pikachu_pic_animation.asm │ ├── pikachu_status.asm │ └── respawn_overworld_pikachu.asm ├── pokemon │ ├── add_mon.asm │ ├── bills_pc.asm │ ├── evos_moves.asm │ ├── experience.asm │ ├── learn_move.asm │ ├── load_mon_data.asm │ ├── remove_mon.asm │ ├── set_types.asm │ ├── status_ailments.asm │ └── status_screen.asm ├── predefs.asm ├── printer │ ├── printer.asm │ ├── printer2.asm │ └── serial.asm └── slots │ ├── game_corner_slots.asm │ ├── game_corner_slots2.asm │ └── slot_machine.asm ├── garbage ├── bank20.bin └── bank30.bin ├── gfx ├── battle │ ├── balls.png │ ├── battle_hud_1.png │ ├── battle_hud_2.png │ ├── battle_hud_3.png │ ├── ghost.png │ ├── move_anim_0.png │ ├── move_anim_1.png │ ├── oldmanb.png │ └── prof.oakb.png ├── blocksets │ ├── beach_house.bst │ ├── cavern.bst │ ├── cemetery.bst │ ├── club.bst │ ├── facility.bst │ ├── forest.bst │ ├── gate.bst │ ├── gym.bst │ ├── house.bst │ ├── interior.bst │ ├── lab.bst │ ├── lobby.bst │ ├── mansion.bst │ ├── overworld.bst │ ├── plateau.bst │ ├── pokecenter.bst │ ├── reds_house.bst │ ├── ship.bst │ ├── ship_port.bst │ └── underground.bst ├── credits │ └── the_end.png ├── emotes │ ├── bolt.png │ ├── fish.png │ ├── happy.png │ ├── heart.png │ ├── question.png │ ├── shock.png │ ├── skull.png │ └── zzz.png ├── exp_bar.png ├── fishing.asm ├── font.asm ├── font │ ├── AB.png │ ├── ED.png │ ├── P.png │ ├── font.png │ ├── font_battle_extra.png │ └── font_extra.png ├── icons │ ├── bug.png │ ├── plant.png │ ├── quadruped.png │ └── snake.png ├── intro │ ├── clouds.png │ ├── gengar_1.tilemap │ ├── gengar_2.tilemap │ ├── gengar_3.tilemap │ ├── unknown_f9b6e.map │ ├── unknown_f9be6.map │ ├── unknown_f9bf2.map │ ├── yellow_intro_1.png │ └── yellow_intro_2.png ├── overworld │ ├── battle_transition.png │ ├── fishing_rod.png │ ├── heal_machine.png │ ├── pikachu_ball.png │ ├── red_fish_back.png │ ├── red_fish_front.png │ ├── red_fish_side.png │ ├── shadow.png │ ├── smoke.png │ └── spinners.png ├── pics.asm ├── pikachu.asm ├── pikachu │ ├── unknown_e4000.png │ ├── unknown_e40cc.png │ ├── unknown_e411c.png │ ├── unknown_e41d2.png │ ├── unknown_e4272.png │ ├── unknown_e4323.png │ ├── unknown_e4383.png │ ├── unknown_e444b.png │ ├── unknown_e458b.png │ ├── unknown_e463b.png │ ├── unknown_e467b.png │ ├── unknown_e472e.png │ ├── unknown_e476e.png │ ├── unknown_e4841.png │ ├── unknown_e49d1.png │ ├── unknown_e4a99.png │ ├── unknown_e4b39.png │ ├── unknown_e4bde.png │ ├── unknown_e4c3e.png │ ├── unknown_e4ce0.png │ ├── unknown_e4e70.png │ ├── unknown_e5000.png │ ├── unknown_e50af.png │ ├── unknown_e523f.png │ ├── unknown_e52fe.png │ ├── unknown_e548e.png │ ├── unknown_e5541.png │ ├── unknown_e56d1.png │ ├── unknown_e5794.png │ ├── unknown_e5924.png │ ├── unknown_e59ed.png │ ├── unknown_e5b7d.png │ ├── unknown_e5c4d.png │ ├── unknown_e5ddd.png │ ├── unknown_e5e90.png │ ├── unknown_e6020.png │ ├── unknown_e61b0.png │ ├── unknown_e6340.png │ ├── unknown_e63f7.png │ ├── unknown_e6587.png │ ├── unknown_e6646.png │ ├── unknown_e67d6.png │ ├── unknown_e682f.png │ ├── unknown_e69bf.png │ ├── unknown_e6b4f.png │ ├── unknown_e6cdf.png │ ├── unknown_e6e6f.png │ ├── unknown_e6fff.png │ ├── unknown_e718f.png │ ├── unknown_e731f.png │ ├── unknown_e74af.png │ ├── unknown_e763f.png │ ├── unknown_e77cf.png │ ├── unknown_e7863.png │ ├── unknown_e79f3.png │ ├── unknown_e7b83.png │ ├── unknown_e7d13.png │ ├── unknown_f0abf.png │ ├── unknown_f0b64.png │ ├── unknown_f0cf4.png │ └── unknown_f0d82.png ├── player.asm ├── player │ ├── red.png │ ├── redb.png │ ├── shrink1.png │ └── shrink2.png ├── pokedex │ └── pokedex.png ├── pokemon │ ├── back │ │ ├── abrab.png │ │ ├── aerodactylb.png │ │ ├── alakazamb.png │ │ ├── arbokb.png │ │ ├── arcanineb.png │ │ ├── articunob.png │ │ ├── beedrillb.png │ │ ├── bellsproutb.png │ │ ├── blastoiseb.png │ │ ├── bulbasaurb.png │ │ ├── butterfreeb.png │ │ ├── caterpieb.png │ │ ├── chanseyb.png │ │ ├── charizardb.png │ │ ├── charmanderb.png │ │ ├── charmeleonb.png │ │ ├── clefableb.png │ │ ├── clefairyb.png │ │ ├── cloysterb.png │ │ ├── cuboneb.png │ │ ├── dewgongb.png │ │ ├── diglettb.png │ │ ├── dittob.png │ │ ├── dodriob.png │ │ ├── doduob.png │ │ ├── dragonairb.png │ │ ├── dragoniteb.png │ │ ├── dratinib.png │ │ ├── drowzeeb.png │ │ ├── dugtriob.png │ │ ├── eeveeb.png │ │ ├── ekansb.png │ │ ├── electabuzzb.png │ │ ├── electrodeb.png │ │ ├── exeggcuteb.png │ │ ├── exeggutorb.png │ │ ├── farfetchdb.png │ │ ├── fearowb.png │ │ ├── flareonb.png │ │ ├── gastlyb.png │ │ ├── gengarb.png │ │ ├── geodudeb.png │ │ ├── gloomb.png │ │ ├── golbatb.png │ │ ├── goldeenb.png │ │ ├── golduckb.png │ │ ├── golemb.png │ │ ├── gravelerb.png │ │ ├── grimerb.png │ │ ├── growlitheb.png │ │ ├── gyaradosb.png │ │ ├── haunterb.png │ │ ├── hitmonchanb.png │ │ ├── hitmonleeb.png │ │ ├── horseab.png │ │ ├── hypnob.png │ │ ├── ivysaurb.png │ │ ├── jigglypuffb.png │ │ ├── jolteonb.png │ │ ├── jynxb.png │ │ ├── kabutob.png │ │ ├── kabutopsb.png │ │ ├── kadabrab.png │ │ ├── kakunab.png │ │ ├── kangaskhanb.png │ │ ├── kinglerb.png │ │ ├── koffingb.png │ │ ├── krabbyb.png │ │ ├── laprasb.png │ │ ├── lickitungb.png │ │ ├── machampb.png │ │ ├── machokeb.png │ │ ├── machopb.png │ │ ├── magikarpb.png │ │ ├── magmarb.png │ │ ├── magnemiteb.png │ │ ├── magnetonb.png │ │ ├── mankeyb.png │ │ ├── marowakb.png │ │ ├── meowthb.png │ │ ├── metapodb.png │ │ ├── mewb.png │ │ ├── mewtwob.png │ │ ├── moltresb.png │ │ ├── mr.mimeb.png │ │ ├── mukb.png │ │ ├── nidokingb.png │ │ ├── nidoqueenb.png │ │ ├── nidoranfb.png │ │ ├── nidoranmb.png │ │ ├── nidorinab.png │ │ ├── nidorinob.png │ │ ├── ninetalesb.png │ │ ├── oddishb.png │ │ ├── omanyteb.png │ │ ├── omastarb.png │ │ ├── onixb.png │ │ ├── parasb.png │ │ ├── parasectb.png │ │ ├── persianb.png │ │ ├── pidgeotb.png │ │ ├── pidgeottob.png │ │ ├── pidgeyb.png │ │ ├── pikachub.png │ │ ├── pinsirb.png │ │ ├── poliwagb.png │ │ ├── poliwhirlb.png │ │ ├── poliwrathb.png │ │ ├── ponytab.png │ │ ├── porygonb.png │ │ ├── primeapeb.png │ │ ├── psyduckb.png │ │ ├── raichub.png │ │ ├── rapidashb.png │ │ ├── raticateb.png │ │ ├── rattatab.png │ │ ├── rhydonb.png │ │ ├── rhyhornb.png │ │ ├── sandshrewb.png │ │ ├── sandslashb.png │ │ ├── scytherb.png │ │ ├── seadrab.png │ │ ├── seakingb.png │ │ ├── seelb.png │ │ ├── shellderb.png │ │ ├── slowbrob.png │ │ ├── slowpokeb.png │ │ ├── snorlaxb.png │ │ ├── spearowb.png │ │ ├── squirtleb.png │ │ ├── starmieb.png │ │ ├── staryub.png │ │ ├── tangelab.png │ │ ├── taurosb.png │ │ ├── tentacoolb.png │ │ ├── tentacruelb.png │ │ ├── vaporeonb.png │ │ ├── venomothb.png │ │ ├── venonatb.png │ │ ├── venusaurb.png │ │ ├── victreebelb.png │ │ ├── vileplumeb.png │ │ ├── voltorbb.png │ │ ├── vulpixb.png │ │ ├── wartortleb.png │ │ ├── weedleb.png │ │ ├── weepinbellb.png │ │ ├── weezingb.png │ │ ├── wigglytuffb.png │ │ ├── zapdosb.png │ │ └── zubatb.png │ ├── downscaled_3x3.tilemap │ ├── downscaled_5x5.tilemap │ ├── front.tilemap │ ├── front │ │ ├── abra.png │ │ ├── aerodactyl.png │ │ ├── alakazam.png │ │ ├── arbok.png │ │ ├── arcanine.png │ │ ├── articuno.png │ │ ├── beedrill.png │ │ ├── bellsprout.png │ │ ├── blastoise.png │ │ ├── bulbasaur.png │ │ ├── butterfree.png │ │ ├── caterpie.png │ │ ├── chansey.png │ │ ├── charizard.png │ │ ├── charmander.png │ │ ├── charmeleon.png │ │ ├── clefable.png │ │ ├── clefairy.png │ │ ├── cloyster.png │ │ ├── cubone.png │ │ ├── dewgong.png │ │ ├── diglett.png │ │ ├── ditto.png │ │ ├── dodrio.png │ │ ├── doduo.png │ │ ├── dragonair.png │ │ ├── dragonite.png │ │ ├── dratini.png │ │ ├── drowzee.png │ │ ├── dugtrio.png │ │ ├── eevee.png │ │ ├── ekans.png │ │ ├── electabuzz.png │ │ ├── electrode.png │ │ ├── exeggcute.png │ │ ├── exeggutor.png │ │ ├── farfetchd.png │ │ ├── fearow.png │ │ ├── flareon.png │ │ ├── fossilaerodactyl.png │ │ ├── fossilkabutops.png │ │ ├── gastly.png │ │ ├── gengar.png │ │ ├── geodude.png │ │ ├── gloom.png │ │ ├── golbat.png │ │ ├── goldeen.png │ │ ├── golduck.png │ │ ├── golem.png │ │ ├── graveler.png │ │ ├── grimer.png │ │ ├── growlithe.png │ │ ├── gyarados.png │ │ ├── haunter.png │ │ ├── hitmonchan.png │ │ ├── hitmonlee.png │ │ ├── horsea.png │ │ ├── hypno.png │ │ ├── ivysaur.png │ │ ├── jigglypuff.png │ │ ├── jolteon.png │ │ ├── jynx.png │ │ ├── kabuto.png │ │ ├── kabutops.png │ │ ├── kadabra.png │ │ ├── kakuna.png │ │ ├── kangaskhan.png │ │ ├── kingler.png │ │ ├── koffing.png │ │ ├── krabby.png │ │ ├── lapras.png │ │ ├── lickitung.png │ │ ├── machamp.png │ │ ├── machoke.png │ │ ├── machop.png │ │ ├── magikarp.png │ │ ├── magmar.png │ │ ├── magnemite.png │ │ ├── magneton.png │ │ ├── mankey.png │ │ ├── marowak.png │ │ ├── meowth.png │ │ ├── metapod.png │ │ ├── mew.png │ │ ├── mewtwo.png │ │ ├── moltres.png │ │ ├── mr.mime.png │ │ ├── muk.png │ │ ├── nidoking.png │ │ ├── nidoqueen.png │ │ ├── nidoranf.png │ │ ├── nidoranm.png │ │ ├── nidorina.png │ │ ├── nidorino.png │ │ ├── ninetales.png │ │ ├── oddish.png │ │ ├── omanyte.png │ │ ├── omastar.png │ │ ├── onix.png │ │ ├── paras.png │ │ ├── parasect.png │ │ ├── persian.png │ │ ├── pidgeot.png │ │ ├── pidgeotto.png │ │ ├── pidgey.png │ │ ├── pikachu.png │ │ ├── pinsir.png │ │ ├── poliwag.png │ │ ├── poliwhirl.png │ │ ├── poliwrath.png │ │ ├── ponyta.png │ │ ├── porygon.png │ │ ├── primeape.png │ │ ├── psyduck.png │ │ ├── raichu.png │ │ ├── rapidash.png │ │ ├── raticate.png │ │ ├── rattata.png │ │ ├── rhydon.png │ │ ├── rhyhorn.png │ │ ├── sandshrew.png │ │ ├── sandslash.png │ │ ├── scyther.png │ │ ├── seadra.png │ │ ├── seaking.png │ │ ├── seel.png │ │ ├── shellder.png │ │ ├── slowbro.png │ │ ├── slowpoke.png │ │ ├── snorlax.png │ │ ├── spearow.png │ │ ├── squirtle.png │ │ ├── starmie.png │ │ ├── staryu.png │ │ ├── tangela.png │ │ ├── tauros.png │ │ ├── tentacool.png │ │ ├── tentacruel.png │ │ ├── vaporeon.png │ │ ├── venomoth.png │ │ ├── venonat.png │ │ ├── venusaur.png │ │ ├── victreebel.png │ │ ├── vileplume.png │ │ ├── voltorb.png │ │ ├── vulpix.png │ │ ├── wartortle.png │ │ ├── weedle.png │ │ ├── weepinbell.png │ │ ├── weezing.png │ │ ├── wigglytuff.png │ │ ├── zapdos.png │ │ └── zubat.png │ ├── slide_down_7x3.tilemap │ └── slide_down_7x5.tilemap ├── printer │ ├── 01.png │ ├── hp.png │ └── lv.png ├── sgb │ ├── border.png │ └── border.tilemap ├── slots │ ├── slots.tilemap │ ├── slots_1.png │ └── slots_2.png ├── splash │ ├── copyright.png │ ├── falling_star.png │ ├── gamefreak_logo.png │ └── gamefreak_presents.png ├── sprites.asm ├── sprites │ ├── agatha.png │ ├── balding_guy.png │ ├── beauty.png │ ├── bike_shop_clerk.png │ ├── biker.png │ ├── bird.png │ ├── blue.png │ ├── boulder.png │ ├── brunette_girl.png │ ├── bruno.png │ ├── bulbasaur.png │ ├── captain.png │ ├── channeler.png │ ├── chansey.png │ ├── clefairy.png │ ├── clerk.png │ ├── clipboard.png │ ├── cook.png │ ├── cooltrainer_f.png │ ├── cooltrainer_m.png │ ├── daisy.png │ ├── fairy.png │ ├── fisher.png │ ├── fishing_guru.png │ ├── fossil.png │ ├── gambler.png │ ├── gambler_asleep.png │ ├── gameboy_kid.png │ ├── gentleman.png │ ├── giovanni.png │ ├── girl.png │ ├── gramps.png │ ├── granny.png │ ├── guard.png │ ├── gym_guide.png │ ├── hiker.png │ ├── james.png │ ├── jessie.png │ ├── jigglypuff.png │ ├── koga.png │ ├── lance.png │ ├── link_receptionist.png │ ├── little_boy.png │ ├── little_girl.png │ ├── lorelei.png │ ├── middle_aged_man.png │ ├── middle_aged_woman.png │ ├── mom.png │ ├── monster.png │ ├── mr_fuji.png │ ├── nurse.png │ ├── oak.png │ ├── oddish.png │ ├── officer_jenny.png │ ├── old_amber.png │ ├── paper.png │ ├── pikachu.png │ ├── poke_ball.png │ ├── pokedex.png │ ├── question_mark.png │ ├── red.png │ ├── red_bike.png │ ├── rocker.png │ ├── rocket.png │ ├── safari_zone_worker.png │ ├── sailor.png │ ├── sandshrew.png │ ├── scientist.png │ ├── seel.png │ ├── silph_president.png │ ├── silph_worker_f.png │ ├── silph_worker_m.png │ ├── snorlax.png │ ├── super_nerd.png │ ├── surfing_pikachu.png │ ├── swimmer.png │ ├── waiter.png │ ├── warden.png │ └── youngster.png ├── surfing_pikachu.asm ├── surfing_pikachu │ ├── surfing_pikachu_1a.png │ ├── surfing_pikachu_1b.png │ ├── surfing_pikachu_1c.png │ ├── surfing_pikachu_2.png │ ├── surfing_pikachu_3.png │ ├── unknown_f8946.map │ ├── unknown_f90bc.map │ ├── unknown_f91ac.map │ ├── unknown_f91bb.map │ └── unknown_f91c8.map ├── tilesets.asm ├── tilesets │ ├── beach_house.png │ ├── cavern.png │ ├── cemetery.png │ ├── club.png │ ├── facility.png │ ├── flower │ │ ├── flower1.png │ │ ├── flower2.png │ │ └── flower3.png │ ├── forest.png │ ├── gate.png │ ├── gym.png │ ├── house.png │ ├── interior.png │ ├── lab.png │ ├── lobby.png │ ├── mansion.png │ ├── overworld.png │ ├── plateau.png │ ├── pokecenter.png │ ├── reds_house.png │ ├── ship.png │ ├── ship_port.png │ └── underground.png ├── title │ ├── blue_version.png │ ├── gamefreak_inc.png │ ├── nine.png │ ├── pika_bubble.tilemap │ ├── pikachu.tilemap │ ├── pikachu_bg.png │ ├── pikachu_ob.png │ ├── player.png │ ├── pokemon_logo.png │ ├── pokemon_logo.tilemap │ ├── pokemon_logo_corner.png │ └── pokemon_logo_japan.png ├── town_map │ ├── mon_nest_icon.png │ ├── town_map.png │ ├── town_map.rle │ ├── town_map_cursor.png │ └── up_arrow.png ├── trade.asm ├── trade │ ├── bubble.png │ ├── cable_ball.png │ ├── game_boy.png │ ├── game_boy.tilemap │ ├── link_cable.png │ └── link_cable.tilemap ├── trainer_card.asm ├── trainer_card │ ├── badge_numbers.png │ ├── badges.png │ ├── blank_leader_names.png │ ├── circle_tile.png │ └── trainer_info.png ├── trainers │ ├── agatha.png │ ├── beauty.png │ ├── biker.png │ ├── birdkeeper.png │ ├── blackbelt.png │ ├── blaine.png │ ├── brock.png │ ├── bruno.png │ ├── bugcatcher.png │ ├── burglar.png │ ├── channeler.png │ ├── cooltrainerf.png │ ├── cooltrainerm.png │ ├── cueball.png │ ├── engineer.png │ ├── erika.png │ ├── fisher.png │ ├── gambler.png │ ├── gentleman.png │ ├── giovanni.png │ ├── hiker.png │ ├── jessiejames.png │ ├── jr.trainerf.png │ ├── jr.trainerm.png │ ├── juggler.png │ ├── koga.png │ ├── lance.png │ ├── lass.png │ ├── lorelei.png │ ├── lt.surge.png │ ├── misty.png │ ├── pokemaniac.png │ ├── prof.oak.png │ ├── psychic.png │ ├── rival1.png │ ├── rival2.png │ ├── rival3.png │ ├── rocker.png │ ├── rocket.png │ ├── sabrina.png │ ├── sailor.png │ ├── scientist.png │ ├── supernerd.png │ ├── swimmer.png │ ├── tamer.png │ └── youngster.png ├── version.asm └── yellow_intro.asm ├── home.asm ├── home ├── array.asm ├── array2.asm ├── audio.asm ├── bankswitch.asm ├── bankswitch2.asm ├── cgb_palettes.asm ├── clear_sprites.asm ├── compare.asm ├── copy.asm ├── copy2.asm ├── copy_string.asm ├── count_set_bits.asm ├── delay.asm ├── fade.asm ├── fade_audio.asm ├── give.asm ├── header.asm ├── hidden_objects.asm ├── init.asm ├── inventory.asm ├── item.asm ├── item_price.asm ├── joypad.asm ├── joypad2.asm ├── lcd.asm ├── lcdc.asm ├── list_menu.asm ├── load_font.asm ├── map_objects.asm ├── math.asm ├── money.asm ├── move_mon.asm ├── names.asm ├── names2.asm ├── npc_movement.asm ├── oam.asm ├── overworld.asm ├── overworld_text.asm ├── palettes.asm ├── pathfinding.asm ├── pics.asm ├── pikachu.asm ├── pikachu_cries.asm ├── play_time.asm ├── pokemon.asm ├── predef.asm ├── predef_text.asm ├── print_bcd.asm ├── print_num.asm ├── print_text.asm ├── printer.asm ├── random.asm ├── reload_sprites.asm ├── reload_tiles.asm ├── reset_player_sprite.asm ├── serial.asm ├── start.asm ├── start_menu.asm ├── text.asm ├── text_script.asm ├── textbox.asm ├── tilemap.asm ├── timer.asm ├── trainers.asm ├── trainers2.asm ├── uncompress.asm ├── update_sprites.asm ├── vblank.asm ├── vcopy.asm ├── window.asm └── yes_no.asm ├── includes.asm ├── layout.link ├── macros ├── asserts.asm ├── code.asm ├── const.asm ├── coords.asm ├── data.asm ├── farcall.asm ├── gfx.asm ├── predef.asm ├── ram.asm ├── scripts │ ├── audio.asm │ ├── events.asm │ ├── gfx_anims.asm │ ├── maps.asm │ └── text.asm └── vc.asm ├── main.asm ├── maps.asm ├── maps ├── AgathasRoom.blk ├── BikeShop.blk ├── BillsHouse.blk ├── BluesHouse.blk ├── BrunosRoom.blk ├── CeladonChiefHouse.blk ├── CeladonCity.blk ├── CeladonDiner.blk ├── CeladonGym.blk ├── CeladonHotel.blk ├── CeladonMansion1F.blk ├── CeladonMansion2F.blk ├── CeladonMansion3F.blk ├── CeladonMansionRoof.blk ├── CeladonMansionRoofHouse.blk ├── CeladonMart1F.blk ├── CeladonMart2F.blk ├── CeladonMart3F.blk ├── CeladonMart4F.blk ├── CeladonMart5F.blk ├── CeladonMartElevator.blk ├── CeladonMartRoof.blk ├── CeladonPokecenter.blk ├── CeruleanBadgeHouse.blk ├── CeruleanCave1F.blk ├── CeruleanCave2F.blk ├── CeruleanCaveB1F.blk ├── CeruleanCity.blk ├── CeruleanGym.blk ├── CeruleanMart.blk ├── CeruleanPokecenter.blk ├── CeruleanTradeHouse.blk ├── CeruleanTrashedHouse.blk ├── ChampionsRoom.blk ├── CinnabarGym.blk ├── CinnabarIsland.blk ├── CinnabarLab.blk ├── CinnabarLabFossilRoom.blk ├── CinnabarLabMetronomeRoom.blk ├── CinnabarLabTradeRoom.blk ├── CinnabarMart.blk ├── CinnabarPokecenter.blk ├── Colosseum.blk ├── CopycatsHouse1F.blk ├── CopycatsHouse2F.blk ├── Daycare.blk ├── DiglettsCave.blk ├── DiglettsCaveRoute11.blk ├── DiglettsCaveRoute2.blk ├── FightingDojo.blk ├── FuchsiaBillsGrandpasHouse.blk ├── FuchsiaCity.blk ├── FuchsiaGoodRodHouse.blk ├── FuchsiaGym.blk ├── FuchsiaMart.blk ├── FuchsiaMeetingRoom.blk ├── FuchsiaPokecenter.blk ├── GameCorner.blk ├── GameCornerPrizeRoom.blk ├── HallOfFame.blk ├── IndigoPlateau.blk ├── IndigoPlateauLobby.blk ├── LancesRoom.blk ├── LavenderCuboneHouse.blk ├── LavenderMart.blk ├── LavenderPokecenter.blk ├── LavenderTown.blk ├── LoreleisRoom.blk ├── MrFujisHouse.blk ├── MrPsychicsHouse.blk ├── MtMoon1F.blk ├── MtMoonB1F.blk ├── MtMoonB2F.blk ├── MtMoonPokecenter.blk ├── Museum1F.blk ├── Museum2F.blk ├── NameRatersHouse.blk ├── OaksLab.blk ├── PalletTown.blk ├── PewterCity.blk ├── PewterGym.blk ├── PewterMart.blk ├── PewterNidoranHouse.blk ├── PewterPokecenter.blk ├── PewterSpeechHouse.blk ├── PokemonFanClub.blk ├── PokemonMansion1F.blk ├── PokemonMansion2F.blk ├── PokemonMansion3F.blk ├── PokemonMansionB1F.blk ├── PokemonTower1F.blk ├── PokemonTower2F.blk ├── PokemonTower3F.blk ├── PokemonTower4F.blk ├── PokemonTower5F.blk ├── PokemonTower6F.blk ├── PokemonTower7F.blk ├── PowerPlant.blk ├── RedsHouse1F.blk ├── RedsHouse2F.blk ├── RockTunnel1F.blk ├── RockTunnelB1F.blk ├── RockTunnelPokecenter.blk ├── RocketHideoutB1F.blk ├── RocketHideoutB2F.blk ├── RocketHideoutB3F.blk ├── RocketHideoutB4F.blk ├── RocketHideoutElevator.blk ├── Route1.blk ├── Route10.blk ├── Route11.blk ├── Route11Gate1F.blk ├── Route11Gate2F.blk ├── Route12.blk ├── Route12Gate1F.blk ├── Route12Gate2F.blk ├── Route12SuperRodHouse.blk ├── Route13.blk ├── Route14.blk ├── Route15.blk ├── Route15Gate1F.blk ├── Route15Gate2F.blk ├── Route16.blk ├── Route16FlyHouse.blk ├── Route16Gate1F.blk ├── Route16Gate2F.blk ├── Route17.blk ├── Route18.blk ├── Route18Gate1F.blk ├── Route18Gate2F.blk ├── Route19.blk ├── Route2.blk ├── Route20.blk ├── Route21.blk ├── Route22.blk ├── Route22Gate.blk ├── Route23.blk ├── Route24.blk ├── Route25.blk ├── Route2Gate.blk ├── Route2TradeHouse.blk ├── Route3.blk ├── Route4.blk ├── Route5.blk ├── Route5Gate.blk ├── Route6.blk ├── Route6Gate.blk ├── Route7.blk ├── Route7Gate.blk ├── Route8.blk ├── Route8Gate.blk ├── Route9.blk ├── SSAnne1F.blk ├── SSAnne1FRooms.blk ├── SSAnne2F.blk ├── SSAnne2FRooms.blk ├── SSAnne3F.blk ├── SSAnneB1F.blk ├── SSAnneB1FRooms.blk ├── SSAnneBow.blk ├── SSAnneCaptainsRoom.blk ├── SSAnneKitchen.blk ├── SafariZoneCenter.blk ├── SafariZoneCenterRestHouse.blk ├── SafariZoneEast.blk ├── SafariZoneEastRestHouse.blk ├── SafariZoneGate.blk ├── SafariZoneNorth.blk ├── SafariZoneNorthRestHouse.blk ├── SafariZoneSecretHouse.blk ├── SafariZoneWest.blk ├── SafariZoneWestRestHouse.blk ├── SaffronCity.blk ├── SaffronGym.blk ├── SaffronMart.blk ├── SaffronPidgeyHouse.blk ├── SaffronPokecenter.blk ├── SeafoamIslands1F.blk ├── SeafoamIslandsB1F.blk ├── SeafoamIslandsB2F.blk ├── SeafoamIslandsB3F.blk ├── SeafoamIslandsB4F.blk ├── SilphCo10F.blk ├── SilphCo11F.blk ├── SilphCo1F.blk ├── SilphCo2F.blk ├── SilphCo3F.blk ├── SilphCo4F.blk ├── SilphCo5F.blk ├── SilphCo6F.blk ├── SilphCo7F.blk ├── SilphCo8F.blk ├── SilphCo9F.blk ├── SilphCoElevator.blk ├── SummerBeachHouse.blk ├── TradeCenter.blk ├── UndergroundPathNorthSouth.blk ├── UndergroundPathRoute5.blk ├── UndergroundPathRoute6.blk ├── UndergroundPathRoute7.blk ├── UndergroundPathRoute8.blk ├── UndergroundPathWestEast.blk ├── UnusedDiglettsCaveCopy.blk ├── UnusedEmptyMap.blk ├── UnusedPokecenterCopy.blk ├── VermilionCity.blk ├── VermilionDock.blk ├── VermilionGym.blk ├── VermilionMart.blk ├── VermilionOldRodHouse.blk ├── VermilionPidgeyHouse.blk ├── VermilionPokecenter.blk ├── VermilionTradeHouse.blk ├── VictoryRoad1F.blk ├── VictoryRoad2F.blk ├── VictoryRoad3F.blk ├── ViridianCity.blk ├── ViridianForest.blk ├── ViridianForestNorthGate.blk ├── ViridianForestSouthGate.blk ├── ViridianGym.blk ├── ViridianMart.blk ├── ViridianNicknameHouse.blk ├── ViridianPokecenter.blk ├── ViridianSchoolHouse.blk └── WardensHouse.blk ├── ram.asm ├── ram ├── hram.asm ├── sram.asm ├── vram.asm └── wram.asm ├── rgbdscheck.asm ├── roms.sha1 ├── scripts ├── AgathasRoom.asm ├── BikeShop.asm ├── BillsHouse.asm ├── BillsHouse_2.asm ├── BluesHouse.asm ├── BrunosRoom.asm ├── CeladonChiefHouse.asm ├── CeladonCity.asm ├── CeladonCity_2.asm ├── CeladonDiner.asm ├── CeladonDiner_2.asm ├── CeladonGym.asm ├── CeladonHotel.asm ├── CeladonMansion1F.asm ├── CeladonMansion1F_2.asm ├── CeladonMansion2F.asm ├── CeladonMansion3F.asm ├── CeladonMansion3F_2.asm ├── CeladonMansionRoof.asm ├── CeladonMansionRoofHouse.asm ├── CeladonMart1F.asm ├── CeladonMart2F.asm ├── CeladonMart3F.asm ├── CeladonMart3F_2.asm ├── CeladonMart4F.asm ├── CeladonMart5F.asm ├── CeladonMartElevator.asm ├── CeladonMartRoof.asm ├── CeladonPokecenter.asm ├── CeruleanBadgeHouse.asm ├── CeruleanCave1F.asm ├── CeruleanCave2F.asm ├── CeruleanCaveB1F.asm ├── CeruleanCity.asm ├── CeruleanCity_2.asm ├── CeruleanGym.asm ├── CeruleanMart.asm ├── CeruleanMelaniesHouse.asm ├── CeruleanPokecenter.asm ├── CeruleanTrashedHouse.asm ├── ChampionsRoom.asm ├── CinnabarGym.asm ├── CinnabarGym_2.asm ├── CinnabarGym_3.asm ├── CinnabarIsland.asm ├── CinnabarLab.asm ├── CinnabarLabFossilRoom.asm ├── CinnabarLabMetronomeRoom.asm ├── CinnabarLabTradeRoom.asm ├── CinnabarMart.asm ├── CinnabarPokecenter.asm ├── Colosseum.asm ├── CopycatsHouse1F.asm ├── CopycatsHouse2F.asm ├── Daycare.asm ├── DiglettsCave.asm ├── DiglettsCaveRoute11.asm ├── DiglettsCaveRoute2.asm ├── FightingDojo.asm ├── FuchsiaBillsGrandpasHouse.asm ├── FuchsiaCity.asm ├── FuchsiaGoodRodHouse.asm ├── FuchsiaGym.asm ├── FuchsiaMart.asm ├── FuchsiaMeetingRoom.asm ├── FuchsiaPokecenter.asm ├── GameCorner.asm ├── GameCornerPrizeRoom.asm ├── GameCorner_2.asm ├── HallOfFame.asm ├── IndigoPlateau.asm ├── IndigoPlateauLobby.asm ├── LancesRoom.asm ├── LavenderCuboneHouse.asm ├── LavenderMart.asm ├── LavenderPokecenter.asm ├── LavenderTown.asm ├── LoreleisRoom.asm ├── MrFujisHouse.asm ├── MrPsychicsHouse.asm ├── MtMoon1F.asm ├── MtMoonB1F.asm ├── MtMoonB2F.asm ├── MtMoonB2F_2.asm ├── MtMoonPokecenter.asm ├── MtMoonPokecenter_2.asm ├── Museum1F.asm ├── Museum1F_2.asm ├── Museum2F.asm ├── NameRatersHouse.asm ├── OaksLab.asm ├── OaksLab_2.asm ├── PalletTown.asm ├── PewterCity.asm ├── PewterGym.asm ├── PewterMart.asm ├── PewterNidoranHouse.asm ├── PewterPokecenter.asm ├── PewterPokecenter_2.asm ├── PewterSpeechHouse.asm ├── PokemonFanClub.asm ├── PokemonMansion1F.asm ├── PokemonMansion2F.asm ├── PokemonMansion3F.asm ├── PokemonMansionB1F.asm ├── PokemonTower1F.asm ├── PokemonTower2F.asm ├── PokemonTower2F_2.asm ├── PokemonTower3F.asm ├── PokemonTower4F.asm ├── PokemonTower5F.asm ├── PokemonTower6F.asm ├── PokemonTower7F.asm ├── PowerPlant.asm ├── RedsHouse1F.asm ├── RedsHouse1F_2.asm ├── RedsHouse2F.asm ├── RockTunnel1F.asm ├── RockTunnelB1F.asm ├── RockTunnelPokecenter.asm ├── RocketHideoutB1F.asm ├── RocketHideoutB2F.asm ├── RocketHideoutB3F.asm ├── RocketHideoutB4F.asm ├── RocketHideoutElevator.asm ├── Route1.asm ├── Route10.asm ├── Route11.asm ├── Route11Gate1F.asm ├── Route11Gate2F.asm ├── Route12.asm ├── Route12Gate1F.asm ├── Route12Gate2F.asm ├── Route12SuperRodHouse.asm ├── Route13.asm ├── Route14.asm ├── Route15.asm ├── Route15Gate1F.asm ├── Route15Gate2F.asm ├── Route16.asm ├── Route16FlyHouse.asm ├── Route16Gate1F.asm ├── Route16Gate2F.asm ├── Route17.asm ├── Route18.asm ├── Route18Gate1F.asm ├── Route18Gate2F.asm ├── Route19.asm ├── Route1_2.asm ├── Route2.asm ├── Route20.asm ├── Route21.asm ├── Route22.asm ├── Route22Gate.asm ├── Route22_2.asm ├── Route23.asm ├── Route24.asm ├── Route25.asm ├── Route2Gate.asm ├── Route2TradeHouse.asm ├── Route3.asm ├── Route4.asm ├── Route5.asm ├── Route5Gate.asm ├── Route6.asm ├── Route6Gate.asm ├── Route7.asm ├── Route7Gate.asm ├── Route8.asm ├── Route8Gate.asm ├── Route9.asm ├── SSAnne1F.asm ├── SSAnne1FRooms.asm ├── SSAnne2F.asm ├── SSAnne2FRooms.asm ├── SSAnne2FRooms_2.asm ├── SSAnne3F.asm ├── SSAnneB1F.asm ├── SSAnneB1FRooms.asm ├── SSAnneBow.asm ├── SSAnneCaptainsRoom.asm ├── SSAnneKitchen.asm ├── SafariZoneCenter.asm ├── SafariZoneCenterRestHouse.asm ├── SafariZoneEast.asm ├── SafariZoneEastRestHouse.asm ├── SafariZoneGate.asm ├── SafariZoneGate_2.asm ├── SafariZoneNorth.asm ├── SafariZoneNorthRestHouse.asm ├── SafariZoneSecretHouse.asm ├── SafariZoneWest.asm ├── SafariZoneWestRestHouse.asm ├── SaffronCity.asm ├── SaffronGym.asm ├── SaffronMart.asm ├── SaffronPidgeyHouse.asm ├── SaffronPokecenter.asm ├── SeafoamIslands1F.asm ├── SeafoamIslandsB1F.asm ├── SeafoamIslandsB2F.asm ├── SeafoamIslandsB3F.asm ├── SeafoamIslandsB4F.asm ├── SilphCo10F.asm ├── SilphCo11F.asm ├── SilphCo11F_2.asm ├── SilphCo1F.asm ├── SilphCo2F.asm ├── SilphCo3F.asm ├── SilphCo4F.asm ├── SilphCo5F.asm ├── SilphCo6F.asm ├── SilphCo7F.asm ├── SilphCo8F.asm ├── SilphCo9F.asm ├── SilphCoElevator.asm ├── SummerBeachHouse.asm ├── SummerBeachHouse_2.asm ├── TradeCenter.asm ├── UndergroundPathNorthSouth.asm ├── UndergroundPathRoute5.asm ├── UndergroundPathRoute6.asm ├── UndergroundPathRoute7.asm ├── UndergroundPathRoute7Copy.asm ├── UndergroundPathRoute8.asm ├── UndergroundPathWestEast.asm ├── VermilionCity.asm ├── VermilionCity_2.asm ├── VermilionDock.asm ├── VermilionGym.asm ├── VermilionMart.asm ├── VermilionOldRodHouse.asm ├── VermilionPidgeyHouse.asm ├── VermilionPokecenter.asm ├── VermilionTradeHouse.asm ├── VictoryRoad1F.asm ├── VictoryRoad2F.asm ├── VictoryRoad3F.asm ├── ViridianCity.asm ├── ViridianCity_2.asm ├── ViridianForest.asm ├── ViridianForestNorthGate.asm ├── ViridianForestSouthGate.asm ├── ViridianForest_2.asm ├── ViridianGym.asm ├── ViridianMart.asm ├── ViridianNicknameHouse.asm ├── ViridianPokecenter.asm ├── ViridianSchoolHouse.asm ├── ViridianSchoolHouse_2.asm └── WardensHouse.asm ├── text.asm ├── text ├── AgathasRoom.asm ├── BikeShop.asm ├── BillsHouse.asm ├── BluesHouse.asm ├── BrunosRoom.asm ├── CeladonChiefHouse.asm ├── CeladonCity.asm ├── CeladonDiner.asm ├── CeladonGym.asm ├── CeladonHotel.asm ├── CeladonMansion1F.asm ├── CeladonMansion2F.asm ├── CeladonMansion3F.asm ├── CeladonMansionRoof.asm ├── CeladonMansionRoofHouse.asm ├── CeladonMart1F.asm ├── CeladonMart2F.asm ├── CeladonMart3F.asm ├── CeladonMart4F.asm ├── CeladonMart5F.asm ├── CeladonMartRoof.asm ├── CeladonPokecenter.asm ├── CeruleanBadgeHouse.asm ├── CeruleanBadgeHouse_2.asm ├── CeruleanCaveB1F.asm ├── CeruleanCity.asm ├── CeruleanGym.asm ├── CeruleanMart.asm ├── CeruleanMelaniesHouse.asm ├── CeruleanPokecenter.asm ├── CeruleanTrashedHouse.asm ├── ChampionsRoom.asm ├── CinnabarGym.asm ├── CinnabarIsland.asm ├── CinnabarLab.asm ├── CinnabarLabFossilRoom.asm ├── CinnabarLabMetronomeRoom.asm ├── CinnabarLabTradeRoom.asm ├── CinnabarMart.asm ├── CinnabarPokecenter.asm ├── CopycatsHouse1F.asm ├── CopycatsHouse2F.asm ├── Daycare.asm ├── DiglettsCaveRoute11.asm ├── DiglettsCaveRoute2.asm ├── FightingDojo.asm ├── FuchsiaBillsGrandpasHouse.asm ├── FuchsiaCity.asm ├── FuchsiaGoodRodHouse.asm ├── FuchsiaGym.asm ├── FuchsiaMart.asm ├── FuchsiaMeetingRoom.asm ├── FuchsiaPokecenter.asm ├── GameCorner.asm ├── GameCornerPrizeRoom.asm ├── GameCorner_2.asm ├── HallOfFame.asm ├── IndigoPlateauLobby.asm ├── LancesRoom.asm ├── LavenderCuboneHouse.asm ├── LavenderMart.asm ├── LavenderPokecenter.asm ├── LavenderTown.asm ├── LoreleisRoom.asm ├── MrFujisHouse.asm ├── MrPsychicsHouse.asm ├── MtMoon1F.asm ├── MtMoonB1F.asm ├── MtMoonB2F.asm ├── MtMoonPokecenter.asm ├── Museum1F.asm ├── Museum2F.asm ├── NameRatersHouse.asm ├── OaksLab.asm ├── PalletTown.asm ├── PewterCity.asm ├── PewterGym.asm ├── PewterMart.asm ├── PewterNidoranHouse.asm ├── PewterPokecenter.asm ├── PewterSpeechHouse.asm ├── PokemonFanClub.asm ├── PokemonMansion1F.asm ├── PokemonMansion2F.asm ├── PokemonMansion3F.asm ├── PokemonMansionB1F.asm ├── PokemonTower1F.asm ├── PokemonTower2F.asm ├── PokemonTower3F.asm ├── PokemonTower4F.asm ├── PokemonTower5F.asm ├── PokemonTower6F.asm ├── PokemonTower7F.asm ├── PowerPlant.asm ├── RedsHouse1F.asm ├── RockTunnel1F.asm ├── RockTunnelB1F.asm ├── RockTunnelPokecenter.asm ├── RocketHideoutB1F.asm ├── RocketHideoutB2F.asm ├── RocketHideoutB3F.asm ├── RocketHideoutB4F.asm ├── RocketHideoutElevator.asm ├── Route1.asm ├── Route10.asm ├── Route11.asm ├── Route11Gate1F.asm ├── Route11Gate2F.asm ├── Route12.asm ├── Route12Gate1F.asm ├── Route12Gate2F.asm ├── Route12SuperRodHouse.asm ├── Route13.asm ├── Route14.asm ├── Route15.asm ├── Route15Gate1F.asm ├── Route15Gate2F.asm ├── Route16.asm ├── Route16FlyHouse.asm ├── Route16Gate1F.asm ├── Route16Gate2F.asm ├── Route17.asm ├── Route18.asm ├── Route18Gate1F.asm ├── Route18Gate2F.asm ├── Route19.asm ├── Route2.asm ├── Route20.asm ├── Route21.asm ├── Route22.asm ├── Route22Gate.asm ├── Route23.asm ├── Route24.asm ├── Route25.asm ├── Route2Gate.asm ├── Route2TradeHouse.asm ├── Route3.asm ├── Route4.asm ├── Route5.asm ├── Route6.asm ├── Route7.asm ├── Route8.asm ├── Route9.asm ├── Route9_2.asm ├── SSAnne1F.asm ├── SSAnne1FRooms.asm ├── SSAnne2F.asm ├── SSAnne2FRooms.asm ├── SSAnne3F.asm ├── SSAnneB1FRooms.asm ├── SSAnneBow.asm ├── SSAnneCaptainsRoom.asm ├── SSAnneKitchen.asm ├── SafariZoneCenter.asm ├── SafariZoneCenterRestHouse.asm ├── SafariZoneEast.asm ├── SafariZoneEastRestHouse.asm ├── SafariZoneGate.asm ├── SafariZoneNorth.asm ├── SafariZoneNorthRestHouse.asm ├── SafariZoneSecretHouse.asm ├── SafariZoneWest.asm ├── SafariZoneWestRestHouse.asm ├── SaffronCity.asm ├── SaffronGates.asm ├── SaffronGym.asm ├── SaffronMart.asm ├── SaffronPidgeyHouse.asm ├── SaffronPokecenter.asm ├── SeafoamIslandsB4F.asm ├── SilphCo10F.asm ├── SilphCo11F.asm ├── SilphCo1F.asm ├── SilphCo2F.asm ├── SilphCo3F.asm ├── SilphCo4F.asm ├── SilphCo5F.asm ├── SilphCo6F.asm ├── SilphCo7F.asm ├── SilphCo8F.asm ├── SilphCo9F.asm ├── SummerBeachHouse.asm ├── UndergroundPathRoute6.asm ├── UndergroundPathRoute7.asm ├── UndergroundPathRoute7Copy.asm ├── UndergroundPathRoute8.asm ├── VermilionCity.asm ├── VermilionDock.asm ├── VermilionGym.asm ├── VermilionMart.asm ├── VermilionOldRodHouse.asm ├── VermilionPidgeyHouse.asm ├── VermilionPokecenter.asm ├── VictoryRoad1F.asm ├── VictoryRoad2F.asm ├── VictoryRoad3F.asm ├── ViridianCity.asm ├── ViridianForest.asm ├── ViridianForestNorthGate.asm ├── ViridianForestSouthGate.asm ├── ViridianGym.asm ├── ViridianMart.asm ├── ViridianNicknameHouse.asm ├── ViridianPokecenter.asm ├── ViridianSchoolHouse.asm ├── WardensHouse.asm └── pokedex_ratings.asm ├── tools ├── .gitignore ├── Makefile ├── common.h ├── gfx.c ├── make_patch.c ├── pcm.c ├── pkmncompress.c ├── scan_includes.c └── unnamed.py └── vc ├── pokeyellow.constants.asm └── pokeyellow.patch.template /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/webhook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/.github/webhook.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/.gitignore -------------------------------------------------------------------------------- /.rgbds-version: -------------------------------------------------------------------------------- 1 | 0.9.3 2 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/README.md -------------------------------------------------------------------------------- /audio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio.asm -------------------------------------------------------------------------------- /audio/alternate_tempo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/alternate_tempo.asm -------------------------------------------------------------------------------- /audio/engine_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/engine_1.asm -------------------------------------------------------------------------------- /audio/engine_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/engine_2.asm -------------------------------------------------------------------------------- /audio/engine_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/engine_3.asm -------------------------------------------------------------------------------- /audio/engine_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/engine_4.asm -------------------------------------------------------------------------------- /audio/music/celadon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/celadon.asm -------------------------------------------------------------------------------- /audio/music/cinnabar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/cinnabar.asm -------------------------------------------------------------------------------- /audio/music/cities1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/cities1.asm -------------------------------------------------------------------------------- /audio/music/cities2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/cities2.asm -------------------------------------------------------------------------------- /audio/music/credits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/credits.asm -------------------------------------------------------------------------------- /audio/music/dungeon1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/dungeon1.asm -------------------------------------------------------------------------------- /audio/music/dungeon2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/dungeon2.asm -------------------------------------------------------------------------------- /audio/music/dungeon3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/dungeon3.asm -------------------------------------------------------------------------------- /audio/music/gym.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/gym.asm -------------------------------------------------------------------------------- /audio/music/lavender.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/lavender.asm -------------------------------------------------------------------------------- /audio/music/meetrival.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/meetrival.asm -------------------------------------------------------------------------------- /audio/music/museumguy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/museumguy.asm -------------------------------------------------------------------------------- /audio/music/oakslab.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/oakslab.asm -------------------------------------------------------------------------------- /audio/music/printer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/printer.asm -------------------------------------------------------------------------------- /audio/music/routes1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/routes1.asm -------------------------------------------------------------------------------- /audio/music/routes2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/routes2.asm -------------------------------------------------------------------------------- /audio/music/routes3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/routes3.asm -------------------------------------------------------------------------------- /audio/music/routes4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/routes4.asm -------------------------------------------------------------------------------- /audio/music/silphco.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/silphco.asm -------------------------------------------------------------------------------- /audio/music/ssanne.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/ssanne.asm -------------------------------------------------------------------------------- /audio/music/surfing.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/surfing.asm -------------------------------------------------------------------------------- /audio/music/vermilion.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/music/vermilion.asm -------------------------------------------------------------------------------- /audio/notes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/notes.asm -------------------------------------------------------------------------------- /audio/pikachu_cries.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/pikachu_cries.asm -------------------------------------------------------------------------------- /audio/poke_flute.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/poke_flute.asm -------------------------------------------------------------------------------- /audio/sfx/59_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/59_1.asm -------------------------------------------------------------------------------- /audio/sfx/59_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/59_3.asm -------------------------------------------------------------------------------- /audio/sfx/ball_poof.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/ball_poof.asm -------------------------------------------------------------------------------- /audio/sfx/ball_toss.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/ball_toss.asm -------------------------------------------------------------------------------- /audio/sfx/battle_09.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_09.asm -------------------------------------------------------------------------------- /audio/sfx/battle_0b.asm: -------------------------------------------------------------------------------- 1 | SFX_Battle_0B_Ch8: 2 | noise_note 8, 15, 1, 84 3 | sound_ret 4 | -------------------------------------------------------------------------------- /audio/sfx/battle_0c.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_0c.asm -------------------------------------------------------------------------------- /audio/sfx/battle_0d.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_0d.asm -------------------------------------------------------------------------------- /audio/sfx/battle_0e.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_0e.asm -------------------------------------------------------------------------------- /audio/sfx/battle_0f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_0f.asm -------------------------------------------------------------------------------- /audio/sfx/battle_12.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_12.asm -------------------------------------------------------------------------------- /audio/sfx/battle_13.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_13.asm -------------------------------------------------------------------------------- /audio/sfx/battle_14.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_14.asm -------------------------------------------------------------------------------- /audio/sfx/battle_16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_16.asm -------------------------------------------------------------------------------- /audio/sfx/battle_17.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_17.asm -------------------------------------------------------------------------------- /audio/sfx/battle_18.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_18.asm -------------------------------------------------------------------------------- /audio/sfx/battle_19.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_19.asm -------------------------------------------------------------------------------- /audio/sfx/battle_1b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_1b.asm -------------------------------------------------------------------------------- /audio/sfx/battle_1c.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_1c.asm -------------------------------------------------------------------------------- /audio/sfx/battle_1e.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_1e.asm -------------------------------------------------------------------------------- /audio/sfx/battle_20.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_20.asm -------------------------------------------------------------------------------- /audio/sfx/battle_21.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_21.asm -------------------------------------------------------------------------------- /audio/sfx/battle_22.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_22.asm -------------------------------------------------------------------------------- /audio/sfx/battle_23.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_23.asm -------------------------------------------------------------------------------- /audio/sfx/battle_24.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_24.asm -------------------------------------------------------------------------------- /audio/sfx/battle_25.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_25.asm -------------------------------------------------------------------------------- /audio/sfx/battle_26.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_26.asm -------------------------------------------------------------------------------- /audio/sfx/battle_27.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_27.asm -------------------------------------------------------------------------------- /audio/sfx/battle_28.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_28.asm -------------------------------------------------------------------------------- /audio/sfx/battle_29.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_29.asm -------------------------------------------------------------------------------- /audio/sfx/battle_2a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_2a.asm -------------------------------------------------------------------------------- /audio/sfx/battle_2b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_2b.asm -------------------------------------------------------------------------------- /audio/sfx/battle_2c.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_2c.asm -------------------------------------------------------------------------------- /audio/sfx/battle_2e.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_2e.asm -------------------------------------------------------------------------------- /audio/sfx/battle_2f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_2f.asm -------------------------------------------------------------------------------- /audio/sfx/battle_31.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_31.asm -------------------------------------------------------------------------------- /audio/sfx/battle_32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_32.asm -------------------------------------------------------------------------------- /audio/sfx/battle_33.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_33.asm -------------------------------------------------------------------------------- /audio/sfx/battle_34.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_34.asm -------------------------------------------------------------------------------- /audio/sfx/battle_35.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_35.asm -------------------------------------------------------------------------------- /audio/sfx/battle_36.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/battle_36.asm -------------------------------------------------------------------------------- /audio/sfx/caught_mon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/caught_mon.asm -------------------------------------------------------------------------------- /audio/sfx/collision_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/collision_1.asm -------------------------------------------------------------------------------- /audio/sfx/collision_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/collision_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry00_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry00_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry00_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry00_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry00_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry00_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry00_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry00_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry01_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry01_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry01_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry01_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry01_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry01_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry01_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry01_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry02_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry02_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry02_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry02_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry02_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry02_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry02_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry02_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry03_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry03_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry03_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry03_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry03_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry03_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry03_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry03_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry04_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry04_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry04_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry04_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry04_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry04_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry04_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry04_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry05_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry05_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry05_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry05_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry05_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry05_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry05_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry05_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry06_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry06_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry06_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry06_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry06_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry06_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry06_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry06_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry07_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry07_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry07_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry07_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry07_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry07_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry07_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry07_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry08_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry08_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry08_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry08_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry08_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry08_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry08_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry08_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry09_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry09_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry09_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry09_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry09_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry09_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry09_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry09_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry0a_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0a_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry0a_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0a_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry0a_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0a_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry0a_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0a_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry0b_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0b_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry0b_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0b_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry0b_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0b_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry0b_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0b_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry0c_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0c_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry0c_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0c_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry0c_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0c_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry0c_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0c_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry0d_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0d_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry0d_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0d_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry0d_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0d_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry0d_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0d_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry0e_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0e_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry0e_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0e_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry0e_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0e_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry0e_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0e_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry0f_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0f_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry0f_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0f_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry0f_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0f_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry0f_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry0f_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry10_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry10_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry10_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry10_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry10_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry10_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry10_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry10_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry11_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry11_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry11_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry11_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry11_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry11_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry11_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry11_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry12_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry12_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry12_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry12_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry12_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry12_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry12_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry12_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry13_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry13_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry13_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry13_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry13_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry13_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry13_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry13_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry14_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry14_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry14_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry14_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry14_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry14_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry14_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry14_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry15_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry15_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry15_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry15_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry15_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry15_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry15_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry15_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry16_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry16_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry16_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry16_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry16_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry16_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry16_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry16_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry17_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry17_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry17_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry17_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry17_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry17_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry17_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry17_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry18_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry18_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry18_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry18_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry18_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry18_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry18_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry18_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry19_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry19_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry19_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry19_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry19_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry19_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry19_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry19_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry1a_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1a_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry1a_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1a_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry1a_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1a_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry1a_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1a_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry1b_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1b_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry1b_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1b_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry1b_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1b_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry1b_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1b_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry1c_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1c_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry1c_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1c_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry1c_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1c_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry1c_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1c_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry1d_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1d_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry1d_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1d_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry1d_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1d_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry1d_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1d_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry1e_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1e_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry1e_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1e_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry1e_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1e_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry1e_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1e_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry1f_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1f_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry1f_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1f_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry1f_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1f_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry1f_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry1f_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry20_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry20_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry20_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry20_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry20_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry20_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry20_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry20_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry21_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry21_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry21_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry21_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry21_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry21_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry21_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry21_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry22_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry22_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry22_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry22_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry22_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry22_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry22_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry22_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry23_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry23_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry23_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry23_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry23_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry23_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry23_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry23_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry24_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry24_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry24_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry24_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry24_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry24_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry24_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry24_4.asm -------------------------------------------------------------------------------- /audio/sfx/cry25_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry25_1.asm -------------------------------------------------------------------------------- /audio/sfx/cry25_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry25_2.asm -------------------------------------------------------------------------------- /audio/sfx/cry25_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry25_3.asm -------------------------------------------------------------------------------- /audio/sfx/cry25_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cry25_4.asm -------------------------------------------------------------------------------- /audio/sfx/cut_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cut_1.asm -------------------------------------------------------------------------------- /audio/sfx/cut_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/cut_3.asm -------------------------------------------------------------------------------- /audio/sfx/damage.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/damage.asm -------------------------------------------------------------------------------- /audio/sfx/denied_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/denied_1.asm -------------------------------------------------------------------------------- /audio/sfx/denied_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/denied_3.asm -------------------------------------------------------------------------------- /audio/sfx/doubleslap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/doubleslap.asm -------------------------------------------------------------------------------- /audio/sfx/enter_pc_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/enter_pc_1.asm -------------------------------------------------------------------------------- /audio/sfx/enter_pc_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/enter_pc_3.asm -------------------------------------------------------------------------------- /audio/sfx/faint_fall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/faint_fall.asm -------------------------------------------------------------------------------- /audio/sfx/faint_thud.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/faint_thud.asm -------------------------------------------------------------------------------- /audio/sfx/fly_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/fly_1.asm -------------------------------------------------------------------------------- /audio/sfx/fly_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/fly_3.asm -------------------------------------------------------------------------------- /audio/sfx/get_item1_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/get_item1_1.asm -------------------------------------------------------------------------------- /audio/sfx/get_item1_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/get_item1_3.asm -------------------------------------------------------------------------------- /audio/sfx/get_item1_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/get_item1_4.asm -------------------------------------------------------------------------------- /audio/sfx/get_item2_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/get_item2_1.asm -------------------------------------------------------------------------------- /audio/sfx/get_item2_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/get_item2_2.asm -------------------------------------------------------------------------------- /audio/sfx/get_item2_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/get_item2_3.asm -------------------------------------------------------------------------------- /audio/sfx/get_item2_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/get_item2_4.asm -------------------------------------------------------------------------------- /audio/sfx/go_inside_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/go_inside_1.asm -------------------------------------------------------------------------------- /audio/sfx/go_inside_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/go_inside_3.asm -------------------------------------------------------------------------------- /audio/sfx/heal_hp_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/heal_hp_1.asm -------------------------------------------------------------------------------- /audio/sfx/heal_hp_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/heal_hp_2.asm -------------------------------------------------------------------------------- /audio/sfx/heal_hp_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/heal_hp_3.asm -------------------------------------------------------------------------------- /audio/sfx/heal_hp_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/heal_hp_4.asm -------------------------------------------------------------------------------- /audio/sfx/horn_drill.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/horn_drill.asm -------------------------------------------------------------------------------- /audio/sfx/intro_crash.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/intro_crash.asm -------------------------------------------------------------------------------- /audio/sfx/intro_hip.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/intro_hip.asm -------------------------------------------------------------------------------- /audio/sfx/intro_hop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/intro_hop.asm -------------------------------------------------------------------------------- /audio/sfx/intro_lunge.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/intro_lunge.asm -------------------------------------------------------------------------------- /audio/sfx/intro_raise.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/intro_raise.asm -------------------------------------------------------------------------------- /audio/sfx/ledge_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/ledge_1.asm -------------------------------------------------------------------------------- /audio/sfx/ledge_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/ledge_3.asm -------------------------------------------------------------------------------- /audio/sfx/level_up.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/level_up.asm -------------------------------------------------------------------------------- /audio/sfx/peck.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/peck.asm -------------------------------------------------------------------------------- /audio/sfx/poisoned_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/poisoned_1.asm -------------------------------------------------------------------------------- /audio/sfx/poisoned_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/poisoned_3.asm -------------------------------------------------------------------------------- /audio/sfx/pokeflute.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/pokeflute.asm -------------------------------------------------------------------------------- /audio/sfx/pound.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/pound.asm -------------------------------------------------------------------------------- /audio/sfx/press_ab_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/press_ab_1.asm -------------------------------------------------------------------------------- /audio/sfx/press_ab_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/press_ab_2.asm -------------------------------------------------------------------------------- /audio/sfx/press_ab_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/press_ab_3.asm -------------------------------------------------------------------------------- /audio/sfx/press_ab_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/press_ab_4.asm -------------------------------------------------------------------------------- /audio/sfx/psybeam.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/psybeam.asm -------------------------------------------------------------------------------- /audio/sfx/psychic_m.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/psychic_m.asm -------------------------------------------------------------------------------- /audio/sfx/purchase_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/purchase_1.asm -------------------------------------------------------------------------------- /audio/sfx/purchase_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/purchase_3.asm -------------------------------------------------------------------------------- /audio/sfx/run.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/run.asm -------------------------------------------------------------------------------- /audio/sfx/save_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/save_1.asm -------------------------------------------------------------------------------- /audio/sfx/save_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/save_3.asm -------------------------------------------------------------------------------- /audio/sfx/shrink_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/shrink_1.asm -------------------------------------------------------------------------------- /audio/sfx/shrink_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/shrink_3.asm -------------------------------------------------------------------------------- /audio/sfx/silph_scope.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/silph_scope.asm -------------------------------------------------------------------------------- /audio/sfx/swap_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/swap_1.asm -------------------------------------------------------------------------------- /audio/sfx/swap_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/swap_2.asm -------------------------------------------------------------------------------- /audio/sfx/swap_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/swap_3.asm -------------------------------------------------------------------------------- /audio/sfx/switch_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/switch_1.asm -------------------------------------------------------------------------------- /audio/sfx/switch_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/switch_3.asm -------------------------------------------------------------------------------- /audio/sfx/tink_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/tink_1.asm -------------------------------------------------------------------------------- /audio/sfx/tink_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/tink_2.asm -------------------------------------------------------------------------------- /audio/sfx/tink_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/tink_3.asm -------------------------------------------------------------------------------- /audio/sfx/tink_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/tink_4.asm -------------------------------------------------------------------------------- /audio/sfx/vine_whip.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/sfx/vine_whip.asm -------------------------------------------------------------------------------- /audio/wave_samples.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/audio/wave_samples.asm -------------------------------------------------------------------------------- /constants/charmap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/constants/charmap.asm -------------------------------------------------------------------------------- /constants/hardware.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/constants/hardware.inc -------------------------------------------------------------------------------- /data/events/prizes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/events/prizes.asm -------------------------------------------------------------------------------- /data/events/trades.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/events/trades.asm -------------------------------------------------------------------------------- /data/growth_rates.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/growth_rates.asm -------------------------------------------------------------------------------- /data/icon_pointers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/icon_pointers.asm -------------------------------------------------------------------------------- /data/items/key_items.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/items/key_items.asm -------------------------------------------------------------------------------- /data/items/marts.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/items/marts.asm -------------------------------------------------------------------------------- /data/items/names.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/items/names.asm -------------------------------------------------------------------------------- /data/items/prices.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/items/prices.asm -------------------------------------------------------------------------------- /data/items/tm_prices.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/items/tm_prices.asm -------------------------------------------------------------------------------- /data/items/use_party.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/items/use_party.asm -------------------------------------------------------------------------------- /data/maps/names.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/maps/names.asm -------------------------------------------------------------------------------- /data/maps/songs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/maps/songs.asm -------------------------------------------------------------------------------- /data/moves/grammar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/moves/grammar.asm -------------------------------------------------------------------------------- /data/moves/moves.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/moves/moves.asm -------------------------------------------------------------------------------- /data/moves/names.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/moves/names.asm -------------------------------------------------------------------------------- /data/moves/sfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/moves/sfx.asm -------------------------------------------------------------------------------- /data/player_names.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/player_names.asm -------------------------------------------------------------------------------- /data/pokemon/cries.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/pokemon/cries.asm -------------------------------------------------------------------------------- /data/pokemon/names.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/pokemon/names.asm -------------------------------------------------------------------------------- /data/text/dakutens.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text/dakutens.asm -------------------------------------------------------------------------------- /data/text/text_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text/text_1.asm -------------------------------------------------------------------------------- /data/text/text_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text/text_2.asm -------------------------------------------------------------------------------- /data/text/text_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text/text_3.asm -------------------------------------------------------------------------------- /data/text/text_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text/text_4.asm -------------------------------------------------------------------------------- /data/text/text_5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text/text_5.asm -------------------------------------------------------------------------------- /data/text/text_6.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text/text_6.asm -------------------------------------------------------------------------------- /data/text/text_7.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text/text_7.asm -------------------------------------------------------------------------------- /data/text/text_8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text/text_8.asm -------------------------------------------------------------------------------- /data/text/text_9.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text/text_9.asm -------------------------------------------------------------------------------- /data/text_boxes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/text_boxes.asm -------------------------------------------------------------------------------- /data/tilemaps.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/tilemaps.asm -------------------------------------------------------------------------------- /data/types/names.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/types/names.asm -------------------------------------------------------------------------------- /data/wild/good_rod.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/data/wild/good_rod.asm -------------------------------------------------------------------------------- /engine/battle/core.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/battle/core.asm -------------------------------------------------------------------------------- /engine/battle/misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/battle/misc.asm -------------------------------------------------------------------------------- /engine/flag_action.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/flag_action.asm -------------------------------------------------------------------------------- /engine/gfx/hp_bar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/gfx/hp_bar.asm -------------------------------------------------------------------------------- /engine/gfx/oam_dma.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/gfx/oam_dma.asm -------------------------------------------------------------------------------- /engine/items/tmhm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/items/tmhm.asm -------------------------------------------------------------------------------- /engine/items/tms.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/items/tms.asm -------------------------------------------------------------------------------- /engine/joypad.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/joypad.asm -------------------------------------------------------------------------------- /engine/math/bcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/math/bcd.asm -------------------------------------------------------------------------------- /engine/math/random.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/math/random.asm -------------------------------------------------------------------------------- /engine/menus/pc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/menus/pc.asm -------------------------------------------------------------------------------- /engine/menus/save.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/menus/save.asm -------------------------------------------------------------------------------- /engine/movie/intro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/movie/intro.asm -------------------------------------------------------------------------------- /engine/movie/title.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/movie/title.asm -------------------------------------------------------------------------------- /engine/movie/trade.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/movie/trade.asm -------------------------------------------------------------------------------- /engine/predefs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/engine/predefs.asm -------------------------------------------------------------------------------- /garbage/bank20.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/garbage/bank20.bin -------------------------------------------------------------------------------- /garbage/bank30.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/garbage/bank30.bin -------------------------------------------------------------------------------- /gfx/battle/balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/battle/balls.png -------------------------------------------------------------------------------- /gfx/battle/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/battle/ghost.png -------------------------------------------------------------------------------- /gfx/battle/oldmanb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/battle/oldmanb.png -------------------------------------------------------------------------------- /gfx/blocksets/club.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/blocksets/club.bst -------------------------------------------------------------------------------- /gfx/blocksets/gate.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/blocksets/gate.bst -------------------------------------------------------------------------------- /gfx/blocksets/gym.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/blocksets/gym.bst -------------------------------------------------------------------------------- /gfx/blocksets/lab.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/blocksets/lab.bst -------------------------------------------------------------------------------- /gfx/blocksets/ship.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/blocksets/ship.bst -------------------------------------------------------------------------------- /gfx/emotes/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/emotes/bolt.png -------------------------------------------------------------------------------- /gfx/emotes/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/emotes/fish.png -------------------------------------------------------------------------------- /gfx/emotes/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/emotes/happy.png -------------------------------------------------------------------------------- /gfx/emotes/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/emotes/heart.png -------------------------------------------------------------------------------- /gfx/emotes/shock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/emotes/shock.png -------------------------------------------------------------------------------- /gfx/emotes/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/emotes/skull.png -------------------------------------------------------------------------------- /gfx/emotes/zzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/emotes/zzz.png -------------------------------------------------------------------------------- /gfx/exp_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/exp_bar.png -------------------------------------------------------------------------------- /gfx/fishing.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/fishing.asm -------------------------------------------------------------------------------- /gfx/font.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/font.asm -------------------------------------------------------------------------------- /gfx/font/AB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/font/AB.png -------------------------------------------------------------------------------- /gfx/font/ED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/font/ED.png -------------------------------------------------------------------------------- /gfx/font/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/font/P.png -------------------------------------------------------------------------------- /gfx/font/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/font/font.png -------------------------------------------------------------------------------- /gfx/icons/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/icons/bug.png -------------------------------------------------------------------------------- /gfx/icons/plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/icons/plant.png -------------------------------------------------------------------------------- /gfx/icons/snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/icons/snake.png -------------------------------------------------------------------------------- /gfx/intro/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/intro/clouds.png -------------------------------------------------------------------------------- /gfx/intro/gengar_1.tilemap: -------------------------------------------------------------------------------- 1 | c`@I&6n)vAQif^!1N>aqYyV.~F 9 -------------------------------------------------------------------------------- /gfx/intro/gengar_2.tilemap: -------------------------------------------------------------------------------- 1 | 07+148=!&,59>"'-26#(.3:$)/;%*< -------------------------------------------------------------------------------- /gfx/intro/unknown_f9be6.map: -------------------------------------------------------------------------------- 1 | 0123@ABCPQRS -------------------------------------------------------------------------------- /gfx/intro/unknown_f9bf2.map: -------------------------------------------------------------------------------- 1 | "# -------------------------------------------------------------------------------- /gfx/pics.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/pics.asm -------------------------------------------------------------------------------- /gfx/pikachu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/pikachu.asm -------------------------------------------------------------------------------- /gfx/player.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/player.asm -------------------------------------------------------------------------------- /gfx/player/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/player/red.png -------------------------------------------------------------------------------- /gfx/player/redb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/player/redb.png -------------------------------------------------------------------------------- /gfx/player/shrink1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/player/shrink1.png -------------------------------------------------------------------------------- /gfx/player/shrink2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/player/shrink2.png -------------------------------------------------------------------------------- /gfx/pokemon/downscaled_3x3.tilemap: -------------------------------------------------------------------------------- 1 | 1F[4I^7La -------------------------------------------------------------------------------- /gfx/pokemon/downscaled_5x5.tilemap: -------------------------------------------------------------------------------- 1 | 18FT[29GU\4;IW^6=KY`7>LZa -------------------------------------------------------------------------------- /gfx/pokemon/front.tilemap: -------------------------------------------------------------------------------- 1 | #*$+ %, 2 | &-  '. !(/ ")0 -------------------------------------------------------------------------------- /gfx/pokemon/slide_down_7x3.tilemap: -------------------------------------------------------------------------------- 1 | #* %,  '. -------------------------------------------------------------------------------- /gfx/pokemon/slide_down_7x5.tilemap: -------------------------------------------------------------------------------- 1 | #*$+ 2 | &-  '. !(/ -------------------------------------------------------------------------------- /gfx/printer/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/printer/01.png -------------------------------------------------------------------------------- /gfx/printer/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/printer/hp.png -------------------------------------------------------------------------------- /gfx/printer/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/printer/lv.png -------------------------------------------------------------------------------- /gfx/sgb/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sgb/border.png -------------------------------------------------------------------------------- /gfx/sgb/border.tilemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sgb/border.tilemap -------------------------------------------------------------------------------- /gfx/slots/slots_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/slots/slots_1.png -------------------------------------------------------------------------------- /gfx/slots/slots_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/slots/slots_2.png -------------------------------------------------------------------------------- /gfx/sprites.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites.asm -------------------------------------------------------------------------------- /gfx/sprites/agatha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/agatha.png -------------------------------------------------------------------------------- /gfx/sprites/beauty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/beauty.png -------------------------------------------------------------------------------- /gfx/sprites/biker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/biker.png -------------------------------------------------------------------------------- /gfx/sprites/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/bird.png -------------------------------------------------------------------------------- /gfx/sprites/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/blue.png -------------------------------------------------------------------------------- /gfx/sprites/bruno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/bruno.png -------------------------------------------------------------------------------- /gfx/sprites/clerk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/clerk.png -------------------------------------------------------------------------------- /gfx/sprites/cook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/cook.png -------------------------------------------------------------------------------- /gfx/sprites/daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/daisy.png -------------------------------------------------------------------------------- /gfx/sprites/fairy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/fairy.png -------------------------------------------------------------------------------- /gfx/sprites/fisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/fisher.png -------------------------------------------------------------------------------- /gfx/sprites/fossil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/fossil.png -------------------------------------------------------------------------------- /gfx/sprites/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/girl.png -------------------------------------------------------------------------------- /gfx/sprites/gramps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/gramps.png -------------------------------------------------------------------------------- /gfx/sprites/granny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/granny.png -------------------------------------------------------------------------------- /gfx/sprites/guard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/guard.png -------------------------------------------------------------------------------- /gfx/sprites/hiker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/hiker.png -------------------------------------------------------------------------------- /gfx/sprites/james.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/james.png -------------------------------------------------------------------------------- /gfx/sprites/jessie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/jessie.png -------------------------------------------------------------------------------- /gfx/sprites/koga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/koga.png -------------------------------------------------------------------------------- /gfx/sprites/lance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/lance.png -------------------------------------------------------------------------------- /gfx/sprites/mom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/mom.png -------------------------------------------------------------------------------- /gfx/sprites/nurse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/nurse.png -------------------------------------------------------------------------------- /gfx/sprites/oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/oak.png -------------------------------------------------------------------------------- /gfx/sprites/oddish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/oddish.png -------------------------------------------------------------------------------- /gfx/sprites/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/paper.png -------------------------------------------------------------------------------- /gfx/sprites/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/red.png -------------------------------------------------------------------------------- /gfx/sprites/rocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/rocker.png -------------------------------------------------------------------------------- /gfx/sprites/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/rocket.png -------------------------------------------------------------------------------- /gfx/sprites/sailor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/sailor.png -------------------------------------------------------------------------------- /gfx/sprites/seel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/seel.png -------------------------------------------------------------------------------- /gfx/sprites/waiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/waiter.png -------------------------------------------------------------------------------- /gfx/sprites/warden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/sprites/warden.png -------------------------------------------------------------------------------- /gfx/tilesets.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/tilesets.asm -------------------------------------------------------------------------------- /gfx/tilesets/club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/tilesets/club.png -------------------------------------------------------------------------------- /gfx/tilesets/gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/tilesets/gate.png -------------------------------------------------------------------------------- /gfx/tilesets/gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/tilesets/gym.png -------------------------------------------------------------------------------- /gfx/tilesets/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/tilesets/house.png -------------------------------------------------------------------------------- /gfx/tilesets/lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/tilesets/lab.png -------------------------------------------------------------------------------- /gfx/tilesets/lobby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/tilesets/lobby.png -------------------------------------------------------------------------------- /gfx/tilesets/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/tilesets/ship.png -------------------------------------------------------------------------------- /gfx/title/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/title/nine.png -------------------------------------------------------------------------------- /gfx/title/pika_bubble.tilemap: -------------------------------------------------------------------------------- 1 | $%fghi*PQRSTUVWXYZ[\]m^_`abc -------------------------------------------------------------------------------- /gfx/title/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/title/player.png -------------------------------------------------------------------------------- /gfx/trade.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trade.asm -------------------------------------------------------------------------------- /gfx/trade/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trade/bubble.png -------------------------------------------------------------------------------- /gfx/trade/game_boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trade/game_boy.png -------------------------------------------------------------------------------- /gfx/trade/game_boy.tilemap: -------------------------------------------------------------------------------- 1 | 12222345667849::;8<=>>?@ABCCDEFGCHIJACKLMNOPPPQR -------------------------------------------------------------------------------- /gfx/trainer_card.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainer_card.asm -------------------------------------------------------------------------------- /gfx/trainers/biker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainers/biker.png -------------------------------------------------------------------------------- /gfx/trainers/brock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainers/brock.png -------------------------------------------------------------------------------- /gfx/trainers/bruno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainers/bruno.png -------------------------------------------------------------------------------- /gfx/trainers/erika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainers/erika.png -------------------------------------------------------------------------------- /gfx/trainers/hiker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainers/hiker.png -------------------------------------------------------------------------------- /gfx/trainers/koga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainers/koga.png -------------------------------------------------------------------------------- /gfx/trainers/lance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainers/lance.png -------------------------------------------------------------------------------- /gfx/trainers/lass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainers/lass.png -------------------------------------------------------------------------------- /gfx/trainers/misty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainers/misty.png -------------------------------------------------------------------------------- /gfx/trainers/tamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/trainers/tamer.png -------------------------------------------------------------------------------- /gfx/version.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/version.asm -------------------------------------------------------------------------------- /gfx/yellow_intro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/gfx/yellow_intro.asm -------------------------------------------------------------------------------- /home.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home.asm -------------------------------------------------------------------------------- /home/array.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/array.asm -------------------------------------------------------------------------------- /home/array2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/array2.asm -------------------------------------------------------------------------------- /home/audio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/audio.asm -------------------------------------------------------------------------------- /home/bankswitch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/bankswitch.asm -------------------------------------------------------------------------------- /home/bankswitch2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/bankswitch2.asm -------------------------------------------------------------------------------- /home/cgb_palettes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/cgb_palettes.asm -------------------------------------------------------------------------------- /home/clear_sprites.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/clear_sprites.asm -------------------------------------------------------------------------------- /home/compare.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/compare.asm -------------------------------------------------------------------------------- /home/copy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/copy.asm -------------------------------------------------------------------------------- /home/copy2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/copy2.asm -------------------------------------------------------------------------------- /home/copy_string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/copy_string.asm -------------------------------------------------------------------------------- /home/delay.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/delay.asm -------------------------------------------------------------------------------- /home/fade.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/fade.asm -------------------------------------------------------------------------------- /home/fade_audio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/fade_audio.asm -------------------------------------------------------------------------------- /home/give.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/give.asm -------------------------------------------------------------------------------- /home/header.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/header.asm -------------------------------------------------------------------------------- /home/init.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/init.asm -------------------------------------------------------------------------------- /home/inventory.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/inventory.asm -------------------------------------------------------------------------------- /home/item.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/item.asm -------------------------------------------------------------------------------- /home/item_price.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/item_price.asm -------------------------------------------------------------------------------- /home/joypad.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/joypad.asm -------------------------------------------------------------------------------- /home/joypad2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/joypad2.asm -------------------------------------------------------------------------------- /home/lcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/lcd.asm -------------------------------------------------------------------------------- /home/lcdc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/lcdc.asm -------------------------------------------------------------------------------- /home/list_menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/list_menu.asm -------------------------------------------------------------------------------- /home/load_font.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/load_font.asm -------------------------------------------------------------------------------- /home/map_objects.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/map_objects.asm -------------------------------------------------------------------------------- /home/math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/math.asm -------------------------------------------------------------------------------- /home/money.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/money.asm -------------------------------------------------------------------------------- /home/move_mon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/move_mon.asm -------------------------------------------------------------------------------- /home/names.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/names.asm -------------------------------------------------------------------------------- /home/names2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/names2.asm -------------------------------------------------------------------------------- /home/npc_movement.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/npc_movement.asm -------------------------------------------------------------------------------- /home/oam.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/oam.asm -------------------------------------------------------------------------------- /home/overworld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/overworld.asm -------------------------------------------------------------------------------- /home/palettes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/palettes.asm -------------------------------------------------------------------------------- /home/pathfinding.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/pathfinding.asm -------------------------------------------------------------------------------- /home/pics.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/pics.asm -------------------------------------------------------------------------------- /home/pikachu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/pikachu.asm -------------------------------------------------------------------------------- /home/pikachu_cries.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/pikachu_cries.asm -------------------------------------------------------------------------------- /home/play_time.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/play_time.asm -------------------------------------------------------------------------------- /home/pokemon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/pokemon.asm -------------------------------------------------------------------------------- /home/predef.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/predef.asm -------------------------------------------------------------------------------- /home/predef_text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/predef_text.asm -------------------------------------------------------------------------------- /home/print_bcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/print_bcd.asm -------------------------------------------------------------------------------- /home/print_num.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/print_num.asm -------------------------------------------------------------------------------- /home/print_text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/print_text.asm -------------------------------------------------------------------------------- /home/printer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/printer.asm -------------------------------------------------------------------------------- /home/random.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/random.asm -------------------------------------------------------------------------------- /home/reload_tiles.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/reload_tiles.asm -------------------------------------------------------------------------------- /home/serial.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/serial.asm -------------------------------------------------------------------------------- /home/start.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/start.asm -------------------------------------------------------------------------------- /home/start_menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/start_menu.asm -------------------------------------------------------------------------------- /home/text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/text.asm -------------------------------------------------------------------------------- /home/text_script.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/text_script.asm -------------------------------------------------------------------------------- /home/textbox.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/textbox.asm -------------------------------------------------------------------------------- /home/tilemap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/tilemap.asm -------------------------------------------------------------------------------- /home/timer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/timer.asm -------------------------------------------------------------------------------- /home/trainers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/trainers.asm -------------------------------------------------------------------------------- /home/trainers2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/trainers2.asm -------------------------------------------------------------------------------- /home/uncompress.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/uncompress.asm -------------------------------------------------------------------------------- /home/vblank.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/vblank.asm -------------------------------------------------------------------------------- /home/vcopy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/vcopy.asm -------------------------------------------------------------------------------- /home/window.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/window.asm -------------------------------------------------------------------------------- /home/yes_no.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/home/yes_no.asm -------------------------------------------------------------------------------- /includes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/includes.asm -------------------------------------------------------------------------------- /layout.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/layout.link -------------------------------------------------------------------------------- /macros/asserts.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/macros/asserts.asm -------------------------------------------------------------------------------- /macros/code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/macros/code.asm -------------------------------------------------------------------------------- /macros/const.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/macros/const.asm -------------------------------------------------------------------------------- /macros/coords.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/macros/coords.asm -------------------------------------------------------------------------------- /macros/data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/macros/data.asm -------------------------------------------------------------------------------- /macros/farcall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/macros/farcall.asm -------------------------------------------------------------------------------- /macros/gfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/macros/gfx.asm -------------------------------------------------------------------------------- /macros/predef.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/macros/predef.asm -------------------------------------------------------------------------------- /macros/ram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/macros/ram.asm -------------------------------------------------------------------------------- /macros/vc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/macros/vc.asm -------------------------------------------------------------------------------- /main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/main.asm -------------------------------------------------------------------------------- /maps.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps.asm -------------------------------------------------------------------------------- /maps/AgathasRoom.blk: -------------------------------------------------------------------------------- 1 | GG6GGg66NeRN6eReg6eeRK6eRgR6hh -------------------------------------------------------------------------------- /maps/BikeShop.blk: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |  6 | -------------------------------------------------------------------------------- /maps/BillsHouse.blk: -------------------------------------------------------------------------------- 1 |  2 |   -------------------------------------------------------------------------------- /maps/BluesHouse.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/BrunosRoom.blk: -------------------------------------------------------------------------------- 1 |  2 |  3 |     4 | -------------------------------------------------------------------------------- /maps/CeladonChiefHouse.blk: -------------------------------------------------------------------------------- 1 | D@?D BC FG 6A 6 -------------------------------------------------------------------------------- /maps/CeladonCity.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CeladonCity.blk -------------------------------------------------------------------------------- /maps/CeladonDiner.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CeladonDiner.blk -------------------------------------------------------------------------------- /maps/CeladonGym.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CeladonGym.blk -------------------------------------------------------------------------------- /maps/CeladonHotel.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CeladonHotel.blk -------------------------------------------------------------------------------- /maps/CeladonMansion1F.blk: -------------------------------------------------------------------------------- 1 | $*   > -------------------------------------------------------------------------------- /maps/CeladonMansionRoof.blk: -------------------------------------------------------------------------------- 1 | E;=!"%&3  -------------------------------------------------------------------------------- /maps/CeladonMansionRoofHouse.blk: -------------------------------------------------------------------------------- 1 |    -------------------------------------------------------------------------------- /maps/CeladonMart1F.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CeladonMart1F.blk -------------------------------------------------------------------------------- /maps/CeladonMart2F.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CeladonMart2F.blk -------------------------------------------------------------------------------- /maps/CeladonMart3F.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CeladonMart3F.blk -------------------------------------------------------------------------------- /maps/CeladonMart4F.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CeladonMart4F.blk -------------------------------------------------------------------------------- /maps/CeladonMart5F.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CeladonMart5F.blk -------------------------------------------------------------------------------- /maps/CeladonMartElevator.blk: -------------------------------------------------------------------------------- 1 | *+() -------------------------------------------------------------------------------- /maps/CeruleanBadgeHouse.blk: -------------------------------------------------------------------------------- 1 | = ==  ,  5 -------------------------------------------------------------------------------- /maps/CeruleanCity.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CeruleanCity.blk -------------------------------------------------------------------------------- /maps/CeruleanGym.blk: -------------------------------------------------------------------------------- 1 | !#"#  -------------------------------------------------------------------------------- /maps/CeruleanMart.blk: -------------------------------------------------------------------------------- 1 |  %  -------------------------------------------------------------------------------- /maps/CeruleanTradeHouse.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/CeruleanTrashedHouse.blk: -------------------------------------------------------------------------------- 1 |  ! " -------------------------------------------------------------------------------- /maps/ChampionsRoom.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/ChampionsRoom.blk -------------------------------------------------------------------------------- /maps/CinnabarGym.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CinnabarGym.blk -------------------------------------------------------------------------------- /maps/CinnabarLab.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/CinnabarLab.blk -------------------------------------------------------------------------------- /maps/CinnabarLabFossilRoom.blk: -------------------------------------------------------------------------------- 1 |    -------------------------------------------------------------------------------- /maps/CinnabarLabMetronomeRoom.blk: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /maps/CinnabarLabTradeRoom.blk: -------------------------------------------------------------------------------- 1 |  2 |   -------------------------------------------------------------------------------- /maps/CinnabarMart.blk: -------------------------------------------------------------------------------- 1 |  %  -------------------------------------------------------------------------------- /maps/Colosseum.blk: -------------------------------------------------------------------------------- 1 |  2 |  3 | 4 |  5 | 6 |  7 | -------------------------------------------------------------------------------- /maps/Daycare.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/DiglettsCave.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/DiglettsCave.blk -------------------------------------------------------------------------------- /maps/DiglettsCaveRoute11.blk: -------------------------------------------------------------------------------- 1 | }}}}}'} 2 | $} -------------------------------------------------------------------------------- /maps/DiglettsCaveRoute2.blk: -------------------------------------------------------------------------------- 1 | }}}}}'} 2 | $} -------------------------------------------------------------------------------- /maps/FightingDojo.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/FightingDojo.blk -------------------------------------------------------------------------------- /maps/FuchsiaBillsGrandpasHouse.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/FuchsiaCity.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/FuchsiaCity.blk -------------------------------------------------------------------------------- /maps/FuchsiaGoodRodHouse.blk: -------------------------------------------------------------------------------- 1 | = ==  ,  5 -------------------------------------------------------------------------------- /maps/FuchsiaGym.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/FuchsiaGym.blk -------------------------------------------------------------------------------- /maps/FuchsiaMart.blk: -------------------------------------------------------------------------------- 1 |  %  -------------------------------------------------------------------------------- /maps/FuchsiaMeetingRoom.blk: -------------------------------------------------------------------------------- 1 | 589467777   -------------------------------------------------------------------------------- /maps/GameCorner.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/GameCorner.blk -------------------------------------------------------------------------------- /maps/HallOfFame.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/HallOfFame.blk -------------------------------------------------------------------------------- /maps/IndigoPlateau.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/IndigoPlateau.blk -------------------------------------------------------------------------------- /maps/LancesRoom.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/LancesRoom.blk -------------------------------------------------------------------------------- /maps/LavenderCuboneHouse.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/LavenderMart.blk: -------------------------------------------------------------------------------- 1 |  %  -------------------------------------------------------------------------------- /maps/LavenderTown.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/LavenderTown.blk -------------------------------------------------------------------------------- /maps/LoreleisRoom.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/LoreleisRoom.blk -------------------------------------------------------------------------------- /maps/MrFujisHouse.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/MrPsychicsHouse.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/MtMoon1F.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/MtMoon1F.blk -------------------------------------------------------------------------------- /maps/MtMoonB1F.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/MtMoonB1F.blk -------------------------------------------------------------------------------- /maps/MtMoonB2F.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannye/pokeyellow-gen-2-gfx/HEAD/maps/MtMoonB2F.blk -------------------------------------------------------------------------------- /maps/Museum1F.blk: -------------------------------------------------------------------------------- 1 | <<