├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── IDEAS.md ├── INSTALL.md ├── MOVES.md ├── Makefile ├── POKEDEX.md ├── README.md ├── TODO.md ├── audio.asm ├── audio ├── cries.asm ├── cry_headers.asm ├── cry_pointers.asm ├── ded.asm ├── ded │ ├── azurill.ded │ ├── azurill.wav │ ├── carvanha.ded │ ├── carvanha.wav │ ├── chatot.ded │ ├── chatot.wav │ ├── chimecho.ded │ ├── chimecho.wav │ ├── chingling.ded │ ├── chingling.wav │ ├── cutiefly.ded │ ├── cutiefly.wav │ ├── dragalge.ded │ ├── dragalge.wav │ ├── electivire.ded │ ├── electivire.wav │ ├── files.asm │ ├── finneon.ded │ ├── finneon.wav │ ├── flygon.ded │ ├── flygon.wav │ ├── glaceon.ded │ ├── glaceon.wav │ ├── happiny.ded │ ├── happiny.wav │ ├── kecleon.ded │ ├── kecleon.wav │ ├── latias.ded │ ├── latias.wav │ ├── latios.ded │ ├── latios.wav │ ├── leafeon.ded │ ├── leafeon.wav │ ├── lickilicky.ded │ ├── lickilicky.wav │ ├── lumineon.ded │ ├── lumineon.wav │ ├── lycanroc_dusk.ded │ ├── lycanroc_dusk.wav │ ├── lycanroc_midday.ded │ ├── lycanroc_midday.wav │ ├── lycanroc_midnight.ded │ ├── lycanroc_midnight.wav │ ├── magmortar.ded │ ├── magmortar.wav │ ├── magnezone.ded │ ├── magnezone.wav │ ├── mantyke.ded │ ├── mantyke.wav │ ├── mareanie.ded │ ├── mareanie.wav │ ├── marshadow.ded │ ├── marshadow.wav │ ├── mime__jr.ded │ ├── mime__jr.wav │ ├── mimikyu.ded │ ├── mimikyu.wav │ ├── munchlax.ded │ ├── munchlax.wav │ ├── palossand.ded │ ├── palossand.wav │ ├── pelipper.ded │ ├── pelipper.wav │ ├── pikipek.ded │ ├── pikipek.wav │ ├── porygon_z.ded │ ├── porygon_z.wav │ ├── relicanth.ded │ ├── relicanth.wav │ ├── rhyperior.ded │ ├── rhyperior.wav │ ├── ribombee.ded │ ├── ribombee.wav │ ├── rockruff.ded │ ├── rockruff.wav │ ├── salandit.ded │ ├── salandit.wav │ ├── salazzle.ded │ ├── salazzle.wav │ ├── sandygast.ded │ ├── sandygast.wav │ ├── sharpedo.ded │ ├── sharpedo.wav │ ├── skrelp.ded │ ├── skrelp.wav │ ├── spinda.ded │ ├── spinda.wav │ ├── stunfisk.ded │ ├── stunfisk.wav │ ├── sylveon.ded │ ├── sylveon.wav │ ├── tangrowth.ded │ ├── tangrowth.wav │ ├── togekiss.ded │ ├── togekiss.wav │ ├── toucannon.ded │ ├── toucannon.wav │ ├── toxapex.ded │ ├── toxapex.wav │ ├── trapinch.ded │ ├── trapinch.wav │ ├── tropius.ded │ ├── tropius.wav │ ├── trumbeak.ded │ ├── trumbeak.wav │ ├── turtonator.ded │ ├── turtonator.wav │ ├── vibrava.ded │ ├── vibrava.wav │ ├── wailmer.ded │ ├── wailmer.wav │ ├── wailord.ded │ ├── wailord.wav │ ├── wingull.ded │ └── wingull.wav ├── engine.asm ├── music │ ├── PWTfinalorange.asm │ ├── aftertherivalfight.asm │ ├── altomare.asm │ ├── ascorbiaisland.asm │ ├── azaleatown.asm │ ├── battletowerlobby.asm │ ├── battletowertheme.asm │ ├── bicycle.asm │ ├── buenaspassword.asm │ ├── bugcatchingcontest.asm │ ├── burnedtower.asm │ ├── canalave.asm │ ├── castleroute.asm │ ├── caveoforigin.asm │ ├── celadoncity.asm │ ├── championbattle.asm │ ├── cherrygrovecity.asm │ ├── cianwoodcity.asm │ ├── cinnabar.asm │ ├── cinnabarislandfrlg.asm │ ├── cityorange.asm │ ├── clair.asm │ ├── contestresults.asm │ ├── credits.asm │ ├── crimsonroute.asm │ ├── crossbattle.asm │ ├── crystalcave.asm │ ├── crystalopening.asm │ ├── dancinghall.asm │ ├── darkcave.asm │ ├── desktop.ini │ ├── dragonsden.asm │ ├── drakebattle.asm │ ├── driftveilcity.asm │ ├── earlyorangeroute.asm │ ├── ecruteakcity.asm │ ├── elmslab.asm │ ├── evergrandecity.asm │ ├── evolution.asm │ ├── fourisland.asm │ ├── gamecorner.asm │ ├── goldenrodcity.asm │ ├── gym.asm │ ├── gymleadervictory.asm │ ├── halloffame.asm │ ├── healpokemon.asm │ ├── hoenn_dewford_town.asm │ ├── hoohbattle.asm │ ├── imakunitheme.asm │ ├── indigoplateau.asm │ ├── johtogymbattle.asm │ ├── johtotrainerbattle.asm │ ├── johtowildbattle.asm │ ├── johtowildbattlenight.asm │ ├── kalos_titlescreen.asm │ ├── kantogymbattle.asm │ ├── kantotrainerbattle.asm │ ├── kantowildbattle.asm │ ├── lakeofrage.asm │ ├── lakeofragerocketradio.asm │ ├── lavendertown.asm │ ├── lighthouse.asm │ ├── lilycovecity.asm │ ├── lookbeauty.asm │ ├── looker.asm │ ├── lookgladion.asm │ ├── lookhiker.asm │ ├── lookkimonogirl.asm │ ├── looklass.asm │ ├── lookofficer.asm │ ├── lookpokemaniac.asm │ ├── lookrival.asm │ ├── lookrocket.asm │ ├── looksage.asm │ ├── lookyoungster.asm │ ├── lugiabattle.asm │ ├── lugiassong.asm │ ├── magnettrain.asm │ ├── mainmenu.asm │ ├── marinetube.asm │ ├── marshadowbattle.asm │ ├── meetjessiejames.asm │ ├── mobileadapter.asm │ ├── mobileadaptermenu.asm │ ├── mobilecenter.asm │ ├── mom.asm │ ├── mtmoon.asm │ ├── mtmoonsquare.asm │ ├── nationalpark.asm │ ├── newbarktown.asm │ ├── nothing.asm │ ├── orangedive.asm │ ├── orangeencounter.asm │ ├── orangegymbattle.asm │ ├── orangetrainerbattle.asm │ ├── orangewild.asm │ ├── oreburghgate.asm │ ├── pallettown.asm │ ├── pinkanisland.asm │ ├── pokeflutechannel.asm │ ├── pokemoncenter.asm │ ├── pokemonchannel.asm │ ├── pokemonlullaby.asm │ ├── pokemonmarch.asm │ ├── postcredits.asm │ ├── printer.asm │ ├── profoak.asm │ ├── profoakspokemontalk.asm │ ├── ridinglapras.asm │ ├── rivalbattle.asm │ ├── rocketbattle.asm │ ├── rockethideout.asm │ ├── rocketmotto.asm │ ├── rockettheme.asm │ ├── route1.asm │ ├── route103.asm │ ├── route110.asm │ ├── route111.asm │ ├── route119.asm │ ├── route12.asm │ ├── route2.asm │ ├── route206.asm │ ├── route209n.asm │ ├── route24gbs.asm │ ├── route26.asm │ ├── route29.asm │ ├── route3.asm │ ├── route30.asm │ ├── route36.asm │ ├── route37.asm │ ├── route62.asm │ ├── route69heh.asm │ ├── routeextra.asm │ ├── rslooklass.asm │ ├── ruinsofalphinterior.asm │ ├── ruinsofalphradio.asm │ ├── seviiislands.asm │ ├── showmearound.asm │ ├── sirdbattle.asm │ ├── slateportcity.asm │ ├── sootopoliscity.asm │ ├── sprouttower.asm │ ├── ssaqua.asm │ ├── starterorangeroute.asm │ ├── successfulcapture.asm │ ├── suicunebattle.asm │ ├── sunnyshore.asm │ ├── surf.asm │ ├── tangelojungle.asm │ ├── tintower.asm │ ├── titlescreen.asm │ ├── traceybattle.asm │ ├── traceyencounter.asm │ ├── trainervictory.asm │ ├── unioncave.asm │ ├── valenciatown.asm │ ├── vermilioncity.asm │ ├── victoryroad.asm │ ├── violetcity.asm │ ├── viridiancity.asm │ ├── wildpokemonvictory.asm │ └── xdbattlesimtheme.asm ├── music_pointers.asm ├── sfx.asm ├── sfx_crystal.asm ├── sfx_pointers.asm └── trainer_encounters.asm ├── bank_ends.txt ├── battle ├── ai │ ├── items.asm │ ├── move.asm │ ├── redundant.asm │ ├── scoring.asm │ └── switch.asm ├── anim_commands.asm ├── anim_gfx.asm ├── anim_objects.asm ├── anims.asm ├── assert_form.asm ├── bg_effects.asm ├── core.asm ├── effect_command_pointers.asm ├── effect_commands.asm ├── effects │ ├── attract.asm │ ├── bugbite.asm │ ├── curse.asm │ ├── endure.asm │ ├── foresight.asm │ ├── metronome.asm │ ├── mirror_move.asm │ ├── perish_song.asm │ ├── protect.asm │ ├── rollout.asm │ ├── sandstorm.asm │ ├── spikes.asm │ ├── thief.asm │ └── transform.asm ├── link_result.asm ├── magikarp_length.asm ├── menu.asm ├── misc.asm ├── move_names.asm ├── moves │ ├── move_descriptions.asm │ ├── move_effects.asm │ ├── move_effects_pointers.asm │ └── moves.asm ├── objects │ ├── data.asm │ ├── engine.asm │ ├── framesets.asm │ ├── functions.asm │ ├── gfx_headers.asm │ ├── helpers.asm │ └── oam.asm ├── scaled_exp.asm ├── sliding_intro.asm ├── trainer_huds.asm ├── type_matchup.asm └── used_move_text.asm ├── bgb.ini ├── bgbrecovery.sna ├── constants.asm ├── constants ├── animation_constants.asm ├── audio_constants.asm ├── battle_constants.asm ├── cgb_constants.asm ├── collision_constants.asm ├── cry_constants.asm ├── engine_flags.asm ├── event_flags.asm ├── gfx_constants.asm ├── item_constants.asm ├── landmark_constants.asm ├── map_constants.asm ├── map_setup_constants.asm ├── misc_constants.asm ├── move_constants.asm ├── music_constants.asm ├── pokemon_constants.asm ├── pokemon_data_constants.asm ├── script_constants.asm ├── sfx_constants.asm ├── sprite_constants.asm ├── std_constants.asm ├── tilemap_constants.asm ├── trainer_constants.asm ├── type_constants.asm └── wram_constants.asm ├── crowdmap.rar ├── data ├── base_experience.asm ├── base_stats.asm ├── base_stats │ ├── abra.asm │ ├── aerodactyl.asm │ ├── alakazam.asm │ ├── ampharos.asm │ ├── arbok.asm │ ├── arcanine.asm │ ├── articuno.asm │ ├── azumarill.asm │ ├── azurill.asm │ ├── beedrill.asm │ ├── bellossom.asm │ ├── bellsprout.asm │ ├── blastoise.asm │ ├── blissey.asm │ ├── bulbasaur.asm │ ├── butterfree.asm │ ├── carvanha.asm │ ├── caterpie.asm │ ├── celebi.asm │ ├── chansey.asm │ ├── charizard.asm │ ├── charmander.asm │ ├── charmeleon.asm │ ├── chatot.asm │ ├── chimecho.asm │ ├── chinchou.asm │ ├── chingling.asm │ ├── clefable.asm │ ├── clefairy.asm │ ├── cleffa.asm │ ├── cloyster.asm │ ├── corsola.asm │ ├── crobat.asm │ ├── cubone.asm │ ├── cutiefly.asm │ ├── dewgong.asm │ ├── diglett.asm │ ├── diglett_kanto.asm │ ├── ditto.asm │ ├── dodrio.asm │ ├── doduo.asm │ ├── donphan.asm │ ├── dragalge.asm │ ├── dragonair.asm │ ├── dragonite.asm │ ├── dratini.asm │ ├── drowzee.asm │ ├── dugtrio.asm │ ├── dugtrio_kanto.asm │ ├── eevee.asm │ ├── ekans.asm │ ├── electabuzz.asm │ ├── electivire.asm │ ├── electrode.asm │ ├── elekid.asm │ ├── espeon.asm │ ├── exeggcute.asm │ ├── exeggutor.asm │ ├── exeggutor_kanto.asm │ ├── farfetch_d.asm │ ├── fearow.asm │ ├── finneon.asm │ ├── flaaffy.asm │ ├── flareon.asm │ ├── flygon.asm │ ├── gastly.asm │ ├── gengar.asm │ ├── geodude.asm │ ├── geodude_kanto.asm │ ├── glaceon.asm │ ├── gloom.asm │ ├── golbat.asm │ ├── goldeen.asm │ ├── golduck.asm │ ├── golem.asm │ ├── golem_kanto.asm │ ├── graveler.asm │ ├── graveler_kanto.asm │ ├── grimer.asm │ ├── grimer_kanto.asm │ ├── growlithe.asm │ ├── gyarados.asm │ ├── happiny.asm │ ├── haunter.asm │ ├── hitmonchan.asm │ ├── hitmonlee.asm │ ├── hitmontop.asm │ ├── ho_oh.asm │ ├── hoppip.asm │ ├── horsea.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 │ ├── kecleon.asm │ ├── kingdra.asm │ ├── kingler.asm │ ├── koffing.asm │ ├── krabby.asm │ ├── lanturn.asm │ ├── lapras.asm │ ├── latias.asm │ ├── latios.asm │ ├── leafeon.asm │ ├── lickilicky.asm │ ├── lickitung.asm │ ├── lugia.asm │ ├── lumineon.asm │ ├── lycanroc.asm │ ├── lycanroc_dusk.asm │ ├── lycanroc_midnight.asm │ ├── machamp.asm │ ├── machoke.asm │ ├── machop.asm │ ├── magby.asm │ ├── magcargo.asm │ ├── magikarp.asm │ ├── magmar.asm │ ├── magmortar.asm │ ├── magnemite.asm │ ├── magneton.asm │ ├── magnezone.asm │ ├── mankey.asm │ ├── mantine.asm │ ├── mantyke.asm │ ├── mareanie.asm │ ├── mareep.asm │ ├── marill.asm │ ├── marowak.asm │ ├── marowak_kanto.asm │ ├── marshadow.asm │ ├── meowth.asm │ ├── meowth_alola.asm │ ├── metapod.asm │ ├── mew.asm │ ├── mewtwo.asm │ ├── mime__jr.asm │ ├── mimikyu.asm │ ├── moltres.asm │ ├── mr__mime.asm │ ├── muk.asm │ ├── muk_kanto.asm │ ├── munchlax.asm │ ├── nidoking.asm │ ├── nidoqueen.asm │ ├── nidoran_f.asm │ ├── nidoran_m.asm │ ├── nidorina.asm │ ├── nidorino.asm │ ├── ninetales.asm │ ├── ninetales_kanto.asm │ ├── octillery.asm │ ├── oddish.asm │ ├── omanyte.asm │ ├── omastar.asm │ ├── onix.asm │ ├── onix_crystal.asm │ ├── palossand.asm │ ├── paras.asm │ ├── parasect.asm │ ├── pelipper.asm │ ├── persian.asm │ ├── persian_alola.asm │ ├── phanpy.asm │ ├── pichu.asm │ ├── pidgeot.asm │ ├── pidgeotto.asm │ ├── pidgey.asm │ ├── pikachu.asm │ ├── pikipek.asm │ ├── pinsir.asm │ ├── politoed.asm │ ├── poliwag.asm │ ├── poliwhirl.asm │ ├── poliwrath.asm │ ├── ponyta.asm │ ├── porygon.asm │ ├── porygon2.asm │ ├── porygon_z.asm │ ├── primeape.asm │ ├── psyduck.asm │ ├── qwilfish.asm │ ├── raichu.asm │ ├── raichu_kanto.asm │ ├── rapidash.asm │ ├── raticate.asm │ ├── raticate_kanto.asm │ ├── rattata.asm │ ├── rattata_kanto.asm │ ├── relicanth.asm │ ├── remoraid.asm │ ├── rhydon.asm │ ├── rhyhorn.asm │ ├── rhyperior.asm │ ├── ribombee.asm │ ├── rockruff.asm │ ├── salandit.asm │ ├── salazzle.asm │ ├── sandshrew.asm │ ├── sandshrew_alola.asm │ ├── sandslash.asm │ ├── sandslash_alola.asm │ ├── sandygast.asm │ ├── scizor.asm │ ├── scyther.asm │ ├── seadra.asm │ ├── seaking.asm │ ├── seel.asm │ ├── sharpedo.asm │ ├── shellder.asm │ ├── shuckle.asm │ ├── skarmory.asm │ ├── skiploom.asm │ ├── skrelp.asm │ ├── slowbro.asm │ ├── slowking.asm │ ├── slowpoke.asm │ ├── slugma.asm │ ├── smoochum.asm │ ├── snorlax.asm │ ├── spearow.asm │ ├── spinda.asm │ ├── squirtle.asm │ ├── starmie.asm │ ├── staryu.asm │ ├── steelix.asm │ ├── steelix_crystal.asm │ ├── stunfisk.asm │ ├── sunflora.asm │ ├── sunkern.asm │ ├── sylveon.asm │ ├── tangela.asm │ ├── tangrowth.asm │ ├── tauros.asm │ ├── tentacool.asm │ ├── tentacruel.asm │ ├── togekiss.asm │ ├── togepi.asm │ ├── togetic.asm │ ├── toucannon.asm │ ├── toxapex.asm │ ├── trapinch.asm │ ├── tropius.asm │ ├── trumbeak.asm │ ├── turtonator.asm │ ├── tyrogue.asm │ ├── umbreon.asm │ ├── vaporeon.asm │ ├── venomoth.asm │ ├── venonat.asm │ ├── venusaur.asm │ ├── vibrava.asm │ ├── victreebel.asm │ ├── vileplume.asm │ ├── voltorb.asm │ ├── vulpix.asm │ ├── vulpix_kanto.asm │ ├── wailmer.asm │ ├── wailord.asm │ ├── wartortle.asm │ ├── weedle.asm │ ├── weepinbell.asm │ ├── weezing.asm │ ├── wigglytuff.asm │ ├── wingull.asm │ ├── zapdos.asm │ └── zubat.asm ├── egg_move_pointers.asm ├── egg_moves.asm ├── evolution_moves.asm ├── evos_attacks.asm ├── evos_attacks_pointers.asm ├── map_objects.asm ├── mon_icon_pals.asm ├── pokedex │ ├── entries.asm │ ├── entries │ │ ├── abra.asm │ │ ├── aerodactyl.asm │ │ ├── alakazam.asm │ │ ├── ampharos.asm │ │ ├── arbok.asm │ │ ├── arcanine.asm │ │ ├── articuno.asm │ │ ├── azumarill.asm │ │ ├── azurill.asm │ │ ├── beedrill.asm │ │ ├── bellossom.asm │ │ ├── bellsprout.asm │ │ ├── blastoise.asm │ │ ├── blissey.asm │ │ ├── bulbasaur.asm │ │ ├── butterfree.asm │ │ ├── carvanha.asm │ │ ├── caterpie.asm │ │ ├── celebi.asm │ │ ├── chansey.asm │ │ ├── charizard.asm │ │ ├── charmander.asm │ │ ├── charmeleon.asm │ │ ├── chatot.asm │ │ ├── chimecho.asm │ │ ├── chinchou.asm │ │ ├── chingling.asm │ │ ├── clefable.asm │ │ ├── clefairy.asm │ │ ├── cleffa.asm │ │ ├── cloyster.asm │ │ ├── corsola.asm │ │ ├── crobat.asm │ │ ├── cubone.asm │ │ ├── cutiefly.asm │ │ ├── dewgong.asm │ │ ├── diglett.asm │ │ ├── ditto.asm │ │ ├── dodrio.asm │ │ ├── doduo.asm │ │ ├── donphan.asm │ │ ├── dragalge.asm │ │ ├── dragonair.asm │ │ ├── dragonite.asm │ │ ├── dratini.asm │ │ ├── drowzee.asm │ │ ├── dugtrio.asm │ │ ├── eevee.asm │ │ ├── ekans.asm │ │ ├── electabuzz.asm │ │ ├── electivire.asm │ │ ├── electrode.asm │ │ ├── elekid.asm │ │ ├── espeon.asm │ │ ├── exeggcute.asm │ │ ├── exeggutor.asm │ │ ├── farfetch_d.asm │ │ ├── fearow.asm │ │ ├── finneon.asm │ │ ├── flaaffy.asm │ │ ├── flareon.asm │ │ ├── flygon.asm │ │ ├── gastly.asm │ │ ├── gengar.asm │ │ ├── geodude.asm │ │ ├── glaceon.asm │ │ ├── gloom.asm │ │ ├── golbat.asm │ │ ├── goldeen.asm │ │ ├── golduck.asm │ │ ├── golem.asm │ │ ├── graveler.asm │ │ ├── grimer.asm │ │ ├── growlithe.asm │ │ ├── gyarados.asm │ │ ├── happiny.asm │ │ ├── haunter.asm │ │ ├── hitmonchan.asm │ │ ├── hitmonlee.asm │ │ ├── hitmontop.asm │ │ ├── ho_oh.asm │ │ ├── hoppip.asm │ │ ├── horsea.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 │ │ ├── kecleon.asm │ │ ├── kingdra.asm │ │ ├── kingler.asm │ │ ├── koffing.asm │ │ ├── krabby.asm │ │ ├── lanturn.asm │ │ ├── lapras.asm │ │ ├── latias.asm │ │ ├── latios.asm │ │ ├── leafeon.asm │ │ ├── lickilicky.asm │ │ ├── lickitung.asm │ │ ├── lugia.asm │ │ ├── lumineon.asm │ │ ├── lycanroc.asm │ │ ├── machamp.asm │ │ ├── machoke.asm │ │ ├── machop.asm │ │ ├── magby.asm │ │ ├── magcargo.asm │ │ ├── magikarp.asm │ │ ├── magmar.asm │ │ ├── magmortar.asm │ │ ├── magnemite.asm │ │ ├── magneton.asm │ │ ├── magnezone.asm │ │ ├── mankey.asm │ │ ├── mantine.asm │ │ ├── mantyke.asm │ │ ├── mareanie.asm │ │ ├── mareep.asm │ │ ├── marill.asm │ │ ├── marowak.asm │ │ ├── marshadow.asm │ │ ├── meowth.asm │ │ ├── metapod.asm │ │ ├── mew.asm │ │ ├── mewtwo.asm │ │ ├── mime__jr.asm │ │ ├── mimikyu.asm │ │ ├── moltres.asm │ │ ├── mr__mime.asm │ │ ├── muk.asm │ │ ├── munchlax.asm │ │ ├── nidoking.asm │ │ ├── nidoqueen.asm │ │ ├── nidoran_f.asm │ │ ├── nidoran_m.asm │ │ ├── nidorina.asm │ │ ├── nidorino.asm │ │ ├── ninetales.asm │ │ ├── octillery.asm │ │ ├── oddish.asm │ │ ├── omanyte.asm │ │ ├── omastar.asm │ │ ├── onix.asm │ │ ├── palossand.asm │ │ ├── paras.asm │ │ ├── parasect.asm │ │ ├── pelipper.asm │ │ ├── persian.asm │ │ ├── phanpy.asm │ │ ├── pichu.asm │ │ ├── pidgeot.asm │ │ ├── pidgeotto.asm │ │ ├── pidgey.asm │ │ ├── pikachu.asm │ │ ├── pikipek.asm │ │ ├── pinsir.asm │ │ ├── politoed.asm │ │ ├── poliwag.asm │ │ ├── poliwhirl.asm │ │ ├── poliwrath.asm │ │ ├── ponyta.asm │ │ ├── porygon.asm │ │ ├── porygon2.asm │ │ ├── porygon_z.asm │ │ ├── primeape.asm │ │ ├── psyduck.asm │ │ ├── qwilfish.asm │ │ ├── raichu.asm │ │ ├── rapidash.asm │ │ ├── raticate.asm │ │ ├── rattata.asm │ │ ├── relicanth.asm │ │ ├── remoraid.asm │ │ ├── rhydon.asm │ │ ├── rhyhorn.asm │ │ ├── rhyperior.asm │ │ ├── ribombee.asm │ │ ├── rockruff.asm │ │ ├── salandit.asm │ │ ├── salazzle.asm │ │ ├── sandshrew.asm │ │ ├── sandslash.asm │ │ ├── sandygast.asm │ │ ├── scizor.asm │ │ ├── scyther.asm │ │ ├── seadra.asm │ │ ├── seaking.asm │ │ ├── seel.asm │ │ ├── sharpedo.asm │ │ ├── shellder.asm │ │ ├── shuckle.asm │ │ ├── skarmory.asm │ │ ├── skiploom.asm │ │ ├── skrelp.asm │ │ ├── slowbro.asm │ │ ├── slowking.asm │ │ ├── slowpoke.asm │ │ ├── slugma.asm │ │ ├── smoochum.asm │ │ ├── snorlax.asm │ │ ├── spearow.asm │ │ ├── spinda.asm │ │ ├── squirtle.asm │ │ ├── starmie.asm │ │ ├── staryu.asm │ │ ├── steelix.asm │ │ ├── stunfisk.asm │ │ ├── sunflora.asm │ │ ├── sunkern.asm │ │ ├── sylveon.asm │ │ ├── tangela.asm │ │ ├── tangrowth.asm │ │ ├── tauros.asm │ │ ├── tentacool.asm │ │ ├── tentacruel.asm │ │ ├── togekiss.asm │ │ ├── togepi.asm │ │ ├── togetic.asm │ │ ├── toucannon.asm │ │ ├── toxapex.asm │ │ ├── trapinch.asm │ │ ├── tropius.asm │ │ ├── trumbeak.asm │ │ ├── turtonator.asm │ │ ├── tyrogue.asm │ │ ├── umbreon.asm │ │ ├── vaporeon.asm │ │ ├── venomoth.asm │ │ ├── venonat.asm │ │ ├── venusaur.asm │ │ ├── vibrava.asm │ │ ├── victreebel.asm │ │ ├── vileplume.asm │ │ ├── voltorb.asm │ │ ├── vulpix.asm │ │ ├── wailmer.asm │ │ ├── wailord.asm │ │ ├── wartortle.asm │ │ ├── weedle.asm │ │ ├── weepinbell.asm │ │ ├── weezing.asm │ │ ├── wigglytuff.asm │ │ ├── wingull.asm │ │ ├── zapdos.asm │ │ └── zubat.asm │ ├── entries_1.asm │ ├── entries_2.asm │ ├── entries_3.asm │ ├── entries_4.asm │ ├── entry_pointers.asm │ └── order_new.asm ├── pokemon_names.asm ├── sprite_engine.asm ├── types │ └── abbreviations.asm ├── variant_base_data_table.asm ├── variant_base_stats.asm └── wild │ ├── fish.asm │ ├── johto_grass.asm │ ├── johto_water.asm │ ├── kanto_grass.asm │ ├── kanto_water.asm │ ├── swarm_grass.asm │ └── swarm_water.asm ├── dedenc.py ├── dedgen.py ├── desktop.ini ├── engine ├── anim_hp_bar.asm ├── battle_start.asm ├── billspc.asm ├── billspctop.asm ├── breeding.asm ├── buy_sell_toss.asm ├── card_flip.asm ├── clock_reset.asm ├── color.asm ├── credits.asm ├── crystal_intro.asm ├── delete_save_change_clock.asm ├── diploma.asm ├── engine_flags.asm ├── events.asm ├── events_2.asm ├── events_3.asm ├── evolution_animation.asm ├── evolve.asm ├── facings.asm ├── fish.asm ├── fruit_trees.asm ├── gbc_only.asm ├── gfx_41.asm ├── growl_roar_ded_vblank_hook.asm ├── healmachineanim.asm ├── health.asm ├── init_gender.asm ├── intro_menu.asm ├── items.asm ├── landmarks.asm ├── learn.asm ├── link.asm ├── link_trade.asm ├── mail.asm ├── main_menu.asm ├── map_object_action.asm ├── map_objects.asm ├── map_setup.asm ├── map_triggers.asm ├── mart.asm ├── math.asm ├── menu.asm ├── mon_icons.asm ├── mon_menu.asm ├── money.asm ├── move_mon.asm ├── move_mon_wo_mail.asm ├── movement.asm ├── namingscreen.asm ├── npc_movement.asm ├── npctrade.asm ├── options_menu.asm ├── overworld.asm ├── pack.asm ├── party_menu.asm ├── player_movement.asm ├── player_object.asm ├── player_step.asm ├── pokecenter_pc.asm ├── pokedex.asm ├── pokepic.asm ├── predef.asm ├── printnum.asm ├── prof_oaks_pc.asm ├── rtc.asm ├── save.asm ├── scripting.asm ├── scrolling_menu.asm ├── search.asm ├── search2.asm ├── selectmenu.asm ├── sine.asm ├── slot_machine.asm ├── spawn_points.asm ├── specials.asm ├── sprite_anims.asm ├── sprites.asm ├── startmenu.asm ├── stats_screen.asm ├── std_scripts.asm ├── switch_items.asm ├── tile_events.asm ├── time.asm ├── timeofdaypals.asm ├── timeset.asm ├── title.asm ├── tmhm.asm ├── tmhm2.asm ├── town_map.asm ├── trade_animation.asm ├── trainer_card.asm ├── variables.asm ├── warp_connection.asm └── wildmons.asm ├── event ├── bug_contest_2.asm ├── bug_contest_judging.asm ├── daycare.asm ├── elevator.asm ├── field_moves.asm ├── forced_movement.asm ├── halloffame.asm ├── happiness_egg.asm ├── itemball.asm ├── itemfinder.asm ├── magikarp.asm ├── magnet_train.asm ├── move_deleter.asm ├── move_reminder.asm ├── movesets.asm ├── name_rater.asm ├── overworld.asm ├── poisonstep.asm ├── pokeflute.asm ├── sacred_ash.asm ├── special.asm ├── squirtbottle.asm ├── sweet_scent.asm └── whiteout.asm ├── gbhw.asm ├── gfx.py ├── gfx ├── battle │ ├── balls.2bpp │ ├── enemy_hp_bar_border.1bpp │ ├── expbar.2bpp │ ├── expbarend.2bpp │ ├── hp_exp_bar_border.1bpp │ └── minimize.2bpp ├── card_flip │ ├── 0e0cdb.2bpp.lz │ ├── 0e0cf6.2bpp │ ├── 0e0d06.2bpp │ ├── 0e0d16.2bpp.lz │ └── 0e0ea8.2bpp.lz ├── credits │ ├── border.2bpp │ ├── copyright.2bpp │ ├── ditto.2bpp │ ├── igglybuff.2bpp │ ├── pichu.2bpp │ ├── smoochum.2bpp │ └── theend.2bpp ├── diploma │ ├── diploma.2bpp.lz │ └── diploma.tilemap ├── emotes │ ├── bolt.2bpp │ ├── fish.2bpp │ ├── happy.2bpp │ ├── heart.2bpp │ ├── question.2bpp │ ├── sad.2bpp │ ├── shock.2bpp │ └── sleep.2bpp ├── evo │ ├── bubble.2bpp │ ├── bubble_large.2bpp │ └── egg_hatch.2bpp ├── font.asm ├── font │ ├── battle_extra.2bpp │ └── font.2bpp ├── frames │ ├── 1.1bpp │ ├── 2.1bpp │ ├── 3.1bpp │ ├── 4.1bpp │ ├── 5.1bpp │ ├── 6.1bpp │ ├── 7.1bpp │ ├── 8.1bpp │ ├── 9.1bpp │ ├── map_entry_sign.2bpp │ └── space.2bpp ├── fx │ ├── aeroblast.2bpp.lz │ ├── angels.2bpp.lz │ ├── beam.2bpp.lz │ ├── bubble.2bpp.lz │ ├── charge.2bpp.lz │ ├── cut.2bpp.lz │ ├── egg.2bpp.lz │ ├── explosion.2bpp.lz │ ├── fire.2bpp.lz │ ├── flower.2bpp.lz │ ├── globe.2bpp.lz │ ├── haze.2bpp.lz │ ├── hit.2bpp.lz │ ├── horn.2bpp.lz │ ├── ice.2bpp.lz │ ├── lightning.2bpp.lz │ ├── misc.2bpp.lz │ ├── noise.2bpp.lz │ ├── objects.2bpp.lz │ ├── plant.2bpp.lz │ ├── poison.2bpp.lz │ ├── pokeball.2bpp.lz │ ├── powder.2bpp.lz │ ├── psychic.2bpp.lz │ ├── reflect.2bpp.lz │ ├── rocks.2bpp.lz │ ├── rope.2bpp.lz │ ├── sand.2bpp.lz │ ├── shapes.2bpp.lz │ ├── shine.2bpp.lz │ ├── skyattack.2bpp.lz │ ├── smoke.2bpp.lz │ ├── speed.2bpp.lz │ ├── status.2bpp.lz │ ├── water.2bpp.lz │ ├── wave.2bpp.lz │ ├── web.2bpp.lz │ ├── whip.2bpp.lz │ └── wind.2bpp.lz ├── icon │ ├── abra.2bpp │ ├── aerodactyl.2bpp │ ├── alakazam.2bpp │ ├── ampharos.2bpp │ ├── arbok.2bpp │ ├── arcanine.2bpp │ ├── articuno.2bpp │ ├── azumarill.2bpp │ ├── azurill.2bpp │ ├── beedrill.2bpp │ ├── bellossom.2bpp │ ├── bellsprout.2bpp │ ├── blastoise.2bpp │ ├── blissey.2bpp │ ├── bulbasaur.2bpp │ ├── butterfree.2bpp │ ├── carvanha.2bpp │ ├── caterpie.2bpp │ ├── celebi.2bpp │ ├── chansey.2bpp │ ├── charizard.2bpp │ ├── charmander.2bpp │ ├── charmeleon.2bpp │ ├── chatot.2bpp │ ├── chimecho.2bpp │ ├── chinchou.2bpp │ ├── chingling.2bpp │ ├── clefable.2bpp │ ├── clefairy.2bpp │ ├── cleffa.2bpp │ ├── cloyster.2bpp │ ├── corsola.2bpp │ ├── crobat.2bpp │ ├── cubone.2bpp │ ├── cutiefly.2bpp │ ├── dewgong.2bpp │ ├── diglett.2bpp │ ├── ditto.2bpp │ ├── dodrio.2bpp │ ├── doduo.2bpp │ ├── donphan.2bpp │ ├── dragalge.2bpp │ ├── dragonair.2bpp │ ├── dragonite.2bpp │ ├── dratini.2bpp │ ├── drowzee.2bpp │ ├── dugtrio.2bpp │ ├── eevee.2bpp │ ├── egg.2bpp │ ├── ekans.2bpp │ ├── electabuzz.2bpp │ ├── electivire.2bpp │ ├── electrode.2bpp │ ├── elekid.2bpp │ ├── espeon.2bpp │ ├── exeggcute.2bpp │ ├── exeggutor.2bpp │ ├── farfetch_d.2bpp │ ├── fearow.2bpp │ ├── finneon.2bpp │ ├── flaaffy.2bpp │ ├── flareon.2bpp │ ├── flygon.2bpp │ ├── gastly.2bpp │ ├── gengar.2bpp │ ├── geodude.2bpp │ ├── glaceon.2bpp │ ├── gloom.2bpp │ ├── golbat.2bpp │ ├── goldeen.2bpp │ ├── golduck.2bpp │ ├── golem.2bpp │ ├── graveler.2bpp │ ├── grimer.2bpp │ ├── growlithe.2bpp │ ├── gyarados.2bpp │ ├── happiny.2bpp │ ├── haunter.2bpp │ ├── hitmonchan.2bpp │ ├── hitmonlee.2bpp │ ├── hitmontop.2bpp │ ├── ho_oh.2bpp │ ├── hoppip.2bpp │ ├── horsea.2bpp │ ├── hypno.2bpp │ ├── igglybuff.2bpp │ ├── item.2bpp │ ├── ivysaur.2bpp │ ├── jigglypuff.2bpp │ ├── jolteon.2bpp │ ├── jumpluff.2bpp │ ├── jynx.2bpp │ ├── kabuto.2bpp │ ├── kabutops.2bpp │ ├── kadabra.2bpp │ ├── kakuna.2bpp │ ├── kangaskhan.2bpp │ ├── kecleon.2bpp │ ├── kingdra.2bpp │ ├── kingler.2bpp │ ├── koffing.2bpp │ ├── krabby.2bpp │ ├── lanturn.2bpp │ ├── lapras.2bpp │ ├── latias.2bpp │ ├── latios.2bpp │ ├── leafeon.2bpp │ ├── lickilicky.2bpp │ ├── lickitung.2bpp │ ├── lugia.2bpp │ ├── lumineon.2bpp │ ├── lycanroc.2bpp │ ├── lycanroc_dusk.2bpp │ ├── lycanroc_midnight.2bpp │ ├── machamp.2bpp │ ├── machoke.2bpp │ ├── machop.2bpp │ ├── magby.2bpp │ ├── magcargo.2bpp │ ├── magikarp.2bpp │ ├── magmar.2bpp │ ├── magmortar.2bpp │ ├── magnemite.2bpp │ ├── magneton.2bpp │ ├── magnezone.2bpp │ ├── mail.2bpp │ ├── mail2.2bpp │ ├── mankey.2bpp │ ├── mantine.2bpp │ ├── mantyke.2bpp │ ├── mareanie.2bpp │ ├── mareep.2bpp │ ├── marill.2bpp │ ├── marowak.2bpp │ ├── marshadow.2bpp │ ├── meowth.2bpp │ ├── metapod.2bpp │ ├── mew.2bpp │ ├── mewtwo.2bpp │ ├── mimejr.2bpp │ ├── mimikyu.2bpp │ ├── moltres.2bpp │ ├── mr__mime.2bpp │ ├── muk.2bpp │ ├── munchlax.2bpp │ ├── nidoking.2bpp │ ├── nidoqueen.2bpp │ ├── nidoran_f.2bpp │ ├── nidoran_m.2bpp │ ├── nidorina.2bpp │ ├── nidorino.2bpp │ ├── ninetales.2bpp │ ├── octillery.2bpp │ ├── oddish.2bpp │ ├── omanyte.2bpp │ ├── omastar.2bpp │ ├── onix.2bpp │ ├── palossand.2bpp │ ├── paras.2bpp │ ├── parasect.2bpp │ ├── pelipper.2bpp │ ├── persian.2bpp │ ├── phanpy.2bpp │ ├── pichu.2bpp │ ├── pidgeot.2bpp │ ├── pidgeotto.2bpp │ ├── pidgey.2bpp │ ├── pikachu.2bpp │ ├── pikipek.2bpp │ ├── pinsir.2bpp │ ├── politoed.2bpp │ ├── poliwag.2bpp │ ├── poliwhirl.2bpp │ ├── poliwrath.2bpp │ ├── ponyta.2bpp │ ├── porygon.2bpp │ ├── porygon2.2bpp │ ├── porygon_z.2bpp │ ├── primeape.2bpp │ ├── psyduck.2bpp │ ├── qwilfish.2bpp │ ├── raichu.2bpp │ ├── rapidash.2bpp │ ├── raticate.2bpp │ ├── rattata.2bpp │ ├── relicanth.2bpp │ ├── remoraid.2bpp │ ├── rhydon.2bpp │ ├── rhyhorn.2bpp │ ├── rhyperior.2bpp │ ├── ribombee.2bpp │ ├── rockruff.2bpp │ ├── salandit.2bpp │ ├── salazzle.2bpp │ ├── sandshrew.2bpp │ ├── sandslash.2bpp │ ├── sandygast.2bpp │ ├── scizor.2bpp │ ├── scyther.2bpp │ ├── seadra.2bpp │ ├── seaking.2bpp │ ├── seel.2bpp │ ├── sharpedo.2bpp │ ├── shellder.2bpp │ ├── shuckle.2bpp │ ├── skarmory.2bpp │ ├── skiploom.2bpp │ ├── skrelp.2bpp │ ├── slowbro.2bpp │ ├── slowking.2bpp │ ├── slowpoke.2bpp │ ├── slugma.2bpp │ ├── smoochum.2bpp │ ├── snorlax.2bpp │ ├── spearow.2bpp │ ├── spinda.2bpp │ ├── squirtle.2bpp │ ├── starmie.2bpp │ ├── staryu.2bpp │ ├── steelix.2bpp │ ├── stunfisk.2bpp │ ├── sunflora.2bpp │ ├── sunkern.2bpp │ ├── sylveon.2bpp │ ├── tangela.2bpp │ ├── tangrowth.2bpp │ ├── tauros.2bpp │ ├── tentacool.2bpp │ ├── tentacruel.2bpp │ ├── togekiss.2bpp │ ├── togepi.2bpp │ ├── togetic.2bpp │ ├── toucannon.2bpp │ ├── toxapex.2bpp │ ├── trapinch.2bpp │ ├── tropius.2bpp │ ├── trumbeak.2bpp │ ├── turtonator.2bpp │ ├── tyrogue.2bpp │ ├── umbreon.2bpp │ ├── vaporeon.2bpp │ ├── venomoth.2bpp │ ├── venonat.2bpp │ ├── venusaur.2bpp │ ├── vibrava.2bpp │ ├── victreebel.2bpp │ ├── vileplume.2bpp │ ├── voltorb.2bpp │ ├── vulpix.2bpp │ ├── wailmer.2bpp │ ├── wailord.2bpp │ ├── wartortle.2bpp │ ├── weedle.2bpp │ ├── weepinbell.2bpp │ ├── weezing.2bpp │ ├── wigglytuff.2bpp │ ├── wingull.2bpp │ ├── zapdos.2bpp │ └── zubat.2bpp ├── icon_pointers.asm ├── icons.asm ├── intro │ ├── gender_screen.2bpp │ ├── logo.2bpp.lz │ └── opening_lines.2bpp ├── link │ ├── 16d465.tilemap │ ├── 16d5cd.tilemap │ ├── 16d5f5.tilemap │ └── comms_border.2bpp ├── load_pics.asm ├── mail.asm ├── mail │ ├── 0b9926.1bpp │ ├── 0b992e.1bpp │ ├── 0b9936.1bpp │ ├── 0b993e.1bpp │ ├── 0b9946.1bpp │ ├── 0b994e.1bpp │ ├── 0b995e.1bpp │ ├── 0b9966.1bpp │ ├── 0b996e.1bpp │ ├── 0b9976.1bpp │ ├── 0b997e.1bpp │ ├── 0b998e.1bpp │ ├── 0b9996.1bpp │ ├── 0b99c6.1bpp │ ├── 0b99f6.1bpp │ ├── 0b9a26.1bpp │ ├── 0b9a56.1bpp │ ├── 0b9a86.1bpp │ ├── 0b9ab6.1bpp │ ├── 0b9b46.1bpp │ ├── 0b9bce.1bpp │ ├── 0b9bfe.1bpp │ ├── 0b9c1e.1bpp │ ├── 0b9c3e.1bpp │ ├── 0b9c5e.1bpp │ ├── 0b9c7e.1bpp │ ├── 0b9c96.1bpp │ ├── 0b9c9e.1bpp │ ├── 0b9cbe.1bpp │ ├── 0b9cde.1bpp │ ├── 0b9cfe.1bpp │ ├── 0b9d16.1bpp │ ├── 0b9d26.1bpp │ ├── 0b9d3e.1bpp │ ├── 0b9d46.1bpp │ ├── 0b9d76.1bpp │ ├── 0b9d86.1bpp │ ├── 0b9db6.1bpp │ ├── 0b9dc6.1bpp │ ├── 0b9dce.1bpp │ ├── 0b9df6.1bpp │ ├── 0b9e06.1bpp │ ├── 0b9e26.1bpp │ └── 0b9e4e.1bpp ├── namingscreen │ ├── border.2bpp │ ├── cursor.2bpp │ ├── middleline.1bpp │ └── underline.1bpp ├── overworld │ ├── 000.2bpp │ ├── 001.2bpp │ ├── 002.2bpp │ ├── 003.2bpp │ ├── 004.2bpp │ ├── 005.2bpp │ ├── 006.2bpp │ ├── 007.2bpp │ ├── 008.2bpp │ ├── 009.2bpp │ ├── 010.2bpp │ ├── 011.2bpp │ ├── 012.2bpp │ ├── 013.2bpp │ ├── 014.2bpp │ ├── 015.2bpp │ ├── 016.2bpp │ ├── 017.2bpp │ ├── 018.2bpp │ ├── 019.2bpp │ ├── 020.2bpp │ ├── 021.2bpp │ ├── 022.2bpp │ ├── 023.2bpp │ ├── 024.2bpp │ ├── 025.2bpp │ ├── 026.2bpp │ ├── 027.2bpp │ ├── 028.2bpp │ ├── 029.2bpp │ ├── 030.2bpp │ ├── 031.2bpp │ ├── 032.2bpp │ ├── 033.2bpp │ ├── 034.2bpp │ ├── 035.2bpp │ ├── 036.2bpp │ ├── 037.2bpp │ ├── 038.2bpp │ ├── 039.2bpp │ ├── 040.2bpp │ ├── 041.2bpp │ ├── 042.2bpp │ ├── 043.2bpp │ ├── 044.2bpp │ ├── 045.2bpp │ ├── 046.2bpp │ ├── 047.2bpp │ ├── 048.2bpp │ ├── 049.2bpp │ ├── 050.2bpp │ ├── 051.2bpp │ ├── 052.2bpp │ ├── 053.2bpp │ ├── 054.2bpp │ ├── 055.2bpp │ ├── 056.2bpp │ ├── 057.2bpp │ ├── 058.2bpp │ ├── 059.2bpp │ ├── 060.2bpp │ ├── 061.2bpp │ ├── 062.2bpp │ ├── 063.2bpp │ ├── 064.2bpp │ ├── 065.2bpp │ ├── 066.2bpp │ ├── 067.2bpp │ ├── 068.2bpp │ ├── 069.2bpp │ ├── 070.2bpp │ ├── 071.2bpp │ ├── 072.2bpp │ ├── 073.2bpp │ ├── 074.2bpp │ ├── 075.2bpp │ ├── 076.2bpp │ ├── 077.2bpp │ ├── 078.2bpp │ ├── 079.2bpp │ ├── 080.2bpp │ ├── 081.2bpp │ ├── 082.2bpp │ ├── 083.2bpp │ ├── 084.2bpp │ ├── 085.2bpp │ ├── 086.2bpp │ ├── 087.2bpp │ ├── 088.2bpp │ ├── 089.2bpp │ ├── 090.2bpp │ ├── 091.2bpp │ ├── 092.2bpp │ ├── 093.2bpp │ ├── 094.2bpp │ ├── 095.2bpp │ ├── 096.2bpp │ ├── 097.2bpp │ ├── 098.2bpp │ ├── 099.2bpp │ ├── 100.2bpp │ ├── 101.2bpp │ ├── 102.2bpp │ ├── 103.2bpp │ ├── 104.2bpp │ ├── 105.2bpp │ ├── 106.2bpp │ ├── 107.2bpp │ ├── 108.2bpp │ ├── 109.2bpp │ ├── 110.2bpp │ ├── 111.2bpp │ ├── 112.2bpp │ ├── 113.2bpp │ ├── 114.2bpp │ ├── 115.2bpp │ ├── 116.2bpp │ ├── 117.2bpp │ ├── 118.2bpp │ ├── 119.2bpp │ ├── 120.2bpp │ ├── 121.2bpp │ ├── 122.2bpp │ ├── 123.2bpp │ ├── 124.2bpp │ ├── 125.2bpp │ ├── chris_fish.2bpp │ ├── kris_fish.2bpp │ ├── shrine1.2bpp │ ├── shrine2.2bpp │ ├── sprite_headers.asm │ ├── sprites_1.asm │ ├── sprites_2.asm │ ├── sprites_3.asm │ └── trainer_battle_pokeball_tiles.2bpp ├── ow │ ├── boulderdust.2bpp │ ├── cut_grass.2bpp │ ├── cut_tree.2bpp │ ├── fishing2.2bpp │ ├── fishing4.2bpp │ ├── headbutt_tree.2bpp │ ├── heal_machine.2bpp │ ├── popup_font.2bpp │ ├── puddle_splash.2bpp │ └── shadow.2bpp ├── pack │ ├── pack.2bpp │ ├── pack_f.2bpp │ └── pack_menu.2bpp ├── pc.2bpp.lz ├── pc_mail.2bpp ├── pics.asm ├── pics │ ├── abra │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aerodactyl │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── aipom │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── alakazam │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ampharos │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── animation.asm │ ├── arbok │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── arcanine │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ariados │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── articuno │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── azumarill │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── beedrill │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bellossom │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bellsprout │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blastoise │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blastoise_glasses │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── blissey │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── bulbasaur │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── butterfree │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── caterpie │ │ ├── back.2bpp.lz │ │ ├── bitmask.asm │ │ ├── frames.asm │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── celebi │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chansey │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charizard │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charmander │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── charmeleon │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chatot │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chimecho │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chinchou │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── chingling │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clefable │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── clefairy │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cleffa │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cloyster │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── corsola │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── crobat │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── cubone │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dewgong │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── diglett │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── diglett_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ditto │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dodrio │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── doduo │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── donphan │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragonair │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dragonite │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dratini │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── drowzee │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dugtrio │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dugtrio_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── dunsparce │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── eevee │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── egg │ │ └── front.2bpp.lz │ ├── egg_azurill │ │ └── front.2bpp.lz │ ├── egg_cleffa │ │ └── front.2bpp.lz │ ├── egg_elekid │ │ └── front.2bpp.lz │ ├── egg_happiny │ │ └── front.2bpp.lz │ ├── egg_igglybuff │ │ └── front.2bpp.lz │ ├── egg_magby │ │ └── front.2bpp.lz │ ├── egg_pichu │ │ └── front.2bpp.lz │ ├── egg_smoochum │ │ └── front.2bpp.lz │ ├── egg_togepi │ │ └── front.2bpp.lz │ ├── ekans │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electabuzz │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── electrode │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── elekid │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── entei │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── espeon │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggcute │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggutor │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── exeggutor_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── farfetch_d │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── fearow │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flaaffy │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── flareon │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── forretress │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gastly │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gengar │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── geodude │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── geodude_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── girafarig │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gligar │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gloom │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golbat │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── goldeen │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golduck │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golem │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── golem_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── granbull │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── graveler │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── graveler_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grimer │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── grimer_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── growlithe │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── gyarados │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── haunter │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── heracross │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmonchan │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmonlee │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hitmontop │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ho_oh │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hoppip │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── horsea │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── houndoom │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── houndour │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── hypno │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── igglybuff │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ivysaur │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jigglypuff │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jolteon │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jumpluff │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── jynx │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kabuto │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kabutops │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kadabra │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kakuna │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kangaskhan │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kecleon │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kingdra │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── kingler │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── koffing │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── krabby │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lanturn │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lapras │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── larvitar │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── latias │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── latios │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ledian │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ledyba │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lickitung │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lugia │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lycanroc_dusk │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lycanroc_midday │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── lycanroc_midnight │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machamp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machoke │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── machop │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magby │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magcargo │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magikarp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magikarp_bubbles │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_calico1 │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_calico2 │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_calico3 │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_dapples │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_forehead │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_mask │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_orca │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_skelly │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_stripe │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_tiger │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_twotone │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magikarp_zebra │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── magmar │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magnemite │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── magneton │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mankey │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mantine │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mantyke │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mareep │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marill │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marowak │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── marowak_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meowth │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meowth_alola │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── meowth_rocket │ │ └── front.2bpp.lz │ ├── metapod │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mew │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mewtwo │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── miltank │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── misdreavus │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── moltres │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── mr__mime │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── muk │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── muk_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── munchlax │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── murkrow │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── natu │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoking │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoqueen │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoran_f │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidoran_m │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidorina │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── nidorino │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ninetales │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ninetales_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── octillery │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── oddish │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── omanyte │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── omastar │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── onix │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── onix_crystal │ │ ├── normal.pal │ │ └── shiny.pal │ ├── palette_pointers.asm │ ├── paras │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── parasect │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pelipper │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── persian │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── persian_alola │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── phanpy │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pic_pointers.asm │ ├── pichu │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgeot │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgeotto │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pidgey │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pikachu │ │ ├── back.2bpp.lz │ │ ├── bitmask.asm │ │ ├── frames.asm │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pikipek │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── piloswine │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pineco │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pinsir │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── politoed │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwag │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwhirl │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwrath │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── poliwrath_tad │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── ponyta │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── porygon │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── porygon2 │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── primeape │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── psyduck │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── pupitar │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── quagsire │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── questionmark │ │ └── front.2bpp.lz │ ├── qwilfish │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raichu │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── bitmask.asm │ │ ├── frames.asm │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raichu_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── bitmask.asm │ │ ├── frames.asm │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raikou │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rapidash │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raticate │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── raticate_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rattata │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rattata_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── remoraid │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rhydon │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rhyhorn │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── rockruff │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandshrew │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandshrew_alola │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandslash │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sandslash_alola │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scizor │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── scyther │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seadra │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seaking │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── seel │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shellder │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── shuckle │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skarmory │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── skiploom │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowbro │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowking │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slowpoke │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── slugma │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── smeargle │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── smoochum │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sneasel │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snorlax │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── snubbull │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spearow │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── spinarak │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── squirtle │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── squirtle_glasses │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── stantler │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── starmie │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── staryu │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── steelix │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── steelix_crystal │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sudowoodo │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── suicune │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sunflora │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── sunkern │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── swinub │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tangela │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tauros │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── teddiursa │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tentacool │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tentacruel │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togepi │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── togetic │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── toucannon │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── trainer_pic_pointers.asm │ ├── tropius │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── trumbeak │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tyranitar │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── tyrogue │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── umbreon │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── unown │ │ ├── normal.pal │ │ └── shiny.pal │ ├── unown_a │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_b │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_c │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_d │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_e │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_f │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_g │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_h │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_i │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_j │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_k │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_l │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_m │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_n │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_o │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_p │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_q │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_r │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_s │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_t │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_u │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_v │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_w │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_x │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_y │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── unown_z │ │ ├── back.2bpp.lz │ │ └── front.2bpp.lz │ ├── ursaring │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vaporeon │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── variant_pic_pointer_table.asm │ ├── variant_pic_pointers.asm │ ├── venomoth │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venonat │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── venusaur │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── victreebel │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vileplume │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── voltorb │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vulpix │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── vulpix_kanto │ │ ├── back.2bpp │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wartortle │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wartortle_glasses │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weedle │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weepinbell │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── weezing │ │ ├── back.2bpp.lz │ │ ├── front.2bpp │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wigglytuff │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wingull │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wobbuffet │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── wooper │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── xatu │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── yanma │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ ├── zapdos │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal │ └── zubat │ │ ├── back.2bpp.lz │ │ ├── front.2bpp.lz │ │ ├── normal.pal │ │ └── shiny.pal ├── player │ ├── chris.7x7.2bpp │ ├── chris_back.6x6.2bpp │ ├── chris_back.6x6.2bpp.lz │ ├── dude.6x6.2bpp.lz │ ├── kris.7x7.2bpp │ ├── kris_back.6x6.2bpp │ └── kris_back.6x6.2bpp.lz ├── pokedex │ ├── pokedex.2bpp.lz │ └── slowpoke.2bpp.lz ├── shrink1.2bpp.lz ├── shrink2.2bpp.lz ├── slots.tilemap ├── slots_1.2bpp.lz ├── slots_2.2bpp.lz ├── slots_3.2bpp.lz ├── splash │ └── logo.1bpp ├── stats │ ├── exp_bar_ends.2bpp │ ├── shiny.2bpp │ └── stats.2bpp ├── tilesets │ ├── 01.2bpp.lz │ ├── 02.2bpp.lz │ ├── 03.2bpp.lz │ ├── 04.2bpp.lz │ ├── 05.2bpp.lz │ ├── 06.2bpp.lz │ ├── 07.2bpp.lz │ ├── 08.2bpp.lz │ ├── 09.2bpp.lz │ ├── 10.2bpp.lz │ ├── 11.2bpp.lz │ ├── 12.2bpp.lz │ ├── 13.2bpp.lz │ ├── 14.2bpp.lz │ ├── 15.2bpp.lz │ ├── 16.2bpp.lz │ ├── 17.2bpp.lz │ ├── 18.2bpp.lz │ ├── 19.2bpp.lz │ ├── 20.2bpp.lz │ ├── 21.2bpp.lz │ ├── 22.2bpp.lz │ ├── 23.2bpp.lz │ ├── 24.2bpp.lz │ ├── 25.2bpp.lz │ ├── 26.2bpp.lz │ ├── 27.2bpp.lz │ ├── 28.2bpp.lz │ ├── 29.2bpp.lz │ ├── 30.2bpp.lz │ ├── 31.2bpp.lz │ ├── 32.2bpp.lz │ ├── 33.2bpp.lz │ ├── 34.2bpp.lz │ ├── 35.2bpp.lz │ ├── 36.2bpp.lz │ ├── 37.2bpp.lz │ ├── 38.2bpp.lz │ ├── flower │ │ ├── 1.2bpp │ │ └── 2.2bpp │ ├── fountain │ │ ├── 1.2bpp │ │ ├── 2.2bpp │ │ ├── 3.2bpp │ │ ├── 4.2bpp │ │ └── 5.2bpp │ ├── kanto-flower │ │ ├── 1.2bpp │ │ └── 2.2bpp │ ├── roofs │ │ ├── 0.2bpp │ │ ├── 1.2bpp │ │ ├── 2.2bpp │ │ ├── 3.2bpp │ │ └── 4.2bpp │ ├── rse-bubble │ │ ├── 1.2bpp │ │ ├── 2.2bpp │ │ ├── 3.2bpp │ │ ├── 4.2bpp │ │ └── 5.2bpp │ ├── safari │ │ ├── 1.2bpp │ │ ├── 2.2bpp │ │ ├── 3.2bpp │ │ └── 4.2bpp │ ├── seaweed │ │ ├── 1.2bpp │ │ └── 2.2bpp │ ├── sprout-pillar │ │ ├── 1.2bpp │ │ ├── 10.2bpp │ │ ├── 2.2bpp │ │ ├── 3.2bpp │ │ ├── 4.2bpp │ │ ├── 5.2bpp │ │ ├── 6.2bpp │ │ ├── 7.2bpp │ │ ├── 8.2bpp │ │ └── 9.2bpp │ ├── water │ │ ├── dive.2bpp │ │ ├── johto.2bpp │ │ ├── rockbotleft.2bpp │ │ ├── rockbotright.2bpp │ │ ├── rockleft.2bpp │ │ ├── rockright.2bpp │ │ ├── rocktops.2bpp │ │ ├── rse.2bpp │ │ └── shore.2bpp │ └── whirlpool │ │ ├── bottom.2bpp │ │ └── top.2bpp ├── timeset │ ├── bg.2bpp │ ├── down.2bpp │ └── up.2bpp ├── title │ ├── dragonite.w128.2bpp.lz │ └── logo.w160.2bpp.lz ├── town_map │ ├── cursor.2bpp.lz │ ├── dexmap_nest_icon.2bpp │ ├── fast_ship.2bpp │ ├── kanto.bin │ ├── orange.bin │ └── town_map.w128.2bpp.lz ├── trade │ ├── arrow.2bpp │ ├── ball.2bpp │ ├── bubble.2bpp │ ├── cable.2bpp │ ├── game_boy.2bpp.lz │ └── poof.2bpp ├── trainer_card │ ├── badges.2bpp │ ├── chris_card.5x7.2bpp │ ├── kris_card.5x7.2bpp │ ├── leaders.2bpp │ └── trainer_card.2bpp └── trainers │ ├── agatha.2bpp.lz │ ├── agatha.pal │ ├── alice.2bpp.lz │ ├── alice.pal │ ├── athlete.2bpp.lz │ ├── athlete.pal │ ├── beauty.2bpp.lz │ ├── beauty.pal │ ├── biker.2bpp.lz │ ├── biker.pal │ ├── bill.2bpp.lz │ ├── bill.pal │ ├── bird_keeper.2bpp.lz │ ├── bird_keeper.pal │ ├── blackbelt_t.2bpp.lz │ ├── blackbelt_t.pal │ ├── blaine.2bpp.lz │ ├── blaine.pal │ ├── blue.2bpp.lz │ ├── blue.pal │ ├── brock.2bpp.lz │ ├── brock.pal │ ├── bruno.2bpp.lz │ ├── bruno.pal │ ├── bug_catcher.2bpp.lz │ ├── bug_catcher.pal │ ├── bug_catcher_f.2bpp.lz │ ├── bug_catcher_f.pal │ ├── butch.2bpp.lz │ ├── butch.pal │ ├── camper.2bpp.lz │ ├── camper.pal │ ├── cassidy.2bpp.lz │ ├── cassidy.pal │ ├── cassidy_butch.2bpp.lz │ ├── cassidy_butch.pal │ ├── catman.2bpp.lz │ ├── catman.pal │ ├── chris.2bpp.lz │ ├── chris.pal │ ├── cissy.2bpp │ ├── cissy.2bpp.lz │ ├── cissy.pal │ ├── cooltrainer_f.2bpp.lz │ ├── cooltrainer_f.pal │ ├── cooltrainer_m.2bpp.lz │ ├── cooltrainer_m.pal │ ├── crook.2bpp │ ├── crook.2bpp.lz │ ├── crook.pal │ ├── cross.2bpp.lz │ ├── cross.pal │ ├── danny.2bpp │ ├── danny.2bpp.lz │ ├── danny.pal │ ├── diver_female.2bpp.lz │ ├── diver_female.pal │ ├── diver_male.2bpp.lz │ ├── diver_male.pal │ ├── drake.2bpp │ ├── drake.2bpp.lz │ ├── drake.pal │ ├── engineer.2bpp.lz │ ├── engineer.pal │ ├── erika.2bpp.lz │ ├── erika.pal │ ├── firebreather.2bpp.lz │ ├── firebreather.pal │ ├── fisher.2bpp.lz │ ├── fisher.pal │ ├── gentleman.2bpp.lz │ ├── gentleman.pal │ ├── giovanni.2bpp.lz │ ├── giovanni.pal │ ├── green.2bpp.lz │ ├── green.pal │ ├── guitarist.2bpp.lz │ ├── guitarist.pal │ ├── hiker.2bpp.lz │ ├── hiker.pal │ ├── imakuni.2bpp.lz │ ├── imakuni.pal │ ├── jace.2bpp.lz │ ├── jace.pal │ ├── james.2bpp.lz │ ├── james.pal │ ├── jessie.2bpp.lz │ ├── jessie.pal │ ├── jessie_james.2bpp.lz │ ├── jessie_james.pal │ ├── juggler.2bpp.lz │ ├── juggler.pal │ ├── kat.2bpp │ ├── kat.2bpp.lz │ ├── kat.pal │ ├── koga.2bpp.lz │ ├── koga.pal │ ├── kris.pal │ ├── kurt.2bpp.lz │ ├── kurt.pal │ ├── lance.2bpp.lz │ ├── lance.pal │ ├── lass.2bpp.lz │ ├── lass.pal │ ├── lawrence.2bpp │ ├── lawrence.2bpp.lz │ ├── lawrence.pal │ ├── lorelei.2bpp.lz │ ├── lorelei.pal │ ├── lt_surge.2bpp.lz │ ├── lt_surge.pal │ ├── luana.2bpp │ ├── luana.2bpp.lz │ ├── luana.pal │ ├── medium.2bpp.lz │ ├── medium.pal │ ├── misty.2bpp.lz │ ├── misty.pal │ ├── mom.2bpp.lz │ ├── mom.pal │ ├── nurse.2bpp.lz │ ├── nurse.pal │ ├── officer.2bpp.lz │ ├── officer.pal │ ├── otaku.2bpp.lz │ ├── otaku.pal │ ├── palette_pointers.asm │ ├── picnicker.2bpp.lz │ ├── picnicker.pal │ ├── pink_maniac.pal │ ├── pokefan_f.2bpp.lz │ ├── pokefan_f.pal │ ├── pokefan_m.2bpp.lz │ ├── pokefan_m.pal │ ├── pokemaniac.2bpp.lz │ ├── pokemaniac.pal │ ├── prof_aide.2bpp.lz │ ├── prof_aide.pal │ ├── prof_ivy.2bpp.lz │ ├── prof_ivy.pal │ ├── prof_oak.2bpp.lz │ ├── prof_oak.pal │ ├── psychic_t.2bpp.lz │ ├── psychic_t.pal │ ├── raymond.2bpp │ ├── raymond.2bpp.lz │ ├── raymond.pal │ ├── red.2bpp.lz │ ├── red.pal │ ├── rudy.2bpp │ ├── rudy.2bpp.lz │ ├── rudy.pal │ ├── sabrina.2bpp.lz │ ├── sabrina.pal │ ├── sage.2bpp.lz │ ├── sage.pal │ ├── sailor.2bpp.lz │ ├── sailor.pal │ ├── schoolboy.2bpp.lz │ ├── schoolboy.pal │ ├── scuz.2bpp │ ├── scuz.2bpp.lz │ ├── scuz.pal │ ├── sightseerf.2bpp.lz │ ├── sightseerf.pal │ ├── sightseerm.2bpp.lz │ ├── sightseerm.pal │ ├── super_nerd.2bpp.lz │ ├── super_nerd.pal │ ├── swimmer_f.2bpp.lz │ ├── swimmer_f.pal │ ├── swimmer_m.2bpp.lz │ ├── swimmer_m.pal │ ├── teacher.2bpp.lz │ ├── teacher.pal │ ├── tracey.2bpp │ ├── tracey.2bpp.lz │ ├── tracey.pal │ ├── tracey2.2bpp │ ├── tracey2.2bpp.lz │ ├── tracey2.pal │ ├── waitress.2bpp.lz │ ├── waitress.pal │ ├── yellow.2bpp.lz │ ├── yellow.pal │ ├── youngster.2bpp.lz │ └── youngster.pal ├── home.asm ├── home ├── audio.asm ├── battle.asm ├── copy.asm ├── copy2.asm ├── cry.asm ├── decompress.asm ├── ded.asm ├── delay.asm ├── double_speed.asm ├── fade.asm ├── farcall.asm ├── flag.asm ├── game_time.asm ├── handshake.asm ├── highhome.asm ├── init.asm ├── item.asm ├── joypad.asm ├── lcd.asm ├── map.asm ├── map_objects.asm ├── math.asm ├── menu.asm ├── movement.asm ├── palettes.asm ├── pokedex_flags.asm ├── predef.asm ├── random.asm ├── rtc.asm ├── serial.asm ├── sine.asm ├── sram.asm ├── string.asm ├── text.asm ├── tilemap.asm ├── time.asm ├── vblank.asm ├── video.asm └── window.asm ├── hram.asm ├── includes.asm ├── install.bat ├── interrupts.asm ├── items ├── item_attributes.asm ├── item_descriptions.asm ├── item_effects.asm ├── item_names.asm ├── marts.asm └── pokeball_wobble.asm ├── macros.asm ├── macros ├── basestats.asm ├── charmap.asm ├── enum.asm ├── event.asm ├── map.asm ├── move_anim.asm ├── move_effect.asm ├── movement.asm ├── predef.asm ├── rst.asm ├── sound.asm ├── text.asm ├── tilesets.asm ├── trade_anim.asm ├── trainer.asm └── wram.asm ├── main.asm ├── maps.asm ├── maps ├── AirshipCutscene.asm ├── AirshipCutscene.blk ├── AirshipInterior.asm ├── AirshipInterior.blk ├── AirshipOutside.asm ├── AirshipOutside.blk ├── AscorbiaIsland.asm ├── AscorbiaIsland.blk ├── AscorbiaIslandCenter.asm ├── AscorbiaIslandFanClub.asm ├── AscorbiaIslandHouse1.asm ├── AscorbiaIslandHouse2.asm ├── AscorbiaIslandMart.asm ├── AscorbiaIslandMoveRelearner.asm ├── AscorbiaIslandRoute63Gate.asm ├── BluesHouse.asm ├── ButwalIslandEast.asm ├── ButwalIslandEast.blk ├── ButwalIslandUnderwaterEast.asm ├── ButwalIslandUnderwaterEast.blk ├── ButwalIslandUnderwaterWest.asm ├── ButwalIslandUnderwaterWest.blk ├── ButwalIslandWest.asm ├── ButwalIslandWest.blk ├── ButwalIslandWestGrotto.asm ├── ButwalIslandWestGrotto.blk ├── ChiefsHouse.asm ├── ChiefsHouse.blk ├── CinnabarIsland.asm ├── CinnabarIsland.blk ├── CleopatraIsland.asm ├── CleopatraIsland.blk ├── Colosseum.asm ├── Colosseum.blk ├── CrystalCave1F.asm ├── CrystalCave1F.blk ├── CrystalCaveB1.asm ├── CrystalCaveB1.blk ├── CyberSpace.asm ├── CyberSpace.blk ├── DannysHouse.asm ├── DayCare.asm ├── DayCare.blk ├── DeptStore1F.blk ├── DeptStore2F.blk ├── DeptStore3F.blk ├── DeptStore4F.blk ├── DeptStore5F.blk ├── DeptStore6F.blk ├── DeptStoreElevator.blk ├── EastWestGate.blk ├── FireIsland.asm ├── FireIsland.blk ├── FishingContest.asm ├── FishingContest.blk ├── FuchsiaCity.asm ├── FuchsiaCity.blk ├── FukuharaNo4BF1.asm ├── FukuharaNo4BF1.blk ├── FukuharaNo4BF2.asm ├── FukuharaNo4BF2.blk ├── FukuharaNo4BF3.asm ├── FukuharaNo4BF3.blk ├── GameCorner.asm ├── GameCorner.blk ├── GateUpstairs.blk ├── GoldenIsland.asm ├── GoldenIsland.blk ├── GoldenIslandElderHouse.asm ├── GoldenIslandGateHouse.asm ├── GoldenIslandGateHouse.blk ├── GoldenIslandHouse1.asm ├── GoldenIslandHouse2.asm ├── GoldenIslandHouse3.asm ├── GoldenrodGameCorner.blk ├── GoldenrodPokeCenter1F.asm ├── GrapefruitStore.asm ├── HallOfFame.asm ├── HallOfFame.blk ├── HamlinBridge.asm ├── HamlinBridge.blk ├── HamlinBridgeGate.asm ├── HamlinFields.blk ├── HamlinIsland.asm ├── HamlinIsland.blk ├── HamlinRoute71Gate.asm ├── HeartScaleCove.asm ├── HeartScaleCove.blk ├── House1.blk ├── House2.blk ├── IceIsland.asm ├── IceIsland.blk ├── IvysHouse.asm ├── IvysHouse.blk ├── IvysLab.asm ├── IvysLab.blk ├── KinnowCafe.asm ├── KinnowCafe.blk ├── KinnowCharcoalHouse.asm ├── KinnowIsland.asm ├── KinnowIsland.blk ├── KinnowIslandRoute57Gate.asm ├── KinnowLoreHouse.asm ├── KinnowMart.asm ├── KinnowPokeCenter.asm ├── KinnowShowboat.asm ├── KinnowShowboat.blk ├── KinnowShowboatGate.asm ├── KinnowShowboatHouse.asm ├── KinnowShowboatInside.asm ├── KinnowShowboatInside.blk ├── KinnowSkateShop.asm ├── KinnowSkateShop.blk ├── KinnowTradeHouse.asm ├── KrissHouse1F.asm ├── KrissHouse1F.blk ├── KrissHouse2F.asm ├── KrissHouse2F.blk ├── KrissNeighborsHouse.asm ├── KumquatCenter.asm ├── KumquatHotelBottomRoom.blk ├── KumquatHotelBottomRoom2.asm ├── KumquatHotelBottomRoom3.asm ├── KumquatHotelElevator.asm ├── KumquatHotelElevator.blk ├── KumquatHotelGym.asm ├── KumquatHotelGym.blk ├── KumquatHotelLobby.asm ├── KumquatHotelLobby.blk ├── KumquatHotelPool.asm ├── KumquatHotelPool.blk ├── KumquatHotelSuites.asm ├── KumquatHotelSuites.blk ├── KumquatHotelTopRoom.blk ├── KumquatHotelTopRoom2.asm ├── KumquatHotelTopRoom3.asm ├── KumquatHouse1.asm ├── KumquatHouse2.asm ├── KumquatHouse3.asm ├── KumquatHouse4.asm ├── KumquatIslandEast.asm ├── KumquatIslandEast.blk ├── KumquatIslandWest.asm ├── KumquatIslandWest.blk ├── KumquatMart.asm ├── LightningIsland.asm ├── LightningIsland.blk ├── LightningIslandCave.asm ├── LightningIslandCave.blk ├── MandarinDesert.asm ├── MandarinDesert.blk ├── MandarinNorth.asm ├── MandarinNorth.blk ├── MandarinNorthLargeHouse.asm ├── MandarinNorthMart.asm ├── MandarinNorthNameRater.asm ├── MandarinNorthPokeCenter.asm ├── MandarinNorthSmallHouse.asm ├── MandarinUndergroundBF1.asm ├── MandarinUndergroundBF1.blk ├── MandarinUndergroundBF2.asm ├── MandarinUndergroundBF2.blk ├── MandarinUndergroundBF3.asm ├── MandarinUndergroundBF3.blk ├── MandarinUndergroundEntrance.asm ├── MandarinUndergroundEntrance.blk ├── Mart.blk ├── MayorsOffice.asm ├── MayorsOffice.blk ├── MayorsOfficeMeetingRoom.asm ├── MikanGym.asm ├── MikanGym.blk ├── MikanIsland.asm ├── MikanIsland.blk ├── MikanIslandRoute53Gate.asm ├── MikanMart.asm ├── MikanNicknameSpeechHouse.asm ├── MikanOnixTradeHouse.asm ├── MikanPokeCenter1F.asm ├── MoroFishingHouse.asm ├── MoroHouse1.asm ├── MoroHouse2.asm ├── MoroIsland.asm ├── MoroIsland.blk ├── MoroIslandMuseum.asm ├── MoroIslandMuseum.blk ├── MoroMart.asm ├── MoroPokeCenter.asm ├── MoroRoute60Gate.asm ├── MoroSouthHouse.asm ├── MtNavel1F.asm ├── MtNavel1F.blk ├── MtNavel2F.asm ├── MtNavel2F.blk ├── MtNavelIceRock.asm ├── MtNavelIceRock.blk ├── MtNavelPeak.asm ├── MtNavelPeak.blk ├── MurcottHouse1.asm ├── MurcottHouse2.asm ├── MurcottHouse3.asm ├── MurcottIsland.asm ├── MurcottIsland.blk ├── MurcottPokeCenter.asm ├── MurcottPokeMart.asm ├── NavelIsland.asm ├── NavelIsland.blk ├── NorthSouthGate.blk ├── OaksLab.asm ├── OaksLab.blk ├── PalletTown.asm ├── PalletTown.blk ├── PinkanIsland.asm ├── PinkanIsland.blk ├── PiratesCove1F.asm ├── PiratesCove1F.blk ├── PiratesCove2F.asm ├── PiratesCove2F.blk ├── PiratesCoveUnderwater.asm ├── PiratesCoveUnderwater.blk ├── PokeCenter1F.blk ├── PokeCenter2F.asm ├── PokeCenter2F.blk ├── PonchosHouse.asm ├── PonchosHouse.blk ├── PortaVistaTest16x10.blk ├── PummeloCenter.asm ├── PummeloIsland.asm ├── PummeloIsland.blk ├── PummeloIslandHouse1.asm ├── PummeloIslandHouse2.asm ├── PummeloIslandHouse3.asm ├── PummeloIslandHouse4.asm ├── PummeloIslandHouse5.asm ├── PummeloIslandHouse6.asm ├── PummeloMart.asm ├── PummeloRoute70Gate.asm ├── PummeloStadium.asm ├── PummeloStadium.blk ├── QuackenpokerLab.asm ├── RedsHouse1F.asm ├── RedsHouse1F.blk ├── RedsHouse2F.asm ├── RedsHouse2F.blk ├── RindIsland.asm ├── RindIsland.blk ├── Route11.asm ├── Route11.blk ├── Route12.asm ├── Route12.blk ├── Route13.asm ├── Route13.blk ├── Route14.asm ├── Route14.blk ├── Route15.asm ├── Route15.blk ├── Route19.asm ├── Route20.asm ├── Route21.asm ├── Route21.blk ├── Route35NationalParkgate.asm ├── Route35NationalParkgate.blk ├── Route36NationalParkgate.asm ├── Route36NationalParkgate.blk ├── Route49.asm ├── Route49.blk ├── Route50.asm ├── Route50.blk ├── Route51.asm ├── Route51.blk ├── Route51GateUpstairs.asm ├── Route51TangeloJungleGate.asm ├── Route52.asm ├── Route52.blk ├── Route52PokeCenter1F.asm ├── Route52TangeloJungleGate.asm ├── Route53.asm ├── Route53.blk ├── Route53GateUpstairs.asm ├── Route54.asm ├── Route54.blk ├── Route55.asm ├── Route55.blk ├── Route55QuestHouse.asm ├── Route55Underwater.asm ├── Route55Underwater.blk ├── Route56East.asm ├── Route56East.blk ├── Route56PokeCenter.asm ├── Route56West.asm ├── Route56West.blk ├── Route57.asm ├── Route57.blk ├── Route57GateUpstairs.asm ├── Route57North.asm ├── Route57North.blk ├── Route58.asm ├── Route58.blk ├── Route59.asm ├── Route59.blk ├── Route60.asm ├── Route60.blk ├── Route60GateUpstairs.asm ├── Route61.asm ├── Route61.blk ├── Route62.asm ├── Route62.blk ├── Route62MandarinDesertGate.asm ├── Route63EastWest.asm ├── Route63EastWest.blk ├── Route63NorthSouth.asm ├── Route63NorthSouth.blk ├── Route64.asm ├── Route64.blk ├── Route65.asm ├── Route65.blk ├── Route66EastWest.asm ├── Route66EastWest.blk ├── Route66NorthSouth.asm ├── Route66NorthSouth.blk ├── Route67.asm ├── Route67.blk ├── Route67Underwater.asm ├── Route67Underwater.blk ├── Route68.asm ├── Route68.blk ├── Route69Gate.asm ├── Route69North.asm ├── Route69North.blk ├── Route69South.asm ├── Route69South.blk ├── Route70.asm ├── Route70.blk ├── Route70GateUpstairs.asm ├── Route71.asm ├── Route71.blk ├── Route71East.asm ├── Route71East.blk ├── Route71Underwater.asm ├── Route71Underwater.blk ├── SafariZone.asm ├── SafariZone.blk ├── SevenGrapefruits.asm ├── SevenGrapefruits.blk ├── SevenGrapefruitsUnderwater.asm ├── SevenGrapefruitsUnderwater.blk ├── SewerEntrance.asm ├── SewerEntrance.blk ├── ShamoutiBay.asm ├── ShamoutiBay.blk ├── ShamoutiBayHouse.asm ├── ShamoutiCave.asm ├── ShamoutiCave.blk ├── ShamoutiCenter.asm ├── ShamoutiHouse.asm ├── ShamoutiIsland.asm ├── ShamoutiIsland.blk ├── ShamoutiMart.asm ├── ShamoutiNorthBeach.asm ├── ShamoutiNorthBeach.blk ├── ShamoutiShrine.asm ├── ShamoutiShrine.blk ├── SunburstCrystalShop.asm ├── SunburstCrystalShop.blk ├── SunburstIsland.asm ├── SunburstIsland.blk ├── SunburstLargeHouse.asm ├── SunburstPokeCenter.asm ├── SunburstSmallHouse.asm ├── SunburstSouthHouse.asm ├── SunrayCaveMandarinDesert1F.asm ├── SunrayCaveMandarinDesert1F.blk ├── TangeloEvolutionSpeechHouse.asm ├── TangeloGymSpeechHouse.asm ├── TangeloIsland.asm ├── TangeloIsland.blk ├── TangeloJungle.asm ├── TangeloJungle.blk ├── TangeloMart.asm ├── TangeloPokeCenter1F.asm ├── TangeloPort.asm ├── TarrocoIsland.asm ├── TarrocoIsland.blk ├── TradeCenter.asm ├── TradeCenter.blk ├── TrovitaGym.asm ├── TrovitaGym.blk ├── TrovitaIsland.asm ├── TrovitaIsland.blk ├── TrovitaPort.asm ├── Trovitopolis.asm ├── Trovitopolis.blk ├── TrovitopolisDeptStore1F.asm ├── TrovitopolisDeptStore2F.asm ├── TrovitopolisDeptStore3F.asm ├── TrovitopolisDeptStore4F.asm ├── TrovitopolisDeptStore5F.asm ├── TrovitopolisDeptStore6F.asm ├── TrovitopolisDeptStoreElevator.asm ├── TrovitopolisDeptStoreRoof.asm ├── TrovitopolisDeptStoreRoof.blk ├── TrovitopolisHouse1.asm ├── TrovitopolisHouse2.asm ├── TrovitopolisHouse3.asm ├── TrovitopolisHouse4.asm ├── TrovitopolisMoveDeleterHouse.asm ├── TrovitopolisMrFlashHouse.asm ├── TrovitopolisPokeCommCenter.asm ├── TrovitopolisPokeCommCenter.blk ├── TrovitopolisPort.asm ├── TrovitopolisPrimaSchool.asm ├── TrovitopolisPrimaSchool.blk ├── TrovitopolisSewer.asm ├── TrovitopolisSewer.blk ├── UndergroundPathEntrance.blk ├── UndergroundPathSwitchRoomEntrances.asm ├── UndergroundPathSwitchRoomEntrances.blk ├── UndergroundWarehouse.asm ├── UndergroundWarehouse.blk ├── UnnamedIsland1.asm ├── UnnamedIsland1.blk ├── UnnamedIsland1PokeCenter.asm ├── UnnamedIsland2.asm ├── UnnamedIsland2.blk ├── UnnamedIsland3.asm ├── UnnamedIsland3.blk ├── UnnamedIsland3House.asm ├── UnnamedIsland3House.blk ├── ValenciaIsland.asm ├── ValenciaIsland.blk ├── ValenciaPort.asm ├── ValenciaPort.blk ├── ValenciaTangeloRoute49.asm ├── ValenciaTangeloRoute49.blk ├── VermilionCity.asm ├── VermilionCity.blk ├── VictoryRoadEast.asm ├── VictoryRoadEast.blk ├── VictoryRoadExitRoom.asm ├── VictoryRoadExitRoom.blk ├── VictoryRoadF1.asm ├── VictoryRoadF1.blk ├── VictoryRoadF2.asm ├── VictoryRoadF2.blk ├── VictoryRoadF3.asm ├── VictoryRoadF3.blk ├── VictoryRoadMysteryRoom.asm ├── VictoryRoadMysteryRoom.blk ├── WarehouseEntrance.asm ├── WarehouseEntrance.blk ├── WreckedShip.asm ├── WreckedShip.blk ├── WreckedShipUnderwater.asm ├── WreckedShipUnderwater.blk ├── WreckedShipUnsunk.asm ├── WreckedShipUnsunk.blk ├── block_data.asm ├── map_headers.asm ├── script_data.asm └── second_map_headers.asm ├── patches ├── deprecated-historical-only │ ├── DO NOT USE THESE PATCHES.txt │ ├── movie-2000-no-pss.ips │ ├── movie-2000-pss.ips │ ├── pokeorange-alpha-3.2.ips │ ├── pokeorange-beta-1.0.ips │ ├── pokeorange-beta-hoty-normal.ips │ ├── pokeorange-beta-hoty-pss.ips │ ├── pokeorange-betatester-2-4-21.ips │ ├── renaissance-no-pss.ips │ └── renaissance-pss.ips ├── suloku-patch-no-pss.ips └── suloku-patch-pss.ips ├── pokeorange.link ├── predef ├── cgb.asm └── crystal.asm ├── release.bat ├── replace.sh ├── roms.md5 ├── rst.asm ├── scan_includes.exe.stackdump ├── sram.asm ├── text ├── battle.asm ├── common_1.asm ├── common_2.asm ├── common_3.asm ├── common_4.asm ├── common_5.asm ├── common_text.asm ├── stdtext.asm ├── trainer_class_names.asm └── types.asm ├── tilesets ├── 01_collision.asm ├── 01_metatiles.bin ├── 01_palette_map.asm ├── 02_collision.asm ├── 02_metatiles.bin ├── 02_palette_map.asm ├── 03_collision.asm ├── 03_metatiles.bin ├── 03_palette_map.asm ├── 04_collision.asm ├── 04_metatiles.bin ├── 04_palette_map.asm ├── 05_collision.asm ├── 05_metatiles.bin ├── 05_palette_map.asm ├── 06_collision.asm ├── 06_metatiles.bin ├── 06_palette_map.asm ├── 07_collision.asm ├── 07_metatiles.bin ├── 07_palette_map.asm ├── 08_collision.asm ├── 08_metatiles.bin ├── 08_palette_map.asm ├── 09_collision.asm ├── 09_metatiles.bin ├── 09_palette_map.asm ├── 10_collision.asm ├── 10_metatiles.bin ├── 10_palette_map.asm ├── 11_collision.asm ├── 11_metatiles.bin ├── 11_palette_map.asm ├── 12_collision.asm ├── 12_metatiles.bin ├── 12_palette_map.asm ├── 13_collision.asm ├── 13_metatiles.bin ├── 13_palette_map.asm ├── 14_collision.asm ├── 14_metatiles.bin ├── 14_palette_map.asm ├── 15_collision.asm ├── 15_metatiles.bin ├── 15_palette_map.asm ├── 16_collision.asm ├── 16_metatiles.bin ├── 16_palette_map.asm ├── 17_collision.asm ├── 17_metatiles.bin ├── 17_palette_map.asm ├── 18_collision.asm ├── 18_metatiles.bin ├── 18_palette_map.asm ├── 19_collision.asm ├── 19_metatiles.bin ├── 19_palette_map.asm ├── 20_collision.asm ├── 20_metatiles.bin ├── 20_palette_map.asm ├── 21_collision.asm ├── 21_metatiles.bin ├── 21_palette_map.asm ├── 22_collision.asm ├── 22_metatiles.bin ├── 22_palette_map.asm ├── 23_collision.asm ├── 23_metatiles.bin ├── 23_palette_map.asm ├── 24_collision.asm ├── 24_metatiles.bin ├── 24_palette_map.asm ├── 25_collision.asm ├── 25_metatiles.bin ├── 25_palette_map.asm ├── 26_collision.asm ├── 26_metatiles.bin ├── 26_palette_map.asm ├── 27_collision.asm ├── 27_metatiles.bin ├── 27_palette_map.asm ├── 28_collision.asm ├── 28_metatiles.bin ├── 28_palette_map.asm ├── 29_collision.asm ├── 29_metatiles.bin ├── 29_palette_map.asm ├── 30_collision.asm ├── 30_metatiles.bin ├── 30_palette_map.asm ├── 31_collision.asm ├── 31_metatiles.bin ├── 31_palette_map.asm ├── 32_collision.asm ├── 32_metatiles.bin ├── 32_palette_map.asm ├── 33_collision.asm ├── 33_metatiles.bin ├── 33_palette_map.asm ├── 34_collision.asm ├── 34_metatiles.bin ├── 34_palette_map.asm ├── 35_collision.asm ├── 35_metatiles.bin ├── 35_palette_map.asm ├── 36_collision.asm ├── 36_metatiles.bin ├── 36_palette_map.asm ├── 37_collision.asm ├── 37_metatiles.bin ├── 37_palette_map.asm ├── 38_collision.asm ├── 38_metatiles.bin ├── 38_palette_map.asm ├── airship_inside.pal ├── airship_outside.pal ├── animations.asm ├── battle_tower.pal ├── bg.pal ├── collision.asm ├── crystal_cave.pal ├── data.asm ├── dusk.pal ├── golden_island.pal ├── house.pal ├── ice_path.pal ├── iceisland.pal ├── kumquat_hotel.pal ├── mandarin_desert.pal ├── mansion.pal ├── mayors_office.pal ├── navel_island.pal ├── ob.pal ├── ob_kumquat.pal ├── ob_underwater.pal ├── palette_maps.asm ├── pokecom.pal ├── pummelo_stadium.pal ├── radio_tower.pal ├── roof.pal ├── roofs.asm ├── shamoutiisland.pal ├── shamoutishrine.pal ├── tileset_headers.asm ├── trovitopolis_sewer.pal ├── underwater.pal └── victory_road.pal ├── tools ├── .gitignore ├── Makefile ├── bpp2png.c ├── common.h ├── compare.sh ├── compare2.sh ├── free_space.awk ├── free_space.py ├── gfx.c ├── gfx.py ├── lodepng │ ├── lodepng.c │ └── lodepng.h ├── 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 ├── mapreader.py ├── palfix.py ├── png.py ├── png_dimensions.c ├── pokemon_animation.c ├── pokemon_animation_graphics.c ├── scan_includes.c ├── stadium.c ├── sym_comments.py ├── toc.py ├── unnamed.py └── used_space.py ├── trainers ├── attributes.asm ├── dvs.asm ├── read_party.asm ├── trainer_pointers.asm └── trainers.asm ├── utils ├── bank-ends.py ├── compare.py ├── eggmoves.py ├── find-unused-tiles.py ├── map-all.py ├── map.py ├── metatiles.py ├── optimize.py ├── pal2html.py └── png.py ├── vram.asm ├── wram.asm └── wtw.cht /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IDEAS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/IDEAS.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/INSTALL.md -------------------------------------------------------------------------------- /MOVES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/MOVES.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/Makefile -------------------------------------------------------------------------------- /POKEDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/POKEDEX.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/TODO.md -------------------------------------------------------------------------------- /audio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio.asm -------------------------------------------------------------------------------- /audio/cries.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/cries.asm -------------------------------------------------------------------------------- /audio/cry_headers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/cry_headers.asm -------------------------------------------------------------------------------- /audio/cry_pointers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/cry_pointers.asm -------------------------------------------------------------------------------- /audio/ded.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded.asm -------------------------------------------------------------------------------- /audio/ded/azurill.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/azurill.ded -------------------------------------------------------------------------------- /audio/ded/azurill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/azurill.wav -------------------------------------------------------------------------------- /audio/ded/carvanha.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/carvanha.ded -------------------------------------------------------------------------------- /audio/ded/carvanha.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/carvanha.wav -------------------------------------------------------------------------------- /audio/ded/chatot.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/chatot.ded -------------------------------------------------------------------------------- /audio/ded/chatot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/chatot.wav -------------------------------------------------------------------------------- /audio/ded/chimecho.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/chimecho.ded -------------------------------------------------------------------------------- /audio/ded/chimecho.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/chimecho.wav -------------------------------------------------------------------------------- /audio/ded/chingling.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/chingling.ded -------------------------------------------------------------------------------- /audio/ded/chingling.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/chingling.wav -------------------------------------------------------------------------------- /audio/ded/cutiefly.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/cutiefly.ded -------------------------------------------------------------------------------- /audio/ded/cutiefly.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/cutiefly.wav -------------------------------------------------------------------------------- /audio/ded/dragalge.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/dragalge.ded -------------------------------------------------------------------------------- /audio/ded/dragalge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/dragalge.wav -------------------------------------------------------------------------------- /audio/ded/files.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/files.asm -------------------------------------------------------------------------------- /audio/ded/finneon.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/finneon.ded -------------------------------------------------------------------------------- /audio/ded/finneon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/finneon.wav -------------------------------------------------------------------------------- /audio/ded/flygon.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/flygon.ded -------------------------------------------------------------------------------- /audio/ded/flygon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/flygon.wav -------------------------------------------------------------------------------- /audio/ded/glaceon.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/glaceon.ded -------------------------------------------------------------------------------- /audio/ded/glaceon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/glaceon.wav -------------------------------------------------------------------------------- /audio/ded/happiny.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/happiny.ded -------------------------------------------------------------------------------- /audio/ded/happiny.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/happiny.wav -------------------------------------------------------------------------------- /audio/ded/kecleon.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/kecleon.ded -------------------------------------------------------------------------------- /audio/ded/kecleon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/kecleon.wav -------------------------------------------------------------------------------- /audio/ded/latias.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/latias.ded -------------------------------------------------------------------------------- /audio/ded/latias.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/latias.wav -------------------------------------------------------------------------------- /audio/ded/latios.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/latios.ded -------------------------------------------------------------------------------- /audio/ded/latios.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/latios.wav -------------------------------------------------------------------------------- /audio/ded/leafeon.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/leafeon.ded -------------------------------------------------------------------------------- /audio/ded/leafeon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/leafeon.wav -------------------------------------------------------------------------------- /audio/ded/lumineon.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/lumineon.ded -------------------------------------------------------------------------------- /audio/ded/lumineon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/lumineon.wav -------------------------------------------------------------------------------- /audio/ded/magmortar.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/magmortar.ded -------------------------------------------------------------------------------- /audio/ded/magmortar.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/magmortar.wav -------------------------------------------------------------------------------- /audio/ded/magnezone.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/magnezone.ded -------------------------------------------------------------------------------- /audio/ded/magnezone.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/magnezone.wav -------------------------------------------------------------------------------- /audio/ded/mantyke.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/mantyke.ded -------------------------------------------------------------------------------- /audio/ded/mantyke.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/mantyke.wav -------------------------------------------------------------------------------- /audio/ded/mareanie.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/mareanie.ded -------------------------------------------------------------------------------- /audio/ded/mareanie.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/mareanie.wav -------------------------------------------------------------------------------- /audio/ded/marshadow.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/marshadow.ded -------------------------------------------------------------------------------- /audio/ded/marshadow.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/marshadow.wav -------------------------------------------------------------------------------- /audio/ded/mime__jr.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/mime__jr.ded -------------------------------------------------------------------------------- /audio/ded/mime__jr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/mime__jr.wav -------------------------------------------------------------------------------- /audio/ded/mimikyu.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/mimikyu.ded -------------------------------------------------------------------------------- /audio/ded/mimikyu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/mimikyu.wav -------------------------------------------------------------------------------- /audio/ded/munchlax.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/munchlax.ded -------------------------------------------------------------------------------- /audio/ded/munchlax.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/munchlax.wav -------------------------------------------------------------------------------- /audio/ded/palossand.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/palossand.ded -------------------------------------------------------------------------------- /audio/ded/palossand.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/palossand.wav -------------------------------------------------------------------------------- /audio/ded/pelipper.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/pelipper.ded -------------------------------------------------------------------------------- /audio/ded/pelipper.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/pelipper.wav -------------------------------------------------------------------------------- /audio/ded/pikipek.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/pikipek.ded -------------------------------------------------------------------------------- /audio/ded/pikipek.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/pikipek.wav -------------------------------------------------------------------------------- /audio/ded/porygon_z.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/porygon_z.ded -------------------------------------------------------------------------------- /audio/ded/porygon_z.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/porygon_z.wav -------------------------------------------------------------------------------- /audio/ded/relicanth.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/relicanth.ded -------------------------------------------------------------------------------- /audio/ded/relicanth.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/relicanth.wav -------------------------------------------------------------------------------- /audio/ded/rhyperior.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/rhyperior.ded -------------------------------------------------------------------------------- /audio/ded/rhyperior.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/rhyperior.wav -------------------------------------------------------------------------------- /audio/ded/ribombee.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/ribombee.ded -------------------------------------------------------------------------------- /audio/ded/ribombee.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/ribombee.wav -------------------------------------------------------------------------------- /audio/ded/rockruff.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/rockruff.ded -------------------------------------------------------------------------------- /audio/ded/rockruff.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/rockruff.wav -------------------------------------------------------------------------------- /audio/ded/salandit.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/salandit.ded -------------------------------------------------------------------------------- /audio/ded/salandit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/salandit.wav -------------------------------------------------------------------------------- /audio/ded/salazzle.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/salazzle.ded -------------------------------------------------------------------------------- /audio/ded/salazzle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/salazzle.wav -------------------------------------------------------------------------------- /audio/ded/sandygast.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/sandygast.ded -------------------------------------------------------------------------------- /audio/ded/sandygast.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/sandygast.wav -------------------------------------------------------------------------------- /audio/ded/sharpedo.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/sharpedo.ded -------------------------------------------------------------------------------- /audio/ded/sharpedo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/sharpedo.wav -------------------------------------------------------------------------------- /audio/ded/skrelp.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/skrelp.ded -------------------------------------------------------------------------------- /audio/ded/skrelp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/skrelp.wav -------------------------------------------------------------------------------- /audio/ded/spinda.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/spinda.ded -------------------------------------------------------------------------------- /audio/ded/spinda.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/spinda.wav -------------------------------------------------------------------------------- /audio/ded/stunfisk.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/stunfisk.ded -------------------------------------------------------------------------------- /audio/ded/stunfisk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/stunfisk.wav -------------------------------------------------------------------------------- /audio/ded/sylveon.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/sylveon.ded -------------------------------------------------------------------------------- /audio/ded/sylveon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/sylveon.wav -------------------------------------------------------------------------------- /audio/ded/tangrowth.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/tangrowth.ded -------------------------------------------------------------------------------- /audio/ded/tangrowth.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/tangrowth.wav -------------------------------------------------------------------------------- /audio/ded/togekiss.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/togekiss.ded -------------------------------------------------------------------------------- /audio/ded/togekiss.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/togekiss.wav -------------------------------------------------------------------------------- /audio/ded/toucannon.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/toucannon.ded -------------------------------------------------------------------------------- /audio/ded/toucannon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/toucannon.wav -------------------------------------------------------------------------------- /audio/ded/toxapex.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/toxapex.ded -------------------------------------------------------------------------------- /audio/ded/toxapex.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/toxapex.wav -------------------------------------------------------------------------------- /audio/ded/trapinch.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/trapinch.ded -------------------------------------------------------------------------------- /audio/ded/trapinch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/trapinch.wav -------------------------------------------------------------------------------- /audio/ded/tropius.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/tropius.ded -------------------------------------------------------------------------------- /audio/ded/tropius.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/tropius.wav -------------------------------------------------------------------------------- /audio/ded/trumbeak.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/trumbeak.ded -------------------------------------------------------------------------------- /audio/ded/trumbeak.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/trumbeak.wav -------------------------------------------------------------------------------- /audio/ded/vibrava.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/vibrava.ded -------------------------------------------------------------------------------- /audio/ded/vibrava.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/vibrava.wav -------------------------------------------------------------------------------- /audio/ded/wailmer.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/wailmer.ded -------------------------------------------------------------------------------- /audio/ded/wailmer.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/wailmer.wav -------------------------------------------------------------------------------- /audio/ded/wailord.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/wailord.ded -------------------------------------------------------------------------------- /audio/ded/wailord.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/wailord.wav -------------------------------------------------------------------------------- /audio/ded/wingull.ded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/wingull.ded -------------------------------------------------------------------------------- /audio/ded/wingull.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/ded/wingull.wav -------------------------------------------------------------------------------- /audio/engine.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/engine.asm -------------------------------------------------------------------------------- /audio/music/bicycle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/bicycle.asm -------------------------------------------------------------------------------- /audio/music/clair.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/clair.asm -------------------------------------------------------------------------------- /audio/music/credits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/credits.asm -------------------------------------------------------------------------------- /audio/music/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/desktop.ini -------------------------------------------------------------------------------- /audio/music/elmslab.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/elmslab.asm -------------------------------------------------------------------------------- /audio/music/gym.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/gym.asm -------------------------------------------------------------------------------- /audio/music/looker.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/looker.asm -------------------------------------------------------------------------------- /audio/music/mom.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/mom.asm -------------------------------------------------------------------------------- /audio/music/mtmoon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/mtmoon.asm -------------------------------------------------------------------------------- /audio/music/nothing.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/nothing.asm -------------------------------------------------------------------------------- /audio/music/printer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/printer.asm -------------------------------------------------------------------------------- /audio/music/profoak.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/profoak.asm -------------------------------------------------------------------------------- /audio/music/route1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/route1.asm -------------------------------------------------------------------------------- /audio/music/route12.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/route12.asm -------------------------------------------------------------------------------- /audio/music/route2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/route2.asm -------------------------------------------------------------------------------- /audio/music/route26.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/route26.asm -------------------------------------------------------------------------------- /audio/music/route29.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/route29.asm -------------------------------------------------------------------------------- /audio/music/route3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/route3.asm -------------------------------------------------------------------------------- /audio/music/route30.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/route30.asm -------------------------------------------------------------------------------- /audio/music/route36.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/route36.asm -------------------------------------------------------------------------------- /audio/music/route37.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/route37.asm -------------------------------------------------------------------------------- /audio/music/route62.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/route62.asm -------------------------------------------------------------------------------- /audio/music/ssaqua.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/ssaqua.asm -------------------------------------------------------------------------------- /audio/music/surf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/music/surf.asm -------------------------------------------------------------------------------- /audio/sfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/sfx.asm -------------------------------------------------------------------------------- /audio/sfx_crystal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/sfx_crystal.asm -------------------------------------------------------------------------------- /audio/sfx_pointers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/audio/sfx_pointers.asm -------------------------------------------------------------------------------- /bank_ends.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/bank_ends.txt -------------------------------------------------------------------------------- /battle/ai/items.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/ai/items.asm -------------------------------------------------------------------------------- /battle/ai/move.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/ai/move.asm -------------------------------------------------------------------------------- /battle/ai/redundant.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/ai/redundant.asm -------------------------------------------------------------------------------- /battle/ai/scoring.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/ai/scoring.asm -------------------------------------------------------------------------------- /battle/ai/switch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/ai/switch.asm -------------------------------------------------------------------------------- /battle/anim_gfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/anim_gfx.asm -------------------------------------------------------------------------------- /battle/anim_objects.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/anim_objects.asm -------------------------------------------------------------------------------- /battle/anims.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/anims.asm -------------------------------------------------------------------------------- /battle/assert_form.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/assert_form.asm -------------------------------------------------------------------------------- /battle/bg_effects.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/bg_effects.asm -------------------------------------------------------------------------------- /battle/core.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/core.asm -------------------------------------------------------------------------------- /battle/link_result.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/link_result.asm -------------------------------------------------------------------------------- /battle/menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/menu.asm -------------------------------------------------------------------------------- /battle/misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/misc.asm -------------------------------------------------------------------------------- /battle/move_names.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/move_names.asm -------------------------------------------------------------------------------- /battle/moves/moves.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/moves/moves.asm -------------------------------------------------------------------------------- /battle/objects/data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/objects/data.asm -------------------------------------------------------------------------------- /battle/objects/oam.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/objects/oam.asm -------------------------------------------------------------------------------- /battle/scaled_exp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/scaled_exp.asm -------------------------------------------------------------------------------- /battle/trainer_huds.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/trainer_huds.asm -------------------------------------------------------------------------------- /battle/type_matchup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/battle/type_matchup.asm -------------------------------------------------------------------------------- /bgb.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/bgb.ini -------------------------------------------------------------------------------- /bgbrecovery.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/bgbrecovery.sna -------------------------------------------------------------------------------- /constants.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/constants.asm -------------------------------------------------------------------------------- /crowdmap.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/crowdmap.rar -------------------------------------------------------------------------------- /data/base_stats.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/data/base_stats.asm -------------------------------------------------------------------------------- /data/base_stats/mew.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/data/base_stats/mew.asm -------------------------------------------------------------------------------- /data/base_stats/muk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/data/base_stats/muk.asm -------------------------------------------------------------------------------- /data/egg_moves.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/data/egg_moves.asm -------------------------------------------------------------------------------- /data/evos_attacks.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/data/evos_attacks.asm -------------------------------------------------------------------------------- /data/map_objects.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/data/map_objects.asm -------------------------------------------------------------------------------- /data/mon_icon_pals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/data/mon_icon_pals.asm -------------------------------------------------------------------------------- /data/pokemon_names.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/data/pokemon_names.asm -------------------------------------------------------------------------------- /data/sprite_engine.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/data/sprite_engine.asm -------------------------------------------------------------------------------- /data/wild/fish.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/data/wild/fish.asm -------------------------------------------------------------------------------- /data/wild/swarm_grass.asm: -------------------------------------------------------------------------------- 1 | ; swarms in grass 2 | 3 | db -1 ; end 4 | -------------------------------------------------------------------------------- /dedenc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/dedenc.py -------------------------------------------------------------------------------- /dedgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/dedgen.py -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/desktop.ini -------------------------------------------------------------------------------- /engine/anim_hp_bar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/anim_hp_bar.asm -------------------------------------------------------------------------------- /engine/battle_start.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/battle_start.asm -------------------------------------------------------------------------------- /engine/billspc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/billspc.asm -------------------------------------------------------------------------------- /engine/billspctop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/billspctop.asm -------------------------------------------------------------------------------- /engine/breeding.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/breeding.asm -------------------------------------------------------------------------------- /engine/card_flip.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/card_flip.asm -------------------------------------------------------------------------------- /engine/clock_reset.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/clock_reset.asm -------------------------------------------------------------------------------- /engine/color.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/color.asm -------------------------------------------------------------------------------- /engine/credits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/credits.asm -------------------------------------------------------------------------------- /engine/diploma.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/diploma.asm -------------------------------------------------------------------------------- /engine/engine_flags.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/engine_flags.asm -------------------------------------------------------------------------------- /engine/events.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/events.asm -------------------------------------------------------------------------------- /engine/events_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/events_2.asm -------------------------------------------------------------------------------- /engine/events_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/events_3.asm -------------------------------------------------------------------------------- /engine/evolve.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/evolve.asm -------------------------------------------------------------------------------- /engine/facings.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/facings.asm -------------------------------------------------------------------------------- /engine/fish.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/fish.asm -------------------------------------------------------------------------------- /engine/fruit_trees.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/fruit_trees.asm -------------------------------------------------------------------------------- /engine/gbc_only.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/gbc_only.asm -------------------------------------------------------------------------------- /engine/gfx_41.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/gfx_41.asm -------------------------------------------------------------------------------- /engine/health.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/health.asm -------------------------------------------------------------------------------- /engine/init_gender.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/init_gender.asm -------------------------------------------------------------------------------- /engine/intro_menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/intro_menu.asm -------------------------------------------------------------------------------- /engine/items.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/items.asm -------------------------------------------------------------------------------- /engine/landmarks.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/landmarks.asm -------------------------------------------------------------------------------- /engine/learn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/learn.asm -------------------------------------------------------------------------------- /engine/link.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/link.asm -------------------------------------------------------------------------------- /engine/link_trade.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/link_trade.asm -------------------------------------------------------------------------------- /engine/mail.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/mail.asm -------------------------------------------------------------------------------- /engine/main_menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/main_menu.asm -------------------------------------------------------------------------------- /engine/map_objects.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/map_objects.asm -------------------------------------------------------------------------------- /engine/map_setup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/map_setup.asm -------------------------------------------------------------------------------- /engine/map_triggers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/map_triggers.asm -------------------------------------------------------------------------------- /engine/mart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/mart.asm -------------------------------------------------------------------------------- /engine/math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/math.asm -------------------------------------------------------------------------------- /engine/menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/menu.asm -------------------------------------------------------------------------------- /engine/mon_icons.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/mon_icons.asm -------------------------------------------------------------------------------- /engine/mon_menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/mon_menu.asm -------------------------------------------------------------------------------- /engine/money.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/money.asm -------------------------------------------------------------------------------- /engine/move_mon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/move_mon.asm -------------------------------------------------------------------------------- /engine/movement.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/movement.asm -------------------------------------------------------------------------------- /engine/namingscreen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/namingscreen.asm -------------------------------------------------------------------------------- /engine/npc_movement.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/npc_movement.asm -------------------------------------------------------------------------------- /engine/npctrade.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/npctrade.asm -------------------------------------------------------------------------------- /engine/options_menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/options_menu.asm -------------------------------------------------------------------------------- /engine/overworld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/overworld.asm -------------------------------------------------------------------------------- /engine/pack.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/pack.asm -------------------------------------------------------------------------------- /engine/party_menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/party_menu.asm -------------------------------------------------------------------------------- /engine/player_step.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/player_step.asm -------------------------------------------------------------------------------- /engine/pokedex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/pokedex.asm -------------------------------------------------------------------------------- /engine/pokepic.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/pokepic.asm -------------------------------------------------------------------------------- /engine/predef.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/predef.asm -------------------------------------------------------------------------------- /engine/printnum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/printnum.asm -------------------------------------------------------------------------------- /engine/prof_oaks_pc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/prof_oaks_pc.asm -------------------------------------------------------------------------------- /engine/rtc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/rtc.asm -------------------------------------------------------------------------------- /engine/save.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/save.asm -------------------------------------------------------------------------------- /engine/scripting.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/scripting.asm -------------------------------------------------------------------------------- /engine/search.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/search.asm -------------------------------------------------------------------------------- /engine/search2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/search2.asm -------------------------------------------------------------------------------- /engine/selectmenu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/selectmenu.asm -------------------------------------------------------------------------------- /engine/sine.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/sine.asm -------------------------------------------------------------------------------- /engine/slot_machine.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/slot_machine.asm -------------------------------------------------------------------------------- /engine/spawn_points.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/spawn_points.asm -------------------------------------------------------------------------------- /engine/specials.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/specials.asm -------------------------------------------------------------------------------- /engine/sprite_anims.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/sprite_anims.asm -------------------------------------------------------------------------------- /engine/sprites.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/sprites.asm -------------------------------------------------------------------------------- /engine/startmenu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/startmenu.asm -------------------------------------------------------------------------------- /engine/stats_screen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/stats_screen.asm -------------------------------------------------------------------------------- /engine/std_scripts.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/std_scripts.asm -------------------------------------------------------------------------------- /engine/switch_items.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/switch_items.asm -------------------------------------------------------------------------------- /engine/tile_events.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/tile_events.asm -------------------------------------------------------------------------------- /engine/time.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/time.asm -------------------------------------------------------------------------------- /engine/timeset.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/timeset.asm -------------------------------------------------------------------------------- /engine/title.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/title.asm -------------------------------------------------------------------------------- /engine/tmhm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/tmhm.asm -------------------------------------------------------------------------------- /engine/tmhm2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/tmhm2.asm -------------------------------------------------------------------------------- /engine/town_map.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/town_map.asm -------------------------------------------------------------------------------- /engine/trainer_card.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/trainer_card.asm -------------------------------------------------------------------------------- /engine/variables.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/variables.asm -------------------------------------------------------------------------------- /engine/wildmons.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/engine/wildmons.asm -------------------------------------------------------------------------------- /event/bug_contest_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/bug_contest_2.asm -------------------------------------------------------------------------------- /event/daycare.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/daycare.asm -------------------------------------------------------------------------------- /event/elevator.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/elevator.asm -------------------------------------------------------------------------------- /event/field_moves.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/field_moves.asm -------------------------------------------------------------------------------- /event/halloffame.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/halloffame.asm -------------------------------------------------------------------------------- /event/happiness_egg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/happiness_egg.asm -------------------------------------------------------------------------------- /event/itemball.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/itemball.asm -------------------------------------------------------------------------------- /event/itemfinder.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/itemfinder.asm -------------------------------------------------------------------------------- /event/magikarp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/magikarp.asm -------------------------------------------------------------------------------- /event/magnet_train.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/magnet_train.asm -------------------------------------------------------------------------------- /event/move_deleter.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/move_deleter.asm -------------------------------------------------------------------------------- /event/move_reminder.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/move_reminder.asm -------------------------------------------------------------------------------- /event/movesets.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/movesets.asm -------------------------------------------------------------------------------- /event/name_rater.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/name_rater.asm -------------------------------------------------------------------------------- /event/overworld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/overworld.asm -------------------------------------------------------------------------------- /event/poisonstep.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/poisonstep.asm -------------------------------------------------------------------------------- /event/pokeflute.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/pokeflute.asm -------------------------------------------------------------------------------- /event/sacred_ash.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/sacred_ash.asm -------------------------------------------------------------------------------- /event/special.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/special.asm -------------------------------------------------------------------------------- /event/squirtbottle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/squirtbottle.asm -------------------------------------------------------------------------------- /event/sweet_scent.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/sweet_scent.asm -------------------------------------------------------------------------------- /event/whiteout.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/event/whiteout.asm -------------------------------------------------------------------------------- /gbhw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gbhw.asm -------------------------------------------------------------------------------- /gfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx.py -------------------------------------------------------------------------------- /gfx/battle/balls.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/battle/balls.2bpp -------------------------------------------------------------------------------- /gfx/battle/expbar.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/battle/expbar.2bpp -------------------------------------------------------------------------------- /gfx/battle/expbarend.2bpp: -------------------------------------------------------------------------------- 1 | $B -------------------------------------------------------------------------------- /gfx/mail/0b9976.1bpp: -------------------------------------------------------------------------------- 1 | ?><80 -------------------------------------------------------------------------------- /gfx/mail/0b997e.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b997e.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b998e.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b998e.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9996.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9996.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b99c6.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b99c6.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b99f6.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b99f6.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9a26.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9a26.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9a56.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9a56.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9a86.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9a86.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9ab6.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9ab6.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9b46.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9b46.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9bce.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9bce.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9bfe.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9bfe.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9c1e.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9c1e.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9c3e.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9c3e.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9c5e.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9c5e.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9c7e.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9c7e.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9c96.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9c96.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9c9e.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9c9e.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9cbe.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9cbe.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9cde.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9cde.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9cfe.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9cfe.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9d16.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9d16.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9d26.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9d26.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9d3e.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9d3e.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9d46.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9d46.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9d76.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9d76.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9d86.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9d86.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9db6.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9db6.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9dc6.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9dc6.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9dce.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9dce.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9df6.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9df6.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9e06.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9e06.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9e26.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9e26.1bpp -------------------------------------------------------------------------------- /gfx/mail/0b9e4e.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/mail/0b9e4e.1bpp -------------------------------------------------------------------------------- /gfx/namingscreen/border.2bpp: -------------------------------------------------------------------------------- 1 | p p p00 -------------------------------------------------------------------------------- /gfx/namingscreen/middleline.1bpp: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /gfx/ow/cut_grass.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/ow/cut_grass.2bpp -------------------------------------------------------------------------------- /gfx/ow/cut_tree.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/ow/cut_tree.2bpp -------------------------------------------------------------------------------- /gfx/ow/fishing2.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/ow/fishing2.2bpp -------------------------------------------------------------------------------- /gfx/ow/fishing4.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/ow/fishing4.2bpp -------------------------------------------------------------------------------- /gfx/ow/puddle_splash.2bpp: -------------------------------------------------------------------------------- 1 |  ]*V8 -------------------------------------------------------------------------------- /gfx/ow/shadow.2bpp: -------------------------------------------------------------------------------- 1 | ???? -------------------------------------------------------------------------------- /gfx/pack/pack.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/pack/pack.2bpp -------------------------------------------------------------------------------- /gfx/pack/pack_f.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/pack/pack_f.2bpp -------------------------------------------------------------------------------- /gfx/pc.2bpp.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/pc.2bpp.lz -------------------------------------------------------------------------------- /gfx/pc_mail.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/pc_mail.2bpp -------------------------------------------------------------------------------- /gfx/pics.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/pics.asm -------------------------------------------------------------------------------- /gfx/pics/caterpie/bitmask.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gfx/pics/caterpie/frames.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gfx/pics/pikachu/bitmask.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gfx/pics/pikachu/frames.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gfx/pics/raichu/bitmask.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gfx/pics/raichu/frames.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gfx/pics/raichu_kanto/bitmask.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gfx/pics/raichu_kanto/frames.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gfx/shrink1.2bpp.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/shrink1.2bpp.lz -------------------------------------------------------------------------------- /gfx/shrink2.2bpp.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/shrink2.2bpp.lz -------------------------------------------------------------------------------- /gfx/slots.tilemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/slots.tilemap -------------------------------------------------------------------------------- /gfx/slots_1.2bpp.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/slots_1.2bpp.lz -------------------------------------------------------------------------------- /gfx/slots_2.2bpp.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/slots_2.2bpp.lz -------------------------------------------------------------------------------- /gfx/slots_3.2bpp.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/slots_3.2bpp.lz -------------------------------------------------------------------------------- /gfx/splash/logo.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/splash/logo.1bpp -------------------------------------------------------------------------------- /gfx/stats/shiny.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/stats/shiny.2bpp -------------------------------------------------------------------------------- /gfx/stats/stats.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/stats/stats.2bpp -------------------------------------------------------------------------------- /gfx/timeset/bg.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/timeset/bg.2bpp -------------------------------------------------------------------------------- /gfx/timeset/down.2bpp: -------------------------------------------------------------------------------- 1 | ~~<< -------------------------------------------------------------------------------- /gfx/timeset/up.2bpp: -------------------------------------------------------------------------------- 1 | <<~~ -------------------------------------------------------------------------------- /gfx/trade/arrow.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trade/arrow.2bpp -------------------------------------------------------------------------------- /gfx/trade/ball.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trade/ball.2bpp -------------------------------------------------------------------------------- /gfx/trade/bubble.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trade/bubble.2bpp -------------------------------------------------------------------------------- /gfx/trade/cable.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trade/cable.2bpp -------------------------------------------------------------------------------- /gfx/trade/poof.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trade/poof.2bpp -------------------------------------------------------------------------------- /gfx/trainers/bill.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/bill.pal -------------------------------------------------------------------------------- /gfx/trainers/blue.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/blue.pal -------------------------------------------------------------------------------- /gfx/trainers/jace.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/jace.pal -------------------------------------------------------------------------------- /gfx/trainers/kat.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/kat.2bpp -------------------------------------------------------------------------------- /gfx/trainers/kat.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/kat.pal -------------------------------------------------------------------------------- /gfx/trainers/koga.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/koga.pal -------------------------------------------------------------------------------- /gfx/trainers/kris.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/kris.pal -------------------------------------------------------------------------------- /gfx/trainers/kurt.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/kurt.pal -------------------------------------------------------------------------------- /gfx/trainers/lass.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/lass.pal -------------------------------------------------------------------------------- /gfx/trainers/mom.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/mom.pal -------------------------------------------------------------------------------- /gfx/trainers/red.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/red.pal -------------------------------------------------------------------------------- /gfx/trainers/rudy.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/rudy.pal -------------------------------------------------------------------------------- /gfx/trainers/sage.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/sage.pal -------------------------------------------------------------------------------- /gfx/trainers/scuz.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/gfx/trainers/scuz.pal -------------------------------------------------------------------------------- /home.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home.asm -------------------------------------------------------------------------------- /home/audio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/audio.asm -------------------------------------------------------------------------------- /home/battle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/battle.asm -------------------------------------------------------------------------------- /home/copy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/copy.asm -------------------------------------------------------------------------------- /home/copy2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/copy2.asm -------------------------------------------------------------------------------- /home/cry.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/cry.asm -------------------------------------------------------------------------------- /home/decompress.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/decompress.asm -------------------------------------------------------------------------------- /home/ded.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/ded.asm -------------------------------------------------------------------------------- /home/delay.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/delay.asm -------------------------------------------------------------------------------- /home/double_speed.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/double_speed.asm -------------------------------------------------------------------------------- /home/fade.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/fade.asm -------------------------------------------------------------------------------- /home/farcall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/farcall.asm -------------------------------------------------------------------------------- /home/flag.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/flag.asm -------------------------------------------------------------------------------- /home/game_time.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/game_time.asm -------------------------------------------------------------------------------- /home/handshake.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/handshake.asm -------------------------------------------------------------------------------- /home/highhome.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/highhome.asm -------------------------------------------------------------------------------- /home/init.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/init.asm -------------------------------------------------------------------------------- /home/item.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/item.asm -------------------------------------------------------------------------------- /home/joypad.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/joypad.asm -------------------------------------------------------------------------------- /home/lcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/lcd.asm -------------------------------------------------------------------------------- /home/map.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/map.asm -------------------------------------------------------------------------------- /home/map_objects.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/map_objects.asm -------------------------------------------------------------------------------- /home/math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/math.asm -------------------------------------------------------------------------------- /home/menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/menu.asm -------------------------------------------------------------------------------- /home/movement.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/movement.asm -------------------------------------------------------------------------------- /home/palettes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/palettes.asm -------------------------------------------------------------------------------- /home/predef.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/predef.asm -------------------------------------------------------------------------------- /home/random.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/random.asm -------------------------------------------------------------------------------- /home/rtc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/rtc.asm -------------------------------------------------------------------------------- /home/serial.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/serial.asm -------------------------------------------------------------------------------- /home/sine.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/sine.asm -------------------------------------------------------------------------------- /home/sram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/sram.asm -------------------------------------------------------------------------------- /home/string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/string.asm -------------------------------------------------------------------------------- /home/text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/text.asm -------------------------------------------------------------------------------- /home/tilemap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/tilemap.asm -------------------------------------------------------------------------------- /home/time.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/time.asm -------------------------------------------------------------------------------- /home/vblank.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/vblank.asm -------------------------------------------------------------------------------- /home/video.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/video.asm -------------------------------------------------------------------------------- /home/window.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/home/window.asm -------------------------------------------------------------------------------- /hram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/hram.asm -------------------------------------------------------------------------------- /includes.asm: -------------------------------------------------------------------------------- 1 | INCLUDE "constants.asm" -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/install.bat -------------------------------------------------------------------------------- /interrupts.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/interrupts.asm -------------------------------------------------------------------------------- /items/item_names.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/items/item_names.asm -------------------------------------------------------------------------------- /items/marts.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/items/marts.asm -------------------------------------------------------------------------------- /macros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros.asm -------------------------------------------------------------------------------- /macros/basestats.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/basestats.asm -------------------------------------------------------------------------------- /macros/charmap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/charmap.asm -------------------------------------------------------------------------------- /macros/enum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/enum.asm -------------------------------------------------------------------------------- /macros/event.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/event.asm -------------------------------------------------------------------------------- /macros/map.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/map.asm -------------------------------------------------------------------------------- /macros/move_anim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/move_anim.asm -------------------------------------------------------------------------------- /macros/movement.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/movement.asm -------------------------------------------------------------------------------- /macros/predef.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/predef.asm -------------------------------------------------------------------------------- /macros/rst.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/rst.asm -------------------------------------------------------------------------------- /macros/sound.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/sound.asm -------------------------------------------------------------------------------- /macros/text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/text.asm -------------------------------------------------------------------------------- /macros/tilesets.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/tilesets.asm -------------------------------------------------------------------------------- /macros/trade_anim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/trade_anim.asm -------------------------------------------------------------------------------- /macros/trainer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/trainer.asm -------------------------------------------------------------------------------- /macros/wram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/macros/wram.asm -------------------------------------------------------------------------------- /main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/main.asm -------------------------------------------------------------------------------- /maps.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps.asm -------------------------------------------------------------------------------- /maps/BluesHouse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/BluesHouse.asm -------------------------------------------------------------------------------- /maps/ButwalIslandWestGrotto.blk: -------------------------------------------------------------------------------- 1 | \_^ 2 | a] #` -------------------------------------------------------------------------------- /maps/ChiefsHouse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/ChiefsHouse.asm -------------------------------------------------------------------------------- /maps/ChiefsHouse.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/ChiefsHouse.blk -------------------------------------------------------------------------------- /maps/Colosseum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Colosseum.asm -------------------------------------------------------------------------------- /maps/Colosseum.blk: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /maps/CyberSpace.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/CyberSpace.asm -------------------------------------------------------------------------------- /maps/CyberSpace.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/CyberSpace.blk -------------------------------------------------------------------------------- /maps/DannysHouse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/DannysHouse.asm -------------------------------------------------------------------------------- /maps/DayCare.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/DayCare.asm -------------------------------------------------------------------------------- /maps/DayCare.blk: -------------------------------------------------------------------------------- 1 | 7@>5D9BAE46446:= -------------------------------------------------------------------------------- /maps/FireIsland.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/FireIsland.asm -------------------------------------------------------------------------------- /maps/FireIsland.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/FireIsland.blk -------------------------------------------------------------------------------- /maps/FuchsiaCity.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/FuchsiaCity.asm -------------------------------------------------------------------------------- /maps/FuchsiaCity.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/FuchsiaCity.blk -------------------------------------------------------------------------------- /maps/GameCorner.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/GameCorner.asm -------------------------------------------------------------------------------- /maps/GameCorner.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/GameCorner.blk -------------------------------------------------------------------------------- /maps/GateUpstairs.blk: -------------------------------------------------------------------------------- 1 | ;:866: -------------------------------------------------------------------------------- /maps/GoldenIsland.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/GoldenIsland.asm -------------------------------------------------------------------------------- /maps/GoldenIsland.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/GoldenIsland.blk -------------------------------------------------------------------------------- /maps/HallOfFame.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/HallOfFame.asm -------------------------------------------------------------------------------- /maps/HallOfFame.blk: -------------------------------------------------------------------------------- 1 | LM012IN456PK+<QHJIJH3++K+IJI+?J -------------------------------------------------------------------------------- /maps/HamlinBridge.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/HamlinBridge.asm -------------------------------------------------------------------------------- /maps/HamlinBridge.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/HamlinBridge.blk -------------------------------------------------------------------------------- /maps/HamlinFields.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/HamlinFields.blk -------------------------------------------------------------------------------- /maps/HamlinIsland.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/HamlinIsland.asm -------------------------------------------------------------------------------- /maps/HamlinIsland.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/HamlinIsland.blk -------------------------------------------------------------------------------- /maps/House1.blk: -------------------------------------------------------------------------------- 1 |    -------------------------------------------------------------------------------- /maps/House2.blk: -------------------------------------------------------------------------------- 1 | )* -------------------------------------------------------------------------------- /maps/IceIsland.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/IceIsland.asm -------------------------------------------------------------------------------- /maps/IceIsland.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/IceIsland.blk -------------------------------------------------------------------------------- /maps/IvysHouse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/IvysHouse.asm -------------------------------------------------------------------------------- /maps/IvysHouse.blk: -------------------------------------------------------------------------------- 1 | %&'( -------------------------------------------------------------------------------- /maps/IvysLab.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/IvysLab.asm -------------------------------------------------------------------------------- /maps/IvysLab.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/IvysLab.blk -------------------------------------------------------------------------------- /maps/KinnowCafe.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/KinnowCafe.asm -------------------------------------------------------------------------------- /maps/KinnowCafe.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/KinnowCafe.blk -------------------------------------------------------------------------------- /maps/KinnowIsland.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/KinnowIsland.asm -------------------------------------------------------------------------------- /maps/KinnowIsland.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/KinnowIsland.blk -------------------------------------------------------------------------------- /maps/KinnowMart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/KinnowMart.asm -------------------------------------------------------------------------------- /maps/KinnowSkateShop.blk: -------------------------------------------------------------------------------- 1 |    -------------------------------------------------------------------------------- /maps/KrissHouse1F.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/KrissHouse1F.asm -------------------------------------------------------------------------------- /maps/KrissHouse1F.blk: -------------------------------------------------------------------------------- 1 |  2 |    -------------------------------------------------------------------------------- /maps/KrissHouse2F.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/KrissHouse2F.asm -------------------------------------------------------------------------------- /maps/KrissHouse2F.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/KumquatHotelBottomRoom.blk: -------------------------------------------------------------------------------- 1 | #( -------------------------------------------------------------------------------- /maps/KumquatHotelElevator.blk: -------------------------------------------------------------------------------- 1 | *) -------------------------------------------------------------------------------- /maps/KumquatHotelGym.blk: -------------------------------------------------------------------------------- 1 |  2 | 3 | ./ 4 | 5 | 01 6 | -------------------------------------------------------------------------------- /maps/KumquatHotelLobby.blk: -------------------------------------------------------------------------------- 1 | "!%&& #' '# -------------------------------------------------------------------------------- /maps/KumquatHotelTopRoom.blk: -------------------------------------------------------------------------------- 1 | # ( -------------------------------------------------------------------------------- /maps/KumquatMart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/KumquatMart.asm -------------------------------------------------------------------------------- /maps/MandarinUndergroundBF1.blk: -------------------------------------------------------------------------------- 1 | PL K O    !ENJI @ GD HF M -------------------------------------------------------------------------------- /maps/MandarinUndergroundEntrance.blk: -------------------------------------------------------------------------------- 1 |  2 |  ,./- -------------------------------------------------------------------------------- /maps/Mart.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Mart.blk -------------------------------------------------------------------------------- /maps/MayorsOffice.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MayorsOffice.asm -------------------------------------------------------------------------------- /maps/MayorsOffice.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MayorsOffice.blk -------------------------------------------------------------------------------- /maps/MikanGym.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MikanGym.asm -------------------------------------------------------------------------------- /maps/MikanGym.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MikanGym.blk -------------------------------------------------------------------------------- /maps/MikanIsland.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MikanIsland.asm -------------------------------------------------------------------------------- /maps/MikanIsland.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MikanIsland.blk -------------------------------------------------------------------------------- /maps/MikanMart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MikanMart.asm -------------------------------------------------------------------------------- /maps/MoroHouse1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MoroHouse1.asm -------------------------------------------------------------------------------- /maps/MoroHouse2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MoroHouse2.asm -------------------------------------------------------------------------------- /maps/MoroIsland.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MoroIsland.asm -------------------------------------------------------------------------------- /maps/MoroIsland.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MoroIsland.blk -------------------------------------------------------------------------------- /maps/MoroMart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MoroMart.asm -------------------------------------------------------------------------------- /maps/MtNavel1F.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MtNavel1F.asm -------------------------------------------------------------------------------- /maps/MtNavel1F.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MtNavel1F.blk -------------------------------------------------------------------------------- /maps/MtNavel2F.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MtNavel2F.asm -------------------------------------------------------------------------------- /maps/MtNavel2F.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MtNavel2F.blk -------------------------------------------------------------------------------- /maps/MtNavelIceRock.blk: -------------------------------------------------------------------------------- 1 | EF 2 | GD 8 -------------------------------------------------------------------------------- /maps/MtNavelPeak.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MtNavelPeak.asm -------------------------------------------------------------------------------- /maps/MtNavelPeak.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/MtNavelPeak.blk -------------------------------------------------------------------------------- /maps/NavelIsland.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/NavelIsland.asm -------------------------------------------------------------------------------- /maps/NavelIsland.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/NavelIsland.blk -------------------------------------------------------------------------------- /maps/NorthSouthGate.blk: -------------------------------------------------------------------------------- 1 |     2 |  -------------------------------------------------------------------------------- /maps/OaksLab.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/OaksLab.asm -------------------------------------------------------------------------------- /maps/OaksLab.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/OaksLab.blk -------------------------------------------------------------------------------- /maps/PalletTown.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/PalletTown.asm -------------------------------------------------------------------------------- /maps/PalletTown.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/PalletTown.blk -------------------------------------------------------------------------------- /maps/PinkanIsland.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/PinkanIsland.asm -------------------------------------------------------------------------------- /maps/PinkanIsland.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/PinkanIsland.blk -------------------------------------------------------------------------------- /maps/PokeCenter1F.blk: -------------------------------------------------------------------------------- 1 |  2 |   $ -------------------------------------------------------------------------------- /maps/PokeCenter2F.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/PokeCenter2F.asm -------------------------------------------------------------------------------- /maps/PokeCenter2F.blk: -------------------------------------------------------------------------------- 1 | @@  2 | "BAA -------------------------------------------------------------------------------- /maps/PonchosHouse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/PonchosHouse.asm -------------------------------------------------------------------------------- /maps/PonchosHouse.blk: -------------------------------------------------------------------------------- 1 | %  -------------------------------------------------------------------------------- /maps/PummeloMart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/PummeloMart.asm -------------------------------------------------------------------------------- /maps/RedsHouse1F.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/RedsHouse1F.asm -------------------------------------------------------------------------------- /maps/RedsHouse1F.blk: -------------------------------------------------------------------------------- 1 |  2 |    -------------------------------------------------------------------------------- /maps/RedsHouse2F.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/RedsHouse2F.asm -------------------------------------------------------------------------------- /maps/RedsHouse2F.blk: -------------------------------------------------------------------------------- 1 |   " -------------------------------------------------------------------------------- /maps/RindIsland.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/RindIsland.asm -------------------------------------------------------------------------------- /maps/RindIsland.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/RindIsland.blk -------------------------------------------------------------------------------- /maps/Route11.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route11.asm -------------------------------------------------------------------------------- /maps/Route11.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route11.blk -------------------------------------------------------------------------------- /maps/Route12.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route12.asm -------------------------------------------------------------------------------- /maps/Route12.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route12.blk -------------------------------------------------------------------------------- /maps/Route13.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route13.asm -------------------------------------------------------------------------------- /maps/Route13.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route13.blk -------------------------------------------------------------------------------- /maps/Route14.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route14.asm -------------------------------------------------------------------------------- /maps/Route14.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route14.blk -------------------------------------------------------------------------------- /maps/Route15.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route15.asm -------------------------------------------------------------------------------- /maps/Route15.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route15.blk -------------------------------------------------------------------------------- /maps/Route19.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route19.asm -------------------------------------------------------------------------------- /maps/Route20.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route20.asm -------------------------------------------------------------------------------- /maps/Route21.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route21.asm -------------------------------------------------------------------------------- /maps/Route21.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route21.blk -------------------------------------------------------------------------------- /maps/Route35NationalParkgate.blk: -------------------------------------------------------------------------------- 1 | ).,(6 6%& -------------------------------------------------------------------------------- /maps/Route49.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route49.asm -------------------------------------------------------------------------------- /maps/Route49.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route49.blk -------------------------------------------------------------------------------- /maps/Route50.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route50.asm -------------------------------------------------------------------------------- /maps/Route50.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route50.blk -------------------------------------------------------------------------------- /maps/Route51.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route51.asm -------------------------------------------------------------------------------- /maps/Route51.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route51.blk -------------------------------------------------------------------------------- /maps/Route52.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route52.asm -------------------------------------------------------------------------------- /maps/Route52.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route52.blk -------------------------------------------------------------------------------- /maps/Route53.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route53.asm -------------------------------------------------------------------------------- /maps/Route53.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route53.blk -------------------------------------------------------------------------------- /maps/Route54.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route54.asm -------------------------------------------------------------------------------- /maps/Route54.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route54.blk -------------------------------------------------------------------------------- /maps/Route55.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route55.asm -------------------------------------------------------------------------------- /maps/Route55.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route55.blk -------------------------------------------------------------------------------- /maps/Route56East.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route56East.asm -------------------------------------------------------------------------------- /maps/Route56East.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route56East.blk -------------------------------------------------------------------------------- /maps/Route56West.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route56West.asm -------------------------------------------------------------------------------- /maps/Route56West.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route56West.blk -------------------------------------------------------------------------------- /maps/Route57.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route57.asm -------------------------------------------------------------------------------- /maps/Route57.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route57.blk -------------------------------------------------------------------------------- /maps/Route57North.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route57North.asm -------------------------------------------------------------------------------- /maps/Route57North.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route57North.blk -------------------------------------------------------------------------------- /maps/Route58.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route58.asm -------------------------------------------------------------------------------- /maps/Route58.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route58.blk -------------------------------------------------------------------------------- /maps/Route59.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route59.asm -------------------------------------------------------------------------------- /maps/Route59.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route59.blk -------------------------------------------------------------------------------- /maps/Route60.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route60.asm -------------------------------------------------------------------------------- /maps/Route60.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route60.blk -------------------------------------------------------------------------------- /maps/Route61.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route61.asm -------------------------------------------------------------------------------- /maps/Route61.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route61.blk -------------------------------------------------------------------------------- /maps/Route62.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route62.asm -------------------------------------------------------------------------------- /maps/Route62.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route62.blk -------------------------------------------------------------------------------- /maps/Route64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route64.asm -------------------------------------------------------------------------------- /maps/Route64.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route64.blk -------------------------------------------------------------------------------- /maps/Route65.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route65.asm -------------------------------------------------------------------------------- /maps/Route65.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route65.blk -------------------------------------------------------------------------------- /maps/Route67.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route67.asm -------------------------------------------------------------------------------- /maps/Route67.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route67.blk -------------------------------------------------------------------------------- /maps/Route68.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route68.asm -------------------------------------------------------------------------------- /maps/Route68.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route68.blk -------------------------------------------------------------------------------- /maps/Route69Gate.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route69Gate.asm -------------------------------------------------------------------------------- /maps/Route69North.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route69North.asm -------------------------------------------------------------------------------- /maps/Route69North.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route69North.blk -------------------------------------------------------------------------------- /maps/Route69South.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route69South.asm -------------------------------------------------------------------------------- /maps/Route69South.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route69South.blk -------------------------------------------------------------------------------- /maps/Route70.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route70.asm -------------------------------------------------------------------------------- /maps/Route70.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route70.blk -------------------------------------------------------------------------------- /maps/Route71.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route71.asm -------------------------------------------------------------------------------- /maps/Route71.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route71.blk -------------------------------------------------------------------------------- /maps/Route71East.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route71East.asm -------------------------------------------------------------------------------- /maps/Route71East.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Route71East.blk -------------------------------------------------------------------------------- /maps/SafariZone.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/SafariZone.asm -------------------------------------------------------------------------------- /maps/SafariZone.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/SafariZone.blk -------------------------------------------------------------------------------- /maps/SewerEntrance.blk: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /maps/ShamoutiBay.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/ShamoutiBay.asm -------------------------------------------------------------------------------- /maps/ShamoutiBay.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/ShamoutiBay.blk -------------------------------------------------------------------------------- /maps/ShamoutiCave.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/ShamoutiCave.asm -------------------------------------------------------------------------------- /maps/ShamoutiCave.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/ShamoutiCave.blk -------------------------------------------------------------------------------- /maps/ShamoutiMart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/ShamoutiMart.asm -------------------------------------------------------------------------------- /maps/SunburstCrystalShop.blk: -------------------------------------------------------------------------------- 1 | % -------------------------------------------------------------------------------- /maps/TangeloMart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/TangeloMart.asm -------------------------------------------------------------------------------- /maps/TangeloPort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/TangeloPort.asm -------------------------------------------------------------------------------- /maps/TradeCenter.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/TradeCenter.asm -------------------------------------------------------------------------------- /maps/TradeCenter.blk: -------------------------------------------------------------------------------- 1 | "!  -------------------------------------------------------------------------------- /maps/TrovitaGym.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/TrovitaGym.asm -------------------------------------------------------------------------------- /maps/TrovitaGym.blk: -------------------------------------------------------------------------------- 1 | DJ4KDCH-IA@LGMCBL@M@AL@MFF@@HAE@I -------------------------------------------------------------------------------- /maps/TrovitaPort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/TrovitaPort.asm -------------------------------------------------------------------------------- /maps/Trovitopolis.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Trovitopolis.asm -------------------------------------------------------------------------------- /maps/Trovitopolis.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/Trovitopolis.blk -------------------------------------------------------------------------------- /maps/TrovitopolisDeptStoreRoof.blk: -------------------------------------------------------------------------------- 1 | 011972:=<:6?:8>:634;4;5 -------------------------------------------------------------------------------- /maps/TrovitopolisPrimaSchool.blk: -------------------------------------------------------------------------------- 1 | %#$%""&' -------------------------------------------------------------------------------- /maps/UndergroundPathEntrance.blk: -------------------------------------------------------------------------------- 1 | 4;+ <0 %& -------------------------------------------------------------------------------- /maps/UnnamedIsland3House.blk: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /maps/ValenciaPort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/ValenciaPort.asm -------------------------------------------------------------------------------- /maps/ValenciaPort.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/ValenciaPort.blk -------------------------------------------------------------------------------- /maps/WreckedShip.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/WreckedShip.asm -------------------------------------------------------------------------------- /maps/WreckedShip.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/WreckedShip.blk -------------------------------------------------------------------------------- /maps/block_data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/block_data.asm -------------------------------------------------------------------------------- /maps/map_headers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/map_headers.asm -------------------------------------------------------------------------------- /maps/script_data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/maps/script_data.asm -------------------------------------------------------------------------------- /pokeorange.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/pokeorange.link -------------------------------------------------------------------------------- /predef/cgb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/predef/cgb.asm -------------------------------------------------------------------------------- /predef/crystal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/predef/crystal.asm -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/release.bat -------------------------------------------------------------------------------- /replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/replace.sh -------------------------------------------------------------------------------- /roms.md5: -------------------------------------------------------------------------------- 1 | 0232a85c1fefc19a13e87d0de9907fec *pokeorange.gbc 2 | -------------------------------------------------------------------------------- /rst.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/rst.asm -------------------------------------------------------------------------------- /sram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/sram.asm -------------------------------------------------------------------------------- /text/battle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/text/battle.asm -------------------------------------------------------------------------------- /text/common_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/text/common_1.asm -------------------------------------------------------------------------------- /text/common_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/text/common_2.asm -------------------------------------------------------------------------------- /text/common_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/text/common_3.asm -------------------------------------------------------------------------------- /text/common_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/text/common_4.asm -------------------------------------------------------------------------------- /text/common_5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/text/common_5.asm -------------------------------------------------------------------------------- /text/common_text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/text/common_text.asm -------------------------------------------------------------------------------- /text/stdtext.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/text/stdtext.asm -------------------------------------------------------------------------------- /text/types.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/text/types.asm -------------------------------------------------------------------------------- /tilesets/bg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tilesets/bg.pal -------------------------------------------------------------------------------- /tilesets/data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tilesets/data.asm -------------------------------------------------------------------------------- /tilesets/dusk.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tilesets/dusk.pal -------------------------------------------------------------------------------- /tilesets/house.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tilesets/house.pal -------------------------------------------------------------------------------- /tilesets/ice_path.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tilesets/ice_path.pal -------------------------------------------------------------------------------- /tilesets/mansion.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tilesets/mansion.pal -------------------------------------------------------------------------------- /tilesets/ob.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tilesets/ob.pal -------------------------------------------------------------------------------- /tilesets/pokecom.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tilesets/pokecom.pal -------------------------------------------------------------------------------- /tilesets/roof.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tilesets/roof.pal -------------------------------------------------------------------------------- /tilesets/roofs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tilesets/roofs.asm -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/bpp2png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/bpp2png.c -------------------------------------------------------------------------------- /tools/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/common.h -------------------------------------------------------------------------------- /tools/compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/compare.sh -------------------------------------------------------------------------------- /tools/compare2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/compare2.sh -------------------------------------------------------------------------------- /tools/free_space.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/free_space.awk -------------------------------------------------------------------------------- /tools/free_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/free_space.py -------------------------------------------------------------------------------- /tools/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/gfx.c -------------------------------------------------------------------------------- /tools/gfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/gfx.py -------------------------------------------------------------------------------- /tools/lz/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/global.c -------------------------------------------------------------------------------- /tools/lz/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/main.c -------------------------------------------------------------------------------- /tools/lz/merging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/merging.c -------------------------------------------------------------------------------- /tools/lz/mpcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/mpcomp.c -------------------------------------------------------------------------------- /tools/lz/nullcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/nullcomp.c -------------------------------------------------------------------------------- /tools/lz/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/options.c -------------------------------------------------------------------------------- /tools/lz/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/output.c -------------------------------------------------------------------------------- /tools/lz/packing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/packing.c -------------------------------------------------------------------------------- /tools/lz/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/proto.h -------------------------------------------------------------------------------- /tools/lz/repcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/repcomp.c -------------------------------------------------------------------------------- /tools/lz/spcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/spcomp.c -------------------------------------------------------------------------------- /tools/lz/uncomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/uncomp.c -------------------------------------------------------------------------------- /tools/lz/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/lz/util.c -------------------------------------------------------------------------------- /tools/make_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/make_patch.c -------------------------------------------------------------------------------- /tools/mapreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/mapreader.py -------------------------------------------------------------------------------- /tools/palfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/palfix.py -------------------------------------------------------------------------------- /tools/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/png.py -------------------------------------------------------------------------------- /tools/scan_includes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/scan_includes.c -------------------------------------------------------------------------------- /tools/stadium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/stadium.c -------------------------------------------------------------------------------- /tools/sym_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/sym_comments.py -------------------------------------------------------------------------------- /tools/toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/toc.py -------------------------------------------------------------------------------- /tools/unnamed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/unnamed.py -------------------------------------------------------------------------------- /tools/used_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/tools/used_space.py -------------------------------------------------------------------------------- /trainers/dvs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/trainers/dvs.asm -------------------------------------------------------------------------------- /trainers/trainers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/trainers/trainers.asm -------------------------------------------------------------------------------- /utils/bank-ends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/utils/bank-ends.py -------------------------------------------------------------------------------- /utils/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/utils/compare.py -------------------------------------------------------------------------------- /utils/eggmoves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/utils/eggmoves.py -------------------------------------------------------------------------------- /utils/map-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/utils/map-all.py -------------------------------------------------------------------------------- /utils/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/utils/map.py -------------------------------------------------------------------------------- /utils/metatiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/utils/metatiles.py -------------------------------------------------------------------------------- /utils/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/utils/optimize.py -------------------------------------------------------------------------------- /utils/pal2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/utils/pal2html.py -------------------------------------------------------------------------------- /utils/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/utils/png.py -------------------------------------------------------------------------------- /vram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/vram.asm -------------------------------------------------------------------------------- /wram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/wram.asm -------------------------------------------------------------------------------- /wtw.cht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiaCarrot/pokeorange/HEAD/wtw.cht --------------------------------------------------------------------------------