├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── blank_issue.md │ └── config.yml ├── webhook.sh └── workflows │ └── main.yml ├── .gitignore ├── FAQ.md ├── INSTALL.md ├── Makefile ├── README.md ├── STYLE.md ├── audio.asm ├── audio ├── cries.asm ├── cry_pointers.asm ├── drumkits.asm ├── engine.asm ├── music │ ├── aftertherivalfight.asm │ ├── azaleatown.asm │ ├── battletowerlobby.asm │ ├── battletowertheme.asm │ ├── bicycle.asm │ ├── buenaspassword.asm │ ├── bugcatchingcontest.asm │ ├── burnedtower.asm │ ├── celadoncity.asm │ ├── championbattle.asm │ ├── cherrygrovecity.asm │ ├── clair.asm │ ├── contestresults.asm │ ├── credits.asm │ ├── crystalopening.asm │ ├── dancinghall.asm │ ├── darkcave.asm │ ├── dragonsden.asm │ ├── ecruteakcity.asm │ ├── elmslab.asm │ ├── evolution.asm │ ├── gamecorner.asm │ ├── goldenrodcity.asm │ ├── goldsilveropening.asm │ ├── goldsilveropening2.asm │ ├── gym.asm │ ├── gymleadervictory.asm │ ├── halloffame.asm │ ├── healpokemon.asm │ ├── indigoplateau.asm │ ├── johtogymbattle.asm │ ├── johtotrainerbattle.asm │ ├── johtowildbattle.asm │ ├── johtowildbattlenight.asm │ ├── kantogymbattle.asm │ ├── kantotrainerbattle.asm │ ├── kantowildbattle.asm │ ├── lakeofrage.asm │ ├── lakeofragerocketradio.asm │ ├── lavendertown.asm │ ├── lighthouse.asm │ ├── lookbeauty.asm │ ├── lookhiker.asm │ ├── lookkimonogirl.asm │ ├── looklass.asm │ ├── lookmysticalman.asm │ ├── lookofficer.asm │ ├── lookpokemaniac.asm │ ├── lookrival.asm │ ├── lookrocket.asm │ ├── looksage.asm │ ├── lookyoungster.asm │ ├── magnettrain.asm │ ├── mainmenu.asm │ ├── mobileadapter.asm │ ├── mobileadaptermenu.asm │ ├── mobilecenter.asm │ ├── mom.asm │ ├── mtmoon.asm │ ├── mtmoonsquare.asm │ ├── nationalpark.asm │ ├── newbarktown.asm │ ├── nothing.asm │ ├── pallettown.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 │ ├── showmearound.asm │ ├── sprouttower.asm │ ├── ssaqua.asm │ ├── successfulcapture.asm │ ├── suicunebattle.asm │ ├── surf.asm │ ├── tintower.asm │ ├── titlescreen.asm │ ├── trainervictory.asm │ ├── unioncave.asm │ ├── vermilioncity.asm │ ├── victoryroad.asm │ ├── violetcity.asm │ ├── viridiancity.asm │ └── wildpokemonvictory.asm ├── music_pointers.asm ├── notes.asm ├── sfx.asm ├── sfx_crystal.asm ├── sfx_pointers.asm └── wave_samples.asm ├── constants ├── audio_constants.asm ├── battle_anim_constants.asm ├── battle_constants.asm ├── battle_tower_constants.asm ├── charmap.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 ├── mobile_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 ├── ram_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 ├── 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_names.asm │ ├── weather_modifiers.asm │ └── wobble_probabilities.asm ├── battle_anims │ ├── ball_colors.asm │ ├── framesets.asm │ ├── oam.asm │ ├── object_gfx.asm │ └── objects.asm ├── battle_tower │ ├── classes.asm │ ├── parties.asm │ ├── trainer_text.asm │ ├── unknown.asm │ └── unknown_levels.asm ├── collision │ ├── collision_permissions.asm │ ├── collision_stdscripts.asm │ └── field_move_blocks.asm ├── credits_script.asm ├── credits_strings.asm ├── decorations │ ├── attributes.asm │ ├── decorations.asm │ ├── mystery_gift_decos.asm │ └── names.asm ├── default_options.asm ├── events │ ├── bug_contest_flags.asm │ ├── bug_contest_winners.asm │ ├── elevator_floors.asm │ ├── engine_flags.asm │ ├── happiness_changes.asm │ ├── happiness_probabilities.asm │ ├── magikarp_lengths.asm │ ├── npc_trades.asm │ ├── odd_eggs.asm │ ├── pokedex_ratings.asm │ ├── special_pointers.asm │ └── unown_walls.asm ├── growth_rates.asm ├── icon_pointers.asm ├── items │ ├── apricorn_balls.asm │ ├── attributes.asm │ ├── bargain_shop.asm │ ├── buena_prizes.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 │ ├── rooftop_sale.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_script_pointers.asm │ ├── setup_scripts.asm │ ├── sgb_roof_pal_inds.asm │ └── spawn_points.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 │ │ ├── alan_callee.asm │ │ ├── alan_caller.asm │ │ ├── alan_overworld.asm │ │ ├── anthony_callee.asm │ │ ├── anthony_caller.asm │ │ ├── anthony_overworld.asm │ │ ├── arnie_callee.asm │ │ ├── arnie_caller.asm │ │ ├── arnie_overworld.asm │ │ ├── beth_callee.asm │ │ ├── beth_caller.asm │ │ ├── beth_overworld.asm │ │ ├── beverly_callee.asm │ │ ├── beverly_caller.asm │ │ ├── beverly_overworld.asm │ │ ├── bike_shop.asm │ │ ├── bill.asm │ │ ├── brent_callee.asm │ │ ├── brent_caller.asm │ │ ├── brent_overworld.asm │ │ ├── buena.asm │ │ ├── chad_callee.asm │ │ ├── chad_caller.asm │ │ ├── chad_overworld.asm │ │ ├── dana_callee.asm │ │ ├── dana_caller.asm │ │ ├── dana_overworld.asm │ │ ├── derek_callee.asm │ │ ├── derek_caller.asm │ │ ├── derek_overworld.asm │ │ ├── elm.asm │ │ ├── erin_callee.asm │ │ ├── erin_caller.asm │ │ ├── erin_overworld.asm │ │ ├── gaven_callee.asm │ │ ├── gaven_caller.asm │ │ ├── gaven_overworld.asm │ │ ├── gina_callee.asm │ │ ├── gina_caller.asm │ │ ├── gina_overworld.asm │ │ ├── huey_callee.asm │ │ ├── huey_caller.asm │ │ ├── huey_overworld.asm │ │ ├── irwin_callee.asm │ │ ├── irwin_caller.asm │ │ ├── irwin_overworld.asm │ │ ├── jack_callee.asm │ │ ├── jack_caller.asm │ │ ├── jack_overworld.asm │ │ ├── joey_callee.asm │ │ ├── joey_caller.asm │ │ ├── joey_overworld.asm │ │ ├── jose_callee.asm │ │ ├── jose_caller.asm │ │ ├── jose_overworld.asm │ │ ├── kenji_callee.asm │ │ ├── kenji_caller.asm │ │ ├── kenji_overworld.asm │ │ ├── liz_callee.asm │ │ ├── liz_caller.asm │ │ ├── liz_overworld.asm │ │ ├── mom.asm │ │ ├── parry_callee.asm │ │ ├── parry_caller.asm │ │ ├── parry_overworld.asm │ │ ├── ralph_callee.asm │ │ ├── ralph_caller.asm │ │ ├── ralph_overworld.asm │ │ ├── reena_callee.asm │ │ ├── reena_caller.asm │ │ ├── reena_overworld.asm │ │ ├── tiffany_callee.asm │ │ ├── tiffany_caller.asm │ │ ├── tiffany_overworld.asm │ │ ├── todd_callee.asm │ │ ├── todd_caller.asm │ │ ├── todd_overworld.asm │ │ ├── tully_callee.asm │ │ ├── tully_caller.asm │ │ ├── tully_overworld.asm │ │ ├── unknown_callee.asm │ │ ├── unused.asm │ │ ├── vance_callee.asm │ │ ├── vance_caller.asm │ │ ├── vance_overworld.asm │ │ ├── wade_callee.asm │ │ ├── wade_caller.asm │ │ ├── wade_overworld.asm │ │ ├── wilton_callee.asm │ │ ├── wilton_caller.asm │ │ └── wilton_overworld.asm ├── player_names.asm ├── pokemon │ ├── base_stats.asm │ ├── base_stats │ │ ├── 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 │ ├── cries.asm │ ├── dex_entries.asm │ ├── dex_entries │ │ ├── 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_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 │ ├── ezchat_order.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 │ ├── buenas_passwords.asm │ ├── channel_music.asm │ ├── oaks_pkmn_talk_routes.asm │ ├── pnp_hidden_people.asm │ └── pnp_places.asm ├── sgb_ctrl_packets.asm ├── sprite_anims │ ├── framesets.asm │ ├── oam.asm │ ├── objects.asm │ └── unused_gfx.asm ├── sprites │ ├── emotes.asm │ ├── facings.asm │ ├── map_objects.asm │ ├── player_sprites.asm │ ├── sprite_mons.asm │ └── sprites.asm ├── text │ ├── battle.asm │ ├── common.asm │ ├── common_1.asm │ ├── common_2.asm │ ├── common_3.asm │ ├── mail_input_chars.asm │ ├── name_input_chars.asm │ ├── std_text.asm │ ├── unused_dakutens.asm │ ├── unused_gen1_trainer_names.asm │ └── unused_sweet_honey.asm ├── text_buffers.asm ├── tilesets.asm ├── tilesets │ ├── aerodactyl_word_room_collision.asm │ ├── aerodactyl_word_room_metatiles.bin │ ├── battle_tower_inside_collision.asm │ ├── battle_tower_inside_metatiles.bin │ ├── battle_tower_outside_collision.asm │ ├── battle_tower_outside_metatiles.bin │ ├── beta_word_room_collision.asm │ ├── beta_word_room_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 │ ├── ho_oh_word_room_collision.asm │ ├── ho_oh_word_room_metatiles.bin │ ├── house_collision.asm │ ├── house_metatiles.bin │ ├── ice_path_collision.asm │ ├── ice_path_metatiles.bin │ ├── johto_collision.asm │ ├── johto_metatiles.bin │ ├── johto_modern_collision.asm │ ├── johto_modern_metatiles.bin │ ├── kabuto_word_room_collision.asm │ ├── kabuto_word_room_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 │ ├── omanyte_word_room_collision.asm │ ├── omanyte_word_room_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 │ ├── pokecom_center_collision.asm │ ├── pokecom_center_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 │ ├── tower_collision.asm │ ├── tower_metatiles.bin │ ├── traditional_house_collision.asm │ ├── traditional_house_metatiles.bin │ ├── train_station_collision.asm │ ├── train_station_metatiles.bin │ ├── underground_collision.asm │ ├── underground_metatiles.bin │ ├── unused_johto_collision.asm │ └── unused_johto_metatiles.bin ├── trainers │ ├── attributes.asm │ ├── class_names.asm │ ├── dvs.asm │ ├── encounter_music.asm │ ├── gendered_trainers.asm │ ├── genders.asm │ ├── leaders.asm │ ├── palettes.asm │ ├── parties.asm │ ├── party_pointers.asm │ ├── pic_pointers.asm │ └── sprites.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 │ ├── johto_grass.asm │ ├── johto_water.asm │ ├── kanto_grass.asm │ ├── kanto_water.asm │ ├── probabilities.asm │ ├── roammon_maps.asm │ ├── swarm_grass.asm │ ├── swarm_water.asm │ ├── treemon_maps.asm │ ├── treemons.asm │ ├── treemons_asleep.asm │ └── unlocked_unowns.asm ├── docs ├── _config.yml ├── assets │ └── css │ │ └── style.scss ├── battle_anim_commands.md ├── bugs_and_glitches.md ├── design_flaws.md ├── event_commands.md ├── images │ ├── hp_exp_bar_border.png │ ├── port.png │ ├── ruins_of_alph_outside.png │ ├── ruins_of_alph_outside_cinnabar.png │ ├── slowpoke_well.png │ └── slowpoke_well_fixed.png ├── index.md ├── map_event_scripts.md ├── map_setup_scripts.md ├── menus.md ├── move_effect_commands.md ├── movement_commands.md ├── music_commands.md ├── pic_animations.md ├── text_commands.md └── vc_patch.md ├── engine ├── battle │ ├── ai │ │ ├── items.asm │ │ ├── move.asm │ │ ├── redundant.asm │ │ ├── scoring.asm │ │ └── switch.asm │ ├── anim_hp_bar.asm │ ├── battle_transition.asm │ ├── battlestart_copytilemapatonce.asm │ ├── check_battle_scene.asm │ ├── consume_held_item.asm │ ├── core.asm │ ├── effect_commands.asm │ ├── getgen1trainerclassname.asm │ ├── hidden_power.asm │ ├── link_result.asm │ ├── menu.asm │ ├── misc.asm │ ├── move_effects │ │ ├── attract.asm │ │ ├── baton_pass.asm │ │ ├── beat_up.asm │ │ ├── belly_drum.asm │ │ ├── bide.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 │ ├── update_battle_huds.asm │ └── used_move_text.asm ├── battle_anims │ ├── anim_commands.asm │ ├── bg_effects.asm │ ├── core.asm │ ├── functions.asm │ ├── helpers.asm │ └── pokeball_wobble.asm ├── debug │ ├── color_picker.asm │ └── debug_room.asm ├── events │ ├── basement_key.asm │ ├── battle_tower │ │ ├── battle_tower.asm │ │ ├── get_trainer_class.asm │ │ ├── load_trainer.asm │ │ ├── rules.asm │ │ └── trainer_text.asm │ ├── buena.asm │ ├── buena_menu.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 │ ├── celebi.asm │ ├── checkforhiddenitems.asm │ ├── checksave.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 │ ├── kurt.asm │ ├── kurt_selectquantity_interpretjoypad.asm │ ├── lucky_number.asm │ ├── magikarp.asm │ ├── magnet_train.asm │ ├── map_name_sign.asm │ ├── misc_scripts.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 │ ├── poke_seer.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 │ ├── shuckle.asm │ ├── specials.asm │ ├── squirtbottle.asm │ ├── std_collision.asm │ ├── std_scripts.asm │ ├── sweet_scent.asm │ ├── trainer_scripts.asm │ ├── treemons.asm │ ├── unown_walls.asm │ └── whiteout.asm ├── games │ ├── card_flip.asm │ ├── memory_game.asm │ ├── slot_machine.asm │ └── unown_puzzle.asm ├── gfx │ ├── cgb_layouts.asm │ ├── color.asm │ ├── crystal_layouts.asm │ ├── dma_transfer.asm │ ├── load_font.asm │ ├── load_overworld_font.asm │ ├── load_pics.asm │ ├── load_push_oam.asm │ ├── mon_icons.asm │ ├── pic_animation.asm │ ├── place_graphic.asm │ ├── player_gfx.asm │ ├── sgb_layouts.asm │ └── trademon_frontpic.asm ├── items │ ├── buy_sell_toss.asm │ ├── item_effects.asm │ ├── items.asm │ ├── mart.asm │ ├── pack.asm │ ├── pack_kris.asm │ ├── print_item_description.asm │ ├── switch_items.asm │ ├── tmhm.asm │ ├── tmhm2.asm │ └── update_item_description.asm ├── link │ ├── init_list.asm │ ├── link.asm │ ├── link_2.asm │ ├── link_trade.asm │ ├── mystery_gift.asm │ ├── mystery_gift_2.asm │ ├── place_waiting_text.asm │ ├── time_capsule.asm │ └── time_capsule_2.asm ├── math │ ├── get_square_root.asm │ ├── math.asm │ ├── print_num.asm │ └── sine.asm ├── menus │ ├── delete_save.asm │ ├── empty_sram.asm │ ├── init_gender.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 │ ├── gbc_only.asm │ ├── init_hof_credits.asm │ ├── intro.asm │ ├── splash.asm │ ├── title.asm │ ├── trade_animation.asm │ └── unused_title.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 │ ├── warp_connection.asm │ └── wildmons.asm ├── phone │ ├── phone.asm │ ├── phonering_copytilemapatonce.asm │ └── scripts │ │ ├── alan.asm │ │ ├── anthony.asm │ │ ├── arnie.asm │ │ ├── beth.asm │ │ ├── beverly.asm │ │ ├── bike_shop.asm │ │ ├── bill.asm │ │ ├── brent.asm │ │ ├── brent_gossip.asm │ │ ├── buena.asm │ │ ├── chad.asm │ │ ├── chad_gossip.asm │ │ ├── dana.asm │ │ ├── derek.asm │ │ ├── elm.asm │ │ ├── erin.asm │ │ ├── gaven.asm │ │ ├── generic_callee.asm │ │ ├── generic_caller.asm │ │ ├── gina.asm │ │ ├── hangups.asm │ │ ├── hangups_2.asm │ │ ├── huey.asm │ │ ├── irwin.asm │ │ ├── irwin_gossip.asm │ │ ├── jack.asm │ │ ├── jack_gossip.asm │ │ ├── joey.asm │ │ ├── jose.asm │ │ ├── kenji.asm │ │ ├── liz.asm │ │ ├── liz_gossip.asm │ │ ├── mom.asm │ │ ├── parry.asm │ │ ├── ralph.asm │ │ ├── reena.asm │ │ ├── reminders.asm │ │ ├── reminders_2.asm │ │ ├── tiffany.asm │ │ ├── todd.asm │ │ ├── tully.asm │ │ ├── unused.asm │ │ ├── vance.asm │ │ ├── wade.asm │ │ └── wilton.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_data.asm │ ├── correct_nick_errors.asm │ ├── correct_party_errors.asm │ ├── european_mail.asm │ ├── evolve.asm │ ├── experience.asm │ ├── health.asm │ ├── knows_move.asm │ ├── learn.asm │ ├── level_up_happiness.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 │ ├── search_owned.asm │ ├── search_party.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 ├── sprite_anims │ ├── core.asm │ └── functions.asm └── tilesets │ ├── map_palettes.asm │ ├── mapgroup_roofs.asm │ ├── tileset_anims.asm │ ├── tileset_palettes.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 │ ├── border.png │ ├── credits.pal │ ├── ditto.png │ ├── igglybuff.png │ ├── pichu.png │ ├── smoochum.png │ └── theend.png ├── debug │ ├── bg.pal │ ├── color_test.png │ ├── ob.pal │ └── up_arrow.png ├── diploma │ ├── diploma.pal │ ├── diploma.png │ ├── page1.tilemap │ └── page2.tilemap ├── 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 │ ├── bg_text.pal │ ├── black.png │ ├── english.png │ ├── feet_inches.png │ ├── font.png │ ├── font_battle_extra.png │ ├── font_extra.png │ ├── font_inversed.png │ ├── french_german.png │ ├── overworld.png │ ├── overworld_space.png │ ├── phone_icon.png │ ├── postal_mark.png │ ├── space.png │ ├── spanish_italian.png │ ├── unown_font.png │ ├── unused_bold_font.png │ ├── unused_up_arrow.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 │ ├── arbok.png │ ├── arcanine.png │ ├── ariados.png │ ├── articuno.png │ ├── azumarill.png │ ├── bayleef.png │ ├── beedrill.png │ ├── bellossom.png │ ├── bellsprout.png │ ├── blastoise.png │ ├── blissey.png │ ├── bulbasaur.png │ ├── butterfree.png │ ├── caterpie.png │ ├── celebi.png │ ├── chansey.png │ ├── charizard.png │ ├── charmander.png │ ├── charmeleon.png │ ├── chikorita.png │ ├── chinchou.png │ ├── clefable.png │ ├── clefairy.png │ ├── cleffa.png │ ├── cloyster.png │ ├── corsola.png │ ├── crobat.png │ ├── croconaw.png │ ├── cubone.png │ ├── cyndaquil.png │ ├── delibird.png │ ├── dewgong.png │ ├── diglett.png │ ├── ditto.png │ ├── dodrio.png │ ├── doduo.png │ ├── donphan.png │ ├── dragonair.png │ ├── dragonite.png │ ├── dratini.png │ ├── drowzee.png │ ├── dugtrio.png │ ├── dunsparce.png │ ├── eevee.png │ ├── ekans.png │ ├── electabuzz.png │ ├── electrode.png │ ├── elekid.png │ ├── entei.png │ ├── espeon.png │ ├── exeggcute.png │ ├── exeggutor.png │ ├── farfetch_d.png │ ├── fearow.png │ ├── feraligatr.png │ ├── flaaffy.png │ ├── flareon.png │ ├── forretress.png │ ├── furret.png │ ├── gastly.png │ ├── gengar.png │ ├── geodude.png │ ├── girafarig.png │ ├── gligar.png │ ├── gloom.png │ ├── golbat.png │ ├── goldeen.png │ ├── golduck.png │ ├── golem.png │ ├── granbull.png │ ├── graveler.png │ ├── grimer.png │ ├── growlithe.png │ ├── gyarados.png │ ├── haunter.png │ ├── heracross.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 │ ├── jynx.png │ ├── kabuto.png │ ├── kabutops.png │ ├── kadabra.png │ ├── kakuna.png │ ├── kangaskhan.png │ ├── kingdra.png │ ├── kingler.png │ ├── koffing.png │ ├── krabby.png │ ├── lanturn.png │ ├── lapras.png │ ├── larvitar.png │ ├── ledian.png │ ├── ledyba.png │ ├── lickitung.png │ ├── lugia.png │ ├── machamp.png │ ├── machoke.png │ ├── machop.png │ ├── magby.png │ ├── magcargo.png │ ├── magikarp.png │ ├── magmar.png │ ├── magnemite.png │ ├── magneton.png │ ├── mankey.png │ ├── mantine.png │ ├── mareep.png │ ├── marill.png │ ├── marowak.png │ ├── meganium.png │ ├── meowth.png │ ├── metapod.png │ ├── mew.png │ ├── mewtwo.png │ ├── miltank.png │ ├── misdreavus.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 │ ├── paras.png │ ├── parasect.png │ ├── persian.png │ ├── phanpy.png │ ├── pichu.png │ ├── pidgeot.png │ ├── pidgeotto.png │ ├── pidgey.png │ ├── pikachu.png │ ├── piloswine.png │ ├── pineco.png │ ├── pinsir.png │ ├── politoed.png │ ├── poliwag.png │ ├── poliwhirl.png │ ├── poliwrath.png │ ├── ponyta.png │ ├── porygon.png │ ├── porygon2.png │ ├── primeape.png │ ├── psyduck.png │ ├── pupitar.png │ ├── quagsire.png │ ├── quilava.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 │ ├── sentret.png │ ├── shellder.png │ ├── shuckle.png │ ├── skarmory.png │ ├── skiploom.png │ ├── slowbro.png │ ├── slowking.png │ ├── slowpoke.png │ ├── slugma.png │ ├── smeargle.png │ ├── smoochum.png │ ├── sneasel.png │ ├── snorlax.png │ ├── snubbull.png │ ├── spearow.png │ ├── spinarak.png │ ├── squirtle.png │ ├── stantler.png │ ├── starmie.png │ ├── staryu.png │ ├── steelix.png │ ├── sudowoodo.png │ ├── suicune.png │ ├── sunflora.png │ ├── sunkern.png │ ├── swinub.png │ ├── tangela.png │ ├── tauros.png │ ├── teddiursa.png │ ├── tentacool.png │ ├── tentacruel.png │ ├── togepi.png │ ├── togetic.png │ ├── totodile.png │ ├── typhlosion.png │ ├── tyranitar.png │ ├── tyrogue.png │ ├── umbreon.png │ ├── unown.png │ ├── ursaring.png │ ├── vaporeon.png │ ├── venomoth.png │ ├── venonat.png │ ├── venusaur.png │ ├── victreebel.png │ ├── vileplume.png │ ├── voltorb.png │ ├── vulpix.png │ ├── wartortle.png │ ├── weedle.png │ ├── weepinbell.png │ ├── weezing.png │ ├── wigglytuff.png │ ├── wobbuffet.png │ ├── wooper.png │ ├── xatu.png │ ├── yanma.png │ ├── zapdos.png │ └── zubat.png ├── frames │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ └── map_entry_sign.png ├── icons.asm ├── icons │ ├── bat.png │ ├── bigmon.png │ ├── bird.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 │ ├── jellyfish.png │ ├── jigglypuff.png │ ├── lapras.png │ ├── lugia.png │ ├── monster.png │ ├── moth.png │ ├── oddish.png │ ├── pikachu.png │ ├── poliwag.png │ ├── serpent.png │ ├── shell.png │ ├── slowpoke.png │ ├── snorlax.png │ ├── squirtle.png │ ├── staryu.png │ ├── sudowoodo.png │ ├── unown.png │ └── voltorb.png ├── intro │ ├── background.attrmap │ ├── background.pal │ ├── background.png │ ├── background.tilemap │ ├── crystal_unowns.attrmap │ ├── crystal_unowns.pal │ ├── crystal_unowns.png │ ├── crystal_unowns.tilemap │ ├── fade.pal │ ├── grass1.png │ ├── grass2.png │ ├── grass3.png │ ├── grass4.png │ ├── gs_magikarp_bg.pal │ ├── gs_magikarp_ob.pal │ ├── gs_shellder_lapras_bg.pal │ ├── gs_shellder_lapras_ob.pal │ ├── pichu_wooper.png │ ├── pulse.png │ ├── suicune.pal │ ├── suicune_back.attrmap │ ├── suicune_back.png │ ├── suicune_back.tilemap │ ├── suicune_close.attrmap │ ├── suicune_close.pal │ ├── suicune_close.png │ ├── suicune_close.tilemap │ ├── suicune_jump.attrmap │ ├── suicune_jump.png │ ├── suicune_jump.tilemap │ ├── suicune_run.png │ ├── unown_1.pal │ ├── unown_2.pal │ ├── unown_a.attrmap │ ├── unown_a.tilemap │ ├── unown_back.png │ ├── unown_hi.attrmap │ ├── unown_hi.tilemap │ ├── unowns.attrmap │ ├── unowns.pal │ ├── unowns.png │ └── unowns.tilemap ├── lz.mk ├── mail.asm ├── mail │ ├── 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 │ ├── sentret.png │ ├── small_heart.png │ ├── small_note.png │ ├── small_pokeball.png │ ├── small_triangle.png │ ├── surf_mail_border.png │ ├── unused_grass.png │ └── wave.png ├── memory_game │ └── memory_game.png ├── misc.asm ├── mobile │ ├── ascii_font.png │ ├── card.png │ ├── card_2.png │ ├── card_folder.png │ ├── card_large_sprite.png │ ├── card_list.png │ ├── card_sprite.png │ ├── chris_silhouette.png │ ├── dialing.png │ ├── dialing_frame.png │ ├── dialpad.attrmap │ ├── dialpad.png │ ├── dialpad.tilemap │ ├── dialpad_cursor.png │ ├── down_arrow.png │ ├── electro_ball.png │ ├── ez_chat_cursor.png │ ├── havewant.png │ ├── havewant_map.bin │ ├── kris_silhouette.png │ ├── mobile_adapters.pal │ ├── mobile_cable_1.png │ ├── mobile_cable_2.png │ ├── mobile_center.attrmap │ ├── mobile_center.tilemap │ ├── mobile_menu.png │ ├── mobile_password.pal │ ├── mobile_splash.attrmap │ ├── mobile_splash.pal │ ├── mobile_splash.png │ ├── mobile_splash.tilemap │ ├── mobile_splash_check.png │ ├── mobile_trade.attrmap │ ├── mobile_trade.png │ ├── mobile_trade.tilemap │ ├── mobile_trade_bg.pal │ ├── mobile_trade_lights.pal │ ├── mobile_trade_lights.png │ ├── mobile_trade_ob1.pal │ ├── mobile_trade_ob2.pal │ ├── mobile_trade_sprites.png │ ├── password.attrmap │ ├── password_bottom.tilemap │ ├── password_shift.tilemap │ ├── password_top.tilemap │ ├── phone_tiles.png │ ├── pichu_animated.png │ ├── pichu_border.attrmap │ ├── pichu_border.png │ ├── pichu_border.tilemap │ ├── pichu_border_bg.pal │ ├── pichu_border_ob.pal │ ├── pokemon_news.bin │ ├── pokemon_news.pal │ ├── pokemon_news.png │ ├── select.png │ ├── select_start.png │ ├── stadium2_n64.attrmap │ ├── stadium2_n64.png │ ├── stadium2_n64.tilemap │ ├── stadium2_n64_corrupt.tilemap │ ├── unused_mobile_pulses.pal │ └── up_arrow.png ├── mystery_gift │ ├── card_sprite.png │ ├── card_trade.png │ ├── gs_mystery_gift.pal │ ├── mg_mobile.pal │ ├── mobile_text.pal │ ├── mystery_gift.pal │ ├── mystery_gift.png │ ├── name_card_bg.pal │ └── name_card_ob.pal ├── naming_screen │ ├── border.png │ ├── cursor.png │ ├── end.png │ ├── mail.png │ ├── middle_line.png │ └── underline.png ├── new_game │ ├── down_arrow.png │ ├── gender_screen.pal │ ├── gender_screen.png │ ├── shrink1.png │ ├── shrink2.png │ ├── timeset_bg.png │ └── up_arrow.png ├── overworld │ ├── boulder_dust.png │ ├── celebi.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 │ ├── kris_fish.png │ ├── magnet_train_bg.tilemap │ ├── magnet_train_fg.tilemap │ ├── npc_sprites.pal │ ├── shadow.png │ ├── trainer_battle.pal │ ├── trainer_battle_dark.pal │ └── trainer_battle_pokeball_tiles.png ├── pack │ ├── pack.pal │ ├── pack.png │ ├── pack_f.pal │ ├── pack_f.png │ ├── pack_menu.png │ └── pack_menu.tilemap ├── pc │ ├── orange.pal │ ├── pc.png │ └── pc_mail.png ├── pics.asm ├── player │ ├── chris.png │ ├── chris_back.png │ ├── kris.png │ └── kris_back.png ├── pokedex │ ├── cursor.pal │ ├── pokedex.png │ ├── pokedex_sgb.png │ ├── question_mark.pal │ ├── question_mark.png │ └── slowpoke.png ├── pokegear │ ├── clock.tilemap.rle │ ├── dexmap_nest_icon.png │ ├── fast_ship.png │ ├── flymap_label_border.png │ ├── johto.bin │ ├── kanto.bin │ ├── phone.tilemap.rle │ ├── pokegear.pal │ ├── pokegear.png │ ├── pokegear_f.pal │ ├── pokegear_sprites.png │ ├── radio.tilemap.rle │ ├── town_map.png │ └── town_map_palette_map.asm ├── pokemon │ ├── abra │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── aerodactyl │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── aipom │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── alakazam │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── ampharos │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── anim_pointers.asm │ ├── anims.asm │ ├── arbok │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── arcanine │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── ariados │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── articuno │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── azumarill │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── bayleef │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── beedrill │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── bellossom │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── bellsprout │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── bitmask_pointers.asm │ ├── bitmasks.asm │ ├── blastoise │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── blissey │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── bulbasaur │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── butterfree │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── caterpie │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── celebi │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── chansey │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── charizard │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── charmander │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── charmeleon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── chikorita │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── chinchou │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── clefable │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── clefairy │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── cleffa │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── cloyster │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── corsola │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── crobat │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── croconaw │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── cubone │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── cyndaquil │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── delibird │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── dewgong │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── diglett │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── ditto │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── dodrio │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── doduo │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── donphan │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── dragonair │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── dragonite │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── dratini │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── drowzee │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── dugtrio │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── dunsparce │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── eevee │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── egg │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── front.png │ │ ├── shiny.pal │ │ └── unused_front.png │ ├── ekans │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── electabuzz │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── electrode │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── elekid │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── entei │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── espeon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── exeggcute │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── exeggutor │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── farfetch_d │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── fearow │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── feraligatr │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── flaaffy │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── flareon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── forretress │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── frame_pointers.asm │ ├── furret │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── gastly │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── gengar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── geodude │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── girafarig │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── gligar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── gloom │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── golbat │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── goldeen │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── golduck │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── golem │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── granbull │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── graveler │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── grimer │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── growlithe │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── gyarados │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── haunter │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── heracross │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── hitmonchan │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── hitmonlee │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── hitmontop │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── ho_oh │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── hoothoot │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── hoppip │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── horsea │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── houndoom │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── houndour │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── hypno │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── idle_pointers.asm │ ├── idles.asm │ ├── igglybuff │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── ivysaur │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── jigglypuff │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── johto_frames.asm │ ├── jolteon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── jumpluff │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── jynx │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── kabuto │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── kabutops │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── kadabra │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── kakuna │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── kangaskhan │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── kanto_frames.asm │ ├── kingdra │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── kingler │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── koffing │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── krabby │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── lanturn │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── lapras │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── larvitar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── ledian │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── ledyba │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── lickitung │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── lugia │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── machamp │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── machoke │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── machop │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── magby │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── magcargo │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── magikarp │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── magmar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── magnemite │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── magneton │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── mankey │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── mantine │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── mareep │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── marill │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── marowak │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── meganium │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── meowth │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── metapod │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── mew │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── mewtwo │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── miltank │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── misdreavus │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── moltres │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── mr__mime │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── muk │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── murkrow │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── natu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── nidoking │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── nidoqueen │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── nidoran_f │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── nidoran_m │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── nidorina │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── nidorino │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── ninetales │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── noctowl │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── octillery │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── oddish │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── omanyte │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── omastar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── onix │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── paras │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── parasect │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── persian │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── phanpy │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── pichu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── pidgeot │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── pidgeotto │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── pidgey │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── pikachu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── piloswine │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── pineco │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── pinsir │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── politoed │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── poliwag │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── poliwhirl │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── poliwrath │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── ponyta │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── porygon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── porygon2 │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── primeape │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── psyduck │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── pupitar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── quagsire │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── quilava │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── qwilfish │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── raichu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── raikou │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── rapidash │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── raticate │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── rattata │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── remoraid │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── rhydon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── rhyhorn │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── sandshrew │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── sandslash │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── scizor │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── scyther │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── seadra │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── seaking │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── seel │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── sentret │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── shellder │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── shuckle │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── skarmory │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── skiploom │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── slowbro │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── slowking │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── slowpoke │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── slugma │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── smeargle │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── smoochum │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── sneasel │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── snorlax │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── snubbull │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── spearow │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── spinarak │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── squirtle │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── stantler │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── starmie │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── staryu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── steelix │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── sudowoodo │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── suicune │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── sunflora │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── sunkern │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── swinub │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── tangela │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── tauros │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── teddiursa │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── tentacool │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── tentacruel │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── togepi │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── togetic │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── totodile │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── typhlosion │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── tyranitar │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── tyrogue │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── umbreon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── 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.png │ │ └── front.png │ ├── unown_anim_pointers.asm │ ├── unown_anims.asm │ ├── unown_b │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_bitmask_pointers.asm │ ├── unown_bitmasks.asm │ ├── unown_c │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_d │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_e │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_f │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_frame_pointers.asm │ ├── unown_frames.asm │ ├── unown_g │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_h │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_i │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_idle_pointers.asm │ ├── unown_idles.asm │ ├── unown_j │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_k │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_l │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_m │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_n │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_o │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_p │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_q │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_r │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_s │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_t │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_u │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_v │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_w │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_x │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_y │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── unown_z │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ └── front.png │ ├── ursaring │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── vaporeon │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── venomoth │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── venonat │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── venusaur │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── victreebel │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── vileplume │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── voltorb │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── vulpix │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── wartortle │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── weedle │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── weepinbell │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── weezing │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── wigglytuff │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── wobbuffet │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── wooper │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── xatu │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── yanma │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ ├── zapdos │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal │ └── zubat │ │ ├── anim.asm │ │ ├── anim_idle.asm │ │ ├── back.png │ │ ├── front.png │ │ └── shiny.pal ├── printer │ ├── bold_a.png │ ├── bold_b.png │ ├── hp.png │ └── lv.png ├── sgb │ ├── blk_packets.asm │ ├── gbc_only.png │ ├── pal_packets.asm │ ├── predef.pal │ ├── sgb_border.bin │ ├── sgb_border.pal │ └── sgb_border.png ├── slots │ ├── slots.pal │ ├── slots.tilemap │ ├── slots_1.png │ ├── slots_2.png │ └── slots_3.png ├── splash │ ├── copyright.png │ ├── ditto.pal │ ├── ditto.png │ ├── ditto_fade.pal │ ├── gamefreak_logo.png │ └── gamefreak_presents.png ├── sprites.asm ├── sprites │ ├── beauty.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 │ ├── elm.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_guide.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 │ ├── misty.png │ ├── mom.png │ ├── monster.png │ ├── morty.png │ ├── n64.png │ ├── nurse.png │ ├── oak.png │ ├── officer.png │ ├── old_link_receptionist.png │ ├── paper.png │ ├── pharmacist.png │ ├── poke_ball.png │ ├── pokedex.png │ ├── pokefan_f.png │ ├── pokefan_m.png │ ├── pryce.png │ ├── raikou.png │ ├── receptionist.png │ ├── red.png │ ├── reds_mom.png │ ├── rival.png │ ├── rock.png │ ├── rocker.png │ ├── rocket.png │ ├── rocket_girl.png │ ├── sabrina.png │ ├── sage.png │ ├── sailor.png │ ├── scientist.png │ ├── silver_trophy.png │ ├── slowpoke.png │ ├── snes.png │ ├── standing_youngster.png │ ├── sudowoodo.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 │ ├── item.png │ ├── mail.png │ ├── pages.pal │ ├── party_menu_bg.pal │ ├── party_menu_bg_mobile.pal │ ├── party_menu_ob.pal │ ├── stats.pal │ └── stats_tiles.png ├── tileset_palette_maps.asm ├── tilesets.asm ├── tilesets │ ├── aerodactyl_word_room.png │ ├── aerodactyl_word_room_palette_map.asm │ ├── battle_tower_inside.pal │ ├── battle_tower_inside.png │ ├── battle_tower_inside_palette_map.asm │ ├── battle_tower_outside.png │ ├── battle_tower_outside_palette_map.asm │ ├── beta_word_room.png │ ├── beta_word_room_palette_map.asm │ ├── bg_tiles.pal │ ├── 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-tree │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ ├── forest.png │ ├── forest_palette_map.asm │ ├── fountain │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── game_corner.png │ ├── game_corner_palette_map.asm │ ├── gate.png │ ├── gate_palette_map.asm │ ├── ho_oh_word_room.png │ ├── ho_oh_word_room_palette_map.asm │ ├── house.pal │ ├── house.png │ ├── house_palette_map.asm │ ├── ice_path.pal │ ├── ice_path.png │ ├── ice_path_palette_map.asm │ ├── johto.png │ ├── johto_modern.png │ ├── johto_modern_palette_map.asm │ ├── johto_palette_map.asm │ ├── kabuto_word_room.png │ ├── kabuto_word_room_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_1.pal │ ├── mansion_2.pal │ ├── mansion_palette_map.asm │ ├── mart.png │ ├── mart_palette_map.asm │ ├── omanyte_word_room.png │ ├── omanyte_word_room_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 │ ├── pokecom_center.pal │ ├── pokecom_center.png │ ├── pokecom_center_palette_map.asm │ ├── port.png │ ├── port_palette_map.asm │ ├── radio_tower.pal │ ├── radio_tower.png │ ├── radio_tower_palette_map.asm │ ├── roofs.pal │ ├── roofs │ │ ├── azalea.png │ │ ├── goldenrod.png │ │ ├── new_bark.png │ │ ├── olivine.png │ │ └── violet.png │ ├── ruins_of_alph.png │ ├── ruins_of_alph_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 │ ├── underground.png │ ├── underground_palette_map.asm │ ├── unused_museum_palette_map.asm │ ├── water │ │ └── water.png │ └── whirlpool │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png ├── title │ ├── crystal.png │ ├── logo.png │ ├── old_bg.pal │ ├── old_bg.png │ ├── old_bg.tilemap │ ├── old_fg.pal │ ├── old_fg.png │ ├── suicune.png │ ├── title.pal │ ├── unused_gs_bg.pal │ └── unused_gs_fg.pal ├── trade │ ├── arrow_left.png │ ├── arrow_right.png │ ├── ball.png │ ├── border.pal │ ├── border_cable_bottom.tilemap │ ├── border_cable_top.tilemap │ ├── border_mobile.tilemap │ ├── border_tiles.png │ ├── bubble.png │ ├── cable.png │ ├── game_boy.png │ ├── game_boy.tilemap │ ├── link_cable.png │ ├── link_cable.tilemap │ ├── mobile_border.pal │ ├── poof.png │ └── unused_gs_border_tiles.png ├── trainer_card │ ├── badges.png │ ├── card_right_corner.png │ ├── card_status.png │ ├── chris_card.png │ ├── kris_card.png │ ├── leaders.png │ └── trainer_card.png ├── trainers │ ├── beauty.png │ ├── biker.png │ ├── bird_keeper.png │ ├── blackbelt_t.png │ ├── blaine.png │ ├── blue.png │ ├── boarder.png │ ├── brock.png │ ├── bruno.png │ ├── bug_catcher.png │ ├── bugsy.png │ ├── burglar.png │ ├── cal.png │ ├── camper.png │ ├── champion.png │ ├── chuck.png │ ├── clair.png │ ├── cooltrainer_f.png │ ├── cooltrainer_m.png │ ├── erika.png │ ├── executive_f.png │ ├── executive_m.png │ ├── falkner.png │ ├── firebreather.png │ ├── fisher.png │ ├── gentleman.png │ ├── grunt_f.png │ ├── grunt_m.png │ ├── guitarist.png │ ├── hiker.png │ ├── janine.png │ ├── jasmine.png │ ├── juggler.png │ ├── karen.png │ ├── kimono_girl.png │ ├── koga.png │ ├── lass.png │ ├── lt_surge.png │ ├── medium.png │ ├── misty.png │ ├── morty.png │ ├── mysticalman.png │ ├── oak.png │ ├── officer.png │ ├── picnicker.png │ ├── pokefan_f.png │ ├── pokefan_m.png │ ├── pokemaniac.png │ ├── pryce.png │ ├── psychic_t.png │ ├── red.png │ ├── rival1.png │ ├── rival2.png │ ├── sabrina.png │ ├── sage.png │ ├── sailor.png │ ├── schoolboy.png │ ├── scientist.png │ ├── skier.png │ ├── super_nerd.png │ ├── swimmer_f.png │ ├── swimmer_m.png │ ├── teacher.png │ ├── twins.png │ ├── whitney.png │ ├── will.png │ └── 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 ├── double_speed.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 ├── mobile.asm ├── movement.asm ├── names.asm ├── palettes.asm ├── pokedex_flags.asm ├── pokemon.asm ├── predef.asm ├── print_bcd.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 └── window.asm ├── includes.asm ├── layout.link ├── lib └── mobile │ ├── mail.asm │ └── main.asm ├── macros ├── asserts.asm ├── code.asm ├── const.asm ├── coords.asm ├── data.asm ├── farcall.asm ├── gfx.asm ├── legacy.asm ├── predef.asm ├── ram.asm ├── scripts │ ├── audio.asm │ ├── battle_anims.asm │ ├── battle_commands.asm │ ├── events.asm │ ├── maps.asm │ ├── movement.asm │ ├── oam_anims.asm │ ├── pic_anims.asm │ └── text.asm └── vc.asm ├── main.asm ├── maps ├── AzaleaGym.asm ├── AzaleaGym.blk ├── AzaleaMart.asm ├── AzaleaPokecenter1F.asm ├── AzaleaTown.asm ├── AzaleaTown.blk ├── BattleTower1F.asm ├── BattleTower1F.blk ├── BattleTowerBattleRoom.asm ├── BattleTowerBattleRoom.blk ├── BattleTowerElevator.asm ├── BattleTowerElevator.blk ├── BattleTowerHallway.asm ├── BattleTowerHallway.blk ├── BattleTowerOutside.asm ├── BattleTowerOutside.blk ├── BillsFamilysHouse.asm ├── BillsHouse.asm ├── BillsOlderSistersHouse.asm ├── BlackthornCity.asm ├── BlackthornCity.blk ├── BlackthornDragonSpeechHouse.asm ├── BlackthornEmysHouse.asm ├── BlackthornGym1F.asm ├── BlackthornGym1F.blk ├── BlackthornGym2F.asm ├── BlackthornGym2F.blk ├── BlackthornMart.asm ├── BlackthornPokecenter1F.asm ├── BluesHouse.asm ├── BrunosRoom.asm ├── BrunosRoom.blk ├── BurnedTower1F.asm ├── BurnedTower1F.blk ├── BurnedTowerB1F.asm ├── BurnedTowerB1F.blk ├── CeladonCafe.asm ├── CeladonCafe.blk ├── CeladonCity.asm ├── CeladonCity.blk ├── CeladonDeptStore1F.asm ├── CeladonDeptStore2F.asm ├── CeladonDeptStore3F.asm ├── CeladonDeptStore4F.asm ├── CeladonDeptStore5F.asm ├── CeladonDeptStore6F.asm ├── CeladonDeptStoreElevator.asm ├── CeladonGameCorner.asm ├── CeladonGameCorner.blk ├── CeladonGameCornerPrizeRoom.asm ├── CeladonGameCornerPrizeRoom.blk ├── CeladonGym.asm ├── CeladonGym.blk ├── CeladonMansion1F.asm ├── CeladonMansion1F.blk ├── CeladonMansion2F.asm ├── CeladonMansion2F.blk ├── CeladonMansion3F.asm ├── CeladonMansion3F.blk ├── CeladonMansionRoof.asm ├── CeladonMansionRoof.blk ├── CeladonMansionRoofHouse.asm ├── CeladonPokecenter1F.asm ├── CeladonPokecenter2FBeta.asm ├── CeruleanCity.asm ├── CeruleanCity.blk ├── CeruleanGym.asm ├── CeruleanGym.blk ├── CeruleanGymBadgeSpeechHouse.asm ├── CeruleanMart.asm ├── CeruleanPokecenter1F.asm ├── CeruleanPokecenter2FBeta.asm ├── CeruleanPoliceStation.asm ├── CeruleanTradeSpeechHouse.asm ├── CharcoalKiln.asm ├── CherrygroveCity.asm ├── CherrygroveCity.blk ├── CherrygroveEvolutionSpeechHouse.asm ├── CherrygroveGymSpeechHouse.asm ├── CherrygroveMart.asm ├── CherrygrovePokecenter1F.asm ├── CianwoodCity.asm ├── CianwoodCity.blk ├── CianwoodGym.asm ├── CianwoodGym.blk ├── CianwoodLugiaSpeechHouse.asm ├── CianwoodPharmacy.asm ├── CianwoodPhotoStudio.asm ├── CianwoodPokecenter1F.asm ├── CinnabarIsland.asm ├── CinnabarIsland.blk ├── CinnabarPokecenter1F.asm ├── CinnabarPokecenter2FBeta.asm ├── Colosseum.asm ├── Colosseum.blk ├── CopycatsHouse1F.asm ├── CopycatsHouse1F.blk ├── CopycatsHouse2F.asm ├── CopycatsHouse2F.blk ├── DanceTheater.asm ├── DanceTheater.blk ├── DarkCaveBlackthornEntrance.asm ├── DarkCaveBlackthornEntrance.blk ├── DarkCaveVioletEntrance.asm ├── DarkCaveVioletEntrance.blk ├── DayCare.asm ├── DayCare.blk ├── DayOfWeekSiblingsHouse.asm ├── DeptStore1F.blk ├── DeptStore2F.blk ├── DeptStore3F.blk ├── DeptStore4F.blk ├── DeptStore5F.blk ├── DeptStore6F.blk ├── DeptStoreElevator.blk ├── DiglettsCave.asm ├── DiglettsCave.blk ├── DragonShrine.asm ├── DragonShrine.blk ├── DragonsDen1F.asm ├── DragonsDen1F.blk ├── DragonsDenB1F.asm ├── DragonsDenB1F.blk ├── EarlsPokemonAcademy.asm ├── EarlsPokemonAcademy.blk ├── EastWestGate.blk ├── EcruteakCity.asm ├── EcruteakCity.blk ├── EcruteakGym.asm ├── EcruteakGym.blk ├── EcruteakItemfinderHouse.asm ├── EcruteakLugiaSpeechHouse.asm ├── EcruteakMart.asm ├── EcruteakPokecenter1F.asm ├── EcruteakTinTowerEntrance.asm ├── EcruteakTinTowerEntrance.blk ├── ElmsHouse.asm ├── ElmsHouse.blk ├── ElmsLab.asm ├── ElmsLab.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 ├── FuchsiaCity.asm ├── FuchsiaCity.blk ├── FuchsiaGym.asm ├── FuchsiaGym.blk ├── FuchsiaMart.asm ├── FuchsiaPokecenter1F.asm ├── FuchsiaPokecenter2FBeta.asm ├── GiftShop.blk ├── GoldenrodBikeShop.asm ├── GoldenrodBikeShop.blk ├── GoldenrodCity.asm ├── GoldenrodCity.blk ├── GoldenrodDeptStore1F.asm ├── GoldenrodDeptStore2F.asm ├── GoldenrodDeptStore3F.asm ├── GoldenrodDeptStore4F.asm ├── GoldenrodDeptStore5F.asm ├── GoldenrodDeptStore6F.asm ├── GoldenrodDeptStoreB1F.asm ├── GoldenrodDeptStoreB1F.blk ├── GoldenrodDeptStoreElevator.asm ├── GoldenrodDeptStoreRoof.asm ├── GoldenrodDeptStoreRoof.blk ├── GoldenrodFlowerShop.asm ├── GoldenrodFlowerShop.blk ├── GoldenrodGameCorner.asm ├── GoldenrodGameCorner.blk ├── GoldenrodGym.asm ├── GoldenrodGym.blk ├── GoldenrodHappinessRater.asm ├── GoldenrodMagnetTrainStation.asm ├── GoldenrodMagnetTrainStation.blk ├── GoldenrodNameRater.asm ├── GoldenrodPPSpeechHouse.asm ├── GoldenrodPokecenter1F.asm ├── GoldenrodUnderground.asm ├── GoldenrodUnderground.blk ├── GoldenrodUndergroundSwitchRoomEntrances.asm ├── GoldenrodUndergroundSwitchRoomEntrances.blk ├── GoldenrodUndergroundWarehouse.asm ├── GoldenrodUndergroundWarehouse.blk ├── GuideGentsHouse.asm ├── HallOfFame.asm ├── HallOfFame.blk ├── House1.blk ├── House2.blk ├── IcePath1F.asm ├── IcePath1F.blk ├── IcePathB1F.asm ├── IcePathB1F.blk ├── IcePathB2FBlackthornSide.asm ├── IcePathB2FBlackthornSide.blk ├── IcePathB2FMahoganySide.asm ├── IcePathB2FMahoganySide.blk ├── IcePathB3F.asm ├── IcePathB3F.blk ├── IlexForest.asm ├── IlexForest.blk ├── IlexForestAzaleaGate.asm ├── IndigoPlateauPokecenter1F.asm ├── IndigoPlateauPokecenter1F.blk ├── KarensRoom.asm ├── KarensRoom.blk ├── KogasRoom.asm ├── KogasRoom.blk ├── KurtsHouse.asm ├── KurtsHouse.blk ├── LakeOfRage.asm ├── LakeOfRage.blk ├── LakeOfRageHiddenPowerHouse.asm ├── LakeOfRageMagikarpHouse.asm ├── LancesRoom.asm ├── LancesRoom.blk ├── LavRadioTower1F.asm ├── LavRadioTower1F.blk ├── LavenderMart.asm ├── LavenderNameRater.asm ├── LavenderPokecenter1F.asm ├── LavenderPokecenter2FBeta.asm ├── LavenderSpeechHouse.asm ├── LavenderTown.asm ├── LavenderTown.blk ├── MahoganyGym.asm ├── MahoganyGym.blk ├── MahoganyMart1F.asm ├── MahoganyPokecenter1F.asm ├── MahoganyRedGyaradosSpeechHouse.asm ├── MahoganyTown.asm ├── MahoganyTown.blk ├── ManiasHouse.asm ├── Mart.blk ├── MobileBattleRoom.asm ├── MobileBattleRoom.blk ├── MobileTradeRoom.asm ├── MobileTradeRoom.blk ├── MountMoon.asm ├── MountMoon.blk ├── MountMoonGiftShop.asm ├── MountMoonSquare.asm ├── MountMoonSquare.blk ├── MountMortar1FInside.asm ├── MountMortar1FInside.blk ├── MountMortar1FOutside.asm ├── MountMortar1FOutside.blk ├── MountMortar2FInside.asm ├── MountMortar2FInside.blk ├── MountMortarB1F.asm ├── MountMortarB1F.blk ├── MoveDeletersHouse.asm ├── MrFujisHouse.asm ├── MrFujisHouse.blk ├── MrPokemonsHouse.asm ├── MrPokemonsHouse.blk ├── MrPsychicsHouse.asm ├── NationalPark.asm ├── NationalPark.blk ├── NationalParkBugContest.asm ├── NewBarkTown.asm ├── NewBarkTown.blk ├── NorthSouthGate.blk ├── OaksLab.asm ├── OaksLab.blk ├── OlivineCafe.asm ├── OlivineCafe.blk ├── OlivineCity.asm ├── OlivineCity.blk ├── OlivineGoodRodHouse.asm ├── OlivineGym.asm ├── OlivineGym.blk ├── OlivineHouseBeta.asm ├── OlivineLighthouse1F.asm ├── OlivineLighthouse1F.blk ├── OlivineLighthouse2F.asm ├── OlivineLighthouse2F.blk ├── OlivineLighthouse3F.asm ├── OlivineLighthouse3F.blk ├── OlivineLighthouse4F.asm ├── OlivineLighthouse4F.blk ├── OlivineLighthouse5F.asm ├── OlivineLighthouse5F.blk ├── OlivineLighthouse6F.asm ├── OlivineLighthouse6F.blk ├── OlivineMart.asm ├── OlivinePokecenter1F.asm ├── OlivinePort.asm ├── OlivinePort.blk ├── OlivinePortPassage.asm ├── OlivinePunishmentSpeechHouse.asm ├── OlivineTimsHouse.asm ├── PalletTown.asm ├── PalletTown.blk ├── PewterCity.asm ├── PewterCity.blk ├── PewterGym.asm ├── PewterGym.blk ├── PewterMart.asm ├── PewterNidoranSpeechHouse.asm ├── PewterPokecenter1F.asm ├── PewterPokecenter2FBeta.asm ├── PewterSnoozeSpeechHouse.asm ├── PlayersHouse1F.asm ├── PlayersHouse1F.blk ├── PlayersHouse2F.asm ├── PlayersHouse2F.blk ├── PlayersNeighborsHouse.asm ├── PokeSeersHouse.asm ├── Pokecenter1F.blk ├── Pokecenter2F.asm ├── Pokecenter2F.blk ├── PokecomCenterAdminOfficeMobile.asm ├── PokecomCenterAdminOfficeMobile.blk ├── PokemonFanClub.asm ├── PokemonFanClub.blk ├── PortPassage.blk ├── PowerPlant.asm ├── PowerPlant.blk ├── RadioTower1F.asm ├── RadioTower1F.blk ├── RadioTower2F.asm ├── RadioTower2F.blk ├── RadioTower3F.asm ├── RadioTower3F.blk ├── RadioTower4F.asm ├── RadioTower4F.blk ├── RadioTower5F.asm ├── RadioTower5F.blk ├── RedsHouse1F.asm ├── RedsHouse1F.blk ├── RedsHouse2F.asm ├── RedsHouse2F.blk ├── RockTunnel1F.asm ├── RockTunnel1F.blk ├── RockTunnelB1F.asm ├── RockTunnelB1F.blk ├── Route1.asm ├── Route1.blk ├── Route10North.asm ├── Route10North.blk ├── Route10Pokecenter1F.asm ├── Route10Pokecenter2FBeta.asm ├── Route10South.asm ├── Route10South.blk ├── Route11.asm ├── Route11.blk ├── Route12.asm ├── Route12.blk ├── Route12SuperRodHouse.asm ├── Route13.asm ├── Route13.blk ├── Route14.asm ├── Route14.blk ├── Route15.asm ├── Route15.blk ├── Route15FuchsiaGate.asm ├── Route16.asm ├── Route16.blk ├── Route16FuchsiaSpeechHouse.asm ├── Route16Gate.asm ├── Route17.asm ├── Route17.blk ├── Route17Route18Gate.asm ├── Route18.asm ├── Route18.blk ├── Route19.asm ├── Route19.blk ├── Route19FuchsiaGate.asm ├── Route2.asm ├── Route2.blk ├── Route20.asm ├── Route20.blk ├── Route21.asm ├── Route21.blk ├── Route22.asm ├── Route22.blk ├── Route23.asm ├── Route23.blk ├── Route24.asm ├── Route24.blk ├── Route25.asm ├── Route25.blk ├── Route26.asm ├── Route26.blk ├── Route26HealHouse.asm ├── Route27.asm ├── Route27.blk ├── Route27SandstormHouse.asm ├── Route28.asm ├── Route28.blk ├── Route28SteelWingHouse.asm ├── Route29.asm ├── Route29.blk ├── Route29Route46Gate.asm ├── Route2Gate.asm ├── Route2NuggetHouse.asm ├── Route3.asm ├── Route3.blk ├── Route30.asm ├── Route30.blk ├── Route30BerryHouse.asm ├── Route31.asm ├── Route31.blk ├── Route31VioletGate.asm ├── Route32.asm ├── Route32.blk ├── Route32Pokecenter1F.asm ├── Route32RuinsOfAlphGate.asm ├── Route33.asm ├── Route33.blk ├── Route34.asm ├── Route34.blk ├── Route34IlexForestGate.asm ├── Route35.asm ├── Route35.blk ├── Route35GoldenrodGate.asm ├── Route35NationalParkGate.asm ├── Route35NationalParkGate.blk ├── Route36.asm ├── Route36.blk ├── Route36NationalParkGate.asm ├── Route36NationalParkGate.blk ├── Route36RuinsOfAlphGate.asm ├── Route37.asm ├── Route37.blk ├── Route38.asm ├── Route38.blk ├── Route38EcruteakGate.asm ├── Route39.asm ├── Route39.blk ├── Route39Barn.asm ├── Route39Barn.blk ├── Route39Farmhouse.asm ├── Route4.asm ├── Route4.blk ├── Route40.asm ├── Route40.blk ├── Route40BattleTowerGate.asm ├── Route41.asm ├── Route41.blk ├── Route42.asm ├── Route42.blk ├── Route42EcruteakGate.asm ├── Route43.asm ├── Route43.blk ├── Route43Gate.asm ├── Route43MahoganyGate.asm ├── Route44.asm ├── Route44.blk ├── Route45.asm ├── Route45.blk ├── Route46.asm ├── Route46.blk ├── Route5.asm ├── Route5.blk ├── Route5CleanseTagHouse.asm ├── Route5SaffronGate.asm ├── Route5UndergroundPathEntrance.asm ├── Route6.asm ├── Route6.blk ├── Route6SaffronGate.asm ├── Route6UndergroundPathEntrance.asm ├── Route7.asm ├── Route7.blk ├── Route7SaffronGate.asm ├── Route8.asm ├── Route8.blk ├── Route8SaffronGate.asm ├── Route9.asm ├── Route9.blk ├── RuinsOfAlphAerodactylChamber.asm ├── RuinsOfAlphAerodactylItemRoom.asm ├── RuinsOfAlphAerodactylWordRoom.asm ├── RuinsOfAlphAerodactylWordRoom.blk ├── RuinsOfAlphHoOhChamber.asm ├── RuinsOfAlphHoOhItemRoom.asm ├── RuinsOfAlphHoOhWordRoom.asm ├── RuinsOfAlphHoOhWordRoom.blk ├── RuinsOfAlphInnerChamber.asm ├── RuinsOfAlphInnerChamber.blk ├── RuinsOfAlphItemRoom.blk ├── RuinsOfAlphKabutoChamber.asm ├── RuinsOfAlphKabutoItemRoom.asm ├── RuinsOfAlphKabutoWordRoom.asm ├── RuinsOfAlphKabutoWordRoom.blk ├── RuinsOfAlphOmanyteChamber.asm ├── RuinsOfAlphOmanyteItemRoom.asm ├── RuinsOfAlphOmanyteWordRoom.asm ├── RuinsOfAlphOmanyteWordRoom.blk ├── RuinsOfAlphOutside.asm ├── RuinsOfAlphOutside.blk ├── RuinsOfAlphPuzzleChamber.blk ├── RuinsOfAlphResearchCenter.asm ├── RuinsOfAlphResearchCenter.blk ├── SafariZoneBeta.asm ├── SafariZoneBeta.blk ├── SafariZoneFuchsiaGateBeta.asm ├── SafariZoneMainOffice.asm ├── SafariZoneWardensHome.asm ├── SaffronCity.asm ├── SaffronCity.blk ├── SaffronGym.asm ├── SaffronGym.blk ├── SaffronMagnetTrainStation.asm ├── SaffronMagnetTrainStation.blk ├── SaffronMart.asm ├── SaffronPokecenter1F.asm ├── SaffronPokecenter2FBeta.asm ├── SeafoamGym.asm ├── SeafoamGym.blk ├── SilphCo1F.asm ├── SilphCo1F.blk ├── SilverCaveItemRooms.asm ├── SilverCaveItemRooms.blk ├── SilverCaveOutside.asm ├── SilverCaveOutside.blk ├── SilverCavePokecenter1F.asm ├── SilverCaveRoom1.asm ├── SilverCaveRoom1.blk ├── SilverCaveRoom2.asm ├── SilverCaveRoom2.blk ├── SilverCaveRoom3.asm ├── SilverCaveRoom3.blk ├── SlowpokeWellB1F.asm ├── SlowpokeWellB1F.blk ├── SlowpokeWellB2F.asm ├── SlowpokeWellB2F.blk ├── SoulHouse.asm ├── SoulHouse.blk ├── SproutTower1F.asm ├── SproutTower1F.blk ├── SproutTower2F.asm ├── SproutTower2F.blk ├── SproutTower3F.asm ├── SproutTower3F.blk ├── TeamRocketBaseB1F.asm ├── TeamRocketBaseB1F.blk ├── TeamRocketBaseB2F.asm ├── TeamRocketBaseB2F.blk ├── TeamRocketBaseB3F.asm ├── TeamRocketBaseB3F.blk ├── TimeCapsule.asm ├── TinTower1F.asm ├── TinTower1F.blk ├── TinTower2F.asm ├── TinTower2F.blk ├── TinTower3F.asm ├── TinTower3F.blk ├── TinTower4F.asm ├── TinTower4F.blk ├── TinTower5F.asm ├── TinTower5F.blk ├── TinTower6F.asm ├── TinTower6F.blk ├── TinTower7F.asm ├── TinTower7F.blk ├── TinTower8F.asm ├── TinTower8F.blk ├── TinTower9F.asm ├── TinTower9F.blk ├── TinTowerRoof.asm ├── TinTowerRoof.blk ├── TohjoFalls.asm ├── TohjoFalls.blk ├── TradeCenter.asm ├── TradeCenter.blk ├── TrainerHouse1F.asm ├── TrainerHouse1F.blk ├── TrainerHouseB1F.asm ├── TrainerHouseB1F.blk ├── UndergroundPath.asm ├── UndergroundPath.blk ├── UndergroundPathEntrance.blk ├── UnionCave1F.asm ├── UnionCave1F.blk ├── UnionCaveB1F.asm ├── UnionCaveB1F.blk ├── UnionCaveB2F.asm ├── UnionCaveB2F.blk ├── VermilionCity.asm ├── VermilionCity.blk ├── VermilionDiglettsCaveSpeechHouse.asm ├── VermilionFishingSpeechHouse.asm ├── VermilionGym.asm ├── VermilionGym.blk ├── VermilionMagnetTrainSpeechHouse.asm ├── VermilionMart.asm ├── VermilionPokecenter1F.asm ├── VermilionPokecenter2FBeta.asm ├── VermilionPort.asm ├── VermilionPort.blk ├── VermilionPortPassage.asm ├── VictoryRoad.asm ├── VictoryRoad.blk ├── VictoryRoadGate.asm ├── VictoryRoadGate.blk ├── VioletCity.asm ├── VioletCity.blk ├── VioletGym.asm ├── VioletGym.blk ├── VioletKylesHouse.asm ├── VioletMart.asm ├── VioletNicknameSpeechHouse.asm ├── VioletPokecenter1F.asm ├── ViridianCity.asm ├── ViridianCity.blk ├── ViridianGym.asm ├── ViridianGym.blk ├── ViridianMart.asm ├── ViridianNicknameSpeechHouse.asm ├── ViridianPokecenter1F.asm ├── ViridianPokecenter2FBeta.asm ├── WhirlIslandB1F.asm ├── WhirlIslandB1F.blk ├── WhirlIslandB2F.asm ├── WhirlIslandB2F.blk ├── WhirlIslandCave.asm ├── WhirlIslandCave.blk ├── WhirlIslandLugiaChamber.asm ├── WhirlIslandLugiaChamber.blk ├── WhirlIslandNE.asm ├── WhirlIslandNE.blk ├── WhirlIslandNW.asm ├── WhirlIslandNW.blk ├── WhirlIslandSE.asm ├── WhirlIslandSE.blk ├── WhirlIslandSW.asm ├── WhirlIslandSW.blk ├── WillsRoom.asm ├── WillsRoom.blk ├── WiseTriosRoom.asm ├── WiseTriosRoom.blk └── unused │ ├── BetaAzaleaTown.blk │ ├── BetaBlackthornCity.blk │ ├── BetaBlank.blk │ ├── BetaCapsuleHouse.blk │ ├── BetaCaveTestMap.blk │ ├── BetaCeladonMansion1F.blk │ ├── BetaCeladonMansion2F.blk │ ├── BetaCherrygroveCity.blk │ ├── BetaCianwoodCity.blk │ ├── BetaCinnabarPokemonLabHallway.blk │ ├── BetaCinnabarPokemonLabRoom1.blk │ ├── BetaCinnabarPokemonLabRoom2.blk │ ├── BetaCinnabarPokemonLabRoom3.blk │ ├── BetaEcruteakCity.blk │ ├── BetaElevator.blk │ ├── BetaFastShipInsideCutOut.blk │ ├── BetaGoldenrodCity.blk │ ├── BetaHouse.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 │ ├── BetaRoute23.blk │ ├── BetaRuinsOfAlphUnsolvedPuzzleRoom.blk │ ├── BetaSilverCaveOutside.blk │ ├── BetaSlowpokeWell1F.blk │ ├── BetaSproutTower1.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 ├── fixed_words.asm ├── mobile_12.asm ├── mobile_12_2.asm ├── mobile_22.asm ├── mobile_22_2.asm ├── mobile_40.asm ├── mobile_41.asm ├── mobile_42.asm ├── mobile_45_2.asm ├── mobile_45_sprite_engine.asm ├── mobile_45_stadium.asm ├── mobile_46.asm ├── mobile_5b.asm ├── mobile_5c.asm ├── mobile_5e.asm ├── mobile_5f.asm ├── mobile_menu.asm ├── news │ ├── news.asm │ ├── news_1.bin │ ├── news_2.bin │ └── news_3.bin └── print_opp_message.asm ├── ram.asm ├── ram ├── hram.asm ├── sram.asm ├── vram.asm └── wram.asm ├── rgbdscheck.asm ├── roms.sha1 ├── tools ├── .gitignore ├── Makefile ├── common.h ├── gbcpal.c ├── gfx.c ├── 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 ├── make_patch.c ├── png_dimensions.c ├── pokemon_animation.c ├── pokemon_animation_graphics.c ├── scan_includes.c ├── stadium.c └── unnamed.py └── vc ├── pokecrystal11.constants.asm └── pokecrystal11.patch.template /data/phone/permanent_numbers.asm: -------------------------------------------------------------------------------- 1 | PermanentNumbers: 2 | db PHONECONTACT_MOM 3 | db PHONECONTACT_ELM 4 | db -1 ; end 5 | -------------------------------------------------------------------------------- /data/phone/text/unused.asm: -------------------------------------------------------------------------------- 1 | UnusedPhoneText: 2 | text "Good morning." 3 | done 4 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | markdown: gfm 2 | -------------------------------------------------------------------------------- /docs/images/port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/docs/images/port.png -------------------------------------------------------------------------------- /engine/battle/battlestart_copytilemapatonce.asm: -------------------------------------------------------------------------------- 1 | BattleStart_CopyTilemapAtOnce: 2 | call CGBOnly_CopyTilemapAtOnce 3 | ret 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 | farwritetext UnusedPhoneText 3 | end 4 | -------------------------------------------------------------------------------- /gfx/battle/balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/battle/balls.png -------------------------------------------------------------------------------- /gfx/battle/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/battle/dude.png -------------------------------------------------------------------------------- /gfx/battle/exp_bar.pal: -------------------------------------------------------------------------------- 1 | ; blue 2 | RGB 30, 26, 15 3 | RGB 04, 17, 31 4 | -------------------------------------------------------------------------------- /gfx/battle/expbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/battle/expbar.png -------------------------------------------------------------------------------- /gfx/card_flip/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/card_flip/off.png -------------------------------------------------------------------------------- /gfx/card_flip/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/card_flip/on.png -------------------------------------------------------------------------------- /gfx/credits/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/credits/border.png -------------------------------------------------------------------------------- /gfx/credits/ditto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/credits/ditto.png -------------------------------------------------------------------------------- /gfx/credits/pichu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/credits/pichu.png -------------------------------------------------------------------------------- /gfx/credits/theend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/credits/theend.png -------------------------------------------------------------------------------- /gfx/debug/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/debug/up_arrow.png -------------------------------------------------------------------------------- /gfx/emotes/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/emotes/bolt.png -------------------------------------------------------------------------------- /gfx/emotes/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/emotes/fish.png -------------------------------------------------------------------------------- /gfx/emotes/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/emotes/happy.png -------------------------------------------------------------------------------- /gfx/emotes/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/emotes/heart.png -------------------------------------------------------------------------------- /gfx/emotes/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/emotes/sad.png -------------------------------------------------------------------------------- /gfx/emotes/shock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/emotes/shock.png -------------------------------------------------------------------------------- /gfx/emotes/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/emotes/sleep.png -------------------------------------------------------------------------------- /gfx/evo/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/evo/bubble.png -------------------------------------------------------------------------------- /gfx/evo/egg_hatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/evo/egg_hatch.png -------------------------------------------------------------------------------- /gfx/font/bg_text.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 08, 19, 28 3 | RGB 05, 05, 16 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/font/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/font/black.png -------------------------------------------------------------------------------- /gfx/font/english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/font/english.png -------------------------------------------------------------------------------- /gfx/font/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/font/font.png -------------------------------------------------------------------------------- /gfx/font/overworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/font/overworld.png -------------------------------------------------------------------------------- /gfx/font/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/font/space.png -------------------------------------------------------------------------------- /gfx/font/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/font/up_arrow.png -------------------------------------------------------------------------------- /gfx/footprints/252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/footprints/252.png -------------------------------------------------------------------------------- /gfx/footprints/253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/footprints/253.png -------------------------------------------------------------------------------- /gfx/footprints/254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/footprints/254.png -------------------------------------------------------------------------------- /gfx/footprints/255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/footprints/255.png -------------------------------------------------------------------------------- /gfx/footprints/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/footprints/256.png -------------------------------------------------------------------------------- /gfx/footprints/mew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/footprints/mew.png -------------------------------------------------------------------------------- /gfx/footprints/muk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/footprints/muk.png -------------------------------------------------------------------------------- /gfx/frames/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/frames/1.png -------------------------------------------------------------------------------- /gfx/frames/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/frames/2.png -------------------------------------------------------------------------------- /gfx/frames/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/frames/3.png -------------------------------------------------------------------------------- /gfx/frames/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/frames/4.png -------------------------------------------------------------------------------- /gfx/frames/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/frames/5.png -------------------------------------------------------------------------------- /gfx/frames/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/frames/6.png -------------------------------------------------------------------------------- /gfx/frames/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/frames/7.png -------------------------------------------------------------------------------- /gfx/frames/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/frames/8.png -------------------------------------------------------------------------------- /gfx/frames/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/frames/9.png -------------------------------------------------------------------------------- /gfx/icons/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/bat.png -------------------------------------------------------------------------------- /gfx/icons/bigmon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/bigmon.png -------------------------------------------------------------------------------- /gfx/icons/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/bird.png -------------------------------------------------------------------------------- /gfx/icons/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/blob.png -------------------------------------------------------------------------------- /gfx/icons/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/bug.png -------------------------------------------------------------------------------- /gfx/icons/clefairy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/clefairy.png -------------------------------------------------------------------------------- /gfx/icons/diglett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/diglett.png -------------------------------------------------------------------------------- /gfx/icons/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/egg.png -------------------------------------------------------------------------------- /gfx/icons/equine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/equine.png -------------------------------------------------------------------------------- /gfx/icons/fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/fighter.png -------------------------------------------------------------------------------- /gfx/icons/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/fish.png -------------------------------------------------------------------------------- /gfx/icons/fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/fox.png -------------------------------------------------------------------------------- /gfx/icons/geodude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/geodude.png -------------------------------------------------------------------------------- /gfx/icons/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/ghost.png -------------------------------------------------------------------------------- /gfx/icons/gyarados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/gyarados.png -------------------------------------------------------------------------------- /gfx/icons/ho_oh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/ho_oh.png -------------------------------------------------------------------------------- /gfx/icons/lapras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/lapras.png -------------------------------------------------------------------------------- /gfx/icons/lugia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/lugia.png -------------------------------------------------------------------------------- /gfx/icons/monster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/monster.png -------------------------------------------------------------------------------- /gfx/icons/moth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/moth.png -------------------------------------------------------------------------------- /gfx/icons/oddish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/oddish.png -------------------------------------------------------------------------------- /gfx/icons/pikachu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/pikachu.png -------------------------------------------------------------------------------- /gfx/icons/poliwag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/poliwag.png -------------------------------------------------------------------------------- /gfx/icons/serpent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/serpent.png -------------------------------------------------------------------------------- /gfx/icons/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/shell.png -------------------------------------------------------------------------------- /gfx/icons/slowpoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/slowpoke.png -------------------------------------------------------------------------------- /gfx/icons/snorlax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/snorlax.png -------------------------------------------------------------------------------- /gfx/icons/squirtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/squirtle.png -------------------------------------------------------------------------------- /gfx/icons/staryu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/staryu.png -------------------------------------------------------------------------------- /gfx/icons/unown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/unown.png -------------------------------------------------------------------------------- /gfx/icons/voltorb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/icons/voltorb.png -------------------------------------------------------------------------------- /gfx/intro/grass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/intro/grass1.png -------------------------------------------------------------------------------- /gfx/intro/grass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/intro/grass2.png -------------------------------------------------------------------------------- /gfx/intro/grass3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/intro/grass3.png -------------------------------------------------------------------------------- /gfx/intro/grass4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/intro/grass4.png -------------------------------------------------------------------------------- /gfx/intro/gs_magikarp_bg.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 18, 23, 31 3 | RGB 15, 20, 31 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/intro/gs_magikarp_ob.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 31, 31, 12 3 | RGB 08, 16, 28 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/intro/gs_shellder_lapras_bg.pal: -------------------------------------------------------------------------------- 1 | RGB 19, 31, 19 2 | RGB 18, 23, 31 3 | RGB 11, 21, 28 4 | RGB 04, 16, 24 5 | -------------------------------------------------------------------------------- /gfx/intro/pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/intro/pulse.png -------------------------------------------------------------------------------- /gfx/intro/unown_1.pal: -------------------------------------------------------------------------------- 1 | RGB 24, 12, 09 2 | RGB 31, 31, 31 3 | RGB 12, 00, 31 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/intro/unown_2.pal: -------------------------------------------------------------------------------- 1 | RGB 24, 12, 09 2 | RGB 31, 31, 31 3 | RGB 31, 31, 31 4 | RGB 31, 31, 31 5 | -------------------------------------------------------------------------------- /gfx/intro/unowns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/intro/unowns.png -------------------------------------------------------------------------------- /gfx/mail/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/cloud.png -------------------------------------------------------------------------------- /gfx/mail/ditto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/ditto.png -------------------------------------------------------------------------------- /gfx/mail/dragonite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/dragonite.png -------------------------------------------------------------------------------- /gfx/mail/dratini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/dratini.png -------------------------------------------------------------------------------- /gfx/mail/eevee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/eevee.png -------------------------------------------------------------------------------- /gfx/mail/flower_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/flower_1.png -------------------------------------------------------------------------------- /gfx/mail/flower_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/flower_2.png -------------------------------------------------------------------------------- /gfx/mail/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/grass.png -------------------------------------------------------------------------------- /gfx/mail/lapras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/lapras.png -------------------------------------------------------------------------------- /gfx/mail/mew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/mew.png -------------------------------------------------------------------------------- /gfx/mail/natu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/natu.png -------------------------------------------------------------------------------- /gfx/mail/oddish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/oddish.png -------------------------------------------------------------------------------- /gfx/mail/poliwag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/poliwag.png -------------------------------------------------------------------------------- /gfx/mail/sentret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/sentret.png -------------------------------------------------------------------------------- /gfx/mail/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mail/wave.png -------------------------------------------------------------------------------- /gfx/mobile/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mobile/card.png -------------------------------------------------------------------------------- /gfx/mobile/card_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mobile/card_2.png -------------------------------------------------------------------------------- /gfx/mobile/dialing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mobile/dialing.png -------------------------------------------------------------------------------- /gfx/mobile/dialpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mobile/dialpad.png -------------------------------------------------------------------------------- /gfx/mobile/pichu_border_bg.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 30, 30 2 | RGB 2, 0, 0 3 | RGB 10, 9, 9 4 | RGB 15, 14, 14 5 | -------------------------------------------------------------------------------- /gfx/mobile/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/mobile/select.png -------------------------------------------------------------------------------- /gfx/mystery_gift/gs_mystery_gift.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 09, 31, 31 3 | RGB 10, 12, 31 4 | RGB 00, 03, 19 5 | -------------------------------------------------------------------------------- /gfx/mystery_gift/mobile_text.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 26, 31, 00 3 | RGB 20, 16, 03 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/mystery_gift/name_card_bg.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 23, 16, 07 3 | RGB 23, 07, 07 4 | RGB 03, 07, 20 5 | -------------------------------------------------------------------------------- /gfx/mystery_gift/name_card_ob.pal: -------------------------------------------------------------------------------- 1 | RGB 00, 00, 00 2 | RGB 07, 05, 31 3 | RGB 14, 18, 31 4 | RGB 31, 31, 31 5 | -------------------------------------------------------------------------------- /gfx/new_game/gender_screen.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 09, 30, 31 3 | RGB 01, 11, 31 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/overworld/heal_machine.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 31, 19, 10 3 | RGB 31, 07, 01 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/overworld/magnet_train_bg.tilemap: -------------------------------------------------------------------------------- 1 | LM\]LM\]11 11LM\]LM\] -------------------------------------------------------------------------------- /gfx/overworld/trainer_battle.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 18, 29 2 | RGB 31, 11, 15 3 | RGB 31, 05, 05 4 | RGB 07, 07, 07 5 | -------------------------------------------------------------------------------- /gfx/overworld/trainer_battle_dark.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 18, 29 2 | RGB 31, 05, 05 3 | RGB 31, 05, 05 4 | RGB 31, 05, 05 5 | -------------------------------------------------------------------------------- /gfx/pack/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/pack/pack.png -------------------------------------------------------------------------------- /gfx/pack/pack_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/pack/pack_f.png -------------------------------------------------------------------------------- /gfx/pack/pack_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/pack/pack_menu.png -------------------------------------------------------------------------------- /gfx/pack/pack_menu.tilemap: -------------------------------------------------------------------------------- 1 |  2 |   -------------------------------------------------------------------------------- /gfx/pc/orange.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 15, 00 2 | RGB 23, 12, 00 3 | RGB 15, 07, 00 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/pc/pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/pc/pc.png -------------------------------------------------------------------------------- /gfx/pc/pc_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/pc/pc_mail.png -------------------------------------------------------------------------------- /gfx/player/chris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/player/chris.png -------------------------------------------------------------------------------- /gfx/player/kris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/player/kris.png -------------------------------------------------------------------------------- /gfx/pokedex/cursor.pal: -------------------------------------------------------------------------------- 1 | RGB 00, 00, 00 2 | RGB 11, 23, 00 3 | RGB 07, 17, 00 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/pokedex/question_mark.pal: -------------------------------------------------------------------------------- 1 | RGB 11, 23, 00 2 | RGB 07, 17, 00 3 | RGB 06, 16, 03 4 | RGB 05, 12, 01 5 | -------------------------------------------------------------------------------- /gfx/pokegear/johto.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/pokegear/johto.bin -------------------------------------------------------------------------------- /gfx/pokegear/kanto.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/pokegear/kanto.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 28, 24, 10 3 | RGB 20, 09, 19 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 22, 09, 23 3 | RGB 12, 09, 21 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 25, 16, 18 3 | RGB 22, 03, 25 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 19, 19, 03 3 | RGB 21, 02, 21 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 24, 20, 21 3 | RGB 14, 05, 31 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/arbok/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 19, 11 3 | RGB 20, 10, 30 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 24, 17, 15 3 | RGB 19, 17, 01 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ariados/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 03, 26 3 | RGB 05, 09, 29 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/articuno/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 19, 26, 31 3 | RGB 13, 13, 22 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/azumarill/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/azumarill/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 20, 05 3 | RGB 18, 09, 07 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/bayleef/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 12 2 | frame 2, 11 3 | frame 3, 15 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/bayleef/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/bayleef/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 27, 20, 13 3 | RGB 25, 15, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/beedrill/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 17, 20, 13 3 | RGB 08, 07, 27 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 28, 11, 06 3 | RGB 11, 14, 25 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/bellsprout/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 20, 07 3 | RGB 20, 10, 21 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 14, 21, 07 3 | RGB 16, 16, 20 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/blissey/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 4, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/blissey/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 13, 29 3 | RGB 14, 13, 24 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 20, 28, 11 3 | RGB 31, 10, 06 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 31, 15, 23 3 | RGB 15, 31, 00 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 27, 24, 06 3 | RGB 31, 12, 17 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/celebi/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 15, 15 3 | RGB 15, 04, 18 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 27, 25, 19 3 | RGB 13, 19, 01 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 20, 15, 21 3 | RGB 08, 21, 14 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 31, 24, 06 3 | RGB 31, 16, 02 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/charmeleon/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 21, 15 3 | RGB 23, 09, 13 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 29, 23, 12 3 | RGB 26, 14, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/chinchou/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/chinchou/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 28, 12 3 | RGB 12, 14, 20 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 31, 13, 25 3 | RGB 08, 18, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/clefairy/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 13, 25 3 | RGB 08, 18, 00 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 31, 13, 25 3 | RGB 08, 18, 00 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 20, 12, 28 3 | RGB 11, 04, 31 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 13, 25, 28 3 | RGB 07, 14, 10 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 29, 12, 19 3 | RGB 07, 15, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/croconaw/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/croconaw/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 4, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/croconaw/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 21, 14 3 | RGB 13, 09, 23 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 22, 22, 23 3 | RGB 11, 15, 09 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/cyndaquil/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 10 3 | frame 4, 10 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/cyndaquil/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 29, 23, 09 3 | RGB 22, 00, 19 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 31, 26, 00 3 | RGB 26, 01, 26 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 20, 19, 20 3 | RGB 18, 11, 14 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 19, 11, 04 3 | RGB 12, 06, 27 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 17, 22, 28 3 | RGB 09, 12, 27 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 31, 24, 01 3 | RGB 18, 16, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/doduo/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 28, 23, 00 3 | RGB 18, 16, 00 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, 21, 20 3 | RGB 20, 10, 07 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dragonair/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 19, 31 3 | RGB 20, 15, 31 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dragonite/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 17, 19, 14 3 | RGB 19, 00, 14 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 21, 19, 24 3 | RGB 14, 11, 24 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/drowzee/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 24, 13, 27 3 | RGB 18, 00, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dugtrio/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 19, 11, 04 3 | RGB 12, 06, 27 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/dunsparce/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 5, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/dunsparce/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 24, 06 3 | RGB 31, 05, 21 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/eevee/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 19, 19, 21 3 | RGB 12, 14, 13 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 30, 26, 11 3 | RGB 23, 16, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/ekans/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 23, 13 3 | RGB 09, 11, 05 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 31, 25, 00 3 | RGB 18, 20, 00 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 20, 20, 17 3 | RGB 09, 02, 28 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 31, 24, 05 3 | RGB 15, 15, 17 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 20, 10, 01 3 | RGB 10, 10, 08 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 14, 31, 10 3 | RGB 10, 16, 08 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 23, 25, 06 3 | RGB 19, 12, 09 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 19, 17, 08 3 | RGB 24, 14, 09 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, 16, 14 3 | RGB 12, 20, 01 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 16, 16, 10 3 | RGB 24, 17, 07 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/feraligatr/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/feraligatr/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/feraligatr/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 08, 17, 13 3 | RGB 12, 07, 31 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 31, 16, 29 3 | RGB 16, 08, 31 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 30, 17, 01 3 | RGB 24, 09, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/forretress/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 5, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/forretress/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 16, 02 3 | RGB 10, 10, 01 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/furret/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/furret/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 30, 13, 31 3 | RGB 15, 10, 02 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 16, 17, 30 3 | RGB 05, 07, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/gengar/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 00, 29 3 | RGB 15, 12, 23 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 24, 17, 15 3 | RGB 15, 13, 07 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 31, 19, 00 3 | RGB 05, 04, 31 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/gligar/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 35 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/gligar/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 1, 35 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/gligar/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 19, 15, 19 3 | RGB 06, 06, 31 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 31, 21, 05 3 | RGB 13, 17, 12 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 29, 12, 19 3 | RGB 07, 15, 00 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 29, 19, 00 3 | RGB 30, 14, 00 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 28, 10, 13 3 | RGB 07, 17, 30 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 25, 15, 12 3 | RGB 19, 07, 03 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/granbull/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 2, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/granbull/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 19, 20, 16 3 | RGB 14, 12, 12 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 23, 14, 12 3 | RGB 16, 11, 07 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 16, 19, 01 3 | RGB 11, 10, 10 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 23, 20, 07 3 | RGB 21, 13, 00 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 25, 20, 08 3 | RGB 27, 10, 05 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 10, 09, 27 3 | RGB 08, 00, 19 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/heracross/anim.asm: -------------------------------------------------------------------------------- 1 | frame 0, 06 2 | frame 1, 20 3 | frame 2, 18 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/heracross/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/heracross/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 09, 24 3 | RGB 13, 03, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/hitmonchan/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 17, 12 3 | RGB 08, 03, 31 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 17, 21, 05 3 | RGB 13, 08, 13 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, 20 3 | RGB 17, 07, 29 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 25, 20, 00 3 | RGB 31, 08, 04 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/hoothoot/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 22, 06 3 | RGB 22, 02, 24 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 14, 29, 06 3 | RGB 09, 12, 03 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 31, 12, 24 3 | RGB 12, 15, 31 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 19, 18, 20 3 | RGB 08, 07, 20 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 21, 19, 18 3 | RGB 08, 07, 24 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 30, 09, 25 3 | RGB 18, 10, 13 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 31, 17, 31 3 | RGB 09, 24, 03 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 20, 28, 11 3 | RGB 31, 24, 09 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 31, 17, 31 3 | RGB 09, 24, 03 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 25, 22, 00 3 | RGB 15, 15, 06 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 25, 16, 29 3 | RGB 31, 08, 31 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 14, 02, 15 3 | RGB 31, 09, 27 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 23, 24, 20 3 | RGB 14, 18, 10 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 19, 20, 11 3 | RGB 10, 15, 10 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 28, 24, 10 3 | RGB 20, 09, 19 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 20, 27, 04 3 | RGB 13, 17, 07 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/kangaskhan/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 16, 19 3 | RGB 03, 11, 03 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 20, 17, 15 3 | RGB 17, 11, 19 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 21, 22, 09 3 | RGB 12, 13, 11 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 16, 20, 25 3 | RGB 09, 12, 23 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 21, 20, 22 3 | RGB 18, 15, 04 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/lanturn/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/lanturn/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 23, 10 3 | RGB 16, 10, 31 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 31, 13, 31 3 | RGB 16, 11, 31 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/larvitar/anim.asm: -------------------------------------------------------------------------------- 1 | frame 3, 12 2 | frame 1, 12 3 | frame 2, 28 4 | frame 3, 08 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/larvitar/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/larvitar/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 23, 10 3 | RGB 20, 07, 23 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 31, 26, 00 3 | RGB 31, 17, 00 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 31, 26, 00 3 | RGB 31, 17, 00 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 24, 22, 09 3 | RGB 28, 09, 14 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/lugia/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 28, 28 3 | RGB 27, 00, 14 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 14, 17, 11 3 | RGB 09, 12, 04 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 14, 16, 11 3 | RGB 07, 06, 25 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 15, 14, 11 3 | RGB 06, 08, 09 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 30, 26, 09 3 | RGB 31, 16, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/magcargo/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/magcargo/anim_idle.asm: -------------------------------------------------------------------------------- 1 | frame 1, 60 2 | endanim 3 | -------------------------------------------------------------------------------- /gfx/pokemon/magcargo/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 12, 11, 28 3 | RGB 15, 06, 06 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 25, 24, 00 3 | RGB 16, 16, 00 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 31, 14, 30 3 | RGB 24, 04, 14 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 19, 20, 19 3 | RGB 20, 07, 07 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/magneton/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 16, 18 3 | RGB 18, 11, 11 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 19, 22, 11 3 | RGB 20, 16, 07 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 24, 27, 31 3 | RGB 06, 17, 31 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 31, 16, 31 3 | RGB 10, 05, 19 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 08, 23, 11 3 | RGB 31, 03, 30 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, 21, 15 3 | RGB 14, 15, 04 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/meganium/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/meganium/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 24, 24, 00 3 | RGB 28, 12, 05 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 31, 22, 12 3 | RGB 26, 02, 18 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 28, 19, 13 3 | RGB 24, 14, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/mew/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 24, 31 3 | RGB 07, 11, 26 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 19, 21, 22 3 | RGB 15, 15, 00 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 23, 22, 26 3 | RGB 29, 10, 13 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/misdreavus/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 18 2 | frame 2, 13 3 | frame 3, 13 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/misdreavus/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 4, 08 3 | frame 0, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/misdreavus/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 25, 03 3 | RGB 15, 14, 03 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/moltres/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 11, 14 3 | RGB 21, 01, 00 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 31, 11, 31 3 | RGB 17, 19, 00 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 15, 20, 09 3 | RGB 10, 13, 03 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 29, 31, 03 3 | RGB 20, 02, 22 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, 30, 19 3 | RGB 21, 21, 10 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 13, 17, 31 3 | RGB 15, 09, 23 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 31, 16, 31 3 | RGB 11, 13, 08 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 27, 17, 28 3 | RGB 05, 17, 01 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 18, 21, 31 3 | RGB 17, 08, 15 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 31, 17, 30 3 | RGB 06, 15, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/nidorino/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 23, 31 3 | RGB 23, 04, 25 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 27, 22, 25 3 | RGB 17, 17, 23 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 18, 23, 04 3 | RGB 23, 10, 06 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, 28, 14 3 | RGB 20, 18, 03 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 31, 26, 04 3 | RGB 08, 18, 11 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 23, 19, 10 3 | RGB 12, 11, 11 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 25, 28, 02 3 | RGB 12, 11, 15 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 15, 21, 04 3 | RGB 14, 11, 07 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 27, 19, 03 3 | RGB 14, 13, 01 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 31, 21, 09 3 | RGB 18, 16, 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 31, 28, 10 3 | RGB 28, 09, 27 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 22, 24, 25 3 | RGB 24, 01, 06 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 31, 17, 00 3 | RGB 20, 02, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pidgeot/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 20, 14 3 | RGB 15, 17, 02 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 21, 19, 05 3 | RGB 19, 14, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pidgey/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 30, 28, 12 3 | RGB 20, 19, 08 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pikachu/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 17, 00 3 | RGB 20, 02, 11 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/piloswine/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 20 2 | frame 2, 10 3 | frame 3, 10 4 | endanim 5 | -------------------------------------------------------------------------------- /gfx/pokemon/piloswine/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 12 3 | frame 3, 12 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/piloswine/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 22, 19, 00 3 | RGB 19, 11, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pineco/anim.asm: -------------------------------------------------------------------------------- 1 | frame 1, 06 2 | frame 2, 18 3 | endanim 4 | -------------------------------------------------------------------------------- /gfx/pokemon/pineco/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/pineco/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 31, 05 3 | RGB 28, 10, 05 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 23, 23, 09 3 | RGB 11, 11, 15 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 25, 19, 31 3 | RGB 11, 16, 15 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/poliwag/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 08, 17 3 | RGB 08, 08, 29 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 09, 16, 26 3 | RGB 08, 10, 31 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 11, 24, 26 3 | RGB 08, 17, 15 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 23, 19, 16 3 | RGB 19, 13, 12 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 14, 03, 27 3 | RGB 12, 11, 25 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 20, 19, 24 3 | RGB 08, 11, 23 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/primeape/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 17, 06 3 | RGB 16, 16, 06 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 21, 19, 31 3 | RGB 10, 11, 20 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/pupitar/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/pupitar/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 19, 11, 28 3 | RGB 15, 06, 06 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 23, 21, 26 3 | RGB 28, 04, 30 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/quilava/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/quilava/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 29, 23, 09 3 | RGB 22, 00, 19 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 24, 21, 22 3 | RGB 18, 00, 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 21, 19, 20 3 | RGB 24, 19, 02 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/raikou/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 15, 00 3 | RGB 25, 21, 00 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, 19, 20 3 | RGB 17, 10, 27 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 23, 25, 15 3 | RGB 26, 16, 03 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 22, 23, 19 3 | RGB 20, 17, 13 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 14, 11, 14 3 | RGB 09, 09, 08 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 22, 21, 21 3 | RGB 12, 12, 17 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 22, 15, 17 3 | RGB 15, 11, 13 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 16, 16, 10 3 | RGB 11, 08, 15 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 16, 18, 04 3 | RGB 21, 06, 01 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 22, 22, 08 3 | RGB 06, 14, 07 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 17, 24, 00 3 | RGB 28, 09, 00 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 31, 11, 27 3 | RGB 10, 04, 29 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 20, 19, 22 3 | RGB 29, 07, 05 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/sentret/anim.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 15 3 | frame 1, 15 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/sentret/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 07 3 | frame 2, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/sentret/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 24, 19, 02 3 | RGB 21, 05, 20 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 24, 17, 07 3 | RGB 21, 09, 04 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/shuckle/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 05 3 | frame 4, 05 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/shuckle/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 22, 05 3 | RGB 15, 07, 31 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, 22, 13 3 | RGB 05, 15, 01 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 30, 24, 03 3 | RGB 18, 00, 20 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, 10, 31 3 | RGB 18, 18, 00 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 31, 10, 31 3 | RGB 09, 05, 31 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 22, 11, 26 3 | RGB 17, 00, 31 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/slugma/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 5, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/slugma/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 21, 21 3 | RGB 11, 11, 11 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 24, 25, 08 3 | RGB 09, 23, 02 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 31, 26, 07 3 | RGB 31, 12, 25 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 28, 28, 09 3 | RGB 31, 09, 31 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 27, 22, 11 3 | RGB 09, 07, 31 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 18, 21, 24 3 | RGB 26, 00, 26 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 30, 26, 00 3 | RGB 24, 13, 01 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 31, 12, 31 3 | RGB 20, 09, 31 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 13, 23, 08 3 | RGB 17, 25, 30 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/stantler/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 3, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/stantler/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 19, 20, 07 3 | RGB 20, 05, 01 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 29, 09, 11 3 | RGB 11, 11, 31 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/staryu/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 16, 19 3 | RGB 08, 13, 30 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 19, 15, 03 3 | RGB 15, 08, 08 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/sudowoodo/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 09 3 | frame 3, 09 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/sudowoodo/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 20, 08 3 | RGB 29, 03, 12 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/suicune/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 25, 24, 31 3 | RGB 16, 19, 24 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 31, 31, 04 3 | RGB 18, 18, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/sunkern/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/sunkern/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/sunkern/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 31, 01 3 | RGB 14, 22, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/swinub/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/swinub/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 3, 07 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/swinub/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 15, 18, 30 3 | RGB 31, 06, 04 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 18, 30, 00 3 | RGB 17, 06, 06 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 30, 27, 14 3 | RGB 09, 14, 10 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/teddiursa/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 3 2 | frame 0, 06 3 | frame 4, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/teddiursa/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 29, 10 3 | RGB 13, 20, 01 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 19, 19, 31 3 | RGB 08, 19, 13 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/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 17, 20, 31 3 | RGB 05, 20, 00 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 30, 26, 11 3 | RGB 08, 15, 31 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/togetic/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/togetic/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 24, 08 3 | RGB 02, 16, 31 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/totodile/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 18, 26, 15 3 | RGB 14, 09, 28 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/typhlosion/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 07 3 | frame 4, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/typhlosion/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 29, 23, 09 3 | RGB 22, 00, 19 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/tyranitar/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 08 3 | frame 5, 08 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/tyranitar/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 21, 18, 15 3 | RGB 19, 01, 31 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 19, 19, 18 3 | RGB 09, 13, 29 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 10, 11, 31 3 | RGB 06, 07, 05 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 14, 19, 31 3 | RGB 02, 11, 31 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/ursaring/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 5 2 | frame 0, 09 3 | frame 5, 09 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/ursaring/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 26, 29, 25 3 | RGB 18, 22, 00 4 | 5 | -------------------------------------------------------------------------------- /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 27, 21, 31 3 | RGB 15, 10, 24 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 16, 15, 31 3 | RGB 17, 06, 21 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 14, 17, 31 3 | RGB 11, 05, 22 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 18, 25, 11 3 | RGB 31, 22, 03 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/victreebel/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 23, 03 3 | RGB 14, 12, 31 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/vileplume/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 21, 03 3 | RGB 08, 15, 13 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/voltorb/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 20, 20, 17 3 | RGB 09, 02, 28 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/vulpix/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 24, 01 3 | RGB 22, 16, 01 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 13, 23, 08 3 | RGB 18, 19, 31 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/weedle/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 23, 27, 05 3 | RGB 26, 07, 29 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 22, 28, 07 3 | RGB 19, 09, 19 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/weezing/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 16, 20, 25 3 | RGB 09, 12, 23 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 31, 17, 31 3 | RGB 09, 24, 03 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, 07, 25 3 | RGB 07, 09, 16 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/wooper/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 06 3 | frame 3, 06 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/wooper/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 31, 17, 31 3 | RGB 31, 21, 00 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/xatu/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 19, 27, 00 3 | RGB 23, 12, 02 4 | 5 | -------------------------------------------------------------------------------- /gfx/pokemon/yanma/anim_idle.asm: -------------------------------------------------------------------------------- 1 | setrepeat 2 2 | frame 0, 04 3 | frame 3, 04 4 | dorepeat 1 5 | endanim 6 | -------------------------------------------------------------------------------- /gfx/pokemon/yanma/shiny.pal: -------------------------------------------------------------------------------- 1 | 2 | RGB 09, 26, 10 3 | RGB 13, 14, 30 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 31, 19, 00 3 | RGB 31, 04, 00 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 27, 15, 30 3 | RGB 10, 17, 06 4 | 5 | -------------------------------------------------------------------------------- /gfx/printer/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/printer/hp.png -------------------------------------------------------------------------------- /gfx/printer/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/printer/lv.png -------------------------------------------------------------------------------- /gfx/sgb/gbc_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sgb/gbc_only.png -------------------------------------------------------------------------------- /gfx/splash/ditto.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 13, 11, 00 3 | RGB 23, 12, 28 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/splash/ditto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/splash/ditto.png -------------------------------------------------------------------------------- /gfx/sprites/bill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/bill.png -------------------------------------------------------------------------------- /gfx/sprites/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/bird.png -------------------------------------------------------------------------------- /gfx/sprites/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/blue.png -------------------------------------------------------------------------------- /gfx/sprites/cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/cal.png -------------------------------------------------------------------------------- /gfx/sprites/elm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/elm.png -------------------------------------------------------------------------------- /gfx/sprites/koga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/koga.png -------------------------------------------------------------------------------- /gfx/sprites/kris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/kris.png -------------------------------------------------------------------------------- /gfx/sprites/kurt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/kurt.png -------------------------------------------------------------------------------- /gfx/sprites/lass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/lass.png -------------------------------------------------------------------------------- /gfx/sprites/mom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/mom.png -------------------------------------------------------------------------------- /gfx/sprites/n64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/n64.png -------------------------------------------------------------------------------- /gfx/sprites/oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/oak.png -------------------------------------------------------------------------------- /gfx/sprites/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/red.png -------------------------------------------------------------------------------- /gfx/sprites/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/rock.png -------------------------------------------------------------------------------- /gfx/sprites/sage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/sage.png -------------------------------------------------------------------------------- /gfx/sprites/snes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/snes.png -------------------------------------------------------------------------------- /gfx/sprites/surf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/surf.png -------------------------------------------------------------------------------- /gfx/sprites/twin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/twin.png -------------------------------------------------------------------------------- /gfx/sprites/will.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/sprites/will.png -------------------------------------------------------------------------------- /gfx/stats/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/stats/item.png -------------------------------------------------------------------------------- /gfx/stats/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/stats/mail.png -------------------------------------------------------------------------------- /gfx/stats/party_menu_bg.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 17, 19, 31 3 | RGB 14, 16, 31 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/stats/party_menu_bg_mobile.pal: -------------------------------------------------------------------------------- 1 | RGB 31, 31, 31 2 | RGB 31, 19, 24 3 | RGB 30, 10, 06 4 | RGB 00, 00, 00 5 | -------------------------------------------------------------------------------- /gfx/stats/stats.pal: -------------------------------------------------------------------------------- 1 | ; pink 2 | RGB 31, 19, 31 3 | ; green 4 | RGB 21, 31, 14 5 | ; blue 6 | RGB 17, 31, 31 7 | -------------------------------------------------------------------------------- /gfx/tilesets/lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/tilesets/lab.png -------------------------------------------------------------------------------- /gfx/tilesets/mansion_2.pal: -------------------------------------------------------------------------------- 1 | RGB 25, 24, 23 2 | RGB 20, 19, 19 3 | RGB 14, 16, 31 4 | RGB 07, 07, 07 5 | -------------------------------------------------------------------------------- /gfx/title/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/title/logo.png -------------------------------------------------------------------------------- /gfx/title/old_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/title/old_bg.png -------------------------------------------------------------------------------- /gfx/title/old_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/title/old_fg.png -------------------------------------------------------------------------------- /gfx/trade/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/trade/ball.png -------------------------------------------------------------------------------- /gfx/trade/border_cable_bottom.tilemap: -------------------------------------------------------------------------------- 1 | /'()/>??????????@*+,-.DE -------------------------------------------------------------------------------- /gfx/trade/border_cable_top.tilemap: -------------------------------------------------------------------------------- 1 | ?@ E -------------------------------------------------------------------------------- /gfx/trade/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/trade/bubble.png -------------------------------------------------------------------------------- /gfx/trade/cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/trade/cable.png -------------------------------------------------------------------------------- /gfx/trade/game_boy.tilemap: -------------------------------------------------------------------------------- 1 | 12222345667849::;8<=>>?@ABCCDEFGCHIJACKLMNOPPPQR -------------------------------------------------------------------------------- /gfx/trade/link_cable.tilemap: -------------------------------------------------------------------------------- 1 | CUVSSSSSSSSSCWXTTTTTTTTTCYZCCCCCCCCC -------------------------------------------------------------------------------- /gfx/trade/poof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/trade/poof.png -------------------------------------------------------------------------------- /gfx/trainers/cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/trainers/cal.png -------------------------------------------------------------------------------- /gfx/trainers/oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/trainers/oak.png -------------------------------------------------------------------------------- /gfx/trainers/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pret/pokecrystal/efceed133803c5ed2a162eafb4bfd739df98ea8f/gfx/trainers/red.png -------------------------------------------------------------------------------- /home/call_regs.asm: -------------------------------------------------------------------------------- 1 | ; Register aliases 2 | 3 | _hl_:: 4 | jp hl 5 | 6 | _de_:: 7 | push de 8 | ret 9 | -------------------------------------------------------------------------------- /maps/AzaleaGym.blk: -------------------------------------------------------------------------------- 1 |  2 | ! %& -------------------------------------------------------------------------------- /maps/BattleTower1F.blk: -------------------------------------------------------------------------------- 1 | *+)(  -------------------------------------------------------------------------------- /maps/BattleTowerBattleRoom.blk: -------------------------------------------------------------------------------- 1 |  2 | ## 3 | "! -------------------------------------------------------------------------------- /maps/BattleTowerElevator.blk: -------------------------------------------------------------------------------- 1 | &',- -------------------------------------------------------------------------------- /maps/BattleTowerHallway.blk: -------------------------------------------------------------------------------- 1 | %$$$$$$$$$$$ -------------------------------------------------------------------------------- /maps/BlackthornGym1F.blk: -------------------------------------------------------------------------------- 1 | ,,,,,+ 00 + )-+- - )-++-+---------- -------------------------------------------------------------------------------- /maps/BlackthornGym2F.blk: -------------------------------------------------------------------------------- 1 | ######- - ##(-# -#(-#--#----- -------------------------------------------------------------------------------- /maps/BrunosRoom.blk: -------------------------------------------------------------------------------- 1 | "4444,888,+888++,8,+++8++**-**-- -------------------------------------------------------------------------------- /maps/BurnedTower1F.blk: -------------------------------------------------------------------------------- 1 | !2432"4 3 63 3 525 5443 2 | 4  62% 3 | 54 3562 42 4 3 : 6 -------------------------------------------------------------------------------- /maps/CeladonCafe.blk: -------------------------------------------------------------------------------- 1 | -().,.  -------------------------------------------------------------------------------- /maps/CeladonGameCorner.blk: -------------------------------------------------------------------------------- 1 | ( (  '      -------------------------------------------------------------------------------- /maps/CeladonGameCornerPrizeRoom.blk: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /maps/CeladonGym.blk: -------------------------------------------------------------------------------- 1 |  ###  ##!" -------------------------------------------------------------------------------- /maps/CeladonMansion1F.blk: -------------------------------------------------------------------------------- 1 |   2 |     -------------------------------------------------------------------------------- /maps/CeladonMansion2F.blk: -------------------------------------------------------------------------------- 1 |   2 |     -------------------------------------------------------------------------------- /maps/CeladonMansion3F.blk: -------------------------------------------------------------------------------- 1 |     -------------------------------------------------------------------------------- /maps/CeladonMansionRoof.blk: -------------------------------------------------------------------------------- 1 | $%"#(),+&',+!+* -------------------------------------------------------------------------------- /maps/CeruleanGym.blk: -------------------------------------------------------------------------------- 1 | +++++76968.'')/. -/.4/.'& 2 | /.2&2/11311 -------------------------------------------------------------------------------- /maps/CianwoodGym.blk: -------------------------------------------------------------------------------- 1 | "! 2 |  5 5 3 |      4 |  &  -------------------------------------------------------------------------------- /maps/CinnabarIsland.blk: -------------------------------------------------------------------------------- 1 | dbQQ>???;dN>?,,)dN$W*,ed)dN1(,,,)dP\ !*,)d{{y|r(,)-{ 2 | {t(,)C-$W%kkkkkkkkk -------------------------------------------------------------------------------- /maps/Colosseum.blk: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /maps/CopycatsHouse1F.blk: -------------------------------------------------------------------------------- 1 | #   -------------------------------------------------------------------------------- /maps/CopycatsHouse2F.blk: -------------------------------------------------------------------------------- 1 |   %&'( -------------------------------------------------------------------------------- /maps/DanceTheater.blk: -------------------------------------------------------------------------------- 1 | ------,,,,,,.0000/*+* -------------------------------------------------------------------------------- /maps/DayCare.blk: -------------------------------------------------------------------------------- 1 |  2 |  3 |   4 |   5 | -------------------------------------------------------------------------------- /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/DragonShrine.blk: -------------------------------------------------------------------------------- 1 | "()($&%-%'&%%%'&,%,'*%.%+ -------------------------------------------------------------------------------- /maps/DragonsDen1F.blk: -------------------------------------------------------------------------------- 1 |   2 | * 3 | $ #   4 |  5 | )$ # -------------------------------------------------------------------------------- /maps/EarlsPokemonAcademy.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/EastWestGate.blk: -------------------------------------------------------------------------------- 1 | 99 ?#$> -------------------------------------------------------------------------------- /maps/EcruteakGym.blk: -------------------------------------------------------------------------------- 1 | "! 2 | 797 3 | 778 4 | 977 5 | 978778   & -------------------------------------------------------------------------------- /maps/ElmsHouse.blk: -------------------------------------------------------------------------------- 1 |    -------------------------------------------------------------------------------- /maps/ElmsLab.blk: -------------------------------------------------------------------------------- 1 |   ! 2 |  -------------------------------------------------------------------------------- /maps/FastShipCabins_NNW_NNE_NE.blk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 9 , 4 | 5 | / * , 5 6 | 77 66 5 -------------------------------------------------------------------------------- /maps/FastShipCabins_SW_SSW_NW.blk: -------------------------------------------------------------------------------- 1 | 4 2 | 89- 5 3 | 4 | 5 | 6 | --  6 7 7 | 8 | 7 6  6 -------------------------------------------------------------------------------- /maps/FightingDojo.blk: -------------------------------------------------------------------------------- 1 | $(%)$'&&'&' -------------------------------------------------------------------------------- /maps/FuchsiaGym.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/GiftShop.blk: -------------------------------------------------------------------------------- 1 |  !" -------------------------------------------------------------------------------- /maps/GoldenrodBikeShop.blk: -------------------------------------------------------------------------------- 1 | 2 |    -------------------------------------------------------------------------------- /maps/GoldenrodDeptStoreRoof.blk: -------------------------------------------------------------------------------- 1 | 01111972::=<::62::8>::634;4;4;5 -------------------------------------------------------------------------------- /maps/GoldenrodFlowerShop.blk: -------------------------------------------------------------------------------- 1 | 220/,.-  -------------------------------------------------------------------------------- /maps/GoldenrodGameCorner.blk: -------------------------------------------------------------------------------- 1 | +/0 ' ***     -------------------------------------------------------------------------------- /maps/GoldenrodGym.blk: -------------------------------------------------------------------------------- 1 |        %&    -------------------------------------------------------------------------------- /maps/HallOfFame.blk: -------------------------------------------------------------------------------- 1 | 30123+456++++<++++++++++++++++++=++ -------------------------------------------------------------------------------- /maps/House1.blk: -------------------------------------------------------------------------------- 1 |    -------------------------------------------------------------------------------- /maps/House2.blk: -------------------------------------------------------------------------------- 1 | )* -------------------------------------------------------------------------------- /maps/IcePathB2FBlackthornSide.blk: -------------------------------------------------------------------------------- 1 | "#:9$%%,-//- -------------------------------------------------------------------------------- /maps/IcePathB2FMahoganySide.blk: -------------------------------------------------------------------------------- 1 | "!#! -------------------------------------------------------------------------------- /maps/IcePathB3F.blk: -------------------------------------------------------------------------------- 1 | ; ; !;9" :#(#  -------------------------------------------------------------------------------- /maps/IndigoPlateauPokecenter1F.blk: -------------------------------------------------------------------------------- 1 | *, ' -------------------------------------------------------------------------------- /maps/KarensRoom.blk: -------------------------------------------------------------------------------- 1 | "--------**-**-- -------------------------------------------------------------------------------- /maps/KogasRoom.blk: -------------------------------------------------------------------------------- 1 | "4444!888!888!8!!8!**-**-- -------------------------------------------------------------------------------- /maps/KurtsHouse.blk: -------------------------------------------------------------------------------- 1 | #)12 356* -------------------------------------------------------------------------------- /maps/LancesRoom.blk: -------------------------------------------------------------------------------- 1 | (,.-)/20:>=?;851698<1<9851698<1<9851698<1<9851698<1<9+1+7 -------------------------------------------------------------------------------- /maps/LavRadioTower1F.blk: -------------------------------------------------------------------------------- 1 |   2 | 8/5636  55247 -------------------------------------------------------------------------------- /maps/LavenderTown.blk: -------------------------------------------------------------------------------- 1 | WW%{{{hi, ! !{yhi(|s|r{{7:~({{{{{{{y{({y{{ T!({{{{{{|}~({{wVw({{{{{{{{{(???;{>???, -------------------------------------------------------------------------------- /maps/MahoganyGym.blk: -------------------------------------------------------------------------------- 1 | '''''19916522/959/9.19996512.25.9/65-61--2 -------------------------------------------------------------------------------- /maps/MahoganyTown.blk: -------------------------------------------------------------------------------- 1 | qqqilrrrrm^GRZV=GWkiWZWjiGhihqppppppppq -------------------------------------------------------------------------------- /maps/Mart.blk: -------------------------------------------------------------------------------- 1 | '+"++++)(+*+++# -------------------------------------------------------------------------------- /maps/MobileBattleRoom.blk: -------------------------------------------------------------------------------- 1 | /1430=587>9<.;:=?-> -------------------------------------------------------------------------------- /maps/MobileTradeRoom.blk: -------------------------------------------------------------------------------- 1 | /1230=567>9<.;:=?-> -------------------------------------------------------------------------------- /maps/MrFujisHouse.blk: -------------------------------------------------------------------------------- 1 | 0 1  -------------------------------------------------------------------------------- /maps/MrPokemonsHouse.blk: -------------------------------------------------------------------------------- 1 |  '(  -------------------------------------------------------------------------------- /maps/NewBarkTown.blk: -------------------------------------------------------------------------------- 1 | GwGTEXbGbeeb -------------------------------------------------------------------------------- /maps/NorthSouthGate.blk: -------------------------------------------------------------------------------- 1 |     2 |  -------------------------------------------------------------------------------- /maps/OaksLab.blk: -------------------------------------------------------------------------------- 1 |    2 |  -------------------------------------------------------------------------------- /maps/OlivineCafe.blk: -------------------------------------------------------------------------------- 1 | **  -------------------------------------------------------------------------------- /maps/OlivineGym.blk: -------------------------------------------------------------------------------- 1 | %***&%&% !"&%&%&%&%&$#' -------------------------------------------------------------------------------- /maps/OlivineLighthouse1F.blk: -------------------------------------------------------------------------------- 1 | >=<=<=<> ><''''''<>>''><>'''>>'>< <>''>>'> >''>>:> ><''>>>< ><'''><> >'''>< <<=<.=<< -------------------------------------------------------------------------------- /maps/OlivineLighthouse2F.blk: -------------------------------------------------------------------------------- 1 | ><<=<=<> >>:'''''<>><<<<>'''>> <>''>><> >''>>1<> ><''>>''<<<''(><>''''''>< <=<=<=<< -------------------------------------------------------------------------------- /maps/OlivineLighthouse3F.blk: -------------------------------------------------------------------------------- 1 | >=>=>=<> ><1>'>:'<>>''>:>'''>>'><<<>''>>'> >''>>'<> ><'(>>''<<<'''><>''''''>< <=<=<=<< -------------------------------------------------------------------------------- /maps/OlivineLighthouse4F.blk: -------------------------------------------------------------------------------- 1 | >=>=<=<> ><'>('1'<>>:'>1>'''>>'>>:>>''>>'>><>>'(>>'<> ><''>>''<<<'''><>''''''>< <=<=<=<< -------------------------------------------------------------------------------- /maps/OlivineLighthouse5F.blk: -------------------------------------------------------------------------------- 1 | >=<=<=<> ><''''''<>>1'><>'''>>'><1<>'(>>'>'''>''>>'>'''>''>>'>'''>''><>>':'>'>< <<=<=<=< -------------------------------------------------------------------------------- /maps/OlivineLighthouse6F.blk: -------------------------------------------------------------------------------- 1 | >))))))> ><''''''<>>'><'<>'(>>'< 6<''>>'' '''>>'>- >''>>'<<'<<''><>''1'''>< <))))))< -------------------------------------------------------------------------------- /maps/PalletTown.blk: -------------------------------------------------------------------------------- 1 | RORO PRRRPN8989MN<=<=MNMNwV T!MNtt7:~MNwVw1MN 2 | 1tt 3 | 1MP 4 | edaaaaaO -------------------------------------------------------------------------------- /maps/PewterGym.blk: -------------------------------------------------------------------------------- 1 | 322245 632 2452 2652 262 2 & -------------------------------------------------------------------------------- /maps/PlayersHouse1F.blk: -------------------------------------------------------------------------------- 1 |  2 |    -------------------------------------------------------------------------------- /maps/PlayersHouse2F.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/Pokecenter1F.blk: -------------------------------------------------------------------------------- 1 |  ./'./ -------------------------------------------------------------------------------- /maps/Pokecenter2F.blk: -------------------------------------------------------------------------------- 1 | 1+ 2 | 28(8-)-) -------------------------------------------------------------------------------- /maps/PokemonFanClub.blk: -------------------------------------------------------------------------------- 1 | ))!"# $0 1 -------------------------------------------------------------------------------- /maps/PortPassage.blk: -------------------------------------------------------------------------------- 1 |  2 | %& 3 |  *)    ,//-    ,/- -------------------------------------------------------------------------------- /maps/PowerPlant.blk: -------------------------------------------------------------------------------- 1 |  , .). ).  44%$4.'.  -------------------------------------------------------------------------------- /maps/RadioTower1F.blk: -------------------------------------------------------------------------------- 1 | 1 1 1&+&. ,- -------------------------------------------------------------------------------- /maps/RadioTower2F.blk: -------------------------------------------------------------------------------- 1 | $ 2 |  =0;/ 539: 524 -------------------------------------------------------------------------------- /maps/RadioTower3F.blk: -------------------------------------------------------------------------------- 1 | 1 #('')<7# -------------------------------------------------------------------------------- /maps/RadioTower4F.blk: -------------------------------------------------------------------------------- 1 | 1  #  #'#53''#524 -------------------------------------------------------------------------------- /maps/RadioTower5F.blk: -------------------------------------------------------------------------------- 1 | 1#  2 | #='"#636>#5245> -------------------------------------------------------------------------------- /maps/RedsHouse1F.blk: -------------------------------------------------------------------------------- 1 |  2 |    -------------------------------------------------------------------------------- /maps/RedsHouse2F.blk: -------------------------------------------------------------------------------- 1 |   " -------------------------------------------------------------------------------- /maps/Route10South.blk: -------------------------------------------------------------------------------- 1 | +WWWWWWW*)1111111()1111>;\()>??,)11(){$WWW%\(){{{{{{{{(,??;{{ T!(,,+%\ahi(,,){11hi, -------------------------------------------------------------------------------- /maps/Route16.blk: -------------------------------------------------------------------------------- 1 |  wVww !27~jgCCdkk -------------------------------------------------------------------------------- /maps/Route33.blk: -------------------------------------------------------------------------------- 1 | qqqqqqqirrrrnqqihqqi 2 | hqqilsrm 3 | /NGjpk 4 | RWKlnihilm -------------------------------------------------------------------------------- /maps/Route35NationalParkGate.blk: -------------------------------------------------------------------------------- 1 | ).,(6 6%& -------------------------------------------------------------------------------- /maps/Route36NationalParkGate.blk: -------------------------------------------------------------------------------- 1 | -,0 #7$ -------------------------------------------------------------------------------- /maps/Route37.blk: -------------------------------------------------------------------------------- 1 | `GWWW`b` -------------------------------------------------------------------------------- /maps/Route39Barn.blk: -------------------------------------------------------------------------------- 1 | %%%% && & !" -------------------------------------------------------------------------------- /maps/Route5.blk: -------------------------------------------------------------------------------- 1 | m'nN'Mm'n N'Mm'nN'Mm'n N'Mm^n89N^Mm1n11N1Mm1nN !m1111111|~RROPRR -------------------------------------------------------------------------------- /maps/Route6.blk: -------------------------------------------------------------------------------- 1 | /7:~/ !/|~111111111 1 1111111  1 ed 111111 ed 1 QQc1bQQQQQ -------------------------------------------------------------------------------- /maps/Route7.blk: -------------------------------------------------------------------------------- 1 | UUUUUY UUUY /[11 !897~f\1 2 | -------------------------------------------------------------------------------- /maps/RuinsOfAlphAerodactylWordRoom.blk: -------------------------------------------------------------------------------- 1 |  2 | !"#$%    -------------------------------------------------------------------------------- /maps/RuinsOfAlphItemRoom.blk: -------------------------------------------------------------------------------- 1 | 451212,+ -------------------------------------------------------------------------------- /maps/RuinsOfAlphKabutoWordRoom.blk: -------------------------------------------------------------------------------- 1 |  2 | !"#$%    -------------------------------------------------------------------------------- /maps/RuinsOfAlphOmanyteWordRoom.blk: -------------------------------------------------------------------------------- 1 |  2 | !"#$%&'()*+,-    -------------------------------------------------------------------------------- /maps/RuinsOfAlphPuzzleChamber.blk: -------------------------------------------------------------------------------- 1 | -0 ,+ -------------------------------------------------------------------------------- /maps/RuinsOfAlphResearchCenter.blk: -------------------------------------------------------------------------------- 1 | ;()  -------------------------------------------------------------------------------- /maps/SaffronGym.blk: -------------------------------------------------------------------------------- 1 |  2 |         3 |         4 |   6   $   -------------------------------------------------------------------------------- /maps/SeafoamGym.blk: -------------------------------------------------------------------------------- 1 |   2 |  3 | )$* # -------------------------------------------------------------------------------- /maps/SilphCo1F.blk: -------------------------------------------------------------------------------- 1 | 5544?---  -------------------------------------------------------------------------------- /maps/SoulHouse.blk: -------------------------------------------------------------------------------- 1 | (+*(+*+((( +* -------------------------------------------------------------------------------- /maps/SproutTower1F.blk: -------------------------------------------------------------------------------- 1 |    2 |    3 |   4 |   5 |    10  -------------------------------------------------------------------------------- /maps/SproutTower2F.blk: -------------------------------------------------------------------------------- 1 |            2 |    0  -------------------------------------------------------------------------------- /maps/SproutTower3F.blk: -------------------------------------------------------------------------------- 1 |  ./   2 |   3 |     4 | * * 5 |  *   1  0  -------------------------------------------------------------------------------- /maps/TinTower1F.blk: -------------------------------------------------------------------------------- 1 | "! 2 |   3 | "  4 | !  5 | "  ! "! -------------------------------------------------------------------------------- /maps/TinTower2F.blk: -------------------------------------------------------------------------------- 1 |  "!      * * 2 | * * 3 | * * 4 | *     5 |  -------------------------------------------------------------------------------- /maps/TinTower3F.blk: -------------------------------------------------------------------------------- 1 | !*****" +++++  ,,,,,  ***> ++++ >****  , ,  + +  -------------------------------------------------------------------------------- /maps/TinTower4F.blk: -------------------------------------------------------------------------------- 1 | !" *!" ,,  *=++> ++=+> **=*> ,, =,> **=++*> ++++++ -------------------------------------------------------------------------------- /maps/TinTower5F.blk: -------------------------------------------------------------------------------- 1 |  ,,?,,  <++ =+<=,>=+*= =* *==+> ++=+? ,,,>=*,,>**>+++ * -------------------------------------------------------------------------------- /maps/TinTower6F.blk: -------------------------------------------------------------------------------- 1 | ;;;;;;  >****** >** *  *  * ,,,, ****** ** -------------------------------------------------------------------------------- /maps/TinTower7F.blk: -------------------------------------------------------------------------------- 1 | ! ++  $,,  **=> $=> $ => => +++ ***$ -------------------------------------------------------------------------------- /maps/TinTower8F.blk: -------------------------------------------------------------------------------- 1 | !" $ $ *  * *$ $ * $ **  + * , $  -------------------------------------------------------------------------------- /maps/TinTower9F.blk: -------------------------------------------------------------------------------- 1 |  !!""  $ $ * *$ $**  ***  *$$+++  * ,,,  -------------------------------------------------------------------------------- /maps/TinTowerRoof.blk: -------------------------------------------------------------------------------- 1 | ######-### ### ### ############ -------------------------------------------------------------------------------- /maps/TradeCenter.blk: -------------------------------------------------------------------------------- 1 | "!  -------------------------------------------------------------------------------- /maps/TrainerHouse1F.blk: -------------------------------------------------------------------------------- 1 | ))%!"# $&'  -------------------------------------------------------------------------------- /maps/TrainerHouseB1F.blk: -------------------------------------------------------------------------------- 1 | ! 16 3<21="0007"0007"0007>444? -------------------------------------------------------------------------------- /maps/UndergroundPath.blk: -------------------------------------------------------------------------------- 1 |  2 |             -------------------------------------------------------------------------------- /maps/UndergroundPathEntrance.blk: -------------------------------------------------------------------------------- 1 | 4;+ <0 %& -------------------------------------------------------------------------------- /maps/VermilionGym.blk: -------------------------------------------------------------------------------- 1 | "&&&$#% ! !  -------------------------------------------------------------------------------- /maps/VictoryRoadGate.blk: -------------------------------------------------------------------------------- 1 | '''')*''''''''''''%&''''%&'''''''''''' 0'''''''' ''''''''''''''''%&'''' -------------------------------------------------------------------------------- /maps/VioletGym.blk: -------------------------------------------------------------------------------- 1 | -3-3-----3-33--3 -------------------------------------------------------------------------------- /maps/ViridianGym.blk: -------------------------------------------------------------------------------- 1 | =<<<=77>==?77:?>:77=21=689> ?; -------------------------------------------------------------------------------- /maps/WhirlIslandCave.blk: -------------------------------------------------------------------------------- 1 |  1 2 | $ 3 | # 4 |  5 | ( 6 |   -------------------------------------------------------------------------------- /maps/WhirlIslandLugiaChamber.blk: -------------------------------------------------------------------------------- 1 | --//..--//--//..--//--//>=--//=-/>32=-/>2'1321'3 1$1 #  -------------------------------------------------------------------------------- /maps/WhirlIslandNW.blk: -------------------------------------------------------------------------------- 1 |   2 | * 3 | 11 $ #   4 |   -------------------------------------------------------------------------------- /maps/WhirlIslandSE.blk: -------------------------------------------------------------------------------- 1 | 111 1111 2 | $ 3 |  # 4 |  5 | -------------------------------------------------------------------------------- /maps/WhirlIslandSW.blk: -------------------------------------------------------------------------------- 1 |    2 |  %  3 | )&2= $ #   4 | &%  -------------------------------------------------------------------------------- /maps/WillsRoom.blk: -------------------------------------------------------------------------------- 1 | "4444888$888$$8$$$8$$**-**-(- -------------------------------------------------------------------------------- /maps/WiseTriosRoom.blk: -------------------------------------------------------------------------------- 1 | (798$(( -------------------------------------------------------------------------------- /maps/unused/BetaBlank.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/unused/BetaCapsuleHouse.blk: -------------------------------------------------------------------------------- 1 | ' -------------------------------------------------------------------------------- /maps/unused/BetaCeladonMansion1F.blk: -------------------------------------------------------------------------------- 1 | ?',9..',9 -------------------------------------------------------------------------------- /maps/unused/BetaCeladonMansion2F.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/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 | ( --------------------------------------------------------------------------------