├── .gitattributes ├── .gitignore ├── .travis.yml ├── .travis ├── upload_symbols.sh └── webhook.sh ├── INSTALL.md ├── Makefile ├── README.md ├── audio.asm ├── audio ├── cries.asm ├── cry_pointers.asm ├── drumkits.asm ├── engine.asm ├── music │ ├── aftertherivalfight.asm │ ├── amamitown.asm │ ├── bicycle.asm │ ├── birdontown.asm │ ├── bugcatchingcontest.asm │ ├── burnedtower.asm │ ├── championbattle.asm │ ├── contestresults.asm │ ├── credits.asm │ ├── crowncity.asm │ ├── dancinghall.asm │ ├── darkcave.asm │ ├── dragonsden.asm │ ├── evolution.asm │ ├── gamecorner.asm │ ├── goldsilveropening.asm │ ├── goldsilveropening2.asm │ ├── gym.asm │ ├── gymleadervictory.asm │ ├── halloffame.asm │ ├── healpokemon.asm │ ├── kantoregion.asm │ ├── kobanisland.asm │ ├── lakeofrage.asm │ ├── lakeofragerocketradio.asm │ ├── lavendertown.asm │ ├── lighthouse.asm │ ├── lookbeauty.asm │ ├── lookhiker.asm │ ├── lookkimonogirl.asm │ ├── looklass.asm │ ├── lookofficer.asm │ ├── lookpokemaniac.asm │ ├── lookrival.asm │ ├── lookrocket.asm │ ├── looksage.asm │ ├── lookyoungster.asm │ ├── magnettrain.asm │ ├── mainmenu.asm │ ├── mom.asm │ ├── mountfuji.asm │ ├── mtmoon.asm │ ├── mtmoonsquare.asm │ ├── nationalpark.asm │ ├── nihongymbattle.asm │ ├── nihontrainerbattle.asm │ ├── nihonwildbattle.asm │ ├── nihonwildbattlenight.asm │ ├── nothing.asm │ ├── oak2slab.asm │ ├── pagotacity.asm │ ├── pokeflutechannel.asm │ ├── pokemoncenter.asm │ ├── pokemonchannel.asm │ ├── pokemonlullaby.asm │ ├── pokemonmarch.asm │ ├── postcredits.asm │ ├── printer.asm │ ├── profoak.asm │ ├── profoakspokemontalk.asm │ ├── rivalbattle.asm │ ├── rocketbattle.asm │ ├── rockethideout.asm │ ├── rockettheme.asm │ ├── route1.asm │ ├── route12.asm │ ├── route2.asm │ ├── route26.asm │ ├── route29.asm │ ├── route3.asm │ ├── route30.asm │ ├── route36.asm │ ├── route37.asm │ ├── ruinsofalphinterior.asm │ ├── ruinsofalphradio.asm │ ├── sanskritruinsinterior.asm │ ├── sanskritruinsradio.asm │ ├── showmearound.asm │ ├── silenttown.asm │ ├── sprouttower.asm │ ├── ssaqua.asm │ ├── successfulcapture.asm │ ├── surf.asm │ ├── surfingpikachu.asm │ ├── swislandsgymbattle.asm │ ├── swislandstrainerbattle.asm │ ├── swislandswildbattle.asm │ ├── teknoscity.asm │ ├── tintower.asm │ ├── titlescreen.asm │ ├── trainervictory.asm │ ├── unioncave.asm │ ├── victoryroad.asm │ ├── viridiancity.asm │ ├── westportcity.asm │ └── wildpokemonvictory.asm ├── music_pointers.asm ├── notes.asm ├── sfx.asm ├── sfx_pointers.asm └── wave_samples.asm ├── changelog.txt ├── charmap.asm ├── constants.asm ├── constants ├── audio_constants.asm ├── battle_anim_constants.asm ├── battle_constants.asm ├── collision_constants.asm ├── credits_constants.asm ├── cry_constants.asm ├── deco_constants.asm ├── engine_flags.asm ├── event_flags.asm ├── gfx_constants.asm ├── hardware_constants.asm ├── icon_constants.asm ├── input_constants.asm ├── item_constants.asm ├── item_data_constants.asm ├── landmark_constants.asm ├── map_constants.asm ├── map_data_constants.asm ├── map_object_constants.asm ├── map_setup_constants.asm ├── mart_constants.asm ├── menu_constants.asm ├── misc_constants.asm ├── move_constants.asm ├── move_effect_constants.asm ├── music_constants.asm ├── npc_trade_constants.asm ├── phone_constants.asm ├── pokemon_constants.asm ├── pokemon_data_constants.asm ├── printer_constants.asm ├── radio_constants.asm ├── scene_constants.asm ├── scgb_constants.asm ├── script_constants.asm ├── serial_constants.asm ├── sfx_constants.asm ├── sprite_anim_constants.asm ├── sprite_constants.asm ├── sprite_data_constants.asm ├── text_constants.asm ├── tileset_constants.asm ├── trainer_constants.asm ├── trainer_data_constants.asm ├── type_constants.asm └── wram_constants.asm ├── data ├── battle │ ├── accuracy_multipliers.asm │ ├── ai │ │ ├── constant_damage_effects.asm │ │ ├── encore_moves.asm │ │ ├── rain_dance_moves.asm │ │ ├── reckless_moves.asm │ │ ├── residual_moves.asm │ │ ├── risky_effects.asm │ │ ├── stall_moves.asm │ │ ├── status_only_effects.asm │ │ ├── sunny_day_moves.asm │ │ └── useful_moves.asm │ ├── critical_hit_chances.asm │ ├── effect_command_pointers.asm │ ├── held_consumables.asm │ ├── held_heal_status.asm │ ├── held_stat_up.asm │ ├── stat_multipliers.asm │ ├── stat_multipliers_2.asm │ ├── stat_names.asm │ ├── weather_modifiers.asm │ └── wobble_probabilities.asm ├── battle_anims │ ├── ball_colors.asm │ ├── framesets.asm │ ├── oam.asm │ ├── object_gfx.asm │ └── objects.asm ├── collision_permissions.asm ├── credits_script.asm ├── credits_strings.asm ├── credits_strings_pointers.asm ├── decorations │ ├── attributes.asm │ ├── decorations.asm │ ├── mystery_gift_decos.asm │ └── names.asm ├── default_options.asm ├── engine_flags.asm ├── events │ ├── bug_contest_flags.asm │ ├── bug_contest_winners.asm │ ├── collision_stdscripts.asm │ ├── elevator_floors.asm │ ├── field_move_blocks.asm │ ├── happiness_changes.asm │ ├── happiness_probabilities.asm │ ├── magikarp_lengths.asm │ ├── npc_trades.asm │ ├── odd_eggs.asm │ └── pokedex_ratings.asm ├── growth_rates.asm ├── icon_pointers.asm ├── items │ ├── apricorn_balls.asm │ ├── attributes.asm │ ├── bargain_shop.asm │ ├── catch_rate_items.asm │ ├── descriptions.asm │ ├── fruit_trees.asm │ ├── heal_hp.asm │ ├── heal_status.asm │ ├── mail_items.asm │ ├── marts.asm │ ├── mom_phone.asm │ ├── mystery_gift_items.asm │ ├── names.asm │ ├── pocket_names.asm │ └── x_stats.asm ├── maps │ ├── attributes.asm │ ├── blocks.asm │ ├── environment_colors.asm │ ├── flypoints.asm │ ├── landmarks.asm │ ├── map_data.asm │ ├── maps.asm │ ├── outdoor_sprites.asm │ ├── roofs.asm │ ├── scenes.asm │ ├── scripts.asm │ ├── setup_scripts.asm │ ├── sgb_roof_pal_inds.asm │ └── spawn_points.asm ├── mom_names.asm ├── mon_menu.asm ├── moves │ ├── animations.asm │ ├── critical_hit_moves.asm │ ├── descriptions.asm │ ├── effects.asm │ ├── effects_pointers.asm │ ├── effects_priorities.asm │ ├── flail_reversal_power.asm │ ├── grammar.asm │ ├── magnitude_power.asm │ ├── metronome_exception_moves.asm │ ├── moves.asm │ ├── names.asm │ ├── present_power.asm │ └── tmhm_moves.asm ├── party_menu_qualities.asm ├── phone │ ├── non_trainer_names.asm │ ├── permanent_numbers.asm │ ├── phone_contacts.asm │ ├── special_calls.asm │ └── text │ │ ├── bike_shop.asm │ │ ├── bill.asm │ │ ├── landmarks.asm │ │ ├── mom.asm │ │ ├── oak2.asm │ │ ├── trainers.asm │ │ └── unused.asm ├── player_names.asm ├── pokemon │ ├── base_stats.asm │ ├── base_stats │ │ ├── abra.asm │ │ ├── aerodactyl.asm │ │ ├── aipom.asm │ │ ├── alakazam.asm │ │ ├── ampharos.asm │ │ ├── angore.asm │ │ ├── arbok.asm │ │ ├── arcanine.asm │ │ ├── ariados.asm │ │ ├── articuno.asm │ │ ├── ballerine.asm │ │ ├── beedrill.asm │ │ ├── belledam.asm │ │ ├── bellignan.asm │ │ ├── bellossom.asm │ │ ├── bellsprout.asm │ │ ├── bipulla.asm │ │ ├── blastoise.asm │ │ ├── blissey.asm │ │ ├── blossomite.asm │ │ ├── blossomole.asm │ │ ├── bruinus.asm │ │ ├── bulbasaur.asm │ │ ├── burgela.asm │ │ ├── butterfree.asm │ │ ├── caterpie.asm │ │ ├── chansey.asm │ │ ├── charizard.asm │ │ ├── charmander.asm │ │ ├── charmeleon.asm │ │ ├── chikorita.asm │ │ ├── clefable.asm │ │ ├── clefairy.asm │ │ ├── cleffa.asm │ │ ├── cloyster.asm │ │ ├── coinpur.asm │ │ ├── crobat.asm │ │ ├── cubburn.asm │ │ ├── cubone.asm │ │ ├── delibird.asm │ │ ├── dewgong.asm │ │ ├── diglett.asm │ │ ├── disturban.asm │ │ ├── ditto.asm │ │ ├── dodaerie.asm │ │ ├── dodrio.asm │ │ ├── doduo.asm │ │ ├── donmarin.asm │ │ ├── donphan.asm │ │ ├── dragonair.asm │ │ ├── dragonite.asm │ │ ├── dratini.asm │ │ ├── drowzee.asm │ │ ├── dugtrio.asm │ │ ├── eevee.asm │ │ ├── ekans.asm │ │ ├── electabuzz.asm │ │ ├── electrode.asm │ │ ├── elekid.asm │ │ ├── entei.asm │ │ ├── espeon.asm │ │ ├── exeggcute.asm │ │ ├── exeggutor.asm │ │ ├── farfetch_d.asm │ │ ├── fearow.asm │ │ ├── flaaffy.asm │ │ ├── flambear.asm │ │ ├── flareon.asm │ │ ├── gastly.asm │ │ ├── gengar.asm │ │ ├── geodude.asm │ │ ├── girafarig.asm │ │ ├── gloom.asm │ │ ├── golbat.asm │ │ ├── goldeen.asm │ │ ├── golduck.asm │ │ ├── golem.asm │ │ ├── graveler.asm │ │ ├── grenmar.asm │ │ ├── grimer.asm │ │ ├── growlithe.asm │ │ ├── gyarados.asm │ │ ├── haunter.asm │ │ ├── hitmonchan.asm │ │ ├── hitmonlee.asm │ │ ├── hitmontop.asm │ │ ├── ho_oh.asm │ │ ├── hoothoot.asm │ │ ├── hoppip.asm │ │ ├── horsea.asm │ │ ├── houndoom.asm │ │ ├── houndour.asm │ │ ├── hypno.asm │ │ ├── igglybuff.asm │ │ ├── ivysaur.asm │ │ ├── jigglypuff.asm │ │ ├── jolteon.asm │ │ ├── jumpluff.asm │ │ ├── jungela.asm │ │ ├── jynx.asm │ │ ├── kabuto.asm │ │ ├── kabutops.asm │ │ ├── kadabra.asm │ │ ├── kakuna.asm │ │ ├── kangaskhan.asm │ │ ├── kazappelin.asm │ │ ├── kingdra.asm │ │ ├── kingler.asm │ │ ├── koffing.asm │ │ ├── kolta.asm │ │ ├── krabby.asm │ │ ├── lapras.asm │ │ ├── leafeon.asm │ │ ├── ledian.asm │ │ ├── ledyba.asm │ │ ├── lickilord.asm │ │ ├── lickitung.asm │ │ ├── lurreel.asm │ │ ├── luxwan.asm │ │ ├── machamp.asm │ │ ├── machoke.asm │ │ ├── machop.asm │ │ ├── magby.asm │ │ ├── magikarp.asm │ │ ├── magmar.asm │ │ ├── magnemite.asm │ │ ├── magneton.asm │ │ ├── mankey.asm │ │ ├── mantine.asm │ │ ├── mareep.asm │ │ ├── marill.asm │ │ ├── marowak.asm │ │ ├── meowth.asm │ │ ├── metapod.asm │ │ ├── mew.asm │ │ ├── mewtwo.asm │ │ ├── miltank.asm │ │ ├── mimmeo.asm │ │ ├── moibelle.asm │ │ ├── molambino.asm │ │ ├── moltres.asm │ │ ├── mr__mime.asm │ │ ├── muk.asm │ │ ├── murkrow.asm │ │ ├── natu.asm │ │ ├── nidoking.asm │ │ ├── nidoqueen.asm │ │ ├── nidoran_f.asm │ │ ├── nidoran_m.asm │ │ ├── nidorina.asm │ │ ├── nidorino.asm │ │ ├── ninetales.asm │ │ ├── noctowl.asm │ │ ├── octillery.asm │ │ ├── oddish.asm │ │ ├── omanyte.asm │ │ ├── omastar.asm │ │ ├── onix.asm │ │ ├── orfry.asm │ │ ├── palssio.asm │ │ ├── paras.asm │ │ ├── parasect.asm │ │ ├── paraspor.asm │ │ ├── persian.asm │ │ ├── phandarin.asm │ │ ├── phanpy.asm │ │ ├── pichu.asm │ │ ├── pidgeot.asm │ │ ├── pidgeotto.asm │ │ ├── pidgey.asm │ │ ├── pikachu.asm │ │ ├── pinsir.asm │ │ ├── politoed.asm │ │ ├── poliwag.asm │ │ ├── poliwhirl.asm │ │ ├── poliwrath.asm │ │ ├── ponyta.asm │ │ ├── porygon.asm │ │ ├── porygon2.asm │ │ ├── pressio.asm │ │ ├── primeape.asm │ │ ├── psyduck.asm │ │ ├── pupperon.asm │ │ ├── quagsire.asm │ │ ├── qwilfish.asm │ │ ├── raichu.asm │ │ ├── raikou.asm │ │ ├── rapidash.asm │ │ ├── raticate.asm │ │ ├── rattata.asm │ │ ├── remoraid.asm │ │ ├── rhydon.asm │ │ ├── rhyhorn.asm │ │ ├── sandshrew.asm │ │ ├── sandslash.asm │ │ ├── scizor.asm │ │ ├── scyther.asm │ │ ├── seadra.asm │ │ ├── seaking.asm │ │ ├── seel.asm │ │ ├── shellder.asm │ │ ├── skarmory.asm │ │ ├── skiploom.asm │ │ ├── slowbro.asm │ │ ├── slowking.asm │ │ ├── slowpoke.asm │ │ ├── smeargle.asm │ │ ├── smoochum.asm │ │ ├── smujj.asm │ │ ├── sneasel.asm │ │ ├── snorlax.asm │ │ ├── snubbull.asm │ │ ├── spearow.asm │ │ ├── spinarak.asm │ │ ├── squirtle.asm │ │ ├── starmie.asm │ │ ├── staryu.asm │ │ ├── steelix.asm │ │ ├── straigar.asm │ │ ├── stromen.asm │ │ ├── suicune.asm │ │ ├── sunflora.asm │ │ ├── tangela.asm │ │ ├── tauros.asm │ │ ├── tentacool.asm │ │ ├── tentacruel.asm │ │ ├── togepi.asm │ │ ├── tricules.asm │ │ ├── tyker.asm │ │ ├── tyrogue.asm │ │ ├── umbreon.asm │ │ ├── unown.asm │ │ ├── vaporeon.asm │ │ ├── venomoth.asm │ │ ├── venonat.asm │ │ ├── venusaur.asm │ │ ├── victreebel.asm │ │ ├── vileplume.asm │ │ ├── voltorb.asm │ │ ├── vulpiii.asm │ │ ├── vulpix.asm │ │ ├── warfurs.asm │ │ ├── wartortle.asm │ │ ├── wearlycan.asm │ │ ├── weedle.asm │ │ ├── weepinbell.asm │ │ ├── weezing.asm │ │ ├── wigglytuff.asm │ │ ├── xatu.asm │ │ ├── zapdos.asm │ │ └── zubat.asm │ ├── cries.asm │ ├── dex_entries │ │ ├── gold │ │ │ ├── abra.asm │ │ │ ├── aerodactyl.asm │ │ │ ├── aipom.asm │ │ │ ├── alakazam.asm │ │ │ ├── ampharos.asm │ │ │ ├── angore.asm │ │ │ ├── arbok.asm │ │ │ ├── arcanine.asm │ │ │ ├── ariados.asm │ │ │ ├── articuno.asm │ │ │ ├── ballerine.asm │ │ │ ├── beedrill.asm │ │ │ ├── belledam.asm │ │ │ ├── bellignan.asm │ │ │ ├── bellossom.asm │ │ │ ├── bellsprout.asm │ │ │ ├── bipulla.asm │ │ │ ├── blastoise.asm │ │ │ ├── blissey.asm │ │ │ ├── blossomite.asm │ │ │ ├── blossomole.asm │ │ │ ├── bruinus.asm │ │ │ ├── bulbasaur.asm │ │ │ ├── burgela.asm │ │ │ ├── butterfree.asm │ │ │ ├── caterpie.asm │ │ │ ├── chansey.asm │ │ │ ├── charizard.asm │ │ │ ├── charmander.asm │ │ │ ├── charmeleon.asm │ │ │ ├── chikorita.asm │ │ │ ├── clefable.asm │ │ │ ├── clefairy.asm │ │ │ ├── cleffa.asm │ │ │ ├── cloyster.asm │ │ │ ├── coinpur.asm │ │ │ ├── crobat.asm │ │ │ ├── cubburn.asm │ │ │ ├── cubone.asm │ │ │ ├── delibird.asm │ │ │ ├── dewgong.asm │ │ │ ├── diglett.asm │ │ │ ├── disturban.asm │ │ │ ├── ditto.asm │ │ │ ├── dodaerie.asm │ │ │ ├── dodrio.asm │ │ │ ├── doduo.asm │ │ │ ├── donmarin.asm │ │ │ ├── donphan.asm │ │ │ ├── dragonair.asm │ │ │ ├── dragonite.asm │ │ │ ├── dratini.asm │ │ │ ├── drowzee.asm │ │ │ ├── dugtrio.asm │ │ │ ├── eevee.asm │ │ │ ├── ekans.asm │ │ │ ├── electabuzz.asm │ │ │ ├── electrode.asm │ │ │ ├── elekid.asm │ │ │ ├── entei.asm │ │ │ ├── espeon.asm │ │ │ ├── exeggcute.asm │ │ │ ├── exeggutor.asm │ │ │ ├── farfetch_d.asm │ │ │ ├── fearow.asm │ │ │ ├── flaaffy.asm │ │ │ ├── flambear.asm │ │ │ ├── flareon.asm │ │ │ ├── gastly.asm │ │ │ ├── gengar.asm │ │ │ ├── geodude.asm │ │ │ ├── girafarig.asm │ │ │ ├── gloom.asm │ │ │ ├── golbat.asm │ │ │ ├── goldeen.asm │ │ │ ├── golduck.asm │ │ │ ├── golem.asm │ │ │ ├── graveler.asm │ │ │ ├── grenmar.asm │ │ │ ├── grimer.asm │ │ │ ├── growlithe.asm │ │ │ ├── gyarados.asm │ │ │ ├── haunter.asm │ │ │ ├── hitmonchan.asm │ │ │ ├── hitmonlee.asm │ │ │ ├── hitmontop.asm │ │ │ ├── ho_oh.asm │ │ │ ├── hoothoot.asm │ │ │ ├── hoppip.asm │ │ │ ├── horsea.asm │ │ │ ├── houndoom.asm │ │ │ ├── houndour.asm │ │ │ ├── hypno.asm │ │ │ ├── igglybuff.asm │ │ │ ├── ivysaur.asm │ │ │ ├── jigglypuff.asm │ │ │ ├── jolteon.asm │ │ │ ├── jumpluff.asm │ │ │ ├── jungela.asm │ │ │ ├── jynx.asm │ │ │ ├── kabuto.asm │ │ │ ├── kabutops.asm │ │ │ ├── kadabra.asm │ │ │ ├── kakuna.asm │ │ │ ├── kangaskhan.asm │ │ │ ├── kazappelin.asm │ │ │ ├── kingdra.asm │ │ │ ├── kingler.asm │ │ │ ├── koffing.asm │ │ │ ├── kolta.asm │ │ │ ├── krabby.asm │ │ │ ├── lapras.asm │ │ │ ├── leafeon.asm │ │ │ ├── ledian.asm │ │ │ ├── ledyba.asm │ │ │ ├── lickilord.asm │ │ │ ├── lickitung.asm │ │ │ ├── lurreel.asm │ │ │ ├── luxwan.asm │ │ │ ├── machamp.asm │ │ │ ├── machoke.asm │ │ │ ├── machop.asm │ │ │ ├── magby.asm │ │ │ ├── magikarp.asm │ │ │ ├── magmar.asm │ │ │ ├── magnemite.asm │ │ │ ├── magneton.asm │ │ │ ├── mankey.asm │ │ │ ├── mantine.asm │ │ │ ├── mareep.asm │ │ │ ├── marill.asm │ │ │ ├── marowak.asm │ │ │ ├── meowth.asm │ │ │ ├── metapod.asm │ │ │ ├── mew.asm │ │ │ ├── mewtwo.asm │ │ │ ├── miltank.asm │ │ │ ├── mimmeo.asm │ │ │ ├── moibelle.asm │ │ │ ├── molambino.asm │ │ │ ├── moltres.asm │ │ │ ├── mr__mime.asm │ │ │ ├── muk.asm │ │ │ ├── murkrow.asm │ │ │ ├── natu.asm │ │ │ ├── nidoking.asm │ │ │ ├── nidoqueen.asm │ │ │ ├── nidoran_f.asm │ │ │ ├── nidoran_m.asm │ │ │ ├── nidorina.asm │ │ │ ├── nidorino.asm │ │ │ ├── ninetales.asm │ │ │ ├── noctowl.asm │ │ │ ├── octillery.asm │ │ │ ├── oddish.asm │ │ │ ├── omanyte.asm │ │ │ ├── omastar.asm │ │ │ ├── onix.asm │ │ │ ├── orfry.asm │ │ │ ├── palssio.asm │ │ │ ├── paras.asm │ │ │ ├── parasect.asm │ │ │ ├── paraspor.asm │ │ │ ├── persian.asm │ │ │ ├── phandarin.asm │ │ │ ├── phanpy.asm │ │ │ ├── pichu.asm │ │ │ ├── pidgeot.asm │ │ │ ├── pidgeotto.asm │ │ │ ├── pidgey.asm │ │ │ ├── pikachu.asm │ │ │ ├── pinsir.asm │ │ │ ├── politoed.asm │ │ │ ├── poliwag.asm │ │ │ ├── poliwhirl.asm │ │ │ ├── poliwrath.asm │ │ │ ├── ponyta.asm │ │ │ ├── porygon.asm │ │ │ ├── porygon2.asm │ │ │ ├── pressio.asm │ │ │ ├── primeape.asm │ │ │ ├── psyduck.asm │ │ │ ├── pupperon.asm │ │ │ ├── quagsire.asm │ │ │ ├── qwilfish.asm │ │ │ ├── raichu.asm │ │ │ ├── raikou.asm │ │ │ ├── rapidash.asm │ │ │ ├── raticate.asm │ │ │ ├── rattata.asm │ │ │ ├── remoraid.asm │ │ │ ├── rhydon.asm │ │ │ ├── rhyhorn.asm │ │ │ ├── sandshrew.asm │ │ │ ├── sandslash.asm │ │ │ ├── scizor.asm │ │ │ ├── scyther.asm │ │ │ ├── seadra.asm │ │ │ ├── seaking.asm │ │ │ ├── seel.asm │ │ │ ├── shellder.asm │ │ │ ├── skarmory.asm │ │ │ ├── skiploom.asm │ │ │ ├── slowbro.asm │ │ │ ├── slowking.asm │ │ │ ├── slowpoke.asm │ │ │ ├── smeargle.asm │ │ │ ├── smoochum.asm │ │ │ ├── smujj.asm │ │ │ ├── sneasel.asm │ │ │ ├── snorlax.asm │ │ │ ├── snubbull.asm │ │ │ ├── spearow.asm │ │ │ ├── spinarak.asm │ │ │ ├── squirtle.asm │ │ │ ├── starmie.asm │ │ │ ├── staryu.asm │ │ │ ├── steelix.asm │ │ │ ├── straigar.asm │ │ │ ├── stromen.asm │ │ │ ├── suicune.asm │ │ │ ├── sunflora.asm │ │ │ ├── tangela.asm │ │ │ ├── tauros.asm │ │ │ ├── tentacool.asm │ │ │ ├── tentacruel.asm │ │ │ ├── togepi.asm │ │ │ ├── tricules.asm │ │ │ ├── tyker.asm │ │ │ ├── tyrogue.asm │ │ │ ├── umbreon.asm │ │ │ ├── unown.asm │ │ │ ├── vaporeon.asm │ │ │ ├── venomoth.asm │ │ │ ├── venonat.asm │ │ │ ├── venusaur.asm │ │ │ ├── victreebel.asm │ │ │ ├── vileplume.asm │ │ │ ├── voltorb.asm │ │ │ ├── vulpiii.asm │ │ │ ├── vulpix.asm │ │ │ ├── warfurs.asm │ │ │ ├── wartortle.asm │ │ │ ├── wearlycan.asm │ │ │ ├── weedle.asm │ │ │ ├── weepinbell.asm │ │ │ ├── weezing.asm │ │ │ ├── wigglytuff.asm │ │ │ ├── xatu.asm │ │ │ ├── zapdos.asm │ │ │ └── zubat.asm │ │ └── silver │ │ │ ├── abra.asm │ │ │ ├── aerodactyl.asm │ │ │ ├── aipom.asm │ │ │ ├── alakazam.asm │ │ │ ├── ampharos.asm │ │ │ ├── arbok.asm │ │ │ ├── arcanine.asm │ │ │ ├── ariados.asm │ │ │ ├── articuno.asm │ │ │ ├── azumarill.asm │ │ │ ├── bayleef.asm │ │ │ ├── beedrill.asm │ │ │ ├── bellossom.asm │ │ │ ├── bellsprout.asm │ │ │ ├── blastoise.asm │ │ │ ├── blissey.asm │ │ │ ├── bulbasaur.asm │ │ │ ├── butterfree.asm │ │ │ ├── caterpie.asm │ │ │ ├── celebi.asm │ │ │ ├── chansey.asm │ │ │ ├── charizard.asm │ │ │ ├── charmander.asm │ │ │ ├── charmeleon.asm │ │ │ ├── chikorita.asm │ │ │ ├── chinchou.asm │ │ │ ├── clefable.asm │ │ │ ├── clefairy.asm │ │ │ ├── cleffa.asm │ │ │ ├── cloyster.asm │ │ │ ├── corsola.asm │ │ │ ├── crobat.asm │ │ │ ├── croconaw.asm │ │ │ ├── cubone.asm │ │ │ ├── cyndaquil.asm │ │ │ ├── delibird.asm │ │ │ ├── dewgong.asm │ │ │ ├── diglett.asm │ │ │ ├── ditto.asm │ │ │ ├── dodrio.asm │ │ │ ├── doduo.asm │ │ │ ├── donphan.asm │ │ │ ├── dragonair.asm │ │ │ ├── dragonite.asm │ │ │ ├── dratini.asm │ │ │ ├── drowzee.asm │ │ │ ├── dugtrio.asm │ │ │ ├── dunsparce.asm │ │ │ ├── eevee.asm │ │ │ ├── ekans.asm │ │ │ ├── electabuzz.asm │ │ │ ├── electrode.asm │ │ │ ├── elekid.asm │ │ │ ├── entei.asm │ │ │ ├── espeon.asm │ │ │ ├── exeggcute.asm │ │ │ ├── exeggutor.asm │ │ │ ├── farfetch_d.asm │ │ │ ├── fearow.asm │ │ │ ├── feraligatr.asm │ │ │ ├── flaaffy.asm │ │ │ ├── flareon.asm │ │ │ ├── forretress.asm │ │ │ ├── furret.asm │ │ │ ├── gastly.asm │ │ │ ├── gengar.asm │ │ │ ├── geodude.asm │ │ │ ├── girafarig.asm │ │ │ ├── gligar.asm │ │ │ ├── gloom.asm │ │ │ ├── golbat.asm │ │ │ ├── goldeen.asm │ │ │ ├── golduck.asm │ │ │ ├── golem.asm │ │ │ ├── granbull.asm │ │ │ ├── graveler.asm │ │ │ ├── grimer.asm │ │ │ ├── growlithe.asm │ │ │ ├── gyarados.asm │ │ │ ├── haunter.asm │ │ │ ├── heracross.asm │ │ │ ├── hitmonchan.asm │ │ │ ├── hitmonlee.asm │ │ │ ├── hitmontop.asm │ │ │ ├── ho_oh.asm │ │ │ ├── hoothoot.asm │ │ │ ├── hoppip.asm │ │ │ ├── horsea.asm │ │ │ ├── houndoom.asm │ │ │ ├── houndour.asm │ │ │ ├── hypno.asm │ │ │ ├── igglybuff.asm │ │ │ ├── ivysaur.asm │ │ │ ├── jigglypuff.asm │ │ │ ├── jolteon.asm │ │ │ ├── jumpluff.asm │ │ │ ├── jynx.asm │ │ │ ├── kabuto.asm │ │ │ ├── kabutops.asm │ │ │ ├── kadabra.asm │ │ │ ├── kakuna.asm │ │ │ ├── kangaskhan.asm │ │ │ ├── kingdra.asm │ │ │ ├── kingler.asm │ │ │ ├── koffing.asm │ │ │ ├── krabby.asm │ │ │ ├── lanturn.asm │ │ │ ├── lapras.asm │ │ │ ├── larvitar.asm │ │ │ ├── ledian.asm │ │ │ ├── ledyba.asm │ │ │ ├── lickitung.asm │ │ │ ├── lugia.asm │ │ │ ├── machamp.asm │ │ │ ├── machoke.asm │ │ │ ├── machop.asm │ │ │ ├── magby.asm │ │ │ ├── magcargo.asm │ │ │ ├── magikarp.asm │ │ │ ├── magmar.asm │ │ │ ├── magnemite.asm │ │ │ ├── magneton.asm │ │ │ ├── mankey.asm │ │ │ ├── mantine.asm │ │ │ ├── mareep.asm │ │ │ ├── marill.asm │ │ │ ├── marowak.asm │ │ │ ├── meganium.asm │ │ │ ├── meowth.asm │ │ │ ├── metapod.asm │ │ │ ├── mew.asm │ │ │ ├── mewtwo.asm │ │ │ ├── miltank.asm │ │ │ ├── misdreavus.asm │ │ │ ├── moltres.asm │ │ │ ├── mr__mime.asm │ │ │ ├── muk.asm │ │ │ ├── murkrow.asm │ │ │ ├── natu.asm │ │ │ ├── nidoking.asm │ │ │ ├── nidoqueen.asm │ │ │ ├── nidoran_f.asm │ │ │ ├── nidoran_m.asm │ │ │ ├── nidorina.asm │ │ │ ├── nidorino.asm │ │ │ ├── ninetales.asm │ │ │ ├── noctowl.asm │ │ │ ├── octillery.asm │ │ │ ├── oddish.asm │ │ │ ├── omanyte.asm │ │ │ ├── omastar.asm │ │ │ ├── onix.asm │ │ │ ├── paras.asm │ │ │ ├── parasect.asm │ │ │ ├── persian.asm │ │ │ ├── phanpy.asm │ │ │ ├── pichu.asm │ │ │ ├── pidgeot.asm │ │ │ ├── pidgeotto.asm │ │ │ ├── pidgey.asm │ │ │ ├── pikachu.asm │ │ │ ├── piloswine.asm │ │ │ ├── pineco.asm │ │ │ ├── pinsir.asm │ │ │ ├── politoed.asm │ │ │ ├── poliwag.asm │ │ │ ├── poliwhirl.asm │ │ │ ├── poliwrath.asm │ │ │ ├── ponyta.asm │ │ │ ├── porygon.asm │ │ │ ├── porygon2.asm │ │ │ ├── primeape.asm │ │ │ ├── psyduck.asm │ │ │ ├── pupitar.asm │ │ │ ├── quagsire.asm │ │ │ ├── quilava.asm │ │ │ ├── qwilfish.asm │ │ │ ├── raichu.asm │ │ │ ├── raikou.asm │ │ │ ├── rapidash.asm │ │ │ ├── raticate.asm │ │ │ ├── rattata.asm │ │ │ ├── remoraid.asm │ │ │ ├── rhydon.asm │ │ │ ├── rhyhorn.asm │ │ │ ├── sandshrew.asm │ │ │ ├── sandslash.asm │ │ │ ├── scizor.asm │ │ │ ├── scyther.asm │ │ │ ├── seadra.asm │ │ │ ├── seaking.asm │ │ │ ├── seel.asm │ │ │ ├── sentret.asm │ │ │ ├── shellder.asm │ │ │ ├── shuckle.asm │ │ │ ├── skarmory.asm │ │ │ ├── skiploom.asm │ │ │ ├── slowbro.asm │ │ │ ├── slowking.asm │ │ │ ├── slowpoke.asm │ │ │ ├── slugma.asm │ │ │ ├── smeargle.asm │ │ │ ├── smoochum.asm │ │ │ ├── sneasel.asm │ │ │ ├── snorlax.asm │ │ │ ├── snubbull.asm │ │ │ ├── spearow.asm │ │ │ ├── spinarak.asm │ │ │ ├── squirtle.asm │ │ │ ├── stantler.asm │ │ │ ├── starmie.asm │ │ │ ├── staryu.asm │ │ │ ├── steelix.asm │ │ │ ├── sudowoodo.asm │ │ │ ├── suicune.asm │ │ │ ├── sunflora.asm │ │ │ ├── sunkern.asm │ │ │ ├── swinub.asm │ │ │ ├── tangela.asm │ │ │ ├── tauros.asm │ │ │ ├── teddiursa.asm │ │ │ ├── tentacool.asm │ │ │ ├── tentacruel.asm │ │ │ ├── togepi.asm │ │ │ ├── togetic.asm │ │ │ ├── totodile.asm │ │ │ ├── typhlosion.asm │ │ │ ├── tyranitar.asm │ │ │ ├── tyrogue.asm │ │ │ ├── umbreon.asm │ │ │ ├── unown.asm │ │ │ ├── ursaring.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 │ │ │ ├── wobbuffet.asm │ │ │ ├── wooper.asm │ │ │ ├── xatu.asm │ │ │ ├── yanma.asm │ │ │ ├── zapdos.asm │ │ │ └── zubat.asm │ ├── dex_entries_gold.asm │ ├── dex_entries_silver.asm │ ├── dex_entry_pointers.asm │ ├── dex_order_alpha.asm │ ├── dex_order_new.asm │ ├── egg_move_pointers.asm │ ├── egg_moves.asm │ ├── evos_attacks.asm │ ├── evos_attacks_pointers.asm │ ├── gen1_base_special.asm │ ├── gen1_order.asm │ ├── menu_icons.asm │ ├── names.asm │ ├── palettes.asm │ ├── pic_pointers.asm │ ├── unown_pic_pointers.asm │ ├── unown_words.asm │ └── unused_pic_banks.asm ├── predef_pointers.asm ├── radio │ ├── channel_music.asm │ ├── oaks_pkmn_talk_routes.asm │ ├── pnp_hidden_people.asm │ └── pnp_places.asm ├── rival_names.asm ├── sgb_ctrl_packets.asm ├── special_pointers.asm ├── sprite_anims │ ├── framesets.asm │ ├── oam.asm │ └── sequences.asm ├── sprites │ ├── emotes.asm │ ├── facings.asm │ ├── map_objects.asm │ ├── player_sprites.asm │ ├── sprite_mons.asm │ └── sprites.asm ├── stadium │ ├── stadium_gold.bin │ └── stadium_silver.bin ├── text │ ├── battle.asm │ ├── common.asm │ ├── common_1.asm │ ├── common_2.asm │ ├── common_3.asm │ ├── dakutens.asm │ ├── mail_input_chars.asm │ ├── name_input_chars.asm │ ├── std_text.asm │ ├── unused_gen1_trainer_names.asm │ └── unused_sweet_honey.asm ├── text_buffers.asm ├── tilesets.asm ├── tilesets │ ├── birdon_collision.asm │ ├── birdon_metatiles.bin │ ├── blue_forest_collision.asm │ ├── blue_forest_metatiles.bin │ ├── cave_collision.asm │ ├── cave_metatiles.bin │ ├── champions_room_collision.asm │ ├── champions_room_metatiles.bin │ ├── dark_cave_collision.asm │ ├── dark_cave_metatiles.bin │ ├── elite_four_room_collision.asm │ ├── elite_four_room_metatiles.bin │ ├── facility_collision.asm │ ├── facility_metatiles.bin │ ├── forest_collision.asm │ ├── forest_metatiles.bin │ ├── game_corner_collision.asm │ ├── game_corner_metatiles.bin │ ├── gate_collision.asm │ ├── gate_metatiles.bin │ ├── honto_collision.asm │ ├── honto_metatiles.bin │ ├── house_collision.asm │ ├── house_metatiles.bin │ ├── ice_path_collision.asm │ ├── ice_path_metatiles.bin │ ├── kanto_collision.asm │ ├── kanto_metatiles.bin │ ├── lab_collision.asm │ ├── lab_metatiles.bin │ ├── lighthouse_collision.asm │ ├── lighthouse_metatiles.bin │ ├── mansion_collision.asm │ ├── mansion_metatiles.bin │ ├── mart_collision.asm │ ├── mart_metatiles.bin │ ├── nihon_collision.asm │ ├── nihon_metatiles.bin │ ├── nihon_modern_collision.asm │ ├── nihon_modern_metatiles.bin │ ├── nihon_old_collision.asm │ ├── nihon_old_metatiles.bin │ ├── office_collision.asm │ ├── office_metatiles.bin │ ├── park_collision.asm │ ├── park_metatiles.bin │ ├── players_house_collision.asm │ ├── players_house_metatiles.bin │ ├── players_room_collision.asm │ ├── players_room_metatiles.bin │ ├── pokecenter_collision.asm │ ├── pokecenter_metatiles.bin │ ├── port_collision.asm │ ├── port_metatiles.bin │ ├── radio_tower_collision.asm │ ├── radio_tower_metatiles.bin │ ├── ruins_of_alph_collision.asm │ ├── ruins_of_alph_metatiles.bin │ ├── sanskrit_ruins_collision.asm │ ├── sanskrit_ruins_metatiles.bin │ ├── south_collision.asm │ ├── south_metatiles.bin │ ├── tower_collision.asm │ ├── tower_metatiles.bin │ ├── traditional_house_collision.asm │ ├── traditional_house_metatiles.bin │ ├── train_station_collision.asm │ ├── train_station_metatiles.bin │ ├── tropical_collision.asm │ ├── tropical_metatiles.bin │ ├── underground_collision.asm │ ├── underground_metatiles.bin │ ├── unused_nihon_collision.asm │ └── unused_nihon_metatiles.bin ├── trainers │ ├── attributes.asm │ ├── class_names.asm │ ├── dvs.asm │ ├── encounter_music.asm │ ├── leaders.asm │ ├── palettes.asm │ ├── parties.asm │ ├── party_pointers.asm │ └── pic_pointers.asm ├── types │ ├── badge_type_boosts.asm │ ├── names.asm │ ├── search_strings.asm │ ├── search_types.asm │ ├── type_boost_items.asm │ └── type_matchups.asm └── wild │ ├── bug_contest_mons.asm │ ├── fish.asm │ ├── flee_mons.asm │ ├── nihon_grass.asm │ ├── nihon_water.asm │ ├── probabilities.asm │ ├── roammon_maps.asm │ ├── swarm_grass.asm │ ├── swarm_water.asm │ ├── swislands_grass.asm │ ├── swislands_water.asm │ ├── treemon_maps.asm │ ├── treemons.asm │ └── unlocked_unowns.asm ├── engine ├── battle │ ├── ai │ │ ├── items.asm │ │ ├── move.asm │ │ ├── redundant.asm │ │ ├── scoring.asm │ │ └── switch.asm │ ├── anim_hp_bar.asm │ ├── battle_transition.asm │ ├── consume_held_item.asm │ ├── core.asm │ ├── effect_commands.asm │ ├── getgen1trainerclassname.asm │ ├── hidden_power.asm │ ├── menu.asm │ ├── misc.asm │ ├── move_effects │ │ ├── attract.asm │ │ ├── baton_pass.asm │ │ ├── beat_up.asm │ │ ├── belly_drum.asm │ │ ├── bide.asm │ │ ├── coin_hurl.asm │ │ ├── conversion.asm │ │ ├── conversion2.asm │ │ ├── counter.asm │ │ ├── curse.asm │ │ ├── destiny_bond.asm │ │ ├── disable.asm │ │ ├── encore.asm │ │ ├── endure.asm │ │ ├── false_swipe.asm │ │ ├── focus_energy.asm │ │ ├── foresight.asm │ │ ├── frustration.asm │ │ ├── fury_cutter.asm │ │ ├── future_sight.asm │ │ ├── heal_bell.asm │ │ ├── hidden_power.asm │ │ ├── leech_seed.asm │ │ ├── lock_on.asm │ │ ├── magnitude.asm │ │ ├── metronome.asm │ │ ├── mimic.asm │ │ ├── mirror_coat.asm │ │ ├── mirror_move.asm │ │ ├── mist.asm │ │ ├── nightmare.asm │ │ ├── pain_split.asm │ │ ├── pay_day.asm │ │ ├── perish_song.asm │ │ ├── present.asm │ │ ├── protect.asm │ │ ├── psych_up.asm │ │ ├── pursuit.asm │ │ ├── rage.asm │ │ ├── rain_dance.asm │ │ ├── rapid_spin.asm │ │ ├── return.asm │ │ ├── rollout.asm │ │ ├── safeguard.asm │ │ ├── sandstorm.asm │ │ ├── selfdestruct.asm │ │ ├── sketch.asm │ │ ├── sleep_talk.asm │ │ ├── snore.asm │ │ ├── spikes.asm │ │ ├── spite.asm │ │ ├── splash.asm │ │ ├── substitute.asm │ │ ├── sunny_day.asm │ │ ├── teleport.asm │ │ ├── thief.asm │ │ ├── thunder.asm │ │ ├── transform.asm │ │ └── triple_kick.asm │ ├── read_trainer_attributes.asm │ ├── read_trainer_dvs.asm │ ├── read_trainer_party.asm │ ├── returntobattle_useball.asm │ ├── sliding_intro.asm │ ├── start_battle.asm │ ├── trainer_huds.asm │ └── used_move_text.asm ├── battle_anims │ ├── anim_commands.asm │ ├── bg_effects.asm │ ├── core.asm │ ├── functions.asm │ ├── helpers.asm │ └── pokeball_wobble.asm ├── events │ ├── basement_key.asm │ ├── bug_contest │ │ ├── caught_mon.asm │ │ ├── contest.asm │ │ ├── contest_2.asm │ │ ├── display_stats.asm │ │ └── judging.asm │ ├── card_key.asm │ ├── catch_tutorial.asm │ ├── catch_tutorial_input.asm │ ├── checkforhiddenitems.asm │ ├── checktime.asm │ ├── daycare.asm │ ├── diploma.asm │ ├── dratini.asm │ ├── elevator.asm │ ├── engine_flags.asm │ ├── field_moves.asm │ ├── fish.asm │ ├── fishing_gfx.asm │ ├── forced_movement.asm │ ├── fruit_trees.asm │ ├── haircut.asm │ ├── halloffame.asm │ ├── happiness_egg.asm │ ├── heal_machine_anim.asm │ ├── hidden_item.asm │ ├── itemfinder.asm │ ├── lucky_number.asm │ ├── magikarp.asm │ ├── magnet_train.asm │ ├── misc_scripts.asm │ ├── moibelle.asm │ ├── mom.asm │ ├── mom_phone.asm │ ├── money.asm │ ├── move_deleter.asm │ ├── move_tutor.asm │ ├── name_rater.asm │ ├── npc_trade.asm │ ├── odd_egg.asm │ ├── overworld.asm │ ├── play_slow_cry.asm │ ├── poisonstep.asm │ ├── poisonstep_pals.asm │ ├── pokecenter_pc.asm │ ├── pokepic.asm │ ├── pokerus │ │ ├── apply_pokerus_tick.asm │ │ ├── check_pokerus.asm │ │ └── pokerus.asm │ ├── print_photo.asm │ ├── print_unown.asm │ ├── print_unown_2.asm │ ├── prof_oaks_pc.asm │ ├── repel.asm │ ├── sacred_ash.asm │ ├── specials.asm │ ├── squirtbottle.asm │ ├── std_collision.asm │ ├── std_scripts.asm │ ├── sweet_scent.asm │ ├── trainer_scripts.asm │ ├── treemons.asm │ └── whiteout.asm ├── games │ ├── card_flip.asm │ ├── dummy_game.asm │ ├── pikachu_minigame.asm │ ├── slot_machine.asm │ └── unown_puzzle.asm ├── gfx │ ├── cgb_layouts.asm │ ├── color.asm │ ├── load_font.asm │ ├── load_pics.asm │ ├── load_push_oam.asm │ ├── mon_icons.asm │ ├── place_graphic.asm │ ├── sgb_layouts.asm │ ├── sprite_anims.asm │ └── sprites.asm ├── items │ ├── buy_sell_toss.asm │ ├── item_effects.asm │ ├── items.asm │ ├── mart.asm │ ├── pack.asm │ ├── print_item_description.asm │ ├── switch_items.asm │ ├── tmhm.asm │ ├── tmhm2.asm │ └── update_item_description.asm ├── link │ ├── init_list.asm │ ├── link.asm │ ├── mystery_gift.asm │ ├── mystery_gift_2.asm │ ├── mystery_gift_3.asm │ ├── mystery_gift_gfx.asm │ ├── place_waiting_text.asm │ ├── time_capsule.asm │ └── time_capsule_2.asm ├── math │ ├── math.asm │ └── sine.asm ├── menus │ ├── debug.asm │ ├── delete_save.asm │ ├── empty_sram.asm │ ├── intro_menu.asm │ ├── main_menu.asm │ ├── menu.asm │ ├── menu_2.asm │ ├── naming_screen.asm │ ├── options_menu.asm │ ├── save.asm │ ├── savemenu_copytilemapatonce.asm │ ├── scrolling_menu.asm │ ├── start_menu.asm │ └── trainer_card.asm ├── movie │ ├── credits.asm │ ├── evolution_animation.asm │ ├── init_hof_credits.asm │ ├── intro.asm │ ├── title.asm │ └── trade_animation.asm ├── overworld │ ├── cmd_queue.asm │ ├── decorations.asm │ ├── events.asm │ ├── init_map.asm │ ├── landmarks.asm │ ├── load_map_part.asm │ ├── map_object_action.asm │ ├── map_objects.asm │ ├── map_objects_2.asm │ ├── map_setup.asm │ ├── movement.asm │ ├── npc_movement.asm │ ├── overworld.asm │ ├── player_movement.asm │ ├── player_object.asm │ ├── player_step.asm │ ├── scripting.asm │ ├── select_menu.asm │ ├── spawn_points.asm │ ├── tile_events.asm │ ├── time.asm │ ├── variables.asm │ └── wildmons.asm ├── phone │ ├── phone.asm │ ├── phonering_copytilemapatonce.asm │ └── scripts │ │ ├── bike_shop.asm │ │ ├── bill.asm │ │ ├── generic.asm │ │ ├── mom.asm │ │ ├── oak2.asm │ │ ├── trainers.asm │ │ └── unused.asm ├── pokedex │ ├── new_pokedex_entry.asm │ ├── pokedex.asm │ ├── pokedex_2.asm │ ├── pokedex_3.asm │ └── unown_dex.asm ├── pokegear │ ├── pokegear.asm │ ├── radio.asm │ └── townmap_convertlinebreakcharacters.asm ├── pokemon │ ├── bills_pc.asm │ ├── bills_pc_top.asm │ ├── breeding.asm │ ├── breedmon_level_growth.asm │ ├── caught_nickname.asm │ ├── correct_nick_errors.asm │ ├── evolve.asm │ ├── experience.asm │ ├── health.asm │ ├── knows_move.asm │ ├── learn.asm │ ├── mail.asm │ ├── mail_2.asm │ ├── mon_menu.asm │ ├── mon_stats.asm │ ├── mon_submenu.asm │ ├── move_mon.asm │ ├── move_mon_wo_mail.asm │ ├── party_menu.asm │ ├── print_move_description.asm │ ├── search2.asm │ ├── stats_screen.asm │ ├── switchpartymons.asm │ ├── tempmon.asm │ └── types.asm ├── predef.asm ├── printer │ ├── print_party.asm │ ├── printer.asm │ └── printer_serial.asm ├── rtc │ ├── print_hours_mins.asm │ ├── reset_password.asm │ ├── restart_clock.asm │ ├── rtc.asm │ └── timeset.asm ├── smallflag.asm └── tilesets │ ├── map_palettes.asm │ ├── mapgroup_roofs.asm │ ├── tileset_anims.asm │ └── timeofday_pals.asm ├── gfx ├── battle │ ├── balls.png │ ├── dude.png │ ├── enemy_hp_bar_border.png │ ├── exp_bar.pal │ ├── expbar.png │ ├── expbarend.png │ ├── expbarend_sgb.png │ ├── hp_bar.pal │ ├── hp_exp_bar_border.png │ └── minimize.png ├── battle_anims.asm ├── battle_anims │ ├── aeroblast.png │ ├── angels.png │ ├── battle_anims.pal │ ├── beam.png │ ├── bubble.png │ ├── charge.png │ ├── cut.png │ ├── egg.png │ ├── explosion.png │ ├── fire.png │ ├── flower.png │ ├── globe.png │ ├── haze.png │ ├── hit.png │ ├── horn.png │ ├── ice.png │ ├── lightning.png │ ├── misc.png │ ├── noise.png │ ├── objects.png │ ├── plant.png │ ├── poison.png │ ├── pokeball.png │ ├── powder.png │ ├── psychic.png │ ├── reflect.png │ ├── rocks.png │ ├── rope.png │ ├── sand.png │ ├── shapes.png │ ├── shine.png │ ├── skyattack.png │ ├── smoke.png │ ├── speed.png │ ├── status.png │ ├── unused_battle_anims.pal │ ├── water.png │ ├── wave.png │ ├── web.png │ ├── whip.png │ └── wind.png ├── beta_poker │ └── beta_poker.pal ├── card_flip │ ├── card_flip.pal │ ├── card_flip.tilemap │ ├── card_flip_1.png │ ├── card_flip_2.png │ ├── card_flip_3.png │ ├── off.png │ └── on.png ├── credits │ ├── bellossom.png │ ├── border.png │ ├── burgela.png │ ├── credits.pal │ ├── elekid.png │ ├── theend.png │ └── togepi.png ├── debug │ ├── bg.pal │ ├── color_test.png │ ├── ob.pal │ └── up_arrow.png ├── diploma │ ├── diploma.pal │ ├── diploma.png │ ├── page1.tilemap │ └── page2.tilemap ├── dummy_game │ └── dummy_game.png ├── emotes.asm ├── emotes │ ├── bolt.png │ ├── fish.png │ ├── happy.png │ ├── heart.png │ ├── question.png │ ├── sad.png │ ├── shock.png │ └── sleep.png ├── evo │ ├── bubble.png │ ├── bubble_large.png │ └── egg_hatch.png ├── font.asm ├── font │ ├── black.png │ ├── feet_inches.png │ ├── font.png │ ├── font_battle_extra.png │ ├── font_extra.png │ ├── font_inversed.png │ ├── phone_icon.png │ ├── space.png │ ├── unown_font.png │ ├── unused_bold_font.png │ ├── unused_weekday_kanji.png │ └── up_arrow.png ├── footprints.asm ├── footprints │ ├── 252.png │ ├── 253.png │ ├── 254.png │ ├── 255.png │ ├── 256.png │ ├── abra.png │ ├── aerodactyl.png │ ├── aipom.png │ ├── alakazam.png │ ├── ampharos.png │ ├── angore.png │ ├── arbok.png │ ├── arcanine.png │ ├── ariados.png │ ├── articuno.png │ ├── ballerine.png │ ├── beedrill.png │ ├── belledam.png │ ├── bellignan.png │ ├── bellossom.png │ ├── bellsprout.png │ ├── bipulla.png │ ├── blastoise.png │ ├── blissey.png │ ├── blossomite.png │ ├── blossomole.png │ ├── bruinus.png │ ├── bulbasaur.png │ ├── burgela.png │ ├── butterfree.png │ ├── caterpie.png │ ├── chansey.png │ ├── charizard.png │ ├── charmander.png │ ├── charmeleon.png │ ├── chikorita.png │ ├── clefable.png │ ├── clefairy.png │ ├── cleffa.png │ ├── cloyster.png │ ├── coinpur.png │ ├── corsola.png │ ├── crobat.png │ ├── cubburn.png │ ├── cubone.png │ ├── delibird.png │ ├── dewgong.png │ ├── diglett.png │ ├── disturban.png │ ├── ditto.png │ ├── dodaerie.png │ ├── dodrio.png │ ├── doduo.png │ ├── donmarin.png │ ├── donphan.png │ ├── dragonair.png │ ├── dragonite.png │ ├── dratini.png │ ├── drowzee.png │ ├── dugtrio.png │ ├── eevee.png │ ├── ekans.png │ ├── electabuzz.png │ ├── electrode.png │ ├── elekid.png │ ├── entei.png │ ├── espeon.png │ ├── exeggcute.png │ ├── exeggutor.png │ ├── farfetch_d.png │ ├── fearow.png │ ├── flaaffy.png │ ├── flambear.png │ ├── flareon.png │ ├── gastly.png │ ├── gengar.png │ ├── geodude.png │ ├── girafarig.png │ ├── gloom.png │ ├── golbat.png │ ├── goldeen.png │ ├── golduck.png │ ├── golem.png │ ├── graveler.png │ ├── grenmar.png │ ├── grimer.png │ ├── growlithe.png │ ├── gyarados.png │ ├── haunter.png │ ├── hitmonchan.png │ ├── hitmonlee.png │ ├── hitmontop.png │ ├── ho_oh.png │ ├── hoothoot.png │ ├── hoppip.png │ ├── horsea.png │ ├── houndoom.png │ ├── houndour.png │ ├── hypno.png │ ├── igglybuff.png │ ├── ivysaur.png │ ├── jigglypuff.png │ ├── jolteon.png │ ├── jumpluff.png │ ├── jungela.png │ ├── jynx.png │ ├── kabuto.png │ ├── kabutops.png │ ├── kadabra.png │ ├── kakuna.png │ ├── kangaskhan.png │ ├── kazappelin.png │ ├── kingdra.png │ ├── kingler.png │ ├── koffing.png │ ├── kolta.png │ ├── krabby.png │ ├── lapras.png │ ├── leafeon.png │ ├── ledian.png │ ├── ledyba.png │ ├── lickilord.png │ ├── lickitung.png │ ├── lurreel.png │ ├── luxwan.png │ ├── machamp.png │ ├── machoke.png │ ├── machop.png │ ├── magby.png │ ├── magikarp.png │ ├── magmar.png │ ├── magnemite.png │ ├── magneton.png │ ├── mankey.png │ ├── mantine.png │ ├── mareep.png │ ├── marill.png │ ├── marowak.png │ ├── meowth.png │ ├── metapod.png │ ├── mew.png │ ├── mewtwo.png │ ├── miltank.png │ ├── mimmeo.png │ ├── moibelle.png │ ├── molambino.png │ ├── moltres.png │ ├── mr__mime.png │ ├── muk.png │ ├── murkrow.png │ ├── natu.png │ ├── nidoking.png │ ├── nidoqueen.png │ ├── nidoran_f.png │ ├── nidoran_m.png │ ├── nidorina.png │ ├── nidorino.png │ ├── ninetales.png │ ├── noctowl.png │ ├── octillery.png │ ├── oddish.png │ ├── omanyte.png │ ├── omastar.png │ ├── onix.png │ ├── orfry.png │ ├── palssio.png │ ├── paras.png │ ├── parasect.png │ ├── paraspor.png │ ├── persian.png │ ├── phandarin.png │ ├── phanpy.png │ ├── pichu.png │ ├── pidgeot.png │ ├── pidgeotto.png │ ├── pidgey.png │ ├── pikachu.png │ ├── pinsir.png │ ├── politoed.png │ ├── poliwag.png │ ├── poliwhirl.png │ ├── poliwrath.png │ ├── ponyta.png │ ├── porygon.png │ ├── porygon2.png │ ├── pressio.png │ ├── primeape.png │ ├── psyduck.png │ ├── pupperon.png │ ├── quagsire.png │ ├── qwilfish.png │ ├── raichu.png │ ├── raikou.png │ ├── rapidash.png │ ├── raticate.png │ ├── rattata.png │ ├── remoraid.png │ ├── rhydon.png │ ├── rhyhorn.png │ ├── sandshrew.png │ ├── sandslash.png │ ├── scizor.png │ ├── scyther.png │ ├── seadra.png │ ├── seaking.png │ ├── seel.png │ ├── shellder.png │ ├── skarmory.png │ ├── skiploom.png │ ├── slowbro.png │ ├── slowking.png │ ├── slowpoke.png │ ├── smeargle.png │ ├── smoochum.png │ ├── smujj.png │ ├── sneasel.png │ ├── snorlax.png │ ├── snubbull.png │ ├── spearow.png │ ├── spinarak.png │ ├── squirtle.png │ ├── starmie.png │ ├── staryu.png │ ├── steelix.png │ ├── straigar.png │ ├── stromen.png │ ├── suicune.png │ ├── sunflora.png │ ├── tangela.png │ ├── tauros.png │ ├── tentacool.png │ ├── tentacruel.png │ ├── togepi.png │ ├── tricules.png │ ├── tyker.png │ ├── tyrogue.png │ ├── umbreon.png │ ├── unown.png │ ├── vaporeon.png │ ├── venomoth.png │ ├── venonat.png │ ├── venusaur.png │ ├── victreebel.png │ ├── vileplume.png │ ├── voltorb.png │ ├── vulpiii.png │ ├── vulpix.png │ ├── warfurs.png │ ├── wartortle.png │ ├── wearlycan.png │ ├── weedle.png │ ├── weepinbell.png │ ├── weezing.png │ ├── wigglytuff.png │ ├── wobbuffet.png │ ├── xatu.png │ ├── zapdos.png │ └── zubat.png ├── frames │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── icons.asm ├── icons │ ├── bat.png │ ├── bellignan.png │ ├── bigmon.png │ ├── bird.png │ ├── blissey.png │ ├── blob.png │ ├── bug.png │ ├── bulbasaur.png │ ├── caterpillar.png │ ├── charmander.png │ ├── clefairy.png │ ├── diglett.png │ ├── egg.png │ ├── equine.png │ ├── fighter.png │ ├── fish.png │ ├── fox.png │ ├── geodude.png │ ├── ghost.png │ ├── gyarados.png │ ├── ho_oh.png │ ├── humanshape.png │ ├── item.png │ ├── jellyfish.png │ ├── jigglypuff.png │ ├── lapras.png │ ├── mail.png │ ├── mail_big.png │ ├── monster.png │ ├── moth.png │ ├── oddish.png │ ├── pikachu.png │ ├── poliwag.png │ ├── serpent.png │ ├── shell.png │ ├── slowpoke.png │ ├── snorlax.png │ ├── squirtle.png │ ├── staryu.png │ ├── unown.png │ └── voltorb.png ├── intro │ ├── charizard1.png │ ├── charizard2_bottom.png │ ├── charizard2_top.png │ ├── charizard3.png │ ├── copyright.png │ ├── fire.png │ ├── gamefreak_logo.png │ ├── gamefreak_presents.png │ ├── grass.bin │ ├── grass.bin.bak │ ├── grass.tilemap │ ├── grass.tilemap.bak │ ├── grass1.png │ ├── grass2.png │ ├── logo_sparkle.png │ ├── logo_star.png │ ├── space.png │ ├── unused_blastoise_venusaur.png │ ├── water.bin │ ├── water.tilemap │ ├── water1.png │ └── water2.png ├── lz.mk ├── mail.asm ├── mail │ ├── burgela.png │ ├── cloud.png │ ├── ditto.png │ ├── dragonite.png │ ├── dratini.png │ ├── eevee.png │ ├── eon_mail_border_1.png │ ├── eon_mail_border_2.png │ ├── flower_1.png │ ├── flower_2.png │ ├── flower_mail_border.png │ ├── grass.png │ ├── lapras.png │ ├── large_circle.png │ ├── large_heart.png │ ├── large_note.png │ ├── large_pokeball.png │ ├── large_triangle.png │ ├── litebluemail_border.png │ ├── lovely_mail_border.png │ ├── lovely_mail_underline.png │ ├── mail.pal │ ├── mew.png │ ├── morph_mail_border.png │ ├── morph_mail_corner.png │ ├── morph_mail_divider.png │ ├── music_mail_border.png │ ├── natu.png │ ├── oddish.png │ ├── poliwag.png │ ├── portraitmail_border.png │ ├── portraitmail_underline.png │ ├── small_heart.png │ ├── small_note.png │ ├── small_pokeball.png │ ├── small_triangle.png │ ├── surf_mail_border.png │ ├── unused_grass.png │ └── wave.png ├── mystery_gift │ ├── border.png │ ├── mystery_gift.png │ ├── mystery_gift_2.png │ └── question_mark.png ├── naming_screen │ ├── border.png │ ├── cursor.png │ ├── end.png │ ├── middle_line.png │ ├── naming_screen.pal │ └── underline.png ├── new_game │ ├── down_arrow.png │ ├── shrink1.png │ ├── shrink2.png │ ├── timeset_bg.png │ └── up_arrow.png ├── overworld │ ├── boulder_dust.png │ ├── chris_fish.png │ ├── cut_grass.png │ ├── cut_tree.png │ ├── fishing_rod.png │ ├── grass_rustle.png │ ├── headbutt_tree.png │ ├── heal_machine.pal │ ├── heal_machine.png │ ├── magnet_train_bg.tilemap │ ├── magnet_train_fg.tilemap │ ├── npc_sprites.pal │ ├── shadow.png │ ├── trainer_battle_day.pal │ ├── trainer_battle_nite.pal │ └── trainer_battle_pokeball_tiles.png ├── pack │ ├── pack.pal │ ├── pack.png │ ├── pack_menu.png │ └── pack_menu.tilemap ├── pc │ ├── orange.pal │ ├── pc.png │ └── pc_mail.png ├── pics_gold.asm ├── pics_silver.asm ├── pikachu_minigame │ ├── pikachu_blockmap.bin │ └── pikachu_blockset.bin ├── player │ └── chris_back.png ├── pokedex │ ├── cursor.pal │ ├── cursor_mgb.pal │ ├── pokedex.png │ ├── pokedex_sgb.png │ ├── question_mark.pal │ ├── question_mark.png │ ├── question_mark_mgb.pal │ ├── slowpoke.pal │ ├── slowpoke.png │ ├── slowpoke_mgb.pal │ ├── slowpoke_mouth1.png │ └── slowpoke_mouth2.png ├── pokegear │ ├── chrisob.pal │ ├── clock.tilemap - Copy.rle │ ├── clock.tilemap.rle │ ├── clock.tilemap.rle.bak │ ├── dexmap_nest_icon.png │ ├── fast_ship.png │ ├── flymap_label_border.png │ ├── map.tilemap.rle │ ├── nihon.bin │ ├── nihon.bin.bak │ ├── nihon_o.bin │ ├── phone.tilemap.rle │ ├── pokegear.pal │ ├── pokegear.png │ ├── pokegear_sprites.png │ ├── radio.tilemap.rle │ ├── swislands.bin │ ├── swislands.bin.bak │ ├── town_map.png │ └── town_map_palette_map.asm ├── pokemon │ ├── abra │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.9ac09a32 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.12e14d9a │ │ ├── front.png │ │ └── shiny.pal │ ├── aerodactyl │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.e2da1f61 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.3bceb33e │ │ ├── front.png │ │ └── shiny.pal │ ├── aipom │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.597d4dda │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.fba7c862 │ │ ├── front.png │ │ └── shiny.pal │ ├── alakazam │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.75e7e1c6 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.b246e050 │ │ ├── front.png │ │ └── shiny.pal │ ├── ampharos │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.06af98c8 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.4b908a28 │ │ ├── front.png │ │ └── shiny.pal │ ├── angore │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.4f4b7917 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.4e440469 │ │ ├── front.png │ │ └── shiny.pal │ ├── anim_pointers.asm │ ├── anims.asm │ ├── arbok │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.7b18cb93 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.1589a977 │ │ ├── front.png │ │ └── shiny.pal │ ├── arcanine │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f5b35ebf │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5ae8eff3 │ │ ├── front.png │ │ └── shiny.pal │ ├── ariados │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.9fb1c3fc │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5ac5c83c │ │ ├── front.png │ │ └── shiny.pal │ ├── articuno │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c263c2aa │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.650aef29 │ │ ├── front.png │ │ └── shiny.pal │ ├── ballerine │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.16502aac │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.46b7dd06 │ │ ├── front.png │ │ └── shiny.pal │ ├── beedrill │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.dfd6a87b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.1b5d3117 │ │ ├── front.png │ │ └── shiny.pal │ ├── belledam │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ba09608b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0742fe2b │ │ ├── front.png │ │ └── shiny.pal │ ├── bellignan │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.728036c6 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.b0f04991 │ │ ├── front.png │ │ └── shiny.pal │ ├── bellossom │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.10d31691 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.289eaecf │ │ ├── front.png │ │ └── shiny.pal │ ├── bellsprout │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.9dacbda8 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.44df413d │ │ ├── front.png │ │ └── shiny.pal │ ├── bipulla │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a862192a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f1f4687d │ │ ├── front.png │ │ └── shiny.pal │ ├── bitmask_pointers.asm │ ├── bitmasks.asm │ ├── blastoise │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b90e8d5a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.3899aed0 │ │ ├── front.png │ │ └── shiny.pal │ ├── blissey │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ad953eb5 │ │ ├── back.2bpp.lz.b7787e72 │ │ ├── back.2bpp.lz.d2763673 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.04f2353a │ │ ├── front.animated.2bpp.lz.7293eddc │ │ ├── front.animated.2bpp.lz.91da7c3b │ │ ├── front.png │ │ └── shiny.pal │ ├── blossomite │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.d25a5edb │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.fe0b9df4 │ │ ├── front.png │ │ └── shiny.pal │ ├── blossomole │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c4783e65 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.147649f2 │ │ ├── front.png │ │ └── shiny.pal │ ├── bruinus │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.83be0292 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.65adc1e1 │ │ ├── front.png │ │ └── shiny.pal │ ├── bulbasaur │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.84f8d1c4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.04627405 │ │ ├── front.png │ │ └── shiny.pal │ ├── burgela │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c19b7f3b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.07c594c0 │ │ ├── front.png │ │ └── shiny.pal │ ├── butterfree │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a8543d86 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.33ba7e24 │ │ ├── front.png │ │ └── shiny.pal │ ├── caterpie │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.57e32015 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.ec4f7cb8 │ │ ├── front.png │ │ └── shiny.pal │ ├── chansey │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.14d90ba1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.158fc381 │ │ ├── front.png │ │ └── shiny.pal │ ├── charizard │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f04ac62c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0068f820 │ │ ├── front.png │ │ └── shiny.pal │ ├── charmander │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.bcb371c6 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.704bfc17 │ │ ├── front.png │ │ └── shiny.pal │ ├── charmeleon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.cf73268f │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0e629968 │ │ ├── front.png │ │ └── shiny.pal │ ├── chikorita │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.27a21938 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.18de5fe9 │ │ ├── front.png │ │ └── shiny.pal │ ├── clefable │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.d57ec142 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.59d160ad │ │ ├── front.png │ │ └── shiny.pal │ ├── clefairy │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f8aff3dd │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0918b60d │ │ ├── front.png │ │ └── shiny.pal │ ├── cleffa │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ea9b3d08 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.49630c80 │ │ ├── front.png │ │ └── shiny.pal │ ├── cloyster │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5ad194b3 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.fe85709f │ │ ├── front.png │ │ └── shiny.pal │ ├── coinpur │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.dc25c77a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.c1a44906 │ │ ├── front.png │ │ └── shiny.pal │ ├── corsola │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.2b6c7860 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.2e7905aa │ │ ├── front.png │ │ └── shiny.pal │ ├── crobat │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.30850b2e │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.dc386ff0 │ │ ├── front.png │ │ └── shiny.pal │ ├── cubburn │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.68baeeeb │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0d5dce8d │ │ ├── front.png │ │ └── shiny.pal │ ├── cubone │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.bd849dfb │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0d63a3a4 │ │ ├── front.png │ │ └── shiny.pal │ ├── delibird │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.11463d76 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.a3126c48 │ │ ├── front.png │ │ └── shiny.pal │ ├── dewgong │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.4e1fef76 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.cc53359c │ │ ├── front.png │ │ └── shiny.pal │ ├── diglett │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.31d8cacc │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.52b0361e │ │ ├── front.png │ │ └── shiny.pal │ ├── disturban │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.70df8ca3 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.82d91497 │ │ ├── front.png │ │ └── shiny.pal │ ├── ditto │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b01a9d91 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.344c90fd │ │ ├── front.png │ │ └── shiny.pal │ ├── dodaerie │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b7787e72 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.91da7c3b │ │ ├── front.png │ │ └── shiny.pal │ ├── dodrio │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a5480e88 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.2aaff569 │ │ ├── front.png │ │ └── shiny.pal │ ├── doduo │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.05a57563 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.89c4acbd │ │ ├── front.png │ │ └── shiny.pal │ ├── donmarin │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f95abe99 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.fade72cc │ │ ├── front.png │ │ └── shiny.pal │ ├── donphan │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5067b370 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9e1b7048 │ │ ├── front.png │ │ └── shiny.pal │ ├── dragonair │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.9b6fda5b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.bb9ee373 │ │ ├── front.png │ │ └── shiny.pal │ ├── dragonite │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c408806f │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.b914dfd9 │ │ ├── front.png │ │ └── shiny.pal │ ├── dratini │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.be4d6a2a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.838e4248 │ │ ├── front.png │ │ └── shiny.pal │ ├── drowzee │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.55367f5a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.1f23711a │ │ ├── front.png │ │ └── shiny.pal │ ├── dugtrio │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.e821a89c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5c9e668c │ │ ├── front.png │ │ └── shiny.pal │ ├── eevee │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.bc34ce62 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.04e72b48 │ │ ├── front.png │ │ └── shiny.pal │ ├── egg │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── front.animated.2bpp.lz.7b468eff │ │ ├── front.png │ │ └── shiny.pal │ ├── ekans │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.671d14d9 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.018a1c72 │ │ ├── front.png │ │ └── shiny.pal │ ├── electabuzz │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.e97330fe │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.381e1c6e │ │ ├── front.png │ │ └── shiny.pal │ ├── electrode │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.874e1f1c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.d7943ad8 │ │ ├── front.png │ │ └── shiny.pal │ ├── elekid │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.227a1b23 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.3bbb6b61 │ │ ├── front.png │ │ └── shiny.pal │ ├── entei │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.d1e1986a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.ebaf8024 │ │ ├── front.png │ │ └── shiny.pal │ ├── espeon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0e77f26e │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.069f57ec │ │ ├── front.png │ │ └── shiny.pal │ ├── exeggcute │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.060c38b0 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.578a4722 │ │ ├── front.png │ │ └── shiny.pal │ ├── exeggutor │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.e012643e │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.3915d572 │ │ ├── front.png │ │ └── shiny.pal │ ├── farfetch_d │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.6f28ebc4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.a4ae9393 │ │ ├── front.png │ │ └── shiny.pal │ ├── fearow │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a7a39118 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.393b11d6 │ │ ├── front.png │ │ └── shiny.pal │ ├── flaaffy │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.461855e4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.6a27aac3 │ │ ├── front.png │ │ └── shiny.pal │ ├── flambear │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.500906e1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f42f4c67 │ │ ├── front.png │ │ └── shiny.pal │ ├── flareon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.d58af0e5 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.7b68c716 │ │ ├── front.png │ │ └── shiny.pal │ ├── frame_pointers.asm │ ├── gastly │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.4078fa56 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.84148c1e │ │ ├── front.png │ │ └── shiny.pal │ ├── gengar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5237ee63 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.65ddc6f5 │ │ ├── front.png │ │ └── shiny.pal │ ├── geodude │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.d5aa5e9f │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.d743f2c9 │ │ ├── front.png │ │ └── shiny.pal │ ├── girafarig │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5dd68457 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.76d809c4 │ │ ├── front.png │ │ └── shiny.pal │ ├── gloom │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.9a321f63 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.c6ef04a5 │ │ ├── front.png │ │ └── shiny.pal │ ├── golbat │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.e277e260 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.c35ffe9b │ │ ├── front.png │ │ └── shiny.pal │ ├── goldeen │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.d0e5751e │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.c451a8c4 │ │ ├── front.png │ │ └── shiny.pal │ ├── golduck │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.2d022642 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.09e97414 │ │ ├── front.png │ │ └── shiny.pal │ ├── golem │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ae903dee │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.a16f21c8 │ │ ├── front.png │ │ └── shiny.pal │ ├── graveler │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c7867de7 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.68d07c61 │ │ ├── front.png │ │ └── shiny.pal │ ├── grenmar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f7fa0db9 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.cc9fd2ed │ │ ├── front.png │ │ └── shiny.pal │ ├── grimer │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.833bd626 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.dfe40e91 │ │ ├── front.png │ │ └── shiny.pal │ ├── growlithe │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.7f5831f6 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f7b376fa │ │ ├── front.png │ │ └── shiny.pal │ ├── gyarados │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.fc577f9e │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.1b498e2b │ │ ├── front.png │ │ └── shiny.pal │ ├── haunter │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.8a5dc2c1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.aeed5f7e │ │ ├── front.png │ │ └── shiny.pal │ ├── hitmonchan │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.68e28b98 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.61836c4c │ │ ├── front.png │ │ └── shiny.pal │ ├── hitmonlee │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.374e3caa │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.d174eba1 │ │ ├── front.png │ │ └── shiny.pal │ ├── hitmontop │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ea3f1576 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.1b3e96fc │ │ ├── front.png │ │ └── shiny.pal │ ├── ho_oh │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.1412f260 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.db80b5eb │ │ ├── front.png │ │ └── shiny.pal │ ├── hoothoot │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.7ebb0b29 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.752ab202 │ │ ├── front.png │ │ └── shiny.pal │ ├── hoppip │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5684c023 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.a03efe74 │ │ ├── front.png │ │ └── shiny.pal │ ├── horsea │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.50b6afb9 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.8b84f98e │ │ ├── front.png │ │ └── shiny.pal │ ├── houndoom │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5fa55a47 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.2d450e90 │ │ ├── front.png │ │ └── shiny.pal │ ├── houndour │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ae5f2dc9 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f847f4f6 │ │ ├── front.png │ │ └── shiny.pal │ ├── hypno │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c091ce88 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.638333a3 │ │ ├── front.png │ │ └── shiny.pal │ ├── idle_pointers.asm │ ├── idles.asm │ ├── igglybuff │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c0c17dcb │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.1e00afc3 │ │ ├── front.png │ │ └── shiny.pal │ ├── ivysaur │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.bed1ff58 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.3abed0fa │ │ ├── front.png │ │ └── shiny.pal │ ├── jigglypuff │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.87d5730b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9fd159f4 │ │ ├── front.png │ │ └── shiny.pal │ ├── jolteon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f248aac4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.b2b07d79 │ │ ├── front.png │ │ └── shiny.pal │ ├── jumpluff │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b258a699 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.6d1d8175 │ │ ├── front.png │ │ └── shiny.pal │ ├── jungela │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.24792550 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f72a2758 │ │ ├── front.png │ │ └── shiny.pal │ ├── jynx │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.1eef1c1b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.6aaf67b0 │ │ ├── front.png │ │ └── shiny.pal │ ├── kabuto │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0717a29b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.afe4e2dc │ │ ├── front.png │ │ └── shiny.pal │ ├── kabutops │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.98a1dfc4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.d5e4bfeb │ │ ├── front.png │ │ └── shiny.pal │ ├── kadabra │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.6b26c1a0 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.bc78f9cf │ │ ├── front.png │ │ └── shiny.pal │ ├── kakuna │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.3bffa4c3 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.c7425e72 │ │ ├── front.png │ │ └── shiny.pal │ ├── kangaskhan │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0d7cc337 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.09c81009 │ │ ├── front.png │ │ └── shiny.pal │ ├── kazappelin │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0966cee1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5bcb8114 │ │ ├── front.png │ │ └── shiny.pal │ ├── kingdra │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.e48ecb3f │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.668c0516 │ │ ├── front.png │ │ └── shiny.pal │ ├── kingler │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.88e96d65 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.35305199 │ │ ├── front.png │ │ └── shiny.pal │ ├── koffing │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.8c0a2526 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.00044b3f │ │ ├── front.png │ │ └── shiny.pal │ ├── kolta │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.62cbb330 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5797583e │ │ ├── front.png │ │ └── shiny.pal │ ├── krabby │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.2bc2487b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.39592514 │ │ ├── front.png │ │ └── shiny.pal │ ├── lapras │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.d09351a1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.8290ef8e │ │ ├── front.png │ │ └── shiny.pal │ ├── leafeon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.17ea5fe6 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.16f259a5 │ │ ├── front.png │ │ └── shiny.pal │ ├── ledian │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.48657bbb │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.83e819c3 │ │ ├── front.png │ │ └── shiny.pal │ ├── ledyba │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.d50e8860 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.1700dc27 │ │ ├── front.png │ │ └── shiny.pal │ ├── lickilord │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.05b022c9 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.e0e9187e │ │ ├── front.png │ │ └── shiny.pal │ ├── lickitung │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a127e40b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.328a7c53 │ │ ├── front.png │ │ └── shiny.pal │ ├── lurreel │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.64b2ec05 │ │ ├── back.2bpp.lz.7f1208ed │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.4504768b │ │ ├── front.animated.2bpp.lz.bd292a94 │ │ ├── front.png │ │ └── shiny.pal │ ├── luxwan │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.56b096bc │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.53a425f4 │ │ ├── front.png │ │ └── shiny.pal │ ├── machamp │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.757f4c29 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.2d408542 │ │ ├── front.png │ │ └── shiny.pal │ ├── machoke │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.2634245e │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f38b95a7 │ │ ├── front.png │ │ └── shiny.pal │ ├── machop │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.bc17b50a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0fd8735f │ │ ├── front.png │ │ └── shiny.pal │ ├── magby │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.e50ccadb │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.172d0807 │ │ ├── front.png │ │ └── shiny.pal │ ├── magikarp │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.7f25810a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.031ee449 │ │ ├── front.png │ │ └── shiny.pal │ ├── magmar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.6916c87b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0048e21c │ │ ├── front.png │ │ └── shiny.pal │ ├── magnemite │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.e00bd515 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.e4b07135 │ │ ├── front.png │ │ └── shiny.pal │ ├── magneton │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f7a7089b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.cd3b65a6 │ │ ├── front.png │ │ └── shiny.pal │ ├── mankey │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.42cb1b61 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.48eac19a │ │ ├── front.png │ │ └── shiny.pal │ ├── mantine │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.1320b7f3 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9eb40d04 │ │ ├── front.png │ │ └── shiny.pal │ ├── mareep │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b9bdc89c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f660483d │ │ ├── front.png │ │ └── shiny.pal │ ├── marill │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.87e2be16 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.7f742686 │ │ ├── front.png │ │ └── shiny.pal │ ├── marowak │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.055ba40e │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.ef1553a0 │ │ ├── front.png │ │ └── shiny.pal │ ├── meowth │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.4196bd91 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.144f12f0 │ │ ├── front.png │ │ └── shiny.pal │ ├── metapod │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b580afc8 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5025baa2 │ │ ├── front.png │ │ └── shiny.pal │ ├── mew │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.9947d6eb │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.b6da9713 │ │ ├── front.png │ │ └── shiny.pal │ ├── mewtwo │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a7d2c077 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.45e8b40d │ │ ├── front.png │ │ └── shiny.pal │ ├── miltank │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b7787e72 │ │ ├── back.2bpp.lz.d2763673 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.04f2353a │ │ ├── front.animated.2bpp.lz.91da7c3b │ │ ├── front.png │ │ └── shiny.pal │ ├── mimmeo │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ee922122 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.4dcc41b3 │ │ ├── front.png │ │ └── shiny.pal │ ├── moibelle │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.8d66899b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.dee153d4 │ │ ├── front.png │ │ └── shiny.pal │ ├── molambino │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.2ca27ab3 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.25f91adf │ │ ├── front.png │ │ └── shiny.pal │ ├── moltres │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.356242c8 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.281bc0ec │ │ ├── front.png │ │ └── shiny.pal │ ├── mr__mime │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0fb88006 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f948d1b8 │ │ ├── front.png │ │ └── shiny.pal │ ├── muk │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a1f2f370 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.530363b2 │ │ ├── front.png │ │ └── shiny.pal │ ├── murkrow │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0c347b5b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5d2805e8 │ │ ├── front.png │ │ └── shiny.pal │ ├── natu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c8339fb4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.997efaf6 │ │ ├── front.png │ │ └── shiny.pal │ ├── nidoking │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.93211604 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.bd38fa1e │ │ ├── front.png │ │ └── shiny.pal │ ├── nidoqueen │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f1eb0f0c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0bf11b0a │ │ ├── front.png │ │ └── shiny.pal │ ├── nidoran_f │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.9b6990f1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0a4602e7 │ │ ├── front.png │ │ └── shiny.pal │ ├── nidoran_m │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c9e54720 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.b121beaa │ │ ├── front.png │ │ └── shiny.pal │ ├── nidorina │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a00ecf4a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.51532540 │ │ ├── front.png │ │ └── shiny.pal │ ├── nidorino │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.8504fdd1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.ba11ef23 │ │ ├── front.png │ │ └── shiny.pal │ ├── nihon_frames.asm │ ├── ninetales │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.999b3894 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.eef934ff │ │ ├── front.png │ │ └── shiny.pal │ ├── noctowl │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.9c8ac57f │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.7d6594fe │ │ ├── front.png │ │ └── shiny.pal │ ├── octillery │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.48b6e47d │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.de99954b │ │ ├── front.png │ │ └── shiny.pal │ ├── oddish │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.4f9ec682 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.ea2e0dcd │ │ ├── front.png │ │ └── shiny.pal │ ├── omanyte │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f442a670 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.15b343dc │ │ ├── front.png │ │ └── shiny.pal │ ├── omastar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c75932db │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.b3f6c3dc │ │ ├── front.png │ │ └── shiny.pal │ ├── onix │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.cb580eb9 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.84b7e9ef │ │ ├── front.png │ │ └── shiny.pal │ ├── orfry │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.d28f6303 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.316c5261 │ │ ├── front.png │ │ └── shiny.pal │ ├── other │ │ ├── back.png │ │ └── front.png │ ├── palssio │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ab6bc2a1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.afce8cd0 │ │ ├── front.png │ │ └── shiny.pal │ ├── paras │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b5a4d1e2 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.37a2c2f8 │ │ ├── front.png │ │ └── shiny.pal │ ├── parasect │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ed08ef08 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f78f9f36 │ │ ├── front.png │ │ └── shiny.pal │ ├── paraspor │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.aee69114 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.04ea863c │ │ ├── front.png │ │ └── shiny.pal │ ├── persian │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0e1c1c9a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0e6a2521 │ │ ├── front.png │ │ └── shiny.pal │ ├── phandarin │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.6fe7da21 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f6f37ed2 │ │ ├── front.png │ │ └── shiny.pal │ ├── phanpy │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a5c509b8 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.53b49445 │ │ ├── front.png │ │ └── shiny.pal │ ├── pichu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c5580983 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9c1c3bef │ │ ├── front.png │ │ └── shiny.pal │ ├── pidgeot │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.7d9e44a5 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.c161ad71 │ │ ├── front.png │ │ └── shiny.pal │ ├── pidgeotto │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.8a0dd470 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.8ce78b51 │ │ ├── front.png │ │ └── shiny.pal │ ├── pidgey │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.027129e8 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9acd46ca │ │ ├── front.png │ │ └── shiny.pal │ ├── pikachu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.98998807 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9c100565 │ │ ├── front.png │ │ └── shiny.pal │ ├── pinsir │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.09ac7dd4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.1e3839f2 │ │ ├── front.png │ │ └── shiny.pal │ ├── politoed │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.7873e52f │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.408a9c1a │ │ ├── front.png │ │ └── shiny.pal │ ├── poliwag │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.35b9ee20 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.c7d26488 │ │ ├── front.png │ │ └── shiny.pal │ ├── poliwhirl │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.76564593 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9a36033f │ │ ├── front.png │ │ └── shiny.pal │ ├── poliwrath │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.240e911e │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.fb1157ec │ │ ├── front.png │ │ └── shiny.pal │ ├── ponyta │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.10ddc7ea │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.2c8708d6 │ │ ├── front.png │ │ └── shiny.pal │ ├── porygon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b3d71350 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.70fc1333 │ │ ├── front.png │ │ └── shiny.pal │ ├── porygon2 │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5bba6e40 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.a6410e75 │ │ ├── front.png │ │ └── shiny.pal │ ├── pressio │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a605c82f │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.a797986d │ │ ├── front.png │ │ └── shiny.pal │ ├── primeape │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.690e407d │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.218352ec │ │ ├── front.png │ │ └── shiny.pal │ ├── psyduck │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.d68cddb2 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.e4efd065 │ │ ├── front.png │ │ └── shiny.pal │ ├── pupperon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.2b6c7860 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.2e7905aa │ │ ├── front.png │ │ └── shiny.pal │ ├── quagsire │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.64b2ec05 │ │ ├── back.2bpp.lz.7f1208ed │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.4504768b │ │ ├── front.animated.2bpp.lz.bd292a94 │ │ ├── front.png │ │ └── shiny.pal │ ├── qwilfish │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.53f6e34e │ │ ├── back.2bpp.lz.b2bb83c6 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5f9648c7 │ │ ├── front.animated.2bpp.lz.9e79c033 │ │ ├── front.png │ │ └── shiny.pal │ ├── raichu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.fa4c7423 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.25f943cb │ │ ├── front.png │ │ └── shiny.pal │ ├── raikou │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.657ddfaf │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.464b6fd7 │ │ ├── front.png │ │ └── shiny.pal │ ├── rapidash │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.fdd1946c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.d5ac5a96 │ │ ├── front.png │ │ └── shiny.pal │ ├── raticate │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b2a77d02 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.ef1a4689 │ │ ├── front.png │ │ └── shiny.pal │ ├── rattata │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.86979cd5 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5bdaea2b │ │ ├── front.png │ │ └── shiny.pal │ ├── remoraid │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.8a6e4f29 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.4eaf1230 │ │ ├── front.png │ │ └── shiny.pal │ ├── rhydon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.4a3ea4af │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.7257fc4f │ │ ├── front.png │ │ └── shiny.pal │ ├── rhyhorn │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b9a8e755 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.bdfdf7dc │ │ ├── front.png │ │ └── shiny.pal │ ├── sandshrew │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.7655193f │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.758def3d │ │ ├── front.png │ │ └── shiny.pal │ ├── sandslash │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.2999f4c6 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.d6498722 │ │ ├── front.png │ │ └── shiny.pal │ ├── scizor │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.85149f27 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.afd0131a │ │ ├── front.png │ │ └── shiny.pal │ ├── scyther │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.1d7f8a87 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.86d1a281 │ │ ├── front.png │ │ └── shiny.pal │ ├── seadra │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.354a02e4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.efa9c88c │ │ ├── front.png │ │ └── shiny.pal │ ├── seaking │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.3e699249 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.fb4eb288 │ │ ├── front.png │ │ └── shiny.pal │ ├── seel │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.518a4d40 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.2dc48023 │ │ ├── front.png │ │ └── shiny.pal │ ├── shellder │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.61e27953 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.df57d475 │ │ ├── front.png │ │ └── shiny.pal │ ├── skarmory │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f5e2e2e4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.7de4675e │ │ ├── front.png │ │ └── shiny.pal │ ├── skiploom │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.54e87a0c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.6436d556 │ │ ├── front.png │ │ └── shiny.pal │ ├── slowbro │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.3676b1f1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.257e2e84 │ │ ├── front.png │ │ └── shiny.pal │ ├── slowking │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a90de69e │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.4c2f7140 │ │ ├── front.png │ │ └── shiny.pal │ ├── slowpoke │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f2d1bb5c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.42347014 │ │ ├── front.png │ │ └── shiny.pal │ ├── smeargle │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.2de2de8c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.82ec0f51 │ │ ├── front.png │ │ └── shiny.pal │ ├── smoochum │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.af01f906 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5977720b │ │ ├── front.png │ │ └── shiny.pal │ ├── smujj │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.2b8e5f48 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.761b9f80 │ │ ├── front.png │ │ └── shiny.pal │ ├── sneasel │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5298828d │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.8f7db3e9 │ │ ├── front.png │ │ └── shiny.pal │ ├── snorlax │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.90570272 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.8253357b │ │ ├── front.png │ │ └── shiny.pal │ ├── snubbull │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.26eaaa5d │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.a1b4eb88 │ │ ├── front.png │ │ └── shiny.pal │ ├── spearow │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b8e760aa │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.59d61986 │ │ ├── front.png │ │ └── shiny.pal │ ├── spinarak │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.14002836 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.31ab6868 │ │ ├── front.png │ │ └── shiny.pal │ ├── squirtle │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.76295ae8 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9b6f9ec9 │ │ ├── front.png │ │ └── shiny.pal │ ├── starmie │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a8923741 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.522b6699 │ │ ├── front.png │ │ └── shiny.pal │ ├── staryu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.79ea9d00 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.22f1d06b │ │ ├── front.png │ │ └── shiny.pal │ ├── steelix │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f3c03e61 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.42f3f8d1 │ │ ├── front.png │ │ └── shiny.pal │ ├── straigar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.8e9c7c1a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.1bfac161 │ │ ├── front.png │ │ └── shiny.pal │ ├── stromen │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.1ebbfabf │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.228147a5 │ │ ├── front.png │ │ └── shiny.pal │ ├── suicune │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5c49d112 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.64698c0a │ │ ├── front.png │ │ └── shiny.pal │ ├── sunflora │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.9d0684f0 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.258c3e67 │ │ ├── front.png │ │ └── shiny.pal │ ├── swislands_frames.asm │ ├── tangela │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.435194a6 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.7cb3fed8 │ │ ├── front.png │ │ └── shiny.pal │ ├── tauros │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f487c586 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.982dd0db │ │ ├── front.png │ │ └── shiny.pal │ ├── tentacool │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ae7b2102 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.7a86457c │ │ ├── front.png │ │ └── shiny.pal │ ├── tentacruel │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0e344f19 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f13e5904 │ │ ├── front.png │ │ └── shiny.pal │ ├── togepi │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0e22cc02 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.0cf7ba07 │ │ ├── front.png │ │ └── shiny.pal │ ├── tricules │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b2bb83c6 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9e79c033 │ │ ├── front.png │ │ └── shiny.pal │ ├── tyker │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ea061e91 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.901aa690 │ │ ├── front.png │ │ └── shiny.pal │ ├── tyrogue │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5d84cef1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.a3790421 │ │ ├── front.png │ │ └── shiny.pal │ ├── umbreon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.55e50b8c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.b484be57 │ │ ├── front.png │ │ └── shiny.pal │ ├── unown │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── bitmask.asm │ │ ├── frames.asm │ │ ├── normal.pal │ │ └── shiny.pal │ ├── unown_a │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b8389572 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.47e16756 │ │ └── front.png │ ├── unown_anim_pointers.asm │ ├── unown_anims.asm │ ├── unown_b │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.72a0840f │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5742d494 │ │ └── front.png │ ├── unown_bitmask_pointers.asm │ ├── unown_bitmasks.asm │ ├── unown_c │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f92b665a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5fef639b │ │ └── front.png │ ├── unown_d │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c8213d32 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.7810a57f │ │ └── front.png │ ├── unown_e │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.777a8ecd │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.83f43ff7 │ │ └── front.png │ ├── unown_f │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.3fe1c85a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.ec888954 │ │ └── front.png │ ├── unown_frame_pointers.asm │ ├── unown_frames.asm │ ├── unown_g │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.91650439 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.c0b74162 │ │ └── front.png │ ├── unown_h │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.78421e5b │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9a6afeb9 │ │ └── front.png │ ├── unown_i │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.7feb4b30 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f5e7f816 │ │ └── front.png │ ├── unown_idle_pointers.asm │ ├── unown_idles.asm │ ├── unown_j │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.b0f3bec2 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.d8bf9223 │ │ └── front.png │ ├── unown_k │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.745fda48 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.fb25b385 │ │ └── front.png │ ├── unown_l │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.e38e0d57 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.26195a59 │ │ └── front.png │ ├── unown_m │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.38d93bc8 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.2659315e │ │ └── front.png │ ├── unown_n │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.c8b7d3a4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.96ce7c62 │ │ └── front.png │ ├── unown_o │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.89ba693c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.a9151b66 │ │ └── front.png │ ├── unown_p │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.09c618c4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.83a096fc │ │ └── front.png │ ├── unown_q │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.e32430b4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.44dad60c │ │ └── front.png │ ├── unown_r │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5df8287c │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.8e67e3fc │ │ └── front.png │ ├── unown_s │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.abd4ad58 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f3db4e89 │ │ └── front.png │ ├── unown_t │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.87d48ca0 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.8bdc40ae │ │ └── front.png │ ├── unown_u │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.40b63dfb │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.2690db54 │ │ └── front.png │ ├── unown_v │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5b1a6acc │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.d196c60e │ │ └── front.png │ ├── unown_w │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a55282bf │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5b45fa3d │ │ └── front.png │ ├── unown_x │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0001a198 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.3362c680 │ │ └── front.png │ ├── unown_y │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.292d9ff2 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.8cd89db4 │ │ └── front.png │ ├── unown_z │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a41240a1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.2d4170a0 │ │ └── front.png │ ├── vaporeon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.aafe2ea4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.6e1ee993 │ │ ├── front.png │ │ └── shiny.pal │ ├── venomoth │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.ba3cccb7 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.6c0096ec │ │ ├── front.png │ │ └── shiny.pal │ ├── venonat │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.63b1017a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.02a36f08 │ │ ├── front.png │ │ └── shiny.pal │ ├── venusaur │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.1d5b9ebe │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.48d131f4 │ │ ├── front.png │ │ └── shiny.pal │ ├── victreebel │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a80b1dc4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.d5d535c1 │ │ ├── front.png │ │ └── shiny.pal │ ├── vileplume │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.9f944092 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.db2287e6 │ │ ├── front.png │ │ └── shiny.pal │ ├── voltorb │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f19cefe9 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.64051f97 │ │ ├── front.png │ │ └── shiny.pal │ ├── vulpiii │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.8bdebfce │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.5f73baa2 │ │ ├── front.png │ │ └── shiny.pal │ ├── vulpix │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.0c7852c8 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.df94d884 │ │ ├── front.png │ │ └── shiny.pal │ ├── warfurs │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.4b2ac395 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.83859c57 │ │ ├── front.png │ │ └── shiny.pal │ ├── wartortle │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f2338cb4 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f50d25f5 │ │ ├── front.png │ │ └── shiny.pal │ ├── wearlycan │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.100020c1 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.418c0962 │ │ ├── front.png │ │ └── shiny.pal │ ├── weedle │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f26ac339 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.9e1dedbd │ │ ├── front.png │ │ └── shiny.pal │ ├── weepinbell │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.f84a5fe6 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.7b06c092 │ │ ├── front.png │ │ └── shiny.pal │ ├── weezing │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.5ac5b672 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.75928bd0 │ │ ├── front.png │ │ └── shiny.pal │ ├── wigglytuff │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.fee674ac │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.49311d0b │ │ ├── front.png │ │ └── shiny.pal │ ├── wobbuffet │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a862192a │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f1f4687d │ │ ├── front.png │ │ └── shiny.pal │ ├── xatu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.4de765ff │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.4f452e43 │ │ ├── front.png │ │ └── shiny.pal │ ├── zapdos │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.a44c7524 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.05cb214a │ │ ├── front.png │ │ └── shiny.pal │ └── zubat │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.2bpp.lz.aa77eb62 │ │ ├── back.png │ │ ├── front.animated.2bpp.lz.f12e6581 │ │ ├── front.png │ │ └── shiny.pal ├── printer │ ├── bold_a.png │ ├── bold_b.png │ ├── hp.png │ └── lv.png ├── sgb │ ├── blk_packets.asm │ ├── gold_border - Copy.png │ ├── gold_border.bin │ ├── gold_border.bin.bak │ ├── gold_border.pal │ ├── gold_border.png │ ├── pal_packets.asm │ ├── predef.pal │ ├── predef_cgb.pal │ ├── silver_border.bin │ ├── silver_border.pal │ └── silver_border.png ├── slots │ ├── slots.tilemap │ ├── slots_1.png │ ├── slots_2.png │ ├── slots_3.png │ ├── slots_gold.pal │ └── slots_silver.pal ├── sprites.asm ├── sprites │ ├── beauty.png │ ├── bellignan.png │ ├── big_lapras.png │ ├── big_onix.png │ ├── big_snorlax.png │ ├── biker.png │ ├── bill.png │ ├── bird.png │ ├── black_belt.png │ ├── blaine.png │ ├── blue.png │ ├── boulder.png │ ├── brock.png │ ├── bruno.png │ ├── bug_catcher.png │ ├── bugsy.png │ ├── cal.png │ ├── captain.png │ ├── chris.png │ ├── chris_bike.png │ ├── chuck.png │ ├── clair.png │ ├── clerk.png │ ├── cooltrainer_f.png │ ├── cooltrainer_m.png │ ├── daisy.png │ ├── dragon.png │ ├── elder.png │ ├── entei.png │ ├── erika.png │ ├── fairy.png │ ├── falkner.png │ ├── famicom.png │ ├── fisher.png │ ├── fishing_guru.png │ ├── fruit_tree.png │ ├── gameboy_kid.png │ ├── gentleman.png │ ├── gold_trophy.png │ ├── gramps.png │ ├── granny.png │ ├── gym_guy.png │ ├── janine.png │ ├── jasmine.png │ ├── karen.png │ ├── kimono_girl.png │ ├── koga.png │ ├── kris.png │ ├── kris_bike.png │ ├── kurt.png │ ├── kurt_outside.png │ ├── lance.png │ ├── lass.png │ ├── link_receptionist.png │ ├── minelr.png │ ├── mineud.png │ ├── misty.png │ ├── mom.png │ ├── monster.png │ ├── morty.png │ ├── n64.png │ ├── nurse.png │ ├── oak.png │ ├── oak2.png │ ├── officer.png │ ├── old_link_receptionist.png │ ├── paper.png │ ├── pharmacist.png │ ├── placeholder.png │ ├── poke_ball.png │ ├── pokedex.png │ ├── pokefan_f.png │ ├── pokefan_m.png │ ├── pryce.png │ ├── raikou.png │ ├── receptionist.png │ ├── red.png │ ├── reds_mom.png │ ├── rivals_mom.png │ ├── rock.png │ ├── rocker.png │ ├── rocket.png │ ├── rocket_girl.png │ ├── sabrina.png │ ├── sage.png │ ├── sailor.png │ ├── scientist.png │ ├── silver.png │ ├── silver_trophy.png │ ├── slowpoke.png │ ├── snes.png │ ├── standing_youngster.png │ ├── suicune.png │ ├── super_nerd.png │ ├── surf.png │ ├── surfing_pikachu.png │ ├── surge.png │ ├── swimmer_girl.png │ ├── swimmer_guy.png │ ├── teacher.png │ ├── twin.png │ ├── unused_guy.png │ ├── virtual_boy.png │ ├── whitney.png │ ├── will.png │ └── youngster.png ├── stats │ ├── pages.pal │ ├── pages_mgb.pal │ ├── party_menu_ob.pal │ ├── party_menu_ob_mgb.pal │ ├── stats.pal │ ├── stats_mgb.pal │ └── stats_tiles.png ├── tileset_palette_maps.asm ├── tilesets.asm ├── tilesets │ ├── bg_tiles.pal │ ├── birdon.png │ ├── birdon_palette_map.asm │ ├── blue_forest.png │ ├── blue_forest_palette_map.asm │ ├── cave.png │ ├── cave_palette_map.asm │ ├── champions_room.png │ ├── champions_room_palette_map.asm │ ├── dark_cave.png │ ├── dark_cave_palette_map.asm │ ├── elite_four_room.png │ ├── elite_four_room_palette_map.asm │ ├── facility.png │ ├── facility_palette_map.asm │ ├── flower │ │ ├── cgb_1.png │ │ ├── cgb_2.png │ │ ├── dmg_1.png │ │ └── dmg_2.png │ ├── forest.png │ ├── forest_palette_map.asm │ ├── game_corner.png │ ├── game_corner_palette_map.asm │ ├── gate.png │ ├── gate_palette_map.asm │ ├── honto.png │ ├── honto_palette_map.asm │ ├── house.png │ ├── house_palette_map.asm │ ├── ice_path.png │ ├── ice_path_palette_map.asm │ ├── kanto.png │ ├── kanto_palette_map.asm │ ├── lab.png │ ├── lab_palette_map.asm │ ├── lava │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ ├── lighthouse.png │ ├── lighthouse_palette_map.asm │ ├── mansion.png │ ├── mansion_palette_map.asm │ ├── mart.png │ ├── mart_palette_map.asm │ ├── nihon.png │ ├── nihon_modern.png │ ├── nihon_modern_palette_map.asm │ ├── nihon_old.png │ ├── nihon_old_palette_map.asm │ ├── nihon_palette_map.asm │ ├── office.png │ ├── office_palette_map.asm │ ├── park.png │ ├── park_palette_map.asm │ ├── players_house.png │ ├── players_house_palette_map.asm │ ├── players_room.png │ ├── players_room_palette_map.asm │ ├── pokecenter.png │ ├── pokecenter_palette_map.asm │ ├── port.png │ ├── port_palette_map.asm │ ├── radio_tower.png │ ├── radio_tower_palette_map.asm │ ├── roofs.pal │ ├── roofs │ │ ├── alloy.png │ │ ├── birdon.png │ │ ├── pagota.png │ │ ├── silent.png │ │ └── westport.png │ ├── ruins_of_alph.png │ ├── ruins_of_alph_palette_map.asm │ ├── sanskrit_ruins.png │ ├── sanskrit_ruins_palette_map.asm │ ├── south.png │ ├── south_palette_map.asm │ ├── tower-pillar │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── tower.png │ ├── tower_palette_map.asm │ ├── traditional_house.png │ ├── traditional_house_palette_map.asm │ ├── train_station.png │ ├── train_station_palette_map.asm │ ├── tropical.pal │ ├── tropical.png │ ├── tropical_palette_map.asm │ ├── underground.png │ ├── underground_palette_map.asm │ ├── unused_museum_palette_map.asm │ ├── water │ │ └── water.png │ └── whirlpool │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png ├── title │ ├── blissey_silver.png │ ├── hooh_gold.png │ ├── logo.tilemap │ ├── logo.tilemap.bak │ ├── logo_bottom_gold.png │ ├── logo_bottom_silver.png │ ├── logo_top_gold.png │ ├── logo_top_gold_super.png │ ├── logo_top_silver.png │ ├── notes.png │ ├── title_bg_gold.pal │ ├── title_bg_gold_mgb.pal │ ├── title_bg_silver.pal │ ├── title_fg.pal │ ├── title_fg_mgb.pal │ ├── title_trail_gold.png │ └── title_trail_silver.png ├── trade │ ├── arrow_left.png │ ├── arrow_right.png │ ├── ball.png │ ├── border_tiles.png │ ├── bubble.png │ ├── cable.png │ ├── game_boy.png │ ├── link_cable.png │ └── poof.png ├── trainer_card │ ├── badges.png │ ├── border.png │ ├── card_status.png │ ├── chris_card.png │ ├── leaders.png │ ├── leaders_prered.png │ ├── left_arrow.png │ └── trainer_card.png ├── trainers │ ├── beauty.2bpp.lz.c1c13787 │ ├── beauty.png │ ├── biker.2bpp.lz.cb40f7cd │ ├── biker.png │ ├── bird_keeper.2bpp.lz.1e56954c │ ├── bird_keeper.png │ ├── blackbelt_t.2bpp.lz.4ef2481c │ ├── blackbelt_t.png │ ├── blaine.2bpp.lz.00a3b6f5 │ ├── blaine.png │ ├── blue.2bpp.lz.9fdbab8f │ ├── blue.png │ ├── boarder.2bpp.lz.5d6881a8 │ ├── boarder.png │ ├── brock.2bpp.lz.5bdeb7bf │ ├── brock.png │ ├── bruno.2bpp.lz.22f3c222 │ ├── bruno.png │ ├── bug_catcher.2bpp.lz.43144f97 │ ├── bug_catcher.png │ ├── bugsy.2bpp.lz.c070450d │ ├── bugsy.png │ ├── burglar.2bpp.lz.e063f42e │ ├── burglar.png │ ├── cal.2bpp.lz.aac54a14 │ ├── cal.png │ ├── camper.2bpp.lz.cc2357ea │ ├── camper.png │ ├── champion.2bpp.lz.0175f5ea │ ├── champion.png │ ├── chuck.2bpp.lz.cab13edd │ ├── chuck.png │ ├── clair.2bpp.lz.a1771075 │ ├── clair.png │ ├── cooltrainer_f.2bpp.lz.6fb1e652 │ ├── cooltrainer_f.png │ ├── cooltrainer_m.2bpp.lz.0aa81882 │ ├── cooltrainer_m.png │ ├── engineer.png │ ├── erika.2bpp.lz.58985f01 │ ├── erika.png │ ├── executive_f.2bpp.lz.c8b5dc9c │ ├── executive_f.png │ ├── executive_m.2bpp.lz.211746a6 │ ├── executive_m.png │ ├── falkner.2bpp.lz.6ec6bbaf │ ├── falkner.png │ ├── firebreather.2bpp.lz.a790feb1 │ ├── firebreather.png │ ├── fisher.2bpp.lz.95bfbfd6 │ ├── fisher.png │ ├── fledgling.png │ ├── gentleman.2bpp.lz.d3d78e00 │ ├── gentleman.png │ ├── grunt_f.2bpp.lz.522aecd7 │ ├── grunt_f.png │ ├── grunt_m.2bpp.lz.916e09d2 │ ├── grunt_m.png │ ├── guitarist.2bpp.lz.be5a9b71 │ ├── guitarist.png │ ├── hiker.2bpp.lz.07a4e386 │ ├── hiker.png │ ├── instructor.png │ ├── janine.2bpp.lz.5350f3ce │ ├── janine.png │ ├── jasmine.2bpp.lz.dcd58308 │ ├── jasmine.png │ ├── juggler.2bpp.lz.2d7625ba │ ├── juggler.png │ ├── karen.2bpp.lz.7fc3d941 │ ├── karen.png │ ├── kimono_girl.2bpp.lz.e8833d48 │ ├── kimono_girl.png │ ├── koga.2bpp.lz.7a066020 │ ├── koga.png │ ├── lass.2bpp.lz.e3726508 │ ├── lass.png │ ├── lt_surge.2bpp.lz.4ac586d0 │ ├── lt_surge.png │ ├── medium.2bpp.lz.db642b9e │ ├── medium.png │ ├── misty.2bpp.lz.2ded1a10 │ ├── misty.png │ ├── morty.2bpp.lz.aec5773b │ ├── morty.png │ ├── mysticalman.2bpp.lz.35d01215 │ ├── mysticalman.png │ ├── oak.2bpp.lz.91a27df3 │ ├── oak.png │ ├── officer.2bpp.lz.630b057a │ ├── officer.png │ ├── picnicker.2bpp.lz.6842b86a │ ├── picnicker.png │ ├── pokefan_f.2bpp.lz.9cbd3f20 │ ├── pokefan_f.png │ ├── pokefan_m.2bpp.lz.5bc5a3e1 │ ├── pokefan_m.png │ ├── pokemaniac.2bpp.lz.786c5fce │ ├── pokemaniac.png │ ├── pryce.2bpp.lz.1a98cae8 │ ├── pryce.png │ ├── psychic_t.2bpp.lz.ecd603f4 │ ├── psychic_t.png │ ├── red.2bpp.lz.51104ac6 │ ├── red.png │ ├── rival1.2bpp.lz.e43b32ef │ ├── rival1.png │ ├── rival2.2bpp.lz.562de263 │ ├── rival2.png │ ├── sabrina.2bpp.lz.d09a2b46 │ ├── sabrina.png │ ├── sage.2bpp.lz.2038324b │ ├── sage.png │ ├── sailor.2bpp.lz.0f7f3386 │ ├── sailor.png │ ├── schoolboy.2bpp.lz.6d26b31b │ ├── schoolboy.png │ ├── scientist.2bpp.lz.2ef10474 │ ├── scientist.png │ ├── skier.2bpp.lz.399d4240 │ ├── skier.png │ ├── soldier.png │ ├── sportsman.png │ ├── super_nerd.2bpp.lz.c5362664 │ ├── super_nerd.png │ ├── swimmer_f.2bpp.lz.c60d0ad6 │ ├── swimmer_f.png │ ├── swimmer_m.2bpp.lz.2c1a716e │ ├── swimmer_m.png │ ├── teacher.2bpp.lz.1d131210 │ ├── teacher.png │ ├── twins.2bpp.lz.462fd733 │ ├── twins.png │ ├── whitney.2bpp.lz.dcb46ea6 │ ├── whitney.png │ ├── will.2bpp.lz.842af358 │ ├── will.png │ ├── youngster.2bpp.lz.4bef139d │ └── youngster.png └── unown_puzzle │ ├── aerodactyl.png │ ├── cursor.png │ ├── hooh.png │ ├── kabuto.png │ ├── omanyte.png │ ├── start_cancel.png │ └── tile_borders.png ├── home.asm ├── home ├── array.asm ├── audio.asm ├── battle.asm ├── battle_vars.asm ├── call_regs.asm ├── clear_sprites.asm ├── compare.asm ├── copy.asm ├── copy_name.asm ├── copy_tilemap.asm ├── decompress.asm ├── delay.asm ├── fade.asm ├── farcall.asm ├── flag.asm ├── game_time.asm ├── gfx.asm ├── header.asm ├── hm_moves.asm ├── init.asm ├── item.asm ├── joypad.asm ├── lcd.asm ├── map.asm ├── map_objects.asm ├── math.asm ├── menu.asm ├── movement.asm ├── names.asm ├── palettes.asm ├── pokedex_flags.asm ├── pokemon.asm ├── predef.asm ├── print_bcd.asm ├── print_num.asm ├── print_text.asm ├── printer.asm ├── queue_script.asm ├── random.asm ├── region.asm ├── scrolling_menu.asm ├── serial.asm ├── sine.asm ├── sprite_anims.asm ├── sprite_updates.asm ├── sram.asm ├── stone_queue.asm ├── string.asm ├── text.asm ├── tilemap.asm ├── time.asm ├── time_palettes.asm ├── trainers.asm ├── vblank.asm ├── video.asm ├── warp_connection.asm └── window.asm ├── hram.asm ├── layout.link ├── macros.asm ├── macros ├── code.asm ├── coords.asm ├── data.asm ├── enum.asm ├── gfx.asm ├── legacy.asm ├── predef.asm ├── rst.asm ├── scripts │ ├── audio.asm │ ├── battle_anims.asm │ ├── battle_commands.asm │ ├── events.asm │ ├── gfx_anims.asm │ ├── maps.asm │ ├── movement.asm │ ├── text.asm │ └── trade_anims.asm └── wram.asm ├── main.asm ├── maps ├── AgathasRoom.asm ├── AgathasRoom.blk ├── AlloyCafe.asm ├── AlloyCafe.blk ├── AlloyCity.asm ├── AlloyCity.blk ├── AlloyGoodRodHouse.asm ├── AlloyGym.asm ├── AlloyGym.blk ├── AlloyKobanDifficultSpeechHouse.asm ├── AlloyLighthouse5F.asm ├── AlloyLighthouse5F.blk ├── AlloyLighthouse6F.asm ├── AlloyLighthouse6F.blk ├── AlloyMart.asm ├── AlloyPokecenter1F.asm ├── AlloyRoute107Gate.asm ├── AlloyRoute107Gate2F.asm ├── AlloySailorHoOhHouse.asm ├── AlloyTimsHouse.asm ├── AmamiFishingSpeechHouse.asm ├── AmamiMart.asm ├── AmamiPokecenter1F.asm ├── AmamiPokecenter2FBeta.asm ├── AmamiPort.asm ├── AmamiPort.blk ├── AmamiPortPassage.asm ├── AmamiPortPassage.blk ├── AmamiPublicPool.asm ├── AmamiPublicPool.blk ├── AmamiTatsugoPathGate.asm ├── AmamiTown.asm ├── AmamiTown.blk ├── AmamiTownHouse2.asm ├── AmamiTownSuperRodHouse.asm ├── AmpareCavern1F.asm ├── AmpareCavern1F.blk ├── AmpareCavernB1F.asm ├── AmpareCavernB1F.blk ├── BillsBrothersHouse.asm ├── BillsFamilysHouse.asm ├── BillsFamilysHouse.blk ├── BirdonElderHouse.asm ├── BirdonGym.asm ├── BirdonGym.blk ├── BirdonMart.asm ├── BirdonMilkBar.asm ├── BirdonMilkBar.blk ├── BirdonPokecenter1F.asm ├── BirdonTown.asm ├── BirdonTown.blk ├── BlueForest.asm ├── BlueForest.blk ├── BlueForestDragonSpeechHouse.asm ├── BlueForestEmysHouse.asm ├── BlueForestGym.asm ├── BlueForestGym.blk ├── BlueForestHouse1.asm ├── BlueForestMart.asm ├── BlueForestPokecenter1F.asm ├── BlueForestRoute111Gate.asm ├── BluesHouse.asm ├── Boardwalk.asm ├── Boardwalk.blk ├── BoardwalkGameCorner.asm ├── BoardwalkGameCorner.blk ├── BoardwalkGate.asm ├── BoardwalkTeknosGate.asm ├── BoulderMine1F.asm ├── BoulderMine1F.blk ├── BoulderMineB1F.asm ├── BoulderMineB1F.blk ├── BoulderMineB2F.asm ├── BoulderMineB2F.blk ├── BoulderMineB3F.asm ├── BoulderMineB3F.blk ├── BoulderMineB4F.asm ├── BoulderMineB4F.blk ├── BoulderMineB4FGiftShop.asm ├── BoulderMineB5F.asm ├── BoulderMineB5F.blk ├── BurnedTower1F.asm ├── BurnedTower1F.blk ├── BurnedTowerB1F.asm ├── BurnedTowerB1F.blk ├── CharredSummit.asm ├── CharredSummit.blk ├── CharredSummitCave.asm ├── CharredSummitCave.blk ├── Colosseum.asm ├── Colosseum.blk ├── CopycatsHouse1F.asm ├── CopycatsHouse1F.blk ├── CopycatsHouse2F.asm ├── CopycatsHouse2F.blk ├── CrownCity.asm ├── CrownCity.blk ├── CrownCityTrainerHouse.asm ├── CrownCityTrainerHouse.blk ├── CrownHouse1.asm ├── CrownHouse2.asm ├── CrownLegendarySpeechHouse.asm ├── CrownMart.asm ├── CrownPath.asm ├── CrownPath.blk ├── CrownPathEntrance.blk ├── CrownPathGate.asm ├── CrownPathGate.blk ├── CrownPokecenter1F.asm ├── DaitoPokecenter1F.asm ├── DaitoRanch.asm ├── DaitoRanch.blk ├── DaitoRanchBarn.asm ├── DaitoRanchBarn.blk ├── DaitoRanchHouse.asm ├── DaitoRanchOrchardHouse.asm ├── DaitoRanchOtherHouse.asm ├── DayCare.asm ├── DayCare.blk ├── DayOfWeekSiblingsHouse.asm ├── DeepwaterPassageB1F.asm ├── DeepwaterPassageB1F.blk ├── DeepwaterPassageB2F.asm ├── DeepwaterPassageB2F.blk ├── DeepwaterPassageEastCavern.asm ├── DeepwaterPassageEastCavern.blk ├── DeepwaterPassageEntrance.asm ├── DeepwaterPassageEntrance.blk ├── DeptStore1F.blk ├── DeptStore2F.blk ├── DeptStore3F.blk ├── DeptStore4F.blk ├── DeptStore5F.blk ├── DeptStore6F.blk ├── DeptStoreElevator.blk ├── DragonsMaw1F.asm ├── DragonsMaw1F.blk ├── EarlsMuseum.asm ├── EarlsMuseum.blk ├── EastWestGate.blk ├── EastWestGate2.blk ├── EndonCave1F.asm ├── EndonCave1F.blk ├── EndonCave2F.asm ├── EndonCave2F.blk ├── EndonCaveRuinsConnection.asm ├── EndonCaveRuinsConnection.blk ├── FastShip1F.asm ├── FastShip1F.blk ├── FastShipB1F.asm ├── FastShipB1F.blk ├── FastShipCabins_NNW_NNE_NE.asm ├── FastShipCabins_NNW_NNE_NE.blk ├── FastShipCabins_SE_SSE_CaptainsCabin.asm ├── FastShipCabins_SE_SSE_CaptainsCabin.blk ├── FastShipCabins_SW_SSW_NW.asm ├── FastShipCabins_SW_SSW_NW.blk ├── FightingDojo.asm ├── FightingDojo.blk ├── FiveFloorTower1F.asm ├── FiveFloorTower1F.blk ├── FiveFloorTower2F.asm ├── FiveFloorTower2F.blk ├── FiveFloorTower3F.asm ├── FiveFloorTower3F.blk ├── FiveFloorTower4F.asm ├── FiveFloorTower4F.blk ├── FiveFloorTower5F.asm ├── FiveFloorTower5F.blk ├── FiveFloorTowerRoof.asm ├── FiveFloorTowerRoof.blk ├── ForkedStraitEast.asm ├── ForkedStraitEast.blk ├── ForkedStraitGate.asm ├── ForkedStraitGate.blk ├── ForkedStraitNorth.asm ├── ForkedStraitNorth.blk ├── ForkedStraitWest.asm ├── ForkedStraitWest.blk ├── FrostpointMart.asm ├── FrostpointOtherHouse.asm ├── FrostpointPokecenter1F.asm ├── FrostpointPokecenter2FBeta.asm ├── FrostpointPryceHouse.asm ├── FrostpointTown.asm ├── FrostpointTown.blk ├── FujiSummit.asm ├── FujiSummit.blk ├── GardenerGeoffDaitoHouse.asm ├── Gate2F.blk ├── GiftShop.blk ├── GreatEastStrait.asm ├── GreatEastStrait.blk ├── HallOfFame.asm ├── HallOfFame.blk ├── House1.blk ├── House2.blk ├── House3.blk ├── HydraulicCave.asm ├── HydraulicCave.blk ├── HydroPlant.asm ├── HydroPlant.blk ├── IcedCavern1F.asm ├── IcedCavern1F.blk ├── IcedCavernB1F.asm ├── IcedCavernB1F.blk ├── IejimaHouse1.asm ├── IejimaHouse2.asm ├── IejimaPokecenter1F.asm ├── IejimaTown.asm ├── IejimaTown.blk ├── IsenLabBack.asm ├── IsenLabBack.blk ├── IsenLabFront.asm ├── IsenLabFront.blk ├── IsenStrait.asm ├── IsenStrait.blk ├── JadeForest.asm ├── JadeForest.blk ├── JadeForestSnorlaxRoom.asm ├── JadeForestSnorlaxRoom.blk ├── JouleCave1F.asm ├── JouleCave1F.blk ├── JouleCaveZapdosRoom.asm ├── JouleCaveZapdosRoom.blk ├── Kanto2Pokecenter1F.asm ├── KantoBattleClub1F.asm ├── KantoBattleClub1F.blk ├── KantoBattleClubB1F.asm ├── KantoBattleClubB1F.blk ├── KantoCafe.asm ├── KantoCafe.blk ├── KantoDeptStore1F.asm ├── KantoDeptStore2F.asm ├── KantoDeptStore3F.asm ├── KantoDeptStore4F.asm ├── KantoDeptStore5F.asm ├── KantoDeptStore6F.asm ├── KantoDeptStoreElevator.asm ├── KantoGameCorner.asm ├── KantoGameCorner.blk ├── KantoGameCornerPrizeRoom.asm ├── KantoGameCornerPrizeRoom.blk ├── KantoGym.asm ├── KantoGym.blk ├── KantoHotel.asm ├── KantoHotel.blk ├── KantoHouse1.asm ├── KantoHouse2.asm ├── KantoHouse3.asm ├── KantoHouse4.asm ├── KantoLaboratory.asm ├── KantoLaboratory.blk ├── KantoMansion1F.asm ├── KantoMansion1F.blk ├── KantoMansion2F.asm ├── KantoMansion2F.blk ├── KantoMansion3F.asm ├── KantoMansion3F.blk ├── KantoMansionRoof.asm ├── KantoMansionRoof.blk ├── KantoMansionRoofHouse.asm ├── KantoMansionRoofHouse.blk ├── KantoMart.asm ├── KantoPokecenter1F.asm ├── KantoPokecenter2FBeta.asm ├── KantoRegion.asm ├── KantoRegion.blk ├── KantoRestaurant.asm ├── KantoRestaurant.blk ├── KeramaStrait.asm ├── KeramaStrait.blk ├── KikaiCaldera1F.asm ├── KikaiCaldera1F.blk ├── KikaiCaldera2F.asm ├── KikaiCaldera2F.blk ├── KikaiCaldera3F.asm ├── KikaiCaldera3F.blk ├── KikaiHouse1.asm ├── KikaiHouse2.asm ├── KikaiMart.asm ├── KikaiPokecenter1F.asm ├── KikaiStrait.asm ├── KikaiStrait.blk ├── KikaiVillage.asm ├── KikaiVillage.blk ├── KikaiVillageHiddenPowerHouse.asm ├── KikaiVillageMagikarpHouse.asm ├── KobanHouse1.asm ├── KobanHouse2.asm ├── KobanIsland.asm ├── KobanIsland.blk ├── KobanMart.asm ├── KobanPokecenter1F.asm ├── KobanPokecenter2FBeta.asm ├── KogasRoom.asm ├── KogasRoom.blk ├── KumeCity.asm ├── KumeCity.blk ├── KumeIslandLegendSpeechHouse.asm ├── KumeMart.asm ├── KumePoint.asm ├── KumePoint.blk ├── KumePokecenter1F.asm ├── KumePokecenter2FBeta.asm ├── KumeShipPartsHouse.asm ├── KumeShipPartsHouse.blk ├── KumeSocialHouse.asm ├── KumeSocialHouse.blk ├── KurtsHouse.asm ├── KurtsHouse.blk ├── LancesRoom.asm ├── LancesRoom.blk ├── LavenderTown.asm ├── LavenderTown.blk ├── MagmaShaft1F.asm ├── MagmaShaft1F.blk ├── MagmaShaftB1F.asm ├── MagmaShaftB1F.blk ├── MagmaShaftB2F.asm ├── MagmaShaftB2F.blk ├── ManiasHouse.asm ├── Mart.blk ├── MeridianPath.asm ├── MeridianPath.blk ├── MeridianPathRyukyuGate.asm ├── MistysRoom.asm ├── MistysRoom.blk ├── MotobuPath.asm ├── MotobuPath.blk ├── MotobuPathIejimaGate.asm ├── MountFujiOutside.asm ├── MountFujiOutside.blk ├── MountFujiPokecenter1F.asm ├── MountFujiPokecenter1F.blk ├── MoveDeletersHouse.asm ├── MrFujisHouse.asm ├── MrFujisHouse.blk ├── MrPokemonsHouse.asm ├── MrPokemonsHouse.blk ├── MtFujiInteriorLower.asm ├── MtFujiInteriorLower.blk ├── MtFujiInteriorUpper.asm ├── MtFujiInteriorUpper.blk ├── NagoCharmanderHouse.asm ├── NagoImposterHouse.asm ├── NagoPokecenter1F.asm ├── NagoPokecenter2FBeta.asm ├── NagoVillage.asm ├── NagoVillage.blk ├── NanjoForest.asm ├── NanjoForest.blk ├── NationalPark.asm ├── NationalPark.blk ├── NationalParkBugContest.asm ├── NorthSouthGate.blk ├── NorthSouthGate2.blk ├── OakLabBackRoom.asm ├── OakLabBackRoom.blk ├── OakLabFrontRoom.asm ├── OakLabFrontRoom.blk ├── OaksLab.asm ├── OaksLab.blk ├── OldFuchsiaGym.asm ├── OldFuchsiaGym.blk ├── OldMahoganyMart1F.asm ├── PagotaCity.asm ├── PagotaCity.blk ├── PagotaGym.asm ├── PagotaGym.blk ├── PagotaMart.asm ├── PagotaNicknameSpeechHouse.asm ├── PagotaPokecenter1F.asm ├── PagotaPokemonAcademy.asm ├── PagotaPokemonAcademy.blk ├── PlayersHouse1F.asm ├── PlayersHouse1F.blk ├── PlayersHouse2F.asm ├── PlayersHouse2F.blk ├── PlayersNeighborsHouse.asm ├── Pokecenter1F.blk ├── Pokecenter2F.asm ├── Pokecenter2F.blk ├── PokemonFanClub.asm ├── PokemonFanClub.blk ├── PortPassage.blk ├── RadioTower1F.asm ├── RadioTower1F.blk ├── RadioTower2F.asm ├── RadioTower2F.blk ├── RadioTower3F.asm ├── RadioTower3F.blk ├── RadioTower4F.asm ├── RadioTower4F.blk ├── RadioTower5F.asm ├── RadioTower5F.blk ├── RadioTower6F.asm ├── RadioTower6F.blk ├── RainbowIsland.asm ├── RainbowIsland.blk ├── RedsHouse1F.asm ├── RedsHouse1F.blk ├── RedsHouse2F.asm ├── RedsHouse2F.blk ├── RivalsHouse.asm ├── RivalsHouse.blk ├── Route101.asm ├── Route101.blk ├── Route101N.asm ├── Route101N.blk ├── Route101NCrownPathEntrance.asm ├── Route101PagotaGate.asm ├── Route101PagotaGate2F.asm ├── Route102.asm ├── Route102.blk ├── Route102GameHouse.asm ├── Route102GameHouse.blk ├── Route102WestGate.asm ├── Route102WestGate2F.asm ├── Route103.asm ├── Route103.blk ├── Route103NationalParkGate.asm ├── Route103NationalParkGate.blk ├── Route103WestportGate.asm ├── Route104.asm ├── Route104.blk ├── Route104GeoffsHouse.asm ├── Route105.asm ├── Route105.blk ├── Route105Route106Gate.asm ├── Route106.asm ├── Route106.blk ├── Route106Pokecenter1F.asm ├── Route107.asm ├── Route107.blk ├── Route108.asm ├── Route108.blk ├── Route109.asm ├── Route109.blk ├── Route109Pokecenter1F.asm ├── Route109Pokecenter2FBeta.asm ├── Route109Route110Gate.asm ├── Route110.asm ├── Route110.blk ├── Route110SandstormHouse.asm ├── Route111.asm ├── Route111.blk ├── Route112.asm ├── Route112.blk ├── Route112RuinsOfAlphGate.asm ├── Route112SanskritRuinsGate.asm ├── Route112StandGate.asm ├── Route113.asm ├── Route113.blk ├── Route113Route114Gate.asm ├── Route114.asm ├── Route114.blk ├── Route115.asm ├── Route115.blk ├── Route115KantoGate.asm ├── Route116.asm ├── Route116.blk ├── Route116BirdonGate.asm ├── Route116NuggetHouse.asm ├── Route117.asm ├── Route117.blk ├── Route118.asm ├── Route118.blk ├── Route118SunpointGate.asm ├── Route119.asm ├── Route119.blk ├── Route119SunpointGate.asm ├── Route120.asm ├── Route120.blk ├── RouteU10U.asm ├── RouteU10U.blk ├── RouteU11U.asm ├── RouteU11U.blk ├── RouteU12U.asm ├── RouteU12U.blk ├── RouteU4U.asm ├── RouteU4U.blk ├── RouteU5U.asm ├── RouteU5U.blk ├── RouteU6U.asm ├── RouteU6U.blk ├── RouteU7U.asm ├── RouteU7U.blk ├── RouteU8U.asm ├── RouteU8U.blk ├── RuinsOfAlphAerodactylChamber.asm ├── RuinsOfAlphHoOhChamber.asm ├── RuinsOfAlphInnerChamber.asm ├── RuinsOfAlphInnerChamber.blk ├── RuinsOfAlphKabutoChamber.asm ├── RuinsOfAlphOmanyteChamber.asm ├── RuinsOfAlphOutside.asm ├── RuinsOfAlphOutside.blk ├── RuinsOfAlphPuzzleChamber.blk ├── RuinsOfAlphResearchCenter.asm ├── RuinsOfAlphResearchCenter.blk ├── RyukyuArboretum.asm ├── RyukyuArboretum.blk ├── RyukyuCity.asm ├── RyukyuCity.blk ├── RyukyuElevator.asm ├── RyukyuElevator.blk ├── RyukyuGym.asm ├── RyukyuGym.blk ├── RyukyuHotel.asm ├── RyukyuHotel.blk ├── RyukyuHotel2F.asm ├── RyukyuHotel3F.asm ├── RyukyuHotel4F.asm ├── RyukyuHotel5F.asm ├── RyukyuHotelFloors.blk ├── RyukyuHotelRooms.asm ├── RyukyuHotelRooms.blk ├── RyukyuMart.asm ├── RyukyuOldCoupleHouse.asm ├── RyukyuPokecenter1F.asm ├── RyukyuPokecenter2FBeta.asm ├── RyukyuRestaurant.asm ├── RyukyuRestaurant.blk ├── RyukyuTheatre.asm ├── RyukyuTheatre.blk ├── RyukyuTradeHouse.asm ├── RyukyuUrasoeParkGate.asm ├── SafariZoneStandGateBeta.asm ├── SanskritGamblerManHouse.asm ├── SanskritMart.asm ├── SanskritPokecenter1F.asm ├── SanskritRocketHouse.asm ├── SanskritRocketHouse.blk ├── SanskritRuinsAerodactylChamber.asm ├── SanskritRuinsHoOhChamber.asm ├── SanskritRuinsInnerChamber.asm ├── SanskritRuinsInnerChamber.blk ├── SanskritRuinsKabutoChamber.asm ├── SanskritRuinsOmanyteChamber.asm ├── SanskritRuinsOutside.asm ├── SanskritRuinsOutside.blk ├── SanskritRuinsPuzzleChamber.blk ├── SanskritRuinsResearchCenter.asm ├── SanskritRuinsResearchCenter.blk ├── SanskritTown.asm ├── SanskritTown.blk ├── SeafoamGym.asm ├── SeafoamGym.blk ├── SeasidePath.asm ├── SeasidePath.blk ├── SeasidePathIsenStraitGate.asm ├── SilentHills.asm ├── SilentHills.blk ├── SilentNorth.asm ├── SilentNorth.blk ├── SilentPokecenter1F.asm ├── SilentPokecenter2FBeta.asm ├── SilentTown.asm ├── SilentTown.blk ├── SilphCo1F.asm ├── SilphCo1F.blk ├── SkateboarderHouse.asm ├── SlowpokeWellB1F.asm ├── SlowpokeWellB1F.blk ├── SlowpokeWellB2F.asm ├── SlowpokeWellB2F.blk ├── StandCity.asm ├── StandCity.blk ├── StandCityNationalParkGate.asm ├── StandCityNationalParkGate.blk ├── StandCityRocketHouse.asm ├── StandCityRocketHouse.blk ├── StandCityRocketHouse2F.asm ├── StandCityRocketHouse2F.blk ├── StandCityZooOffice.asm ├── StandCityZooOffice.blk ├── StandGym.asm ├── StandGym.blk ├── StandMart.asm ├── StandPoke.asm ├── StandPoke.blk ├── StandPokecenter1F.asm ├── StandPokecenter2FBeta.asm ├── SunpointCity.asm ├── SunpointCity.blk ├── SunpointDocks.asm ├── SunpointDocks.blk ├── SunpointDocksCleanseTagHouse.asm ├── SunpointDocksCrownPathEntrance.asm ├── SunpointDocksGate.asm ├── SunpointMagmaShaftSpeechHouse.asm ├── SunpointMart.asm ├── SunpointPokecenter1F.asm ├── TatsugoPath.asm ├── TatsugoPath.blk ├── TeamRocketBaseB1F.asm ├── TeamRocketBaseB1F.blk ├── TeamRocketBaseB2F.asm ├── TeamRocketBaseB2F.blk ├── TeamRocketBaseOffice.asm ├── TeamRocketBaseOffice.blk ├── TeamRocketShipBase.asm ├── TeamRocketShipBase.blk ├── TeknosAquarium1F.asm ├── TeknosAquarium1F.blk ├── TeknosAquarium2F.asm ├── TeknosAquarium2F.blk ├── TeknosCity.asm ├── TeknosCity.blk ├── TeknosFishingHouse.asm ├── TeknosGym.asm ├── TeknosGym.blk ├── TeknosItemfinderHouse.asm ├── TeknosMart.asm ├── TeknosPokecenter1F.asm ├── TeknosPort.asm ├── TeknosPort.blk ├── TeknosPortPassage.asm ├── TeknosTradeHouse.asm ├── TimeCapsule.asm ├── TinTower9F.asm ├── TinTower9F.blk ├── TohjoFalls.asm ├── TohjoFalls.blk ├── TradeCenter.asm ├── TradeCenter.blk ├── TrainerHouse1F.asm ├── TrainerHouse1F.blk ├── TrainerHouseB1F.asm ├── TrainerHouseB1F.blk ├── TropicalIslandJungle.asm ├── TropicalIslandJungle.blk ├── TropicalIslandOutside.asm ├── TropicalIslandOutside.blk ├── UrasoePark.asm ├── UrasoePark.blk ├── UrasoeParkUrasoeTrailGate.asm ├── UrasoeTrail.asm ├── UrasoeTrail.blk ├── ViridianNicknameSpeechHouse.asm ├── WeatheredTrail.asm ├── WeatheredTrail.blk ├── WestportBikeShop.asm ├── WestportBikeShop.blk ├── WestportCity.asm ├── WestportCity.blk ├── WestportDeptStore1F.asm ├── WestportDeptStore2F.asm ├── WestportDeptStore3F.asm ├── WestportDeptStore4F.asm ├── WestportDeptStore5F.asm ├── WestportDeptStore6F.asm ├── WestportDeptStoreB1F.asm ├── WestportDeptStoreB1F.blk ├── WestportDeptStoreElevator.asm ├── WestportGym.asm ├── WestportGym.blk ├── WestportHappinessRater.asm ├── WestportMagnetTrainStation.asm ├── WestportMagnetTrainStation.blk ├── WestportNameRater.asm ├── WestportPPSpeechHouse.asm ├── WestportPokecenter1F.asm ├── WestportPort.asm ├── WestportPort.blk ├── WestportPortPassage.asm ├── WestportUnderground.asm ├── WestportUnderground.blk ├── WestportUndergroundSwitchRoomEntrances.asm ├── WestportUndergroundSwitchRoomEntrances.blk ├── WestportUndergroundWarehouse.asm ├── WestportUndergroundWarehouse.blk ├── WhirlIsland1F.asm ├── WhirlIsland1F.blk ├── WhirlIslandB1F.asm ├── WhirlIslandB1F.blk ├── WhirlIslandB2F.asm ├── WhirlIslandB2F.blk ├── WhirlIslandBlisseyChamber.asm ├── WhirlIslandBlisseyChamber.blk ├── WhirlIslandSE.asm ├── WhirlIslandSE.blk ├── WhirlIslandSW.asm ├── WhirlIslandSW.blk ├── WhirlIslandSuicuneChamber.asm ├── WhirlIslandSuicuneChamber.blk ├── WillsRoom.asm ├── WillsRoom.blk └── unused │ ├── BetaAzaleaTown.blk │ ├── BetaBlackthornCity.blk │ ├── BetaCapsuleHouse.blk │ ├── BetaCaveTestMap.blk │ ├── BetaCherrygroveCity.blk │ ├── BetaCianwoodCity.blk │ ├── BetaCinnabarPokemonLabHallway.blk │ ├── BetaCinnabarPokemonLabRoom1.blk │ ├── BetaCinnabarPokemonLabRoom2.blk │ ├── BetaCinnabarPokemonLabRoom3.blk │ ├── BetaEcruteakCity.blk │ ├── BetaElevator.blk │ ├── BetaFastShipInsideCutOut.blk │ ├── BetaFiveFloorTower1.blk │ ├── BetaFujiSummit.blk │ ├── BetaGoldenrodCity.blk │ ├── BetaHouse.blk │ ├── BetaKantoMansion1F.blk │ ├── BetaKantoMansion2F.blk │ ├── BetaLakeOfRage.blk │ ├── BetaMahoganyTown.blk │ ├── BetaNewBarkTown.blk │ ├── BetaOlivineCity.blk │ ├── BetaPewterMuseumOfScience1F.blk │ ├── BetaPewterMuseumOfScience2F.blk │ ├── BetaPlayersHouse2F.blk │ ├── BetaPokecenter.blk │ ├── BetaRocketHideout1F.blk │ ├── BetaRocketHideoutB1F.blk │ ├── BetaRocketHideoutB2F.blk │ ├── BetaRocketHideoutB3F.blk │ ├── BetaRuinsOfAlphUnsolvedPuzzleRoom.blk │ ├── BetaSilverCaveOutside.blk │ ├── BetaSlowpokeWell1F.blk │ ├── BetaSproutTower2.blk │ ├── BetaSproutTower3.blk │ ├── BetaSproutTower5.blk │ ├── BetaSproutTower6.blk │ ├── BetaSproutTower7.blk │ ├── BetaSproutTower8.blk │ ├── BetaSproutTower9.blk │ ├── BetaSproutTowerCutOut1.blk │ ├── BetaSproutTowerCutOut2.blk │ ├── BetaSproutTowerCutOut3.blk │ ├── BetaUnionCave.blk │ ├── BetaUnknownGym.blk │ └── BetaVioletCity.blk ├── mobile ├── mobile_45.asm └── mobile_46.asm ├── rgbdscheck.asm ├── roms.sha1 ├── sailorhueysbrother.asm ├── sram.asm ├── tools ├── .gitignore ├── Makefile ├── common.h ├── free_space.awk ├── free_space.py ├── gfx.c ├── gfx.py ├── lz │ ├── global.c │ ├── main.c │ ├── merging.c │ ├── mpcomp.c │ ├── nullcomp.c │ ├── options.c │ ├── output.c │ ├── packing.c │ ├── proto.h │ ├── repcomp.c │ ├── spcomp.c │ ├── uncomp.c │ └── util.c ├── mapreader.py ├── png_dimensions.c ├── pokemontools │ ├── __init__.py │ ├── gfx.py │ ├── lz.py │ └── png.py ├── scan_includes.c ├── unnamed.py └── used_space.py ├── vram.asm └── wram.asm /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /data/phone/permanent_numbers.asm: -------------------------------------------------------------------------------- 1 | PermanentNumbers: 2 | db PHONECONTACT_MOM 3 | db PHONECONTACT_OAK2 4 | db -1 ; end 5 | -------------------------------------------------------------------------------- /data/phone/text/unused.asm: -------------------------------------------------------------------------------- 1 | UnusedPhoneText: 2 | text "Good morning." 3 | done 4 | -------------------------------------------------------------------------------- /engine/battle/move_effects/splash.asm: -------------------------------------------------------------------------------- 1 | BattleCommand_Splash: 2 | call AnimateCurrentMove 3 | jp PrintNothingHappened 4 | -------------------------------------------------------------------------------- /engine/math/sine.asm: -------------------------------------------------------------------------------- 1 | _Sine:: 2 | ; a = d * sin(e * pi/32) 3 | ld a, e 4 | calc_sine_wave 5 | -------------------------------------------------------------------------------- /engine/phone/scripts/unused.asm: -------------------------------------------------------------------------------- 1 | UnusedPhoneScript: 2 | writetext UnusedPhoneText 3 | end 4 | -------------------------------------------------------------------------------- /gfx/battle/balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/battle/balls.png -------------------------------------------------------------------------------- /gfx/battle/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/battle/dude.png -------------------------------------------------------------------------------- /gfx/battle/exp_bar.pal: -------------------------------------------------------------------------------- 1 | ; blue 2 | RGB 31, 31, 31 3 | RGB 00, 23, 00 4 | -------------------------------------------------------------------------------- /gfx/battle/expbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/battle/expbar.png -------------------------------------------------------------------------------- /gfx/card_flip/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/card_flip/off.png -------------------------------------------------------------------------------- /gfx/card_flip/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/card_flip/on.png -------------------------------------------------------------------------------- /gfx/credits/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/credits/border.png -------------------------------------------------------------------------------- /gfx/credits/elekid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/credits/elekid.png -------------------------------------------------------------------------------- /gfx/credits/theend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/credits/theend.png -------------------------------------------------------------------------------- /gfx/credits/togepi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/credits/togepi.png -------------------------------------------------------------------------------- /gfx/debug/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/debug/up_arrow.png -------------------------------------------------------------------------------- /gfx/emotes/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/emotes/bolt.png -------------------------------------------------------------------------------- /gfx/emotes/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/emotes/fish.png -------------------------------------------------------------------------------- /gfx/emotes/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/emotes/happy.png -------------------------------------------------------------------------------- /gfx/emotes/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/emotes/heart.png -------------------------------------------------------------------------------- /gfx/emotes/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/emotes/sad.png -------------------------------------------------------------------------------- /gfx/emotes/shock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/emotes/shock.png -------------------------------------------------------------------------------- /gfx/emotes/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/emotes/sleep.png -------------------------------------------------------------------------------- /gfx/evo/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/evo/bubble.png -------------------------------------------------------------------------------- /gfx/evo/egg_hatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/evo/egg_hatch.png -------------------------------------------------------------------------------- /gfx/font/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/font/black.png -------------------------------------------------------------------------------- /gfx/font/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/font/font.png -------------------------------------------------------------------------------- /gfx/font/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/font/space.png -------------------------------------------------------------------------------- /gfx/font/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/font/up_arrow.png -------------------------------------------------------------------------------- /gfx/footprints/252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/footprints/252.png -------------------------------------------------------------------------------- /gfx/footprints/253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/footprints/253.png -------------------------------------------------------------------------------- /gfx/footprints/254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/footprints/254.png -------------------------------------------------------------------------------- /gfx/footprints/255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/footprints/255.png -------------------------------------------------------------------------------- /gfx/footprints/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/footprints/256.png -------------------------------------------------------------------------------- /gfx/footprints/mew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/footprints/mew.png -------------------------------------------------------------------------------- /gfx/footprints/muk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/footprints/muk.png -------------------------------------------------------------------------------- /gfx/frames/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/frames/1.png -------------------------------------------------------------------------------- /gfx/frames/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/frames/2.png -------------------------------------------------------------------------------- /gfx/frames/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/frames/3.png -------------------------------------------------------------------------------- /gfx/frames/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/frames/4.png -------------------------------------------------------------------------------- /gfx/frames/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/frames/5.png -------------------------------------------------------------------------------- /gfx/frames/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/frames/6.png -------------------------------------------------------------------------------- /gfx/frames/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/frames/7.png -------------------------------------------------------------------------------- /gfx/frames/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/frames/8.png -------------------------------------------------------------------------------- /gfx/frames/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/frames/9.png -------------------------------------------------------------------------------- /gfx/icons/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/bat.png -------------------------------------------------------------------------------- /gfx/icons/bigmon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/bigmon.png -------------------------------------------------------------------------------- /gfx/icons/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/bird.png -------------------------------------------------------------------------------- /gfx/icons/blissey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/blissey.png -------------------------------------------------------------------------------- /gfx/icons/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/blob.png -------------------------------------------------------------------------------- /gfx/icons/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/bug.png -------------------------------------------------------------------------------- /gfx/icons/clefairy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/clefairy.png -------------------------------------------------------------------------------- /gfx/icons/diglett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/diglett.png -------------------------------------------------------------------------------- /gfx/icons/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/egg.png -------------------------------------------------------------------------------- /gfx/icons/equine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/equine.png -------------------------------------------------------------------------------- /gfx/icons/fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/fighter.png -------------------------------------------------------------------------------- /gfx/icons/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/fish.png -------------------------------------------------------------------------------- /gfx/icons/fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/fox.png -------------------------------------------------------------------------------- /gfx/icons/geodude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/geodude.png -------------------------------------------------------------------------------- /gfx/icons/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/ghost.png -------------------------------------------------------------------------------- /gfx/icons/gyarados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/gyarados.png -------------------------------------------------------------------------------- /gfx/icons/ho_oh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/ho_oh.png -------------------------------------------------------------------------------- /gfx/icons/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/item.png -------------------------------------------------------------------------------- /gfx/icons/lapras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/lapras.png -------------------------------------------------------------------------------- /gfx/icons/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/mail.png -------------------------------------------------------------------------------- /gfx/icons/mail_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/mail_big.png -------------------------------------------------------------------------------- /gfx/icons/monster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/monster.png -------------------------------------------------------------------------------- /gfx/icons/moth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/moth.png -------------------------------------------------------------------------------- /gfx/icons/oddish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/oddish.png -------------------------------------------------------------------------------- /gfx/icons/pikachu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/pikachu.png -------------------------------------------------------------------------------- /gfx/icons/poliwag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/poliwag.png -------------------------------------------------------------------------------- /gfx/icons/serpent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/serpent.png -------------------------------------------------------------------------------- /gfx/icons/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/shell.png -------------------------------------------------------------------------------- /gfx/icons/slowpoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/slowpoke.png -------------------------------------------------------------------------------- /gfx/icons/snorlax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/snorlax.png -------------------------------------------------------------------------------- /gfx/icons/squirtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/squirtle.png -------------------------------------------------------------------------------- /gfx/icons/staryu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/staryu.png -------------------------------------------------------------------------------- /gfx/icons/unown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/unown.png -------------------------------------------------------------------------------- /gfx/icons/voltorb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/icons/voltorb.png -------------------------------------------------------------------------------- /gfx/intro/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/intro/fire.png -------------------------------------------------------------------------------- /gfx/intro/grass.bin: -------------------------------------------------------------------------------- 1 |   2 |  &'!!!!--..()"#* $+,%/0011 -------------------------------------------------------------------------------- /gfx/intro/grass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/intro/grass1.png -------------------------------------------------------------------------------- /gfx/intro/grass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/intro/grass2.png -------------------------------------------------------------------------------- /gfx/intro/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/intro/space.png -------------------------------------------------------------------------------- /gfx/intro/water.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/intro/water.bin -------------------------------------------------------------------------------- /gfx/intro/water1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/intro/water1.png -------------------------------------------------------------------------------- /gfx/intro/water2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/intro/water2.png -------------------------------------------------------------------------------- /gfx/mail/burgela.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/burgela.png -------------------------------------------------------------------------------- /gfx/mail/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/cloud.png -------------------------------------------------------------------------------- /gfx/mail/ditto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/ditto.png -------------------------------------------------------------------------------- /gfx/mail/dragonite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/dragonite.png -------------------------------------------------------------------------------- /gfx/mail/dratini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/dratini.png -------------------------------------------------------------------------------- /gfx/mail/eevee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/eevee.png -------------------------------------------------------------------------------- /gfx/mail/flower_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/flower_1.png -------------------------------------------------------------------------------- /gfx/mail/flower_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/flower_2.png -------------------------------------------------------------------------------- /gfx/mail/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/grass.png -------------------------------------------------------------------------------- /gfx/mail/lapras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/lapras.png -------------------------------------------------------------------------------- /gfx/mail/mew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/mew.png -------------------------------------------------------------------------------- /gfx/mail/natu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/natu.png -------------------------------------------------------------------------------- /gfx/mail/oddish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/oddish.png -------------------------------------------------------------------------------- /gfx/mail/poliwag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/poliwag.png -------------------------------------------------------------------------------- /gfx/mail/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/mail/wave.png -------------------------------------------------------------------------------- /gfx/naming_screen/naming_screen.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 31, 31, 31 3 | RGB 30, 22, 17 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/overworld/heal_machine.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 21, 21, 21 3 | RGB 15, 20, 20 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/overworld/magnet_train_bg.tilemap: -------------------------------------------------------------------------------- 1 | LM\]LM\]11 11LM\]LM\] -------------------------------------------------------------------------------- /gfx/overworld/trainer_battle_day.pal: -------------------------------------------------------------------------------- 1 | RGB 25, 25, 25 2 | RGB 21, 21, 21 3 | RGB 18, 18, 18 4 | RGB 07, 07, 07 5 | -------------------------------------------------------------------------------- /gfx/overworld/trainer_battle_nite.pal: -------------------------------------------------------------------------------- 1 | RGB 25, 25, 25 2 | RGB 18, 18, 18 3 | RGB 18, 18, 18 4 | RGB 18, 18, 18 5 | -------------------------------------------------------------------------------- /gfx/pack/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/pack/pack.png -------------------------------------------------------------------------------- /gfx/pack/pack_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/pack/pack_menu.png -------------------------------------------------------------------------------- /gfx/pack/pack_menu.tilemap: -------------------------------------------------------------------------------- 1 |  2 |  !"# -------------------------------------------------------------------------------- /gfx/pc/orange.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 23, 23, 23 3 | RGB 17, 17, 17 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/pc/pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/pc/pc.png -------------------------------------------------------------------------------- /gfx/pc/pc_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/pc/pc_mail.png -------------------------------------------------------------------------------- /gfx/pokedex/cursor.pal: -------------------------------------------------------------------------------- 1 | RGB 00, 00, 00 2 | RGB 31, 31, 31 3 | RGB 26, 10, 06 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/pokedex/cursor_mgb.pal: -------------------------------------------------------------------------------- 1 | RGB 04, 05, 04 2 | RGB 22, 23, 19 3 | RGB 14, 15, 12 4 | RGB 04, 05, 04 5 | -------------------------------------------------------------------------------- /gfx/pokedex/question_mark.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 24, 24, 24 3 | RGB 16, 16, 16 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/pokedex/question_mark_mgb.pal: -------------------------------------------------------------------------------- 1 | RGB 22, 23, 19 2 | RGB 14, 15, 12 3 | RGB 08, 09, 07 4 | RGB 04, 05, 04 5 | -------------------------------------------------------------------------------- /gfx/pokedex/slowpoke.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 20, 10 2 | RGB 26, 10, 06 3 | RGB 26, 10, 06 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/pokedex/slowpoke_mgb.pal: -------------------------------------------------------------------------------- 1 | RGB 04, 05, 04 2 | RGB 22, 23, 19 3 | RGB 14, 15, 12 4 | RGB 04, 05, 04 5 | -------------------------------------------------------------------------------- /gfx/pokegear/chrisob.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 31, 31, 31 3 | RGB 21, 27, 31 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/pokegear/nihon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/pokegear/nihon.bin -------------------------------------------------------------------------------- /gfx/pokemon/abra/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 09 3 | frame 1, 10 4 | frame 2, 09 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/abra/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 07 3 | frame 3, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/abra/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/aerodactyl/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/aerodactyl/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/aipom/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 24 2 | setrepeat 2 3 | frame 0, 12 4 | frame 2, 12 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/aipom/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/aipom/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/alakazam/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 4, 15 2 | frame 5, 45 3 | frame 3, 10 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/alakazam/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ampharos/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 4, 10 2 | setrepeat 2 3 | frame 5, 06 4 | frame 6, 06 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/ampharos/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/angore/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/angore/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/arbok/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/arcanine/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 05 2 | frame 2, 25 3 | frame 3, 10 4 | frame 4, 10 5 | frame 7, 25 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/arcanine/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 4 2 | frame 5, 09 3 | frame 6, 09 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/arcanine/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ariados/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/articuno/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ballerine/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/ballerine/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/beedrill/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/belledam/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 1, 20 3 | frame 2, 18 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/belledam/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/belledam/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/bellignan/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 09 3 | frame 3, 09 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/bellignan/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/bellossom/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 6, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/bellossom/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/bellsprout/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/bipulla/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 07 2 | frame 2, 30 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/bipulla/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 0, 30 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/bipulla/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/blastoise/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 06 2 | frame 2, 40 3 | frame 3, 08 4 | frame 1, 04 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/blastoise/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 12 3 | frame 4, 12 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/blastoise/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/blissey/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/blissey/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/blossomite/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/blossomite/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/blossomole/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 12 2 | frame 2, 11 3 | frame 3, 15 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/blossomole/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/blossomole/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/bruinus/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/bruinus/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/bulbasaur/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 5, 05 2 | frame 0, 05 3 | frame 5, 05 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/bulbasaur/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/burgela/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 15 3 | frame 1, 15 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/burgela/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 07 3 | frame 2, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/burgela/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/butterfree/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 1, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/butterfree/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/caterpie/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/caterpie/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/chansey/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/chansey/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/charizard/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/charizard/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/charmander/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/charmander/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/charmeleon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/chikorita/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 5, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/chikorita/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/clefable/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 04 2 | frame 1, 10 3 | frame 2, 10 4 | frame 1, 10 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/clefable/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 07 3 | frame 3, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/clefable/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/clefairy/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/cleffa/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | frame 2, 10 3 | frame 3, 10 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/cleffa/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 1, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/cleffa/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/cloyster/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 1, 09 3 | frame 2, 09 4 | dorepeat 1 5 | frame 3, 09 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/cloyster/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 4, 52 2 | dorepeat 1 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/cloyster/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/coinpur/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 5, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/coinpur/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/corsola/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | frame 2, 22 3 | frame 1, 10 4 | frame 0, 12 5 | frame 3, 18 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/corsola/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 4, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/corsola/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/crobat/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 5 2 | frame 0, 07 3 | frame 1, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/crobat/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/cubburn/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 4, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/cubburn/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/cubone/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 5, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/cubone/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/delibird/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 4 2 | frame 4, 06 3 | frame 5, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/delibird/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dewgong/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 09 2 | frame 2, 09 3 | frame 3, 09 4 | frame 4, 09 5 | frame 5, 14 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/dewgong/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/diglett/anim.asm: -------------------------------------------------------------------------------- 1 | frame 3, 04 2 | setrepeat 2 3 | frame 2, 08 4 | frame 1, 09 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/diglett/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/diglett/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/disturban/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 06 2 | frame 2, 18 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/disturban/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/disturban/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ditto/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 4, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/ditto/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dodaerie/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/dodaerie/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dodrio/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | frame 2, 10 3 | frame 4, 10 4 | frame 1, 09 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/dodrio/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 3, 10 3 | frame 0, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/dodrio/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/doduo/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/donmarin/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 04 2 | frame 1, 10 3 | frame 2, 16 4 | frame 3, 36 5 | frame 2, 12 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/donmarin/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/donmarin/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/donphan/anim.asm: -------------------------------------------------------------------------------- 1 | frame 2, 08 2 | frame 1, 24 3 | frame 3, 10 4 | frame 4, 06 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/donphan/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 5, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/donphan/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dragonair/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dragonite/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dratini/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/dratini/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/drowzee/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dugtrio/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/eevee/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/egg/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 1, 03 2 | frame 0, 03 3 | frame 2, 03 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/egg/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 23, 18 3 | RGB 17, 15, 20 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ekans/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/electabuzz/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 4 2 | frame 0, 04 3 | frame 5, 04 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/electabuzz/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/electrode/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 05 2 | frame 2, 40 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/electrode/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 3, 45 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/electrode/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/elekid/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 5, 09 3 | frame 3, 09 4 | dorepeat 1 5 | frame 3, 20 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/elekid/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/entei/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 04 2 | frame 1, 10 3 | frame 2, 12 4 | frame 3, 30 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/entei/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/entei/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/espeon/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 4, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/espeon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/exeggcute/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/exeggcute/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/exeggutor/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 4 2 | frame 0, 06 3 | frame 1, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/exeggutor/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/farfetch_d/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 06 2 | frame 2, 06 3 | frame 3, 14 4 | frame 2, 06 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/farfetch_d/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 4, 10 2 | frame 5, 07 3 | frame 4, 07 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/farfetch_d/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/fearow/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 4, 05 3 | frame 0, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/fearow/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/flaaffy/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 4, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/flaaffy/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/flambear/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/flambear/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/flareon/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | setrepeat 3 3 | frame 2, 08 4 | frame 3, 08 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/flareon/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/flareon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/gastly/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/gastly/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/gengar/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/geodude/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/geodude/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/girafarig/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 5, 16 2 | frame 3, 16 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/girafarig/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/gloom/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 5, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/gloom/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/golbat/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/golbat/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/goldeen/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 3, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/goldeen/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/golduck/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 7, 15 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/golduck/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/golem/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 08 2 | frame 1, 12 3 | frame 2, 18 4 | frame 1, 12 5 | frame 3, 12 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/golem/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/golem/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/graveler/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 2, 35 2 | setrepeat 2 3 | frame 0, 20 4 | frame 5, 20 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/graveler/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/grenmar/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/grenmar/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/grimer/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 04 2 | frame 2, 12 3 | frame 1, 08 4 | frame 2, 28 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/grimer/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/growlithe/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 2, 08 3 | frame 3, 08 4 | dorepeat 1 5 | frame 2, 16 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/growlithe/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/gyarados/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 1, 11 3 | frame 2, 11 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/gyarados/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/gyarados/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/haunter/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | frame 2, 10 3 | frame 3, 44 4 | frame 2, 10 5 | frame 1, 10 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/haunter/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 4, 58 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/haunter/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/hitmonchan/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/hitmonlee/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 5, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/hitmonlee/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/hitmontop/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 4, 08 3 | frame 0, 08 4 | dorepeat 1 5 | frame 4, 30 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/hitmontop/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ho_oh/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/ho_oh/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/hoothoot/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/hoppip/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 1, 10 3 | frame 2, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/hoppip/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 2, 10 4 | dorepeat 1 5 | frame 2, 20 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/hoppip/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/horsea/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/horsea/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/houndoom/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 12 3 | frame 5, 12 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/houndoom/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/houndour/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 05 2 | frame 2, 05 3 | frame 1, 05 4 | frame 0, 07 5 | frame 3, 07 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/houndour/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/hypno/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 1, 15 3 | frame 2, 15 4 | frame 3, 15 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/hypno/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 08 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/hypno/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/igglybuff/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 04 2 | frame 1, 08 3 | frame 2, 14 4 | frame 1, 06 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/igglybuff/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/igglybuff/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ivysaur/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 1, 08 3 | frame 2, 20 4 | frame 1, 06 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/ivysaur/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/jigglypuff/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 07 3 | frame 1, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/jigglypuff/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/jolteon/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/jolteon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/jumpluff/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 09 2 | frame 2, 09 3 | frame 3, 09 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/jumpluff/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 08 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/jumpluff/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/jungela/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/jungela/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/jynx/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/jynx/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 19, 13 3 | RGB 14, 12, 17 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/kabuto/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 2, 12 3 | frame 1, 16 4 | frame 2, 12 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/kabuto/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/kabutops/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/kabutops/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/kadabra/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 07 3 | frame 4, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/kadabra/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/kakuna/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 12 2 | frame 1, 24 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/kakuna/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 1, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/kakuna/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/kangaskhan/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/kazappelin/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 5 2 | frame 0, 09 3 | frame 5, 09 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/kazappelin/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/kingdra/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 6, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/kingdra/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/kingler/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 4 2 | frame 0, 10 3 | frame 3, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/kingler/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/koffing/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 20 2 | frame 2, 06 3 | frame 3, 05 4 | frame 4, 10 5 | frame 5, 15 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/koffing/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 5, 48 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/koffing/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/kolta/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/kolta/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/krabby/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 7, 06 3 | dorepeat 3 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/krabby/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/lapras/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | frame 2, 07 3 | frame 3, 40 4 | frame 2, 09 5 | frame 1, 10 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/lapras/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 4, 10 2 | frame 5, 30 3 | frame 0, 12 4 | frame 5, 12 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/lapras/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/leafeon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ledian/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/ledian/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ledyba/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 08 2 | setrepeat 2 3 | frame 2, 10 4 | frame 3, 12 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/ledyba/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 3, 07 2 | setrepeat 3 3 | frame 4, 05 4 | frame 3, 05 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/ledyba/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/lickilord/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 5, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/lickilord/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/lickitung/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 16 2 | frame 2, 06 3 | frame 3, 06 4 | frame 0, 06 5 | frame 3, 06 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/lickitung/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/lickitung/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/lurreel/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 2, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/lurreel/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/luxwan/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 05 2 | frame 2, 10 3 | frame 3, 10 4 | frame 4, 10 5 | frame 1, 25 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/luxwan/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 1, 60 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/luxwan/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/machamp/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 5, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/machamp/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/machoke/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 12 2 | frame 2, 40 3 | frame 1, 10 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/machoke/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/machop/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/machop/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/magby/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 09 3 | frame 5, 09 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/magby/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/magikarp/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 12 2 | setrepeat 3 3 | frame 1, 09 4 | frame 2, 07 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/magikarp/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 10 3 | frame 3, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/magikarp/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/magmar/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 16 2 | setrepeat 3 3 | frame 2, 07 4 | frame 3, 07 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/magmar/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 07 3 | frame 4, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/magmar/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/magnemite/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 4, 08 3 | frame 5, 08 4 | frame 6, 08 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/magnemite/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/magneton/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/mankey/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 24 2 | setrepeat 3 3 | frame 0, 08 4 | frame 2, 08 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/mankey/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/mankey/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/mantine/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 6, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/mantine/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/mareep/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 2, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/mareep/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/marill/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 4, 40 2 | setrepeat 2 3 | frame 0, 08 4 | frame 5, 08 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/marill/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/marowak/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 15 3 | frame 5, 15 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/marowak/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/meowth/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 24 2 | setrepeat 2 3 | frame 2, 14 4 | frame 3, 14 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/meowth/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/meowth/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/metapod/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 12 2 | frame 2, 24 3 | frame 1, 12 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/metapod/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | frame 4, 06 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/metapod/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/mew/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 19, 13 3 | RGB 14, 12, 17 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/mewtwo/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 1, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/mewtwo/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 19, 13 3 | RGB 14, 12, 17 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/miltank/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/miltank/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/mimmeo/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 35 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/mimmeo/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 1, 35 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/mimmeo/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/moibelle/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/moibelle/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/molambino/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 04 3 | frame 3, 04 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/molambino/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/moltres/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/mr__mime/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 6, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/mr__mime/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/muk/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 12 2 | frame 2, 12 3 | frame 3, 12 4 | frame 1, 12 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/muk/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 12 3 | frame 4, 12 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/muk/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/murkrow/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 3, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/murkrow/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/natu/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | frame 2, 10 3 | frame 3, 25 4 | frame 2, 10 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/natu/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 4, 35 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/natu/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/nidoking/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 1, 12 3 | frame 2, 36 4 | frame 1, 12 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/nidoking/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/nidoking/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/nidoqueen/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 6, 50 2 | setrepeat 2 3 | frame 0, 07 4 | frame 6, 07 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/nidoqueen/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/nidoran_f/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/nidoran_f/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/nidoran_m/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/nidoran_m/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/nidorina/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 04 3 | frame 4, 04 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/nidorina/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/nidorino/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ninetales/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 5, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/ninetales/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/noctowl/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 5, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/noctowl/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/octillery/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/octillery/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/oddish/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/oddish/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/omanyte/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 08 2 | frame 2, 22 3 | frame 1, 08 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/omanyte/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/omanyte/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/omastar/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | frame 2, 40 3 | frame 1, 06 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/omastar/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 11 3 | frame 3, 11 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/omastar/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/onix/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 7, 10 4 | frame 8, 10 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/onix/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/orfry/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 24 2 | setrepeat 3 3 | frame 0, 04 4 | frame 2, 04 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/orfry/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/orfry/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/palssio/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 1, 35 2 | setrepeat 2 3 | frame 0, 06 4 | frame 3, 06 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/palssio/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/paras/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 10 2 | frame 1, 14 3 | frame 2, 32 4 | frame 1, 08 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/paras/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/paras/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/parasect/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 5, 30 2 | frame 0, 05 3 | frame 4, 20 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/parasect/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/paraspor/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 5, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/paraspor/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/persian/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/persian/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/phandarin/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 20 2 | frame 2, 10 3 | frame 3, 10 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/phandarin/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 12 3 | frame 3, 12 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/phandarin/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/phanpy/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/phanpy/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pichu/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 1, 22 3 | frame 2, 12 4 | frame 4, 08 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/pichu/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 04 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/pichu/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pidgeot/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pidgeotto/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/pidgeotto/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pidgey/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pikachu/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pinsir/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 08 3 | frame 1, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/pinsir/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/politoed/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 4, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/politoed/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/poliwag/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/poliwhirl/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 5, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/poliwhirl/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/poliwrath/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/poliwrath/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ponyta/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 4, 06 2 | frame 0, 06 3 | frame 5, 06 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ponyta/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/porygon/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 3, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/porygon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/porygon2/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 1, 06 3 | frame 2, 08 4 | frame 0, 06 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/porygon2/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 3, 30 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/porygon2/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pressio/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 5 2 | frame 3, 05 3 | frame 2, 05 4 | frame 1, 05 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/pressio/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 4, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/pressio/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/primeape/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/psyduck/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 1, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/psyduck/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pupperon/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | frame 2, 22 3 | frame 1, 10 4 | frame 0, 12 5 | frame 3, 18 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/pupperon/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 4, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/pupperon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/quagsire/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 09 2 | frame 2, 12 3 | frame 3, 09 4 | frame 4, 09 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/quagsire/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 2, 35 2 | frame 1, 08 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/quagsire/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/qwilfish/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 13 3 | frame 1, 13 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/qwilfish/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/raichu/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 4, 06 3 | frame 0, 04 4 | frame 4, 04 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/raichu/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/raikou/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/rapidash/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 4, 06 3 | frame 0, 06 4 | frame 4, 06 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/rapidash/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/raticate/anim.asm: -------------------------------------------------------------------------------- 1 | frame 2, 24 2 | setrepeat 2 3 | frame 0, 04 4 | frame 1, 04 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/raticate/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/rattata/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/rattata/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/remoraid/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 05 2 | frame 2, 10 3 | frame 3, 10 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/remoraid/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 1, 07 3 | frame 4, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/remoraid/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/rhydon/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/rhydon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/rhyhorn/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 05 2 | frame 2, 13 3 | frame 1, 40 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/rhyhorn/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 13 3 | frame 3, 13 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/rhyhorn/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/sandshrew/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 07 3 | frame 5, 07 4 | dorepeat 1 5 | frame 4, 13 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/sandshrew/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/sandslash/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 0, 08 2 | frame 3, 06 3 | frame 0, 04 4 | frame 3, 04 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/sandslash/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/scizor/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/scizor/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/scyther/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 8 2 | frame 0, 04 3 | frame 6, 04 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/scyther/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/seadra/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 1, 10 4 | frame 2, 10 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/seadra/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 1, 10 4 | frame 3, 10 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/seadra/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/seaking/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 12 3 | frame 1, 12 4 | frame 2, 12 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/seaking/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 15 3 | frame 3, 15 4 | frame 4, 15 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/seaking/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 27, 18 3 | RGB 26, 22, 02 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/seel/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 2, 12 2 | setrepeat 2 3 | frame 0, 06 4 | frame 3, 06 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/seel/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/shellder/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 07 3 | frame 1, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/shellder/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 2, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/shellder/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/skarmory/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 1, 09 3 | frame 2, 09 4 | dorepeat 1 5 | frame 1, 08 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/skarmory/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 1, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/skarmory/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/skiploom/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 04 2 | frame 1, 10 3 | frame 2, 14 4 | frame 3, 14 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/skiploom/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/skiploom/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/slowbro/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/slowbro/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/slowking/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 1, 07 2 | frame 2, 50 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/slowking/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/slowpoke/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 05 2 | frame 2, 28 3 | frame 1, 10 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/slowpoke/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 3, 20 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/slowpoke/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/smeargle/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 2, 07 4 | frame 1, 07 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/smeargle/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/smeargle/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/smoochum/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 06 2 | frame 2, 08 3 | frame 3, 24 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/smoochum/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 1, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/smoochum/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 19, 13 3 | RGB 14, 12, 17 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/smujj/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 5, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/smujj/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/sneasel/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 04 2 | frame 2, 30 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/sneasel/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 3, 24 2 | frame 0, 09 3 | frame 4, 08 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/sneasel/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/snorlax/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 3, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/snorlax/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/snubbull/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 4, 12 3 | frame 5, 12 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/snubbull/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/spearow/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 1, 06 3 | frame 5, 06 4 | dorepeat 1 5 | frame 6, 07 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/spearow/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/spinarak/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/spinarak/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/squirtle/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 5, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/squirtle/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/starmie/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 2, 08 2 | frame 3, 08 3 | dorepeat 1 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/starmie/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/staryu/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 04 3 | frame 2, 04 4 | frame 3, 04 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/staryu/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/steelix/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 14 2 | frame 2, 18 3 | frame 3, 28 4 | frame 2, 08 5 | frame 1, 06 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/steelix/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/steelix/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/straigar/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/straigar/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/stromen/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 24 2 | setrepeat 2 3 | frame 0, 09 4 | frame 2, 09 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/stromen/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 3, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/stromen/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/suicune/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 9, 35 2 | setrepeat 2 3 | frame 0, 06 4 | frame 9, 06 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/suicune/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/sunflora/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 12 2 | frame 2, 06 3 | frame 3, 16 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/sunflora/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/sunflora/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/tangela/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 36 2 | frame 0, 24 3 | frame 2, 10 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/tangela/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 2, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/tangela/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/tauros/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/tauros/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/tentacool/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 09 2 | frame 2, 05 3 | frame 4, 10 4 | frame 5, 16 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/tentacool/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/tentacool/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/tentacruel/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 2, 15 3 | frame 1, 23 4 | dorepeat 1 5 | frame 2, 08 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/tentacruel/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 2, 20 2 | setrepeat 7 3 | frame 2, 03 4 | frame 3, 03 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/tentacruel/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/togepi/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 2, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/togepi/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/tricules/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 13 3 | frame 1, 13 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/tricules/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/tyker/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/tyker/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/tyrogue/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 08 2 | setrepeat 4 3 | frame 2, 05 4 | frame 3, 06 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/tyrogue/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/tyrogue/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/umbreon/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 04 3 | frame 4, 04 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/umbreon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 18, 18 3 | RGB 10, 10, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/unown/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 11, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown/normal.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 15, 16 3 | RGB 07, 07, 08 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/unown/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 19, 13 3 | RGB 14, 12, 17 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_a/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 5, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_b/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 03 3 | frame 6, 04 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_c/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_d/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_e/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_f/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_g/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 1, 06 3 | frame 2, 06 4 | frame 0, 06 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_g/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_h/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 5, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_i/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_j/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_k/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_l/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 5, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_m/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_n/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_o/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_p/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | frame 2, 36 3 | frame 1, 06 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_p/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_q/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_r/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_s/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_t/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_u/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 1, 12 3 | frame 2, 14 4 | frame 1, 12 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_u/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_v/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 10 2 | frame 1, 10 3 | frame 2, 10 4 | frame 1, 10 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_v/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_w/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 1, 18 3 | frame 0, 06 4 | frame 2, 12 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_w/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_x/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 3, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_y/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/unown_z/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/vaporeon/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 04 2 | setrepeat 3 3 | frame 1, 10 4 | frame 2, 10 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/vaporeon/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/vaporeon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/venomoth/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 6 2 | frame 0, 06 3 | frame 1, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/venomoth/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 04 3 | frame 2, 04 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/venomoth/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/venonat/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 12 3 | frame 2, 16 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/venonat/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/venusaur/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 1, 35 2 | frame 0, 13 3 | frame 6, 13 4 | frame 7, 13 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/venusaur/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/victreebel/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | frame 2, 25 3 | frame 3, 10 4 | frame 4, 10 5 | frame 5, 10 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/victreebel/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | frame 5, 05 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/victreebel/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/vileplume/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/voltorb/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 1, 04 2 | setrepeat 2 3 | frame 2, 08 4 | frame 0, 08 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/voltorb/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/vulpiii/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 18 2 | frame 2, 13 3 | frame 3, 13 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/vulpiii/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 4, 08 3 | frame 0, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/vulpiii/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/vulpix/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 4, 10 2 | frame 3, 10 3 | frame 4, 10 4 | frame 0, 05 5 | frame 3, 05 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/vulpix/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 15, 16 3 | RGB 17, 02, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/warfurs/anim.asm: -------------------------------------------------------------------------------- 1 | frame 3, 12 2 | frame 1, 12 3 | frame 2, 28 4 | frame 3, 08 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/warfurs/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/warfurs/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/wartortle/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/wartortle/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 20, 20 3 | RGB 05, 16, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/wearlycan/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 04 3 | frame 1, 04 4 | frame 2, 04 5 | dorepeat 1 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/wearlycan/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/weedle/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/weepinbell/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 3, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/weepinbell/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 21, 16 3 | RGB 12, 12, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/weezing/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/wigglytuff/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/wigglytuff/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 25, 29 3 | RGB 30, 22, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/wobbuffet/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 07 2 | frame 2, 30 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/wobbuffet/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 0, 30 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/wobbuffet/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 15, 19 3 | RGB 14, 04, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/xatu/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 17, 18 3 | RGB 18, 13, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/zapdos/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 10 2 | setrepeat 3 3 | frame 2, 10 4 | frame 3, 10 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/zapdos/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 1, 08 2 | frame 2, 50 3 | frame 1, 06 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/zapdos/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 23, 16 3 | RGB 29, 14, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/zubat/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 2, 35 2 | setrepeat 2 3 | frame 0, 12 4 | frame 3, 12 5 | dorepeat 2 6 | endanim 7 | -------------------------------------------------------------------------------- /gfx/pokemon/zubat/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 18, 21 3 | RGB 10, 12, 18 4 | 5 | -------------------------------------------------------------------------------- /gfx/printer/bold_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/printer/bold_a.png -------------------------------------------------------------------------------- /gfx/printer/bold_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/printer/bold_b.png -------------------------------------------------------------------------------- /gfx/printer/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/printer/hp.png -------------------------------------------------------------------------------- /gfx/printer/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/printer/lv.png -------------------------------------------------------------------------------- /gfx/slots/slots_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/slots/slots_1.png -------------------------------------------------------------------------------- /gfx/slots/slots_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/slots/slots_2.png -------------------------------------------------------------------------------- /gfx/slots/slots_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/slots/slots_3.png -------------------------------------------------------------------------------- /gfx/sprites/beauty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/beauty.png -------------------------------------------------------------------------------- /gfx/sprites/biker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/biker.png -------------------------------------------------------------------------------- /gfx/sprites/bill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/bill.png -------------------------------------------------------------------------------- /gfx/sprites/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/bird.png -------------------------------------------------------------------------------- /gfx/sprites/blaine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/blaine.png -------------------------------------------------------------------------------- /gfx/sprites/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/blue.png -------------------------------------------------------------------------------- /gfx/sprites/brock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/brock.png -------------------------------------------------------------------------------- /gfx/sprites/bruno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/bruno.png -------------------------------------------------------------------------------- /gfx/sprites/bugsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/bugsy.png -------------------------------------------------------------------------------- /gfx/sprites/cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/cal.png -------------------------------------------------------------------------------- /gfx/sprites/chris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/chris.png -------------------------------------------------------------------------------- /gfx/sprites/chuck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/chuck.png -------------------------------------------------------------------------------- /gfx/sprites/clair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/clair.png -------------------------------------------------------------------------------- /gfx/sprites/clerk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/clerk.png -------------------------------------------------------------------------------- /gfx/sprites/daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/daisy.png -------------------------------------------------------------------------------- /gfx/sprites/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/dragon.png -------------------------------------------------------------------------------- /gfx/sprites/elder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/elder.png -------------------------------------------------------------------------------- /gfx/sprites/entei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/entei.png -------------------------------------------------------------------------------- /gfx/sprites/erika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/erika.png -------------------------------------------------------------------------------- /gfx/sprites/fairy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/fairy.png -------------------------------------------------------------------------------- /gfx/sprites/fisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/fisher.png -------------------------------------------------------------------------------- /gfx/sprites/gramps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/gramps.png -------------------------------------------------------------------------------- /gfx/sprites/mom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/mom.png -------------------------------------------------------------------------------- /gfx/sprites/n64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/n64.png -------------------------------------------------------------------------------- /gfx/sprites/oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/oak.png -------------------------------------------------------------------------------- /gfx/sprites/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/sprites/red.png -------------------------------------------------------------------------------- /gfx/stats/stats.pal: -------------------------------------------------------------------------------- 1 | ; pink 2 | RGB 31, 31, 31 3 | ; green 4 | RGB 31, 31, 31 5 | ; blue 6 | RGB 31, 31, 31 7 | -------------------------------------------------------------------------------- /gfx/stats/stats_mgb.pal: -------------------------------------------------------------------------------- 1 | ; pink 2 | RGB 22, 23, 19 3 | ; green 4 | RGB 22, 23, 19 5 | ; blue 6 | RGB 22, 23, 19 7 | -------------------------------------------------------------------------------- /gfx/title/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/title/notes.png -------------------------------------------------------------------------------- /gfx/trade/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/trade/ball.png -------------------------------------------------------------------------------- /gfx/trade/cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/trade/cable.png -------------------------------------------------------------------------------- /gfx/trade/poof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvl-3-g/Gold97SGB/42ce818eaf618d38d54683cf99cd2b136d517ece/gfx/trade/poof.png -------------------------------------------------------------------------------- /home/call_regs.asm: -------------------------------------------------------------------------------- 1 | ; Register aliases 2 | 3 | _hl_:: 4 | jp hl 5 | 6 | _de_:: 7 | push de 8 | ret 9 | -------------------------------------------------------------------------------- /maps/AgathasRoom.blk: -------------------------------------------------------------------------------- 1 | "4444-!!!-!!!-!-!**** -------------------------------------------------------------------------------- /maps/AlloyCafe.blk: -------------------------------------------------------------------------------- 1 |  # -------------------------------------------------------------------------------- /maps/AlloyGym.blk: -------------------------------------------------------------------------------- 1 | .-,((-(()+-)))).(.-(#( -------------------------------------------------------------------------------- /maps/AlloyLighthouse5F.blk: -------------------------------------------------------------------------------- 1 | >=<=<=<> ><''''''<>>1'><>'''>>'><1<>'(>>'>'''>''>>'>'''>''>>'>'''>''><>>':'>'>< <<=<=<=< -------------------------------------------------------------------------------- /maps/AlloyLighthouse6F.blk: -------------------------------------------------------------------------------- 1 | >))))))> ><''''''<>>'><'<>'(>>'< 6<''>>'' '''>>'>- >''>>'<<'<<''><>''1'''>< <))))))< -------------------------------------------------------------------------------- /maps/AmamiPortPassage.blk: -------------------------------------------------------------------------------- 1 |  2 | *  ',//- 3 |   -------------------------------------------------------------------------------- /maps/AmamiPublicPool.blk: -------------------------------------------------------------------------------- 1 | %%>44444444?>44444444?>44444444?>44444444?========#%####"%% -------------------------------------------------------------------------------- /maps/BillsFamilysHouse.blk: -------------------------------------------------------------------------------- 1 | +  ** -------------------------------------------------------------------------------- /maps/BirdonGym.blk: -------------------------------------------------------------------------------- 1 | !&, %*$+ %*()"$.'#*-* -------------------------------------------------------------------------------- /maps/BirdonMilkBar.blk: -------------------------------------------------------------------------------- 1 | %% $  -------------------------------------------------------------------------------- /maps/BirdonTown.blk: -------------------------------------------------------------------------------- 1 | //_TUV__///TUV//XYZB/___ ]^_ab_  DEF_/HIJ_/@AAAAB/ -------------------------------------------------------------------------------- /maps/BlueForestGym.blk: -------------------------------------------------------------------------------- 1 | '''''9.;69;69999;659962956:99.65666;999 -------------------------------------------------------------------------------- /maps/BoardwalkGameCorner.blk: -------------------------------------------------------------------------------- 1 |           -------------------------------------------------------------------------------- /maps/BoulderMineB5F.blk: -------------------------------------------------------------------------------- 1 | VUUUUUUUWVtRRRRRRRTST SRTST  ST ST  2 | SwWST  SRTST SRTSwUUUUUtRTSRRRRRRRRT -------------------------------------------------------------------------------- /maps/BurnedTower1F.blk: -------------------------------------------------------------------------------- 1 | !43"4 3 62 6 (5 (4 )4% 2 | 3 643 3 | 54 35 2 4 3): )6 -------------------------------------------------------------------------------- /maps/CharredSummit.blk: -------------------------------------------------------------------------------- 1 | /uuuvvvwww/yyyzzz{{{yyyzzz{{{yy}q~~{{y}|q|s~{}s|~~~|~,5/////////////////////// -------------------------------------------------------------------------------- /maps/Colosseum.blk: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /maps/CopycatsHouse1F.blk: -------------------------------------------------------------------------------- 1 | #   -------------------------------------------------------------------------------- /maps/CopycatsHouse2F.blk: -------------------------------------------------------------------------------- 1 |   %&'( -------------------------------------------------------------------------------- /maps/CrownCityTrainerHouse.blk: -------------------------------------------------------------------------------- 1 | !"#! !"#!" 2 | #! -------------------------------------------------------------------------------- /maps/CrownPathEntrance.blk: -------------------------------------------------------------------------------- 1 | 4;+ <0 %& -------------------------------------------------------------------------------- /maps/CrownPathGate.blk: -------------------------------------------------------------------------------- 1 | ''')*'''''':''''''8'''''':'''''''''''' 0 '''''' ''''''''''''=>''' -------------------------------------------------------------------------------- /maps/DaitoRanchBarn.blk: -------------------------------------------------------------------------------- 1 | %%%% && & !" -------------------------------------------------------------------------------- /maps/DayCare.blk: -------------------------------------------------------------------------------- 1 |      -------------------------------------------------------------------------------- /maps/DeptStore1F.blk: -------------------------------------------------------------------------------- 1 |  2 |   % -------------------------------------------------------------------------------- /maps/DeptStore2F.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/DeptStore3F.blk: -------------------------------------------------------------------------------- 1 |  2 |   -------------------------------------------------------------------------------- /maps/DeptStore4F.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/DeptStore5F.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/DeptStore6F.blk: -------------------------------------------------------------------------------- 1 | !!    -------------------------------------------------------------------------------- /maps/DeptStoreElevator.blk: -------------------------------------------------------------------------------- 1 | &% -------------------------------------------------------------------------------- /maps/EarlsMuseum.blk: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /maps/EastWestGate.blk: -------------------------------------------------------------------------------- 1 |   2 |  3 | -------------------------------------------------------------------------------- /maps/EastWestGate2.blk: -------------------------------------------------------------------------------- 1 |   2 |  3 | -------------------------------------------------------------------------------- /maps/FastShipCabins_NNW_NNE_NE.blk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 9 , 4 | 5 | / , 5 6 | 7 | 8 | 66 5 -------------------------------------------------------------------------------- /maps/FightingDojo.blk: -------------------------------------------------------------------------------- 1 | $ : **** !" -------------------------------------------------------------------------------- /maps/FiveFloorTower1F.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/FiveFloorTower2F.blk: -------------------------------------------------------------------------------- 1 |  2 |  -------------------------------------------------------------------------------- /maps/FiveFloorTower3F.blk: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /maps/FiveFloorTower4F.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/FiveFloorTower5F.blk: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /maps/FiveFloorTowerRoof.blk: -------------------------------------------------------------------------------- 1 | <<<<<<<<<<<<<<<<<<<<<<54446<<<<<32<<<<<32<<<<<32<<<<<3 2<<<<<3///2<<<<<31112<<< -------------------------------------------------------------------------------- /maps/FrostpointTown.blk: -------------------------------------------------------------------------------- 1 | ///yyz{{/////y}~{//AAA}~s~AB// //// //!",-I//!Sk.kMMNSkMM -------------------------------------------------------------------------------- /maps/FujiSummit.blk: -------------------------------------------------------------------------------- 1 | uvvvvw}~~MGG~~AAAAAA'AAA///////////////h////vvvvvvvvvv -------------------------------------------------------------------------------- /maps/Gate2F.blk: -------------------------------------------------------------------------------- 1 | %%& -------------------------------------------------------------------------------- /maps/GiftShop.blk: -------------------------------------------------------------------------------- 1 |  !" -------------------------------------------------------------------------------- /maps/HallOfFame.blk: -------------------------------------------------------------------------------- 1 | +012++456++++<++++++++++++++++++=++ -------------------------------------------------------------------------------- /maps/House1.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/House2.blk: -------------------------------------------------------------------------------- 1 | )** -------------------------------------------------------------------------------- /maps/House3.blk: -------------------------------------------------------------------------------- 1 | -   -------------------------------------------------------------------------------- /maps/HydraulicCave.blk: -------------------------------------------------------------------------------- 1 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -------------------------------------------------------------------------------- /maps/IsenLabBack.blk: -------------------------------------------------------------------------------- 1 | ((   "$! -------------------------------------------------------------------------------- /maps/JadeForestSnorlaxRoom.blk: -------------------------------------------------------------------------------- 1 | " -------------------------------------------------------------------------------- /maps/KantoBattleClub1F.blk: -------------------------------------------------------------------------------- 1 |  2 |  -------------------------------------------------------------------------------- /maps/KantoBattleClubB1F.blk: -------------------------------------------------------------------------------- 1 | #95 644 44 ;69 44 ; -------------------------------------------------------------------------------- /maps/KantoCafe.blk: -------------------------------------------------------------------------------- 1 | ++++   -------------------------------------------------------------------------------- /maps/KantoGameCorner.blk: -------------------------------------------------------------------------------- 1 |            -------------------------------------------------------------------------------- /maps/KantoGameCornerPrizeRoom.blk: -------------------------------------------------------------------------------- 1 | ///  -------------------------------------------------------------------------------- /maps/KantoGym.blk: -------------------------------------------------------------------------------- 1 | ##/// -------------------------------------------------------------------------------- /maps/KantoHotel.blk: -------------------------------------------------------------------------------- 1 |  2 |  %  -------------------------------------------------------------------------------- /maps/KantoLaboratory.blk: -------------------------------------------------------------------------------- 1 | ()(  * ! -------------------------------------------------------------------------------- /maps/KantoMansion1F.blk: -------------------------------------------------------------------------------- 1 |   2 |     -------------------------------------------------------------------------------- /maps/KantoMansion2F.blk: -------------------------------------------------------------------------------- 1 |  2 |     -------------------------------------------------------------------------------- /maps/KantoMansion3F.blk: -------------------------------------------------------------------------------- 1 |  2 |     -------------------------------------------------------------------------------- /maps/KantoMansionRoof.blk: -------------------------------------------------------------------------------- 1 | %&"#$ !$ ! -------------------------------------------------------------------------------- /maps/KantoMansionRoofHouse.blk: -------------------------------------------------------------------------------- 1 | '() -------------------------------------------------------------------------------- /maps/KantoRestaurant.blk: -------------------------------------------------------------------------------- 1 | >>>>> - :$ :-- 5 -------------------------------------------------------------------------------- /maps/KikaiCaldera2F.blk: -------------------------------------------------------------------------------- 1 | _K_PQ@AAABC8MNDY F_bMNH]Y FPQMjQD FaM;ND YF`M;ND FYYbaMND FY_7MNHIIJYYYYYYYYYY -------------------------------------------------------------------------------- /maps/KikaiCaldera3F.blk: -------------------------------------------------------------------------------- 1 | PQ8PQMNMNMNMNMN7MN -------------------------------------------------------------------------------- /maps/KobanIsland.blk: -------------------------------------------------------------------------------- 1 | DEEEEEEEEFH_89:uvvwcg8 A}t~KG<>KG<- KG<CBKG@ACBnoBWJLMSWMN -------------------------------------------------------------------------------- /maps/KogasRoom.blk: -------------------------------------------------------------------------------- 1 | "4444!!!!!!!!**** -------------------------------------------------------------------------------- /maps/KumePoint.blk: -------------------------------------------------------------------------------- 1 | // !kggggg///kg!!!!!;;;;_!!;;_WW!!SW!!!!!!cgggggcccg!!!!!! -------------------------------------------------------------------------------- /maps/KumeShipPartsHouse.blk: -------------------------------------------------------------------------------- 1 | ;: 2 | 3 | 68895<55 -------------------------------------------------------------------------------- /maps/KumeSocialHouse.blk: -------------------------------------------------------------------------------- 1 |    -------------------------------------------------------------------------------- /maps/KurtsHouse.blk: -------------------------------------------------------------------------------- 1 |   25****** -------------------------------------------------------------------------------- /maps/LancesRoom.blk: -------------------------------------------------------------------------------- 1 | 22022% &!&"((1(((1(((1(((1(((1(((1(((1(((1(77177 -------------------------------------------------------------------------------- /maps/LavenderTown.blk: -------------------------------------------------------------------------------- 1 | WW%{{{hi, ! !{yhi(|s|r{{7:~({{{{{{{y{({y{{ T!({{{{{{|}~({{wVw({{{{{{{{{(???;{>???, -------------------------------------------------------------------------------- /maps/MagmaShaft1F.blk: -------------------------------------------------------------------------------- 1 | YYYYYYKKKYYYYYYCGY8YYYPQPQYYYYMNMNYGYYYMNMNCYYYMNMNGYYMNMNCYYYYNMY7GYYYY7YY -------------------------------------------------------------------------------- /maps/Mart.blk: -------------------------------------------------------------------------------- 1 |     2 |  -------------------------------------------------------------------------------- /maps/MistysRoom.blk: -------------------------------------------------------------------------------- 1 | "3!!!3 !!! 3!3 ! **** -------------------------------------------------------------------------------- /maps/MountFujiOutside.blk: -------------------------------------------------------------------------------- 1 | ~~~s~~~~~~~~|p|s|~~~~|~~~~~|s~s|p~~~~~~||~~~|s~|~~~|~~~p|s~||~s|~~~~|~~|~p|s|~~~~~|~~~~|~~ -------------------------------------------------------------------------------- /maps/MountFujiPokecenter1F.blk: -------------------------------------------------------------------------------- 1 | %#&*$" -------------------------------------------------------------------------------- /maps/MrFujisHouse.blk: -------------------------------------------------------------------------------- 1 | 0 1  -------------------------------------------------------------------------------- /maps/MrPokemonsHouse.blk: -------------------------------------------------------------------------------- 1 |  '(  -------------------------------------------------------------------------------- /maps/NorthSouthGate.blk: -------------------------------------------------------------------------------- 1 |     2 |  -------------------------------------------------------------------------------- /maps/NorthSouthGate2.blk: -------------------------------------------------------------------------------- 1 |     2 |  -------------------------------------------------------------------------------- /maps/OakLabBackRoom.blk: -------------------------------------------------------------------------------- 1 | &' 2 |  -------------------------------------------------------------------------------- /maps/OakLabFrontRoom.blk: -------------------------------------------------------------------------------- 1 |   $%$% 2 |  -------------------------------------------------------------------------------- /maps/OaksLab.blk: -------------------------------------------------------------------------------- 1 |   2 |  -------------------------------------------------------------------------------- /maps/OldFuchsiaGym.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/PagotaGym.blk: -------------------------------------------------------------------------------- 1 |   +, 8 <=0$)0>? -------------------------------------------------------------------------------- /maps/PagotaPokemonAcademy.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/PlayersHouse1F.blk: -------------------------------------------------------------------------------- 1 |  2 |    -------------------------------------------------------------------------------- /maps/PlayersHouse2F.blk: -------------------------------------------------------------------------------- 1 | ((  -------------------------------------------------------------------------------- /maps/Pokecenter1F.blk: -------------------------------------------------------------------------------- 1 |       -------------------------------------------------------------------------------- /maps/Pokecenter2F.blk: -------------------------------------------------------------------------------- 1 |  2 | 3 |   -------------------------------------------------------------------------------- /maps/PokemonFanClub.blk: -------------------------------------------------------------------------------- 1 | ))!"# $0 1 -------------------------------------------------------------------------------- /maps/PortPassage.blk: -------------------------------------------------------------------------------- 1 |  2 |  3 |  *   '  * ,//-   %& 4 | ,/- -------------------------------------------------------------------------------- /maps/RadioTower1F.blk: -------------------------------------------------------------------------------- 1 |  ;  -------------------------------------------------------------------------------- /maps/RadioTower2F.blk: -------------------------------------------------------------------------------- 1 |  =324 -------------------------------------------------------------------------------- /maps/RadioTower3F.blk: -------------------------------------------------------------------------------- 1 | ' -------------------------------------------------------------------------------- /maps/RadioTower4F.blk: -------------------------------------------------------------------------------- 1 |  324 -------------------------------------------------------------------------------- /maps/RadioTower5F.blk: -------------------------------------------------------------------------------- 1 |  ??(3)242* -------------------------------------------------------------------------------- /maps/RadioTower6F.blk: -------------------------------------------------------------------------------- 1 |  ??6>>5 ! -------------------------------------------------------------------------------- /maps/RedsHouse1F.blk: -------------------------------------------------------------------------------- 1 |  2 |    -------------------------------------------------------------------------------- /maps/RedsHouse2F.blk: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /maps/RivalsHouse.blk: -------------------------------------------------------------------------------- 1 | )   -------------------------------------------------------------------------------- /maps/Route102GameHouse.blk: -------------------------------------------------------------------------------- 1 |   !!  -------------------------------------------------------------------------------- /maps/Route103NationalParkGate.blk: -------------------------------------------------------------------------------- 1 | ).,(6 6%& -------------------------------------------------------------------------------- /maps/RouteU10U.blk: -------------------------------------------------------------------------------- 1 |  wVww !27~jgCCdkk -------------------------------------------------------------------------------- /maps/RouteU4U.blk: -------------------------------------------------------------------------------- 1 | ////uvvvvv////yzzzzz////yzzzzz///// -------------------------------------------------------------------------------- /maps/RouteU5U.blk: -------------------------------------------------------------------------------- 1 | ===>////yz====================================!!!!======!!!!======////======////======//// -------------------------------------------------------------------------------- /maps/RuinsOfAlphPuzzleChamber.blk: -------------------------------------------------------------------------------- 1 |  ,+ -------------------------------------------------------------------------------- /maps/RuinsOfAlphResearchCenter.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/RyukyuArboretum.blk: -------------------------------------------------------------------------------- 1 | ***'&&*****'&&''''&&''&&''&****'>>&>>&''''>&&&&)&&&>> -------------------------------------------------------------------------------- /maps/RyukyuElevator.blk: -------------------------------------------------------------------------------- 1 | &'- -------------------------------------------------------------------------------- /maps/RyukyuGym.blk: -------------------------------------------------------------------------------- 1 | RRxzyRRRRxzyRRRR||yRRRRxzyRRRRx||RRRRxy|RRRR|z|RRRRxzyRRRRx{yRR -------------------------------------------------------------------------------- /maps/RyukyuHotel.blk: -------------------------------------------------------------------------------- 1 | 110888-74446#.%55522222222 -------------------------------------------------------------------------------- /maps/RyukyuHotelFloors.blk: -------------------------------------------------------------------------------- 1 |  ! ! ! ! -------------------------------------------------------------------------------- /maps/RyukyuRestaurant.blk: -------------------------------------------------------------------------------- 1 |  , ()*( 2 | ( ( 3 | (( (  -------------------------------------------------------------------------------- /maps/RyukyuTheatre.blk: -------------------------------------------------------------------------------- 1 | 322222222100000000 000 -------------------------------------------------------------------------------- /maps/SanskritRocketHouse.blk: -------------------------------------------------------------------------------- 1 | $$!# # " -------------------------------------------------------------------------------- /maps/SanskritRuinsPuzzleChamber.blk: -------------------------------------------------------------------------------- 1 |  ,+ -------------------------------------------------------------------------------- /maps/SanskritRuinsResearchCenter.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/SanskritTown.blk: -------------------------------------------------------------------------------- 1 | ///////// KKKK//KKKde// *hijK/KK*lm*K%%/ /+KKK//AAAAAB// 2 |   -------------------------------------------------------------------------------- /maps/SeafoamGym.blk: -------------------------------------------------------------------------------- 1 |   2 |  3 | )$* # -------------------------------------------------------------------------------- /maps/SilentNorth.blk: -------------------------------------------------------------------------------- 1 | uvvvvvvvvwyzzzzzzzz{yzzzzzzzz{}~~~s~~~~//> 2 | 9:>'BAB//9 3 | 'r/>///999999/// -------------------------------------------------------------------------------- /maps/SilphCo1F.blk: -------------------------------------------------------------------------------- 1 | /3108894:94:74444446;4<;4<5522"222 -------------------------------------------------------------------------------- /maps/SlowpokeWellB1F.blk: -------------------------------------------------------------------------------- 1 | ...................................7......./-.../*-./)-/)-/*- -------------------------------------------------------------------------------- /maps/StandCityNationalParkGate.blk: -------------------------------------------------------------------------------- 1 | -,0  2 |  3 | -------------------------------------------------------------------------------- /maps/StandCityRocketHouse.blk: -------------------------------------------------------------------------------- 1 | !$& % "% -------------------------------------------------------------------------------- /maps/StandCityRocketHouse2F.blk: -------------------------------------------------------------------------------- 1 | ,!$('-)#.+  -------------------------------------------------------------------------------- /maps/StandCityZooOffice.blk: -------------------------------------------------------------------------------- 1 | //  2 | 3 | ''<  -------------------------------------------------------------------------------- /maps/StandPoke.blk: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /maps/TeknosAquarium1F.blk: -------------------------------------------------------------------------------- 1 | !  -------------------------------------------------------------------------------- /maps/TeknosAquarium2F.blk: -------------------------------------------------------------------------------- 1 | !!"! 2 | -------------------------------------------------------------------------------- /maps/TeknosGym.blk: -------------------------------------------------------------------------------- 1 | ,,,,!!,!3,,,, -------------------------------------------------------------------------------- /maps/TinTower9F.blk: -------------------------------------------------------------------------------- 1 |  !!""  $ $ * *$ $**  ***  *$$+++  * ,,,  -------------------------------------------------------------------------------- /maps/TradeCenter.blk: -------------------------------------------------------------------------------- 1 | "!  -------------------------------------------------------------------------------- /maps/TrainerHouse1F.blk: -------------------------------------------------------------------------------- 1 | ))%!"# $&'  -------------------------------------------------------------------------------- /maps/TrainerHouseB1F.blk: -------------------------------------------------------------------------------- 1 | ! 16 3<21="0007"0007"0007>444? -------------------------------------------------------------------------------- /maps/WestportBikeShop.blk: -------------------------------------------------------------------------------- 1 | 2 |    -------------------------------------------------------------------------------- /maps/WestportGym.blk: -------------------------------------------------------------------------------- 1 | !!!!!!! 2 | ! %& -------------------------------------------------------------------------------- /maps/WestportMagnetTrainStation.blk: -------------------------------------------------------------------------------- 1 |  2 |  %  -------------------------------------------------------------------------------- /maps/WhirlIslandBlisseyChamber.blk: -------------------------------------------------------------------------------- 1 | --//..--//--//..--//--//>=--//=-/>32=-/>2'1321'3 1$1 #  -------------------------------------------------------------------------------- /maps/WhirlIslandSE.blk: -------------------------------------------------------------------------------- 1 | 111 1111 2 | $ 3 |  # 4 |  5 | -------------------------------------------------------------------------------- /maps/WhirlIslandSW.blk: -------------------------------------------------------------------------------- 1 |    2 |  %  3 | )&2= $ #   4 | &%  -------------------------------------------------------------------------------- /maps/WhirlIslandSuicuneChamber.blk: -------------------------------------------------------------------------------- 1 |   2 |  3 | ''' 4 |  5 | # 6 |  7 | ? # -------------------------------------------------------------------------------- /maps/WillsRoom.blk: -------------------------------------------------------------------------------- 1 | "44447!!!71!!!117!7111!11**** -------------------------------------------------------------------------------- /maps/unused/BetaCapsuleHouse.blk: -------------------------------------------------------------------------------- 1 | ' -------------------------------------------------------------------------------- /maps/unused/BetaCianwoodCity.blk: -------------------------------------------------------------------------------- 1 | aaaaXaaTyaaX5ETy5Tv455aTvvyfaXYaaXYEaaeaaa -------------------------------------------------------------------------------- /maps/unused/BetaCinnabarPokemonLabHallway.blk: -------------------------------------------------------------------------------- 1 |   2 |   -------------------------------------------------------------------------------- /maps/unused/BetaCinnabarPokemonLabRoom1.blk: -------------------------------------------------------------------------------- 1 |  2 |   -------------------------------------------------------------------------------- /maps/unused/BetaCinnabarPokemonLabRoom2.blk: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /maps/unused/BetaCinnabarPokemonLabRoom3.blk: -------------------------------------------------------------------------------- 1 |    -------------------------------------------------------------------------------- /maps/unused/BetaElevator.blk: -------------------------------------------------------------------------------- 1 | &$$$%$$$$$$$$$$$$$$$$$$ -------------------------------------------------------------------------------- /maps/unused/BetaFastShipInsideCutOut.blk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maps/unused/BetaHouse.blk: -------------------------------------------------------------------------------- 1 | *+,*-.12/0/ -------------------------------------------------------------------------------- /maps/unused/BetaKantoMansion1F.blk: -------------------------------------------------------------------------------- 1 | ?',9..',9 -------------------------------------------------------------------------------- /maps/unused/BetaKantoMansion2F.blk: -------------------------------------------------------------------------------- 1 | ? +,/ -------------------------------------------------------------------------------- /maps/unused/BetaMahoganyTown.blk: -------------------------------------------------------------------------------- 1 | `N=`RZW,-G./WEZWWG? -------------------------------------------------------------------------------- /maps/unused/BetaNewBarkTown.blk: -------------------------------------------------------------------------------- 1 | ^]?II~IDGaaHTvEX5@~~{XDGGXHIIIIIIIaXvvvvvvvvv1 -------------------------------------------------------------------------------- /maps/unused/BetaPewterMuseumOfScience1F.blk: -------------------------------------------------------------------------------- 1 |  2 |   ! &! & -------------------------------------------------------------------------------- /maps/unused/BetaPewterMuseumOfScience2F.blk: -------------------------------------------------------------------------------- 1 | 012! -------------------------------------------------------------------------------- /maps/unused/BetaPlayersHouse2F.blk: -------------------------------------------------------------------------------- 1 |  ! " -------------------------------------------------------------------------------- /maps/unused/BetaPokecenter.blk: -------------------------------------------------------------------------------- 1 |   ' -------------------------------------------------------------------------------- /maps/unused/BetaRuinsOfAlphUnsolvedPuzzleRoom.blk: -------------------------------------------------------------------------------- 1 |  ,+ -------------------------------------------------------------------------------- /maps/unused/BetaSlowpokeWell1F.blk: -------------------------------------------------------------------------------- 1 |   2 | (+ 3 | )* 4 |  5 |    -------------------------------------------------------------------------------- /maps/unused/BetaSproutTower9.blk: -------------------------------------------------------------------------------- 1 |      -------------------------------------------------------------------------------- /maps/unused/BetaSproutTowerCutOut1.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/unused/BetaSproutTowerCutOut2.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/unused/BetaSproutTowerCutOut3.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/unused/BetaUnknownGym.blk: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /mobile/mobile_45.asm: -------------------------------------------------------------------------------- 1 | SECTION "Mobile 45", ROMX 2 | 3 | GiveOddEgg: 4 | farcall _GiveOddEgg 5 | ret -------------------------------------------------------------------------------- /tools/pokemontools/__init__.py: -------------------------------------------------------------------------------- 1 | # A subset of https://github.com/pret/pokemon-reverse-engineering-tools 2 | --------------------------------------------------------------------------------