diff --git a/.gitignore b/.gitignore index 85a07e345..d3dfbf82b 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,6 @@ pokecrystal.txt *.lz *.pal *.animated.tilemap -gfx/pics/*/bitmask.asm -gfx/pics/*/frames.asm -!gfx/pics/*/shiny.pal +gfx/pokemon/*/bitmask.asm +gfx/pokemon/*/frames.asm +!gfx/pokemon/*/shiny.pal diff --git a/constants/animation_constants.asm b/constants/animation_constants.asm index 857673849..c8df4e3be 100644 --- a/constants/animation_constants.asm +++ b/constants/animation_constants.asm @@ -763,7 +763,7 @@ const_value SET 1 const ANIM_BG_WOBBLE_MON const ANIM_BG_35 -; PokeAnims indexes (see gfx/pics/animation.asm) +; PokeAnims indexes (see gfx/pokemon/animation.asm) const_def const ANIM_MON_SLOW const ANIM_MON_NORMAL diff --git a/constants/pokemon_constants.asm b/constants/pokemon_constants.asm index 344ba66c1..f6d85f929 100644 --- a/constants/pokemon_constants.asm +++ b/constants/pokemon_constants.asm @@ -6,12 +6,12 @@ ; - EvosAttacksPointers (see data/pokemon/evos_attacks_pointers.asm) ; - PokemonNames (see data/pokemon/pokemon_names.asm) ; - PokedexDataPointerTable (see data/pokemon/dex_entry_pointers.asm) -; - AnimationPointers (see gfx/pics/anim_pointers.asm) -; - BitmasksPointers (see gfx/pics/bitmask_pointers.asm) -; - AnimationExtraPointers (see gfx/pics/extra_pointers.asm) -; - FramesPointers (see gfx/pics/frame_pointers.asm) -; - PokemonPalettes (see gfx/pics/palette_pointers.asm) -; - PicPointers (see gfx/pics/pic_pointers.asm) +; - AnimationPointers (see gfx/pokemon/anim_pointers.asm) +; - BitmasksPointers (see gfx/pokemon/bitmask_pointers.asm) +; - AnimationExtraPointers (see gfx/pokemon/extra_pointers.asm) +; - FramesPointers (see gfx/pokemon/frame_pointers.asm) +; - PokemonPalettes (see gfx/pokemon/palette_pointers.asm) +; - PicPointers (see gfx/pokemon/pic_pointers.asm) ; - AlphabeticalPokedexOrder (see data/pokemon/dex_order_alpha.asm) ; - NewPokedexOrder (see data/pokemon/dex_order_new.asm) ; - MonMenuIcons (see data/pokemon/menu_icons.asm) diff --git a/data/pokemon/base_stats/abra.asm b/data/pokemon/base_stats/abra.asm index 5167eb5cc..d7824f196 100644 --- a/data/pokemon/base_stats/abra.asm +++ b/data/pokemon/base_stats/abra.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/abra/front.dimensions" + INCBIN "gfx/pokemon/abra/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/aerodactyl.asm b/data/pokemon/base_stats/aerodactyl.asm index 897311399..26eac4ded 100644 --- a/data/pokemon/base_stats/aerodactyl.asm +++ b/data/pokemon/base_stats/aerodactyl.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/aerodactyl/front.dimensions" + INCBIN "gfx/pokemon/aerodactyl/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/aipom.asm b/data/pokemon/base_stats/aipom.asm index 839bff358..0bd6954f4 100644 --- a/data/pokemon/base_stats/aipom.asm +++ b/data/pokemon/base_stats/aipom.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/aipom/front.dimensions" + INCBIN "gfx/pokemon/aipom/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/alakazam.asm b/data/pokemon/base_stats/alakazam.asm index 594d6241d..35ebdf9af 100644 --- a/data/pokemon/base_stats/alakazam.asm +++ b/data/pokemon/base_stats/alakazam.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/alakazam/front.dimensions" + INCBIN "gfx/pokemon/alakazam/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/ampharos.asm b/data/pokemon/base_stats/ampharos.asm index ec361a08d..b391238d3 100644 --- a/data/pokemon/base_stats/ampharos.asm +++ b/data/pokemon/base_stats/ampharos.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ampharos/front.dimensions" + INCBIN "gfx/pokemon/ampharos/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/arbok.asm b/data/pokemon/base_stats/arbok.asm index ed84e5dc8..52341c37d 100644 --- a/data/pokemon/base_stats/arbok.asm +++ b/data/pokemon/base_stats/arbok.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/arbok/front.dimensions" + INCBIN "gfx/pokemon/arbok/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/arcanine.asm b/data/pokemon/base_stats/arcanine.asm index d543bb8da..299086c9d 100644 --- a/data/pokemon/base_stats/arcanine.asm +++ b/data/pokemon/base_stats/arcanine.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/arcanine/front.dimensions" + INCBIN "gfx/pokemon/arcanine/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/ariados.asm b/data/pokemon/base_stats/ariados.asm index 7b77b1afd..78697127c 100644 --- a/data/pokemon/base_stats/ariados.asm +++ b/data/pokemon/base_stats/ariados.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ariados/front.dimensions" + INCBIN "gfx/pokemon/ariados/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/articuno.asm b/data/pokemon/base_stats/articuno.asm index ddf85599b..e637c47f4 100644 --- a/data/pokemon/base_stats/articuno.asm +++ b/data/pokemon/base_stats/articuno.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/articuno/front.dimensions" + INCBIN "gfx/pokemon/articuno/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/azumarill.asm b/data/pokemon/base_stats/azumarill.asm index c4286ad5d..1681d3be2 100644 --- a/data/pokemon/base_stats/azumarill.asm +++ b/data/pokemon/base_stats/azumarill.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/azumarill/front.dimensions" + INCBIN "gfx/pokemon/azumarill/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AMPHIBIAN, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/bayleef.asm b/data/pokemon/base_stats/bayleef.asm index 82caf4ae7..50ee3044c 100644 --- a/data/pokemon/base_stats/bayleef.asm +++ b/data/pokemon/base_stats/bayleef.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/bayleef/front.dimensions" + INCBIN "gfx/pokemon/bayleef/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/beedrill.asm b/data/pokemon/base_stats/beedrill.asm index c76accff8..3fa11d8eb 100644 --- a/data/pokemon/base_stats/beedrill.asm +++ b/data/pokemon/base_stats/beedrill.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/beedrill/front.dimensions" + INCBIN "gfx/pokemon/beedrill/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/bellossom.asm b/data/pokemon/base_stats/bellossom.asm index 9131b2b38..3f3f06870 100644 --- a/data/pokemon/base_stats/bellossom.asm +++ b/data/pokemon/base_stats/bellossom.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/bellossom/front.dimensions" + INCBIN "gfx/pokemon/bellossom/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/bellsprout.asm b/data/pokemon/base_stats/bellsprout.asm index 94a8ded6b..5e75e6e89 100644 --- a/data/pokemon/base_stats/bellsprout.asm +++ b/data/pokemon/base_stats/bellsprout.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/bellsprout/front.dimensions" + INCBIN "gfx/pokemon/bellsprout/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/blastoise.asm b/data/pokemon/base_stats/blastoise.asm index 7bb267d72..7e2f1697e 100644 --- a/data/pokemon/base_stats/blastoise.asm +++ b/data/pokemon/base_stats/blastoise.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/blastoise/front.dimensions" + INCBIN "gfx/pokemon/blastoise/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/blissey.asm b/data/pokemon/base_stats/blissey.asm index d1da5ea85..789649a40 100644 --- a/data/pokemon/base_stats/blissey.asm +++ b/data/pokemon/base_stats/blissey.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/blissey/front.dimensions" + INCBIN "gfx/pokemon/blissey/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/bulbasaur.asm b/data/pokemon/base_stats/bulbasaur.asm index bc843bcd3..2795d8035 100644 --- a/data/pokemon/base_stats/bulbasaur.asm +++ b/data/pokemon/base_stats/bulbasaur.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/bulbasaur/front.dimensions" + INCBIN "gfx/pokemon/bulbasaur/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/butterfree.asm b/data/pokemon/base_stats/butterfree.asm index 2392f4139..1feee4f58 100644 --- a/data/pokemon/base_stats/butterfree.asm +++ b/data/pokemon/base_stats/butterfree.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/butterfree/front.dimensions" + INCBIN "gfx/pokemon/butterfree/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/caterpie.asm b/data/pokemon/base_stats/caterpie.asm index cdac5bf26..a10790541 100644 --- a/data/pokemon/base_stats/caterpie.asm +++ b/data/pokemon/base_stats/caterpie.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/caterpie/front.dimensions" + INCBIN "gfx/pokemon/caterpie/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/celebi.asm b/data/pokemon/base_stats/celebi.asm index 986ebcc83..aabadba4f 100644 --- a/data/pokemon/base_stats/celebi.asm +++ b/data/pokemon/base_stats/celebi.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 120 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/celebi/front.dimensions" + INCBIN "gfx/pokemon/celebi/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/chansey.asm b/data/pokemon/base_stats/chansey.asm index aeb4aa1d5..d51f67d4f 100644 --- a/data/pokemon/base_stats/chansey.asm +++ b/data/pokemon/base_stats/chansey.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/chansey/front.dimensions" + INCBIN "gfx/pokemon/chansey/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/charizard.asm b/data/pokemon/base_stats/charizard.asm index 8d32f3f91..d978c6ad5 100644 --- a/data/pokemon/base_stats/charizard.asm +++ b/data/pokemon/base_stats/charizard.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/charizard/front.dimensions" + INCBIN "gfx/pokemon/charizard/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/charmander.asm b/data/pokemon/base_stats/charmander.asm index 98383865c..2fa9b9526 100644 --- a/data/pokemon/base_stats/charmander.asm +++ b/data/pokemon/base_stats/charmander.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/charmander/front.dimensions" + INCBIN "gfx/pokemon/charmander/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/charmeleon.asm b/data/pokemon/base_stats/charmeleon.asm index 9f7f32b51..5d86b975b 100644 --- a/data/pokemon/base_stats/charmeleon.asm +++ b/data/pokemon/base_stats/charmeleon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/charmeleon/front.dimensions" + INCBIN "gfx/pokemon/charmeleon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/chikorita.asm b/data/pokemon/base_stats/chikorita.asm index fdf120402..0476ba558 100644 --- a/data/pokemon/base_stats/chikorita.asm +++ b/data/pokemon/base_stats/chikorita.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/chikorita/front.dimensions" + INCBIN "gfx/pokemon/chikorita/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/chinchou.asm b/data/pokemon/base_stats/chinchou.asm index caa5d06e1..a5b3ded3a 100644 --- a/data/pokemon/base_stats/chinchou.asm +++ b/data/pokemon/base_stats/chinchou.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/chinchou/front.dimensions" + INCBIN "gfx/pokemon/chinchou/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FISH, FISH ; egg groups diff --git a/data/pokemon/base_stats/clefable.asm b/data/pokemon/base_stats/clefable.asm index 6e72b9614..4da3c73df 100644 --- a/data/pokemon/base_stats/clefable.asm +++ b/data/pokemon/base_stats/clefable.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/clefable/front.dimensions" + INCBIN "gfx/pokemon/clefable/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/clefairy.asm b/data/pokemon/base_stats/clefairy.asm index 53688a158..5e4def0ca 100644 --- a/data/pokemon/base_stats/clefairy.asm +++ b/data/pokemon/base_stats/clefairy.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/clefairy/front.dimensions" + INCBIN "gfx/pokemon/clefairy/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/cleffa.asm b/data/pokemon/base_stats/cleffa.asm index c431ae2bf..89fa91a45 100644 --- a/data/pokemon/base_stats/cleffa.asm +++ b/data/pokemon/base_stats/cleffa.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/cleffa/front.dimensions" + INCBIN "gfx/pokemon/cleffa/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/cloyster.asm b/data/pokemon/base_stats/cloyster.asm index 4119dbec2..3f3c13b6a 100644 --- a/data/pokemon/base_stats/cloyster.asm +++ b/data/pokemon/base_stats/cloyster.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/cloyster/front.dimensions" + INCBIN "gfx/pokemon/cloyster/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/corsola.asm b/data/pokemon/base_stats/corsola.asm index 5c559c64b..8f1e836ff 100644 --- a/data/pokemon/base_stats/corsola.asm +++ b/data/pokemon/base_stats/corsola.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/corsola/front.dimensions" + INCBIN "gfx/pokemon/corsola/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AMPHIBIAN, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/crobat.asm b/data/pokemon/base_stats/crobat.asm index 71c012079..34d7d10c5 100644 --- a/data/pokemon/base_stats/crobat.asm +++ b/data/pokemon/base_stats/crobat.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/crobat/front.dimensions" + INCBIN "gfx/pokemon/crobat/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/croconaw.asm b/data/pokemon/base_stats/croconaw.asm index 8dbd57632..6c76b19b1 100644 --- a/data/pokemon/base_stats/croconaw.asm +++ b/data/pokemon/base_stats/croconaw.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/croconaw/front.dimensions" + INCBIN "gfx/pokemon/croconaw/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/cubone.asm b/data/pokemon/base_stats/cubone.asm index dc15c8773..451f52133 100644 --- a/data/pokemon/base_stats/cubone.asm +++ b/data/pokemon/base_stats/cubone.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/cubone/front.dimensions" + INCBIN "gfx/pokemon/cubone/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/cyndaquil.asm b/data/pokemon/base_stats/cyndaquil.asm index 137e8c78d..a1b07cb91 100644 --- a/data/pokemon/base_stats/cyndaquil.asm +++ b/data/pokemon/base_stats/cyndaquil.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/cyndaquil/front.dimensions" + INCBIN "gfx/pokemon/cyndaquil/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/delibird.asm b/data/pokemon/base_stats/delibird.asm index 8ddb23e7c..0b38e8b97 100644 --- a/data/pokemon/base_stats/delibird.asm +++ b/data/pokemon/base_stats/delibird.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/delibird/front.dimensions" + INCBIN "gfx/pokemon/delibird/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/dewgong.asm b/data/pokemon/base_stats/dewgong.asm index 951a1e87e..ae6aa1941 100644 --- a/data/pokemon/base_stats/dewgong.asm +++ b/data/pokemon/base_stats/dewgong.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dewgong/front.dimensions" + INCBIN "gfx/pokemon/dewgong/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/diglett.asm b/data/pokemon/base_stats/diglett.asm index b93947622..1153cbcac 100644 --- a/data/pokemon/base_stats/diglett.asm +++ b/data/pokemon/base_stats/diglett.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/diglett/front.dimensions" + INCBIN "gfx/pokemon/diglett/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/ditto.asm b/data/pokemon/base_stats/ditto.asm index b88780bed..89d92ab7a 100644 --- a/data/pokemon/base_stats/ditto.asm +++ b/data/pokemon/base_stats/ditto.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ditto/front.dimensions" + INCBIN "gfx/pokemon/ditto/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn LADIES_MAN, LADIES_MAN ; egg groups diff --git a/data/pokemon/base_stats/dodrio.asm b/data/pokemon/base_stats/dodrio.asm index 6f8463663..9065dcbde 100644 --- a/data/pokemon/base_stats/dodrio.asm +++ b/data/pokemon/base_stats/dodrio.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dodrio/front.dimensions" + INCBIN "gfx/pokemon/dodrio/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/doduo.asm b/data/pokemon/base_stats/doduo.asm index 1ef229455..f844ccb07 100644 --- a/data/pokemon/base_stats/doduo.asm +++ b/data/pokemon/base_stats/doduo.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/doduo/front.dimensions" + INCBIN "gfx/pokemon/doduo/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/donphan.asm b/data/pokemon/base_stats/donphan.asm index ee0418de0..a5995c3fb 100644 --- a/data/pokemon/base_stats/donphan.asm +++ b/data/pokemon/base_stats/donphan.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/donphan/front.dimensions" + INCBIN "gfx/pokemon/donphan/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/dragonair.asm b/data/pokemon/base_stats/dragonair.asm index e0ca4b8e9..0478bd6a1 100644 --- a/data/pokemon/base_stats/dragonair.asm +++ b/data/pokemon/base_stats/dragonair.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dragonair/front.dimensions" + INCBIN "gfx/pokemon/dragonair/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/dragonite.asm b/data/pokemon/base_stats/dragonite.asm index 8ca777e96..d8ae9add9 100644 --- a/data/pokemon/base_stats/dragonite.asm +++ b/data/pokemon/base_stats/dragonite.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dragonite/front.dimensions" + INCBIN "gfx/pokemon/dragonite/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/dratini.asm b/data/pokemon/base_stats/dratini.asm index c1c173c86..0d5ccd5fd 100644 --- a/data/pokemon/base_stats/dratini.asm +++ b/data/pokemon/base_stats/dratini.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dratini/front.dimensions" + INCBIN "gfx/pokemon/dratini/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/drowzee.asm b/data/pokemon/base_stats/drowzee.asm index 0a456e8b8..7dd4855a3 100644 --- a/data/pokemon/base_stats/drowzee.asm +++ b/data/pokemon/base_stats/drowzee.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/drowzee/front.dimensions" + INCBIN "gfx/pokemon/drowzee/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/dugtrio.asm b/data/pokemon/base_stats/dugtrio.asm index e245f8320..9430a6669 100644 --- a/data/pokemon/base_stats/dugtrio.asm +++ b/data/pokemon/base_stats/dugtrio.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dugtrio/front.dimensions" + INCBIN "gfx/pokemon/dugtrio/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/dunsparce.asm b/data/pokemon/base_stats/dunsparce.asm index 5cbdb5807..8eef16241 100644 --- a/data/pokemon/base_stats/dunsparce.asm +++ b/data/pokemon/base_stats/dunsparce.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dunsparce/front.dimensions" + INCBIN "gfx/pokemon/dunsparce/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/eevee.asm b/data/pokemon/base_stats/eevee.asm index 79bbafbcf..95f67cf2b 100644 --- a/data/pokemon/base_stats/eevee.asm +++ b/data/pokemon/base_stats/eevee.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/eevee/front.dimensions" + INCBIN "gfx/pokemon/eevee/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/ekans.asm b/data/pokemon/base_stats/ekans.asm index 0aa84fde2..feed64b34 100644 --- a/data/pokemon/base_stats/ekans.asm +++ b/data/pokemon/base_stats/ekans.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ekans/front.dimensions" + INCBIN "gfx/pokemon/ekans/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/electabuzz.asm b/data/pokemon/base_stats/electabuzz.asm index a787adcb2..472e4487c 100644 --- a/data/pokemon/base_stats/electabuzz.asm +++ b/data/pokemon/base_stats/electabuzz.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/electabuzz/front.dimensions" + INCBIN "gfx/pokemon/electabuzz/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/electrode.asm b/data/pokemon/base_stats/electrode.asm index 44d92de66..72bc666e9 100644 --- a/data/pokemon/base_stats/electrode.asm +++ b/data/pokemon/base_stats/electrode.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/electrode/front.dimensions" + INCBIN "gfx/pokemon/electrode/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/elekid.asm b/data/pokemon/base_stats/elekid.asm index 999a85103..e53dcc23c 100644 --- a/data/pokemon/base_stats/elekid.asm +++ b/data/pokemon/base_stats/elekid.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/elekid/front.dimensions" + INCBIN "gfx/pokemon/elekid/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/entei.asm b/data/pokemon/base_stats/entei.asm index 63f5f0af6..4e4b7b3f8 100644 --- a/data/pokemon/base_stats/entei.asm +++ b/data/pokemon/base_stats/entei.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/entei/front.dimensions" + INCBIN "gfx/pokemon/entei/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/espeon.asm b/data/pokemon/base_stats/espeon.asm index 626b5bdd9..0bc50fb6d 100644 --- a/data/pokemon/base_stats/espeon.asm +++ b/data/pokemon/base_stats/espeon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/espeon/front.dimensions" + INCBIN "gfx/pokemon/espeon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/exeggcute.asm b/data/pokemon/base_stats/exeggcute.asm index 8c9cadc43..0547333ad 100644 --- a/data/pokemon/base_stats/exeggcute.asm +++ b/data/pokemon/base_stats/exeggcute.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/exeggcute/front.dimensions" + INCBIN "gfx/pokemon/exeggcute/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/exeggutor.asm b/data/pokemon/base_stats/exeggutor.asm index 259a1014e..409eb8a1d 100644 --- a/data/pokemon/base_stats/exeggutor.asm +++ b/data/pokemon/base_stats/exeggutor.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/exeggutor/front.dimensions" + INCBIN "gfx/pokemon/exeggutor/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/farfetch_d.asm b/data/pokemon/base_stats/farfetch_d.asm index 8da2b08a4..35d76b0a9 100644 --- a/data/pokemon/base_stats/farfetch_d.asm +++ b/data/pokemon/base_stats/farfetch_d.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/farfetch_d/front.dimensions" + INCBIN "gfx/pokemon/farfetch_d/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/fearow.asm b/data/pokemon/base_stats/fearow.asm index 2ce86b1bf..7ef9936d8 100644 --- a/data/pokemon/base_stats/fearow.asm +++ b/data/pokemon/base_stats/fearow.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/fearow/front.dimensions" + INCBIN "gfx/pokemon/fearow/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/feraligatr.asm b/data/pokemon/base_stats/feraligatr.asm index c59ca6ffb..41efb2edd 100644 --- a/data/pokemon/base_stats/feraligatr.asm +++ b/data/pokemon/base_stats/feraligatr.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/feraligatr/front.dimensions" + INCBIN "gfx/pokemon/feraligatr/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/flaaffy.asm b/data/pokemon/base_stats/flaaffy.asm index 2cf5e15bc..b20dc4774 100644 --- a/data/pokemon/base_stats/flaaffy.asm +++ b/data/pokemon/base_stats/flaaffy.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/flaaffy/front.dimensions" + INCBIN "gfx/pokemon/flaaffy/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/flareon.asm b/data/pokemon/base_stats/flareon.asm index 00faecec6..f1d4c8a69 100644 --- a/data/pokemon/base_stats/flareon.asm +++ b/data/pokemon/base_stats/flareon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/flareon/front.dimensions" + INCBIN "gfx/pokemon/flareon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/forretress.asm b/data/pokemon/base_stats/forretress.asm index 08fec2745..9c5a885aa 100644 --- a/data/pokemon/base_stats/forretress.asm +++ b/data/pokemon/base_stats/forretress.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/forretress/front.dimensions" + INCBIN "gfx/pokemon/forretress/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/furret.asm b/data/pokemon/base_stats/furret.asm index 3e3b7a656..b26a82e2e 100644 --- a/data/pokemon/base_stats/furret.asm +++ b/data/pokemon/base_stats/furret.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/furret/front.dimensions" + INCBIN "gfx/pokemon/furret/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/gastly.asm b/data/pokemon/base_stats/gastly.asm index 8b0547b6a..7e46be055 100644 --- a/data/pokemon/base_stats/gastly.asm +++ b/data/pokemon/base_stats/gastly.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/gastly/front.dimensions" + INCBIN "gfx/pokemon/gastly/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/gengar.asm b/data/pokemon/base_stats/gengar.asm index a152f7e43..4176aa330 100644 --- a/data/pokemon/base_stats/gengar.asm +++ b/data/pokemon/base_stats/gengar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/gengar/front.dimensions" + INCBIN "gfx/pokemon/gengar/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/geodude.asm b/data/pokemon/base_stats/geodude.asm index 86b627107..35e5d22a7 100644 --- a/data/pokemon/base_stats/geodude.asm +++ b/data/pokemon/base_stats/geodude.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/geodude/front.dimensions" + INCBIN "gfx/pokemon/geodude/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/girafarig.asm b/data/pokemon/base_stats/girafarig.asm index f832b2c28..7e67b19a6 100644 --- a/data/pokemon/base_stats/girafarig.asm +++ b/data/pokemon/base_stats/girafarig.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/girafarig/front.dimensions" + INCBIN "gfx/pokemon/girafarig/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/gligar.asm b/data/pokemon/base_stats/gligar.asm index 5bb7fdca8..e16bf7043 100644 --- a/data/pokemon/base_stats/gligar.asm +++ b/data/pokemon/base_stats/gligar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/gligar/front.dimensions" + INCBIN "gfx/pokemon/gligar/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/gloom.asm b/data/pokemon/base_stats/gloom.asm index 33cea01f2..128b1fe81 100644 --- a/data/pokemon/base_stats/gloom.asm +++ b/data/pokemon/base_stats/gloom.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/gloom/front.dimensions" + INCBIN "gfx/pokemon/gloom/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/golbat.asm b/data/pokemon/base_stats/golbat.asm index 06769b880..2de7278ca 100644 --- a/data/pokemon/base_stats/golbat.asm +++ b/data/pokemon/base_stats/golbat.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/golbat/front.dimensions" + INCBIN "gfx/pokemon/golbat/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/goldeen.asm b/data/pokemon/base_stats/goldeen.asm index 314852a3e..bc165c7a5 100644 --- a/data/pokemon/base_stats/goldeen.asm +++ b/data/pokemon/base_stats/goldeen.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/goldeen/front.dimensions" + INCBIN "gfx/pokemon/goldeen/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FISH, FISH ; egg groups diff --git a/data/pokemon/base_stats/golduck.asm b/data/pokemon/base_stats/golduck.asm index 9c4dbb5f5..e3e5ea1aa 100644 --- a/data/pokemon/base_stats/golduck.asm +++ b/data/pokemon/base_stats/golduck.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/golduck/front.dimensions" + INCBIN "gfx/pokemon/golduck/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/golem.asm b/data/pokemon/base_stats/golem.asm index 9a9f04451..bda102404 100644 --- a/data/pokemon/base_stats/golem.asm +++ b/data/pokemon/base_stats/golem.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/golem/front.dimensions" + INCBIN "gfx/pokemon/golem/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/granbull.asm b/data/pokemon/base_stats/granbull.asm index 088e17dd8..9c572cf7b 100644 --- a/data/pokemon/base_stats/granbull.asm +++ b/data/pokemon/base_stats/granbull.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/granbull/front.dimensions" + INCBIN "gfx/pokemon/granbull/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FIELD, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/graveler.asm b/data/pokemon/base_stats/graveler.asm index dfbeb770c..b6be8cb5c 100644 --- a/data/pokemon/base_stats/graveler.asm +++ b/data/pokemon/base_stats/graveler.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/graveler/front.dimensions" + INCBIN "gfx/pokemon/graveler/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/grimer.asm b/data/pokemon/base_stats/grimer.asm index 86dacd1e6..b1536bb3c 100644 --- a/data/pokemon/base_stats/grimer.asm +++ b/data/pokemon/base_stats/grimer.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/grimer/front.dimensions" + INCBIN "gfx/pokemon/grimer/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/growlithe.asm b/data/pokemon/base_stats/growlithe.asm index ef5cc53b3..e3cfa7faa 100644 --- a/data/pokemon/base_stats/growlithe.asm +++ b/data/pokemon/base_stats/growlithe.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/growlithe/front.dimensions" + INCBIN "gfx/pokemon/growlithe/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/gyarados.asm b/data/pokemon/base_stats/gyarados.asm index 1bdceff88..eb4f51f08 100644 --- a/data/pokemon/base_stats/gyarados.asm +++ b/data/pokemon/base_stats/gyarados.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 5 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/gyarados/front.dimensions" + INCBIN "gfx/pokemon/gyarados/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FISH, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/haunter.asm b/data/pokemon/base_stats/haunter.asm index c0a192d67..5c31fd2a9 100644 --- a/data/pokemon/base_stats/haunter.asm +++ b/data/pokemon/base_stats/haunter.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/haunter/front.dimensions" + INCBIN "gfx/pokemon/haunter/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/heracross.asm b/data/pokemon/base_stats/heracross.asm index 1f81d9c7b..f27efbe0d 100644 --- a/data/pokemon/base_stats/heracross.asm +++ b/data/pokemon/base_stats/heracross.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/heracross/front.dimensions" + INCBIN "gfx/pokemon/heracross/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/hitmonchan.asm b/data/pokemon/base_stats/hitmonchan.asm index 3eeb23dd4..b8e7da73b 100644 --- a/data/pokemon/base_stats/hitmonchan.asm +++ b/data/pokemon/base_stats/hitmonchan.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hitmonchan/front.dimensions" + INCBIN "gfx/pokemon/hitmonchan/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/hitmonlee.asm b/data/pokemon/base_stats/hitmonlee.asm index a31352209..a5759f92d 100644 --- a/data/pokemon/base_stats/hitmonlee.asm +++ b/data/pokemon/base_stats/hitmonlee.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hitmonlee/front.dimensions" + INCBIN "gfx/pokemon/hitmonlee/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/hitmontop.asm b/data/pokemon/base_stats/hitmontop.asm index 532b8a6d8..a36b7fc58 100644 --- a/data/pokemon/base_stats/hitmontop.asm +++ b/data/pokemon/base_stats/hitmontop.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hitmontop/front.dimensions" + INCBIN "gfx/pokemon/hitmontop/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/ho_oh.asm b/data/pokemon/base_stats/ho_oh.asm index f0792d427..910ea5a9f 100644 --- a/data/pokemon/base_stats/ho_oh.asm +++ b/data/pokemon/base_stats/ho_oh.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 120 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ho_oh/front.dimensions" + INCBIN "gfx/pokemon/ho_oh/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/hoothoot.asm b/data/pokemon/base_stats/hoothoot.asm index 0442fe414..b52e929e9 100644 --- a/data/pokemon/base_stats/hoothoot.asm +++ b/data/pokemon/base_stats/hoothoot.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hoothoot/front.dimensions" + INCBIN "gfx/pokemon/hoothoot/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/hoppip.asm b/data/pokemon/base_stats/hoppip.asm index b1918d699..c6e1a86dc 100644 --- a/data/pokemon/base_stats/hoppip.asm +++ b/data/pokemon/base_stats/hoppip.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hoppip/front.dimensions" + INCBIN "gfx/pokemon/hoppip/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FAIRY, PLANT ; egg groups diff --git a/data/pokemon/base_stats/horsea.asm b/data/pokemon/base_stats/horsea.asm index 3296f52af..c3d75a927 100644 --- a/data/pokemon/base_stats/horsea.asm +++ b/data/pokemon/base_stats/horsea.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/horsea/front.dimensions" + INCBIN "gfx/pokemon/horsea/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/houndoom.asm b/data/pokemon/base_stats/houndoom.asm index 234832675..1f3b4f903 100644 --- a/data/pokemon/base_stats/houndoom.asm +++ b/data/pokemon/base_stats/houndoom.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/houndoom/front.dimensions" + INCBIN "gfx/pokemon/houndoom/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/houndour.asm b/data/pokemon/base_stats/houndour.asm index f743cd81e..b064b3e0d 100644 --- a/data/pokemon/base_stats/houndour.asm +++ b/data/pokemon/base_stats/houndour.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/houndour/front.dimensions" + INCBIN "gfx/pokemon/houndour/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/hypno.asm b/data/pokemon/base_stats/hypno.asm index 25aea318a..83aab91c8 100644 --- a/data/pokemon/base_stats/hypno.asm +++ b/data/pokemon/base_stats/hypno.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hypno/front.dimensions" + INCBIN "gfx/pokemon/hypno/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/igglybuff.asm b/data/pokemon/base_stats/igglybuff.asm index c8c7ca7bf..8745ecafb 100644 --- a/data/pokemon/base_stats/igglybuff.asm +++ b/data/pokemon/base_stats/igglybuff.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/igglybuff/front.dimensions" + INCBIN "gfx/pokemon/igglybuff/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/ivysaur.asm b/data/pokemon/base_stats/ivysaur.asm index 7d98b4b6d..8e7c7c9c4 100644 --- a/data/pokemon/base_stats/ivysaur.asm +++ b/data/pokemon/base_stats/ivysaur.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ivysaur/front.dimensions" + INCBIN "gfx/pokemon/ivysaur/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/jigglypuff.asm b/data/pokemon/base_stats/jigglypuff.asm index 09b3a7dbb..f785f0228 100644 --- a/data/pokemon/base_stats/jigglypuff.asm +++ b/data/pokemon/base_stats/jigglypuff.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/jigglypuff/front.dimensions" + INCBIN "gfx/pokemon/jigglypuff/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/jolteon.asm b/data/pokemon/base_stats/jolteon.asm index 665a40d1d..a6636ebba 100644 --- a/data/pokemon/base_stats/jolteon.asm +++ b/data/pokemon/base_stats/jolteon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/jolteon/front.dimensions" + INCBIN "gfx/pokemon/jolteon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/jumpluff.asm b/data/pokemon/base_stats/jumpluff.asm index 623fbe82d..c40d2c559 100644 --- a/data/pokemon/base_stats/jumpluff.asm +++ b/data/pokemon/base_stats/jumpluff.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/jumpluff/front.dimensions" + INCBIN "gfx/pokemon/jumpluff/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FAIRY, PLANT ; egg groups diff --git a/data/pokemon/base_stats/jynx.asm b/data/pokemon/base_stats/jynx.asm index 3018dfa8e..5696b83ee 100644 --- a/data/pokemon/base_stats/jynx.asm +++ b/data/pokemon/base_stats/jynx.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/jynx/front.dimensions" + INCBIN "gfx/pokemon/jynx/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/kabuto.asm b/data/pokemon/base_stats/kabuto.asm index 9a38cbcba..60022586f 100644 --- a/data/pokemon/base_stats/kabuto.asm +++ b/data/pokemon/base_stats/kabuto.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 30 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kabuto/front.dimensions" + INCBIN "gfx/pokemon/kabuto/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/kabutops.asm b/data/pokemon/base_stats/kabutops.asm index b8de99fa1..b56cb1db8 100644 --- a/data/pokemon/base_stats/kabutops.asm +++ b/data/pokemon/base_stats/kabutops.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 30 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kabutops/front.dimensions" + INCBIN "gfx/pokemon/kabutops/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/kadabra.asm b/data/pokemon/base_stats/kadabra.asm index a32a0c5a9..e3ce05321 100644 --- a/data/pokemon/base_stats/kadabra.asm +++ b/data/pokemon/base_stats/kadabra.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kadabra/front.dimensions" + INCBIN "gfx/pokemon/kadabra/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/kakuna.asm b/data/pokemon/base_stats/kakuna.asm index 83241fbcd..4c8304dd2 100644 --- a/data/pokemon/base_stats/kakuna.asm +++ b/data/pokemon/base_stats/kakuna.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kakuna/front.dimensions" + INCBIN "gfx/pokemon/kakuna/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/kangaskhan.asm b/data/pokemon/base_stats/kangaskhan.asm index 21af227f0..3724e29eb 100644 --- a/data/pokemon/base_stats/kangaskhan.asm +++ b/data/pokemon/base_stats/kangaskhan.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kangaskhan/front.dimensions" + INCBIN "gfx/pokemon/kangaskhan/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/kingdra.asm b/data/pokemon/base_stats/kingdra.asm index e62d0f23e..d217fa612 100644 --- a/data/pokemon/base_stats/kingdra.asm +++ b/data/pokemon/base_stats/kingdra.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kingdra/front.dimensions" + INCBIN "gfx/pokemon/kingdra/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/kingler.asm b/data/pokemon/base_stats/kingler.asm index 01ac23a99..82549ca88 100644 --- a/data/pokemon/base_stats/kingler.asm +++ b/data/pokemon/base_stats/kingler.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kingler/front.dimensions" + INCBIN "gfx/pokemon/kingler/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/koffing.asm b/data/pokemon/base_stats/koffing.asm index 70e8bd114..8408f4ad8 100644 --- a/data/pokemon/base_stats/koffing.asm +++ b/data/pokemon/base_stats/koffing.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/koffing/front.dimensions" + INCBIN "gfx/pokemon/koffing/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/krabby.asm b/data/pokemon/base_stats/krabby.asm index 60ce4c7f4..f4d78962a 100644 --- a/data/pokemon/base_stats/krabby.asm +++ b/data/pokemon/base_stats/krabby.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/krabby/front.dimensions" + INCBIN "gfx/pokemon/krabby/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/lanturn.asm b/data/pokemon/base_stats/lanturn.asm index f5b747fad..ea97a9722 100644 --- a/data/pokemon/base_stats/lanturn.asm +++ b/data/pokemon/base_stats/lanturn.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/lanturn/front.dimensions" + INCBIN "gfx/pokemon/lanturn/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FISH, FISH ; egg groups diff --git a/data/pokemon/base_stats/lapras.asm b/data/pokemon/base_stats/lapras.asm index e6ccec359..4ba001dfd 100644 --- a/data/pokemon/base_stats/lapras.asm +++ b/data/pokemon/base_stats/lapras.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/lapras/front.dimensions" + INCBIN "gfx/pokemon/lapras/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/larvitar.asm b/data/pokemon/base_stats/larvitar.asm index 7de66ca7f..d9c18d1bc 100644 --- a/data/pokemon/base_stats/larvitar.asm +++ b/data/pokemon/base_stats/larvitar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/larvitar/front.dimensions" + INCBIN "gfx/pokemon/larvitar/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/ledian.asm b/data/pokemon/base_stats/ledian.asm index 84a06c092..1f0cb4fd9 100644 --- a/data/pokemon/base_stats/ledian.asm +++ b/data/pokemon/base_stats/ledian.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ledian/front.dimensions" + INCBIN "gfx/pokemon/ledian/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/ledyba.asm b/data/pokemon/base_stats/ledyba.asm index 68a20d1ea..e78d4efe4 100644 --- a/data/pokemon/base_stats/ledyba.asm +++ b/data/pokemon/base_stats/ledyba.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ledyba/front.dimensions" + INCBIN "gfx/pokemon/ledyba/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/lickitung.asm b/data/pokemon/base_stats/lickitung.asm index 0f8f351da..43d60ec6c 100644 --- a/data/pokemon/base_stats/lickitung.asm +++ b/data/pokemon/base_stats/lickitung.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/lickitung/front.dimensions" + INCBIN "gfx/pokemon/lickitung/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/lugia.asm b/data/pokemon/base_stats/lugia.asm index 6649c9954..7ad2f23a1 100644 --- a/data/pokemon/base_stats/lugia.asm +++ b/data/pokemon/base_stats/lugia.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 120 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/lugia/front.dimensions" + INCBIN "gfx/pokemon/lugia/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/machamp.asm b/data/pokemon/base_stats/machamp.asm index bb716cf25..41b168234 100644 --- a/data/pokemon/base_stats/machamp.asm +++ b/data/pokemon/base_stats/machamp.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/machamp/front.dimensions" + INCBIN "gfx/pokemon/machamp/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/machoke.asm b/data/pokemon/base_stats/machoke.asm index 79caf8c70..8b98ea1de 100644 --- a/data/pokemon/base_stats/machoke.asm +++ b/data/pokemon/base_stats/machoke.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/machoke/front.dimensions" + INCBIN "gfx/pokemon/machoke/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/machop.asm b/data/pokemon/base_stats/machop.asm index 6b0cbaab7..cb1b2f7c5 100644 --- a/data/pokemon/base_stats/machop.asm +++ b/data/pokemon/base_stats/machop.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/machop/front.dimensions" + INCBIN "gfx/pokemon/machop/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/magby.asm b/data/pokemon/base_stats/magby.asm index d593d0272..132387f32 100644 --- a/data/pokemon/base_stats/magby.asm +++ b/data/pokemon/base_stats/magby.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magby/front.dimensions" + INCBIN "gfx/pokemon/magby/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/magcargo.asm b/data/pokemon/base_stats/magcargo.asm index 45493135b..aa2008cd1 100644 --- a/data/pokemon/base_stats/magcargo.asm +++ b/data/pokemon/base_stats/magcargo.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magcargo/front.dimensions" + INCBIN "gfx/pokemon/magcargo/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/magikarp.asm b/data/pokemon/base_stats/magikarp.asm index 2519b475b..e5524543f 100644 --- a/data/pokemon/base_stats/magikarp.asm +++ b/data/pokemon/base_stats/magikarp.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 5 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magikarp/front.dimensions" + INCBIN "gfx/pokemon/magikarp/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FISH, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/magmar.asm b/data/pokemon/base_stats/magmar.asm index 899b3f39f..595df7ab7 100644 --- a/data/pokemon/base_stats/magmar.asm +++ b/data/pokemon/base_stats/magmar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magmar/front.dimensions" + INCBIN "gfx/pokemon/magmar/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/magnemite.asm b/data/pokemon/base_stats/magnemite.asm index 19a85a9a1..42bdc18a7 100644 --- a/data/pokemon/base_stats/magnemite.asm +++ b/data/pokemon/base_stats/magnemite.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magnemite/front.dimensions" + INCBIN "gfx/pokemon/magnemite/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/magneton.asm b/data/pokemon/base_stats/magneton.asm index 5fdbe68f4..5cac867be 100644 --- a/data/pokemon/base_stats/magneton.asm +++ b/data/pokemon/base_stats/magneton.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magneton/front.dimensions" + INCBIN "gfx/pokemon/magneton/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/mankey.asm b/data/pokemon/base_stats/mankey.asm index 77cc260d4..41aaac8a9 100644 --- a/data/pokemon/base_stats/mankey.asm +++ b/data/pokemon/base_stats/mankey.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mankey/front.dimensions" + INCBIN "gfx/pokemon/mankey/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/mantine.asm b/data/pokemon/base_stats/mantine.asm index bfe113428..bec060cb6 100644 --- a/data/pokemon/base_stats/mantine.asm +++ b/data/pokemon/base_stats/mantine.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mantine/front.dimensions" + INCBIN "gfx/pokemon/mantine/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AMPHIBIAN, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/mareep.asm b/data/pokemon/base_stats/mareep.asm index cc190b664..8388d7f8c 100644 --- a/data/pokemon/base_stats/mareep.asm +++ b/data/pokemon/base_stats/mareep.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mareep/front.dimensions" + INCBIN "gfx/pokemon/mareep/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/marill.asm b/data/pokemon/base_stats/marill.asm index 73708d1df..b6fcc62e5 100644 --- a/data/pokemon/base_stats/marill.asm +++ b/data/pokemon/base_stats/marill.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/marill/front.dimensions" + INCBIN "gfx/pokemon/marill/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AMPHIBIAN, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/marowak.asm b/data/pokemon/base_stats/marowak.asm index 3e04b9697..cc03dc697 100644 --- a/data/pokemon/base_stats/marowak.asm +++ b/data/pokemon/base_stats/marowak.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/marowak/front.dimensions" + INCBIN "gfx/pokemon/marowak/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/meganium.asm b/data/pokemon/base_stats/meganium.asm index cf1125003..eaca626d4 100644 --- a/data/pokemon/base_stats/meganium.asm +++ b/data/pokemon/base_stats/meganium.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/meganium/front.dimensions" + INCBIN "gfx/pokemon/meganium/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/meowth.asm b/data/pokemon/base_stats/meowth.asm index f177f0efd..114f76899 100644 --- a/data/pokemon/base_stats/meowth.asm +++ b/data/pokemon/base_stats/meowth.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/meowth/front.dimensions" + INCBIN "gfx/pokemon/meowth/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/metapod.asm b/data/pokemon/base_stats/metapod.asm index e26e31fc5..f2b33f831 100644 --- a/data/pokemon/base_stats/metapod.asm +++ b/data/pokemon/base_stats/metapod.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/metapod/front.dimensions" + INCBIN "gfx/pokemon/metapod/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/mew.asm b/data/pokemon/base_stats/mew.asm index 1961cef4e..4d70413d0 100644 --- a/data/pokemon/base_stats/mew.asm +++ b/data/pokemon/base_stats/mew.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 120 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mew/front.dimensions" + INCBIN "gfx/pokemon/mew/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/mewtwo.asm b/data/pokemon/base_stats/mewtwo.asm index 748a1c3fb..0e9636223 100644 --- a/data/pokemon/base_stats/mewtwo.asm +++ b/data/pokemon/base_stats/mewtwo.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 120 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mewtwo/front.dimensions" + INCBIN "gfx/pokemon/mewtwo/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/miltank.asm b/data/pokemon/base_stats/miltank.asm index 63ed422bc..c751a2f9c 100644 --- a/data/pokemon/base_stats/miltank.asm +++ b/data/pokemon/base_stats/miltank.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/miltank/front.dimensions" + INCBIN "gfx/pokemon/miltank/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/misdreavus.asm b/data/pokemon/base_stats/misdreavus.asm index 11c5f239d..d1824eaa2 100644 --- a/data/pokemon/base_stats/misdreavus.asm +++ b/data/pokemon/base_stats/misdreavus.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/misdreavus/front.dimensions" + INCBIN "gfx/pokemon/misdreavus/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/moltres.asm b/data/pokemon/base_stats/moltres.asm index bf70c2821..22157c073 100644 --- a/data/pokemon/base_stats/moltres.asm +++ b/data/pokemon/base_stats/moltres.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/moltres/front.dimensions" + INCBIN "gfx/pokemon/moltres/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/mr__mime.asm b/data/pokemon/base_stats/mr__mime.asm index 9728c296f..1abc9995f 100644 --- a/data/pokemon/base_stats/mr__mime.asm +++ b/data/pokemon/base_stats/mr__mime.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mr__mime/front.dimensions" + INCBIN "gfx/pokemon/mr__mime/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/muk.asm b/data/pokemon/base_stats/muk.asm index 30c6414fd..a25d85605 100644 --- a/data/pokemon/base_stats/muk.asm +++ b/data/pokemon/base_stats/muk.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/muk/front.dimensions" + INCBIN "gfx/pokemon/muk/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/murkrow.asm b/data/pokemon/base_stats/murkrow.asm index 7f459e8aa..2fada2697 100644 --- a/data/pokemon/base_stats/murkrow.asm +++ b/data/pokemon/base_stats/murkrow.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/murkrow/front.dimensions" + INCBIN "gfx/pokemon/murkrow/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/natu.asm b/data/pokemon/base_stats/natu.asm index 54ef8af58..b9bde658a 100644 --- a/data/pokemon/base_stats/natu.asm +++ b/data/pokemon/base_stats/natu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/natu/front.dimensions" + INCBIN "gfx/pokemon/natu/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/nidoking.asm b/data/pokemon/base_stats/nidoking.asm index 316f71e87..3d7205af5 100644 --- a/data/pokemon/base_stats/nidoking.asm +++ b/data/pokemon/base_stats/nidoking.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidoking/front.dimensions" + INCBIN "gfx/pokemon/nidoking/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/nidoqueen.asm b/data/pokemon/base_stats/nidoqueen.asm index e9d2ae611..4c5ca110e 100644 --- a/data/pokemon/base_stats/nidoqueen.asm +++ b/data/pokemon/base_stats/nidoqueen.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidoqueen/front.dimensions" + INCBIN "gfx/pokemon/nidoqueen/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/nidoran_f.asm b/data/pokemon/base_stats/nidoran_f.asm index 1cd53b17a..77925f1df 100644 --- a/data/pokemon/base_stats/nidoran_f.asm +++ b/data/pokemon/base_stats/nidoran_f.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidoran_f/front.dimensions" + INCBIN "gfx/pokemon/nidoran_f/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/nidoran_m.asm b/data/pokemon/base_stats/nidoran_m.asm index cf0c1e1b2..0f25712dd 100644 --- a/data/pokemon/base_stats/nidoran_m.asm +++ b/data/pokemon/base_stats/nidoran_m.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidoran_m/front.dimensions" + INCBIN "gfx/pokemon/nidoran_m/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/nidorina.asm b/data/pokemon/base_stats/nidorina.asm index 42b3aebf8..2385f82ec 100644 --- a/data/pokemon/base_stats/nidorina.asm +++ b/data/pokemon/base_stats/nidorina.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidorina/front.dimensions" + INCBIN "gfx/pokemon/nidorina/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/nidorino.asm b/data/pokemon/base_stats/nidorino.asm index f31e8df3d..9c94ea824 100644 --- a/data/pokemon/base_stats/nidorino.asm +++ b/data/pokemon/base_stats/nidorino.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidorino/front.dimensions" + INCBIN "gfx/pokemon/nidorino/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/ninetales.asm b/data/pokemon/base_stats/ninetales.asm index 5fd84b886..f23d2e384 100644 --- a/data/pokemon/base_stats/ninetales.asm +++ b/data/pokemon/base_stats/ninetales.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ninetales/front.dimensions" + INCBIN "gfx/pokemon/ninetales/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/noctowl.asm b/data/pokemon/base_stats/noctowl.asm index e2c8565bd..030dec08e 100644 --- a/data/pokemon/base_stats/noctowl.asm +++ b/data/pokemon/base_stats/noctowl.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/noctowl/front.dimensions" + INCBIN "gfx/pokemon/noctowl/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/octillery.asm b/data/pokemon/base_stats/octillery.asm index 80b5ad97a..6bc2f7d46 100644 --- a/data/pokemon/base_stats/octillery.asm +++ b/data/pokemon/base_stats/octillery.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/octillery/front.dimensions" + INCBIN "gfx/pokemon/octillery/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FISH ; egg groups diff --git a/data/pokemon/base_stats/oddish.asm b/data/pokemon/base_stats/oddish.asm index df75f6485..98f8c96f9 100644 --- a/data/pokemon/base_stats/oddish.asm +++ b/data/pokemon/base_stats/oddish.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/oddish/front.dimensions" + INCBIN "gfx/pokemon/oddish/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/omanyte.asm b/data/pokemon/base_stats/omanyte.asm index 6278f4e3c..70b88df38 100644 --- a/data/pokemon/base_stats/omanyte.asm +++ b/data/pokemon/base_stats/omanyte.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 30 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/omanyte/front.dimensions" + INCBIN "gfx/pokemon/omanyte/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/omastar.asm b/data/pokemon/base_stats/omastar.asm index d3f3b15e1..659ecc825 100644 --- a/data/pokemon/base_stats/omastar.asm +++ b/data/pokemon/base_stats/omastar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 30 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/omastar/front.dimensions" + INCBIN "gfx/pokemon/omastar/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/onix.asm b/data/pokemon/base_stats/onix.asm index 2fc5bd175..befd53abf 100644 --- a/data/pokemon/base_stats/onix.asm +++ b/data/pokemon/base_stats/onix.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/onix/front.dimensions" + INCBIN "gfx/pokemon/onix/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/paras.asm b/data/pokemon/base_stats/paras.asm index d86a51765..46687f928 100644 --- a/data/pokemon/base_stats/paras.asm +++ b/data/pokemon/base_stats/paras.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/paras/front.dimensions" + INCBIN "gfx/pokemon/paras/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/parasect.asm b/data/pokemon/base_stats/parasect.asm index 5c4320fd3..d40dd4fd9 100644 --- a/data/pokemon/base_stats/parasect.asm +++ b/data/pokemon/base_stats/parasect.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/parasect/front.dimensions" + INCBIN "gfx/pokemon/parasect/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/persian.asm b/data/pokemon/base_stats/persian.asm index fd2677e16..bbfd9beec 100644 --- a/data/pokemon/base_stats/persian.asm +++ b/data/pokemon/base_stats/persian.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/persian/front.dimensions" + INCBIN "gfx/pokemon/persian/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/phanpy.asm b/data/pokemon/base_stats/phanpy.asm index 93a26d43c..27794e0b5 100644 --- a/data/pokemon/base_stats/phanpy.asm +++ b/data/pokemon/base_stats/phanpy.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/phanpy/front.dimensions" + INCBIN "gfx/pokemon/phanpy/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/pichu.asm b/data/pokemon/base_stats/pichu.asm index da497bdf8..35d6a105a 100644 --- a/data/pokemon/base_stats/pichu.asm +++ b/data/pokemon/base_stats/pichu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pichu/front.dimensions" + INCBIN "gfx/pokemon/pichu/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/pidgeot.asm b/data/pokemon/base_stats/pidgeot.asm index 35222d2be..2d117b955 100644 --- a/data/pokemon/base_stats/pidgeot.asm +++ b/data/pokemon/base_stats/pidgeot.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pidgeot/front.dimensions" + INCBIN "gfx/pokemon/pidgeot/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/pidgeotto.asm b/data/pokemon/base_stats/pidgeotto.asm index 13b2d8e0c..8e263c4b3 100644 --- a/data/pokemon/base_stats/pidgeotto.asm +++ b/data/pokemon/base_stats/pidgeotto.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pidgeotto/front.dimensions" + INCBIN "gfx/pokemon/pidgeotto/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/pidgey.asm b/data/pokemon/base_stats/pidgey.asm index 0290f1717..123b95d7d 100644 --- a/data/pokemon/base_stats/pidgey.asm +++ b/data/pokemon/base_stats/pidgey.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pidgey/front.dimensions" + INCBIN "gfx/pokemon/pidgey/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/pikachu.asm b/data/pokemon/base_stats/pikachu.asm index cd998aead..78204ff78 100644 --- a/data/pokemon/base_stats/pikachu.asm +++ b/data/pokemon/base_stats/pikachu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pikachu/front.dimensions" + INCBIN "gfx/pokemon/pikachu/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/piloswine.asm b/data/pokemon/base_stats/piloswine.asm index dd8bf950b..3e48aa4c9 100644 --- a/data/pokemon/base_stats/piloswine.asm +++ b/data/pokemon/base_stats/piloswine.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/piloswine/front.dimensions" + INCBIN "gfx/pokemon/piloswine/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/pineco.asm b/data/pokemon/base_stats/pineco.asm index 2c27a9913..5754c49a2 100644 --- a/data/pokemon/base_stats/pineco.asm +++ b/data/pokemon/base_stats/pineco.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pineco/front.dimensions" + INCBIN "gfx/pokemon/pineco/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/pinsir.asm b/data/pokemon/base_stats/pinsir.asm index 697bba44c..55927c918 100644 --- a/data/pokemon/base_stats/pinsir.asm +++ b/data/pokemon/base_stats/pinsir.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pinsir/front.dimensions" + INCBIN "gfx/pokemon/pinsir/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/politoed.asm b/data/pokemon/base_stats/politoed.asm index b3dc1e98a..6ad959406 100644 --- a/data/pokemon/base_stats/politoed.asm +++ b/data/pokemon/base_stats/politoed.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/politoed/front.dimensions" + INCBIN "gfx/pokemon/politoed/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMPHIBIAN, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/poliwag.asm b/data/pokemon/base_stats/poliwag.asm index 00e328990..3a4d8c051 100644 --- a/data/pokemon/base_stats/poliwag.asm +++ b/data/pokemon/base_stats/poliwag.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/poliwag/front.dimensions" + INCBIN "gfx/pokemon/poliwag/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMPHIBIAN, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/poliwhirl.asm b/data/pokemon/base_stats/poliwhirl.asm index f62849cc9..d28964ebd 100644 --- a/data/pokemon/base_stats/poliwhirl.asm +++ b/data/pokemon/base_stats/poliwhirl.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/poliwhirl/front.dimensions" + INCBIN "gfx/pokemon/poliwhirl/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMPHIBIAN, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/poliwrath.asm b/data/pokemon/base_stats/poliwrath.asm index 04f74c42a..3b142e061 100644 --- a/data/pokemon/base_stats/poliwrath.asm +++ b/data/pokemon/base_stats/poliwrath.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/poliwrath/front.dimensions" + INCBIN "gfx/pokemon/poliwrath/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMPHIBIAN, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/ponyta.asm b/data/pokemon/base_stats/ponyta.asm index 5c1f77c98..2c3c3f9cf 100644 --- a/data/pokemon/base_stats/ponyta.asm +++ b/data/pokemon/base_stats/ponyta.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ponyta/front.dimensions" + INCBIN "gfx/pokemon/ponyta/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/porygon.asm b/data/pokemon/base_stats/porygon.asm index ecec59045..c034acdfb 100644 --- a/data/pokemon/base_stats/porygon.asm +++ b/data/pokemon/base_stats/porygon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/porygon/front.dimensions" + INCBIN "gfx/pokemon/porygon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/porygon2.asm b/data/pokemon/base_stats/porygon2.asm index 6bd464d3c..1e9625509 100644 --- a/data/pokemon/base_stats/porygon2.asm +++ b/data/pokemon/base_stats/porygon2.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/porygon2/front.dimensions" + INCBIN "gfx/pokemon/porygon2/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/primeape.asm b/data/pokemon/base_stats/primeape.asm index 249f9bee4..a7d1ee74a 100644 --- a/data/pokemon/base_stats/primeape.asm +++ b/data/pokemon/base_stats/primeape.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/primeape/front.dimensions" + INCBIN "gfx/pokemon/primeape/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/psyduck.asm b/data/pokemon/base_stats/psyduck.asm index 261fdde99..d2901750b 100644 --- a/data/pokemon/base_stats/psyduck.asm +++ b/data/pokemon/base_stats/psyduck.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/psyduck/front.dimensions" + INCBIN "gfx/pokemon/psyduck/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/pupitar.asm b/data/pokemon/base_stats/pupitar.asm index 63c0a41a7..7ff381195 100644 --- a/data/pokemon/base_stats/pupitar.asm +++ b/data/pokemon/base_stats/pupitar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pupitar/front.dimensions" + INCBIN "gfx/pokemon/pupitar/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/quagsire.asm b/data/pokemon/base_stats/quagsire.asm index 0f49866e7..75a1d24be 100644 --- a/data/pokemon/base_stats/quagsire.asm +++ b/data/pokemon/base_stats/quagsire.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/quagsire/front.dimensions" + INCBIN "gfx/pokemon/quagsire/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/quilava.asm b/data/pokemon/base_stats/quilava.asm index efadeda06..4cb388301 100644 --- a/data/pokemon/base_stats/quilava.asm +++ b/data/pokemon/base_stats/quilava.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/quilava/front.dimensions" + INCBIN "gfx/pokemon/quilava/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/qwilfish.asm b/data/pokemon/base_stats/qwilfish.asm index 70648e5fd..0cfe4e2d8 100644 --- a/data/pokemon/base_stats/qwilfish.asm +++ b/data/pokemon/base_stats/qwilfish.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/qwilfish/front.dimensions" + INCBIN "gfx/pokemon/qwilfish/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FISH, FISH ; egg groups diff --git a/data/pokemon/base_stats/raichu.asm b/data/pokemon/base_stats/raichu.asm index cdc5193cd..b6723ac0f 100644 --- a/data/pokemon/base_stats/raichu.asm +++ b/data/pokemon/base_stats/raichu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/raichu/front.dimensions" + INCBIN "gfx/pokemon/raichu/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/raikou.asm b/data/pokemon/base_stats/raikou.asm index a68f16181..47f4f9da3 100644 --- a/data/pokemon/base_stats/raikou.asm +++ b/data/pokemon/base_stats/raikou.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/raikou/front.dimensions" + INCBIN "gfx/pokemon/raikou/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/rapidash.asm b/data/pokemon/base_stats/rapidash.asm index 0167e7439..291b129f2 100644 --- a/data/pokemon/base_stats/rapidash.asm +++ b/data/pokemon/base_stats/rapidash.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/rapidash/front.dimensions" + INCBIN "gfx/pokemon/rapidash/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/raticate.asm b/data/pokemon/base_stats/raticate.asm index 1cfc65906..1424f3ffb 100644 --- a/data/pokemon/base_stats/raticate.asm +++ b/data/pokemon/base_stats/raticate.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/raticate/front.dimensions" + INCBIN "gfx/pokemon/raticate/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/rattata.asm b/data/pokemon/base_stats/rattata.asm index 13c21e889..71498aeac 100644 --- a/data/pokemon/base_stats/rattata.asm +++ b/data/pokemon/base_stats/rattata.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/rattata/front.dimensions" + INCBIN "gfx/pokemon/rattata/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/remoraid.asm b/data/pokemon/base_stats/remoraid.asm index 10ae15479..8dabbb0a4 100644 --- a/data/pokemon/base_stats/remoraid.asm +++ b/data/pokemon/base_stats/remoraid.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/remoraid/front.dimensions" + INCBIN "gfx/pokemon/remoraid/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FISH ; egg groups diff --git a/data/pokemon/base_stats/rhydon.asm b/data/pokemon/base_stats/rhydon.asm index cdcfb4cad..e885edd75 100644 --- a/data/pokemon/base_stats/rhydon.asm +++ b/data/pokemon/base_stats/rhydon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/rhydon/front.dimensions" + INCBIN "gfx/pokemon/rhydon/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/rhyhorn.asm b/data/pokemon/base_stats/rhyhorn.asm index 67d438751..f15f73719 100644 --- a/data/pokemon/base_stats/rhyhorn.asm +++ b/data/pokemon/base_stats/rhyhorn.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/rhyhorn/front.dimensions" + INCBIN "gfx/pokemon/rhyhorn/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/sandshrew.asm b/data/pokemon/base_stats/sandshrew.asm index cc0a4c492..7b172a120 100644 --- a/data/pokemon/base_stats/sandshrew.asm +++ b/data/pokemon/base_stats/sandshrew.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sandshrew/front.dimensions" + INCBIN "gfx/pokemon/sandshrew/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/sandslash.asm b/data/pokemon/base_stats/sandslash.asm index 75f66b363..d850c9697 100644 --- a/data/pokemon/base_stats/sandslash.asm +++ b/data/pokemon/base_stats/sandslash.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sandslash/front.dimensions" + INCBIN "gfx/pokemon/sandslash/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/scizor.asm b/data/pokemon/base_stats/scizor.asm index 127110c7a..c841c6301 100644 --- a/data/pokemon/base_stats/scizor.asm +++ b/data/pokemon/base_stats/scizor.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/scizor/front.dimensions" + INCBIN "gfx/pokemon/scizor/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/scyther.asm b/data/pokemon/base_stats/scyther.asm index 4c4779f0f..ea7c7cd33 100644 --- a/data/pokemon/base_stats/scyther.asm +++ b/data/pokemon/base_stats/scyther.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/scyther/front.dimensions" + INCBIN "gfx/pokemon/scyther/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/seadra.asm b/data/pokemon/base_stats/seadra.asm index b4dc47c20..3ba5687ce 100644 --- a/data/pokemon/base_stats/seadra.asm +++ b/data/pokemon/base_stats/seadra.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/seadra/front.dimensions" + INCBIN "gfx/pokemon/seadra/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/seaking.asm b/data/pokemon/base_stats/seaking.asm index 4d6d2f91e..70bee646a 100644 --- a/data/pokemon/base_stats/seaking.asm +++ b/data/pokemon/base_stats/seaking.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/seaking/front.dimensions" + INCBIN "gfx/pokemon/seaking/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FISH, FISH ; egg groups diff --git a/data/pokemon/base_stats/seel.asm b/data/pokemon/base_stats/seel.asm index 39b44fad8..13edf89bc 100644 --- a/data/pokemon/base_stats/seel.asm +++ b/data/pokemon/base_stats/seel.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/seel/front.dimensions" + INCBIN "gfx/pokemon/seel/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/sentret.asm b/data/pokemon/base_stats/sentret.asm index 12e120087..c3802fa63 100644 --- a/data/pokemon/base_stats/sentret.asm +++ b/data/pokemon/base_stats/sentret.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sentret/front.dimensions" + INCBIN "gfx/pokemon/sentret/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/shellder.asm b/data/pokemon/base_stats/shellder.asm index fb60ff262..9ca88a03d 100644 --- a/data/pokemon/base_stats/shellder.asm +++ b/data/pokemon/base_stats/shellder.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/shellder/front.dimensions" + INCBIN "gfx/pokemon/shellder/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/shuckle.asm b/data/pokemon/base_stats/shuckle.asm index 7cd31ad79..ec3a3b410 100644 --- a/data/pokemon/base_stats/shuckle.asm +++ b/data/pokemon/base_stats/shuckle.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/shuckle/front.dimensions" + INCBIN "gfx/pokemon/shuckle/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/skarmory.asm b/data/pokemon/base_stats/skarmory.asm index cf271b39f..4d0b5f3de 100644 --- a/data/pokemon/base_stats/skarmory.asm +++ b/data/pokemon/base_stats/skarmory.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/skarmory/front.dimensions" + INCBIN "gfx/pokemon/skarmory/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/skiploom.asm b/data/pokemon/base_stats/skiploom.asm index 46bbc8a8c..29a7be748 100644 --- a/data/pokemon/base_stats/skiploom.asm +++ b/data/pokemon/base_stats/skiploom.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/skiploom/front.dimensions" + INCBIN "gfx/pokemon/skiploom/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FAIRY, PLANT ; egg groups diff --git a/data/pokemon/base_stats/slowbro.asm b/data/pokemon/base_stats/slowbro.asm index a6b3a47b3..a9fc61e3a 100644 --- a/data/pokemon/base_stats/slowbro.asm +++ b/data/pokemon/base_stats/slowbro.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/slowbro/front.dimensions" + INCBIN "gfx/pokemon/slowbro/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/slowking.asm b/data/pokemon/base_stats/slowking.asm index e60da7fd6..59d6c83e4 100644 --- a/data/pokemon/base_stats/slowking.asm +++ b/data/pokemon/base_stats/slowking.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/slowking/front.dimensions" + INCBIN "gfx/pokemon/slowking/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/slowpoke.asm b/data/pokemon/base_stats/slowpoke.asm index a987d9bfa..cb9bc813b 100644 --- a/data/pokemon/base_stats/slowpoke.asm +++ b/data/pokemon/base_stats/slowpoke.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/slowpoke/front.dimensions" + INCBIN "gfx/pokemon/slowpoke/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/slugma.asm b/data/pokemon/base_stats/slugma.asm index a760dd40e..234e844b9 100644 --- a/data/pokemon/base_stats/slugma.asm +++ b/data/pokemon/base_stats/slugma.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/slugma/front.dimensions" + INCBIN "gfx/pokemon/slugma/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/smeargle.asm b/data/pokemon/base_stats/smeargle.asm index d80443acf..2373cb0f0 100644 --- a/data/pokemon/base_stats/smeargle.asm +++ b/data/pokemon/base_stats/smeargle.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/smeargle/front.dimensions" + INCBIN "gfx/pokemon/smeargle/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/smoochum.asm b/data/pokemon/base_stats/smoochum.asm index b3c6fdda0..f8f5e22f6 100644 --- a/data/pokemon/base_stats/smoochum.asm +++ b/data/pokemon/base_stats/smoochum.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/smoochum/front.dimensions" + INCBIN "gfx/pokemon/smoochum/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/sneasel.asm b/data/pokemon/base_stats/sneasel.asm index 3abea4b7a..4e24a8ada 100644 --- a/data/pokemon/base_stats/sneasel.asm +++ b/data/pokemon/base_stats/sneasel.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sneasel/front.dimensions" + INCBIN "gfx/pokemon/sneasel/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/snorlax.asm b/data/pokemon/base_stats/snorlax.asm index 0d5a4c813..9a9e426e9 100644 --- a/data/pokemon/base_stats/snorlax.asm +++ b/data/pokemon/base_stats/snorlax.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/snorlax/front.dimensions" + INCBIN "gfx/pokemon/snorlax/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/snubbull.asm b/data/pokemon/base_stats/snubbull.asm index 00d94a3cb..6dbca375e 100644 --- a/data/pokemon/base_stats/snubbull.asm +++ b/data/pokemon/base_stats/snubbull.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/snubbull/front.dimensions" + INCBIN "gfx/pokemon/snubbull/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FIELD, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/spearow.asm b/data/pokemon/base_stats/spearow.asm index b94e3559c..a55e8a17c 100644 --- a/data/pokemon/base_stats/spearow.asm +++ b/data/pokemon/base_stats/spearow.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/spearow/front.dimensions" + INCBIN "gfx/pokemon/spearow/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/spinarak.asm b/data/pokemon/base_stats/spinarak.asm index 5a19ec797..fb2fbb7f3 100644 --- a/data/pokemon/base_stats/spinarak.asm +++ b/data/pokemon/base_stats/spinarak.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/spinarak/front.dimensions" + INCBIN "gfx/pokemon/spinarak/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/squirtle.asm b/data/pokemon/base_stats/squirtle.asm index 1d9faa25d..6582f88a8 100644 --- a/data/pokemon/base_stats/squirtle.asm +++ b/data/pokemon/base_stats/squirtle.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/squirtle/front.dimensions" + INCBIN "gfx/pokemon/squirtle/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/stantler.asm b/data/pokemon/base_stats/stantler.asm index 762b2f26b..a8537a1e0 100644 --- a/data/pokemon/base_stats/stantler.asm +++ b/data/pokemon/base_stats/stantler.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/stantler/front.dimensions" + INCBIN "gfx/pokemon/stantler/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/starmie.asm b/data/pokemon/base_stats/starmie.asm index 55b6ed63c..55c5fcc99 100644 --- a/data/pokemon/base_stats/starmie.asm +++ b/data/pokemon/base_stats/starmie.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/starmie/front.dimensions" + INCBIN "gfx/pokemon/starmie/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/staryu.asm b/data/pokemon/base_stats/staryu.asm index 40700a47e..d702faaf2 100644 --- a/data/pokemon/base_stats/staryu.asm +++ b/data/pokemon/base_stats/staryu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/staryu/front.dimensions" + INCBIN "gfx/pokemon/staryu/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/steelix.asm b/data/pokemon/base_stats/steelix.asm index df5d8940c..6931418c8 100644 --- a/data/pokemon/base_stats/steelix.asm +++ b/data/pokemon/base_stats/steelix.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/steelix/front.dimensions" + INCBIN "gfx/pokemon/steelix/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/sudowoodo.asm b/data/pokemon/base_stats/sudowoodo.asm index 1c6c33984..40726999d 100644 --- a/data/pokemon/base_stats/sudowoodo.asm +++ b/data/pokemon/base_stats/sudowoodo.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sudowoodo/front.dimensions" + INCBIN "gfx/pokemon/sudowoodo/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/suicune.asm b/data/pokemon/base_stats/suicune.asm index 04ece5516..b199eddd7 100644 --- a/data/pokemon/base_stats/suicune.asm +++ b/data/pokemon/base_stats/suicune.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/suicune/front.dimensions" + INCBIN "gfx/pokemon/suicune/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/sunflora.asm b/data/pokemon/base_stats/sunflora.asm index 97974939c..ec39d0932 100644 --- a/data/pokemon/base_stats/sunflora.asm +++ b/data/pokemon/base_stats/sunflora.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sunflora/front.dimensions" + INCBIN "gfx/pokemon/sunflora/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/sunkern.asm b/data/pokemon/base_stats/sunkern.asm index 054625425..7e502900c 100644 --- a/data/pokemon/base_stats/sunkern.asm +++ b/data/pokemon/base_stats/sunkern.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sunkern/front.dimensions" + INCBIN "gfx/pokemon/sunkern/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/swinub.asm b/data/pokemon/base_stats/swinub.asm index 37f1dd67d..ee6bd783a 100644 --- a/data/pokemon/base_stats/swinub.asm +++ b/data/pokemon/base_stats/swinub.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/swinub/front.dimensions" + INCBIN "gfx/pokemon/swinub/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/tangela.asm b/data/pokemon/base_stats/tangela.asm index 9bb27ffca..a2b5b06a0 100644 --- a/data/pokemon/base_stats/tangela.asm +++ b/data/pokemon/base_stats/tangela.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tangela/front.dimensions" + INCBIN "gfx/pokemon/tangela/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/tauros.asm b/data/pokemon/base_stats/tauros.asm index 553458e83..936d60a4d 100644 --- a/data/pokemon/base_stats/tauros.asm +++ b/data/pokemon/base_stats/tauros.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tauros/front.dimensions" + INCBIN "gfx/pokemon/tauros/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/teddiursa.asm b/data/pokemon/base_stats/teddiursa.asm index d636aed87..18c4ede7a 100644 --- a/data/pokemon/base_stats/teddiursa.asm +++ b/data/pokemon/base_stats/teddiursa.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/teddiursa/front.dimensions" + INCBIN "gfx/pokemon/teddiursa/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/tentacool.asm b/data/pokemon/base_stats/tentacool.asm index b13879b47..94dcb42b0 100644 --- a/data/pokemon/base_stats/tentacool.asm +++ b/data/pokemon/base_stats/tentacool.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tentacool/front.dimensions" + INCBIN "gfx/pokemon/tentacool/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/tentacruel.asm b/data/pokemon/base_stats/tentacruel.asm index a678d13a8..e922c5938 100644 --- a/data/pokemon/base_stats/tentacruel.asm +++ b/data/pokemon/base_stats/tentacruel.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tentacruel/front.dimensions" + INCBIN "gfx/pokemon/tentacruel/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/togepi.asm b/data/pokemon/base_stats/togepi.asm index 82f549e9a..0f22863e5 100644 --- a/data/pokemon/base_stats/togepi.asm +++ b/data/pokemon/base_stats/togepi.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/togepi/front.dimensions" + INCBIN "gfx/pokemon/togepi/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/togetic.asm b/data/pokemon/base_stats/togetic.asm index cec61edb3..ef2f94305 100644 --- a/data/pokemon/base_stats/togetic.asm +++ b/data/pokemon/base_stats/togetic.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/togetic/front.dimensions" + INCBIN "gfx/pokemon/togetic/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AVIAN, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/totodile.asm b/data/pokemon/base_stats/totodile.asm index 1753d5af0..49c7603f6 100644 --- a/data/pokemon/base_stats/totodile.asm +++ b/data/pokemon/base_stats/totodile.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/totodile/front.dimensions" + INCBIN "gfx/pokemon/totodile/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/typhlosion.asm b/data/pokemon/base_stats/typhlosion.asm index 698a4e0a0..ed6fcf198 100644 --- a/data/pokemon/base_stats/typhlosion.asm +++ b/data/pokemon/base_stats/typhlosion.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/typhlosion/front.dimensions" + INCBIN "gfx/pokemon/typhlosion/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/tyranitar.asm b/data/pokemon/base_stats/tyranitar.asm index b695007f1..b6ed98dd7 100644 --- a/data/pokemon/base_stats/tyranitar.asm +++ b/data/pokemon/base_stats/tyranitar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tyranitar/front.dimensions" + INCBIN "gfx/pokemon/tyranitar/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/tyrogue.asm b/data/pokemon/base_stats/tyrogue.asm index 4e5e7ee43..026aab404 100644 --- a/data/pokemon/base_stats/tyrogue.asm +++ b/data/pokemon/base_stats/tyrogue.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tyrogue/front.dimensions" + INCBIN "gfx/pokemon/tyrogue/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/umbreon.asm b/data/pokemon/base_stats/umbreon.asm index 75e3700da..0382e69e2 100644 --- a/data/pokemon/base_stats/umbreon.asm +++ b/data/pokemon/base_stats/umbreon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/umbreon/front.dimensions" + INCBIN "gfx/pokemon/umbreon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/unown.asm b/data/pokemon/base_stats/unown.asm index 0b13f3eca..ef67b1ce1 100644 --- a/data/pokemon/base_stats/unown.asm +++ b/data/pokemon/base_stats/unown.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/unown_a/front.dimensions" + INCBIN "gfx/pokemon/unown_a/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/ursaring.asm b/data/pokemon/base_stats/ursaring.asm index 7aa8a4265..8f2031c77 100644 --- a/data/pokemon/base_stats/ursaring.asm +++ b/data/pokemon/base_stats/ursaring.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ursaring/front.dimensions" + INCBIN "gfx/pokemon/ursaring/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/vaporeon.asm b/data/pokemon/base_stats/vaporeon.asm index 0e55a1946..083a67499 100644 --- a/data/pokemon/base_stats/vaporeon.asm +++ b/data/pokemon/base_stats/vaporeon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/vaporeon/front.dimensions" + INCBIN "gfx/pokemon/vaporeon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/venomoth.asm b/data/pokemon/base_stats/venomoth.asm index b34581360..c92c7fbff 100644 --- a/data/pokemon/base_stats/venomoth.asm +++ b/data/pokemon/base_stats/venomoth.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/venomoth/front.dimensions" + INCBIN "gfx/pokemon/venomoth/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/venonat.asm b/data/pokemon/base_stats/venonat.asm index 4a6a568f3..40a9639b8 100644 --- a/data/pokemon/base_stats/venonat.asm +++ b/data/pokemon/base_stats/venonat.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/venonat/front.dimensions" + INCBIN "gfx/pokemon/venonat/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/venusaur.asm b/data/pokemon/base_stats/venusaur.asm index f5d6a3a33..465b3d0fc 100644 --- a/data/pokemon/base_stats/venusaur.asm +++ b/data/pokemon/base_stats/venusaur.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/venusaur/front.dimensions" + INCBIN "gfx/pokemon/venusaur/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/victreebel.asm b/data/pokemon/base_stats/victreebel.asm index 0efade3ad..e4e1a24e5 100644 --- a/data/pokemon/base_stats/victreebel.asm +++ b/data/pokemon/base_stats/victreebel.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/victreebel/front.dimensions" + INCBIN "gfx/pokemon/victreebel/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/vileplume.asm b/data/pokemon/base_stats/vileplume.asm index 12170e167..3f0d0b996 100644 --- a/data/pokemon/base_stats/vileplume.asm +++ b/data/pokemon/base_stats/vileplume.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/vileplume/front.dimensions" + INCBIN "gfx/pokemon/vileplume/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/voltorb.asm b/data/pokemon/base_stats/voltorb.asm index 7c2255729..2767568fa 100644 --- a/data/pokemon/base_stats/voltorb.asm +++ b/data/pokemon/base_stats/voltorb.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/voltorb/front.dimensions" + INCBIN "gfx/pokemon/voltorb/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/vulpix.asm b/data/pokemon/base_stats/vulpix.asm index 9cea11f93..e012402a0 100644 --- a/data/pokemon/base_stats/vulpix.asm +++ b/data/pokemon/base_stats/vulpix.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/vulpix/front.dimensions" + INCBIN "gfx/pokemon/vulpix/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/wartortle.asm b/data/pokemon/base_stats/wartortle.asm index 437342a8b..7df729f3f 100644 --- a/data/pokemon/base_stats/wartortle.asm +++ b/data/pokemon/base_stats/wartortle.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/wartortle/front.dimensions" + INCBIN "gfx/pokemon/wartortle/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/weedle.asm b/data/pokemon/base_stats/weedle.asm index b47a720ec..520109245 100644 --- a/data/pokemon/base_stats/weedle.asm +++ b/data/pokemon/base_stats/weedle.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/weedle/front.dimensions" + INCBIN "gfx/pokemon/weedle/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/weepinbell.asm b/data/pokemon/base_stats/weepinbell.asm index 4a70c5bb2..3dbd2595e 100644 --- a/data/pokemon/base_stats/weepinbell.asm +++ b/data/pokemon/base_stats/weepinbell.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/weepinbell/front.dimensions" + INCBIN "gfx/pokemon/weepinbell/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/weezing.asm b/data/pokemon/base_stats/weezing.asm index 49161c69b..41c1d4f5d 100644 --- a/data/pokemon/base_stats/weezing.asm +++ b/data/pokemon/base_stats/weezing.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/weezing/front.dimensions" + INCBIN "gfx/pokemon/weezing/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/wigglytuff.asm b/data/pokemon/base_stats/wigglytuff.asm index b94bb3482..e2d3bd7e6 100644 --- a/data/pokemon/base_stats/wigglytuff.asm +++ b/data/pokemon/base_stats/wigglytuff.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/wigglytuff/front.dimensions" + INCBIN "gfx/pokemon/wigglytuff/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/wobbuffet.asm b/data/pokemon/base_stats/wobbuffet.asm index c476dd828..393655150 100644 --- a/data/pokemon/base_stats/wobbuffet.asm +++ b/data/pokemon/base_stats/wobbuffet.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/wobbuffet/front.dimensions" + INCBIN "gfx/pokemon/wobbuffet/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/wooper.asm b/data/pokemon/base_stats/wooper.asm index 6e621fe4b..db3f7f90a 100644 --- a/data/pokemon/base_stats/wooper.asm +++ b/data/pokemon/base_stats/wooper.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/wooper/front.dimensions" + INCBIN "gfx/pokemon/wooper/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/xatu.asm b/data/pokemon/base_stats/xatu.asm index f2966ddb4..a5941421e 100644 --- a/data/pokemon/base_stats/xatu.asm +++ b/data/pokemon/base_stats/xatu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/xatu/front.dimensions" + INCBIN "gfx/pokemon/xatu/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/yanma.asm b/data/pokemon/base_stats/yanma.asm index 98449c720..0bff5157a 100644 --- a/data/pokemon/base_stats/yanma.asm +++ b/data/pokemon/base_stats/yanma.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/yanma/front.dimensions" + INCBIN "gfx/pokemon/yanma/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/zapdos.asm b/data/pokemon/base_stats/zapdos.asm index 44c1a8e82..35b557404 100644 --- a/data/pokemon/base_stats/zapdos.asm +++ b/data/pokemon/base_stats/zapdos.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/zapdos/front.dimensions" + INCBIN "gfx/pokemon/zapdos/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/zubat.asm b/data/pokemon/base_stats/zubat.asm index e8fd33ea2..5da4ceeba 100644 --- a/data/pokemon/base_stats/zubat.asm +++ b/data/pokemon/base_stats/zubat.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/zubat/front.dimensions" + INCBIN "gfx/pokemon/zubat/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/engine/color.asm b/engine/color.asm index 23f953ebe..53c727eef 100644 --- a/engine/color.asm +++ b/engine/color.asm @@ -1218,7 +1218,7 @@ INCLUDE "data/palettes/hp_bar.pal" ExpBarPalette: INCLUDE "data/palettes/exp_bar.pal" -INCLUDE "gfx/pics/palette_pointers.asm" +INCLUDE "gfx/pokemon/palette_pointers.asm" INCLUDE "gfx/trainer_palettes.asm" LoadMapPals: diff --git a/engine/pokedex_3.asm b/engine/pokedex_3.asm index 3414252c1..6ec2ce9fd 100644 --- a/engine/pokedex_3.asm +++ b/engine/pokedex_3.asm @@ -21,7 +21,7 @@ LoadQuestionMarkPic: ; 1de0d7 ret .QuestionMarkLZ: ; 1de0e1 -INCBIN "gfx/pics/questionmark/front.2bpp.lz" +INCBIN "gfx/pokemon/questionmark/front.2bpp.lz" DrawPokedexListWindow: ; 1de171 (77:6171) ld a, $32 diff --git a/gfx/pics.asm b/gfx/pics.asm index 026be8142..f14bfa42c 100644 --- a/gfx/pics.asm +++ b/gfx/pics.asm @@ -6,12 +6,12 @@ INCLUDE "includes.asm" SECTION "Pic Pointers", ROMX -INCLUDE "gfx/pics/pic_pointers.asm" +INCLUDE "gfx/pokemon/pic_pointers.asm" SECTION "Unown Pic Pointers", ROMX -INCLUDE "gfx/pics/unown_pic_pointers.asm" +INCLUDE "gfx/pokemon/unown_pic_pointers.asm" SECTION "Trainer Pic Pointers", ROMX @@ -22,711 +22,711 @@ INCLUDE "gfx/trainer_pic_pointers.asm" SECTION "Pics 1", ROMX Pics_1:: -HoOhFrontpic: INCBIN "gfx/pics/ho_oh/front.animated.2bpp.lz" -MachampFrontpic: INCBIN "gfx/pics/machamp/front.animated.2bpp.lz" -NinetalesFrontpic: INCBIN "gfx/pics/ninetales/front.animated.2bpp.lz" -FeraligatrFrontpic: INCBIN "gfx/pics/feraligatr/front.animated.2bpp.lz" -NidokingFrontpic: INCBIN "gfx/pics/nidoking/front.animated.2bpp.lz" -RaikouFrontpic: INCBIN "gfx/pics/raikou/front.animated.2bpp.lz" -LugiaFrontpic: INCBIN "gfx/pics/lugia/front.animated.2bpp.lz" -ArticunoFrontpic: INCBIN "gfx/pics/articuno/front.animated.2bpp.lz" -TaurosFrontpic: INCBIN "gfx/pics/tauros/front.animated.2bpp.lz" -VenusaurFrontpic: INCBIN "gfx/pics/venusaur/front.animated.2bpp.lz" -EnteiFrontpic: INCBIN "gfx/pics/entei/front.animated.2bpp.lz" -SuicuneFrontpic: INCBIN "gfx/pics/suicune/front.animated.2bpp.lz" -TyphlosionFrontpic: INCBIN "gfx/pics/typhlosion/front.animated.2bpp.lz" +HoOhFrontpic: INCBIN "gfx/pokemon/ho_oh/front.animated.2bpp.lz" +MachampFrontpic: INCBIN "gfx/pokemon/machamp/front.animated.2bpp.lz" +NinetalesFrontpic: INCBIN "gfx/pokemon/ninetales/front.animated.2bpp.lz" +FeraligatrFrontpic: INCBIN "gfx/pokemon/feraligatr/front.animated.2bpp.lz" +NidokingFrontpic: INCBIN "gfx/pokemon/nidoking/front.animated.2bpp.lz" +RaikouFrontpic: INCBIN "gfx/pokemon/raikou/front.animated.2bpp.lz" +LugiaFrontpic: INCBIN "gfx/pokemon/lugia/front.animated.2bpp.lz" +ArticunoFrontpic: INCBIN "gfx/pokemon/articuno/front.animated.2bpp.lz" +TaurosFrontpic: INCBIN "gfx/pokemon/tauros/front.animated.2bpp.lz" +VenusaurFrontpic: INCBIN "gfx/pokemon/venusaur/front.animated.2bpp.lz" +EnteiFrontpic: INCBIN "gfx/pokemon/entei/front.animated.2bpp.lz" +SuicuneFrontpic: INCBIN "gfx/pokemon/suicune/front.animated.2bpp.lz" +TyphlosionFrontpic: INCBIN "gfx/pokemon/typhlosion/front.animated.2bpp.lz" ; 123ffa SECTION "Pics 2", ROMX -BlastoiseFrontpic: INCBIN "gfx/pics/blastoise/front.animated.2bpp.lz" -RapidashFrontpic: INCBIN "gfx/pics/rapidash/front.animated.2bpp.lz" -MeganiumFrontpic: INCBIN "gfx/pics/meganium/front.animated.2bpp.lz" -NidoqueenFrontpic: INCBIN "gfx/pics/nidoqueen/front.animated.2bpp.lz" -HitmonleeFrontpic: INCBIN "gfx/pics/hitmonlee/front.animated.2bpp.lz" -ScizorFrontpic: INCBIN "gfx/pics/scizor/front.animated.2bpp.lz" -BeedrillFrontpic: INCBIN "gfx/pics/beedrill/front.animated.2bpp.lz" -ArcanineFrontpic: INCBIN "gfx/pics/arcanine/front.animated.2bpp.lz" -TyranitarFrontpic: INCBIN "gfx/pics/tyranitar/front.animated.2bpp.lz" -MoltresFrontpic: INCBIN "gfx/pics/moltres/front.animated.2bpp.lz" -ZapdosFrontpic: INCBIN "gfx/pics/zapdos/front.animated.2bpp.lz" -ArbokFrontpic: INCBIN "gfx/pics/arbok/front.animated.2bpp.lz" -MewtwoFrontpic: INCBIN "gfx/pics/mewtwo/front.animated.2bpp.lz" -FearowFrontpic: INCBIN "gfx/pics/fearow/front.animated.2bpp.lz" -CharizardFrontpic: INCBIN "gfx/pics/charizard/front.animated.2bpp.lz" -QuilavaFrontpic: INCBIN "gfx/pics/quilava/front.animated.2bpp.lz" +BlastoiseFrontpic: INCBIN "gfx/pokemon/blastoise/front.animated.2bpp.lz" +RapidashFrontpic: INCBIN "gfx/pokemon/rapidash/front.animated.2bpp.lz" +MeganiumFrontpic: INCBIN "gfx/pokemon/meganium/front.animated.2bpp.lz" +NidoqueenFrontpic: INCBIN "gfx/pokemon/nidoqueen/front.animated.2bpp.lz" +HitmonleeFrontpic: INCBIN "gfx/pokemon/hitmonlee/front.animated.2bpp.lz" +ScizorFrontpic: INCBIN "gfx/pokemon/scizor/front.animated.2bpp.lz" +BeedrillFrontpic: INCBIN "gfx/pokemon/beedrill/front.animated.2bpp.lz" +ArcanineFrontpic: INCBIN "gfx/pokemon/arcanine/front.animated.2bpp.lz" +TyranitarFrontpic: INCBIN "gfx/pokemon/tyranitar/front.animated.2bpp.lz" +MoltresFrontpic: INCBIN "gfx/pokemon/moltres/front.animated.2bpp.lz" +ZapdosFrontpic: INCBIN "gfx/pokemon/zapdos/front.animated.2bpp.lz" +ArbokFrontpic: INCBIN "gfx/pokemon/arbok/front.animated.2bpp.lz" +MewtwoFrontpic: INCBIN "gfx/pokemon/mewtwo/front.animated.2bpp.lz" +FearowFrontpic: INCBIN "gfx/pokemon/fearow/front.animated.2bpp.lz" +CharizardFrontpic: INCBIN "gfx/pokemon/charizard/front.animated.2bpp.lz" +QuilavaFrontpic: INCBIN "gfx/pokemon/quilava/front.animated.2bpp.lz" ; 127ffe SECTION "Pics 3", ROMX -SteelixFrontpic: INCBIN "gfx/pics/steelix/front.animated.2bpp.lz" -AlakazamFrontpic: INCBIN "gfx/pics/alakazam/front.animated.2bpp.lz" -GyaradosFrontpic: INCBIN "gfx/pics/gyarados/front.animated.2bpp.lz" -KangaskhanFrontpic: INCBIN "gfx/pics/kangaskhan/front.animated.2bpp.lz" -RhydonFrontpic: INCBIN "gfx/pics/rhydon/front.animated.2bpp.lz" -GolduckFrontpic: INCBIN "gfx/pics/golduck/front.animated.2bpp.lz" -RhyhornFrontpic: INCBIN "gfx/pics/rhyhorn/front.animated.2bpp.lz" -PidgeotFrontpic: INCBIN "gfx/pics/pidgeot/front.animated.2bpp.lz" -SlowbroFrontpic: INCBIN "gfx/pics/slowbro/front.animated.2bpp.lz" -ButterfreeFrontpic: INCBIN "gfx/pics/butterfree/front.animated.2bpp.lz" -WeezingFrontpic: INCBIN "gfx/pics/weezing/front.animated.2bpp.lz" -CloysterFrontpic: INCBIN "gfx/pics/cloyster/front.animated.2bpp.lz" -SkarmoryFrontpic: INCBIN "gfx/pics/skarmory/front.animated.2bpp.lz" -DewgongFrontpic: INCBIN "gfx/pics/dewgong/front.animated.2bpp.lz" -VictreebelFrontpic: INCBIN "gfx/pics/victreebel/front.animated.2bpp.lz" -RaichuFrontpic: INCBIN "gfx/pics/raichu/front.animated.2bpp.lz" -PrimeapeFrontpic: INCBIN "gfx/pics/primeape/front.animated.2bpp.lz" -OmastarBackpic: INCBIN "gfx/pics/omastar/back.2bpp.lz" +SteelixFrontpic: INCBIN "gfx/pokemon/steelix/front.animated.2bpp.lz" +AlakazamFrontpic: INCBIN "gfx/pokemon/alakazam/front.animated.2bpp.lz" +GyaradosFrontpic: INCBIN "gfx/pokemon/gyarados/front.animated.2bpp.lz" +KangaskhanFrontpic: INCBIN "gfx/pokemon/kangaskhan/front.animated.2bpp.lz" +RhydonFrontpic: INCBIN "gfx/pokemon/rhydon/front.animated.2bpp.lz" +GolduckFrontpic: INCBIN "gfx/pokemon/golduck/front.animated.2bpp.lz" +RhyhornFrontpic: INCBIN "gfx/pokemon/rhyhorn/front.animated.2bpp.lz" +PidgeotFrontpic: INCBIN "gfx/pokemon/pidgeot/front.animated.2bpp.lz" +SlowbroFrontpic: INCBIN "gfx/pokemon/slowbro/front.animated.2bpp.lz" +ButterfreeFrontpic: INCBIN "gfx/pokemon/butterfree/front.animated.2bpp.lz" +WeezingFrontpic: INCBIN "gfx/pokemon/weezing/front.animated.2bpp.lz" +CloysterFrontpic: INCBIN "gfx/pokemon/cloyster/front.animated.2bpp.lz" +SkarmoryFrontpic: INCBIN "gfx/pokemon/skarmory/front.animated.2bpp.lz" +DewgongFrontpic: INCBIN "gfx/pokemon/dewgong/front.animated.2bpp.lz" +VictreebelFrontpic: INCBIN "gfx/pokemon/victreebel/front.animated.2bpp.lz" +RaichuFrontpic: INCBIN "gfx/pokemon/raichu/front.animated.2bpp.lz" +PrimeapeFrontpic: INCBIN "gfx/pokemon/primeape/front.animated.2bpp.lz" +OmastarBackpic: INCBIN "gfx/pokemon/omastar/back.2bpp.lz" ; 12bffe SECTION "Pics 4", ROMX -DodrioFrontpic: INCBIN "gfx/pics/dodrio/front.animated.2bpp.lz" -SlowkingFrontpic: INCBIN "gfx/pics/slowking/front.animated.2bpp.lz" -HitmontopFrontpic: INCBIN "gfx/pics/hitmontop/front.animated.2bpp.lz" -OnixFrontpic: INCBIN "gfx/pics/onix/front.animated.2bpp.lz" -BlisseyFrontpic: INCBIN "gfx/pics/blissey/front.animated.2bpp.lz" -MachokeFrontpic: INCBIN "gfx/pics/machoke/front.animated.2bpp.lz" -DragoniteFrontpic: INCBIN "gfx/pics/dragonite/front.animated.2bpp.lz" -PoliwrathFrontpic: INCBIN "gfx/pics/poliwrath/front.animated.2bpp.lz" -ScytherFrontpic: INCBIN "gfx/pics/scyther/front.animated.2bpp.lz" -AerodactylFrontpic: INCBIN "gfx/pics/aerodactyl/front.animated.2bpp.lz" -SeakingFrontpic: INCBIN "gfx/pics/seaking/front.animated.2bpp.lz" -MukFrontpic: INCBIN "gfx/pics/muk/front.animated.2bpp.lz" -CroconawFrontpic: INCBIN "gfx/pics/croconaw/front.animated.2bpp.lz" -HypnoFrontpic: INCBIN "gfx/pics/hypno/front.animated.2bpp.lz" -NidorinoFrontpic: INCBIN "gfx/pics/nidorino/front.animated.2bpp.lz" -SandslashFrontpic: INCBIN "gfx/pics/sandslash/front.animated.2bpp.lz" -JolteonFrontpic: INCBIN "gfx/pics/jolteon/front.animated.2bpp.lz" -DonphanFrontpic: INCBIN "gfx/pics/donphan/front.animated.2bpp.lz" -PinsirFrontpic: INCBIN "gfx/pics/pinsir/front.animated.2bpp.lz" -UnownEFrontpic: INCBIN "gfx/pics/unown_e/front.animated.2bpp.lz" +DodrioFrontpic: INCBIN "gfx/pokemon/dodrio/front.animated.2bpp.lz" +SlowkingFrontpic: INCBIN "gfx/pokemon/slowking/front.animated.2bpp.lz" +HitmontopFrontpic: INCBIN "gfx/pokemon/hitmontop/front.animated.2bpp.lz" +OnixFrontpic: INCBIN "gfx/pokemon/onix/front.animated.2bpp.lz" +BlisseyFrontpic: INCBIN "gfx/pokemon/blissey/front.animated.2bpp.lz" +MachokeFrontpic: INCBIN "gfx/pokemon/machoke/front.animated.2bpp.lz" +DragoniteFrontpic: INCBIN "gfx/pokemon/dragonite/front.animated.2bpp.lz" +PoliwrathFrontpic: INCBIN "gfx/pokemon/poliwrath/front.animated.2bpp.lz" +ScytherFrontpic: INCBIN "gfx/pokemon/scyther/front.animated.2bpp.lz" +AerodactylFrontpic: INCBIN "gfx/pokemon/aerodactyl/front.animated.2bpp.lz" +SeakingFrontpic: INCBIN "gfx/pokemon/seaking/front.animated.2bpp.lz" +MukFrontpic: INCBIN "gfx/pokemon/muk/front.animated.2bpp.lz" +CroconawFrontpic: INCBIN "gfx/pokemon/croconaw/front.animated.2bpp.lz" +HypnoFrontpic: INCBIN "gfx/pokemon/hypno/front.animated.2bpp.lz" +NidorinoFrontpic: INCBIN "gfx/pokemon/nidorino/front.animated.2bpp.lz" +SandslashFrontpic: INCBIN "gfx/pokemon/sandslash/front.animated.2bpp.lz" +JolteonFrontpic: INCBIN "gfx/pokemon/jolteon/front.animated.2bpp.lz" +DonphanFrontpic: INCBIN "gfx/pokemon/donphan/front.animated.2bpp.lz" +PinsirFrontpic: INCBIN "gfx/pokemon/pinsir/front.animated.2bpp.lz" +UnownEFrontpic: INCBIN "gfx/pokemon/unown_e/front.animated.2bpp.lz" ; 130000 SECTION "Pics 5", ROMX -GolbatFrontpic: INCBIN "gfx/pics/golbat/front.animated.2bpp.lz" -KinglerFrontpic: INCBIN "gfx/pics/kingler/front.animated.2bpp.lz" -ExeggcuteFrontpic: INCBIN "gfx/pics/exeggcute/front.animated.2bpp.lz" -MagcargoFrontpic: INCBIN "gfx/pics/magcargo/front.animated.2bpp.lz" -PersianFrontpic: INCBIN "gfx/pics/persian/front.animated.2bpp.lz" -StantlerFrontpic: INCBIN "gfx/pics/stantler/front.animated.2bpp.lz" -RaticateFrontpic: INCBIN "gfx/pics/raticate/front.animated.2bpp.lz" -VenomothFrontpic: INCBIN "gfx/pics/venomoth/front.animated.2bpp.lz" -PolitoedFrontpic: INCBIN "gfx/pics/politoed/front.animated.2bpp.lz" -ElectabuzzFrontpic: INCBIN "gfx/pics/electabuzz/front.animated.2bpp.lz" -MantineFrontpic: INCBIN "gfx/pics/mantine/front.animated.2bpp.lz" -LickitungFrontpic: INCBIN "gfx/pics/lickitung/front.animated.2bpp.lz" -KingdraFrontpic: INCBIN "gfx/pics/kingdra/front.animated.2bpp.lz" -CharmeleonFrontpic: INCBIN "gfx/pics/charmeleon/front.animated.2bpp.lz" -KadabraFrontpic: INCBIN "gfx/pics/kadabra/front.animated.2bpp.lz" -ExeggutorFrontpic: INCBIN "gfx/pics/exeggutor/front.animated.2bpp.lz" -GastlyFrontpic: INCBIN "gfx/pics/gastly/front.animated.2bpp.lz" -AzumarillFrontpic: INCBIN "gfx/pics/azumarill/front.animated.2bpp.lz" -ParasectFrontpic: INCBIN "gfx/pics/parasect/front.animated.2bpp.lz" -MrMimeFrontpic: INCBIN "gfx/pics/mr__mime/front.animated.2bpp.lz" -HeracrossFrontpic: INCBIN "gfx/pics/heracross/front.animated.2bpp.lz" +GolbatFrontpic: INCBIN "gfx/pokemon/golbat/front.animated.2bpp.lz" +KinglerFrontpic: INCBIN "gfx/pokemon/kingler/front.animated.2bpp.lz" +ExeggcuteFrontpic: INCBIN "gfx/pokemon/exeggcute/front.animated.2bpp.lz" +MagcargoFrontpic: INCBIN "gfx/pokemon/magcargo/front.animated.2bpp.lz" +PersianFrontpic: INCBIN "gfx/pokemon/persian/front.animated.2bpp.lz" +StantlerFrontpic: INCBIN "gfx/pokemon/stantler/front.animated.2bpp.lz" +RaticateFrontpic: INCBIN "gfx/pokemon/raticate/front.animated.2bpp.lz" +VenomothFrontpic: INCBIN "gfx/pokemon/venomoth/front.animated.2bpp.lz" +PolitoedFrontpic: INCBIN "gfx/pokemon/politoed/front.animated.2bpp.lz" +ElectabuzzFrontpic: INCBIN "gfx/pokemon/electabuzz/front.animated.2bpp.lz" +MantineFrontpic: INCBIN "gfx/pokemon/mantine/front.animated.2bpp.lz" +LickitungFrontpic: INCBIN "gfx/pokemon/lickitung/front.animated.2bpp.lz" +KingdraFrontpic: INCBIN "gfx/pokemon/kingdra/front.animated.2bpp.lz" +CharmeleonFrontpic: INCBIN "gfx/pokemon/charmeleon/front.animated.2bpp.lz" +KadabraFrontpic: INCBIN "gfx/pokemon/kadabra/front.animated.2bpp.lz" +ExeggutorFrontpic: INCBIN "gfx/pokemon/exeggutor/front.animated.2bpp.lz" +GastlyFrontpic: INCBIN "gfx/pokemon/gastly/front.animated.2bpp.lz" +AzumarillFrontpic: INCBIN "gfx/pokemon/azumarill/front.animated.2bpp.lz" +ParasectFrontpic: INCBIN "gfx/pokemon/parasect/front.animated.2bpp.lz" +MrMimeFrontpic: INCBIN "gfx/pokemon/mr__mime/front.animated.2bpp.lz" +HeracrossFrontpic: INCBIN "gfx/pokemon/heracross/front.animated.2bpp.lz" ; 133fff SECTION "Pics 6", ROMX -AriadosFrontpic: INCBIN "gfx/pics/ariados/front.animated.2bpp.lz" -NoctowlFrontpic: INCBIN "gfx/pics/noctowl/front.animated.2bpp.lz" -WartortleFrontpic: INCBIN "gfx/pics/wartortle/front.animated.2bpp.lz" -LaprasFrontpic: INCBIN "gfx/pics/lapras/front.animated.2bpp.lz" -GolemFrontpic: INCBIN "gfx/pics/golem/front.animated.2bpp.lz" -PoliwhirlFrontpic: INCBIN "gfx/pics/poliwhirl/front.animated.2bpp.lz" -UrsaringFrontpic: INCBIN "gfx/pics/ursaring/front.animated.2bpp.lz" -HoundoomFrontpic: INCBIN "gfx/pics/houndoom/front.animated.2bpp.lz" -KabutopsFrontpic: INCBIN "gfx/pics/kabutops/front.animated.2bpp.lz" -AmpharosFrontpic: INCBIN "gfx/pics/ampharos/front.animated.2bpp.lz" -NidorinaFrontpic: INCBIN "gfx/pics/nidorina/front.animated.2bpp.lz" -FlareonFrontpic: INCBIN "gfx/pics/flareon/front.animated.2bpp.lz" -FarfetchDFrontpic: INCBIN "gfx/pics/farfetch_d/front.animated.2bpp.lz" -VileplumeFrontpic: INCBIN "gfx/pics/vileplume/front.animated.2bpp.lz" -BayleefFrontpic: INCBIN "gfx/pics/bayleef/front.animated.2bpp.lz" -MagmarFrontpic: INCBIN "gfx/pics/magmar/front.animated.2bpp.lz" -TentacruelFrontpic: INCBIN "gfx/pics/tentacruel/front.animated.2bpp.lz" -ElekidFrontpic: INCBIN "gfx/pics/elekid/front.animated.2bpp.lz" -JumpluffFrontpic: INCBIN "gfx/pics/jumpluff/front.animated.2bpp.lz" -MarowakFrontpic: INCBIN "gfx/pics/marowak/front.animated.2bpp.lz" -VulpixFrontpic: INCBIN "gfx/pics/vulpix/front.animated.2bpp.lz" -GligarFrontpic: INCBIN "gfx/pics/gligar/front.animated.2bpp.lz" -DunsparceFrontpic: INCBIN "gfx/pics/dunsparce/front.animated.2bpp.lz" +AriadosFrontpic: INCBIN "gfx/pokemon/ariados/front.animated.2bpp.lz" +NoctowlFrontpic: INCBIN "gfx/pokemon/noctowl/front.animated.2bpp.lz" +WartortleFrontpic: INCBIN "gfx/pokemon/wartortle/front.animated.2bpp.lz" +LaprasFrontpic: INCBIN "gfx/pokemon/lapras/front.animated.2bpp.lz" +GolemFrontpic: INCBIN "gfx/pokemon/golem/front.animated.2bpp.lz" +PoliwhirlFrontpic: INCBIN "gfx/pokemon/poliwhirl/front.animated.2bpp.lz" +UrsaringFrontpic: INCBIN "gfx/pokemon/ursaring/front.animated.2bpp.lz" +HoundoomFrontpic: INCBIN "gfx/pokemon/houndoom/front.animated.2bpp.lz" +KabutopsFrontpic: INCBIN "gfx/pokemon/kabutops/front.animated.2bpp.lz" +AmpharosFrontpic: INCBIN "gfx/pokemon/ampharos/front.animated.2bpp.lz" +NidorinaFrontpic: INCBIN "gfx/pokemon/nidorina/front.animated.2bpp.lz" +FlareonFrontpic: INCBIN "gfx/pokemon/flareon/front.animated.2bpp.lz" +FarfetchDFrontpic: INCBIN "gfx/pokemon/farfetch_d/front.animated.2bpp.lz" +VileplumeFrontpic: INCBIN "gfx/pokemon/vileplume/front.animated.2bpp.lz" +BayleefFrontpic: INCBIN "gfx/pokemon/bayleef/front.animated.2bpp.lz" +MagmarFrontpic: INCBIN "gfx/pokemon/magmar/front.animated.2bpp.lz" +TentacruelFrontpic: INCBIN "gfx/pokemon/tentacruel/front.animated.2bpp.lz" +ElekidFrontpic: INCBIN "gfx/pokemon/elekid/front.animated.2bpp.lz" +JumpluffFrontpic: INCBIN "gfx/pokemon/jumpluff/front.animated.2bpp.lz" +MarowakFrontpic: INCBIN "gfx/pokemon/marowak/front.animated.2bpp.lz" +VulpixFrontpic: INCBIN "gfx/pokemon/vulpix/front.animated.2bpp.lz" +GligarFrontpic: INCBIN "gfx/pokemon/gligar/front.animated.2bpp.lz" +DunsparceFrontpic: INCBIN "gfx/pokemon/dunsparce/front.animated.2bpp.lz" ; 137fff SECTION "Pics 7", ROMX -VaporeonFrontpic: INCBIN "gfx/pics/vaporeon/front.animated.2bpp.lz" -GirafarigFrontpic: INCBIN "gfx/pics/girafarig/front.animated.2bpp.lz" -DrowzeeFrontpic: INCBIN "gfx/pics/drowzee/front.animated.2bpp.lz" -SneaselFrontpic: INCBIN "gfx/pics/sneasel/front.animated.2bpp.lz" -BellossomFrontpic: INCBIN "gfx/pics/bellossom/front.animated.2bpp.lz" -SnorlaxFrontpic: INCBIN "gfx/pics/snorlax/front.animated.2bpp.lz" -WigglytuffFrontpic: INCBIN "gfx/pics/wigglytuff/front.animated.2bpp.lz" -YanmaFrontpic: INCBIN "gfx/pics/yanma/front.animated.2bpp.lz" -SmeargleFrontpic: INCBIN "gfx/pics/smeargle/front.animated.2bpp.lz" -ClefableFrontpic: INCBIN "gfx/pics/clefable/front.animated.2bpp.lz" -PonytaFrontpic: INCBIN "gfx/pics/ponyta/front.animated.2bpp.lz" -MurkrowFrontpic: INCBIN "gfx/pics/murkrow/front.animated.2bpp.lz" -GravelerFrontpic: INCBIN "gfx/pics/graveler/front.animated.2bpp.lz" -StarmieFrontpic: INCBIN "gfx/pics/starmie/front.animated.2bpp.lz" -PidgeottoFrontpic: INCBIN "gfx/pics/pidgeotto/front.animated.2bpp.lz" -LedybaFrontpic: INCBIN "gfx/pics/ledyba/front.animated.2bpp.lz" -GengarFrontpic: INCBIN "gfx/pics/gengar/front.animated.2bpp.lz" -OmastarFrontpic: INCBIN "gfx/pics/omastar/front.animated.2bpp.lz" -PiloswineFrontpic: INCBIN "gfx/pics/piloswine/front.animated.2bpp.lz" -DugtrioFrontpic: INCBIN "gfx/pics/dugtrio/front.animated.2bpp.lz" -MagnetonFrontpic: INCBIN "gfx/pics/magneton/front.animated.2bpp.lz" -DragonairFrontpic: INCBIN "gfx/pics/dragonair/front.animated.2bpp.lz" -ForretressFrontpic: INCBIN "gfx/pics/forretress/front.animated.2bpp.lz" -TogeticFrontpic: INCBIN "gfx/pics/togetic/front.animated.2bpp.lz" -KangaskhanBackpic: INCBIN "gfx/pics/kangaskhan/back.2bpp.lz" +VaporeonFrontpic: INCBIN "gfx/pokemon/vaporeon/front.animated.2bpp.lz" +GirafarigFrontpic: INCBIN "gfx/pokemon/girafarig/front.animated.2bpp.lz" +DrowzeeFrontpic: INCBIN "gfx/pokemon/drowzee/front.animated.2bpp.lz" +SneaselFrontpic: INCBIN "gfx/pokemon/sneasel/front.animated.2bpp.lz" +BellossomFrontpic: INCBIN "gfx/pokemon/bellossom/front.animated.2bpp.lz" +SnorlaxFrontpic: INCBIN "gfx/pokemon/snorlax/front.animated.2bpp.lz" +WigglytuffFrontpic: INCBIN "gfx/pokemon/wigglytuff/front.animated.2bpp.lz" +YanmaFrontpic: INCBIN "gfx/pokemon/yanma/front.animated.2bpp.lz" +SmeargleFrontpic: INCBIN "gfx/pokemon/smeargle/front.animated.2bpp.lz" +ClefableFrontpic: INCBIN "gfx/pokemon/clefable/front.animated.2bpp.lz" +PonytaFrontpic: INCBIN "gfx/pokemon/ponyta/front.animated.2bpp.lz" +MurkrowFrontpic: INCBIN "gfx/pokemon/murkrow/front.animated.2bpp.lz" +GravelerFrontpic: INCBIN "gfx/pokemon/graveler/front.animated.2bpp.lz" +StarmieFrontpic: INCBIN "gfx/pokemon/starmie/front.animated.2bpp.lz" +PidgeottoFrontpic: INCBIN "gfx/pokemon/pidgeotto/front.animated.2bpp.lz" +LedybaFrontpic: INCBIN "gfx/pokemon/ledyba/front.animated.2bpp.lz" +GengarFrontpic: INCBIN "gfx/pokemon/gengar/front.animated.2bpp.lz" +OmastarFrontpic: INCBIN "gfx/pokemon/omastar/front.animated.2bpp.lz" +PiloswineFrontpic: INCBIN "gfx/pokemon/piloswine/front.animated.2bpp.lz" +DugtrioFrontpic: INCBIN "gfx/pokemon/dugtrio/front.animated.2bpp.lz" +MagnetonFrontpic: INCBIN "gfx/pokemon/magneton/front.animated.2bpp.lz" +DragonairFrontpic: INCBIN "gfx/pokemon/dragonair/front.animated.2bpp.lz" +ForretressFrontpic: INCBIN "gfx/pokemon/forretress/front.animated.2bpp.lz" +TogeticFrontpic: INCBIN "gfx/pokemon/togetic/front.animated.2bpp.lz" +KangaskhanBackpic: INCBIN "gfx/pokemon/kangaskhan/back.2bpp.lz" ; 13c000 SECTION "Pics 8", ROMX -SeelFrontpic: INCBIN "gfx/pics/seel/front.animated.2bpp.lz" -CrobatFrontpic: INCBIN "gfx/pics/crobat/front.animated.2bpp.lz" -ChanseyFrontpic: INCBIN "gfx/pics/chansey/front.animated.2bpp.lz" -TangelaFrontpic: INCBIN "gfx/pics/tangela/front.animated.2bpp.lz" -SnubbullFrontpic: INCBIN "gfx/pics/snubbull/front.animated.2bpp.lz" -GranbullFrontpic: INCBIN "gfx/pics/granbull/front.animated.2bpp.lz" -MiltankFrontpic: INCBIN "gfx/pics/miltank/front.animated.2bpp.lz" -HaunterFrontpic: INCBIN "gfx/pics/haunter/front.animated.2bpp.lz" -SunfloraFrontpic: INCBIN "gfx/pics/sunflora/front.animated.2bpp.lz" -UmbreonFrontpic: INCBIN "gfx/pics/umbreon/front.animated.2bpp.lz" -ChikoritaFrontpic: INCBIN "gfx/pics/chikorita/front.animated.2bpp.lz" -GoldeenFrontpic: INCBIN "gfx/pics/goldeen/front.animated.2bpp.lz" -EspeonFrontpic: INCBIN "gfx/pics/espeon/front.animated.2bpp.lz" -XatuFrontpic: INCBIN "gfx/pics/xatu/front.animated.2bpp.lz" -MewFrontpic: INCBIN "gfx/pics/mew/front.animated.2bpp.lz" -OctilleryFrontpic: INCBIN "gfx/pics/octillery/front.animated.2bpp.lz" -JynxFrontpic: INCBIN "gfx/pics/jynx/front.animated.2bpp.lz" -WobbuffetFrontpic: INCBIN "gfx/pics/wobbuffet/front.animated.2bpp.lz" -DelibirdFrontpic: INCBIN "gfx/pics/delibird/front.animated.2bpp.lz" -LedianFrontpic: INCBIN "gfx/pics/ledian/front.animated.2bpp.lz" -GloomFrontpic: INCBIN "gfx/pics/gloom/front.animated.2bpp.lz" -FlaaffyFrontpic: INCBIN "gfx/pics/flaaffy/front.animated.2bpp.lz" -IvysaurFrontpic: INCBIN "gfx/pics/ivysaur/front.animated.2bpp.lz" -FurretFrontpic: INCBIN "gfx/pics/furret/front.animated.2bpp.lz" -CyndaquilFrontpic: INCBIN "gfx/pics/cyndaquil/front.animated.2bpp.lz" -HitmonchanFrontpic: INCBIN "gfx/pics/hitmonchan/front.animated.2bpp.lz" -QuagsireFrontpic: INCBIN "gfx/pics/quagsire/front.animated.2bpp.lz" +SeelFrontpic: INCBIN "gfx/pokemon/seel/front.animated.2bpp.lz" +CrobatFrontpic: INCBIN "gfx/pokemon/crobat/front.animated.2bpp.lz" +ChanseyFrontpic: INCBIN "gfx/pokemon/chansey/front.animated.2bpp.lz" +TangelaFrontpic: INCBIN "gfx/pokemon/tangela/front.animated.2bpp.lz" +SnubbullFrontpic: INCBIN "gfx/pokemon/snubbull/front.animated.2bpp.lz" +GranbullFrontpic: INCBIN "gfx/pokemon/granbull/front.animated.2bpp.lz" +MiltankFrontpic: INCBIN "gfx/pokemon/miltank/front.animated.2bpp.lz" +HaunterFrontpic: INCBIN "gfx/pokemon/haunter/front.animated.2bpp.lz" +SunfloraFrontpic: INCBIN "gfx/pokemon/sunflora/front.animated.2bpp.lz" +UmbreonFrontpic: INCBIN "gfx/pokemon/umbreon/front.animated.2bpp.lz" +ChikoritaFrontpic: INCBIN "gfx/pokemon/chikorita/front.animated.2bpp.lz" +GoldeenFrontpic: INCBIN "gfx/pokemon/goldeen/front.animated.2bpp.lz" +EspeonFrontpic: INCBIN "gfx/pokemon/espeon/front.animated.2bpp.lz" +XatuFrontpic: INCBIN "gfx/pokemon/xatu/front.animated.2bpp.lz" +MewFrontpic: INCBIN "gfx/pokemon/mew/front.animated.2bpp.lz" +OctilleryFrontpic: INCBIN "gfx/pokemon/octillery/front.animated.2bpp.lz" +JynxFrontpic: INCBIN "gfx/pokemon/jynx/front.animated.2bpp.lz" +WobbuffetFrontpic: INCBIN "gfx/pokemon/wobbuffet/front.animated.2bpp.lz" +DelibirdFrontpic: INCBIN "gfx/pokemon/delibird/front.animated.2bpp.lz" +LedianFrontpic: INCBIN "gfx/pokemon/ledian/front.animated.2bpp.lz" +GloomFrontpic: INCBIN "gfx/pokemon/gloom/front.animated.2bpp.lz" +FlaaffyFrontpic: INCBIN "gfx/pokemon/flaaffy/front.animated.2bpp.lz" +IvysaurFrontpic: INCBIN "gfx/pokemon/ivysaur/front.animated.2bpp.lz" +FurretFrontpic: INCBIN "gfx/pokemon/furret/front.animated.2bpp.lz" +CyndaquilFrontpic: INCBIN "gfx/pokemon/cyndaquil/front.animated.2bpp.lz" +HitmonchanFrontpic: INCBIN "gfx/pokemon/hitmonchan/front.animated.2bpp.lz" +QuagsireFrontpic: INCBIN "gfx/pokemon/quagsire/front.animated.2bpp.lz" ; 13fff7 SECTION "Pics 9", ROMX -EkansFrontpic: INCBIN "gfx/pics/ekans/front.animated.2bpp.lz" -SudowoodoFrontpic: INCBIN "gfx/pics/sudowoodo/front.animated.2bpp.lz" -PikachuFrontpic: INCBIN "gfx/pics/pikachu/front.animated.2bpp.lz" -SeadraFrontpic: INCBIN "gfx/pics/seadra/front.animated.2bpp.lz" -MagbyFrontpic: INCBIN "gfx/pics/magby/front.animated.2bpp.lz" -WeepinbellFrontpic: INCBIN "gfx/pics/weepinbell/front.animated.2bpp.lz" -TotodileFrontpic: INCBIN "gfx/pics/totodile/front.animated.2bpp.lz" -CorsolaFrontpic: INCBIN "gfx/pics/corsola/front.animated.2bpp.lz" +EkansFrontpic: INCBIN "gfx/pokemon/ekans/front.animated.2bpp.lz" +SudowoodoFrontpic: INCBIN "gfx/pokemon/sudowoodo/front.animated.2bpp.lz" +PikachuFrontpic: INCBIN "gfx/pokemon/pikachu/front.animated.2bpp.lz" +SeadraFrontpic: INCBIN "gfx/pokemon/seadra/front.animated.2bpp.lz" +MagbyFrontpic: INCBIN "gfx/pokemon/magby/front.animated.2bpp.lz" +WeepinbellFrontpic: INCBIN "gfx/pokemon/weepinbell/front.animated.2bpp.lz" +TotodileFrontpic: INCBIN "gfx/pokemon/totodile/front.animated.2bpp.lz" +CorsolaFrontpic: INCBIN "gfx/pokemon/corsola/front.animated.2bpp.lz" FirebreatherPic: INCBIN "gfx/trainers/firebreather.2bpp.lz" -MachopFrontpic: INCBIN "gfx/pics/machop/front.animated.2bpp.lz" -ChinchouFrontpic: INCBIN "gfx/pics/chinchou/front.animated.2bpp.lz" -RattataFrontpic: INCBIN "gfx/pics/rattata/front.animated.2bpp.lz" +MachopFrontpic: INCBIN "gfx/pokemon/machop/front.animated.2bpp.lz" +ChinchouFrontpic: INCBIN "gfx/pokemon/chinchou/front.animated.2bpp.lz" +RattataFrontpic: INCBIN "gfx/pokemon/rattata/front.animated.2bpp.lz" ChampionPic: INCBIN "gfx/trainers/champion.2bpp.lz" -SpearowFrontpic: INCBIN "gfx/pics/spearow/front.animated.2bpp.lz" -MagikarpFrontpic: INCBIN "gfx/pics/magikarp/front.animated.2bpp.lz" -CharmanderFrontpic: INCBIN "gfx/pics/charmander/front.animated.2bpp.lz" -CuboneFrontpic: INCBIN "gfx/pics/cubone/front.animated.2bpp.lz" +SpearowFrontpic: INCBIN "gfx/pokemon/spearow/front.animated.2bpp.lz" +MagikarpFrontpic: INCBIN "gfx/pokemon/magikarp/front.animated.2bpp.lz" +CharmanderFrontpic: INCBIN "gfx/pokemon/charmander/front.animated.2bpp.lz" +CuboneFrontpic: INCBIN "gfx/pokemon/cubone/front.animated.2bpp.lz" BlackbeltTPic: INCBIN "gfx/trainers/blackbelt_t.2bpp.lz" BikerPic: INCBIN "gfx/trainers/biker.2bpp.lz" -NidoranMFrontpic: INCBIN "gfx/pics/nidoran_m/front.animated.2bpp.lz" -PorygonFrontpic: INCBIN "gfx/pics/porygon/front.animated.2bpp.lz" +NidoranMFrontpic: INCBIN "gfx/pokemon/nidoran_m/front.animated.2bpp.lz" +PorygonFrontpic: INCBIN "gfx/pokemon/porygon/front.animated.2bpp.lz" BrunoPic: INCBIN "gfx/trainers/bruno.2bpp.lz" -GrimerFrontpic: INCBIN "gfx/pics/grimer/front.animated.2bpp.lz" -StaryuFrontpic: INCBIN "gfx/pics/staryu/front.animated.2bpp.lz" +GrimerFrontpic: INCBIN "gfx/pokemon/grimer/front.animated.2bpp.lz" +StaryuFrontpic: INCBIN "gfx/pokemon/staryu/front.animated.2bpp.lz" HikerPic: INCBIN "gfx/trainers/hiker.2bpp.lz" -MeowthFrontpic: INCBIN "gfx/pics/meowth/front.animated.2bpp.lz" -Porygon2Frontpic: INCBIN "gfx/pics/porygon2/front.animated.2bpp.lz" -SandshrewFrontpic: INCBIN "gfx/pics/sandshrew/front.animated.2bpp.lz" -NidoranFFrontpic: INCBIN "gfx/pics/nidoran_f/front.animated.2bpp.lz" -PidgeyFrontpic: INCBIN "gfx/pics/pidgey/front.animated.2bpp.lz" -ParasectBackpic: INCBIN "gfx/pics/parasect/back.2bpp.lz" +MeowthFrontpic: INCBIN "gfx/pokemon/meowth/front.animated.2bpp.lz" +Porygon2Frontpic: INCBIN "gfx/pokemon/porygon2/front.animated.2bpp.lz" +SandshrewFrontpic: INCBIN "gfx/pokemon/sandshrew/front.animated.2bpp.lz" +NidoranFFrontpic: INCBIN "gfx/pokemon/nidoran_f/front.animated.2bpp.lz" +PidgeyFrontpic: INCBIN "gfx/pokemon/pidgey/front.animated.2bpp.lz" +ParasectBackpic: INCBIN "gfx/pokemon/parasect/back.2bpp.lz" ; 144000 SECTION "Pics 10", ROMX -MisdreavusFrontpic: INCBIN "gfx/pics/misdreavus/front.animated.2bpp.lz" -HoundourFrontpic: INCBIN "gfx/pics/houndour/front.animated.2bpp.lz" -MankeyFrontpic: INCBIN "gfx/pics/mankey/front.animated.2bpp.lz" -CelebiFrontpic: INCBIN "gfx/pics/celebi/front.animated.2bpp.lz" +MisdreavusFrontpic: INCBIN "gfx/pokemon/misdreavus/front.animated.2bpp.lz" +HoundourFrontpic: INCBIN "gfx/pokemon/houndour/front.animated.2bpp.lz" +MankeyFrontpic: INCBIN "gfx/pokemon/mankey/front.animated.2bpp.lz" +CelebiFrontpic: INCBIN "gfx/pokemon/celebi/front.animated.2bpp.lz" MediumPic: INCBIN "gfx/trainers/medium.2bpp.lz" -PinecoFrontpic: INCBIN "gfx/pics/pineco/front.animated.2bpp.lz" -KrabbyFrontpic: INCBIN "gfx/pics/krabby/front.animated.2bpp.lz" +PinecoFrontpic: INCBIN "gfx/pokemon/pineco/front.animated.2bpp.lz" +KrabbyFrontpic: INCBIN "gfx/pokemon/krabby/front.animated.2bpp.lz" FisherPic: INCBIN "gfx/trainers/fisher.2bpp.lz" -JigglypuffFrontpic: INCBIN "gfx/pics/jigglypuff/front.animated.2bpp.lz" -ParasFrontpic: INCBIN "gfx/pics/paras/front.animated.2bpp.lz" -NidokingBackpic: INCBIN "gfx/pics/nidoking/back.2bpp.lz" +JigglypuffFrontpic: INCBIN "gfx/pokemon/jigglypuff/front.animated.2bpp.lz" +ParasFrontpic: INCBIN "gfx/pokemon/paras/front.animated.2bpp.lz" +NidokingBackpic: INCBIN "gfx/pokemon/nidoking/back.2bpp.lz" PokefanmPic: INCBIN "gfx/trainers/pokefan_m.2bpp.lz" BoarderPic: INCBIN "gfx/trainers/boarder.2bpp.lz" -PsyduckFrontpic: INCBIN "gfx/pics/psyduck/front.animated.2bpp.lz" -SquirtleFrontpic: INCBIN "gfx/pics/squirtle/front.animated.2bpp.lz" -MachampBackpic: INCBIN "gfx/pics/machamp/back.2bpp.lz" -KoffingFrontpic: INCBIN "gfx/pics/koffing/front.animated.2bpp.lz" -VenonatFrontpic: INCBIN "gfx/pics/venonat/front.animated.2bpp.lz" -ExeggutorBackpic: INCBIN "gfx/pics/exeggutor/back.2bpp.lz" -LanturnFrontpic: INCBIN "gfx/pics/lanturn/front.animated.2bpp.lz" -TyrogueFrontpic: INCBIN "gfx/pics/tyrogue/front.animated.2bpp.lz" -SkiploomFrontpic: INCBIN "gfx/pics/skiploom/front.animated.2bpp.lz" -MareepFrontpic: INCBIN "gfx/pics/mareep/front.animated.2bpp.lz" +PsyduckFrontpic: INCBIN "gfx/pokemon/psyduck/front.animated.2bpp.lz" +SquirtleFrontpic: INCBIN "gfx/pokemon/squirtle/front.animated.2bpp.lz" +MachampBackpic: INCBIN "gfx/pokemon/machamp/back.2bpp.lz" +KoffingFrontpic: INCBIN "gfx/pokemon/koffing/front.animated.2bpp.lz" +VenonatFrontpic: INCBIN "gfx/pokemon/venonat/front.animated.2bpp.lz" +ExeggutorBackpic: INCBIN "gfx/pokemon/exeggutor/back.2bpp.lz" +LanturnFrontpic: INCBIN "gfx/pokemon/lanturn/front.animated.2bpp.lz" +TyrogueFrontpic: INCBIN "gfx/pokemon/tyrogue/front.animated.2bpp.lz" +SkiploomFrontpic: INCBIN "gfx/pokemon/skiploom/front.animated.2bpp.lz" +MareepFrontpic: INCBIN "gfx/pokemon/mareep/front.animated.2bpp.lz" ChuckPic: INCBIN "gfx/trainers/chuck.2bpp.lz" -EeveeFrontpic: INCBIN "gfx/pics/eevee/front.animated.2bpp.lz" -ButterfreeBackpic: INCBIN "gfx/pics/butterfree/back.2bpp.lz" -ZubatFrontpic: INCBIN "gfx/pics/zubat/front.animated.2bpp.lz" +EeveeFrontpic: INCBIN "gfx/pokemon/eevee/front.animated.2bpp.lz" +ButterfreeBackpic: INCBIN "gfx/pokemon/butterfree/back.2bpp.lz" +ZubatFrontpic: INCBIN "gfx/pokemon/zubat/front.animated.2bpp.lz" KimonoGirlPic: INCBIN "gfx/trainers/kimono_girl.2bpp.lz" -AlakazamBackpic: INCBIN "gfx/pics/alakazam/back.2bpp.lz" -AipomFrontpic: INCBIN "gfx/pics/aipom/front.animated.2bpp.lz" -AbraFrontpic: INCBIN "gfx/pics/abra/front.animated.2bpp.lz" -HitmontopBackpic: INCBIN "gfx/pics/hitmontop/back.2bpp.lz" -CloysterBackpic: INCBIN "gfx/pics/cloyster/back.2bpp.lz" -HoothootFrontpic: INCBIN "gfx/pics/hoothoot/front.animated.2bpp.lz" -UnownFBackpic: INCBIN "gfx/pics/unown_f/back.2bpp.lz" +AlakazamBackpic: INCBIN "gfx/pokemon/alakazam/back.2bpp.lz" +AipomFrontpic: INCBIN "gfx/pokemon/aipom/front.animated.2bpp.lz" +AbraFrontpic: INCBIN "gfx/pokemon/abra/front.animated.2bpp.lz" +HitmontopBackpic: INCBIN "gfx/pokemon/hitmontop/back.2bpp.lz" +CloysterBackpic: INCBIN "gfx/pokemon/cloyster/back.2bpp.lz" +HoothootFrontpic: INCBIN "gfx/pokemon/hoothoot/front.animated.2bpp.lz" +UnownFBackpic: INCBIN "gfx/pokemon/unown_f/back.2bpp.lz" ; 148000 SECTION "Pics 11", ROMX -DodrioBackpic: INCBIN "gfx/pics/dodrio/back.2bpp.lz" -ClefairyFrontpic: INCBIN "gfx/pics/clefairy/front.animated.2bpp.lz" -SlugmaFrontpic: INCBIN "gfx/pics/slugma/front.animated.2bpp.lz" -GrowlitheFrontpic: INCBIN "gfx/pics/growlithe/front.animated.2bpp.lz" -SlowpokeFrontpic: INCBIN "gfx/pics/slowpoke/front.animated.2bpp.lz" -SmoochumFrontpic: INCBIN "gfx/pics/smoochum/front.animated.2bpp.lz" +DodrioBackpic: INCBIN "gfx/pokemon/dodrio/back.2bpp.lz" +ClefairyFrontpic: INCBIN "gfx/pokemon/clefairy/front.animated.2bpp.lz" +SlugmaFrontpic: INCBIN "gfx/pokemon/slugma/front.animated.2bpp.lz" +GrowlitheFrontpic: INCBIN "gfx/pokemon/growlithe/front.animated.2bpp.lz" +SlowpokeFrontpic: INCBIN "gfx/pokemon/slowpoke/front.animated.2bpp.lz" +SmoochumFrontpic: INCBIN "gfx/pokemon/smoochum/front.animated.2bpp.lz" JugglerPic: INCBIN "gfx/trainers/juggler.2bpp.lz" -MarillFrontpic: INCBIN "gfx/pics/marill/front.animated.2bpp.lz" +MarillFrontpic: INCBIN "gfx/pokemon/marill/front.animated.2bpp.lz" GuitaristPic: INCBIN "gfx/trainers/guitarist.2bpp.lz" PokefanfPic: INCBIN "gfx/trainers/pokefan_f.2bpp.lz" -VenomothBackpic: INCBIN "gfx/pics/venomoth/back.2bpp.lz" +VenomothBackpic: INCBIN "gfx/pokemon/venomoth/back.2bpp.lz" ClairPic: INCBIN "gfx/trainers/clair.2bpp.lz" PokemaniacPic: INCBIN "gfx/trainers/pokemaniac.2bpp.lz" -OmanyteFrontpic: INCBIN "gfx/pics/omanyte/front.animated.2bpp.lz" +OmanyteFrontpic: INCBIN "gfx/pokemon/omanyte/front.animated.2bpp.lz" SkierPic: INCBIN "gfx/trainers/skier.2bpp.lz" -PupitarFrontpic: INCBIN "gfx/pics/pupitar/front.animated.2bpp.lz" -BellsproutFrontpic: INCBIN "gfx/pics/bellsprout/front.animated.2bpp.lz" -ShellderFrontpic: INCBIN "gfx/pics/shellder/front.animated.2bpp.lz" -TentacoolFrontpic: INCBIN "gfx/pics/tentacool/front.animated.2bpp.lz" -CleffaFrontpic: INCBIN "gfx/pics/cleffa/front.animated.2bpp.lz" -GyaradosBackpic: INCBIN "gfx/pics/gyarados/back.2bpp.lz" -NinetalesBackpic: INCBIN "gfx/pics/ninetales/back.2bpp.lz" -YanmaBackpic: INCBIN "gfx/pics/yanma/back.2bpp.lz" -PinsirBackpic: INCBIN "gfx/pics/pinsir/back.2bpp.lz" +PupitarFrontpic: INCBIN "gfx/pokemon/pupitar/front.animated.2bpp.lz" +BellsproutFrontpic: INCBIN "gfx/pokemon/bellsprout/front.animated.2bpp.lz" +ShellderFrontpic: INCBIN "gfx/pokemon/shellder/front.animated.2bpp.lz" +TentacoolFrontpic: INCBIN "gfx/pokemon/tentacool/front.animated.2bpp.lz" +CleffaFrontpic: INCBIN "gfx/pokemon/cleffa/front.animated.2bpp.lz" +GyaradosBackpic: INCBIN "gfx/pokemon/gyarados/back.2bpp.lz" +NinetalesBackpic: INCBIN "gfx/pokemon/ninetales/back.2bpp.lz" +YanmaBackpic: INCBIN "gfx/pokemon/yanma/back.2bpp.lz" +PinsirBackpic: INCBIN "gfx/pokemon/pinsir/back.2bpp.lz" LassPic: INCBIN "gfx/trainers/lass.2bpp.lz" -ClefableBackpic: INCBIN "gfx/pics/clefable/back.2bpp.lz" -DoduoFrontpic: INCBIN "gfx/pics/doduo/front.animated.2bpp.lz" -FeraligatrBackpic: INCBIN "gfx/pics/feraligatr/back.2bpp.lz" -DratiniFrontpic: INCBIN "gfx/pics/dratini/front.animated.2bpp.lz" -MagnetonBackpic: INCBIN "gfx/pics/magneton/back.2bpp.lz" -QwilfishFrontpic: INCBIN "gfx/pics/qwilfish/front.animated.2bpp.lz" -SuicuneBackpic: INCBIN "gfx/pics/suicune/back.2bpp.lz" -SlowkingBackpic: INCBIN "gfx/pics/slowking/back.2bpp.lz" -ElekidBackpic: INCBIN "gfx/pics/elekid/back.2bpp.lz" -CelebiBackpic: INCBIN "gfx/pics/celebi/back.2bpp.lz" -KrabbyBackpic: INCBIN "gfx/pics/krabby/back.2bpp.lz" +ClefableBackpic: INCBIN "gfx/pokemon/clefable/back.2bpp.lz" +DoduoFrontpic: INCBIN "gfx/pokemon/doduo/front.animated.2bpp.lz" +FeraligatrBackpic: INCBIN "gfx/pokemon/feraligatr/back.2bpp.lz" +DratiniFrontpic: INCBIN "gfx/pokemon/dratini/front.animated.2bpp.lz" +MagnetonBackpic: INCBIN "gfx/pokemon/magneton/back.2bpp.lz" +QwilfishFrontpic: INCBIN "gfx/pokemon/qwilfish/front.animated.2bpp.lz" +SuicuneBackpic: INCBIN "gfx/pokemon/suicune/back.2bpp.lz" +SlowkingBackpic: INCBIN "gfx/pokemon/slowking/back.2bpp.lz" +ElekidBackpic: INCBIN "gfx/pokemon/elekid/back.2bpp.lz" +CelebiBackpic: INCBIN "gfx/pokemon/celebi/back.2bpp.lz" +KrabbyBackpic: INCBIN "gfx/pokemon/krabby/back.2bpp.lz" BugCatcherPic: INCBIN "gfx/trainers/bug_catcher.2bpp.lz" -SnorlaxBackpic: INCBIN "gfx/pics/snorlax/back.2bpp.lz" +SnorlaxBackpic: INCBIN "gfx/pokemon/snorlax/back.2bpp.lz" ; 14bffb SECTION "Pics 12", ROMX -VenusaurBackpic: INCBIN "gfx/pics/venusaur/back.2bpp.lz" -MoltresBackpic: INCBIN "gfx/pics/moltres/back.2bpp.lz" -SunfloraBackpic: INCBIN "gfx/pics/sunflora/back.2bpp.lz" -PhanpyFrontpic: INCBIN "gfx/pics/phanpy/front.animated.2bpp.lz" -RhydonBackpic: INCBIN "gfx/pics/rhydon/back.2bpp.lz" -LarvitarFrontpic: INCBIN "gfx/pics/larvitar/front.animated.2bpp.lz" -TyranitarBackpic: INCBIN "gfx/pics/tyranitar/back.2bpp.lz" -SandslashBackpic: INCBIN "gfx/pics/sandslash/back.2bpp.lz" -SeadraBackpic: INCBIN "gfx/pics/seadra/back.2bpp.lz" +VenusaurBackpic: INCBIN "gfx/pokemon/venusaur/back.2bpp.lz" +MoltresBackpic: INCBIN "gfx/pokemon/moltres/back.2bpp.lz" +SunfloraBackpic: INCBIN "gfx/pokemon/sunflora/back.2bpp.lz" +PhanpyFrontpic: INCBIN "gfx/pokemon/phanpy/front.animated.2bpp.lz" +RhydonBackpic: INCBIN "gfx/pokemon/rhydon/back.2bpp.lz" +LarvitarFrontpic: INCBIN "gfx/pokemon/larvitar/front.animated.2bpp.lz" +TyranitarBackpic: INCBIN "gfx/pokemon/tyranitar/back.2bpp.lz" +SandslashBackpic: INCBIN "gfx/pokemon/sandslash/back.2bpp.lz" +SeadraBackpic: INCBIN "gfx/pokemon/seadra/back.2bpp.lz" TwinsPic: INCBIN "gfx/trainers/twins.2bpp.lz" -FarfetchDBackpic: INCBIN "gfx/pics/farfetch_d/back.2bpp.lz" -NidoranMBackpic: INCBIN "gfx/pics/nidoran_m/back.2bpp.lz" -LedybaBackpic: INCBIN "gfx/pics/ledyba/back.2bpp.lz" -CyndaquilBackpic: INCBIN "gfx/pics/cyndaquil/back.2bpp.lz" -BayleefBackpic: INCBIN "gfx/pics/bayleef/back.2bpp.lz" -OddishFrontpic: INCBIN "gfx/pics/oddish/front.animated.2bpp.lz" -RapidashBackpic: INCBIN "gfx/pics/rapidash/back.2bpp.lz" -DoduoBackpic: INCBIN "gfx/pics/doduo/back.2bpp.lz" -HoppipFrontpic: INCBIN "gfx/pics/hoppip/front.animated.2bpp.lz" -MankeyBackpic: INCBIN "gfx/pics/mankey/back.2bpp.lz" -MagmarBackpic: INCBIN "gfx/pics/magmar/back.2bpp.lz" -HypnoBackpic: INCBIN "gfx/pics/hypno/back.2bpp.lz" -QuilavaBackpic: INCBIN "gfx/pics/quilava/back.2bpp.lz" -CroconawBackpic: INCBIN "gfx/pics/croconaw/back.2bpp.lz" -SandshrewBackpic: INCBIN "gfx/pics/sandshrew/back.2bpp.lz" +FarfetchDBackpic: INCBIN "gfx/pokemon/farfetch_d/back.2bpp.lz" +NidoranMBackpic: INCBIN "gfx/pokemon/nidoran_m/back.2bpp.lz" +LedybaBackpic: INCBIN "gfx/pokemon/ledyba/back.2bpp.lz" +CyndaquilBackpic: INCBIN "gfx/pokemon/cyndaquil/back.2bpp.lz" +BayleefBackpic: INCBIN "gfx/pokemon/bayleef/back.2bpp.lz" +OddishFrontpic: INCBIN "gfx/pokemon/oddish/front.animated.2bpp.lz" +RapidashBackpic: INCBIN "gfx/pokemon/rapidash/back.2bpp.lz" +DoduoBackpic: INCBIN "gfx/pokemon/doduo/back.2bpp.lz" +HoppipFrontpic: INCBIN "gfx/pokemon/hoppip/front.animated.2bpp.lz" +MankeyBackpic: INCBIN "gfx/pokemon/mankey/back.2bpp.lz" +MagmarBackpic: INCBIN "gfx/pokemon/magmar/back.2bpp.lz" +HypnoBackpic: INCBIN "gfx/pokemon/hypno/back.2bpp.lz" +QuilavaBackpic: INCBIN "gfx/pokemon/quilava/back.2bpp.lz" +CroconawBackpic: INCBIN "gfx/pokemon/croconaw/back.2bpp.lz" +SandshrewBackpic: INCBIN "gfx/pokemon/sandshrew/back.2bpp.lz" SailorPic: INCBIN "gfx/trainers/sailor.2bpp.lz" BeautyPic: INCBIN "gfx/trainers/beauty.2bpp.lz" -ShellderBackpic: INCBIN "gfx/pics/shellder/back.2bpp.lz" -ZubatBackpic: INCBIN "gfx/pics/zubat/back.2bpp.lz" -TeddiursaFrontpic: INCBIN "gfx/pics/teddiursa/front.animated.2bpp.lz" -CuboneBackpic: INCBIN "gfx/pics/cubone/back.2bpp.lz" +ShellderBackpic: INCBIN "gfx/pokemon/shellder/back.2bpp.lz" +ZubatBackpic: INCBIN "gfx/pokemon/zubat/back.2bpp.lz" +TeddiursaFrontpic: INCBIN "gfx/pokemon/teddiursa/front.animated.2bpp.lz" +CuboneBackpic: INCBIN "gfx/pokemon/cubone/back.2bpp.lz" GruntmPic: INCBIN "gfx/trainers/grunt_m.2bpp.lz" -GloomBackpic: INCBIN "gfx/pics/gloom/back.2bpp.lz" -MagcargoBackpic: INCBIN "gfx/pics/magcargo/back.2bpp.lz" -KabutopsBackpic: INCBIN "gfx/pics/kabutops/back.2bpp.lz" -BeedrillBackpic: INCBIN "gfx/pics/beedrill/back.2bpp.lz" -ArcanineBackpic: INCBIN "gfx/pics/arcanine/back.2bpp.lz" -FlareonBackpic: INCBIN "gfx/pics/flareon/back.2bpp.lz" -GoldeenBackpic: INCBIN "gfx/pics/goldeen/back.2bpp.lz" -BulbasaurFrontpic: INCBIN "gfx/pics/bulbasaur/front.animated.2bpp.lz" -StarmieBackpic: INCBIN "gfx/pics/starmie/back.2bpp.lz" +GloomBackpic: INCBIN "gfx/pokemon/gloom/back.2bpp.lz" +MagcargoBackpic: INCBIN "gfx/pokemon/magcargo/back.2bpp.lz" +KabutopsBackpic: INCBIN "gfx/pokemon/kabutops/back.2bpp.lz" +BeedrillBackpic: INCBIN "gfx/pokemon/beedrill/back.2bpp.lz" +ArcanineBackpic: INCBIN "gfx/pokemon/arcanine/back.2bpp.lz" +FlareonBackpic: INCBIN "gfx/pokemon/flareon/back.2bpp.lz" +GoldeenBackpic: INCBIN "gfx/pokemon/goldeen/back.2bpp.lz" +BulbasaurFrontpic: INCBIN "gfx/pokemon/bulbasaur/front.animated.2bpp.lz" +StarmieBackpic: INCBIN "gfx/pokemon/starmie/back.2bpp.lz" ; 150000 SECTION "Pics 13", ROMX -OmanyteBackpic: INCBIN "gfx/pics/omanyte/back.2bpp.lz" -PidgeyBackpic: INCBIN "gfx/pics/pidgey/back.2bpp.lz" +OmanyteBackpic: INCBIN "gfx/pokemon/omanyte/back.2bpp.lz" +PidgeyBackpic: INCBIN "gfx/pokemon/pidgey/back.2bpp.lz" ScientistPic: INCBIN "gfx/trainers/scientist.2bpp.lz" -QwilfishBackpic: INCBIN "gfx/pics/qwilfish/back.2bpp.lz" -GligarBackpic: INCBIN "gfx/pics/gligar/back.2bpp.lz" -TyphlosionBackpic: INCBIN "gfx/pics/typhlosion/back.2bpp.lz" -CharmeleonBackpic: INCBIN "gfx/pics/charmeleon/back.2bpp.lz" -NidoqueenBackpic: INCBIN "gfx/pics/nidoqueen/back.2bpp.lz" -PichuFrontpic: INCBIN "gfx/pics/pichu/front.animated.2bpp.lz" -ElectabuzzBackpic: INCBIN "gfx/pics/electabuzz/back.2bpp.lz" -LedianBackpic: INCBIN "gfx/pics/ledian/back.2bpp.lz" -PupitarBackpic: INCBIN "gfx/pics/pupitar/back.2bpp.lz" -HeracrossBackpic: INCBIN "gfx/pics/heracross/back.2bpp.lz" -UnownDFrontpic: INCBIN "gfx/pics/unown_d/front.animated.2bpp.lz" -MiltankBackpic: INCBIN "gfx/pics/miltank/back.2bpp.lz" -SteelixBackpic: INCBIN "gfx/pics/steelix/back.2bpp.lz" -PersianBackpic: INCBIN "gfx/pics/persian/back.2bpp.lz" +QwilfishBackpic: INCBIN "gfx/pokemon/qwilfish/back.2bpp.lz" +GligarBackpic: INCBIN "gfx/pokemon/gligar/back.2bpp.lz" +TyphlosionBackpic: INCBIN "gfx/pokemon/typhlosion/back.2bpp.lz" +CharmeleonBackpic: INCBIN "gfx/pokemon/charmeleon/back.2bpp.lz" +NidoqueenBackpic: INCBIN "gfx/pokemon/nidoqueen/back.2bpp.lz" +PichuFrontpic: INCBIN "gfx/pokemon/pichu/front.animated.2bpp.lz" +ElectabuzzBackpic: INCBIN "gfx/pokemon/electabuzz/back.2bpp.lz" +LedianBackpic: INCBIN "gfx/pokemon/ledian/back.2bpp.lz" +PupitarBackpic: INCBIN "gfx/pokemon/pupitar/back.2bpp.lz" +HeracrossBackpic: INCBIN "gfx/pokemon/heracross/back.2bpp.lz" +UnownDFrontpic: INCBIN "gfx/pokemon/unown_d/front.animated.2bpp.lz" +MiltankBackpic: INCBIN "gfx/pokemon/miltank/back.2bpp.lz" +SteelixBackpic: INCBIN "gfx/pokemon/steelix/back.2bpp.lz" +PersianBackpic: INCBIN "gfx/pokemon/persian/back.2bpp.lz" LtSurgePic: INCBIN "gfx/trainers/lt_surge.2bpp.lz" TeacherPic: INCBIN "gfx/trainers/teacher.2bpp.lz" -EggPic: INCBIN "gfx/pics/egg/front.animated.2bpp.lz" -EeveeBackpic: INCBIN "gfx/pics/eevee/back.2bpp.lz" -ShuckleFrontpic: INCBIN "gfx/pics/shuckle/front.animated.2bpp.lz" -PonytaBackpic: INCBIN "gfx/pics/ponyta/back.2bpp.lz" -RemoraidFrontpic: INCBIN "gfx/pics/remoraid/front.animated.2bpp.lz" -PoliwagFrontpic: INCBIN "gfx/pics/poliwag/front.animated.2bpp.lz" -OnixBackpic: INCBIN "gfx/pics/onix/back.2bpp.lz" -KoffingBackpic: INCBIN "gfx/pics/koffing/back.2bpp.lz" +EggPic: INCBIN "gfx/pokemon/egg/front.animated.2bpp.lz" +EeveeBackpic: INCBIN "gfx/pokemon/eevee/back.2bpp.lz" +ShuckleFrontpic: INCBIN "gfx/pokemon/shuckle/front.animated.2bpp.lz" +PonytaBackpic: INCBIN "gfx/pokemon/ponyta/back.2bpp.lz" +RemoraidFrontpic: INCBIN "gfx/pokemon/remoraid/front.animated.2bpp.lz" +PoliwagFrontpic: INCBIN "gfx/pokemon/poliwag/front.animated.2bpp.lz" +OnixBackpic: INCBIN "gfx/pokemon/onix/back.2bpp.lz" +KoffingBackpic: INCBIN "gfx/pokemon/koffing/back.2bpp.lz" BirdKeeperPic: INCBIN "gfx/trainers/bird_keeper.2bpp.lz" FalknerPic: INCBIN "gfx/trainers/falkner.2bpp.lz" KarenPic: INCBIN "gfx/trainers/karen.2bpp.lz" -NidorinaBackpic: INCBIN "gfx/pics/nidorina/back.2bpp.lz" -TentacruelBackpic: INCBIN "gfx/pics/tentacruel/back.2bpp.lz" -GrowlitheBackpic: INCBIN "gfx/pics/growlithe/back.2bpp.lz" +NidorinaBackpic: INCBIN "gfx/pokemon/nidorina/back.2bpp.lz" +TentacruelBackpic: INCBIN "gfx/pokemon/tentacruel/back.2bpp.lz" +GrowlitheBackpic: INCBIN "gfx/pokemon/growlithe/back.2bpp.lz" KogaPic: INCBIN "gfx/trainers/koga.2bpp.lz" -MachokeBackpic: INCBIN "gfx/pics/machoke/back.2bpp.lz" -RaichuBackpic: INCBIN "gfx/pics/raichu/back.2bpp.lz" -PoliwrathBackpic: INCBIN "gfx/pics/poliwrath/back.2bpp.lz" +MachokeBackpic: INCBIN "gfx/pokemon/machoke/back.2bpp.lz" +RaichuBackpic: INCBIN "gfx/pokemon/raichu/back.2bpp.lz" +PoliwrathBackpic: INCBIN "gfx/pokemon/poliwrath/back.2bpp.lz" SwimmermPic: INCBIN "gfx/trainers/swimmer_m.2bpp.lz" -SunkernFrontpic: INCBIN "gfx/pics/sunkern/front.animated.2bpp.lz" -NidorinoBackpic: INCBIN "gfx/pics/nidorino/back.2bpp.lz" +SunkernFrontpic: INCBIN "gfx/pokemon/sunkern/front.animated.2bpp.lz" +NidorinoBackpic: INCBIN "gfx/pokemon/nidorino/back.2bpp.lz" MysticalmanPic: INCBIN "gfx/trainers/mysticalman.2bpp.lz" CooltrainerfPic: INCBIN "gfx/trainers/cooltrainer_f.2bpp.lz" -ElectrodeFrontpic: INCBIN "gfx/pics/electrode/front.animated.2bpp.lz" +ElectrodeFrontpic: INCBIN "gfx/pokemon/electrode/front.animated.2bpp.lz" ; 153fe3 SECTION "Pics 14", ROMX -SudowoodoBackpic: INCBIN "gfx/pics/sudowoodo/back.2bpp.lz" -FlaaffyBackpic: INCBIN "gfx/pics/flaaffy/back.2bpp.lz" -SentretFrontpic: INCBIN "gfx/pics/sentret/front.animated.2bpp.lz" -TogeticBackpic: INCBIN "gfx/pics/togetic/back.2bpp.lz" +SudowoodoBackpic: INCBIN "gfx/pokemon/sudowoodo/back.2bpp.lz" +FlaaffyBackpic: INCBIN "gfx/pokemon/flaaffy/back.2bpp.lz" +SentretFrontpic: INCBIN "gfx/pokemon/sentret/front.animated.2bpp.lz" +TogeticBackpic: INCBIN "gfx/pokemon/togetic/back.2bpp.lz" BugsyPic: INCBIN "gfx/trainers/bugsy.2bpp.lz" -MarowakBackpic: INCBIN "gfx/pics/marowak/back.2bpp.lz" -GeodudeBackpic: INCBIN "gfx/pics/geodude/back.2bpp.lz" -ScytherBackpic: INCBIN "gfx/pics/scyther/back.2bpp.lz" -VileplumeBackpic: INCBIN "gfx/pics/vileplume/back.2bpp.lz" -HitmonchanBackpic: INCBIN "gfx/pics/hitmonchan/back.2bpp.lz" -JumpluffBackpic: INCBIN "gfx/pics/jumpluff/back.2bpp.lz" +MarowakBackpic: INCBIN "gfx/pokemon/marowak/back.2bpp.lz" +GeodudeBackpic: INCBIN "gfx/pokemon/geodude/back.2bpp.lz" +ScytherBackpic: INCBIN "gfx/pokemon/scyther/back.2bpp.lz" +VileplumeBackpic: INCBIN "gfx/pokemon/vileplume/back.2bpp.lz" +HitmonchanBackpic: INCBIN "gfx/pokemon/hitmonchan/back.2bpp.lz" +JumpluffBackpic: INCBIN "gfx/pokemon/jumpluff/back.2bpp.lz" CooltrainermPic: INCBIN "gfx/trainers/cooltrainer_m.2bpp.lz" -BlastoiseBackpic: INCBIN "gfx/pics/blastoise/back.2bpp.lz" -MisdreavusBackpic: INCBIN "gfx/pics/misdreavus/back.2bpp.lz" -TyrogueBackpic: INCBIN "gfx/pics/tyrogue/back.2bpp.lz" -GeodudeFrontpic: INCBIN "gfx/pics/geodude/front.animated.2bpp.lz" -ScizorBackpic: INCBIN "gfx/pics/scizor/back.2bpp.lz" -GirafarigBackpic: INCBIN "gfx/pics/girafarig/back.2bpp.lz" -StantlerBackpic: INCBIN "gfx/pics/stantler/back.2bpp.lz" -SmeargleBackpic: INCBIN "gfx/pics/smeargle/back.2bpp.lz" -CharizardBackpic: INCBIN "gfx/pics/charizard/back.2bpp.lz" -KadabraBackpic: INCBIN "gfx/pics/kadabra/back.2bpp.lz" -PrimeapeBackpic: INCBIN "gfx/pics/primeape/back.2bpp.lz" -FurretBackpic: INCBIN "gfx/pics/furret/back.2bpp.lz" -WartortleBackpic: INCBIN "gfx/pics/wartortle/back.2bpp.lz" -ExeggcuteBackpic: INCBIN "gfx/pics/exeggcute/back.2bpp.lz" -IgglybuffFrontpic: INCBIN "gfx/pics/igglybuff/front.animated.2bpp.lz" -RaticateBackpic: INCBIN "gfx/pics/raticate/back.2bpp.lz" -VulpixBackpic: INCBIN "gfx/pics/vulpix/back.2bpp.lz" -EkansBackpic: INCBIN "gfx/pics/ekans/back.2bpp.lz" -SeakingBackpic: INCBIN "gfx/pics/seaking/back.2bpp.lz" +BlastoiseBackpic: INCBIN "gfx/pokemon/blastoise/back.2bpp.lz" +MisdreavusBackpic: INCBIN "gfx/pokemon/misdreavus/back.2bpp.lz" +TyrogueBackpic: INCBIN "gfx/pokemon/tyrogue/back.2bpp.lz" +GeodudeFrontpic: INCBIN "gfx/pokemon/geodude/front.animated.2bpp.lz" +ScizorBackpic: INCBIN "gfx/pokemon/scizor/back.2bpp.lz" +GirafarigBackpic: INCBIN "gfx/pokemon/girafarig/back.2bpp.lz" +StantlerBackpic: INCBIN "gfx/pokemon/stantler/back.2bpp.lz" +SmeargleBackpic: INCBIN "gfx/pokemon/smeargle/back.2bpp.lz" +CharizardBackpic: INCBIN "gfx/pokemon/charizard/back.2bpp.lz" +KadabraBackpic: INCBIN "gfx/pokemon/kadabra/back.2bpp.lz" +PrimeapeBackpic: INCBIN "gfx/pokemon/primeape/back.2bpp.lz" +FurretBackpic: INCBIN "gfx/pokemon/furret/back.2bpp.lz" +WartortleBackpic: INCBIN "gfx/pokemon/wartortle/back.2bpp.lz" +ExeggcuteBackpic: INCBIN "gfx/pokemon/exeggcute/back.2bpp.lz" +IgglybuffFrontpic: INCBIN "gfx/pokemon/igglybuff/front.animated.2bpp.lz" +RaticateBackpic: INCBIN "gfx/pokemon/raticate/back.2bpp.lz" +VulpixBackpic: INCBIN "gfx/pokemon/vulpix/back.2bpp.lz" +EkansBackpic: INCBIN "gfx/pokemon/ekans/back.2bpp.lz" +SeakingBackpic: INCBIN "gfx/pokemon/seaking/back.2bpp.lz" BurglarPic: INCBIN "gfx/trainers/burglar.2bpp.lz" -PsyduckBackpic: INCBIN "gfx/pics/psyduck/back.2bpp.lz" -PikachuBackpic: INCBIN "gfx/pics/pikachu/back.2bpp.lz" -KabutoFrontpic: INCBIN "gfx/pics/kabuto/front.animated.2bpp.lz" -MareepBackpic: INCBIN "gfx/pics/mareep/back.2bpp.lz" -RemoraidBackpic: INCBIN "gfx/pics/remoraid/back.2bpp.lz" -DittoFrontpic: INCBIN "gfx/pics/ditto/front.animated.2bpp.lz" -KingdraBackpic: INCBIN "gfx/pics/kingdra/back.2bpp.lz" +PsyduckBackpic: INCBIN "gfx/pokemon/psyduck/back.2bpp.lz" +PikachuBackpic: INCBIN "gfx/pokemon/pikachu/back.2bpp.lz" +KabutoFrontpic: INCBIN "gfx/pokemon/kabuto/front.animated.2bpp.lz" +MareepBackpic: INCBIN "gfx/pokemon/mareep/back.2bpp.lz" +RemoraidBackpic: INCBIN "gfx/pokemon/remoraid/back.2bpp.lz" +DittoFrontpic: INCBIN "gfx/pokemon/ditto/front.animated.2bpp.lz" +KingdraBackpic: INCBIN "gfx/pokemon/kingdra/back.2bpp.lz" CamperPic: INCBIN "gfx/trainers/camper.2bpp.lz" -WooperFrontpic: INCBIN "gfx/pics/wooper/front.animated.2bpp.lz" -ClefairyBackpic: INCBIN "gfx/pics/clefairy/back.2bpp.lz" -VenonatBackpic: INCBIN "gfx/pics/venonat/back.2bpp.lz" -BellossomBackpic: INCBIN "gfx/pics/bellossom/back.2bpp.lz" +WooperFrontpic: INCBIN "gfx/pokemon/wooper/front.animated.2bpp.lz" +ClefairyBackpic: INCBIN "gfx/pokemon/clefairy/back.2bpp.lz" +VenonatBackpic: INCBIN "gfx/pokemon/venonat/back.2bpp.lz" +BellossomBackpic: INCBIN "gfx/pokemon/bellossom/back.2bpp.lz" Rival1Pic: INCBIN "gfx/trainers/rival1.2bpp.lz" -SwinubBackpic: INCBIN "gfx/pics/swinub/back.2bpp.lz" +SwinubBackpic: INCBIN "gfx/pokemon/swinub/back.2bpp.lz" ; 158000 SECTION "Pics 15", ROMX -MewtwoBackpic: INCBIN "gfx/pics/mewtwo/back.2bpp.lz" +MewtwoBackpic: INCBIN "gfx/pokemon/mewtwo/back.2bpp.lz" PokemonProfPic: INCBIN "gfx/trainers/oak.2bpp.lz" CalPic: INCBIN "gfx/trainers/cal.2bpp.lz" SwimmerfPic: INCBIN "gfx/trainers/swimmer_f.2bpp.lz" -DiglettFrontpic: INCBIN "gfx/pics/diglett/front.animated.2bpp.lz" +DiglettFrontpic: INCBIN "gfx/pokemon/diglett/front.animated.2bpp.lz" OfficerPic: INCBIN "gfx/trainers/officer.2bpp.lz" -MukBackpic: INCBIN "gfx/pics/muk/back.2bpp.lz" -DelibirdBackpic: INCBIN "gfx/pics/delibird/back.2bpp.lz" +MukBackpic: INCBIN "gfx/pokemon/muk/back.2bpp.lz" +DelibirdBackpic: INCBIN "gfx/pokemon/delibird/back.2bpp.lz" SabrinaPic: INCBIN "gfx/trainers/sabrina.2bpp.lz" -MagikarpBackpic: INCBIN "gfx/pics/magikarp/back.2bpp.lz" -AriadosBackpic: INCBIN "gfx/pics/ariados/back.2bpp.lz" -SneaselBackpic: INCBIN "gfx/pics/sneasel/back.2bpp.lz" -UmbreonBackpic: INCBIN "gfx/pics/umbreon/back.2bpp.lz" -MurkrowBackpic: INCBIN "gfx/pics/murkrow/back.2bpp.lz" -IvysaurBackpic: INCBIN "gfx/pics/ivysaur/back.2bpp.lz" -SlowbroBackpic: INCBIN "gfx/pics/slowbro/back.2bpp.lz" +MagikarpBackpic: INCBIN "gfx/pokemon/magikarp/back.2bpp.lz" +AriadosBackpic: INCBIN "gfx/pokemon/ariados/back.2bpp.lz" +SneaselBackpic: INCBIN "gfx/pokemon/sneasel/back.2bpp.lz" +UmbreonBackpic: INCBIN "gfx/pokemon/umbreon/back.2bpp.lz" +MurkrowBackpic: INCBIN "gfx/pokemon/murkrow/back.2bpp.lz" +IvysaurBackpic: INCBIN "gfx/pokemon/ivysaur/back.2bpp.lz" +SlowbroBackpic: INCBIN "gfx/pokemon/slowbro/back.2bpp.lz" PsychicTPic: INCBIN "gfx/trainers/psychic_t.2bpp.lz" -GolduckBackpic: INCBIN "gfx/pics/golduck/back.2bpp.lz" -WeezingBackpic: INCBIN "gfx/pics/weezing/back.2bpp.lz" -EnteiBackpic: INCBIN "gfx/pics/entei/back.2bpp.lz" +GolduckBackpic: INCBIN "gfx/pokemon/golduck/back.2bpp.lz" +WeezingBackpic: INCBIN "gfx/pokemon/weezing/back.2bpp.lz" +EnteiBackpic: INCBIN "gfx/pokemon/entei/back.2bpp.lz" GruntfPic: INCBIN "gfx/trainers/grunt_f.2bpp.lz" -HorseaFrontpic: INCBIN "gfx/pics/horsea/front.animated.2bpp.lz" -PidgeotBackpic: INCBIN "gfx/pics/pidgeot/back.2bpp.lz" -HoOhBackpic: INCBIN "gfx/pics/ho_oh/back.2bpp.lz" -PoliwhirlBackpic: INCBIN "gfx/pics/poliwhirl/back.2bpp.lz" -MewBackpic: INCBIN "gfx/pics/mew/back.2bpp.lz" -MachopBackpic: INCBIN "gfx/pics/machop/back.2bpp.lz" -AbraBackpic: INCBIN "gfx/pics/abra/back.2bpp.lz" -AerodactylBackpic: INCBIN "gfx/pics/aerodactyl/back.2bpp.lz" -KakunaFrontpic: INCBIN "gfx/pics/kakuna/front.animated.2bpp.lz" -DugtrioBackpic: INCBIN "gfx/pics/dugtrio/back.2bpp.lz" -WeepinbellBackpic: INCBIN "gfx/pics/weepinbell/back.2bpp.lz" -NidoranFBackpic: INCBIN "gfx/pics/nidoran_f/back.2bpp.lz" -GravelerBackpic: INCBIN "gfx/pics/graveler/back.2bpp.lz" -AipomBackpic: INCBIN "gfx/pics/aipom/back.2bpp.lz" -EspeonBackpic: INCBIN "gfx/pics/espeon/back.2bpp.lz" -WeedleFrontpic: INCBIN "gfx/pics/weedle/front.animated.2bpp.lz" -TotodileBackpic: INCBIN "gfx/pics/totodile/back.2bpp.lz" -SnubbullBackpic: INCBIN "gfx/pics/snubbull/back.2bpp.lz" -KinglerBackpic: INCBIN "gfx/pics/kingler/back.2bpp.lz" -GengarBackpic: INCBIN "gfx/pics/gengar/back.2bpp.lz" -RattataBackpic: INCBIN "gfx/pics/rattata/back.2bpp.lz" +HorseaFrontpic: INCBIN "gfx/pokemon/horsea/front.animated.2bpp.lz" +PidgeotBackpic: INCBIN "gfx/pokemon/pidgeot/back.2bpp.lz" +HoOhBackpic: INCBIN "gfx/pokemon/ho_oh/back.2bpp.lz" +PoliwhirlBackpic: INCBIN "gfx/pokemon/poliwhirl/back.2bpp.lz" +MewBackpic: INCBIN "gfx/pokemon/mew/back.2bpp.lz" +MachopBackpic: INCBIN "gfx/pokemon/machop/back.2bpp.lz" +AbraBackpic: INCBIN "gfx/pokemon/abra/back.2bpp.lz" +AerodactylBackpic: INCBIN "gfx/pokemon/aerodactyl/back.2bpp.lz" +KakunaFrontpic: INCBIN "gfx/pokemon/kakuna/front.animated.2bpp.lz" +DugtrioBackpic: INCBIN "gfx/pokemon/dugtrio/back.2bpp.lz" +WeepinbellBackpic: INCBIN "gfx/pokemon/weepinbell/back.2bpp.lz" +NidoranFBackpic: INCBIN "gfx/pokemon/nidoran_f/back.2bpp.lz" +GravelerBackpic: INCBIN "gfx/pokemon/graveler/back.2bpp.lz" +AipomBackpic: INCBIN "gfx/pokemon/aipom/back.2bpp.lz" +EspeonBackpic: INCBIN "gfx/pokemon/espeon/back.2bpp.lz" +WeedleFrontpic: INCBIN "gfx/pokemon/weedle/front.animated.2bpp.lz" +TotodileBackpic: INCBIN "gfx/pokemon/totodile/back.2bpp.lz" +SnubbullBackpic: INCBIN "gfx/pokemon/snubbull/back.2bpp.lz" +KinglerBackpic: INCBIN "gfx/pokemon/kingler/back.2bpp.lz" +GengarBackpic: INCBIN "gfx/pokemon/gengar/back.2bpp.lz" +RattataBackpic: INCBIN "gfx/pokemon/rattata/back.2bpp.lz" YoungsterPic: INCBIN "gfx/trainers/youngster.2bpp.lz" WillPic: INCBIN "gfx/trainers/will.2bpp.lz" SchoolboyPic: INCBIN "gfx/trainers/schoolboy.2bpp.lz" -MagnemiteFrontpic: INCBIN "gfx/pics/magnemite/front.animated.2bpp.lz" +MagnemiteFrontpic: INCBIN "gfx/pokemon/magnemite/front.animated.2bpp.lz" ErikaPic: INCBIN "gfx/trainers/erika.2bpp.lz" JaninePic: INCBIN "gfx/trainers/janine.2bpp.lz" -MagnemiteBackpic: INCBIN "gfx/pics/magnemite/back.2bpp.lz" +MagnemiteBackpic: INCBIN "gfx/pokemon/magnemite/back.2bpp.lz" ; 15bffa SECTION "Pics 16", ROMX -HoothootBackpic: INCBIN "gfx/pics/hoothoot/back.2bpp.lz" -NoctowlBackpic: INCBIN "gfx/pics/noctowl/back.2bpp.lz" +HoothootBackpic: INCBIN "gfx/pokemon/hoothoot/back.2bpp.lz" +NoctowlBackpic: INCBIN "gfx/pokemon/noctowl/back.2bpp.lz" MortyPic: INCBIN "gfx/trainers/morty.2bpp.lz" -SlugmaBackpic: INCBIN "gfx/pics/slugma/back.2bpp.lz" -KabutoBackpic: INCBIN "gfx/pics/kabuto/back.2bpp.lz" -VictreebelBackpic: INCBIN "gfx/pics/victreebel/back.2bpp.lz" -MeowthBackpic: INCBIN "gfx/pics/meowth/back.2bpp.lz" -MeganiumBackpic: INCBIN "gfx/pics/meganium/back.2bpp.lz" +SlugmaBackpic: INCBIN "gfx/pokemon/slugma/back.2bpp.lz" +KabutoBackpic: INCBIN "gfx/pokemon/kabuto/back.2bpp.lz" +VictreebelBackpic: INCBIN "gfx/pokemon/victreebel/back.2bpp.lz" +MeowthBackpic: INCBIN "gfx/pokemon/meowth/back.2bpp.lz" +MeganiumBackpic: INCBIN "gfx/pokemon/meganium/back.2bpp.lz" PicnickerPic: INCBIN "gfx/trainers/picnicker.2bpp.lz" -LickitungBackpic: INCBIN "gfx/pics/lickitung/back.2bpp.lz" -TogepiFrontpic: INCBIN "gfx/pics/togepi/front.animated.2bpp.lz" +LickitungBackpic: INCBIN "gfx/pokemon/lickitung/back.2bpp.lz" +TogepiFrontpic: INCBIN "gfx/pokemon/togepi/front.animated.2bpp.lz" SuperNerdPic: INCBIN "gfx/trainers/super_nerd.2bpp.lz" -HaunterBackpic: INCBIN "gfx/pics/haunter/back.2bpp.lz" -XatuBackpic: INCBIN "gfx/pics/xatu/back.2bpp.lz" +HaunterBackpic: INCBIN "gfx/pokemon/haunter/back.2bpp.lz" +XatuBackpic: INCBIN "gfx/pokemon/xatu/back.2bpp.lz" RedPic: INCBIN "gfx/trainers/red.2bpp.lz" -Porygon2Backpic: INCBIN "gfx/pics/porygon2/back.2bpp.lz" +Porygon2Backpic: INCBIN "gfx/pokemon/porygon2/back.2bpp.lz" JasminePic: INCBIN "gfx/trainers/jasmine.2bpp.lz" -PinecoBackpic: INCBIN "gfx/pics/pineco/back.2bpp.lz" -MetapodFrontpic: INCBIN "gfx/pics/metapod/front.animated.2bpp.lz" -SeelBackpic: INCBIN "gfx/pics/seel/back.2bpp.lz" -QuagsireBackpic: INCBIN "gfx/pics/quagsire/back.2bpp.lz" +PinecoBackpic: INCBIN "gfx/pokemon/pineco/back.2bpp.lz" +MetapodFrontpic: INCBIN "gfx/pokemon/metapod/front.animated.2bpp.lz" +SeelBackpic: INCBIN "gfx/pokemon/seel/back.2bpp.lz" +QuagsireBackpic: INCBIN "gfx/pokemon/quagsire/back.2bpp.lz" WhitneyPic: INCBIN "gfx/trainers/whitney.2bpp.lz" -JolteonBackpic: INCBIN "gfx/pics/jolteon/back.2bpp.lz" -CaterpieFrontpic: INCBIN "gfx/pics/caterpie/front.animated.2bpp.lz" -HoppipBackpic: INCBIN "gfx/pics/hoppip/back.2bpp.lz" +JolteonBackpic: INCBIN "gfx/pokemon/jolteon/back.2bpp.lz" +CaterpieFrontpic: INCBIN "gfx/pokemon/caterpie/front.animated.2bpp.lz" +HoppipBackpic: INCBIN "gfx/pokemon/hoppip/back.2bpp.lz" BluePic: INCBIN "gfx/trainers/blue.2bpp.lz" -GranbullBackpic: INCBIN "gfx/pics/granbull/back.2bpp.lz" +GranbullBackpic: INCBIN "gfx/pokemon/granbull/back.2bpp.lz" GentlemanPic: INCBIN "gfx/trainers/gentleman.2bpp.lz" ExecutivemPic: INCBIN "gfx/trainers/executive_m.2bpp.lz" -SpearowBackpic: INCBIN "gfx/pics/spearow/back.2bpp.lz" -SunkernBackpic: INCBIN "gfx/pics/sunkern/back.2bpp.lz" -LaprasBackpic: INCBIN "gfx/pics/lapras/back.2bpp.lz" -MagbyBackpic: INCBIN "gfx/pics/magby/back.2bpp.lz" -DragonairBackpic: INCBIN "gfx/pics/dragonair/back.2bpp.lz" -ZapdosBackpic: INCBIN "gfx/pics/zapdos/back.2bpp.lz" -ChikoritaBackpic: INCBIN "gfx/pics/chikorita/back.2bpp.lz" -CorsolaBackpic: INCBIN "gfx/pics/corsola/back.2bpp.lz" -ChinchouBackpic: INCBIN "gfx/pics/chinchou/back.2bpp.lz" -ChanseyBackpic: INCBIN "gfx/pics/chansey/back.2bpp.lz" -SkiploomBackpic: INCBIN "gfx/pics/skiploom/back.2bpp.lz" -SpinarakFrontpic: INCBIN "gfx/pics/spinarak/front.animated.2bpp.lz" +SpearowBackpic: INCBIN "gfx/pokemon/spearow/back.2bpp.lz" +SunkernBackpic: INCBIN "gfx/pokemon/sunkern/back.2bpp.lz" +LaprasBackpic: INCBIN "gfx/pokemon/lapras/back.2bpp.lz" +MagbyBackpic: INCBIN "gfx/pokemon/magby/back.2bpp.lz" +DragonairBackpic: INCBIN "gfx/pokemon/dragonair/back.2bpp.lz" +ZapdosBackpic: INCBIN "gfx/pokemon/zapdos/back.2bpp.lz" +ChikoritaBackpic: INCBIN "gfx/pokemon/chikorita/back.2bpp.lz" +CorsolaBackpic: INCBIN "gfx/pokemon/corsola/back.2bpp.lz" +ChinchouBackpic: INCBIN "gfx/pokemon/chinchou/back.2bpp.lz" +ChanseyBackpic: INCBIN "gfx/pokemon/chansey/back.2bpp.lz" +SkiploomBackpic: INCBIN "gfx/pokemon/skiploom/back.2bpp.lz" +SpinarakFrontpic: INCBIN "gfx/pokemon/spinarak/front.animated.2bpp.lz" Rival2Pic: INCBIN "gfx/trainers/rival2.2bpp.lz" -UnownWFrontpic: INCBIN "gfx/pics/unown_w/front.animated.2bpp.lz" -CharmanderBackpic: INCBIN "gfx/pics/charmander/back.2bpp.lz" -RhyhornBackpic: INCBIN "gfx/pics/rhyhorn/back.2bpp.lz" -UnownCFrontpic: INCBIN "gfx/pics/unown_c/front.animated.2bpp.lz" +UnownWFrontpic: INCBIN "gfx/pokemon/unown_w/front.animated.2bpp.lz" +CharmanderBackpic: INCBIN "gfx/pokemon/charmander/back.2bpp.lz" +RhyhornBackpic: INCBIN "gfx/pokemon/rhyhorn/back.2bpp.lz" +UnownCFrontpic: INCBIN "gfx/pokemon/unown_c/front.animated.2bpp.lz" MistyPic: INCBIN "gfx/trainers/misty.2bpp.lz" BlainePic: INCBIN "gfx/trainers/blaine.2bpp.lz" -UnownZFrontpic: INCBIN "gfx/pics/unown_z/front.animated.2bpp.lz" -SwinubFrontpic: INCBIN "gfx/pics/swinub/front.animated.2bpp.lz" -LarvitarBackpic: INCBIN "gfx/pics/larvitar/back.2bpp.lz" -PorygonBackpic: INCBIN "gfx/pics/porygon/back.2bpp.lz" -UnownHBackpic: INCBIN "gfx/pics/unown_h/back.2bpp.lz" +UnownZFrontpic: INCBIN "gfx/pokemon/unown_z/front.animated.2bpp.lz" +SwinubFrontpic: INCBIN "gfx/pokemon/swinub/front.animated.2bpp.lz" +LarvitarBackpic: INCBIN "gfx/pokemon/larvitar/back.2bpp.lz" +PorygonBackpic: INCBIN "gfx/pokemon/porygon/back.2bpp.lz" +UnownHBackpic: INCBIN "gfx/pokemon/unown_h/back.2bpp.lz" ; 15ffff SECTION "Pics 17", ROMX -ParasBackpic: INCBIN "gfx/pics/paras/back.2bpp.lz" -VaporeonBackpic: INCBIN "gfx/pics/vaporeon/back.2bpp.lz" -TentacoolBackpic: INCBIN "gfx/pics/tentacool/back.2bpp.lz" +ParasBackpic: INCBIN "gfx/pokemon/paras/back.2bpp.lz" +VaporeonBackpic: INCBIN "gfx/pokemon/vaporeon/back.2bpp.lz" +TentacoolBackpic: INCBIN "gfx/pokemon/tentacool/back.2bpp.lz" ExecutivefPic: INCBIN "gfx/trainers/executive_f.2bpp.lz" -BulbasaurBackpic: INCBIN "gfx/pics/bulbasaur/back.2bpp.lz" -SmoochumBackpic: INCBIN "gfx/pics/smoochum/back.2bpp.lz" -PichuBackpic: INCBIN "gfx/pics/pichu/back.2bpp.lz" -HoundoomBackpic: INCBIN "gfx/pics/houndoom/back.2bpp.lz" -BellsproutBackpic: INCBIN "gfx/pics/bellsprout/back.2bpp.lz" -GrimerBackpic: INCBIN "gfx/pics/grimer/back.2bpp.lz" -LanturnBackpic: INCBIN "gfx/pics/lanturn/back.2bpp.lz" -PidgeottoBackpic: INCBIN "gfx/pics/pidgeotto/back.2bpp.lz" -StaryuBackpic: INCBIN "gfx/pics/staryu/back.2bpp.lz" -MrMimeBackpic: INCBIN "gfx/pics/mr__mime/back.2bpp.lz" -CaterpieBackpic: INCBIN "gfx/pics/caterpie/back.2bpp.lz" -VoltorbFrontpic: INCBIN "gfx/pics/voltorb/front.animated.2bpp.lz" -LugiaBackpic: INCBIN "gfx/pics/lugia/back.2bpp.lz" +BulbasaurBackpic: INCBIN "gfx/pokemon/bulbasaur/back.2bpp.lz" +SmoochumBackpic: INCBIN "gfx/pokemon/smoochum/back.2bpp.lz" +PichuBackpic: INCBIN "gfx/pokemon/pichu/back.2bpp.lz" +HoundoomBackpic: INCBIN "gfx/pokemon/houndoom/back.2bpp.lz" +BellsproutBackpic: INCBIN "gfx/pokemon/bellsprout/back.2bpp.lz" +GrimerBackpic: INCBIN "gfx/pokemon/grimer/back.2bpp.lz" +LanturnBackpic: INCBIN "gfx/pokemon/lanturn/back.2bpp.lz" +PidgeottoBackpic: INCBIN "gfx/pokemon/pidgeotto/back.2bpp.lz" +StaryuBackpic: INCBIN "gfx/pokemon/staryu/back.2bpp.lz" +MrMimeBackpic: INCBIN "gfx/pokemon/mr__mime/back.2bpp.lz" +CaterpieBackpic: INCBIN "gfx/pokemon/caterpie/back.2bpp.lz" +VoltorbFrontpic: INCBIN "gfx/pokemon/voltorb/front.animated.2bpp.lz" +LugiaBackpic: INCBIN "gfx/pokemon/lugia/back.2bpp.lz" PrycePic: INCBIN "gfx/trainers/pryce.2bpp.lz" BrockPic: INCBIN "gfx/trainers/brock.2bpp.lz" -UnownGFrontpic: INCBIN "gfx/pics/unown_g/front.animated.2bpp.lz" -ArbokBackpic: INCBIN "gfx/pics/arbok/back.2bpp.lz" -PolitoedBackpic: INCBIN "gfx/pics/politoed/back.2bpp.lz" -DragoniteBackpic: INCBIN "gfx/pics/dragonite/back.2bpp.lz" -HitmonleeBackpic: INCBIN "gfx/pics/hitmonlee/back.2bpp.lz" -NatuFrontpic: INCBIN "gfx/pics/natu/front.animated.2bpp.lz" -UrsaringBackpic: INCBIN "gfx/pics/ursaring/back.2bpp.lz" +UnownGFrontpic: INCBIN "gfx/pokemon/unown_g/front.animated.2bpp.lz" +ArbokBackpic: INCBIN "gfx/pokemon/arbok/back.2bpp.lz" +PolitoedBackpic: INCBIN "gfx/pokemon/politoed/back.2bpp.lz" +DragoniteBackpic: INCBIN "gfx/pokemon/dragonite/back.2bpp.lz" +HitmonleeBackpic: INCBIN "gfx/pokemon/hitmonlee/back.2bpp.lz" +NatuFrontpic: INCBIN "gfx/pokemon/natu/front.animated.2bpp.lz" +UrsaringBackpic: INCBIN "gfx/pokemon/ursaring/back.2bpp.lz" SagePic: INCBIN "gfx/trainers/sage.2bpp.lz" -TeddiursaBackpic: INCBIN "gfx/pics/teddiursa/back.2bpp.lz" -PhanpyBackpic: INCBIN "gfx/pics/phanpy/back.2bpp.lz" -UnownVFrontpic: INCBIN "gfx/pics/unown_v/front.animated.2bpp.lz" -KakunaBackpic: INCBIN "gfx/pics/kakuna/back.2bpp.lz" -WobbuffetBackpic: INCBIN "gfx/pics/wobbuffet/back.2bpp.lz" -TogepiBackpic: INCBIN "gfx/pics/togepi/back.2bpp.lz" -CrobatBackpic: INCBIN "gfx/pics/crobat/back.2bpp.lz" -BlisseyBackpic: INCBIN "gfx/pics/blissey/back.2bpp.lz" -AmpharosBackpic: INCBIN "gfx/pics/ampharos/back.2bpp.lz" -IgglybuffBackpic: INCBIN "gfx/pics/igglybuff/back.2bpp.lz" -AzumarillBackpic: INCBIN "gfx/pics/azumarill/back.2bpp.lz" -OctilleryBackpic: INCBIN "gfx/pics/octillery/back.2bpp.lz" -UnownSFrontpic: INCBIN "gfx/pics/unown_s/front.animated.2bpp.lz" -HorseaBackpic: INCBIN "gfx/pics/horsea/back.2bpp.lz" -SentretBackpic: INCBIN "gfx/pics/sentret/back.2bpp.lz" -UnownOFrontpic: INCBIN "gfx/pics/unown_o/front.animated.2bpp.lz" -UnownTFrontpic: INCBIN "gfx/pics/unown_t/front.animated.2bpp.lz" -WigglytuffBackpic: INCBIN "gfx/pics/wigglytuff/back.2bpp.lz" -ArticunoBackpic: INCBIN "gfx/pics/articuno/back.2bpp.lz" -DittoBackpic: INCBIN "gfx/pics/ditto/back.2bpp.lz" -WeedleBackpic: INCBIN "gfx/pics/weedle/back.2bpp.lz" -UnownHFrontpic: INCBIN "gfx/pics/unown_h/front.animated.2bpp.lz" -CleffaBackpic: INCBIN "gfx/pics/cleffa/back.2bpp.lz" -DrowzeeBackpic: INCBIN "gfx/pics/drowzee/back.2bpp.lz" -GastlyBackpic: INCBIN "gfx/pics/gastly/back.2bpp.lz" -FearowBackpic: INCBIN "gfx/pics/fearow/back.2bpp.lz" -MarillBackpic: INCBIN "gfx/pics/marill/back.2bpp.lz" -DratiniBackpic: INCBIN "gfx/pics/dratini/back.2bpp.lz" -ElectrodeBackpic: INCBIN "gfx/pics/electrode/back.2bpp.lz" -SkarmoryBackpic: INCBIN "gfx/pics/skarmory/back.2bpp.lz" -MetapodBackpic: INCBIN "gfx/pics/metapod/back.2bpp.lz" -JigglypuffBackpic: INCBIN "gfx/pics/jigglypuff/back.2bpp.lz" -OddishBackpic: INCBIN "gfx/pics/oddish/back.2bpp.lz" -UnownDBackpic: INCBIN "gfx/pics/unown_d/back.2bpp.lz" +TeddiursaBackpic: INCBIN "gfx/pokemon/teddiursa/back.2bpp.lz" +PhanpyBackpic: INCBIN "gfx/pokemon/phanpy/back.2bpp.lz" +UnownVFrontpic: INCBIN "gfx/pokemon/unown_v/front.animated.2bpp.lz" +KakunaBackpic: INCBIN "gfx/pokemon/kakuna/back.2bpp.lz" +WobbuffetBackpic: INCBIN "gfx/pokemon/wobbuffet/back.2bpp.lz" +TogepiBackpic: INCBIN "gfx/pokemon/togepi/back.2bpp.lz" +CrobatBackpic: INCBIN "gfx/pokemon/crobat/back.2bpp.lz" +BlisseyBackpic: INCBIN "gfx/pokemon/blissey/back.2bpp.lz" +AmpharosBackpic: INCBIN "gfx/pokemon/ampharos/back.2bpp.lz" +IgglybuffBackpic: INCBIN "gfx/pokemon/igglybuff/back.2bpp.lz" +AzumarillBackpic: INCBIN "gfx/pokemon/azumarill/back.2bpp.lz" +OctilleryBackpic: INCBIN "gfx/pokemon/octillery/back.2bpp.lz" +UnownSFrontpic: INCBIN "gfx/pokemon/unown_s/front.animated.2bpp.lz" +HorseaBackpic: INCBIN "gfx/pokemon/horsea/back.2bpp.lz" +SentretBackpic: INCBIN "gfx/pokemon/sentret/back.2bpp.lz" +UnownOFrontpic: INCBIN "gfx/pokemon/unown_o/front.animated.2bpp.lz" +UnownTFrontpic: INCBIN "gfx/pokemon/unown_t/front.animated.2bpp.lz" +WigglytuffBackpic: INCBIN "gfx/pokemon/wigglytuff/back.2bpp.lz" +ArticunoBackpic: INCBIN "gfx/pokemon/articuno/back.2bpp.lz" +DittoBackpic: INCBIN "gfx/pokemon/ditto/back.2bpp.lz" +WeedleBackpic: INCBIN "gfx/pokemon/weedle/back.2bpp.lz" +UnownHFrontpic: INCBIN "gfx/pokemon/unown_h/front.animated.2bpp.lz" +CleffaBackpic: INCBIN "gfx/pokemon/cleffa/back.2bpp.lz" +DrowzeeBackpic: INCBIN "gfx/pokemon/drowzee/back.2bpp.lz" +GastlyBackpic: INCBIN "gfx/pokemon/gastly/back.2bpp.lz" +FearowBackpic: INCBIN "gfx/pokemon/fearow/back.2bpp.lz" +MarillBackpic: INCBIN "gfx/pokemon/marill/back.2bpp.lz" +DratiniBackpic: INCBIN "gfx/pokemon/dratini/back.2bpp.lz" +ElectrodeBackpic: INCBIN "gfx/pokemon/electrode/back.2bpp.lz" +SkarmoryBackpic: INCBIN "gfx/pokemon/skarmory/back.2bpp.lz" +MetapodBackpic: INCBIN "gfx/pokemon/metapod/back.2bpp.lz" +JigglypuffBackpic: INCBIN "gfx/pokemon/jigglypuff/back.2bpp.lz" +OddishBackpic: INCBIN "gfx/pokemon/oddish/back.2bpp.lz" +UnownDBackpic: INCBIN "gfx/pokemon/unown_d/back.2bpp.lz" ; 163ffc SECTION "Pics 18", ROMX -SpinarakBackpic: INCBIN "gfx/pics/spinarak/back.2bpp.lz" -RaikouBackpic: INCBIN "gfx/pics/raikou/back.2bpp.lz" -UnownKFrontpic: INCBIN "gfx/pics/unown_k/front.animated.2bpp.lz" -HoundourBackpic: INCBIN "gfx/pics/houndour/back.2bpp.lz" -PoliwagBackpic: INCBIN "gfx/pics/poliwag/back.2bpp.lz" -SquirtleBackpic: INCBIN "gfx/pics/squirtle/back.2bpp.lz" -ShuckleBackpic: INCBIN "gfx/pics/shuckle/back.2bpp.lz" -DewgongBackpic: INCBIN "gfx/pics/dewgong/back.2bpp.lz" -UnownBFrontpic: INCBIN "gfx/pics/unown_b/front.animated.2bpp.lz" -SlowpokeBackpic: INCBIN "gfx/pics/slowpoke/back.2bpp.lz" -DunsparceBackpic: INCBIN "gfx/pics/dunsparce/back.2bpp.lz" -DonphanBackpic: INCBIN "gfx/pics/donphan/back.2bpp.lz" -WooperBackpic: INCBIN "gfx/pics/wooper/back.2bpp.lz" -TaurosBackpic: INCBIN "gfx/pics/tauros/back.2bpp.lz" -UnownXFrontpic: INCBIN "gfx/pics/unown_x/front.animated.2bpp.lz" -UnownNFrontpic: INCBIN "gfx/pics/unown_n/front.animated.2bpp.lz" -TangelaBackpic: INCBIN "gfx/pics/tangela/back.2bpp.lz" -VoltorbBackpic: INCBIN "gfx/pics/voltorb/back.2bpp.lz" -UnownJFrontpic: INCBIN "gfx/pics/unown_j/front.animated.2bpp.lz" -MantineBackpic: INCBIN "gfx/pics/mantine/back.2bpp.lz" -UnownLFrontpic: INCBIN "gfx/pics/unown_l/front.animated.2bpp.lz" -PiloswineBackpic: INCBIN "gfx/pics/piloswine/back.2bpp.lz" -UnownMFrontpic: INCBIN "gfx/pics/unown_m/front.animated.2bpp.lz" -UnownFFrontpic: INCBIN "gfx/pics/unown_f/front.animated.2bpp.lz" -NatuBackpic: INCBIN "gfx/pics/natu/back.2bpp.lz" -UnownAFrontpic: INCBIN "gfx/pics/unown_a/front.animated.2bpp.lz" -GolemBackpic: INCBIN "gfx/pics/golem/back.2bpp.lz" -UnownUFrontpic: INCBIN "gfx/pics/unown_u/front.animated.2bpp.lz" -DiglettBackpic: INCBIN "gfx/pics/diglett/back.2bpp.lz" -UnownQFrontpic: INCBIN "gfx/pics/unown_q/front.animated.2bpp.lz" -UnownPFrontpic: INCBIN "gfx/pics/unown_p/front.animated.2bpp.lz" -UnownCBackpic: INCBIN "gfx/pics/unown_c/back.2bpp.lz" -JynxBackpic: INCBIN "gfx/pics/jynx/back.2bpp.lz" -GolbatBackpic: INCBIN "gfx/pics/golbat/back.2bpp.lz" -UnownYFrontpic: INCBIN "gfx/pics/unown_y/front.animated.2bpp.lz" -UnownGBackpic: INCBIN "gfx/pics/unown_g/back.2bpp.lz" -UnownIFrontpic: INCBIN "gfx/pics/unown_i/front.animated.2bpp.lz" -UnownVBackpic: INCBIN "gfx/pics/unown_v/back.2bpp.lz" -ForretressBackpic: INCBIN "gfx/pics/forretress/back.2bpp.lz" -UnownSBackpic: INCBIN "gfx/pics/unown_s/back.2bpp.lz" -UnownRFrontpic: INCBIN "gfx/pics/unown_r/front.animated.2bpp.lz" -UnownEBackpic: INCBIN "gfx/pics/unown_e/back.2bpp.lz" -UnownJBackpic: INCBIN "gfx/pics/unown_j/back.2bpp.lz" -UnownBBackpic: INCBIN "gfx/pics/unown_b/back.2bpp.lz" -UnownOBackpic: INCBIN "gfx/pics/unown_o/back.2bpp.lz" -UnownZBackpic: INCBIN "gfx/pics/unown_z/back.2bpp.lz" -UnownWBackpic: INCBIN "gfx/pics/unown_w/back.2bpp.lz" -UnownNBackpic: INCBIN "gfx/pics/unown_n/back.2bpp.lz" -UnownABackpic: INCBIN "gfx/pics/unown_a/back.2bpp.lz" -UnownMBackpic: INCBIN "gfx/pics/unown_m/back.2bpp.lz" -UnownKBackpic: INCBIN "gfx/pics/unown_k/back.2bpp.lz" -UnownTBackpic: INCBIN "gfx/pics/unown_t/back.2bpp.lz" -UnownXBackpic: INCBIN "gfx/pics/unown_x/back.2bpp.lz" -UnownLBackpic: INCBIN "gfx/pics/unown_l/back.2bpp.lz" -UnownUBackpic: INCBIN "gfx/pics/unown_u/back.2bpp.lz" -UnownQBackpic: INCBIN "gfx/pics/unown_q/back.2bpp.lz" -UnownYBackpic: INCBIN "gfx/pics/unown_y/back.2bpp.lz" -UnownPBackpic: INCBIN "gfx/pics/unown_p/back.2bpp.lz" -UnownIBackpic: INCBIN "gfx/pics/unown_i/back.2bpp.lz" -UnownRBackpic: INCBIN "gfx/pics/unown_r/back.2bpp.lz" +SpinarakBackpic: INCBIN "gfx/pokemon/spinarak/back.2bpp.lz" +RaikouBackpic: INCBIN "gfx/pokemon/raikou/back.2bpp.lz" +UnownKFrontpic: INCBIN "gfx/pokemon/unown_k/front.animated.2bpp.lz" +HoundourBackpic: INCBIN "gfx/pokemon/houndour/back.2bpp.lz" +PoliwagBackpic: INCBIN "gfx/pokemon/poliwag/back.2bpp.lz" +SquirtleBackpic: INCBIN "gfx/pokemon/squirtle/back.2bpp.lz" +ShuckleBackpic: INCBIN "gfx/pokemon/shuckle/back.2bpp.lz" +DewgongBackpic: INCBIN "gfx/pokemon/dewgong/back.2bpp.lz" +UnownBFrontpic: INCBIN "gfx/pokemon/unown_b/front.animated.2bpp.lz" +SlowpokeBackpic: INCBIN "gfx/pokemon/slowpoke/back.2bpp.lz" +DunsparceBackpic: INCBIN "gfx/pokemon/dunsparce/back.2bpp.lz" +DonphanBackpic: INCBIN "gfx/pokemon/donphan/back.2bpp.lz" +WooperBackpic: INCBIN "gfx/pokemon/wooper/back.2bpp.lz" +TaurosBackpic: INCBIN "gfx/pokemon/tauros/back.2bpp.lz" +UnownXFrontpic: INCBIN "gfx/pokemon/unown_x/front.animated.2bpp.lz" +UnownNFrontpic: INCBIN "gfx/pokemon/unown_n/front.animated.2bpp.lz" +TangelaBackpic: INCBIN "gfx/pokemon/tangela/back.2bpp.lz" +VoltorbBackpic: INCBIN "gfx/pokemon/voltorb/back.2bpp.lz" +UnownJFrontpic: INCBIN "gfx/pokemon/unown_j/front.animated.2bpp.lz" +MantineBackpic: INCBIN "gfx/pokemon/mantine/back.2bpp.lz" +UnownLFrontpic: INCBIN "gfx/pokemon/unown_l/front.animated.2bpp.lz" +PiloswineBackpic: INCBIN "gfx/pokemon/piloswine/back.2bpp.lz" +UnownMFrontpic: INCBIN "gfx/pokemon/unown_m/front.animated.2bpp.lz" +UnownFFrontpic: INCBIN "gfx/pokemon/unown_f/front.animated.2bpp.lz" +NatuBackpic: INCBIN "gfx/pokemon/natu/back.2bpp.lz" +UnownAFrontpic: INCBIN "gfx/pokemon/unown_a/front.animated.2bpp.lz" +GolemBackpic: INCBIN "gfx/pokemon/golem/back.2bpp.lz" +UnownUFrontpic: INCBIN "gfx/pokemon/unown_u/front.animated.2bpp.lz" +DiglettBackpic: INCBIN "gfx/pokemon/diglett/back.2bpp.lz" +UnownQFrontpic: INCBIN "gfx/pokemon/unown_q/front.animated.2bpp.lz" +UnownPFrontpic: INCBIN "gfx/pokemon/unown_p/front.animated.2bpp.lz" +UnownCBackpic: INCBIN "gfx/pokemon/unown_c/back.2bpp.lz" +JynxBackpic: INCBIN "gfx/pokemon/jynx/back.2bpp.lz" +GolbatBackpic: INCBIN "gfx/pokemon/golbat/back.2bpp.lz" +UnownYFrontpic: INCBIN "gfx/pokemon/unown_y/front.animated.2bpp.lz" +UnownGBackpic: INCBIN "gfx/pokemon/unown_g/back.2bpp.lz" +UnownIFrontpic: INCBIN "gfx/pokemon/unown_i/front.animated.2bpp.lz" +UnownVBackpic: INCBIN "gfx/pokemon/unown_v/back.2bpp.lz" +ForretressBackpic: INCBIN "gfx/pokemon/forretress/back.2bpp.lz" +UnownSBackpic: INCBIN "gfx/pokemon/unown_s/back.2bpp.lz" +UnownRFrontpic: INCBIN "gfx/pokemon/unown_r/front.animated.2bpp.lz" +UnownEBackpic: INCBIN "gfx/pokemon/unown_e/back.2bpp.lz" +UnownJBackpic: INCBIN "gfx/pokemon/unown_j/back.2bpp.lz" +UnownBBackpic: INCBIN "gfx/pokemon/unown_b/back.2bpp.lz" +UnownOBackpic: INCBIN "gfx/pokemon/unown_o/back.2bpp.lz" +UnownZBackpic: INCBIN "gfx/pokemon/unown_z/back.2bpp.lz" +UnownWBackpic: INCBIN "gfx/pokemon/unown_w/back.2bpp.lz" +UnownNBackpic: INCBIN "gfx/pokemon/unown_n/back.2bpp.lz" +UnownABackpic: INCBIN "gfx/pokemon/unown_a/back.2bpp.lz" +UnownMBackpic: INCBIN "gfx/pokemon/unown_m/back.2bpp.lz" +UnownKBackpic: INCBIN "gfx/pokemon/unown_k/back.2bpp.lz" +UnownTBackpic: INCBIN "gfx/pokemon/unown_t/back.2bpp.lz" +UnownXBackpic: INCBIN "gfx/pokemon/unown_x/back.2bpp.lz" +UnownLBackpic: INCBIN "gfx/pokemon/unown_l/back.2bpp.lz" +UnownUBackpic: INCBIN "gfx/pokemon/unown_u/back.2bpp.lz" +UnownQBackpic: INCBIN "gfx/pokemon/unown_q/back.2bpp.lz" +UnownYBackpic: INCBIN "gfx/pokemon/unown_y/back.2bpp.lz" +UnownPBackpic: INCBIN "gfx/pokemon/unown_p/back.2bpp.lz" +UnownIBackpic: INCBIN "gfx/pokemon/unown_i/back.2bpp.lz" +UnownRBackpic: INCBIN "gfx/pokemon/unown_r/back.2bpp.lz" ; 1669d3 @@ -734,63 +734,63 @@ SECTION "Pics 19", ROMX ; Seems to be an accidental copy of the previous bank -INCBIN "gfx/pics/spinarak/back.2bpp.lz" -INCBIN "gfx/pics/raikou/back.2bpp.lz" -INCBIN "gfx/pics/unown_k/front.animated.2bpp.lz" -INCBIN "gfx/pics/houndour/back.2bpp.lz" -INCBIN "gfx/pics/poliwag/back.2bpp.lz" -INCBIN "gfx/pics/squirtle/back.2bpp.lz" -INCBIN "gfx/pics/shuckle/back.2bpp.lz" -INCBIN "gfx/pics/dewgong/back.2bpp.lz" -INCBIN "gfx/pics/unown_b/front.animated.2bpp.lz" -INCBIN "gfx/pics/slowpoke/back.2bpp.lz" -INCBIN "gfx/pics/dunsparce/back.2bpp.lz" -INCBIN "gfx/pics/donphan/back.2bpp.lz" -INCBIN "gfx/pics/wooper/back.2bpp.lz" -INCBIN "gfx/pics/tauros/back.2bpp.lz" -INCBIN "gfx/pics/unown_x/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_n/front.animated.2bpp.lz" -INCBIN "gfx/pics/tangela/back.2bpp.lz" -INCBIN "gfx/pics/voltorb/back.2bpp.lz" -INCBIN "gfx/pics/unown_j/front.animated.2bpp.lz" -INCBIN "gfx/pics/mantine/back.2bpp.lz" -INCBIN "gfx/pics/unown_l/front.animated.2bpp.lz" -INCBIN "gfx/pics/piloswine/back.2bpp.lz" -INCBIN "gfx/pics/unown_m/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_f/front.animated.2bpp.lz" -INCBIN "gfx/pics/natu/back.2bpp.lz" -INCBIN "gfx/pics/unown_a/front.animated.2bpp.lz" -INCBIN "gfx/pics/golem/back.2bpp.lz" -INCBIN "gfx/pics/unown_u/front.animated.2bpp.lz" -INCBIN "gfx/pics/diglett/back.2bpp.lz" -INCBIN "gfx/pics/unown_q/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_p/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_c/back.2bpp.lz" -INCBIN "gfx/pics/jynx/back.2bpp.lz" -INCBIN "gfx/pics/golbat/back.2bpp.lz" -INCBIN "gfx/pics/unown_y/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_g/back.2bpp.lz" -INCBIN "gfx/pics/unown_i/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_v/back.2bpp.lz" -INCBIN "gfx/pics/forretress/back.2bpp.lz" -INCBIN "gfx/pics/unown_s/back.2bpp.lz" -INCBIN "gfx/pics/unown_r/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_e/back.2bpp.lz" -INCBIN "gfx/pics/unown_j/back.2bpp.lz" -INCBIN "gfx/pics/unown_b/back.2bpp.lz" -INCBIN "gfx/pics/unown_o/back.2bpp.lz" -INCBIN "gfx/pics/unown_z/back.2bpp.lz" -INCBIN "gfx/pics/unown_w/back.2bpp.lz" -INCBIN "gfx/pics/unown_n/back.2bpp.lz" -INCBIN "gfx/pics/unown_a/back.2bpp.lz" -INCBIN "gfx/pics/unown_m/back.2bpp.lz" -INCBIN "gfx/pics/unown_k/back.2bpp.lz" -INCBIN "gfx/pics/unown_t/back.2bpp.lz" -INCBIN "gfx/pics/unown_x/back.2bpp.lz" -INCBIN "gfx/pics/unown_l/back.2bpp.lz" -INCBIN "gfx/pics/unown_u/back.2bpp.lz" -INCBIN "gfx/pics/unown_q/back.2bpp.lz" -INCBIN "gfx/pics/unown_y/back.2bpp.lz" -INCBIN "gfx/pics/unown_p/back.2bpp.lz" -INCBIN "gfx/pics/unown_i/back.2bpp.lz" -INCBIN "gfx/pics/unown_r/back.2bpp.lz" +INCBIN "gfx/pokemon/spinarak/back.2bpp.lz" +INCBIN "gfx/pokemon/raikou/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_k/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/houndour/back.2bpp.lz" +INCBIN "gfx/pokemon/poliwag/back.2bpp.lz" +INCBIN "gfx/pokemon/squirtle/back.2bpp.lz" +INCBIN "gfx/pokemon/shuckle/back.2bpp.lz" +INCBIN "gfx/pokemon/dewgong/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_b/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/slowpoke/back.2bpp.lz" +INCBIN "gfx/pokemon/dunsparce/back.2bpp.lz" +INCBIN "gfx/pokemon/donphan/back.2bpp.lz" +INCBIN "gfx/pokemon/wooper/back.2bpp.lz" +INCBIN "gfx/pokemon/tauros/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_x/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_n/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/tangela/back.2bpp.lz" +INCBIN "gfx/pokemon/voltorb/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_j/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/mantine/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_l/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/piloswine/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_m/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_f/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/natu/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_a/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/golem/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_u/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/diglett/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_q/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_p/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_c/back.2bpp.lz" +INCBIN "gfx/pokemon/jynx/back.2bpp.lz" +INCBIN "gfx/pokemon/golbat/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_y/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_g/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_i/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_v/back.2bpp.lz" +INCBIN "gfx/pokemon/forretress/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_s/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_r/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_e/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_j/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_b/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_o/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_z/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_w/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_n/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_a/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_m/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_k/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_t/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_x/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_l/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_u/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_q/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_y/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_p/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_i/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_r/back.2bpp.lz" diff --git a/gfx/pics/anims.asm b/gfx/pics/anims.asm deleted file mode 100644 index 37d81777d..000000000 --- a/gfx/pics/anims.asm +++ /dev/null @@ -1,253 +0,0 @@ -PicAnimations: -BulbasaurAnimation: INCLUDE "gfx/pics/bulbasaur/anim0.asm" -IvysaurAnimation: INCLUDE "gfx/pics/ivysaur/anim0.asm" -VenusaurAnimation: INCLUDE "gfx/pics/venusaur/anim0.asm" -CharmanderAnimation: INCLUDE "gfx/pics/charmander/anim0.asm" -CharmeleonAnimation: INCLUDE "gfx/pics/charmeleon/anim0.asm" -CharizardAnimation: INCLUDE "gfx/pics/charizard/anim0.asm" -SquirtleAnimation: INCLUDE "gfx/pics/squirtle/anim0.asm" -WartortleAnimation: INCLUDE "gfx/pics/wartortle/anim0.asm" -BlastoiseAnimation: INCLUDE "gfx/pics/blastoise/anim0.asm" -CaterpieAnimation: INCLUDE "gfx/pics/caterpie/anim0.asm" -MetapodAnimation: INCLUDE "gfx/pics/metapod/anim0.asm" -ButterfreeAnimation: INCLUDE "gfx/pics/butterfree/anim0.asm" -WeedleAnimation: INCLUDE "gfx/pics/weedle/anim0.asm" -KakunaAnimation: INCLUDE "gfx/pics/kakuna/anim0.asm" -BeedrillAnimation: INCLUDE "gfx/pics/beedrill/anim0.asm" -PidgeyAnimation: INCLUDE "gfx/pics/pidgey/anim0.asm" -PidgeottoAnimation: INCLUDE "gfx/pics/pidgeotto/anim0.asm" -PidgeotAnimation: INCLUDE "gfx/pics/pidgeot/anim0.asm" -RattataAnimation: INCLUDE "gfx/pics/rattata/anim0.asm" -RaticateAnimation: INCLUDE "gfx/pics/raticate/anim0.asm" -SpearowAnimation: INCLUDE "gfx/pics/spearow/anim0.asm" -FearowAnimation: INCLUDE "gfx/pics/fearow/anim0.asm" -EkansAnimation: INCLUDE "gfx/pics/ekans/anim0.asm" -ArbokAnimation: INCLUDE "gfx/pics/arbok/anim0.asm" -PikachuAnimation: INCLUDE "gfx/pics/pikachu/anim0.asm" -RaichuAnimation: INCLUDE "gfx/pics/raichu/anim0.asm" -SandshrewAnimation: INCLUDE "gfx/pics/sandshrew/anim0.asm" -SandslashAnimation: INCLUDE "gfx/pics/sandslash/anim0.asm" -NidoranFAnimation: INCLUDE "gfx/pics/nidoran_f/anim0.asm" -NidorinaAnimation: INCLUDE "gfx/pics/nidorina/anim0.asm" -NidoqueenAnimation: INCLUDE "gfx/pics/nidoqueen/anim0.asm" -NidoranMAnimation: INCLUDE "gfx/pics/nidoran_m/anim0.asm" -NidorinoAnimation: INCLUDE "gfx/pics/nidorino/anim0.asm" -NidokingAnimation: INCLUDE "gfx/pics/nidoking/anim0.asm" -ClefairyAnimation: INCLUDE "gfx/pics/clefairy/anim0.asm" -ClefableAnimation: INCLUDE "gfx/pics/clefable/anim0.asm" -VulpixAnimation: INCLUDE "gfx/pics/vulpix/anim0.asm" -NinetalesAnimation: INCLUDE "gfx/pics/ninetales/anim0.asm" -JigglypuffAnimation: INCLUDE "gfx/pics/jigglypuff/anim0.asm" -WigglytuffAnimation: INCLUDE "gfx/pics/wigglytuff/anim0.asm" -ZubatAnimation: INCLUDE "gfx/pics/zubat/anim0.asm" -GolbatAnimation: INCLUDE "gfx/pics/golbat/anim0.asm" -OddishAnimation: INCLUDE "gfx/pics/oddish/anim0.asm" -GloomAnimation: INCLUDE "gfx/pics/gloom/anim0.asm" -VileplumeAnimation: INCLUDE "gfx/pics/vileplume/anim0.asm" -ParasAnimation: INCLUDE "gfx/pics/paras/anim0.asm" -ParasectAnimation: INCLUDE "gfx/pics/parasect/anim0.asm" -VenonatAnimation: INCLUDE "gfx/pics/venonat/anim0.asm" -VenomothAnimation: INCLUDE "gfx/pics/venomoth/anim0.asm" -DiglettAnimation: INCLUDE "gfx/pics/diglett/anim0.asm" -DugtrioAnimation: INCLUDE "gfx/pics/dugtrio/anim0.asm" -MeowthAnimation: INCLUDE "gfx/pics/meowth/anim0.asm" -PersianAnimation: INCLUDE "gfx/pics/persian/anim0.asm" -PsyduckAnimation: INCLUDE "gfx/pics/psyduck/anim0.asm" -GolduckAnimation: INCLUDE "gfx/pics/golduck/anim0.asm" -MankeyAnimation: INCLUDE "gfx/pics/mankey/anim0.asm" -PrimeapeAnimation: INCLUDE "gfx/pics/primeape/anim0.asm" -GrowlitheAnimation: INCLUDE "gfx/pics/growlithe/anim0.asm" -ArcanineAnimation: INCLUDE "gfx/pics/arcanine/anim0.asm" -PoliwagAnimation: INCLUDE "gfx/pics/poliwag/anim0.asm" -PoliwhirlAnimation: INCLUDE "gfx/pics/poliwhirl/anim0.asm" -PoliwrathAnimation: INCLUDE "gfx/pics/poliwrath/anim0.asm" -AbraAnimation: INCLUDE "gfx/pics/abra/anim0.asm" -KadabraAnimation: INCLUDE "gfx/pics/kadabra/anim0.asm" -AlakazamAnimation: INCLUDE "gfx/pics/alakazam/anim0.asm" -MachopAnimation: INCLUDE "gfx/pics/machop/anim0.asm" -MachokeAnimation: INCLUDE "gfx/pics/machoke/anim0.asm" -MachampAnimation: INCLUDE "gfx/pics/machamp/anim0.asm" -BellsproutAnimation: INCLUDE "gfx/pics/bellsprout/anim0.asm" -WeepinbellAnimation: INCLUDE "gfx/pics/weepinbell/anim0.asm" -VictreebelAnimation: INCLUDE "gfx/pics/victreebel/anim0.asm" -TentacoolAnimation: INCLUDE "gfx/pics/tentacool/anim0.asm" -TentacruelAnimation: INCLUDE "gfx/pics/tentacruel/anim0.asm" -GeodudeAnimation: INCLUDE "gfx/pics/geodude/anim0.asm" -GravelerAnimation: INCLUDE "gfx/pics/graveler/anim0.asm" -GolemAnimation: INCLUDE "gfx/pics/golem/anim0.asm" -PonytaAnimation: INCLUDE "gfx/pics/ponyta/anim0.asm" -RapidashAnimation: INCLUDE "gfx/pics/rapidash/anim0.asm" -SlowpokeAnimation: INCLUDE "gfx/pics/slowpoke/anim0.asm" -SlowbroAnimation: INCLUDE "gfx/pics/slowbro/anim0.asm" -MagnemiteAnimation: INCLUDE "gfx/pics/magnemite/anim0.asm" -MagnetonAnimation: INCLUDE "gfx/pics/magneton/anim0.asm" -FarfetchDAnimation: INCLUDE "gfx/pics/farfetch_d/anim0.asm" -DoduoAnimation: INCLUDE "gfx/pics/doduo/anim0.asm" -DodrioAnimation: INCLUDE "gfx/pics/dodrio/anim0.asm" -SeelAnimation: INCLUDE "gfx/pics/seel/anim0.asm" -DewgongAnimation: INCLUDE "gfx/pics/dewgong/anim0.asm" -GrimerAnimation: INCLUDE "gfx/pics/grimer/anim0.asm" -MukAnimation: INCLUDE "gfx/pics/muk/anim0.asm" -ShellderAnimation: INCLUDE "gfx/pics/shellder/anim0.asm" -CloysterAnimation: INCLUDE "gfx/pics/cloyster/anim0.asm" -GastlyAnimation: INCLUDE "gfx/pics/gastly/anim0.asm" -HaunterAnimation: INCLUDE "gfx/pics/haunter/anim0.asm" -GengarAnimation: INCLUDE "gfx/pics/gengar/anim0.asm" -OnixAnimation: INCLUDE "gfx/pics/onix/anim0.asm" -DrowzeeAnimation: INCLUDE "gfx/pics/drowzee/anim0.asm" -HypnoAnimation: INCLUDE "gfx/pics/hypno/anim0.asm" -KrabbyAnimation: INCLUDE "gfx/pics/krabby/anim0.asm" -KinglerAnimation: INCLUDE "gfx/pics/kingler/anim0.asm" -VoltorbAnimation: INCLUDE "gfx/pics/voltorb/anim0.asm" -ElectrodeAnimation: INCLUDE "gfx/pics/electrode/anim0.asm" -ExeggcuteAnimation: INCLUDE "gfx/pics/exeggcute/anim0.asm" -ExeggutorAnimation: INCLUDE "gfx/pics/exeggutor/anim0.asm" -CuboneAnimation: INCLUDE "gfx/pics/cubone/anim0.asm" -MarowakAnimation: INCLUDE "gfx/pics/marowak/anim0.asm" -HitmonleeAnimation: INCLUDE "gfx/pics/hitmonlee/anim0.asm" -HitmonchanAnimation: INCLUDE "gfx/pics/hitmonchan/anim0.asm" -LickitungAnimation: INCLUDE "gfx/pics/lickitung/anim0.asm" -KoffingAnimation: INCLUDE "gfx/pics/koffing/anim0.asm" -WeezingAnimation: INCLUDE "gfx/pics/weezing/anim0.asm" -RhyhornAnimation: INCLUDE "gfx/pics/rhyhorn/anim0.asm" -RhydonAnimation: INCLUDE "gfx/pics/rhydon/anim0.asm" -ChanseyAnimation: INCLUDE "gfx/pics/chansey/anim0.asm" -TangelaAnimation: INCLUDE "gfx/pics/tangela/anim0.asm" -KangaskhanAnimation: INCLUDE "gfx/pics/kangaskhan/anim0.asm" -HorseaAnimation: INCLUDE "gfx/pics/horsea/anim0.asm" -SeadraAnimation: INCLUDE "gfx/pics/seadra/anim0.asm" -GoldeenAnimation: INCLUDE "gfx/pics/goldeen/anim0.asm" -SeakingAnimation: INCLUDE "gfx/pics/seaking/anim0.asm" -StaryuAnimation: INCLUDE "gfx/pics/staryu/anim0.asm" -StarmieAnimation: INCLUDE "gfx/pics/starmie/anim0.asm" -MrMimeAnimation: INCLUDE "gfx/pics/mr__mime/anim0.asm" -ScytherAnimation: INCLUDE "gfx/pics/scyther/anim0.asm" -JynxAnimation: INCLUDE "gfx/pics/jynx/anim0.asm" -ElectabuzzAnimation: INCLUDE "gfx/pics/electabuzz/anim0.asm" -MagmarAnimation: INCLUDE "gfx/pics/magmar/anim0.asm" -PinsirAnimation: INCLUDE "gfx/pics/pinsir/anim0.asm" -TaurosAnimation: INCLUDE "gfx/pics/tauros/anim0.asm" -MagikarpAnimation: INCLUDE "gfx/pics/magikarp/anim0.asm" -GyaradosAnimation: INCLUDE "gfx/pics/gyarados/anim0.asm" -LaprasAnimation: INCLUDE "gfx/pics/lapras/anim0.asm" -DittoAnimation: INCLUDE "gfx/pics/ditto/anim0.asm" -EeveeAnimation: INCLUDE "gfx/pics/eevee/anim0.asm" -VaporeonAnimation: INCLUDE "gfx/pics/vaporeon/anim0.asm" -JolteonAnimation: INCLUDE "gfx/pics/jolteon/anim0.asm" -FlareonAnimation: INCLUDE "gfx/pics/flareon/anim0.asm" -PorygonAnimation: INCLUDE "gfx/pics/porygon/anim0.asm" -OmanyteAnimation: INCLUDE "gfx/pics/omanyte/anim0.asm" -OmastarAnimation: INCLUDE "gfx/pics/omastar/anim0.asm" -KabutoAnimation: INCLUDE "gfx/pics/kabuto/anim0.asm" -KabutopsAnimation: INCLUDE "gfx/pics/kabutops/anim0.asm" -AerodactylAnimation: INCLUDE "gfx/pics/aerodactyl/anim0.asm" -SnorlaxAnimation: INCLUDE "gfx/pics/snorlax/anim0.asm" -ArticunoAnimation: INCLUDE "gfx/pics/articuno/anim0.asm" -ZapdosAnimation: INCLUDE "gfx/pics/zapdos/anim0.asm" -MoltresAnimation: INCLUDE "gfx/pics/moltres/anim0.asm" -DratiniAnimation: INCLUDE "gfx/pics/dratini/anim0.asm" -DragonairAnimation: INCLUDE "gfx/pics/dragonair/anim0.asm" -DragoniteAnimation: INCLUDE "gfx/pics/dragonite/anim0.asm" -MewtwoAnimation: INCLUDE "gfx/pics/mewtwo/anim0.asm" -MewAnimation: INCLUDE "gfx/pics/mew/anim0.asm" -ChikoritaAnimation: INCLUDE "gfx/pics/chikorita/anim0.asm" -BayleefAnimation: INCLUDE "gfx/pics/bayleef/anim0.asm" -MeganiumAnimation: INCLUDE "gfx/pics/meganium/anim0.asm" -CyndaquilAnimation: INCLUDE "gfx/pics/cyndaquil/anim0.asm" -QuilavaAnimation: INCLUDE "gfx/pics/quilava/anim0.asm" -TyphlosionAnimation: INCLUDE "gfx/pics/typhlosion/anim0.asm" -TotodileAnimation: INCLUDE "gfx/pics/totodile/anim0.asm" -CroconawAnimation: INCLUDE "gfx/pics/croconaw/anim0.asm" -FeraligatrAnimation: INCLUDE "gfx/pics/feraligatr/anim0.asm" -SentretAnimation: INCLUDE "gfx/pics/sentret/anim0.asm" -FurretAnimation: INCLUDE "gfx/pics/furret/anim0.asm" -HoothootAnimation: INCLUDE "gfx/pics/hoothoot/anim0.asm" -NoctowlAnimation: INCLUDE "gfx/pics/noctowl/anim0.asm" -LedybaAnimation: INCLUDE "gfx/pics/ledyba/anim0.asm" -LedianAnimation: INCLUDE "gfx/pics/ledian/anim0.asm" -SpinarakAnimation: INCLUDE "gfx/pics/spinarak/anim0.asm" -AriadosAnimation: INCLUDE "gfx/pics/ariados/anim0.asm" -CrobatAnimation: INCLUDE "gfx/pics/crobat/anim0.asm" -ChinchouAnimation: INCLUDE "gfx/pics/chinchou/anim0.asm" -LanturnAnimation: INCLUDE "gfx/pics/lanturn/anim0.asm" -PichuAnimation: INCLUDE "gfx/pics/pichu/anim0.asm" -CleffaAnimation: INCLUDE "gfx/pics/cleffa/anim0.asm" -IgglybuffAnimation: INCLUDE "gfx/pics/igglybuff/anim0.asm" -TogepiAnimation: INCLUDE "gfx/pics/togepi/anim0.asm" -TogeticAnimation: INCLUDE "gfx/pics/togetic/anim0.asm" -NatuAnimation: INCLUDE "gfx/pics/natu/anim0.asm" -XatuAnimation: INCLUDE "gfx/pics/xatu/anim0.asm" -MareepAnimation: INCLUDE "gfx/pics/mareep/anim0.asm" -FlaaffyAnimation: INCLUDE "gfx/pics/flaaffy/anim0.asm" -AmpharosAnimation: INCLUDE "gfx/pics/ampharos/anim0.asm" -BellossomAnimation: INCLUDE "gfx/pics/bellossom/anim0.asm" -MarillAnimation: INCLUDE "gfx/pics/marill/anim0.asm" -AzumarillAnimation: INCLUDE "gfx/pics/azumarill/anim0.asm" -SudowoodoAnimation: INCLUDE "gfx/pics/sudowoodo/anim0.asm" -PolitoedAnimation: INCLUDE "gfx/pics/politoed/anim0.asm" -HoppipAnimation: INCLUDE "gfx/pics/hoppip/anim0.asm" -SkiploomAnimation: INCLUDE "gfx/pics/skiploom/anim0.asm" -JumpluffAnimation: INCLUDE "gfx/pics/jumpluff/anim0.asm" -AipomAnimation: INCLUDE "gfx/pics/aipom/anim0.asm" -SunkernAnimation: INCLUDE "gfx/pics/sunkern/anim0.asm" -SunfloraAnimation: INCLUDE "gfx/pics/sunflora/anim0.asm" -YanmaAnimation: INCLUDE "gfx/pics/yanma/anim0.asm" -WooperAnimation: INCLUDE "gfx/pics/wooper/anim0.asm" -QuagsireAnimation: INCLUDE "gfx/pics/quagsire/anim0.asm" -EspeonAnimation: INCLUDE "gfx/pics/espeon/anim0.asm" -UmbreonAnimation: INCLUDE "gfx/pics/umbreon/anim0.asm" -MurkrowAnimation: INCLUDE "gfx/pics/murkrow/anim0.asm" -SlowkingAnimation: INCLUDE "gfx/pics/slowking/anim0.asm" -MisdreavusAnimation: INCLUDE "gfx/pics/misdreavus/anim0.asm" -UnownAnimation: INCLUDE "gfx/pics/unown/anim0.asm" -WobbuffetAnimation: INCLUDE "gfx/pics/wobbuffet/anim0.asm" -GirafarigAnimation: INCLUDE "gfx/pics/girafarig/anim0.asm" -PinecoAnimation: INCLUDE "gfx/pics/pineco/anim0.asm" -ForretressAnimation: INCLUDE "gfx/pics/forretress/anim0.asm" -DunsparceAnimation: INCLUDE "gfx/pics/dunsparce/anim0.asm" -GligarAnimation: INCLUDE "gfx/pics/gligar/anim0.asm" -SteelixAnimation: INCLUDE "gfx/pics/steelix/anim0.asm" -SnubbullAnimation: INCLUDE "gfx/pics/snubbull/anim0.asm" -GranbullAnimation: INCLUDE "gfx/pics/granbull/anim0.asm" -QwilfishAnimation: INCLUDE "gfx/pics/qwilfish/anim0.asm" -ScizorAnimation: INCLUDE "gfx/pics/scizor/anim0.asm" -ShuckleAnimation: INCLUDE "gfx/pics/shuckle/anim0.asm" -HeracrossAnimation: INCLUDE "gfx/pics/heracross/anim0.asm" -SneaselAnimation: INCLUDE "gfx/pics/sneasel/anim0.asm" -TeddiursaAnimation: INCLUDE "gfx/pics/teddiursa/anim0.asm" -UrsaringAnimation: INCLUDE "gfx/pics/ursaring/anim0.asm" -SlugmaAnimation: INCLUDE "gfx/pics/slugma/anim0.asm" -MagcargoAnimation: INCLUDE "gfx/pics/magcargo/anim0.asm" -SwinubAnimation: INCLUDE "gfx/pics/swinub/anim0.asm" -PiloswineAnimation: INCLUDE "gfx/pics/piloswine/anim0.asm" -CorsolaAnimation: INCLUDE "gfx/pics/corsola/anim0.asm" -RemoraidAnimation: INCLUDE "gfx/pics/remoraid/anim0.asm" -OctilleryAnimation: INCLUDE "gfx/pics/octillery/anim0.asm" -DelibirdAnimation: INCLUDE "gfx/pics/delibird/anim0.asm" -MantineAnimation: INCLUDE "gfx/pics/mantine/anim0.asm" -SkarmoryAnimation: INCLUDE "gfx/pics/skarmory/anim0.asm" -HoundourAnimation: INCLUDE "gfx/pics/houndour/anim0.asm" -HoundoomAnimation: INCLUDE "gfx/pics/houndoom/anim0.asm" -KingdraAnimation: INCLUDE "gfx/pics/kingdra/anim0.asm" -PhanpyAnimation: INCLUDE "gfx/pics/phanpy/anim0.asm" -DonphanAnimation: INCLUDE "gfx/pics/donphan/anim0.asm" -Porygon2Animation: INCLUDE "gfx/pics/porygon2/anim0.asm" -StantlerAnimation: INCLUDE "gfx/pics/stantler/anim0.asm" -SmeargleAnimation: INCLUDE "gfx/pics/smeargle/anim0.asm" -TyrogueAnimation: INCLUDE "gfx/pics/tyrogue/anim0.asm" -HitmontopAnimation: INCLUDE "gfx/pics/hitmontop/anim0.asm" -SmoochumAnimation: INCLUDE "gfx/pics/smoochum/anim0.asm" -ElekidAnimation: INCLUDE "gfx/pics/elekid/anim0.asm" -MagbyAnimation: INCLUDE "gfx/pics/magby/anim0.asm" -MiltankAnimation: INCLUDE "gfx/pics/miltank/anim0.asm" -BlisseyAnimation: INCLUDE "gfx/pics/blissey/anim0.asm" -RaikouAnimation: INCLUDE "gfx/pics/raikou/anim0.asm" -EnteiAnimation: INCLUDE "gfx/pics/entei/anim0.asm" -SuicuneAnimation: INCLUDE "gfx/pics/suicune/anim0.asm" -LarvitarAnimation: INCLUDE "gfx/pics/larvitar/anim0.asm" -PupitarAnimation: INCLUDE "gfx/pics/pupitar/anim0.asm" -TyranitarAnimation: INCLUDE "gfx/pics/tyranitar/anim0.asm" -LugiaAnimation: INCLUDE "gfx/pics/lugia/anim0.asm" -HoOhAnimation: INCLUDE "gfx/pics/ho_oh/anim0.asm" -CelebiAnimation: INCLUDE "gfx/pics/celebi/anim0.asm" -EggAnimation: INCLUDE "gfx/pics/egg/anim0.asm" diff --git a/gfx/pics/bitmasks.asm b/gfx/pics/bitmasks.asm deleted file mode 100644 index 4f142431f..000000000 --- a/gfx/pics/bitmasks.asm +++ /dev/null @@ -1,252 +0,0 @@ -BulbasaurBitmasks: INCLUDE "gfx/pics/bulbasaur/bitmask.asm" -IvysaurBitmasks: INCLUDE "gfx/pics/ivysaur/bitmask.asm" -VenusaurBitmasks: INCLUDE "gfx/pics/venusaur/bitmask.asm" -CharmanderBitmasks: INCLUDE "gfx/pics/charmander/bitmask.asm" -CharmeleonBitmasks: INCLUDE "gfx/pics/charmeleon/bitmask.asm" -CharizardBitmasks: INCLUDE "gfx/pics/charizard/bitmask.asm" -SquirtleBitmasks: INCLUDE "gfx/pics/squirtle/bitmask.asm" -WartortleBitmasks: INCLUDE "gfx/pics/wartortle/bitmask.asm" -BlastoiseBitmasks: INCLUDE "gfx/pics/blastoise/bitmask.asm" -CaterpieBitmasks: INCLUDE "gfx/pics/caterpie/bitmask.asm" -MetapodBitmasks: INCLUDE "gfx/pics/metapod/bitmask.asm" -ButterfreeBitmasks: INCLUDE "gfx/pics/butterfree/bitmask.asm" -WeedleBitmasks: INCLUDE "gfx/pics/weedle/bitmask.asm" -KakunaBitmasks: INCLUDE "gfx/pics/kakuna/bitmask.asm" -BeedrillBitmasks: INCLUDE "gfx/pics/beedrill/bitmask.asm" -PidgeyBitmasks: INCLUDE "gfx/pics/pidgey/bitmask.asm" -PidgeottoBitmasks: INCLUDE "gfx/pics/pidgeotto/bitmask.asm" -PidgeotBitmasks: INCLUDE "gfx/pics/pidgeot/bitmask.asm" -RattataBitmasks: INCLUDE "gfx/pics/rattata/bitmask.asm" -RaticateBitmasks: INCLUDE "gfx/pics/raticate/bitmask.asm" -SpearowBitmasks: INCLUDE "gfx/pics/spearow/bitmask.asm" -FearowBitmasks: INCLUDE "gfx/pics/fearow/bitmask.asm" -EkansBitmasks: INCLUDE "gfx/pics/ekans/bitmask.asm" -ArbokBitmasks: INCLUDE "gfx/pics/arbok/bitmask.asm" -PikachuBitmasks: INCLUDE "gfx/pics/pikachu/bitmask.asm" -RaichuBitmasks: INCLUDE "gfx/pics/raichu/bitmask.asm" -SandshrewBitmasks: INCLUDE "gfx/pics/sandshrew/bitmask.asm" -SandslashBitmasks: INCLUDE "gfx/pics/sandslash/bitmask.asm" -NidoranFBitmasks: INCLUDE "gfx/pics/nidoran_f/bitmask.asm" -NidorinaBitmasks: INCLUDE "gfx/pics/nidorina/bitmask.asm" -NidoqueenBitmasks: INCLUDE "gfx/pics/nidoqueen/bitmask.asm" -NidoranMBitmasks: INCLUDE "gfx/pics/nidoran_m/bitmask.asm" -NidorinoBitmasks: INCLUDE "gfx/pics/nidorino/bitmask.asm" -NidokingBitmasks: INCLUDE "gfx/pics/nidoking/bitmask.asm" -ClefairyBitmasks: INCLUDE "gfx/pics/clefairy/bitmask.asm" -ClefableBitmasks: INCLUDE "gfx/pics/clefable/bitmask.asm" -VulpixBitmasks: INCLUDE "gfx/pics/vulpix/bitmask.asm" -NinetalesBitmasks: INCLUDE "gfx/pics/ninetales/bitmask.asm" -JigglypuffBitmasks: INCLUDE "gfx/pics/jigglypuff/bitmask.asm" -WigglytuffBitmasks: INCLUDE "gfx/pics/wigglytuff/bitmask.asm" -ZubatBitmasks: INCLUDE "gfx/pics/zubat/bitmask.asm" -GolbatBitmasks: INCLUDE "gfx/pics/golbat/bitmask.asm" -OddishBitmasks: INCLUDE "gfx/pics/oddish/bitmask.asm" -GloomBitmasks: INCLUDE "gfx/pics/gloom/bitmask.asm" -VileplumeBitmasks: INCLUDE "gfx/pics/vileplume/bitmask.asm" -ParasBitmasks: INCLUDE "gfx/pics/paras/bitmask.asm" -ParasectBitmasks: INCLUDE "gfx/pics/parasect/bitmask.asm" -VenonatBitmasks: INCLUDE "gfx/pics/venonat/bitmask.asm" -VenomothBitmasks: INCLUDE "gfx/pics/venomoth/bitmask.asm" -DiglettBitmasks: INCLUDE "gfx/pics/diglett/bitmask.asm" -DugtrioBitmasks: INCLUDE "gfx/pics/dugtrio/bitmask.asm" -MeowthBitmasks: INCLUDE "gfx/pics/meowth/bitmask.asm" -PersianBitmasks: INCLUDE "gfx/pics/persian/bitmask.asm" -PsyduckBitmasks: INCLUDE "gfx/pics/psyduck/bitmask.asm" -GolduckBitmasks: INCLUDE "gfx/pics/golduck/bitmask.asm" -MankeyBitmasks: INCLUDE "gfx/pics/mankey/bitmask.asm" -PrimeapeBitmasks: INCLUDE "gfx/pics/primeape/bitmask.asm" -GrowlitheBitmasks: INCLUDE "gfx/pics/growlithe/bitmask.asm" -ArcanineBitmasks: INCLUDE "gfx/pics/arcanine/bitmask.asm" -PoliwagBitmasks: INCLUDE "gfx/pics/poliwag/bitmask.asm" -PoliwhirlBitmasks: INCLUDE "gfx/pics/poliwhirl/bitmask.asm" -PoliwrathBitmasks: INCLUDE "gfx/pics/poliwrath/bitmask.asm" -AbraBitmasks: INCLUDE "gfx/pics/abra/bitmask.asm" -KadabraBitmasks: INCLUDE "gfx/pics/kadabra/bitmask.asm" -AlakazamBitmasks: INCLUDE "gfx/pics/alakazam/bitmask.asm" -MachopBitmasks: INCLUDE "gfx/pics/machop/bitmask.asm" -MachokeBitmasks: INCLUDE "gfx/pics/machoke/bitmask.asm" -MachampBitmasks: INCLUDE "gfx/pics/machamp/bitmask.asm" -BellsproutBitmasks: INCLUDE "gfx/pics/bellsprout/bitmask.asm" -WeepinbellBitmasks: INCLUDE "gfx/pics/weepinbell/bitmask.asm" -VictreebelBitmasks: INCLUDE "gfx/pics/victreebel/bitmask.asm" -TentacoolBitmasks: INCLUDE "gfx/pics/tentacool/bitmask.asm" -TentacruelBitmasks: INCLUDE "gfx/pics/tentacruel/bitmask.asm" -GeodudeBitmasks: INCLUDE "gfx/pics/geodude/bitmask.asm" -GravelerBitmasks: INCLUDE "gfx/pics/graveler/bitmask.asm" -GolemBitmasks: INCLUDE "gfx/pics/golem/bitmask.asm" -PonytaBitmasks: INCLUDE "gfx/pics/ponyta/bitmask.asm" -RapidashBitmasks: INCLUDE "gfx/pics/rapidash/bitmask.asm" -SlowpokeBitmasks: INCLUDE "gfx/pics/slowpoke/bitmask.asm" -SlowbroBitmasks: INCLUDE "gfx/pics/slowbro/bitmask.asm" -MagnemiteBitmasks: INCLUDE "gfx/pics/magnemite/bitmask.asm" -MagnetonBitmasks: INCLUDE "gfx/pics/magneton/bitmask.asm" -FarfetchDBitmasks: INCLUDE "gfx/pics/farfetch_d/bitmask.asm" -DoduoBitmasks: INCLUDE "gfx/pics/doduo/bitmask.asm" -DodrioBitmasks: INCLUDE "gfx/pics/dodrio/bitmask.asm" -SeelBitmasks: INCLUDE "gfx/pics/seel/bitmask.asm" -DewgongBitmasks: INCLUDE "gfx/pics/dewgong/bitmask.asm" -GrimerBitmasks: INCLUDE "gfx/pics/grimer/bitmask.asm" -MukBitmasks: INCLUDE "gfx/pics/muk/bitmask.asm" -ShellderBitmasks: INCLUDE "gfx/pics/shellder/bitmask.asm" -CloysterBitmasks: INCLUDE "gfx/pics/cloyster/bitmask.asm" -GastlyBitmasks: INCLUDE "gfx/pics/gastly/bitmask.asm" -HaunterBitmasks: INCLUDE "gfx/pics/haunter/bitmask.asm" -GengarBitmasks: INCLUDE "gfx/pics/gengar/bitmask.asm" -OnixBitmasks: INCLUDE "gfx/pics/onix/bitmask.asm" -DrowzeeBitmasks: INCLUDE "gfx/pics/drowzee/bitmask.asm" -HypnoBitmasks: INCLUDE "gfx/pics/hypno/bitmask.asm" -KrabbyBitmasks: INCLUDE "gfx/pics/krabby/bitmask.asm" -KinglerBitmasks: INCLUDE "gfx/pics/kingler/bitmask.asm" -VoltorbBitmasks: INCLUDE "gfx/pics/voltorb/bitmask.asm" -ElectrodeBitmasks: INCLUDE "gfx/pics/electrode/bitmask.asm" -ExeggcuteBitmasks: INCLUDE "gfx/pics/exeggcute/bitmask.asm" -ExeggutorBitmasks: INCLUDE "gfx/pics/exeggutor/bitmask.asm" -CuboneBitmasks: INCLUDE "gfx/pics/cubone/bitmask.asm" -MarowakBitmasks: INCLUDE "gfx/pics/marowak/bitmask.asm" -HitmonleeBitmasks: INCLUDE "gfx/pics/hitmonlee/bitmask.asm" -HitmonchanBitmasks: INCLUDE "gfx/pics/hitmonchan/bitmask.asm" -LickitungBitmasks: INCLUDE "gfx/pics/lickitung/bitmask.asm" -KoffingBitmasks: INCLUDE "gfx/pics/koffing/bitmask.asm" -WeezingBitmasks: INCLUDE "gfx/pics/weezing/bitmask.asm" -RhyhornBitmasks: INCLUDE "gfx/pics/rhyhorn/bitmask.asm" -RhydonBitmasks: INCLUDE "gfx/pics/rhydon/bitmask.asm" -ChanseyBitmasks: INCLUDE "gfx/pics/chansey/bitmask.asm" -TangelaBitmasks: INCLUDE "gfx/pics/tangela/bitmask.asm" -KangaskhanBitmasks: INCLUDE "gfx/pics/kangaskhan/bitmask.asm" -HorseaBitmasks: INCLUDE "gfx/pics/horsea/bitmask.asm" -SeadraBitmasks: INCLUDE "gfx/pics/seadra/bitmask.asm" -GoldeenBitmasks: INCLUDE "gfx/pics/goldeen/bitmask.asm" -SeakingBitmasks: INCLUDE "gfx/pics/seaking/bitmask.asm" -StaryuBitmasks: INCLUDE "gfx/pics/staryu/bitmask.asm" -StarmieBitmasks: INCLUDE "gfx/pics/starmie/bitmask.asm" -MrMimeBitmasks: INCLUDE "gfx/pics/mr__mime/bitmask.asm" -ScytherBitmasks: INCLUDE "gfx/pics/scyther/bitmask.asm" -JynxBitmasks: INCLUDE "gfx/pics/jynx/bitmask.asm" -ElectabuzzBitmasks: INCLUDE "gfx/pics/electabuzz/bitmask.asm" -MagmarBitmasks: INCLUDE "gfx/pics/magmar/bitmask.asm" -PinsirBitmasks: INCLUDE "gfx/pics/pinsir/bitmask.asm" -TaurosBitmasks: INCLUDE "gfx/pics/tauros/bitmask.asm" -MagikarpBitmasks: INCLUDE "gfx/pics/magikarp/bitmask.asm" -GyaradosBitmasks: INCLUDE "gfx/pics/gyarados/bitmask.asm" -LaprasBitmasks: INCLUDE "gfx/pics/lapras/bitmask.asm" -DittoBitmasks: INCLUDE "gfx/pics/ditto/bitmask.asm" -EeveeBitmasks: INCLUDE "gfx/pics/eevee/bitmask.asm" -VaporeonBitmasks: INCLUDE "gfx/pics/vaporeon/bitmask.asm" -JolteonBitmasks: INCLUDE "gfx/pics/jolteon/bitmask.asm" -FlareonBitmasks: INCLUDE "gfx/pics/flareon/bitmask.asm" -PorygonBitmasks: INCLUDE "gfx/pics/porygon/bitmask.asm" -OmanyteBitmasks: INCLUDE "gfx/pics/omanyte/bitmask.asm" -OmastarBitmasks: INCLUDE "gfx/pics/omastar/bitmask.asm" -KabutoBitmasks: INCLUDE "gfx/pics/kabuto/bitmask.asm" -KabutopsBitmasks: INCLUDE "gfx/pics/kabutops/bitmask.asm" -AerodactylBitmasks: INCLUDE "gfx/pics/aerodactyl/bitmask.asm" -SnorlaxBitmasks: INCLUDE "gfx/pics/snorlax/bitmask.asm" -ArticunoBitmasks: INCLUDE "gfx/pics/articuno/bitmask.asm" -ZapdosBitmasks: INCLUDE "gfx/pics/zapdos/bitmask.asm" -MoltresBitmasks: INCLUDE "gfx/pics/moltres/bitmask.asm" -DratiniBitmasks: INCLUDE "gfx/pics/dratini/bitmask.asm" -DragonairBitmasks: INCLUDE "gfx/pics/dragonair/bitmask.asm" -DragoniteBitmasks: INCLUDE "gfx/pics/dragonite/bitmask.asm" -MewtwoBitmasks: INCLUDE "gfx/pics/mewtwo/bitmask.asm" -MewBitmasks: INCLUDE "gfx/pics/mew/bitmask.asm" -ChikoritaBitmasks: INCLUDE "gfx/pics/chikorita/bitmask.asm" -BayleefBitmasks: INCLUDE "gfx/pics/bayleef/bitmask.asm" -MeganiumBitmasks: INCLUDE "gfx/pics/meganium/bitmask.asm" -CyndaquilBitmasks: INCLUDE "gfx/pics/cyndaquil/bitmask.asm" -QuilavaBitmasks: INCLUDE "gfx/pics/quilava/bitmask.asm" -TyphlosionBitmasks: INCLUDE "gfx/pics/typhlosion/bitmask.asm" -TotodileBitmasks: INCLUDE "gfx/pics/totodile/bitmask.asm" -CroconawBitmasks: INCLUDE "gfx/pics/croconaw/bitmask.asm" -FeraligatrBitmasks: INCLUDE "gfx/pics/feraligatr/bitmask.asm" -SentretBitmasks: INCLUDE "gfx/pics/sentret/bitmask.asm" -FurretBitmasks: INCLUDE "gfx/pics/furret/bitmask.asm" -HoothootBitmasks: INCLUDE "gfx/pics/hoothoot/bitmask.asm" -NoctowlBitmasks: INCLUDE "gfx/pics/noctowl/bitmask.asm" -LedybaBitmasks: INCLUDE "gfx/pics/ledyba/bitmask.asm" -LedianBitmasks: INCLUDE "gfx/pics/ledian/bitmask.asm" -SpinarakBitmasks: INCLUDE "gfx/pics/spinarak/bitmask.asm" -AriadosBitmasks: INCLUDE "gfx/pics/ariados/bitmask.asm" -CrobatBitmasks: INCLUDE "gfx/pics/crobat/bitmask.asm" -ChinchouBitmasks: INCLUDE "gfx/pics/chinchou/bitmask.asm" -LanturnBitmasks: INCLUDE "gfx/pics/lanturn/bitmask.asm" -PichuBitmasks: INCLUDE "gfx/pics/pichu/bitmask.asm" -CleffaBitmasks: INCLUDE "gfx/pics/cleffa/bitmask.asm" -IgglybuffBitmasks: INCLUDE "gfx/pics/igglybuff/bitmask.asm" -TogepiBitmasks: INCLUDE "gfx/pics/togepi/bitmask.asm" -TogeticBitmasks: INCLUDE "gfx/pics/togetic/bitmask.asm" -NatuBitmasks: INCLUDE "gfx/pics/natu/bitmask.asm" -XatuBitmasks: INCLUDE "gfx/pics/xatu/bitmask.asm" -MareepBitmasks: INCLUDE "gfx/pics/mareep/bitmask.asm" -FlaaffyBitmasks: INCLUDE "gfx/pics/flaaffy/bitmask.asm" -AmpharosBitmasks: INCLUDE "gfx/pics/ampharos/bitmask.asm" -BellossomBitmasks: INCLUDE "gfx/pics/bellossom/bitmask.asm" -MarillBitmasks: INCLUDE "gfx/pics/marill/bitmask.asm" -AzumarillBitmasks: INCLUDE "gfx/pics/azumarill/bitmask.asm" -SudowoodoBitmasks: INCLUDE "gfx/pics/sudowoodo/bitmask.asm" -PolitoedBitmasks: INCLUDE "gfx/pics/politoed/bitmask.asm" -HoppipBitmasks: INCLUDE "gfx/pics/hoppip/bitmask.asm" -SkiploomBitmasks: INCLUDE "gfx/pics/skiploom/bitmask.asm" -JumpluffBitmasks: INCLUDE "gfx/pics/jumpluff/bitmask.asm" -AipomBitmasks: INCLUDE "gfx/pics/aipom/bitmask.asm" -SunkernBitmasks: INCLUDE "gfx/pics/sunkern/bitmask.asm" -SunfloraBitmasks: INCLUDE "gfx/pics/sunflora/bitmask.asm" -YanmaBitmasks: INCLUDE "gfx/pics/yanma/bitmask.asm" -WooperBitmasks: INCLUDE "gfx/pics/wooper/bitmask.asm" -QuagsireBitmasks: INCLUDE "gfx/pics/quagsire/bitmask.asm" -EspeonBitmasks: INCLUDE "gfx/pics/espeon/bitmask.asm" -UmbreonBitmasks: INCLUDE "gfx/pics/umbreon/bitmask.asm" -MurkrowBitmasks: INCLUDE "gfx/pics/murkrow/bitmask.asm" -SlowkingBitmasks: INCLUDE "gfx/pics/slowking/bitmask.asm" -MisdreavusBitmasks: INCLUDE "gfx/pics/misdreavus/bitmask.asm" -UnownBitmasks: INCLUDE "gfx/pics/unown/bitmask.asm" -WobbuffetBitmasks: INCLUDE "gfx/pics/wobbuffet/bitmask.asm" -GirafarigBitmasks: INCLUDE "gfx/pics/girafarig/bitmask.asm" -PinecoBitmasks: INCLUDE "gfx/pics/pineco/bitmask.asm" -ForretressBitmasks: INCLUDE "gfx/pics/forretress/bitmask.asm" -DunsparceBitmasks: INCLUDE "gfx/pics/dunsparce/bitmask.asm" -GligarBitmasks: INCLUDE "gfx/pics/gligar/bitmask.asm" -SteelixBitmasks: INCLUDE "gfx/pics/steelix/bitmask.asm" -SnubbullBitmasks: INCLUDE "gfx/pics/snubbull/bitmask.asm" -GranbullBitmasks: INCLUDE "gfx/pics/granbull/bitmask.asm" -QwilfishBitmasks: INCLUDE "gfx/pics/qwilfish/bitmask.asm" -ScizorBitmasks: INCLUDE "gfx/pics/scizor/bitmask.asm" -ShuckleBitmasks: INCLUDE "gfx/pics/shuckle/bitmask.asm" -HeracrossBitmasks: INCLUDE "gfx/pics/heracross/bitmask.asm" -SneaselBitmasks: INCLUDE "gfx/pics/sneasel/bitmask.asm" -TeddiursaBitmasks: INCLUDE "gfx/pics/teddiursa/bitmask.asm" -UrsaringBitmasks: INCLUDE "gfx/pics/ursaring/bitmask.asm" -SlugmaBitmasks: INCLUDE "gfx/pics/slugma/bitmask.asm" -MagcargoBitmasks: INCLUDE "gfx/pics/magcargo/bitmask.asm" -SwinubBitmasks: INCLUDE "gfx/pics/swinub/bitmask.asm" -PiloswineBitmasks: INCLUDE "gfx/pics/piloswine/bitmask.asm" -CorsolaBitmasks: INCLUDE "gfx/pics/corsola/bitmask.asm" -RemoraidBitmasks: INCLUDE "gfx/pics/remoraid/bitmask.asm" -OctilleryBitmasks: INCLUDE "gfx/pics/octillery/bitmask.asm" -DelibirdBitmasks: INCLUDE "gfx/pics/delibird/bitmask.asm" -MantineBitmasks: INCLUDE "gfx/pics/mantine/bitmask.asm" -SkarmoryBitmasks: INCLUDE "gfx/pics/skarmory/bitmask.asm" -HoundourBitmasks: INCLUDE "gfx/pics/houndour/bitmask.asm" -HoundoomBitmasks: INCLUDE "gfx/pics/houndoom/bitmask.asm" -KingdraBitmasks: INCLUDE "gfx/pics/kingdra/bitmask.asm" -PhanpyBitmasks: INCLUDE "gfx/pics/phanpy/bitmask.asm" -DonphanBitmasks: INCLUDE "gfx/pics/donphan/bitmask.asm" -Porygon2Bitmasks: INCLUDE "gfx/pics/porygon2/bitmask.asm" -StantlerBitmasks: INCLUDE "gfx/pics/stantler/bitmask.asm" -SmeargleBitmasks: INCLUDE "gfx/pics/smeargle/bitmask.asm" -TyrogueBitmasks: INCLUDE "gfx/pics/tyrogue/bitmask.asm" -HitmontopBitmasks: INCLUDE "gfx/pics/hitmontop/bitmask.asm" -SmoochumBitmasks: INCLUDE "gfx/pics/smoochum/bitmask.asm" -ElekidBitmasks: INCLUDE "gfx/pics/elekid/bitmask.asm" -MagbyBitmasks: INCLUDE "gfx/pics/magby/bitmask.asm" -MiltankBitmasks: INCLUDE "gfx/pics/miltank/bitmask.asm" -BlisseyBitmasks: INCLUDE "gfx/pics/blissey/bitmask.asm" -RaikouBitmasks: INCLUDE "gfx/pics/raikou/bitmask.asm" -EnteiBitmasks: INCLUDE "gfx/pics/entei/bitmask.asm" -SuicuneBitmasks: INCLUDE "gfx/pics/suicune/bitmask.asm" -LarvitarBitmasks: INCLUDE "gfx/pics/larvitar/bitmask.asm" -PupitarBitmasks: INCLUDE "gfx/pics/pupitar/bitmask.asm" -TyranitarBitmasks: INCLUDE "gfx/pics/tyranitar/bitmask.asm" -LugiaBitmasks: INCLUDE "gfx/pics/lugia/bitmask.asm" -HoOhBitmasks: INCLUDE "gfx/pics/ho_oh/bitmask.asm" -CelebiBitmasks: INCLUDE "gfx/pics/celebi/bitmask.asm" -EggBitmasks: INCLUDE "gfx/pics/egg/bitmask.asm" diff --git a/gfx/pics/extras.asm b/gfx/pics/extras.asm deleted file mode 100644 index 682cbb635..000000000 --- a/gfx/pics/extras.asm +++ /dev/null @@ -1,252 +0,0 @@ -BulbasaurAnimationExtra: INCLUDE "gfx/pics/bulbasaur/anim1.asm" -IvysaurAnimationExtra: INCLUDE "gfx/pics/ivysaur/anim1.asm" -VenusaurAnimationExtra: INCLUDE "gfx/pics/venusaur/anim1.asm" -CharmanderAnimationExtra: INCLUDE "gfx/pics/charmander/anim1.asm" -CharmeleonAnimationExtra: INCLUDE "gfx/pics/charmeleon/anim1.asm" -CharizardAnimationExtra: INCLUDE "gfx/pics/charizard/anim1.asm" -SquirtleAnimationExtra: INCLUDE "gfx/pics/squirtle/anim1.asm" -WartortleAnimationExtra: INCLUDE "gfx/pics/wartortle/anim1.asm" -BlastoiseAnimationExtra: INCLUDE "gfx/pics/blastoise/anim1.asm" -CaterpieAnimationExtra: INCLUDE "gfx/pics/caterpie/anim1.asm" -MetapodAnimationExtra: INCLUDE "gfx/pics/metapod/anim1.asm" -ButterfreeAnimationExtra: INCLUDE "gfx/pics/butterfree/anim1.asm" -WeedleAnimationExtra: INCLUDE "gfx/pics/weedle/anim1.asm" -KakunaAnimationExtra: INCLUDE "gfx/pics/kakuna/anim1.asm" -BeedrillAnimationExtra: INCLUDE "gfx/pics/beedrill/anim1.asm" -PidgeyAnimationExtra: INCLUDE "gfx/pics/pidgey/anim1.asm" -PidgeottoAnimationExtra: INCLUDE "gfx/pics/pidgeotto/anim1.asm" -PidgeotAnimationExtra: INCLUDE "gfx/pics/pidgeot/anim1.asm" -RattataAnimationExtra: INCLUDE "gfx/pics/rattata/anim1.asm" -RaticateAnimationExtra: INCLUDE "gfx/pics/raticate/anim1.asm" -SpearowAnimationExtra: INCLUDE "gfx/pics/spearow/anim1.asm" -FearowAnimationExtra: INCLUDE "gfx/pics/fearow/anim1.asm" -EkansAnimationExtra: INCLUDE "gfx/pics/ekans/anim1.asm" -ArbokAnimationExtra: INCLUDE "gfx/pics/arbok/anim1.asm" -PikachuAnimationExtra: INCLUDE "gfx/pics/pikachu/anim1.asm" -RaichuAnimationExtra: INCLUDE "gfx/pics/raichu/anim1.asm" -SandshrewAnimationExtra: INCLUDE "gfx/pics/sandshrew/anim1.asm" -SandslashAnimationExtra: INCLUDE "gfx/pics/sandslash/anim1.asm" -NidoranFAnimationExtra: INCLUDE "gfx/pics/nidoran_f/anim1.asm" -NidorinaAnimationExtra: INCLUDE "gfx/pics/nidorina/anim1.asm" -NidoqueenAnimationExtra: INCLUDE "gfx/pics/nidoqueen/anim1.asm" -NidoranMAnimationExtra: INCLUDE "gfx/pics/nidoran_m/anim1.asm" -NidorinoAnimationExtra: INCLUDE "gfx/pics/nidorino/anim1.asm" -NidokingAnimationExtra: INCLUDE "gfx/pics/nidoking/anim1.asm" -ClefairyAnimationExtra: INCLUDE "gfx/pics/clefairy/anim1.asm" -ClefableAnimationExtra: INCLUDE "gfx/pics/clefable/anim1.asm" -VulpixAnimationExtra: INCLUDE "gfx/pics/vulpix/anim1.asm" -NinetalesAnimationExtra: INCLUDE "gfx/pics/ninetales/anim1.asm" -JigglypuffAnimationExtra: INCLUDE "gfx/pics/jigglypuff/anim1.asm" -WigglytuffAnimationExtra: INCLUDE "gfx/pics/wigglytuff/anim1.asm" -ZubatAnimationExtra: INCLUDE "gfx/pics/zubat/anim1.asm" -GolbatAnimationExtra: INCLUDE "gfx/pics/golbat/anim1.asm" -OddishAnimationExtra: INCLUDE "gfx/pics/oddish/anim1.asm" -GloomAnimationExtra: INCLUDE "gfx/pics/gloom/anim1.asm" -VileplumeAnimationExtra: INCLUDE "gfx/pics/vileplume/anim1.asm" -ParasAnimationExtra: INCLUDE "gfx/pics/paras/anim1.asm" -ParasectAnimationExtra: INCLUDE "gfx/pics/parasect/anim1.asm" -VenonatAnimationExtra: INCLUDE "gfx/pics/venonat/anim1.asm" -VenomothAnimationExtra: INCLUDE "gfx/pics/venomoth/anim1.asm" -DiglettAnimationExtra: INCLUDE "gfx/pics/diglett/anim1.asm" -DugtrioAnimationExtra: INCLUDE "gfx/pics/dugtrio/anim1.asm" -MeowthAnimationExtra: INCLUDE "gfx/pics/meowth/anim1.asm" -PersianAnimationExtra: INCLUDE "gfx/pics/persian/anim1.asm" -PsyduckAnimationExtra: INCLUDE "gfx/pics/psyduck/anim1.asm" -GolduckAnimationExtra: INCLUDE "gfx/pics/golduck/anim1.asm" -MankeyAnimationExtra: INCLUDE "gfx/pics/mankey/anim1.asm" -PrimeapeAnimationExtra: INCLUDE "gfx/pics/primeape/anim1.asm" -GrowlitheAnimationExtra: INCLUDE "gfx/pics/growlithe/anim1.asm" -ArcanineAnimationExtra: INCLUDE "gfx/pics/arcanine/anim1.asm" -PoliwagAnimationExtra: INCLUDE "gfx/pics/poliwag/anim1.asm" -PoliwhirlAnimationExtra: INCLUDE "gfx/pics/poliwhirl/anim1.asm" -PoliwrathAnimationExtra: INCLUDE "gfx/pics/poliwrath/anim1.asm" -AbraAnimationExtra: INCLUDE "gfx/pics/abra/anim1.asm" -KadabraAnimationExtra: INCLUDE "gfx/pics/kadabra/anim1.asm" -AlakazamAnimationExtra: INCLUDE "gfx/pics/alakazam/anim1.asm" -MachopAnimationExtra: INCLUDE "gfx/pics/machop/anim1.asm" -MachokeAnimationExtra: INCLUDE "gfx/pics/machoke/anim1.asm" -MachampAnimationExtra: INCLUDE "gfx/pics/machamp/anim1.asm" -BellsproutAnimationExtra: INCLUDE "gfx/pics/bellsprout/anim1.asm" -WeepinbellAnimationExtra: INCLUDE "gfx/pics/weepinbell/anim1.asm" -VictreebelAnimationExtra: INCLUDE "gfx/pics/victreebel/anim1.asm" -TentacoolAnimationExtra: INCLUDE "gfx/pics/tentacool/anim1.asm" -TentacruelAnimationExtra: INCLUDE "gfx/pics/tentacruel/anim1.asm" -GeodudeAnimationExtra: INCLUDE "gfx/pics/geodude/anim1.asm" -GravelerAnimationExtra: INCLUDE "gfx/pics/graveler/anim1.asm" -GolemAnimationExtra: INCLUDE "gfx/pics/golem/anim1.asm" -PonytaAnimationExtra: INCLUDE "gfx/pics/ponyta/anim1.asm" -RapidashAnimationExtra: INCLUDE "gfx/pics/rapidash/anim1.asm" -SlowpokeAnimationExtra: INCLUDE "gfx/pics/slowpoke/anim1.asm" -SlowbroAnimationExtra: INCLUDE "gfx/pics/slowbro/anim1.asm" -MagnemiteAnimationExtra: INCLUDE "gfx/pics/magnemite/anim1.asm" -MagnetonAnimationExtra: INCLUDE "gfx/pics/magneton/anim1.asm" -FarfetchDAnimationExtra: INCLUDE "gfx/pics/farfetch_d/anim1.asm" -DoduoAnimationExtra: INCLUDE "gfx/pics/doduo/anim1.asm" -DodrioAnimationExtra: INCLUDE "gfx/pics/dodrio/anim1.asm" -SeelAnimationExtra: INCLUDE "gfx/pics/seel/anim1.asm" -DewgongAnimationExtra: INCLUDE "gfx/pics/dewgong/anim1.asm" -GrimerAnimationExtra: INCLUDE "gfx/pics/grimer/anim1.asm" -MukAnimationExtra: INCLUDE "gfx/pics/muk/anim1.asm" -ShellderAnimationExtra: INCLUDE "gfx/pics/shellder/anim1.asm" -CloysterAnimationExtra: INCLUDE "gfx/pics/cloyster/anim1.asm" -GastlyAnimationExtra: INCLUDE "gfx/pics/gastly/anim1.asm" -HaunterAnimationExtra: INCLUDE "gfx/pics/haunter/anim1.asm" -GengarAnimationExtra: INCLUDE "gfx/pics/gengar/anim1.asm" -OnixAnimationExtra: INCLUDE "gfx/pics/onix/anim1.asm" -DrowzeeAnimationExtra: INCLUDE "gfx/pics/drowzee/anim1.asm" -HypnoAnimationExtra: INCLUDE "gfx/pics/hypno/anim1.asm" -KrabbyAnimationExtra: INCLUDE "gfx/pics/krabby/anim1.asm" -KinglerAnimationExtra: INCLUDE "gfx/pics/kingler/anim1.asm" -VoltorbAnimationExtra: INCLUDE "gfx/pics/voltorb/anim1.asm" -ElectrodeAnimationExtra: INCLUDE "gfx/pics/electrode/anim1.asm" -ExeggcuteAnimationExtra: INCLUDE "gfx/pics/exeggcute/anim1.asm" -ExeggutorAnimationExtra: INCLUDE "gfx/pics/exeggutor/anim1.asm" -CuboneAnimationExtra: INCLUDE "gfx/pics/cubone/anim1.asm" -MarowakAnimationExtra: INCLUDE "gfx/pics/marowak/anim1.asm" -HitmonleeAnimationExtra: INCLUDE "gfx/pics/hitmonlee/anim1.asm" -HitmonchanAnimationExtra: INCLUDE "gfx/pics/hitmonchan/anim1.asm" -LickitungAnimationExtra: INCLUDE "gfx/pics/lickitung/anim1.asm" -KoffingAnimationExtra: INCLUDE "gfx/pics/koffing/anim1.asm" -WeezingAnimationExtra: INCLUDE "gfx/pics/weezing/anim1.asm" -RhyhornAnimationExtra: INCLUDE "gfx/pics/rhyhorn/anim1.asm" -RhydonAnimationExtra: INCLUDE "gfx/pics/rhydon/anim1.asm" -ChanseyAnimationExtra: INCLUDE "gfx/pics/chansey/anim1.asm" -TangelaAnimationExtra: INCLUDE "gfx/pics/tangela/anim1.asm" -KangaskhanAnimationExtra: INCLUDE "gfx/pics/kangaskhan/anim1.asm" -HorseaAnimationExtra: INCLUDE "gfx/pics/horsea/anim1.asm" -SeadraAnimationExtra: INCLUDE "gfx/pics/seadra/anim1.asm" -GoldeenAnimationExtra: INCLUDE "gfx/pics/goldeen/anim1.asm" -SeakingAnimationExtra: INCLUDE "gfx/pics/seaking/anim1.asm" -StaryuAnimationExtra: INCLUDE "gfx/pics/staryu/anim1.asm" -StarmieAnimationExtra: INCLUDE "gfx/pics/starmie/anim1.asm" -MrMimeAnimationExtra: INCLUDE "gfx/pics/mr__mime/anim1.asm" -ScytherAnimationExtra: INCLUDE "gfx/pics/scyther/anim1.asm" -JynxAnimationExtra: INCLUDE "gfx/pics/jynx/anim1.asm" -ElectabuzzAnimationExtra: INCLUDE "gfx/pics/electabuzz/anim1.asm" -MagmarAnimationExtra: INCLUDE "gfx/pics/magmar/anim1.asm" -PinsirAnimationExtra: INCLUDE "gfx/pics/pinsir/anim1.asm" -TaurosAnimationExtra: INCLUDE "gfx/pics/tauros/anim1.asm" -MagikarpAnimationExtra: INCLUDE "gfx/pics/magikarp/anim1.asm" -GyaradosAnimationExtra: INCLUDE "gfx/pics/gyarados/anim1.asm" -LaprasAnimationExtra: INCLUDE "gfx/pics/lapras/anim1.asm" -DittoAnimationExtra: INCLUDE "gfx/pics/ditto/anim1.asm" -EeveeAnimationExtra: INCLUDE "gfx/pics/eevee/anim1.asm" -VaporeonAnimationExtra: INCLUDE "gfx/pics/vaporeon/anim1.asm" -JolteonAnimationExtra: INCLUDE "gfx/pics/jolteon/anim1.asm" -FlareonAnimationExtra: INCLUDE "gfx/pics/flareon/anim1.asm" -PorygonAnimationExtra: INCLUDE "gfx/pics/porygon/anim1.asm" -OmanyteAnimationExtra: INCLUDE "gfx/pics/omanyte/anim1.asm" -OmastarAnimationExtra: INCLUDE "gfx/pics/omastar/anim1.asm" -KabutoAnimationExtra: INCLUDE "gfx/pics/kabuto/anim1.asm" -KabutopsAnimationExtra: INCLUDE "gfx/pics/kabutops/anim1.asm" -AerodactylAnimationExtra: INCLUDE "gfx/pics/aerodactyl/anim1.asm" -SnorlaxAnimationExtra: INCLUDE "gfx/pics/snorlax/anim1.asm" -ArticunoAnimationExtra: INCLUDE "gfx/pics/articuno/anim1.asm" -ZapdosAnimationExtra: INCLUDE "gfx/pics/zapdos/anim1.asm" -MoltresAnimationExtra: INCLUDE "gfx/pics/moltres/anim1.asm" -DratiniAnimationExtra: INCLUDE "gfx/pics/dratini/anim1.asm" -DragonairAnimationExtra: INCLUDE "gfx/pics/dragonair/anim1.asm" -DragoniteAnimationExtra: INCLUDE "gfx/pics/dragonite/anim1.asm" -MewtwoAnimationExtra: INCLUDE "gfx/pics/mewtwo/anim1.asm" -MewAnimationExtra: INCLUDE "gfx/pics/mew/anim1.asm" -ChikoritaAnimationExtra: INCLUDE "gfx/pics/chikorita/anim1.asm" -BayleefAnimationExtra: INCLUDE "gfx/pics/bayleef/anim1.asm" -MeganiumAnimationExtra: INCLUDE "gfx/pics/meganium/anim1.asm" -CyndaquilAnimationExtra: INCLUDE "gfx/pics/cyndaquil/anim1.asm" -QuilavaAnimationExtra: INCLUDE "gfx/pics/quilava/anim1.asm" -TyphlosionAnimationExtra: INCLUDE "gfx/pics/typhlosion/anim1.asm" -TotodileAnimationExtra: INCLUDE "gfx/pics/totodile/anim1.asm" -CroconawAnimationExtra: INCLUDE "gfx/pics/croconaw/anim1.asm" -FeraligatrAnimationExtra: INCLUDE "gfx/pics/feraligatr/anim1.asm" -SentretAnimationExtra: INCLUDE "gfx/pics/sentret/anim1.asm" -FurretAnimationExtra: INCLUDE "gfx/pics/furret/anim1.asm" -HoothootAnimationExtra: INCLUDE "gfx/pics/hoothoot/anim1.asm" -NoctowlAnimationExtra: INCLUDE "gfx/pics/noctowl/anim1.asm" -LedybaAnimationExtra: INCLUDE "gfx/pics/ledyba/anim1.asm" -LedianAnimationExtra: INCLUDE "gfx/pics/ledian/anim1.asm" -SpinarakAnimationExtra: INCLUDE "gfx/pics/spinarak/anim1.asm" -AriadosAnimationExtra: INCLUDE "gfx/pics/ariados/anim1.asm" -CrobatAnimationExtra: INCLUDE "gfx/pics/crobat/anim1.asm" -ChinchouAnimationExtra: INCLUDE "gfx/pics/chinchou/anim1.asm" -LanturnAnimationExtra: INCLUDE "gfx/pics/lanturn/anim1.asm" -PichuAnimationExtra: INCLUDE "gfx/pics/pichu/anim1.asm" -CleffaAnimationExtra: INCLUDE "gfx/pics/cleffa/anim1.asm" -IgglybuffAnimationExtra: INCLUDE "gfx/pics/igglybuff/anim1.asm" -TogepiAnimationExtra: INCLUDE "gfx/pics/togepi/anim1.asm" -TogeticAnimationExtra: INCLUDE "gfx/pics/togetic/anim1.asm" -NatuAnimationExtra: INCLUDE "gfx/pics/natu/anim1.asm" -XatuAnimationExtra: INCLUDE "gfx/pics/xatu/anim1.asm" -MareepAnimationExtra: INCLUDE "gfx/pics/mareep/anim1.asm" -FlaaffyAnimationExtra: INCLUDE "gfx/pics/flaaffy/anim1.asm" -AmpharosAnimationExtra: INCLUDE "gfx/pics/ampharos/anim1.asm" -BellossomAnimationExtra: INCLUDE "gfx/pics/bellossom/anim1.asm" -MarillAnimationExtra: INCLUDE "gfx/pics/marill/anim1.asm" -AzumarillAnimationExtra: INCLUDE "gfx/pics/azumarill/anim1.asm" -SudowoodoAnimationExtra: INCLUDE "gfx/pics/sudowoodo/anim1.asm" -PolitoedAnimationExtra: INCLUDE "gfx/pics/politoed/anim1.asm" -HoppipAnimationExtra: INCLUDE "gfx/pics/hoppip/anim1.asm" -SkiploomAnimationExtra: INCLUDE "gfx/pics/skiploom/anim1.asm" -JumpluffAnimationExtra: INCLUDE "gfx/pics/jumpluff/anim1.asm" -AipomAnimationExtra: INCLUDE "gfx/pics/aipom/anim1.asm" -SunkernAnimationExtra: INCLUDE "gfx/pics/sunkern/anim1.asm" -SunfloraAnimationExtra: INCLUDE "gfx/pics/sunflora/anim1.asm" -YanmaAnimationExtra: INCLUDE "gfx/pics/yanma/anim1.asm" -WooperAnimationExtra: INCLUDE "gfx/pics/wooper/anim1.asm" -QuagsireAnimationExtra: INCLUDE "gfx/pics/quagsire/anim1.asm" -EspeonAnimationExtra: INCLUDE "gfx/pics/espeon/anim1.asm" -UmbreonAnimationExtra: INCLUDE "gfx/pics/umbreon/anim1.asm" -MurkrowAnimationExtra: INCLUDE "gfx/pics/murkrow/anim1.asm" -SlowkingAnimationExtra: INCLUDE "gfx/pics/slowking/anim1.asm" -MisdreavusAnimationExtra: INCLUDE "gfx/pics/misdreavus/anim1.asm" -UnownAnimationExtra: INCLUDE "gfx/pics/unown/anim1.asm" -WobbuffetAnimationExtra: INCLUDE "gfx/pics/wobbuffet/anim1.asm" -GirafarigAnimationExtra: INCLUDE "gfx/pics/girafarig/anim1.asm" -PinecoAnimationExtra: INCLUDE "gfx/pics/pineco/anim1.asm" -ForretressAnimationExtra: INCLUDE "gfx/pics/forretress/anim1.asm" -DunsparceAnimationExtra: INCLUDE "gfx/pics/dunsparce/anim1.asm" -GligarAnimationExtra: INCLUDE "gfx/pics/gligar/anim1.asm" -SteelixAnimationExtra: INCLUDE "gfx/pics/steelix/anim1.asm" -SnubbullAnimationExtra: INCLUDE "gfx/pics/snubbull/anim1.asm" -GranbullAnimationExtra: INCLUDE "gfx/pics/granbull/anim1.asm" -QwilfishAnimationExtra: INCLUDE "gfx/pics/qwilfish/anim1.asm" -ScizorAnimationExtra: INCLUDE "gfx/pics/scizor/anim1.asm" -ShuckleAnimationExtra: INCLUDE "gfx/pics/shuckle/anim1.asm" -HeracrossAnimationExtra: INCLUDE "gfx/pics/heracross/anim1.asm" -SneaselAnimationExtra: INCLUDE "gfx/pics/sneasel/anim1.asm" -TeddiursaAnimationExtra: INCLUDE "gfx/pics/teddiursa/anim1.asm" -UrsaringAnimationExtra: INCLUDE "gfx/pics/ursaring/anim1.asm" -SlugmaAnimationExtra: INCLUDE "gfx/pics/slugma/anim1.asm" -MagcargoAnimationExtra: INCLUDE "gfx/pics/magcargo/anim1.asm" -SwinubAnimationExtra: INCLUDE "gfx/pics/swinub/anim1.asm" -PiloswineAnimationExtra: INCLUDE "gfx/pics/piloswine/anim1.asm" -CorsolaAnimationExtra: INCLUDE "gfx/pics/corsola/anim1.asm" -RemoraidAnimationExtra: INCLUDE "gfx/pics/remoraid/anim1.asm" -OctilleryAnimationExtra: INCLUDE "gfx/pics/octillery/anim1.asm" -DelibirdAnimationExtra: INCLUDE "gfx/pics/delibird/anim1.asm" -MantineAnimationExtra: INCLUDE "gfx/pics/mantine/anim1.asm" -SkarmoryAnimationExtra: INCLUDE "gfx/pics/skarmory/anim1.asm" -HoundourAnimationExtra: INCLUDE "gfx/pics/houndour/anim1.asm" -HoundoomAnimationExtra: INCLUDE "gfx/pics/houndoom/anim1.asm" -KingdraAnimationExtra: INCLUDE "gfx/pics/kingdra/anim1.asm" -PhanpyAnimationExtra: INCLUDE "gfx/pics/phanpy/anim1.asm" -DonphanAnimationExtra: INCLUDE "gfx/pics/donphan/anim1.asm" -Porygon2AnimationExtra: INCLUDE "gfx/pics/porygon2/anim1.asm" -StantlerAnimationExtra: INCLUDE "gfx/pics/stantler/anim1.asm" -SmeargleAnimationExtra: INCLUDE "gfx/pics/smeargle/anim1.asm" -TyrogueAnimationExtra: INCLUDE "gfx/pics/tyrogue/anim1.asm" -HitmontopAnimationExtra: INCLUDE "gfx/pics/hitmontop/anim1.asm" -SmoochumAnimationExtra: INCLUDE "gfx/pics/smoochum/anim1.asm" -ElekidAnimationExtra: INCLUDE "gfx/pics/elekid/anim1.asm" -MagbyAnimationExtra: INCLUDE "gfx/pics/magby/anim1.asm" -MiltankAnimationExtra: INCLUDE "gfx/pics/miltank/anim1.asm" -BlisseyAnimationExtra: INCLUDE "gfx/pics/blissey/anim1.asm" -RaikouAnimationExtra: INCLUDE "gfx/pics/raikou/anim1.asm" -EnteiAnimationExtra: INCLUDE "gfx/pics/entei/anim1.asm" -SuicuneAnimationExtra: INCLUDE "gfx/pics/suicune/anim1.asm" -LarvitarAnimationExtra: INCLUDE "gfx/pics/larvitar/anim1.asm" -PupitarAnimationExtra: INCLUDE "gfx/pics/pupitar/anim1.asm" -TyranitarAnimationExtra: INCLUDE "gfx/pics/tyranitar/anim1.asm" -LugiaAnimationExtra: INCLUDE "gfx/pics/lugia/anim1.asm" -HoOhAnimationExtra: INCLUDE "gfx/pics/ho_oh/anim1.asm" -CelebiAnimationExtra: INCLUDE "gfx/pics/celebi/anim1.asm" -EggAnimationExtra: INCLUDE "gfx/pics/egg/anim1.asm" diff --git a/gfx/pics/johto_frames.asm b/gfx/pics/johto_frames.asm deleted file mode 100644 index 5bac4fde2..000000000 --- a/gfx/pics/johto_frames.asm +++ /dev/null @@ -1,102 +0,0 @@ -JohtoFrames: -ChikoritaFrames: INCLUDE "gfx/pics/chikorita/frames.asm" -BayleefFrames: INCLUDE "gfx/pics/bayleef/frames.asm" -MeganiumFrames: INCLUDE "gfx/pics/meganium/frames.asm" -CyndaquilFrames: INCLUDE "gfx/pics/cyndaquil/frames.asm" -QuilavaFrames: INCLUDE "gfx/pics/quilava/frames.asm" -TyphlosionFrames: INCLUDE "gfx/pics/typhlosion/frames.asm" -TotodileFrames: INCLUDE "gfx/pics/totodile/frames.asm" -CroconawFrames: INCLUDE "gfx/pics/croconaw/frames.asm" -FeraligatrFrames: INCLUDE "gfx/pics/feraligatr/frames.asm" -SentretFrames: INCLUDE "gfx/pics/sentret/frames.asm" -FurretFrames: INCLUDE "gfx/pics/furret/frames.asm" -HoothootFrames: INCLUDE "gfx/pics/hoothoot/frames.asm" -NoctowlFrames: INCLUDE "gfx/pics/noctowl/frames.asm" -LedybaFrames: INCLUDE "gfx/pics/ledyba/frames.asm" -LedianFrames: INCLUDE "gfx/pics/ledian/frames.asm" -SpinarakFrames: INCLUDE "gfx/pics/spinarak/frames.asm" -AriadosFrames: INCLUDE "gfx/pics/ariados/frames.asm" -CrobatFrames: INCLUDE "gfx/pics/crobat/frames.asm" -ChinchouFrames: INCLUDE "gfx/pics/chinchou/frames.asm" -LanturnFrames: INCLUDE "gfx/pics/lanturn/frames.asm" -PichuFrames: INCLUDE "gfx/pics/pichu/frames.asm" -CleffaFrames: INCLUDE "gfx/pics/cleffa/frames.asm" -IgglybuffFrames: INCLUDE "gfx/pics/igglybuff/frames.asm" -TogepiFrames: INCLUDE "gfx/pics/togepi/frames.asm" -TogeticFrames: INCLUDE "gfx/pics/togetic/frames.asm" -NatuFrames: INCLUDE "gfx/pics/natu/frames.asm" -XatuFrames: INCLUDE "gfx/pics/xatu/frames.asm" -MareepFrames: INCLUDE "gfx/pics/mareep/frames.asm" -FlaaffyFrames: INCLUDE "gfx/pics/flaaffy/frames.asm" -AmpharosFrames: INCLUDE "gfx/pics/ampharos/frames.asm" -BellossomFrames: INCLUDE "gfx/pics/bellossom/frames.asm" -MarillFrames: INCLUDE "gfx/pics/marill/frames.asm" -AzumarillFrames: INCLUDE "gfx/pics/azumarill/frames.asm" -SudowoodoFrames: INCLUDE "gfx/pics/sudowoodo/frames.asm" -PolitoedFrames: INCLUDE "gfx/pics/politoed/frames.asm" -HoppipFrames: INCLUDE "gfx/pics/hoppip/frames.asm" -SkiploomFrames: INCLUDE "gfx/pics/skiploom/frames.asm" -JumpluffFrames: INCLUDE "gfx/pics/jumpluff/frames.asm" -AipomFrames: INCLUDE "gfx/pics/aipom/frames.asm" -SunkernFrames: INCLUDE "gfx/pics/sunkern/frames.asm" -SunfloraFrames: INCLUDE "gfx/pics/sunflora/frames.asm" -YanmaFrames: INCLUDE "gfx/pics/yanma/frames.asm" -WooperFrames: INCLUDE "gfx/pics/wooper/frames.asm" -QuagsireFrames: INCLUDE "gfx/pics/quagsire/frames.asm" -EspeonFrames: INCLUDE "gfx/pics/espeon/frames.asm" -UmbreonFrames: INCLUDE "gfx/pics/umbreon/frames.asm" -MurkrowFrames: INCLUDE "gfx/pics/murkrow/frames.asm" -SlowkingFrames: INCLUDE "gfx/pics/slowking/frames.asm" -MisdreavusFrames: INCLUDE "gfx/pics/misdreavus/frames.asm" -UnownFrames: INCLUDE "gfx/pics/unown/frames.asm" -WobbuffetFrames: INCLUDE "gfx/pics/wobbuffet/frames.asm" -GirafarigFrames: INCLUDE "gfx/pics/girafarig/frames.asm" -PinecoFrames: INCLUDE "gfx/pics/pineco/frames.asm" -ForretressFrames: INCLUDE "gfx/pics/forretress/frames.asm" -DunsparceFrames: INCLUDE "gfx/pics/dunsparce/frames.asm" -GligarFrames: INCLUDE "gfx/pics/gligar/frames.asm" -SteelixFrames: INCLUDE "gfx/pics/steelix/frames.asm" -SnubbullFrames: INCLUDE "gfx/pics/snubbull/frames.asm" -GranbullFrames: INCLUDE "gfx/pics/granbull/frames.asm" -QwilfishFrames: INCLUDE "gfx/pics/qwilfish/frames.asm" -ScizorFrames: INCLUDE "gfx/pics/scizor/frames.asm" -ShuckleFrames: INCLUDE "gfx/pics/shuckle/frames.asm" -HeracrossFrames: INCLUDE "gfx/pics/heracross/frames.asm" -SneaselFrames: INCLUDE "gfx/pics/sneasel/frames.asm" -TeddiursaFrames: INCLUDE "gfx/pics/teddiursa/frames.asm" -UrsaringFrames: INCLUDE "gfx/pics/ursaring/frames.asm" -SlugmaFrames: INCLUDE "gfx/pics/slugma/frames.asm" -MagcargoFrames: INCLUDE "gfx/pics/magcargo/frames.asm" -SwinubFrames: INCLUDE "gfx/pics/swinub/frames.asm" -PiloswineFrames: INCLUDE "gfx/pics/piloswine/frames.asm" -CorsolaFrames: INCLUDE "gfx/pics/corsola/frames.asm" -RemoraidFrames: INCLUDE "gfx/pics/remoraid/frames.asm" -OctilleryFrames: INCLUDE "gfx/pics/octillery/frames.asm" -DelibirdFrames: INCLUDE "gfx/pics/delibird/frames.asm" -MantineFrames: INCLUDE "gfx/pics/mantine/frames.asm" -SkarmoryFrames: INCLUDE "gfx/pics/skarmory/frames.asm" -HoundourFrames: INCLUDE "gfx/pics/houndour/frames.asm" -HoundoomFrames: INCLUDE "gfx/pics/houndoom/frames.asm" -KingdraFrames: INCLUDE "gfx/pics/kingdra/frames.asm" -PhanpyFrames: INCLUDE "gfx/pics/phanpy/frames.asm" -DonphanFrames: INCLUDE "gfx/pics/donphan/frames.asm" -Porygon2Frames: INCLUDE "gfx/pics/porygon2/frames.asm" -StantlerFrames: INCLUDE "gfx/pics/stantler/frames.asm" -SmeargleFrames: INCLUDE "gfx/pics/smeargle/frames.asm" -TyrogueFrames: INCLUDE "gfx/pics/tyrogue/frames.asm" -HitmontopFrames: INCLUDE "gfx/pics/hitmontop/frames.asm" -SmoochumFrames: INCLUDE "gfx/pics/smoochum/frames.asm" -ElekidFrames: INCLUDE "gfx/pics/elekid/frames.asm" -MagbyFrames: INCLUDE "gfx/pics/magby/frames.asm" -MiltankFrames: INCLUDE "gfx/pics/miltank/frames.asm" -BlisseyFrames: INCLUDE "gfx/pics/blissey/frames.asm" -RaikouFrames: INCLUDE "gfx/pics/raikou/frames.asm" -EnteiFrames: INCLUDE "gfx/pics/entei/frames.asm" -SuicuneFrames: INCLUDE "gfx/pics/suicune/frames.asm" -LarvitarFrames: INCLUDE "gfx/pics/larvitar/frames.asm" -PupitarFrames: INCLUDE "gfx/pics/pupitar/frames.asm" -TyranitarFrames: INCLUDE "gfx/pics/tyranitar/frames.asm" -LugiaFrames: INCLUDE "gfx/pics/lugia/frames.asm" -HoOhFrames: INCLUDE "gfx/pics/ho_oh/frames.asm" -CelebiFrames: INCLUDE "gfx/pics/celebi/frames.asm" -EggFrames: INCLUDE "gfx/pics/egg/frames.asm" diff --git a/gfx/pics/kanto_frames.asm b/gfx/pics/kanto_frames.asm deleted file mode 100644 index 2cb87b2b9..000000000 --- a/gfx/pics/kanto_frames.asm +++ /dev/null @@ -1,152 +0,0 @@ -KantoFrames: -BulbasaurFrames: INCLUDE "gfx/pics/bulbasaur/frames.asm" -IvysaurFrames: INCLUDE "gfx/pics/ivysaur/frames.asm" -VenusaurFrames: INCLUDE "gfx/pics/venusaur/frames.asm" -CharmanderFrames: INCLUDE "gfx/pics/charmander/frames.asm" -CharmeleonFrames: INCLUDE "gfx/pics/charmeleon/frames.asm" -CharizardFrames: INCLUDE "gfx/pics/charizard/frames.asm" -SquirtleFrames: INCLUDE "gfx/pics/squirtle/frames.asm" -WartortleFrames: INCLUDE "gfx/pics/wartortle/frames.asm" -BlastoiseFrames: INCLUDE "gfx/pics/blastoise/frames.asm" -CaterpieFrames: INCLUDE "gfx/pics/caterpie/frames.asm" -MetapodFrames: INCLUDE "gfx/pics/metapod/frames.asm" -ButterfreeFrames: INCLUDE "gfx/pics/butterfree/frames.asm" -WeedleFrames: INCLUDE "gfx/pics/weedle/frames.asm" -KakunaFrames: INCLUDE "gfx/pics/kakuna/frames.asm" -BeedrillFrames: INCLUDE "gfx/pics/beedrill/frames.asm" -PidgeyFrames: INCLUDE "gfx/pics/pidgey/frames.asm" -PidgeottoFrames: INCLUDE "gfx/pics/pidgeotto/frames.asm" -PidgeotFrames: INCLUDE "gfx/pics/pidgeot/frames.asm" -RattataFrames: INCLUDE "gfx/pics/rattata/frames.asm" -RaticateFrames: INCLUDE "gfx/pics/raticate/frames.asm" -SpearowFrames: INCLUDE "gfx/pics/spearow/frames.asm" -FearowFrames: INCLUDE "gfx/pics/fearow/frames.asm" -EkansFrames: INCLUDE "gfx/pics/ekans/frames.asm" -ArbokFrames: INCLUDE "gfx/pics/arbok/frames.asm" -PikachuFrames: INCLUDE "gfx/pics/pikachu/frames.asm" -RaichuFrames: INCLUDE "gfx/pics/raichu/frames.asm" -SandshrewFrames: INCLUDE "gfx/pics/sandshrew/frames.asm" -SandslashFrames: INCLUDE "gfx/pics/sandslash/frames.asm" -NidoranFFrames: INCLUDE "gfx/pics/nidoran_f/frames.asm" -NidorinaFrames: INCLUDE "gfx/pics/nidorina/frames.asm" -NidoqueenFrames: INCLUDE "gfx/pics/nidoqueen/frames.asm" -NidoranMFrames: INCLUDE "gfx/pics/nidoran_m/frames.asm" -NidorinoFrames: INCLUDE "gfx/pics/nidorino/frames.asm" -NidokingFrames: INCLUDE "gfx/pics/nidoking/frames.asm" -ClefairyFrames: INCLUDE "gfx/pics/clefairy/frames.asm" -ClefableFrames: INCLUDE "gfx/pics/clefable/frames.asm" -VulpixFrames: INCLUDE "gfx/pics/vulpix/frames.asm" -NinetalesFrames: INCLUDE "gfx/pics/ninetales/frames.asm" -JigglypuffFrames: INCLUDE "gfx/pics/jigglypuff/frames.asm" -WigglytuffFrames: INCLUDE "gfx/pics/wigglytuff/frames.asm" -ZubatFrames: INCLUDE "gfx/pics/zubat/frames.asm" -GolbatFrames: INCLUDE "gfx/pics/golbat/frames.asm" -OddishFrames: INCLUDE "gfx/pics/oddish/frames.asm" -GloomFrames: INCLUDE "gfx/pics/gloom/frames.asm" -VileplumeFrames: INCLUDE "gfx/pics/vileplume/frames.asm" -ParasFrames: INCLUDE "gfx/pics/paras/frames.asm" -ParasectFrames: INCLUDE "gfx/pics/parasect/frames.asm" -VenonatFrames: INCLUDE "gfx/pics/venonat/frames.asm" -VenomothFrames: INCLUDE "gfx/pics/venomoth/frames.asm" -DiglettFrames: INCLUDE "gfx/pics/diglett/frames.asm" -DugtrioFrames: INCLUDE "gfx/pics/dugtrio/frames.asm" -MeowthFrames: INCLUDE "gfx/pics/meowth/frames.asm" -PersianFrames: INCLUDE "gfx/pics/persian/frames.asm" -PsyduckFrames: INCLUDE "gfx/pics/psyduck/frames.asm" -GolduckFrames: INCLUDE "gfx/pics/golduck/frames.asm" -MankeyFrames: INCLUDE "gfx/pics/mankey/frames.asm" -PrimeapeFrames: INCLUDE "gfx/pics/primeape/frames.asm" -GrowlitheFrames: INCLUDE "gfx/pics/growlithe/frames.asm" -ArcanineFrames: INCLUDE "gfx/pics/arcanine/frames.asm" -PoliwagFrames: INCLUDE "gfx/pics/poliwag/frames.asm" -PoliwhirlFrames: INCLUDE "gfx/pics/poliwhirl/frames.asm" -PoliwrathFrames: INCLUDE "gfx/pics/poliwrath/frames.asm" -AbraFrames: INCLUDE "gfx/pics/abra/frames.asm" -KadabraFrames: INCLUDE "gfx/pics/kadabra/frames.asm" -AlakazamFrames: INCLUDE "gfx/pics/alakazam/frames.asm" -MachopFrames: INCLUDE "gfx/pics/machop/frames.asm" -MachokeFrames: INCLUDE "gfx/pics/machoke/frames.asm" -MachampFrames: INCLUDE "gfx/pics/machamp/frames.asm" -BellsproutFrames: INCLUDE "gfx/pics/bellsprout/frames.asm" -WeepinbellFrames: INCLUDE "gfx/pics/weepinbell/frames.asm" -VictreebelFrames: INCLUDE "gfx/pics/victreebel/frames.asm" -TentacoolFrames: INCLUDE "gfx/pics/tentacool/frames.asm" -TentacruelFrames: INCLUDE "gfx/pics/tentacruel/frames.asm" -GeodudeFrames: INCLUDE "gfx/pics/geodude/frames.asm" -GravelerFrames: INCLUDE "gfx/pics/graveler/frames.asm" -GolemFrames: INCLUDE "gfx/pics/golem/frames.asm" -PonytaFrames: INCLUDE "gfx/pics/ponyta/frames.asm" -RapidashFrames: INCLUDE "gfx/pics/rapidash/frames.asm" -SlowpokeFrames: INCLUDE "gfx/pics/slowpoke/frames.asm" -SlowbroFrames: INCLUDE "gfx/pics/slowbro/frames.asm" -MagnemiteFrames: INCLUDE "gfx/pics/magnemite/frames.asm" -MagnetonFrames: INCLUDE "gfx/pics/magneton/frames.asm" -FarfetchDFrames: INCLUDE "gfx/pics/farfetch_d/frames.asm" -DoduoFrames: INCLUDE "gfx/pics/doduo/frames.asm" -DodrioFrames: INCLUDE "gfx/pics/dodrio/frames.asm" -SeelFrames: INCLUDE "gfx/pics/seel/frames.asm" -DewgongFrames: INCLUDE "gfx/pics/dewgong/frames.asm" -GrimerFrames: INCLUDE "gfx/pics/grimer/frames.asm" -MukFrames: INCLUDE "gfx/pics/muk/frames.asm" -ShellderFrames: INCLUDE "gfx/pics/shellder/frames.asm" -CloysterFrames: INCLUDE "gfx/pics/cloyster/frames.asm" -GastlyFrames: INCLUDE "gfx/pics/gastly/frames.asm" -HaunterFrames: INCLUDE "gfx/pics/haunter/frames.asm" -GengarFrames: INCLUDE "gfx/pics/gengar/frames.asm" -OnixFrames: INCLUDE "gfx/pics/onix/frames.asm" -DrowzeeFrames: INCLUDE "gfx/pics/drowzee/frames.asm" -HypnoFrames: INCLUDE "gfx/pics/hypno/frames.asm" -KrabbyFrames: INCLUDE "gfx/pics/krabby/frames.asm" -KinglerFrames: INCLUDE "gfx/pics/kingler/frames.asm" -VoltorbFrames: INCLUDE "gfx/pics/voltorb/frames.asm" -ElectrodeFrames: INCLUDE "gfx/pics/electrode/frames.asm" -ExeggcuteFrames: INCLUDE "gfx/pics/exeggcute/frames.asm" -ExeggutorFrames: INCLUDE "gfx/pics/exeggutor/frames.asm" -CuboneFrames: INCLUDE "gfx/pics/cubone/frames.asm" -MarowakFrames: INCLUDE "gfx/pics/marowak/frames.asm" -HitmonleeFrames: INCLUDE "gfx/pics/hitmonlee/frames.asm" -HitmonchanFrames: INCLUDE "gfx/pics/hitmonchan/frames.asm" -LickitungFrames: INCLUDE "gfx/pics/lickitung/frames.asm" -KoffingFrames: INCLUDE "gfx/pics/koffing/frames.asm" -WeezingFrames: INCLUDE "gfx/pics/weezing/frames.asm" -RhyhornFrames: INCLUDE "gfx/pics/rhyhorn/frames.asm" -RhydonFrames: INCLUDE "gfx/pics/rhydon/frames.asm" -ChanseyFrames: INCLUDE "gfx/pics/chansey/frames.asm" -TangelaFrames: INCLUDE "gfx/pics/tangela/frames.asm" -KangaskhanFrames: INCLUDE "gfx/pics/kangaskhan/frames.asm" -HorseaFrames: INCLUDE "gfx/pics/horsea/frames.asm" -SeadraFrames: INCLUDE "gfx/pics/seadra/frames.asm" -GoldeenFrames: INCLUDE "gfx/pics/goldeen/frames.asm" -SeakingFrames: INCLUDE "gfx/pics/seaking/frames.asm" -StaryuFrames: INCLUDE "gfx/pics/staryu/frames.asm" -StarmieFrames: INCLUDE "gfx/pics/starmie/frames.asm" -MrMimeFrames: INCLUDE "gfx/pics/mr__mime/frames.asm" -ScytherFrames: INCLUDE "gfx/pics/scyther/frames.asm" -JynxFrames: INCLUDE "gfx/pics/jynx/frames.asm" -ElectabuzzFrames: INCLUDE "gfx/pics/electabuzz/frames.asm" -MagmarFrames: INCLUDE "gfx/pics/magmar/frames.asm" -PinsirFrames: INCLUDE "gfx/pics/pinsir/frames.asm" -TaurosFrames: INCLUDE "gfx/pics/tauros/frames.asm" -MagikarpFrames: INCLUDE "gfx/pics/magikarp/frames.asm" -GyaradosFrames: INCLUDE "gfx/pics/gyarados/frames.asm" -LaprasFrames: INCLUDE "gfx/pics/lapras/frames.asm" -DittoFrames: INCLUDE "gfx/pics/ditto/frames.asm" -EeveeFrames: INCLUDE "gfx/pics/eevee/frames.asm" -VaporeonFrames: INCLUDE "gfx/pics/vaporeon/frames.asm" -JolteonFrames: INCLUDE "gfx/pics/jolteon/frames.asm" -FlareonFrames: INCLUDE "gfx/pics/flareon/frames.asm" -PorygonFrames: INCLUDE "gfx/pics/porygon/frames.asm" -OmanyteFrames: INCLUDE "gfx/pics/omanyte/frames.asm" -OmastarFrames: INCLUDE "gfx/pics/omastar/frames.asm" -KabutoFrames: INCLUDE "gfx/pics/kabuto/frames.asm" -KabutopsFrames: INCLUDE "gfx/pics/kabutops/frames.asm" -AerodactylFrames: INCLUDE "gfx/pics/aerodactyl/frames.asm" -SnorlaxFrames: INCLUDE "gfx/pics/snorlax/frames.asm" -ArticunoFrames: INCLUDE "gfx/pics/articuno/frames.asm" -ZapdosFrames: INCLUDE "gfx/pics/zapdos/frames.asm" -MoltresFrames: INCLUDE "gfx/pics/moltres/frames.asm" -DratiniFrames: INCLUDE "gfx/pics/dratini/frames.asm" -DragonairFrames: INCLUDE "gfx/pics/dragonair/frames.asm" -DragoniteFrames: INCLUDE "gfx/pics/dragonite/frames.asm" -MewtwoFrames: INCLUDE "gfx/pics/mewtwo/frames.asm" -MewFrames: INCLUDE "gfx/pics/mew/frames.asm" diff --git a/gfx/pics/palette_pointers.asm b/gfx/pics/palette_pointers.asm deleted file mode 100644 index 7756e8e7e..000000000 --- a/gfx/pics/palette_pointers.asm +++ /dev/null @@ -1,541 +0,0 @@ -PokemonPalettes: ; a8ce - -; 000 - RGB 30, 22, 17 - RGB 16, 14, 19 -; 000 shiny - RGB 30, 22, 17 - RGB 16, 14, 19 - -BulbasaurPalette: INCLUDE "gfx/pics/bulbasaur/normal.pal" -BulbasaurShinyPalette: INCLUDE "gfx/pics/bulbasaur/shiny.pal" -IvysaurPalette: INCLUDE "gfx/pics/ivysaur/normal.pal" -IvysaurShinyPalette: INCLUDE "gfx/pics/ivysaur/shiny.pal" -VenusaurPalette: INCLUDE "gfx/pics/venusaur/normal.pal" -VenusaurShinyPalette: INCLUDE "gfx/pics/venusaur/shiny.pal" -CharmanderPalette: INCLUDE "gfx/pics/charmander/normal.pal" -CharmanderShinyPalette: INCLUDE "gfx/pics/charmander/shiny.pal" -CharmeleonPalette: INCLUDE "gfx/pics/charmeleon/normal.pal" -CharmeleonShinyPalette: INCLUDE "gfx/pics/charmeleon/shiny.pal" -CharizardPalette: INCLUDE "gfx/pics/charizard/normal.pal" -CharizardShinyPalette: INCLUDE "gfx/pics/charizard/shiny.pal" -SquirtlePalette: INCLUDE "gfx/pics/squirtle/normal.pal" -SquirtleShinyPalette: INCLUDE "gfx/pics/squirtle/shiny.pal" -WartortlePalette: INCLUDE "gfx/pics/wartortle/normal.pal" -WartortleShinyPalette: INCLUDE "gfx/pics/wartortle/shiny.pal" -BlastoisePalette: INCLUDE "gfx/pics/blastoise/normal.pal" -BlastoiseShinyPalette: INCLUDE "gfx/pics/blastoise/shiny.pal" -CaterpiePalette: INCLUDE "gfx/pics/caterpie/normal.pal" -CaterpieShinyPalette: INCLUDE "gfx/pics/caterpie/shiny.pal" -MetapodPalette: INCLUDE "gfx/pics/metapod/normal.pal" -MetapodShinyPalette: INCLUDE "gfx/pics/metapod/shiny.pal" -ButterfreePalette: INCLUDE "gfx/pics/butterfree/normal.pal" -ButterfreeShinyPalette: INCLUDE "gfx/pics/butterfree/shiny.pal" -WeedlePalette: INCLUDE "gfx/pics/weedle/normal.pal" -WeedleShinyPalette: INCLUDE "gfx/pics/weedle/shiny.pal" -KakunaPalette: INCLUDE "gfx/pics/kakuna/normal.pal" -KakunaShinyPalette: INCLUDE "gfx/pics/kakuna/shiny.pal" -BeedrillPalette: INCLUDE "gfx/pics/beedrill/normal.pal" -BeedrillShinyPalette: INCLUDE "gfx/pics/beedrill/shiny.pal" -PidgeyPalette: INCLUDE "gfx/pics/pidgey/normal.pal" -PidgeyShinyPalette: INCLUDE "gfx/pics/pidgey/shiny.pal" -PidgeottoPalette: INCLUDE "gfx/pics/pidgeotto/normal.pal" -PidgeottoShinyPalette: INCLUDE "gfx/pics/pidgeotto/shiny.pal" -PidgeotPalette: INCLUDE "gfx/pics/pidgeot/normal.pal" -PidgeotShinyPalette: INCLUDE "gfx/pics/pidgeot/shiny.pal" -RattataPalette: INCLUDE "gfx/pics/rattata/normal.pal" -RattataShinyPalette: INCLUDE "gfx/pics/rattata/shiny.pal" -RaticatePalette: INCLUDE "gfx/pics/raticate/normal.pal" -RaticateShinyPalette: INCLUDE "gfx/pics/raticate/shiny.pal" -SpearowPalette: INCLUDE "gfx/pics/spearow/normal.pal" -SpearowShinyPalette: INCLUDE "gfx/pics/spearow/shiny.pal" -FearowPalette: INCLUDE "gfx/pics/fearow/normal.pal" -FearowShinyPalette: INCLUDE "gfx/pics/fearow/shiny.pal" -EkansPalette: INCLUDE "gfx/pics/ekans/normal.pal" -EkansShinyPalette: INCLUDE "gfx/pics/ekans/shiny.pal" -ArbokPalette: INCLUDE "gfx/pics/arbok/normal.pal" -ArbokShinyPalette: INCLUDE "gfx/pics/arbok/shiny.pal" -PikachuPalette: INCLUDE "gfx/pics/pikachu/normal.pal" -PikachuShinyPalette: INCLUDE "gfx/pics/pikachu/shiny.pal" -RaichuPalette: INCLUDE "gfx/pics/raichu/normal.pal" -RaichuShinyPalette: INCLUDE "gfx/pics/raichu/shiny.pal" -SandshrewPalette: INCLUDE "gfx/pics/sandshrew/normal.pal" -SandshrewShinyPalette: INCLUDE "gfx/pics/sandshrew/shiny.pal" -SandslashPalette: INCLUDE "gfx/pics/sandslash/normal.pal" -SandslashShinyPalette: INCLUDE "gfx/pics/sandslash/shiny.pal" -NidoranFPalette: INCLUDE "gfx/pics/nidoran_f/normal.pal" -NidoranFShinyPalette: INCLUDE "gfx/pics/nidoran_f/shiny.pal" -NidorinaPalette: INCLUDE "gfx/pics/nidorina/normal.pal" -NidorinaShinyPalette: INCLUDE "gfx/pics/nidorina/shiny.pal" -NidoqueenPalette: INCLUDE "gfx/pics/nidoqueen/normal.pal" -NidoqueenShinyPalette: INCLUDE "gfx/pics/nidoqueen/shiny.pal" -NidoranMPalette: INCLUDE "gfx/pics/nidoran_m/normal.pal" -NidoranMShinyPalette: INCLUDE "gfx/pics/nidoran_m/shiny.pal" -NidorinoPalette: INCLUDE "gfx/pics/nidorino/normal.pal" -NidorinoShinyPalette: INCLUDE "gfx/pics/nidorino/shiny.pal" -NidokingPalette: INCLUDE "gfx/pics/nidoking/normal.pal" -NidokingShinyPalette: INCLUDE "gfx/pics/nidoking/shiny.pal" -ClefairyPalette: INCLUDE "gfx/pics/clefairy/normal.pal" -ClefairyShinyPalette: INCLUDE "gfx/pics/clefairy/shiny.pal" -ClefablePalette: INCLUDE "gfx/pics/clefable/normal.pal" -ClefableShinyPalette: INCLUDE "gfx/pics/clefable/shiny.pal" -VulpixPalette: INCLUDE "gfx/pics/vulpix/normal.pal" -VulpixShinyPalette: INCLUDE "gfx/pics/vulpix/shiny.pal" -NinetalesPalette: INCLUDE "gfx/pics/ninetales/normal.pal" -NinetalesShinyPalette: INCLUDE "gfx/pics/ninetales/shiny.pal" -JigglypuffPalette: INCLUDE "gfx/pics/jigglypuff/normal.pal" -JigglypuffShinyPalette: INCLUDE "gfx/pics/jigglypuff/shiny.pal" -WigglytuffPalette: INCLUDE "gfx/pics/wigglytuff/normal.pal" -WigglytuffShinyPalette: INCLUDE "gfx/pics/wigglytuff/shiny.pal" -ZubatPalette: INCLUDE "gfx/pics/zubat/normal.pal" -ZubatShinyPalette: INCLUDE "gfx/pics/zubat/shiny.pal" -GolbatPalette: INCLUDE "gfx/pics/golbat/normal.pal" -GolbatShinyPalette: INCLUDE "gfx/pics/golbat/shiny.pal" -OddishPalette: INCLUDE "gfx/pics/oddish/normal.pal" -OddishShinyPalette: INCLUDE "gfx/pics/oddish/shiny.pal" -GloomPalette: INCLUDE "gfx/pics/gloom/normal.pal" -GloomShinyPalette: INCLUDE "gfx/pics/gloom/shiny.pal" -VileplumePalette: INCLUDE "gfx/pics/vileplume/normal.pal" -VileplumeShinyPalette: INCLUDE "gfx/pics/vileplume/shiny.pal" -ParasPalette: INCLUDE "gfx/pics/paras/normal.pal" -ParasShinyPalette: INCLUDE "gfx/pics/paras/shiny.pal" -ParasectPalette: INCLUDE "gfx/pics/parasect/normal.pal" -ParasectShinyPalette: INCLUDE "gfx/pics/parasect/shiny.pal" -VenonatPalette: INCLUDE "gfx/pics/venonat/normal.pal" -VenonatShinyPalette: INCLUDE "gfx/pics/venonat/shiny.pal" -VenomothPalette: INCLUDE "gfx/pics/venomoth/normal.pal" -VenomothShinyPalette: INCLUDE "gfx/pics/venomoth/shiny.pal" -DiglettPalette: INCLUDE "gfx/pics/diglett/normal.pal" -DiglettShinyPalette: INCLUDE "gfx/pics/diglett/shiny.pal" -DugtrioPalette: INCLUDE "gfx/pics/dugtrio/normal.pal" -DugtrioShinyPalette: INCLUDE "gfx/pics/dugtrio/shiny.pal" -MeowthPalette: INCLUDE "gfx/pics/meowth/normal.pal" -MeowthShinyPalette: INCLUDE "gfx/pics/meowth/shiny.pal" -PersianPalette: INCLUDE "gfx/pics/persian/normal.pal" -PersianShinyPalette: INCLUDE "gfx/pics/persian/shiny.pal" -PsyduckPalette: INCLUDE "gfx/pics/psyduck/normal.pal" -PsyduckShinyPalette: INCLUDE "gfx/pics/psyduck/shiny.pal" -GolduckPalette: INCLUDE "gfx/pics/golduck/normal.pal" -GolduckShinyPalette: INCLUDE "gfx/pics/golduck/shiny.pal" -MankeyPalette: INCLUDE "gfx/pics/mankey/normal.pal" -MankeyShinyPalette: INCLUDE "gfx/pics/mankey/shiny.pal" -PrimeapePalette: INCLUDE "gfx/pics/primeape/normal.pal" -PrimeapeShinyPalette: INCLUDE "gfx/pics/primeape/shiny.pal" -GrowlithePalette: INCLUDE "gfx/pics/growlithe/normal.pal" -GrowlitheShinyPalette: INCLUDE "gfx/pics/growlithe/shiny.pal" -ArcaninePalette: INCLUDE "gfx/pics/arcanine/normal.pal" -ArcanineShinyPalette: INCLUDE "gfx/pics/arcanine/shiny.pal" -PoliwagPalette: INCLUDE "gfx/pics/poliwag/normal.pal" -PoliwagShinyPalette: INCLUDE "gfx/pics/poliwag/shiny.pal" -PoliwhirlPalette: INCLUDE "gfx/pics/poliwhirl/normal.pal" -PoliwhirlShinyPalette: INCLUDE "gfx/pics/poliwhirl/shiny.pal" -PoliwrathPalette: INCLUDE "gfx/pics/poliwrath/normal.pal" -PoliwrathShinyPalette: INCLUDE "gfx/pics/poliwrath/shiny.pal" -AbraPalette: INCLUDE "gfx/pics/abra/normal.pal" -AbraShinyPalette: INCLUDE "gfx/pics/abra/shiny.pal" -KadabraPalette: INCLUDE "gfx/pics/kadabra/normal.pal" -KadabraShinyPalette: INCLUDE "gfx/pics/kadabra/shiny.pal" -AlakazamPalette: INCLUDE "gfx/pics/alakazam/normal.pal" -AlakazamShinyPalette: INCLUDE "gfx/pics/alakazam/shiny.pal" -MachopPalette: INCLUDE "gfx/pics/machop/normal.pal" -MachopShinyPalette: INCLUDE "gfx/pics/machop/shiny.pal" -MachokePalette: INCLUDE "gfx/pics/machoke/normal.pal" -MachokeShinyPalette: INCLUDE "gfx/pics/machoke/shiny.pal" -MachampPalette: INCLUDE "gfx/pics/machamp/normal.pal" -MachampShinyPalette: INCLUDE "gfx/pics/machamp/shiny.pal" -BellsproutPalette: INCLUDE "gfx/pics/bellsprout/normal.pal" -BellsproutShinyPalette: INCLUDE "gfx/pics/bellsprout/shiny.pal" -WeepinbellPalette: INCLUDE "gfx/pics/weepinbell/normal.pal" -WeepinbellShinyPalette: INCLUDE "gfx/pics/weepinbell/shiny.pal" -VictreebelPalette: INCLUDE "gfx/pics/victreebel/normal.pal" -VictreebelShinyPalette: INCLUDE "gfx/pics/victreebel/shiny.pal" -TentacoolPalette: INCLUDE "gfx/pics/tentacool/normal.pal" -TentacoolShinyPalette: INCLUDE "gfx/pics/tentacool/shiny.pal" -TentacruelPalette: INCLUDE "gfx/pics/tentacruel/normal.pal" -TentacruelShinyPalette: INCLUDE "gfx/pics/tentacruel/shiny.pal" -GeodudePalette: INCLUDE "gfx/pics/geodude/normal.pal" -GeodudeShinyPalette: INCLUDE "gfx/pics/geodude/shiny.pal" -GravelerPalette: INCLUDE "gfx/pics/graveler/normal.pal" -GravelerShinyPalette: INCLUDE "gfx/pics/graveler/shiny.pal" -GolemPalette: INCLUDE "gfx/pics/golem/normal.pal" -GolemShinyPalette: INCLUDE "gfx/pics/golem/shiny.pal" -PonytaPalette: INCLUDE "gfx/pics/ponyta/normal.pal" -PonytaShinyPalette: INCLUDE "gfx/pics/ponyta/shiny.pal" -RapidashPalette: INCLUDE "gfx/pics/rapidash/normal.pal" -RapidashShinyPalette: INCLUDE "gfx/pics/rapidash/shiny.pal" -SlowpokePalette: INCLUDE "gfx/pics/slowpoke/normal.pal" -SlowpokeShinyPalette: INCLUDE "gfx/pics/slowpoke/shiny.pal" -SlowbroPalette: INCLUDE "gfx/pics/slowbro/normal.pal" -SlowbroShinyPalette: INCLUDE "gfx/pics/slowbro/shiny.pal" -MagnemitePalette: INCLUDE "gfx/pics/magnemite/normal.pal" -MagnemiteShinyPalette: INCLUDE "gfx/pics/magnemite/shiny.pal" -MagnetonPalette: INCLUDE "gfx/pics/magneton/normal.pal" -MagnetonShinyPalette: INCLUDE "gfx/pics/magneton/shiny.pal" -FarfetchDPalette: INCLUDE "gfx/pics/farfetch_d/normal.pal" -FarfetchDShinyPalette: INCLUDE "gfx/pics/farfetch_d/shiny.pal" -DoduoPalette: INCLUDE "gfx/pics/doduo/normal.pal" -DoduoShinyPalette: INCLUDE "gfx/pics/doduo/shiny.pal" -DodrioPalette: INCLUDE "gfx/pics/dodrio/normal.pal" -DodrioShinyPalette: INCLUDE "gfx/pics/dodrio/shiny.pal" -SeelPalette: INCLUDE "gfx/pics/seel/normal.pal" -SeelShinyPalette: INCLUDE "gfx/pics/seel/shiny.pal" -DewgongPalette: INCLUDE "gfx/pics/dewgong/normal.pal" -DewgongShinyPalette: INCLUDE "gfx/pics/dewgong/shiny.pal" -GrimerPalette: INCLUDE "gfx/pics/grimer/normal.pal" -GrimerShinyPalette: INCLUDE "gfx/pics/grimer/shiny.pal" -MukPalette: INCLUDE "gfx/pics/muk/normal.pal" -MukShinyPalette: INCLUDE "gfx/pics/muk/shiny.pal" -ShellderPalette: INCLUDE "gfx/pics/shellder/normal.pal" -ShellderShinyPalette: INCLUDE "gfx/pics/shellder/shiny.pal" -CloysterPalette: INCLUDE "gfx/pics/cloyster/normal.pal" -CloysterShinyPalette: INCLUDE "gfx/pics/cloyster/shiny.pal" -GastlyPalette: INCLUDE "gfx/pics/gastly/normal.pal" -GastlyShinyPalette: INCLUDE "gfx/pics/gastly/shiny.pal" -HaunterPalette: INCLUDE "gfx/pics/haunter/normal.pal" -HaunterShinyPalette: INCLUDE "gfx/pics/haunter/shiny.pal" -GengarPalette: INCLUDE "gfx/pics/gengar/normal.pal" -GengarShinyPalette: INCLUDE "gfx/pics/gengar/shiny.pal" -OnixPalette: INCLUDE "gfx/pics/onix/normal.pal" -OnixShinyPalette: INCLUDE "gfx/pics/onix/shiny.pal" -DrowzeePalette: INCLUDE "gfx/pics/drowzee/normal.pal" -DrowzeeShinyPalette: INCLUDE "gfx/pics/drowzee/shiny.pal" -HypnoPalette: INCLUDE "gfx/pics/hypno/normal.pal" -HypnoShinyPalette: INCLUDE "gfx/pics/hypno/shiny.pal" -KrabbyPalette: INCLUDE "gfx/pics/krabby/normal.pal" -KrabbyShinyPalette: INCLUDE "gfx/pics/krabby/shiny.pal" -KinglerPalette: INCLUDE "gfx/pics/kingler/normal.pal" -KinglerShinyPalette: INCLUDE "gfx/pics/kingler/shiny.pal" -VoltorbPalette: INCLUDE "gfx/pics/voltorb/normal.pal" -VoltorbShinyPalette: INCLUDE "gfx/pics/voltorb/shiny.pal" -ElectrodePalette: INCLUDE "gfx/pics/electrode/normal.pal" -ElectrodeShinyPalette: INCLUDE "gfx/pics/electrode/shiny.pal" -ExeggcutePalette: INCLUDE "gfx/pics/exeggcute/normal.pal" -ExeggcuteShinyPalette: INCLUDE "gfx/pics/exeggcute/shiny.pal" -ExeggutorPalette: INCLUDE "gfx/pics/exeggutor/normal.pal" -ExeggutorShinyPalette: INCLUDE "gfx/pics/exeggutor/shiny.pal" -CubonePalette: INCLUDE "gfx/pics/cubone/normal.pal" -CuboneShinyPalette: INCLUDE "gfx/pics/cubone/shiny.pal" -MarowakPalette: INCLUDE "gfx/pics/marowak/normal.pal" -MarowakShinyPalette: INCLUDE "gfx/pics/marowak/shiny.pal" -HitmonleePalette: INCLUDE "gfx/pics/hitmonlee/normal.pal" -HitmonleeShinyPalette: INCLUDE "gfx/pics/hitmonlee/shiny.pal" -HitmonchanPalette: INCLUDE "gfx/pics/hitmonchan/normal.pal" -HitmonchanShinyPalette: INCLUDE "gfx/pics/hitmonchan/shiny.pal" -LickitungPalette: INCLUDE "gfx/pics/lickitung/normal.pal" -LickitungShinyPalette: INCLUDE "gfx/pics/lickitung/shiny.pal" -KoffingPalette: INCLUDE "gfx/pics/koffing/normal.pal" -KoffingShinyPalette: INCLUDE "gfx/pics/koffing/shiny.pal" -WeezingPalette: INCLUDE "gfx/pics/weezing/normal.pal" -WeezingShinyPalette: INCLUDE "gfx/pics/weezing/shiny.pal" -RhyhornPalette: INCLUDE "gfx/pics/rhyhorn/normal.pal" -RhyhornShinyPalette: INCLUDE "gfx/pics/rhyhorn/shiny.pal" -RhydonPalette: INCLUDE "gfx/pics/rhydon/normal.pal" -RhydonShinyPalette: INCLUDE "gfx/pics/rhydon/shiny.pal" -ChanseyPalette: INCLUDE "gfx/pics/chansey/normal.pal" -ChanseyShinyPalette: INCLUDE "gfx/pics/chansey/shiny.pal" -TangelaPalette: INCLUDE "gfx/pics/tangela/normal.pal" -TangelaShinyPalette: INCLUDE "gfx/pics/tangela/shiny.pal" -KangaskhanPalette: INCLUDE "gfx/pics/kangaskhan/normal.pal" -KangaskhanShinyPalette: INCLUDE "gfx/pics/kangaskhan/shiny.pal" -HorseaPalette: INCLUDE "gfx/pics/horsea/normal.pal" -HorseaShinyPalette: INCLUDE "gfx/pics/horsea/shiny.pal" -SeadraPalette: INCLUDE "gfx/pics/seadra/normal.pal" -SeadraShinyPalette: INCLUDE "gfx/pics/seadra/shiny.pal" -GoldeenPalette: INCLUDE "gfx/pics/goldeen/normal.pal" -GoldeenShinyPalette: INCLUDE "gfx/pics/goldeen/shiny.pal" -SeakingPalette: INCLUDE "gfx/pics/seaking/normal.pal" -SeakingShinyPalette: INCLUDE "gfx/pics/seaking/shiny.pal" -StaryuPalette: INCLUDE "gfx/pics/staryu/normal.pal" -StaryuShinyPalette: INCLUDE "gfx/pics/staryu/shiny.pal" -StarmiePalette: INCLUDE "gfx/pics/starmie/normal.pal" -StarmieShinyPalette: INCLUDE "gfx/pics/starmie/shiny.pal" -MrMimePalette: INCLUDE "gfx/pics/mr__mime/normal.pal" -MrMimeShinyPalette: INCLUDE "gfx/pics/mr__mime/shiny.pal" -ScytherPalette: INCLUDE "gfx/pics/scyther/normal.pal" -ScytherShinyPalette: INCLUDE "gfx/pics/scyther/shiny.pal" -JynxPalette: INCLUDE "gfx/pics/jynx/normal.pal" -JynxShinyPalette: INCLUDE "gfx/pics/jynx/shiny.pal" -ElectabuzzPalette: INCLUDE "gfx/pics/electabuzz/normal.pal" -ElectabuzzShinyPalette: INCLUDE "gfx/pics/electabuzz/shiny.pal" -MagmarPalette: INCLUDE "gfx/pics/magmar/normal.pal" -MagmarShinyPalette: INCLUDE "gfx/pics/magmar/shiny.pal" -PinsirPalette: INCLUDE "gfx/pics/pinsir/normal.pal" -PinsirShinyPalette: INCLUDE "gfx/pics/pinsir/shiny.pal" -TaurosPalette: INCLUDE "gfx/pics/tauros/normal.pal" -TaurosShinyPalette: INCLUDE "gfx/pics/tauros/shiny.pal" -MagikarpPalette: INCLUDE "gfx/pics/magikarp/normal.pal" -MagikarpShinyPalette: INCLUDE "gfx/pics/magikarp/shiny.pal" -GyaradosPalette: INCLUDE "gfx/pics/gyarados/normal.pal" -GyaradosShinyPalette: INCLUDE "gfx/pics/gyarados/shiny.pal" -LaprasPalette: INCLUDE "gfx/pics/lapras/normal.pal" -LaprasShinyPalette: INCLUDE "gfx/pics/lapras/shiny.pal" -DittoPalette: INCLUDE "gfx/pics/ditto/normal.pal" -DittoShinyPalette: INCLUDE "gfx/pics/ditto/shiny.pal" -EeveePalette: INCLUDE "gfx/pics/eevee/normal.pal" -EeveeShinyPalette: INCLUDE "gfx/pics/eevee/shiny.pal" -VaporeonPalette: INCLUDE "gfx/pics/vaporeon/normal.pal" -VaporeonShinyPalette: INCLUDE "gfx/pics/vaporeon/shiny.pal" -JolteonPalette: INCLUDE "gfx/pics/jolteon/normal.pal" -JolteonShinyPalette: INCLUDE "gfx/pics/jolteon/shiny.pal" -FlareonPalette: INCLUDE "gfx/pics/flareon/normal.pal" -FlareonShinyPalette: INCLUDE "gfx/pics/flareon/shiny.pal" -PorygonPalette: INCLUDE "gfx/pics/porygon/normal.pal" -PorygonShinyPalette: INCLUDE "gfx/pics/porygon/shiny.pal" -OmanytePalette: INCLUDE "gfx/pics/omanyte/normal.pal" -OmanyteShinyPalette: INCLUDE "gfx/pics/omanyte/shiny.pal" -OmastarPalette: INCLUDE "gfx/pics/omastar/normal.pal" -OmastarShinyPalette: INCLUDE "gfx/pics/omastar/shiny.pal" -KabutoPalette: INCLUDE "gfx/pics/kabuto/normal.pal" -KabutoShinyPalette: INCLUDE "gfx/pics/kabuto/shiny.pal" -KabutopsPalette: INCLUDE "gfx/pics/kabutops/normal.pal" -KabutopsShinyPalette: INCLUDE "gfx/pics/kabutops/shiny.pal" -AerodactylPalette: INCLUDE "gfx/pics/aerodactyl/normal.pal" -AerodactylShinyPalette: INCLUDE "gfx/pics/aerodactyl/shiny.pal" -SnorlaxPalette: INCLUDE "gfx/pics/snorlax/normal.pal" -SnorlaxShinyPalette: INCLUDE "gfx/pics/snorlax/shiny.pal" -ArticunoPalette: INCLUDE "gfx/pics/articuno/normal.pal" -ArticunoShinyPalette: INCLUDE "gfx/pics/articuno/shiny.pal" -ZapdosPalette: INCLUDE "gfx/pics/zapdos/normal.pal" -ZapdosShinyPalette: INCLUDE "gfx/pics/zapdos/shiny.pal" -MoltresPalette: INCLUDE "gfx/pics/moltres/normal.pal" -MoltresShinyPalette: INCLUDE "gfx/pics/moltres/shiny.pal" -DratiniPalette: INCLUDE "gfx/pics/dratini/normal.pal" -DratiniShinyPalette: INCLUDE "gfx/pics/dratini/shiny.pal" -DragonairPalette: INCLUDE "gfx/pics/dragonair/normal.pal" -DragonairShinyPalette: INCLUDE "gfx/pics/dragonair/shiny.pal" -DragonitePalette: INCLUDE "gfx/pics/dragonite/normal.pal" -DragoniteShinyPalette: INCLUDE "gfx/pics/dragonite/shiny.pal" -MewtwoPalette: INCLUDE "gfx/pics/mewtwo/normal.pal" -MewtwoShinyPalette: INCLUDE "gfx/pics/mewtwo/shiny.pal" -MewPalette: INCLUDE "gfx/pics/mew/normal.pal" -MewShinyPalette: INCLUDE "gfx/pics/mew/shiny.pal" -ChikoritaPalette: INCLUDE "gfx/pics/chikorita/normal.pal" -ChikoritaShinyPalette: INCLUDE "gfx/pics/chikorita/shiny.pal" -BayleefPalette: INCLUDE "gfx/pics/bayleef/normal.pal" -BayleefShinyPalette: INCLUDE "gfx/pics/bayleef/shiny.pal" -MeganiumPalette: INCLUDE "gfx/pics/meganium/normal.pal" -MeganiumShinyPalette: INCLUDE "gfx/pics/meganium/shiny.pal" -CyndaquilPalette: INCLUDE "gfx/pics/cyndaquil/normal.pal" -CyndaquilShinyPalette: INCLUDE "gfx/pics/cyndaquil/shiny.pal" -QuilavaPalette: INCLUDE "gfx/pics/quilava/normal.pal" -QuilavaShinyPalette: INCLUDE "gfx/pics/quilava/shiny.pal" -TyphlosionPalette: INCLUDE "gfx/pics/typhlosion/normal.pal" -TyphlosionShinyPalette: INCLUDE "gfx/pics/typhlosion/shiny.pal" -TotodilePalette: INCLUDE "gfx/pics/totodile/normal.pal" -TotodileShinyPalette: INCLUDE "gfx/pics/totodile/shiny.pal" -CroconawPalette: INCLUDE "gfx/pics/croconaw/normal.pal" -CroconawShinyPalette: INCLUDE "gfx/pics/croconaw/shiny.pal" -FeraligatrPalette: INCLUDE "gfx/pics/feraligatr/normal.pal" -FeraligatrShinyPalette: INCLUDE "gfx/pics/feraligatr/shiny.pal" -SentretPalette: INCLUDE "gfx/pics/sentret/normal.pal" -SentretShinyPalette: INCLUDE "gfx/pics/sentret/shiny.pal" -FurretPalette: INCLUDE "gfx/pics/furret/normal.pal" -FurretShinyPalette: INCLUDE "gfx/pics/furret/shiny.pal" -HoothootPalette: INCLUDE "gfx/pics/hoothoot/normal.pal" -HoothootShinyPalette: INCLUDE "gfx/pics/hoothoot/shiny.pal" -NoctowlPalette: INCLUDE "gfx/pics/noctowl/normal.pal" -NoctowlShinyPalette: INCLUDE "gfx/pics/noctowl/shiny.pal" -LedybaPalette: INCLUDE "gfx/pics/ledyba/normal.pal" -LedybaShinyPalette: INCLUDE "gfx/pics/ledyba/shiny.pal" -LedianPalette: INCLUDE "gfx/pics/ledian/normal.pal" -LedianShinyPalette: INCLUDE "gfx/pics/ledian/shiny.pal" -SpinarakPalette: INCLUDE "gfx/pics/spinarak/normal.pal" -SpinarakShinyPalette: INCLUDE "gfx/pics/spinarak/shiny.pal" -AriadosPalette: INCLUDE "gfx/pics/ariados/normal.pal" -AriadosShinyPalette: INCLUDE "gfx/pics/ariados/shiny.pal" -CrobatPalette: INCLUDE "gfx/pics/crobat/normal.pal" -CrobatShinyPalette: INCLUDE "gfx/pics/crobat/shiny.pal" -ChinchouPalette: INCLUDE "gfx/pics/chinchou/normal.pal" -ChinchouShinyPalette: INCLUDE "gfx/pics/chinchou/shiny.pal" -LanturnPalette: INCLUDE "gfx/pics/lanturn/normal.pal" -LanturnShinyPalette: INCLUDE "gfx/pics/lanturn/shiny.pal" -PichuPalette: INCLUDE "gfx/pics/pichu/normal.pal" -PichuShinyPalette: INCLUDE "gfx/pics/pichu/shiny.pal" -CleffaPalette: INCLUDE "gfx/pics/cleffa/normal.pal" -CleffaShinyPalette: INCLUDE "gfx/pics/cleffa/shiny.pal" -IgglybuffPalette: INCLUDE "gfx/pics/igglybuff/normal.pal" -IgglybuffShinyPalette: INCLUDE "gfx/pics/igglybuff/shiny.pal" -TogepiPalette: INCLUDE "gfx/pics/togepi/normal.pal" -TogepiShinyPalette: INCLUDE "gfx/pics/togepi/shiny.pal" -TogeticPalette: INCLUDE "gfx/pics/togetic/normal.pal" -TogeticShinyPalette: INCLUDE "gfx/pics/togetic/shiny.pal" -NatuPalette: INCLUDE "gfx/pics/natu/normal.pal" -NatuShinyPalette: INCLUDE "gfx/pics/natu/shiny.pal" -XatuPalette: INCLUDE "gfx/pics/xatu/normal.pal" -XatuShinyPalette: INCLUDE "gfx/pics/xatu/shiny.pal" -MareepPalette: INCLUDE "gfx/pics/mareep/normal.pal" -MareepShinyPalette: INCLUDE "gfx/pics/mareep/shiny.pal" -FlaaffyPalette: INCLUDE "gfx/pics/flaaffy/normal.pal" -FlaaffyShinyPalette: INCLUDE "gfx/pics/flaaffy/shiny.pal" -AmpharosPalette: INCLUDE "gfx/pics/ampharos/normal.pal" -AmpharosShinyPalette: INCLUDE "gfx/pics/ampharos/shiny.pal" -BellossomPalette: INCLUDE "gfx/pics/bellossom/normal.pal" -BellossomShinyPalette: INCLUDE "gfx/pics/bellossom/shiny.pal" -MarillPalette: INCLUDE "gfx/pics/marill/normal.pal" -MarillShinyPalette: INCLUDE "gfx/pics/marill/shiny.pal" -AzumarillPalette: INCLUDE "gfx/pics/azumarill/normal.pal" -AzumarillShinyPalette: INCLUDE "gfx/pics/azumarill/shiny.pal" -SudowoodoPalette: INCLUDE "gfx/pics/sudowoodo/normal.pal" -SudowoodoShinyPalette: INCLUDE "gfx/pics/sudowoodo/shiny.pal" -PolitoedPalette: INCLUDE "gfx/pics/politoed/normal.pal" -PolitoedShinyPalette: INCLUDE "gfx/pics/politoed/shiny.pal" -HoppipPalette: INCLUDE "gfx/pics/hoppip/normal.pal" -HoppipShinyPalette: INCLUDE "gfx/pics/hoppip/shiny.pal" -SkiploomPalette: INCLUDE "gfx/pics/skiploom/normal.pal" -SkiploomShinyPalette: INCLUDE "gfx/pics/skiploom/shiny.pal" -JumpluffPalette: INCLUDE "gfx/pics/jumpluff/normal.pal" -JumpluffShinyPalette: INCLUDE "gfx/pics/jumpluff/shiny.pal" -AipomPalette: INCLUDE "gfx/pics/aipom/normal.pal" -AipomShinyPalette: INCLUDE "gfx/pics/aipom/shiny.pal" -SunkernPalette: INCLUDE "gfx/pics/sunkern/normal.pal" -SunkernShinyPalette: INCLUDE "gfx/pics/sunkern/shiny.pal" -SunfloraPalette: INCLUDE "gfx/pics/sunflora/normal.pal" -SunfloraShinyPalette: INCLUDE "gfx/pics/sunflora/shiny.pal" -YanmaPalette: INCLUDE "gfx/pics/yanma/normal.pal" -YanmaShinyPalette: INCLUDE "gfx/pics/yanma/shiny.pal" -WooperPalette: INCLUDE "gfx/pics/wooper/normal.pal" -WooperShinyPalette: INCLUDE "gfx/pics/wooper/shiny.pal" -QuagsirePalette: INCLUDE "gfx/pics/quagsire/normal.pal" -QuagsireShinyPalette: INCLUDE "gfx/pics/quagsire/shiny.pal" -EspeonPalette: INCLUDE "gfx/pics/espeon/normal.pal" -EspeonShinyPalette: INCLUDE "gfx/pics/espeon/shiny.pal" -UmbreonPalette: INCLUDE "gfx/pics/umbreon/normal.pal" -UmbreonShinyPalette: INCLUDE "gfx/pics/umbreon/shiny.pal" -MurkrowPalette: INCLUDE "gfx/pics/murkrow/normal.pal" -MurkrowShinyPalette: INCLUDE "gfx/pics/murkrow/shiny.pal" -SlowkingPalette: INCLUDE "gfx/pics/slowking/normal.pal" -SlowkingShinyPalette: INCLUDE "gfx/pics/slowking/shiny.pal" -MisdreavusPalette: INCLUDE "gfx/pics/misdreavus/normal.pal" -MisdreavusShinyPalette: INCLUDE "gfx/pics/misdreavus/shiny.pal" -UnownPalette: INCLUDE "gfx/pics/unown/normal.pal" -UnownShinyPalette: INCLUDE "gfx/pics/unown/shiny.pal" -WobbuffetPalette: INCLUDE "gfx/pics/wobbuffet/normal.pal" -WobbuffetShinyPalette: INCLUDE "gfx/pics/wobbuffet/shiny.pal" -GirafarigPalette: INCLUDE "gfx/pics/girafarig/normal.pal" -GirafarigShinyPalette: INCLUDE "gfx/pics/girafarig/shiny.pal" -PinecoPalette: INCLUDE "gfx/pics/pineco/normal.pal" -PinecoShinyPalette: INCLUDE "gfx/pics/pineco/shiny.pal" -ForretressPalette: INCLUDE "gfx/pics/forretress/normal.pal" -ForretressShinyPalette: INCLUDE "gfx/pics/forretress/shiny.pal" -DunsparcePalette: INCLUDE "gfx/pics/dunsparce/normal.pal" -DunsparceShinyPalette: INCLUDE "gfx/pics/dunsparce/shiny.pal" -GligarPalette: INCLUDE "gfx/pics/gligar/normal.pal" -GligarShinyPalette: INCLUDE "gfx/pics/gligar/shiny.pal" -SteelixPalette: INCLUDE "gfx/pics/steelix/normal.pal" -SteelixShinyPalette: INCLUDE "gfx/pics/steelix/shiny.pal" -SnubbullPalette: INCLUDE "gfx/pics/snubbull/normal.pal" -SnubbullShinyPalette: INCLUDE "gfx/pics/snubbull/shiny.pal" -GranbullPalette: INCLUDE "gfx/pics/granbull/normal.pal" -GranbullShinyPalette: INCLUDE "gfx/pics/granbull/shiny.pal" -QwilfishPalette: INCLUDE "gfx/pics/qwilfish/normal.pal" -QwilfishShinyPalette: INCLUDE "gfx/pics/qwilfish/shiny.pal" -ScizorPalette: INCLUDE "gfx/pics/scizor/normal.pal" -ScizorShinyPalette: INCLUDE "gfx/pics/scizor/shiny.pal" -ShucklePalette: INCLUDE "gfx/pics/shuckle/normal.pal" -ShuckleShinyPalette: INCLUDE "gfx/pics/shuckle/shiny.pal" -HeracrossPalette: INCLUDE "gfx/pics/heracross/normal.pal" -HeracrossShinyPalette: INCLUDE "gfx/pics/heracross/shiny.pal" -SneaselPalette: INCLUDE "gfx/pics/sneasel/normal.pal" -SneaselShinyPalette: INCLUDE "gfx/pics/sneasel/shiny.pal" -TeddiursaPalette: INCLUDE "gfx/pics/teddiursa/normal.pal" -TeddiursaShinyPalette: INCLUDE "gfx/pics/teddiursa/shiny.pal" -UrsaringPalette: INCLUDE "gfx/pics/ursaring/normal.pal" -UrsaringShinyPalette: INCLUDE "gfx/pics/ursaring/shiny.pal" -SlugmaPalette: INCLUDE "gfx/pics/slugma/normal.pal" -SlugmaShinyPalette: INCLUDE "gfx/pics/slugma/shiny.pal" -MagcargoPalette: INCLUDE "gfx/pics/magcargo/normal.pal" -MagcargoShinyPalette: INCLUDE "gfx/pics/magcargo/shiny.pal" -SwinubPalette: INCLUDE "gfx/pics/swinub/normal.pal" -SwinubShinyPalette: INCLUDE "gfx/pics/swinub/shiny.pal" -PiloswinePalette: INCLUDE "gfx/pics/piloswine/normal.pal" -PiloswineShinyPalette: INCLUDE "gfx/pics/piloswine/shiny.pal" -CorsolaPalette: INCLUDE "gfx/pics/corsola/normal.pal" -CorsolaShinyPalette: INCLUDE "gfx/pics/corsola/shiny.pal" -RemoraidPalette: INCLUDE "gfx/pics/remoraid/normal.pal" -RemoraidShinyPalette: INCLUDE "gfx/pics/remoraid/shiny.pal" -OctilleryPalette: INCLUDE "gfx/pics/octillery/normal.pal" -OctilleryShinyPalette: INCLUDE "gfx/pics/octillery/shiny.pal" -DelibirdPalette: INCLUDE "gfx/pics/delibird/normal.pal" -DelibirdShinyPalette: INCLUDE "gfx/pics/delibird/shiny.pal" -MantinePalette: INCLUDE "gfx/pics/mantine/normal.pal" -MantineShinyPalette: INCLUDE "gfx/pics/mantine/shiny.pal" -SkarmoryPalette: INCLUDE "gfx/pics/skarmory/normal.pal" -SkarmoryShinyPalette: INCLUDE "gfx/pics/skarmory/shiny.pal" -HoundourPalette: INCLUDE "gfx/pics/houndour/normal.pal" -HoundourShinyPalette: INCLUDE "gfx/pics/houndour/shiny.pal" -HoundoomPalette: INCLUDE "gfx/pics/houndoom/normal.pal" -HoundoomShinyPalette: INCLUDE "gfx/pics/houndoom/shiny.pal" -KingdraPalette: INCLUDE "gfx/pics/kingdra/normal.pal" -KingdraShinyPalette: INCLUDE "gfx/pics/kingdra/shiny.pal" -PhanpyPalette: INCLUDE "gfx/pics/phanpy/normal.pal" -PhanpyShinyPalette: INCLUDE "gfx/pics/phanpy/shiny.pal" -DonphanPalette: INCLUDE "gfx/pics/donphan/normal.pal" -DonphanShinyPalette: INCLUDE "gfx/pics/donphan/shiny.pal" -Porygon2Palette: INCLUDE "gfx/pics/porygon2/normal.pal" -Porygon2ShinyPalette: INCLUDE "gfx/pics/porygon2/shiny.pal" -StantlerPalette: INCLUDE "gfx/pics/stantler/normal.pal" -StantlerShinyPalette: INCLUDE "gfx/pics/stantler/shiny.pal" -SmearglePalette: INCLUDE "gfx/pics/smeargle/normal.pal" -SmeargleShinyPalette: INCLUDE "gfx/pics/smeargle/shiny.pal" -TyroguePalette: INCLUDE "gfx/pics/tyrogue/normal.pal" -TyrogueShinyPalette: INCLUDE "gfx/pics/tyrogue/shiny.pal" -HitmontopPalette: INCLUDE "gfx/pics/hitmontop/normal.pal" -HitmontopShinyPalette: INCLUDE "gfx/pics/hitmontop/shiny.pal" -SmoochumPalette: INCLUDE "gfx/pics/smoochum/normal.pal" -SmoochumShinyPalette: INCLUDE "gfx/pics/smoochum/shiny.pal" -ElekidPalette: INCLUDE "gfx/pics/elekid/normal.pal" -ElekidShinyPalette: INCLUDE "gfx/pics/elekid/shiny.pal" -MagbyPalette: INCLUDE "gfx/pics/magby/normal.pal" -MagbyShinyPalette: INCLUDE "gfx/pics/magby/shiny.pal" -MiltankPalette: INCLUDE "gfx/pics/miltank/normal.pal" -MiltankShinyPalette: INCLUDE "gfx/pics/miltank/shiny.pal" -BlisseyPalette: INCLUDE "gfx/pics/blissey/normal.pal" -BlisseyShinyPalette: INCLUDE "gfx/pics/blissey/shiny.pal" -RaikouPalette: INCLUDE "gfx/pics/raikou/normal.pal" -RaikouShinyPalette: INCLUDE "gfx/pics/raikou/shiny.pal" -EnteiPalette: INCLUDE "gfx/pics/entei/normal.pal" -EnteiShinyPalette: INCLUDE "gfx/pics/entei/shiny.pal" -SuicunePalette: INCLUDE "gfx/pics/suicune/normal.pal" -SuicuneShinyPalette: INCLUDE "gfx/pics/suicune/shiny.pal" -LarvitarPalette: INCLUDE "gfx/pics/larvitar/normal.pal" -LarvitarShinyPalette: INCLUDE "gfx/pics/larvitar/shiny.pal" -PupitarPalette: INCLUDE "gfx/pics/pupitar/normal.pal" -PupitarShinyPalette: INCLUDE "gfx/pics/pupitar/shiny.pal" -TyranitarPalette: INCLUDE "gfx/pics/tyranitar/normal.pal" -TyranitarShinyPalette: INCLUDE "gfx/pics/tyranitar/shiny.pal" -LugiaPalette: INCLUDE "gfx/pics/lugia/normal.pal" -LugiaShinyPalette: INCLUDE "gfx/pics/lugia/shiny.pal" -HoOhPalette: INCLUDE "gfx/pics/ho_oh/normal.pal" -HoOhShinyPalette: INCLUDE "gfx/pics/ho_oh/shiny.pal" -CelebiPalette: INCLUDE "gfx/pics/celebi/normal.pal" -CelebiShinyPalette: INCLUDE "gfx/pics/celebi/shiny.pal" - -; 252 - RGB 30, 26, 11 - RGB 23, 16, 00 -; 252 shiny - RGB 30, 26, 11 - RGB 23, 16, 00 - -; Egg - RGB 30, 26, 11 - RGB 23, 16, 00 -; Egg shiny - RGB 30, 26, 11 - RGB 23, 16, 00 - -; 254 - RGB 30, 26, 11 - RGB 23, 16, 00 -; 254 shiny - RGB 30, 26, 11 - RGB 23, 16, 00 - -; 255 - RGB 23, 23, 23 - RGB 17, 17, 17 -; 255 shiny - RGB 23, 23, 23 - RGB 17, 17, 17 - -; b0ce diff --git a/gfx/pics/unown_anims.asm b/gfx/pics/unown_anims.asm deleted file mode 100644 index 3f988c2f6..000000000 --- a/gfx/pics/unown_anims.asm +++ /dev/null @@ -1,27 +0,0 @@ -UnownAnimations: -UnownAAnimation: INCLUDE "gfx/pics/unown_a/anim0.asm" -UnownBAnimation: INCLUDE "gfx/pics/unown_b/anim0.asm" -UnownCAnimation: INCLUDE "gfx/pics/unown_c/anim0.asm" -UnownDAnimation: INCLUDE "gfx/pics/unown_d/anim0.asm" -UnownEAnimation: INCLUDE "gfx/pics/unown_e/anim0.asm" -UnownFAnimation: INCLUDE "gfx/pics/unown_f/anim0.asm" -UnownGAnimation: INCLUDE "gfx/pics/unown_g/anim0.asm" -UnownHAnimation: INCLUDE "gfx/pics/unown_h/anim0.asm" -UnownIAnimation: INCLUDE "gfx/pics/unown_i/anim0.asm" -UnownJAnimation: INCLUDE "gfx/pics/unown_j/anim0.asm" -UnownKAnimation: INCLUDE "gfx/pics/unown_k/anim0.asm" -UnownLAnimation: INCLUDE "gfx/pics/unown_l/anim0.asm" -UnownMAnimation: INCLUDE "gfx/pics/unown_m/anim0.asm" -UnownNAnimation: INCLUDE "gfx/pics/unown_n/anim0.asm" -UnownOAnimation: INCLUDE "gfx/pics/unown_o/anim0.asm" -UnownPAnimation: INCLUDE "gfx/pics/unown_p/anim0.asm" -UnownQAnimation: INCLUDE "gfx/pics/unown_q/anim0.asm" -UnownRAnimation: INCLUDE "gfx/pics/unown_r/anim0.asm" -UnownSAnimation: INCLUDE "gfx/pics/unown_s/anim0.asm" -UnownTAnimation: INCLUDE "gfx/pics/unown_t/anim0.asm" -UnownUAnimation: INCLUDE "gfx/pics/unown_u/anim0.asm" -UnownVAnimation: INCLUDE "gfx/pics/unown_v/anim0.asm" -UnownWAnimation: INCLUDE "gfx/pics/unown_w/anim0.asm" -UnownXAnimation: INCLUDE "gfx/pics/unown_x/anim0.asm" -UnownYAnimation: INCLUDE "gfx/pics/unown_y/anim0.asm" -UnownZAnimation: INCLUDE "gfx/pics/unown_z/anim0.asm" diff --git a/gfx/pics/unown_bitmasks.asm b/gfx/pics/unown_bitmasks.asm deleted file mode 100644 index 5df6b7463..000000000 --- a/gfx/pics/unown_bitmasks.asm +++ /dev/null @@ -1,26 +0,0 @@ -UnownABitmasks: INCLUDE "gfx/pics/unown_a/bitmask.asm" -UnownBBitmasks: INCLUDE "gfx/pics/unown_b/bitmask.asm" -UnownCBitmasks: INCLUDE "gfx/pics/unown_c/bitmask.asm" -UnownDBitmasks: INCLUDE "gfx/pics/unown_d/bitmask.asm" -UnownEBitmasks: INCLUDE "gfx/pics/unown_e/bitmask.asm" -UnownFBitmasks: INCLUDE "gfx/pics/unown_f/bitmask.asm" -UnownGBitmasks: INCLUDE "gfx/pics/unown_g/bitmask.asm" -UnownHBitmasks: INCLUDE "gfx/pics/unown_h/bitmask.asm" -UnownIBitmasks: INCLUDE "gfx/pics/unown_i/bitmask.asm" -UnownJBitmasks: INCLUDE "gfx/pics/unown_j/bitmask.asm" -UnownKBitmasks: INCLUDE "gfx/pics/unown_k/bitmask.asm" -UnownLBitmasks: INCLUDE "gfx/pics/unown_l/bitmask.asm" -UnownMBitmasks: INCLUDE "gfx/pics/unown_m/bitmask.asm" -UnownNBitmasks: INCLUDE "gfx/pics/unown_n/bitmask.asm" -UnownOBitmasks: INCLUDE "gfx/pics/unown_o/bitmask.asm" -UnownPBitmasks: INCLUDE "gfx/pics/unown_p/bitmask.asm" -UnownQBitmasks: INCLUDE "gfx/pics/unown_q/bitmask.asm" -UnownRBitmasks: INCLUDE "gfx/pics/unown_r/bitmask.asm" -UnownSBitmasks: INCLUDE "gfx/pics/unown_s/bitmask.asm" -UnownTBitmasks: INCLUDE "gfx/pics/unown_t/bitmask.asm" -UnownUBitmasks: INCLUDE "gfx/pics/unown_u/bitmask.asm" -UnownVBitmasks: INCLUDE "gfx/pics/unown_v/bitmask.asm" -UnownWBitmasks: INCLUDE "gfx/pics/unown_w/bitmask.asm" -UnownXBitmasks: INCLUDE "gfx/pics/unown_x/bitmask.asm" -UnownYBitmasks: INCLUDE "gfx/pics/unown_y/bitmask.asm" -UnownZBitmasks: INCLUDE "gfx/pics/unown_z/bitmask.asm" diff --git a/gfx/pics/unown_extras.asm b/gfx/pics/unown_extras.asm deleted file mode 100644 index 2609afe46..000000000 --- a/gfx/pics/unown_extras.asm +++ /dev/null @@ -1,26 +0,0 @@ -UnownAAnimationExtra: INCLUDE "gfx/pics/unown_a/anim1.asm" -UnownBAnimationExtra: INCLUDE "gfx/pics/unown_b/anim1.asm" -UnownCAnimationExtra: INCLUDE "gfx/pics/unown_c/anim1.asm" -UnownDAnimationExtra: INCLUDE "gfx/pics/unown_d/anim1.asm" -UnownEAnimationExtra: INCLUDE "gfx/pics/unown_e/anim1.asm" -UnownFAnimationExtra: INCLUDE "gfx/pics/unown_f/anim1.asm" -UnownGAnimationExtra: INCLUDE "gfx/pics/unown_g/anim1.asm" -UnownHAnimationExtra: INCLUDE "gfx/pics/unown_h/anim1.asm" -UnownIAnimationExtra: INCLUDE "gfx/pics/unown_i/anim1.asm" -UnownJAnimationExtra: INCLUDE "gfx/pics/unown_j/anim1.asm" -UnownKAnimationExtra: INCLUDE "gfx/pics/unown_k/anim1.asm" -UnownLAnimationExtra: INCLUDE "gfx/pics/unown_l/anim1.asm" -UnownMAnimationExtra: INCLUDE "gfx/pics/unown_m/anim1.asm" -UnownNAnimationExtra: INCLUDE "gfx/pics/unown_n/anim1.asm" -UnownOAnimationExtra: INCLUDE "gfx/pics/unown_o/anim1.asm" -UnownPAnimationExtra: INCLUDE "gfx/pics/unown_p/anim1.asm" -UnownQAnimationExtra: INCLUDE "gfx/pics/unown_q/anim1.asm" -UnownRAnimationExtra: INCLUDE "gfx/pics/unown_r/anim1.asm" -UnownSAnimationExtra: INCLUDE "gfx/pics/unown_s/anim1.asm" -UnownTAnimationExtra: INCLUDE "gfx/pics/unown_t/anim1.asm" -UnownUAnimationExtra: INCLUDE "gfx/pics/unown_u/anim1.asm" -UnownVAnimationExtra: INCLUDE "gfx/pics/unown_v/anim1.asm" -UnownWAnimationExtra: INCLUDE "gfx/pics/unown_w/anim1.asm" -UnownXAnimationExtra: INCLUDE "gfx/pics/unown_x/anim1.asm" -UnownYAnimationExtra: INCLUDE "gfx/pics/unown_y/anim1.asm" -UnownZAnimationExtra: INCLUDE "gfx/pics/unown_z/anim1.asm" diff --git a/gfx/pics/unown_frames.asm b/gfx/pics/unown_frames.asm deleted file mode 100644 index 402f22efa..000000000 --- a/gfx/pics/unown_frames.asm +++ /dev/null @@ -1,27 +0,0 @@ -UnownsFrames: -UnownAFrames: INCLUDE "gfx/pics/unown_a/frames.asm" -UnownBFrames: INCLUDE "gfx/pics/unown_b/frames.asm" -UnownCFrames: INCLUDE "gfx/pics/unown_c/frames.asm" -UnownDFrames: INCLUDE "gfx/pics/unown_d/frames.asm" -UnownEFrames: INCLUDE "gfx/pics/unown_e/frames.asm" -UnownFFrames: INCLUDE "gfx/pics/unown_f/frames.asm" -UnownGFrames: INCLUDE "gfx/pics/unown_g/frames.asm" -UnownHFrames: INCLUDE "gfx/pics/unown_h/frames.asm" -UnownIFrames: INCLUDE "gfx/pics/unown_i/frames.asm" -UnownJFrames: INCLUDE "gfx/pics/unown_j/frames.asm" -UnownKFrames: INCLUDE "gfx/pics/unown_k/frames.asm" -UnownLFrames: INCLUDE "gfx/pics/unown_l/frames.asm" -UnownMFrames: INCLUDE "gfx/pics/unown_m/frames.asm" -UnownNFrames: INCLUDE "gfx/pics/unown_n/frames.asm" -UnownOFrames: INCLUDE "gfx/pics/unown_o/frames.asm" -UnownPFrames: INCLUDE "gfx/pics/unown_p/frames.asm" -UnownQFrames: INCLUDE "gfx/pics/unown_q/frames.asm" -UnownRFrames: INCLUDE "gfx/pics/unown_r/frames.asm" -UnownSFrames: INCLUDE "gfx/pics/unown_s/frames.asm" -UnownTFrames: INCLUDE "gfx/pics/unown_t/frames.asm" -UnownUFrames: INCLUDE "gfx/pics/unown_u/frames.asm" -UnownVFrames: INCLUDE "gfx/pics/unown_v/frames.asm" -UnownWFrames: INCLUDE "gfx/pics/unown_w/frames.asm" -UnownXFrames: INCLUDE "gfx/pics/unown_x/frames.asm" -UnownYFrames: INCLUDE "gfx/pics/unown_y/frames.asm" -UnownZFrames: INCLUDE "gfx/pics/unown_z/frames.asm" diff --git a/gfx/pics/abra/anim0.asm b/gfx/pokemon/abra/anim0.asm similarity index 100% rename from gfx/pics/abra/anim0.asm rename to gfx/pokemon/abra/anim0.asm diff --git a/gfx/pics/abra/anim1.asm b/gfx/pokemon/abra/anim1.asm similarity index 100% rename from gfx/pics/abra/anim1.asm rename to gfx/pokemon/abra/anim1.asm diff --git a/gfx/pics/abra/back.2bpp.lz.9ac09a32 b/gfx/pokemon/abra/back.2bpp.lz.9ac09a32 similarity index 100% rename from gfx/pics/abra/back.2bpp.lz.9ac09a32 rename to gfx/pokemon/abra/back.2bpp.lz.9ac09a32 diff --git a/gfx/pics/abra/back.png b/gfx/pokemon/abra/back.png similarity index 100% rename from gfx/pics/abra/back.png rename to gfx/pokemon/abra/back.png diff --git a/gfx/pics/abra/front.animated.2bpp.lz.12e14d9a b/gfx/pokemon/abra/front.animated.2bpp.lz.12e14d9a similarity index 100% rename from gfx/pics/abra/front.animated.2bpp.lz.12e14d9a rename to gfx/pokemon/abra/front.animated.2bpp.lz.12e14d9a diff --git a/gfx/pics/abra/front.png b/gfx/pokemon/abra/front.png similarity index 100% rename from gfx/pics/abra/front.png rename to gfx/pokemon/abra/front.png diff --git a/gfx/pics/abra/shiny.pal b/gfx/pokemon/abra/shiny.pal similarity index 100% rename from gfx/pics/abra/shiny.pal rename to gfx/pokemon/abra/shiny.pal diff --git a/gfx/pics/aerodactyl/anim0.asm b/gfx/pokemon/aerodactyl/anim0.asm similarity index 100% rename from gfx/pics/aerodactyl/anim0.asm rename to gfx/pokemon/aerodactyl/anim0.asm diff --git a/gfx/pics/aerodactyl/anim1.asm b/gfx/pokemon/aerodactyl/anim1.asm similarity index 100% rename from gfx/pics/aerodactyl/anim1.asm rename to gfx/pokemon/aerodactyl/anim1.asm diff --git a/gfx/pics/aerodactyl/back.2bpp.lz.e2da1f61 b/gfx/pokemon/aerodactyl/back.2bpp.lz.e2da1f61 similarity index 100% rename from gfx/pics/aerodactyl/back.2bpp.lz.e2da1f61 rename to gfx/pokemon/aerodactyl/back.2bpp.lz.e2da1f61 diff --git a/gfx/pics/aerodactyl/back.png b/gfx/pokemon/aerodactyl/back.png similarity index 100% rename from gfx/pics/aerodactyl/back.png rename to gfx/pokemon/aerodactyl/back.png diff --git a/gfx/pics/aerodactyl/front.animated.2bpp.lz.3bceb33e b/gfx/pokemon/aerodactyl/front.animated.2bpp.lz.3bceb33e similarity index 100% rename from gfx/pics/aerodactyl/front.animated.2bpp.lz.3bceb33e rename to gfx/pokemon/aerodactyl/front.animated.2bpp.lz.3bceb33e diff --git a/gfx/pics/aerodactyl/front.png b/gfx/pokemon/aerodactyl/front.png similarity index 100% rename from gfx/pics/aerodactyl/front.png rename to gfx/pokemon/aerodactyl/front.png diff --git a/gfx/pics/aerodactyl/shiny.pal b/gfx/pokemon/aerodactyl/shiny.pal similarity index 100% rename from gfx/pics/aerodactyl/shiny.pal rename to gfx/pokemon/aerodactyl/shiny.pal diff --git a/gfx/pics/aipom/anim0.asm b/gfx/pokemon/aipom/anim0.asm similarity index 100% rename from gfx/pics/aipom/anim0.asm rename to gfx/pokemon/aipom/anim0.asm diff --git a/gfx/pics/aipom/anim1.asm b/gfx/pokemon/aipom/anim1.asm similarity index 100% rename from gfx/pics/aipom/anim1.asm rename to gfx/pokemon/aipom/anim1.asm diff --git a/gfx/pics/aipom/back.2bpp.lz.597d4dda b/gfx/pokemon/aipom/back.2bpp.lz.597d4dda similarity index 100% rename from gfx/pics/aipom/back.2bpp.lz.597d4dda rename to gfx/pokemon/aipom/back.2bpp.lz.597d4dda diff --git a/gfx/pics/aipom/back.png b/gfx/pokemon/aipom/back.png similarity index 100% rename from gfx/pics/aipom/back.png rename to gfx/pokemon/aipom/back.png diff --git a/gfx/pics/aipom/front.animated.2bpp.lz.fba7c862 b/gfx/pokemon/aipom/front.animated.2bpp.lz.fba7c862 similarity index 100% rename from gfx/pics/aipom/front.animated.2bpp.lz.fba7c862 rename to gfx/pokemon/aipom/front.animated.2bpp.lz.fba7c862 diff --git a/gfx/pics/aipom/front.png b/gfx/pokemon/aipom/front.png similarity index 100% rename from gfx/pics/aipom/front.png rename to gfx/pokemon/aipom/front.png diff --git a/gfx/pics/aipom/shiny.pal b/gfx/pokemon/aipom/shiny.pal similarity index 100% rename from gfx/pics/aipom/shiny.pal rename to gfx/pokemon/aipom/shiny.pal diff --git a/gfx/pics/alakazam/anim0.asm b/gfx/pokemon/alakazam/anim0.asm similarity index 100% rename from gfx/pics/alakazam/anim0.asm rename to gfx/pokemon/alakazam/anim0.asm diff --git a/gfx/pics/alakazam/anim1.asm b/gfx/pokemon/alakazam/anim1.asm similarity index 100% rename from gfx/pics/alakazam/anim1.asm rename to gfx/pokemon/alakazam/anim1.asm diff --git a/gfx/pics/alakazam/back.2bpp.lz.75e7e1c6 b/gfx/pokemon/alakazam/back.2bpp.lz.75e7e1c6 similarity index 100% rename from gfx/pics/alakazam/back.2bpp.lz.75e7e1c6 rename to gfx/pokemon/alakazam/back.2bpp.lz.75e7e1c6 diff --git a/gfx/pics/alakazam/back.png b/gfx/pokemon/alakazam/back.png similarity index 100% rename from gfx/pics/alakazam/back.png rename to gfx/pokemon/alakazam/back.png diff --git a/gfx/pics/alakazam/front.animated.2bpp.lz.b246e050 b/gfx/pokemon/alakazam/front.animated.2bpp.lz.b246e050 similarity index 100% rename from gfx/pics/alakazam/front.animated.2bpp.lz.b246e050 rename to gfx/pokemon/alakazam/front.animated.2bpp.lz.b246e050 diff --git a/gfx/pics/alakazam/front.png b/gfx/pokemon/alakazam/front.png similarity index 100% rename from gfx/pics/alakazam/front.png rename to gfx/pokemon/alakazam/front.png diff --git a/gfx/pics/alakazam/shiny.pal b/gfx/pokemon/alakazam/shiny.pal similarity index 100% rename from gfx/pics/alakazam/shiny.pal rename to gfx/pokemon/alakazam/shiny.pal diff --git a/gfx/pics/ampharos/anim0.asm b/gfx/pokemon/ampharos/anim0.asm similarity index 100% rename from gfx/pics/ampharos/anim0.asm rename to gfx/pokemon/ampharos/anim0.asm diff --git a/gfx/pics/ampharos/anim1.asm b/gfx/pokemon/ampharos/anim1.asm similarity index 100% rename from gfx/pics/ampharos/anim1.asm rename to gfx/pokemon/ampharos/anim1.asm diff --git a/gfx/pics/ampharos/back.2bpp.lz.06af98c8 b/gfx/pokemon/ampharos/back.2bpp.lz.06af98c8 similarity index 100% rename from gfx/pics/ampharos/back.2bpp.lz.06af98c8 rename to gfx/pokemon/ampharos/back.2bpp.lz.06af98c8 diff --git a/gfx/pics/ampharos/back.png b/gfx/pokemon/ampharos/back.png similarity index 100% rename from gfx/pics/ampharos/back.png rename to gfx/pokemon/ampharos/back.png diff --git a/gfx/pics/ampharos/front.animated.2bpp.lz.4b908a28 b/gfx/pokemon/ampharos/front.animated.2bpp.lz.4b908a28 similarity index 100% rename from gfx/pics/ampharos/front.animated.2bpp.lz.4b908a28 rename to gfx/pokemon/ampharos/front.animated.2bpp.lz.4b908a28 diff --git a/gfx/pics/ampharos/front.png b/gfx/pokemon/ampharos/front.png similarity index 100% rename from gfx/pics/ampharos/front.png rename to gfx/pokemon/ampharos/front.png diff --git a/gfx/pics/ampharos/shiny.pal b/gfx/pokemon/ampharos/shiny.pal similarity index 100% rename from gfx/pics/ampharos/shiny.pal rename to gfx/pokemon/ampharos/shiny.pal diff --git a/gfx/pics/anim_pointers.asm b/gfx/pokemon/anim_pointers.asm similarity index 100% rename from gfx/pics/anim_pointers.asm rename to gfx/pokemon/anim_pointers.asm diff --git a/gfx/pics/animation.asm b/gfx/pokemon/animation.asm similarity index 100% rename from gfx/pics/animation.asm rename to gfx/pokemon/animation.asm diff --git a/gfx/pokemon/anims.asm b/gfx/pokemon/anims.asm new file mode 100644 index 000000000..04d0be9ce --- /dev/null +++ b/gfx/pokemon/anims.asm @@ -0,0 +1,253 @@ +PicAnimations: +BulbasaurAnimation: INCLUDE "gfx/pokemon/bulbasaur/anim0.asm" +IvysaurAnimation: INCLUDE "gfx/pokemon/ivysaur/anim0.asm" +VenusaurAnimation: INCLUDE "gfx/pokemon/venusaur/anim0.asm" +CharmanderAnimation: INCLUDE "gfx/pokemon/charmander/anim0.asm" +CharmeleonAnimation: INCLUDE "gfx/pokemon/charmeleon/anim0.asm" +CharizardAnimation: INCLUDE "gfx/pokemon/charizard/anim0.asm" +SquirtleAnimation: INCLUDE "gfx/pokemon/squirtle/anim0.asm" +WartortleAnimation: INCLUDE "gfx/pokemon/wartortle/anim0.asm" +BlastoiseAnimation: INCLUDE "gfx/pokemon/blastoise/anim0.asm" +CaterpieAnimation: INCLUDE "gfx/pokemon/caterpie/anim0.asm" +MetapodAnimation: INCLUDE "gfx/pokemon/metapod/anim0.asm" +ButterfreeAnimation: INCLUDE "gfx/pokemon/butterfree/anim0.asm" +WeedleAnimation: INCLUDE "gfx/pokemon/weedle/anim0.asm" +KakunaAnimation: INCLUDE "gfx/pokemon/kakuna/anim0.asm" +BeedrillAnimation: INCLUDE "gfx/pokemon/beedrill/anim0.asm" +PidgeyAnimation: INCLUDE "gfx/pokemon/pidgey/anim0.asm" +PidgeottoAnimation: INCLUDE "gfx/pokemon/pidgeotto/anim0.asm" +PidgeotAnimation: INCLUDE "gfx/pokemon/pidgeot/anim0.asm" +RattataAnimation: INCLUDE "gfx/pokemon/rattata/anim0.asm" +RaticateAnimation: INCLUDE "gfx/pokemon/raticate/anim0.asm" +SpearowAnimation: INCLUDE "gfx/pokemon/spearow/anim0.asm" +FearowAnimation: INCLUDE "gfx/pokemon/fearow/anim0.asm" +EkansAnimation: INCLUDE "gfx/pokemon/ekans/anim0.asm" +ArbokAnimation: INCLUDE "gfx/pokemon/arbok/anim0.asm" +PikachuAnimation: INCLUDE "gfx/pokemon/pikachu/anim0.asm" +RaichuAnimation: INCLUDE "gfx/pokemon/raichu/anim0.asm" +SandshrewAnimation: INCLUDE "gfx/pokemon/sandshrew/anim0.asm" +SandslashAnimation: INCLUDE "gfx/pokemon/sandslash/anim0.asm" +NidoranFAnimation: INCLUDE "gfx/pokemon/nidoran_f/anim0.asm" +NidorinaAnimation: INCLUDE "gfx/pokemon/nidorina/anim0.asm" +NidoqueenAnimation: INCLUDE "gfx/pokemon/nidoqueen/anim0.asm" +NidoranMAnimation: INCLUDE "gfx/pokemon/nidoran_m/anim0.asm" +NidorinoAnimation: INCLUDE "gfx/pokemon/nidorino/anim0.asm" +NidokingAnimation: INCLUDE "gfx/pokemon/nidoking/anim0.asm" +ClefairyAnimation: INCLUDE "gfx/pokemon/clefairy/anim0.asm" +ClefableAnimation: INCLUDE "gfx/pokemon/clefable/anim0.asm" +VulpixAnimation: INCLUDE "gfx/pokemon/vulpix/anim0.asm" +NinetalesAnimation: INCLUDE "gfx/pokemon/ninetales/anim0.asm" +JigglypuffAnimation: INCLUDE "gfx/pokemon/jigglypuff/anim0.asm" +WigglytuffAnimation: INCLUDE "gfx/pokemon/wigglytuff/anim0.asm" +ZubatAnimation: INCLUDE "gfx/pokemon/zubat/anim0.asm" +GolbatAnimation: INCLUDE "gfx/pokemon/golbat/anim0.asm" +OddishAnimation: INCLUDE "gfx/pokemon/oddish/anim0.asm" +GloomAnimation: INCLUDE "gfx/pokemon/gloom/anim0.asm" +VileplumeAnimation: INCLUDE "gfx/pokemon/vileplume/anim0.asm" +ParasAnimation: INCLUDE "gfx/pokemon/paras/anim0.asm" +ParasectAnimation: INCLUDE "gfx/pokemon/parasect/anim0.asm" +VenonatAnimation: INCLUDE "gfx/pokemon/venonat/anim0.asm" +VenomothAnimation: INCLUDE "gfx/pokemon/venomoth/anim0.asm" +DiglettAnimation: INCLUDE "gfx/pokemon/diglett/anim0.asm" +DugtrioAnimation: INCLUDE "gfx/pokemon/dugtrio/anim0.asm" +MeowthAnimation: INCLUDE "gfx/pokemon/meowth/anim0.asm" +PersianAnimation: INCLUDE "gfx/pokemon/persian/anim0.asm" +PsyduckAnimation: INCLUDE "gfx/pokemon/psyduck/anim0.asm" +GolduckAnimation: INCLUDE "gfx/pokemon/golduck/anim0.asm" +MankeyAnimation: INCLUDE "gfx/pokemon/mankey/anim0.asm" +PrimeapeAnimation: INCLUDE "gfx/pokemon/primeape/anim0.asm" +GrowlitheAnimation: INCLUDE "gfx/pokemon/growlithe/anim0.asm" +ArcanineAnimation: INCLUDE "gfx/pokemon/arcanine/anim0.asm" +PoliwagAnimation: INCLUDE "gfx/pokemon/poliwag/anim0.asm" +PoliwhirlAnimation: INCLUDE "gfx/pokemon/poliwhirl/anim0.asm" +PoliwrathAnimation: INCLUDE "gfx/pokemon/poliwrath/anim0.asm" +AbraAnimation: INCLUDE "gfx/pokemon/abra/anim0.asm" +KadabraAnimation: INCLUDE "gfx/pokemon/kadabra/anim0.asm" +AlakazamAnimation: INCLUDE "gfx/pokemon/alakazam/anim0.asm" +MachopAnimation: INCLUDE "gfx/pokemon/machop/anim0.asm" +MachokeAnimation: INCLUDE "gfx/pokemon/machoke/anim0.asm" +MachampAnimation: INCLUDE "gfx/pokemon/machamp/anim0.asm" +BellsproutAnimation: INCLUDE "gfx/pokemon/bellsprout/anim0.asm" +WeepinbellAnimation: INCLUDE "gfx/pokemon/weepinbell/anim0.asm" +VictreebelAnimation: INCLUDE "gfx/pokemon/victreebel/anim0.asm" +TentacoolAnimation: INCLUDE "gfx/pokemon/tentacool/anim0.asm" +TentacruelAnimation: INCLUDE "gfx/pokemon/tentacruel/anim0.asm" +GeodudeAnimation: INCLUDE "gfx/pokemon/geodude/anim0.asm" +GravelerAnimation: INCLUDE "gfx/pokemon/graveler/anim0.asm" +GolemAnimation: INCLUDE "gfx/pokemon/golem/anim0.asm" +PonytaAnimation: INCLUDE "gfx/pokemon/ponyta/anim0.asm" +RapidashAnimation: INCLUDE "gfx/pokemon/rapidash/anim0.asm" +SlowpokeAnimation: INCLUDE "gfx/pokemon/slowpoke/anim0.asm" +SlowbroAnimation: INCLUDE "gfx/pokemon/slowbro/anim0.asm" +MagnemiteAnimation: INCLUDE "gfx/pokemon/magnemite/anim0.asm" +MagnetonAnimation: INCLUDE "gfx/pokemon/magneton/anim0.asm" +FarfetchDAnimation: INCLUDE "gfx/pokemon/farfetch_d/anim0.asm" +DoduoAnimation: INCLUDE "gfx/pokemon/doduo/anim0.asm" +DodrioAnimation: INCLUDE "gfx/pokemon/dodrio/anim0.asm" +SeelAnimation: INCLUDE "gfx/pokemon/seel/anim0.asm" +DewgongAnimation: INCLUDE "gfx/pokemon/dewgong/anim0.asm" +GrimerAnimation: INCLUDE "gfx/pokemon/grimer/anim0.asm" +MukAnimation: INCLUDE "gfx/pokemon/muk/anim0.asm" +ShellderAnimation: INCLUDE "gfx/pokemon/shellder/anim0.asm" +CloysterAnimation: INCLUDE "gfx/pokemon/cloyster/anim0.asm" +GastlyAnimation: INCLUDE "gfx/pokemon/gastly/anim0.asm" +HaunterAnimation: INCLUDE "gfx/pokemon/haunter/anim0.asm" +GengarAnimation: INCLUDE "gfx/pokemon/gengar/anim0.asm" +OnixAnimation: INCLUDE "gfx/pokemon/onix/anim0.asm" +DrowzeeAnimation: INCLUDE "gfx/pokemon/drowzee/anim0.asm" +HypnoAnimation: INCLUDE "gfx/pokemon/hypno/anim0.asm" +KrabbyAnimation: INCLUDE "gfx/pokemon/krabby/anim0.asm" +KinglerAnimation: INCLUDE "gfx/pokemon/kingler/anim0.asm" +VoltorbAnimation: INCLUDE "gfx/pokemon/voltorb/anim0.asm" +ElectrodeAnimation: INCLUDE "gfx/pokemon/electrode/anim0.asm" +ExeggcuteAnimation: INCLUDE "gfx/pokemon/exeggcute/anim0.asm" +ExeggutorAnimation: INCLUDE "gfx/pokemon/exeggutor/anim0.asm" +CuboneAnimation: INCLUDE "gfx/pokemon/cubone/anim0.asm" +MarowakAnimation: INCLUDE "gfx/pokemon/marowak/anim0.asm" +HitmonleeAnimation: INCLUDE "gfx/pokemon/hitmonlee/anim0.asm" +HitmonchanAnimation: INCLUDE "gfx/pokemon/hitmonchan/anim0.asm" +LickitungAnimation: INCLUDE "gfx/pokemon/lickitung/anim0.asm" +KoffingAnimation: INCLUDE "gfx/pokemon/koffing/anim0.asm" +WeezingAnimation: INCLUDE "gfx/pokemon/weezing/anim0.asm" +RhyhornAnimation: INCLUDE "gfx/pokemon/rhyhorn/anim0.asm" +RhydonAnimation: INCLUDE "gfx/pokemon/rhydon/anim0.asm" +ChanseyAnimation: INCLUDE "gfx/pokemon/chansey/anim0.asm" +TangelaAnimation: INCLUDE "gfx/pokemon/tangela/anim0.asm" +KangaskhanAnimation: INCLUDE "gfx/pokemon/kangaskhan/anim0.asm" +HorseaAnimation: INCLUDE "gfx/pokemon/horsea/anim0.asm" +SeadraAnimation: INCLUDE "gfx/pokemon/seadra/anim0.asm" +GoldeenAnimation: INCLUDE "gfx/pokemon/goldeen/anim0.asm" +SeakingAnimation: INCLUDE "gfx/pokemon/seaking/anim0.asm" +StaryuAnimation: INCLUDE "gfx/pokemon/staryu/anim0.asm" +StarmieAnimation: INCLUDE "gfx/pokemon/starmie/anim0.asm" +MrMimeAnimation: INCLUDE "gfx/pokemon/mr__mime/anim0.asm" +ScytherAnimation: INCLUDE "gfx/pokemon/scyther/anim0.asm" +JynxAnimation: INCLUDE "gfx/pokemon/jynx/anim0.asm" +ElectabuzzAnimation: INCLUDE "gfx/pokemon/electabuzz/anim0.asm" +MagmarAnimation: INCLUDE "gfx/pokemon/magmar/anim0.asm" +PinsirAnimation: INCLUDE "gfx/pokemon/pinsir/anim0.asm" +TaurosAnimation: INCLUDE "gfx/pokemon/tauros/anim0.asm" +MagikarpAnimation: INCLUDE "gfx/pokemon/magikarp/anim0.asm" +GyaradosAnimation: INCLUDE "gfx/pokemon/gyarados/anim0.asm" +LaprasAnimation: INCLUDE "gfx/pokemon/lapras/anim0.asm" +DittoAnimation: INCLUDE "gfx/pokemon/ditto/anim0.asm" +EeveeAnimation: INCLUDE "gfx/pokemon/eevee/anim0.asm" +VaporeonAnimation: INCLUDE "gfx/pokemon/vaporeon/anim0.asm" +JolteonAnimation: INCLUDE "gfx/pokemon/jolteon/anim0.asm" +FlareonAnimation: INCLUDE "gfx/pokemon/flareon/anim0.asm" +PorygonAnimation: INCLUDE "gfx/pokemon/porygon/anim0.asm" +OmanyteAnimation: INCLUDE "gfx/pokemon/omanyte/anim0.asm" +OmastarAnimation: INCLUDE "gfx/pokemon/omastar/anim0.asm" +KabutoAnimation: INCLUDE "gfx/pokemon/kabuto/anim0.asm" +KabutopsAnimation: INCLUDE "gfx/pokemon/kabutops/anim0.asm" +AerodactylAnimation: INCLUDE "gfx/pokemon/aerodactyl/anim0.asm" +SnorlaxAnimation: INCLUDE "gfx/pokemon/snorlax/anim0.asm" +ArticunoAnimation: INCLUDE "gfx/pokemon/articuno/anim0.asm" +ZapdosAnimation: INCLUDE "gfx/pokemon/zapdos/anim0.asm" +MoltresAnimation: INCLUDE "gfx/pokemon/moltres/anim0.asm" +DratiniAnimation: INCLUDE "gfx/pokemon/dratini/anim0.asm" +DragonairAnimation: INCLUDE "gfx/pokemon/dragonair/anim0.asm" +DragoniteAnimation: INCLUDE "gfx/pokemon/dragonite/anim0.asm" +MewtwoAnimation: INCLUDE "gfx/pokemon/mewtwo/anim0.asm" +MewAnimation: INCLUDE "gfx/pokemon/mew/anim0.asm" +ChikoritaAnimation: INCLUDE "gfx/pokemon/chikorita/anim0.asm" +BayleefAnimation: INCLUDE "gfx/pokemon/bayleef/anim0.asm" +MeganiumAnimation: INCLUDE "gfx/pokemon/meganium/anim0.asm" +CyndaquilAnimation: INCLUDE "gfx/pokemon/cyndaquil/anim0.asm" +QuilavaAnimation: INCLUDE "gfx/pokemon/quilava/anim0.asm" +TyphlosionAnimation: INCLUDE "gfx/pokemon/typhlosion/anim0.asm" +TotodileAnimation: INCLUDE "gfx/pokemon/totodile/anim0.asm" +CroconawAnimation: INCLUDE "gfx/pokemon/croconaw/anim0.asm" +FeraligatrAnimation: INCLUDE "gfx/pokemon/feraligatr/anim0.asm" +SentretAnimation: INCLUDE "gfx/pokemon/sentret/anim0.asm" +FurretAnimation: INCLUDE "gfx/pokemon/furret/anim0.asm" +HoothootAnimation: INCLUDE "gfx/pokemon/hoothoot/anim0.asm" +NoctowlAnimation: INCLUDE "gfx/pokemon/noctowl/anim0.asm" +LedybaAnimation: INCLUDE "gfx/pokemon/ledyba/anim0.asm" +LedianAnimation: INCLUDE "gfx/pokemon/ledian/anim0.asm" +SpinarakAnimation: INCLUDE "gfx/pokemon/spinarak/anim0.asm" +AriadosAnimation: INCLUDE "gfx/pokemon/ariados/anim0.asm" +CrobatAnimation: INCLUDE "gfx/pokemon/crobat/anim0.asm" +ChinchouAnimation: INCLUDE "gfx/pokemon/chinchou/anim0.asm" +LanturnAnimation: INCLUDE "gfx/pokemon/lanturn/anim0.asm" +PichuAnimation: INCLUDE "gfx/pokemon/pichu/anim0.asm" +CleffaAnimation: INCLUDE "gfx/pokemon/cleffa/anim0.asm" +IgglybuffAnimation: INCLUDE "gfx/pokemon/igglybuff/anim0.asm" +TogepiAnimation: INCLUDE "gfx/pokemon/togepi/anim0.asm" +TogeticAnimation: INCLUDE "gfx/pokemon/togetic/anim0.asm" +NatuAnimation: INCLUDE "gfx/pokemon/natu/anim0.asm" +XatuAnimation: INCLUDE "gfx/pokemon/xatu/anim0.asm" +MareepAnimation: INCLUDE "gfx/pokemon/mareep/anim0.asm" +FlaaffyAnimation: INCLUDE "gfx/pokemon/flaaffy/anim0.asm" +AmpharosAnimation: INCLUDE "gfx/pokemon/ampharos/anim0.asm" +BellossomAnimation: INCLUDE "gfx/pokemon/bellossom/anim0.asm" +MarillAnimation: INCLUDE "gfx/pokemon/marill/anim0.asm" +AzumarillAnimation: INCLUDE "gfx/pokemon/azumarill/anim0.asm" +SudowoodoAnimation: INCLUDE "gfx/pokemon/sudowoodo/anim0.asm" +PolitoedAnimation: INCLUDE "gfx/pokemon/politoed/anim0.asm" +HoppipAnimation: INCLUDE "gfx/pokemon/hoppip/anim0.asm" +SkiploomAnimation: INCLUDE "gfx/pokemon/skiploom/anim0.asm" +JumpluffAnimation: INCLUDE "gfx/pokemon/jumpluff/anim0.asm" +AipomAnimation: INCLUDE "gfx/pokemon/aipom/anim0.asm" +SunkernAnimation: INCLUDE "gfx/pokemon/sunkern/anim0.asm" +SunfloraAnimation: INCLUDE "gfx/pokemon/sunflora/anim0.asm" +YanmaAnimation: INCLUDE "gfx/pokemon/yanma/anim0.asm" +WooperAnimation: INCLUDE "gfx/pokemon/wooper/anim0.asm" +QuagsireAnimation: INCLUDE "gfx/pokemon/quagsire/anim0.asm" +EspeonAnimation: INCLUDE "gfx/pokemon/espeon/anim0.asm" +UmbreonAnimation: INCLUDE "gfx/pokemon/umbreon/anim0.asm" +MurkrowAnimation: INCLUDE "gfx/pokemon/murkrow/anim0.asm" +SlowkingAnimation: INCLUDE "gfx/pokemon/slowking/anim0.asm" +MisdreavusAnimation: INCLUDE "gfx/pokemon/misdreavus/anim0.asm" +UnownAnimation: INCLUDE "gfx/pokemon/unown/anim0.asm" +WobbuffetAnimation: INCLUDE "gfx/pokemon/wobbuffet/anim0.asm" +GirafarigAnimation: INCLUDE "gfx/pokemon/girafarig/anim0.asm" +PinecoAnimation: INCLUDE "gfx/pokemon/pineco/anim0.asm" +ForretressAnimation: INCLUDE "gfx/pokemon/forretress/anim0.asm" +DunsparceAnimation: INCLUDE "gfx/pokemon/dunsparce/anim0.asm" +GligarAnimation: INCLUDE "gfx/pokemon/gligar/anim0.asm" +SteelixAnimation: INCLUDE "gfx/pokemon/steelix/anim0.asm" +SnubbullAnimation: INCLUDE "gfx/pokemon/snubbull/anim0.asm" +GranbullAnimation: INCLUDE "gfx/pokemon/granbull/anim0.asm" +QwilfishAnimation: INCLUDE "gfx/pokemon/qwilfish/anim0.asm" +ScizorAnimation: INCLUDE "gfx/pokemon/scizor/anim0.asm" +ShuckleAnimation: INCLUDE "gfx/pokemon/shuckle/anim0.asm" +HeracrossAnimation: INCLUDE "gfx/pokemon/heracross/anim0.asm" +SneaselAnimation: INCLUDE "gfx/pokemon/sneasel/anim0.asm" +TeddiursaAnimation: INCLUDE "gfx/pokemon/teddiursa/anim0.asm" +UrsaringAnimation: INCLUDE "gfx/pokemon/ursaring/anim0.asm" +SlugmaAnimation: INCLUDE "gfx/pokemon/slugma/anim0.asm" +MagcargoAnimation: INCLUDE "gfx/pokemon/magcargo/anim0.asm" +SwinubAnimation: INCLUDE "gfx/pokemon/swinub/anim0.asm" +PiloswineAnimation: INCLUDE "gfx/pokemon/piloswine/anim0.asm" +CorsolaAnimation: INCLUDE "gfx/pokemon/corsola/anim0.asm" +RemoraidAnimation: INCLUDE "gfx/pokemon/remoraid/anim0.asm" +OctilleryAnimation: INCLUDE "gfx/pokemon/octillery/anim0.asm" +DelibirdAnimation: INCLUDE "gfx/pokemon/delibird/anim0.asm" +MantineAnimation: INCLUDE "gfx/pokemon/mantine/anim0.asm" +SkarmoryAnimation: INCLUDE "gfx/pokemon/skarmory/anim0.asm" +HoundourAnimation: INCLUDE "gfx/pokemon/houndour/anim0.asm" +HoundoomAnimation: INCLUDE "gfx/pokemon/houndoom/anim0.asm" +KingdraAnimation: INCLUDE "gfx/pokemon/kingdra/anim0.asm" +PhanpyAnimation: INCLUDE "gfx/pokemon/phanpy/anim0.asm" +DonphanAnimation: INCLUDE "gfx/pokemon/donphan/anim0.asm" +Porygon2Animation: INCLUDE "gfx/pokemon/porygon2/anim0.asm" +StantlerAnimation: INCLUDE "gfx/pokemon/stantler/anim0.asm" +SmeargleAnimation: INCLUDE "gfx/pokemon/smeargle/anim0.asm" +TyrogueAnimation: INCLUDE "gfx/pokemon/tyrogue/anim0.asm" +HitmontopAnimation: INCLUDE "gfx/pokemon/hitmontop/anim0.asm" +SmoochumAnimation: INCLUDE "gfx/pokemon/smoochum/anim0.asm" +ElekidAnimation: INCLUDE "gfx/pokemon/elekid/anim0.asm" +MagbyAnimation: INCLUDE "gfx/pokemon/magby/anim0.asm" +MiltankAnimation: INCLUDE "gfx/pokemon/miltank/anim0.asm" +BlisseyAnimation: INCLUDE "gfx/pokemon/blissey/anim0.asm" +RaikouAnimation: INCLUDE "gfx/pokemon/raikou/anim0.asm" +EnteiAnimation: INCLUDE "gfx/pokemon/entei/anim0.asm" +SuicuneAnimation: INCLUDE "gfx/pokemon/suicune/anim0.asm" +LarvitarAnimation: INCLUDE "gfx/pokemon/larvitar/anim0.asm" +PupitarAnimation: INCLUDE "gfx/pokemon/pupitar/anim0.asm" +TyranitarAnimation: INCLUDE "gfx/pokemon/tyranitar/anim0.asm" +LugiaAnimation: INCLUDE "gfx/pokemon/lugia/anim0.asm" +HoOhAnimation: INCLUDE "gfx/pokemon/ho_oh/anim0.asm" +CelebiAnimation: INCLUDE "gfx/pokemon/celebi/anim0.asm" +EggAnimation: INCLUDE "gfx/pokemon/egg/anim0.asm" diff --git a/gfx/pics/arbok/anim0.asm b/gfx/pokemon/arbok/anim0.asm similarity index 100% rename from gfx/pics/arbok/anim0.asm rename to gfx/pokemon/arbok/anim0.asm diff --git a/gfx/pics/arbok/anim1.asm b/gfx/pokemon/arbok/anim1.asm similarity index 100% rename from gfx/pics/arbok/anim1.asm rename to gfx/pokemon/arbok/anim1.asm diff --git a/gfx/pics/arbok/back.2bpp.lz.7b18cb93 b/gfx/pokemon/arbok/back.2bpp.lz.7b18cb93 similarity index 100% rename from gfx/pics/arbok/back.2bpp.lz.7b18cb93 rename to gfx/pokemon/arbok/back.2bpp.lz.7b18cb93 diff --git a/gfx/pics/arbok/back.png b/gfx/pokemon/arbok/back.png similarity index 100% rename from gfx/pics/arbok/back.png rename to gfx/pokemon/arbok/back.png diff --git a/gfx/pics/arbok/front.animated.2bpp.lz.1589a977 b/gfx/pokemon/arbok/front.animated.2bpp.lz.1589a977 similarity index 100% rename from gfx/pics/arbok/front.animated.2bpp.lz.1589a977 rename to gfx/pokemon/arbok/front.animated.2bpp.lz.1589a977 diff --git a/gfx/pics/arbok/front.png b/gfx/pokemon/arbok/front.png similarity index 100% rename from gfx/pics/arbok/front.png rename to gfx/pokemon/arbok/front.png diff --git a/gfx/pics/arbok/shiny.pal b/gfx/pokemon/arbok/shiny.pal similarity index 100% rename from gfx/pics/arbok/shiny.pal rename to gfx/pokemon/arbok/shiny.pal diff --git a/gfx/pics/arcanine/anim0.asm b/gfx/pokemon/arcanine/anim0.asm similarity index 100% rename from gfx/pics/arcanine/anim0.asm rename to gfx/pokemon/arcanine/anim0.asm diff --git a/gfx/pics/arcanine/anim1.asm b/gfx/pokemon/arcanine/anim1.asm similarity index 100% rename from gfx/pics/arcanine/anim1.asm rename to gfx/pokemon/arcanine/anim1.asm diff --git a/gfx/pics/arcanine/back.2bpp.lz.f5b35ebf b/gfx/pokemon/arcanine/back.2bpp.lz.f5b35ebf similarity index 100% rename from gfx/pics/arcanine/back.2bpp.lz.f5b35ebf rename to gfx/pokemon/arcanine/back.2bpp.lz.f5b35ebf diff --git a/gfx/pics/arcanine/back.png b/gfx/pokemon/arcanine/back.png similarity index 100% rename from gfx/pics/arcanine/back.png rename to gfx/pokemon/arcanine/back.png diff --git a/gfx/pics/arcanine/front.animated.2bpp.lz.5ae8eff3 b/gfx/pokemon/arcanine/front.animated.2bpp.lz.5ae8eff3 similarity index 100% rename from gfx/pics/arcanine/front.animated.2bpp.lz.5ae8eff3 rename to gfx/pokemon/arcanine/front.animated.2bpp.lz.5ae8eff3 diff --git a/gfx/pics/arcanine/front.png b/gfx/pokemon/arcanine/front.png similarity index 100% rename from gfx/pics/arcanine/front.png rename to gfx/pokemon/arcanine/front.png diff --git a/gfx/pics/arcanine/shiny.pal b/gfx/pokemon/arcanine/shiny.pal similarity index 100% rename from gfx/pics/arcanine/shiny.pal rename to gfx/pokemon/arcanine/shiny.pal diff --git a/gfx/pics/ariados/anim0.asm b/gfx/pokemon/ariados/anim0.asm similarity index 100% rename from gfx/pics/ariados/anim0.asm rename to gfx/pokemon/ariados/anim0.asm diff --git a/gfx/pics/ariados/anim1.asm b/gfx/pokemon/ariados/anim1.asm similarity index 100% rename from gfx/pics/ariados/anim1.asm rename to gfx/pokemon/ariados/anim1.asm diff --git a/gfx/pics/ariados/back.2bpp.lz.9fb1c3fc b/gfx/pokemon/ariados/back.2bpp.lz.9fb1c3fc similarity index 100% rename from gfx/pics/ariados/back.2bpp.lz.9fb1c3fc rename to gfx/pokemon/ariados/back.2bpp.lz.9fb1c3fc diff --git a/gfx/pics/ariados/back.png b/gfx/pokemon/ariados/back.png similarity index 100% rename from gfx/pics/ariados/back.png rename to gfx/pokemon/ariados/back.png diff --git a/gfx/pics/ariados/front.animated.2bpp.lz.5ac5c83c b/gfx/pokemon/ariados/front.animated.2bpp.lz.5ac5c83c similarity index 100% rename from gfx/pics/ariados/front.animated.2bpp.lz.5ac5c83c rename to gfx/pokemon/ariados/front.animated.2bpp.lz.5ac5c83c diff --git a/gfx/pics/ariados/front.png b/gfx/pokemon/ariados/front.png similarity index 100% rename from gfx/pics/ariados/front.png rename to gfx/pokemon/ariados/front.png diff --git a/gfx/pics/ariados/shiny.pal b/gfx/pokemon/ariados/shiny.pal similarity index 100% rename from gfx/pics/ariados/shiny.pal rename to gfx/pokemon/ariados/shiny.pal diff --git a/gfx/pics/articuno/anim0.asm b/gfx/pokemon/articuno/anim0.asm similarity index 100% rename from gfx/pics/articuno/anim0.asm rename to gfx/pokemon/articuno/anim0.asm diff --git a/gfx/pics/articuno/anim1.asm b/gfx/pokemon/articuno/anim1.asm similarity index 100% rename from gfx/pics/articuno/anim1.asm rename to gfx/pokemon/articuno/anim1.asm diff --git a/gfx/pics/articuno/back.2bpp.lz.c263c2aa b/gfx/pokemon/articuno/back.2bpp.lz.c263c2aa similarity index 100% rename from gfx/pics/articuno/back.2bpp.lz.c263c2aa rename to gfx/pokemon/articuno/back.2bpp.lz.c263c2aa diff --git a/gfx/pics/articuno/back.png b/gfx/pokemon/articuno/back.png similarity index 100% rename from gfx/pics/articuno/back.png rename to gfx/pokemon/articuno/back.png diff --git a/gfx/pics/articuno/front.animated.2bpp.lz.650aef29 b/gfx/pokemon/articuno/front.animated.2bpp.lz.650aef29 similarity index 100% rename from gfx/pics/articuno/front.animated.2bpp.lz.650aef29 rename to gfx/pokemon/articuno/front.animated.2bpp.lz.650aef29 diff --git a/gfx/pics/articuno/front.png b/gfx/pokemon/articuno/front.png similarity index 100% rename from gfx/pics/articuno/front.png rename to gfx/pokemon/articuno/front.png diff --git a/gfx/pics/articuno/shiny.pal b/gfx/pokemon/articuno/shiny.pal similarity index 100% rename from gfx/pics/articuno/shiny.pal rename to gfx/pokemon/articuno/shiny.pal diff --git a/gfx/pics/azumarill/anim0.asm b/gfx/pokemon/azumarill/anim0.asm similarity index 100% rename from gfx/pics/azumarill/anim0.asm rename to gfx/pokemon/azumarill/anim0.asm diff --git a/gfx/pics/azumarill/anim1.asm b/gfx/pokemon/azumarill/anim1.asm similarity index 100% rename from gfx/pics/azumarill/anim1.asm rename to gfx/pokemon/azumarill/anim1.asm diff --git a/gfx/pics/azumarill/back.2bpp.lz.f7fa0db9 b/gfx/pokemon/azumarill/back.2bpp.lz.f7fa0db9 similarity index 100% rename from gfx/pics/azumarill/back.2bpp.lz.f7fa0db9 rename to gfx/pokemon/azumarill/back.2bpp.lz.f7fa0db9 diff --git a/gfx/pics/azumarill/back.png b/gfx/pokemon/azumarill/back.png similarity index 100% rename from gfx/pics/azumarill/back.png rename to gfx/pokemon/azumarill/back.png diff --git a/gfx/pics/azumarill/front.animated.2bpp.lz.cc9fd2ed b/gfx/pokemon/azumarill/front.animated.2bpp.lz.cc9fd2ed similarity index 100% rename from gfx/pics/azumarill/front.animated.2bpp.lz.cc9fd2ed rename to gfx/pokemon/azumarill/front.animated.2bpp.lz.cc9fd2ed diff --git a/gfx/pics/azumarill/front.png b/gfx/pokemon/azumarill/front.png similarity index 100% rename from gfx/pics/azumarill/front.png rename to gfx/pokemon/azumarill/front.png diff --git a/gfx/pics/azumarill/shiny.pal b/gfx/pokemon/azumarill/shiny.pal similarity index 100% rename from gfx/pics/azumarill/shiny.pal rename to gfx/pokemon/azumarill/shiny.pal diff --git a/gfx/pics/bayleef/anim0.asm b/gfx/pokemon/bayleef/anim0.asm similarity index 100% rename from gfx/pics/bayleef/anim0.asm rename to gfx/pokemon/bayleef/anim0.asm diff --git a/gfx/pics/bayleef/anim1.asm b/gfx/pokemon/bayleef/anim1.asm similarity index 100% rename from gfx/pics/bayleef/anim1.asm rename to gfx/pokemon/bayleef/anim1.asm diff --git a/gfx/pics/bayleef/back.2bpp.lz.c4783e65 b/gfx/pokemon/bayleef/back.2bpp.lz.c4783e65 similarity index 100% rename from gfx/pics/bayleef/back.2bpp.lz.c4783e65 rename to gfx/pokemon/bayleef/back.2bpp.lz.c4783e65 diff --git a/gfx/pics/bayleef/back.png b/gfx/pokemon/bayleef/back.png similarity index 100% rename from gfx/pics/bayleef/back.png rename to gfx/pokemon/bayleef/back.png diff --git a/gfx/pics/bayleef/front.animated.2bpp.lz.147649f2 b/gfx/pokemon/bayleef/front.animated.2bpp.lz.147649f2 similarity index 100% rename from gfx/pics/bayleef/front.animated.2bpp.lz.147649f2 rename to gfx/pokemon/bayleef/front.animated.2bpp.lz.147649f2 diff --git a/gfx/pics/bayleef/front.png b/gfx/pokemon/bayleef/front.png similarity index 100% rename from gfx/pics/bayleef/front.png rename to gfx/pokemon/bayleef/front.png diff --git a/gfx/pics/bayleef/shiny.pal b/gfx/pokemon/bayleef/shiny.pal similarity index 100% rename from gfx/pics/bayleef/shiny.pal rename to gfx/pokemon/bayleef/shiny.pal diff --git a/gfx/pics/beedrill/anim0.asm b/gfx/pokemon/beedrill/anim0.asm similarity index 100% rename from gfx/pics/beedrill/anim0.asm rename to gfx/pokemon/beedrill/anim0.asm diff --git a/gfx/pics/beedrill/anim1.asm b/gfx/pokemon/beedrill/anim1.asm similarity index 100% rename from gfx/pics/beedrill/anim1.asm rename to gfx/pokemon/beedrill/anim1.asm diff --git a/gfx/pics/beedrill/back.2bpp.lz.dfd6a87b b/gfx/pokemon/beedrill/back.2bpp.lz.dfd6a87b similarity index 100% rename from gfx/pics/beedrill/back.2bpp.lz.dfd6a87b rename to gfx/pokemon/beedrill/back.2bpp.lz.dfd6a87b diff --git a/gfx/pics/beedrill/back.png b/gfx/pokemon/beedrill/back.png similarity index 100% rename from gfx/pics/beedrill/back.png rename to gfx/pokemon/beedrill/back.png diff --git a/gfx/pics/beedrill/front.animated.2bpp.lz.1b5d3117 b/gfx/pokemon/beedrill/front.animated.2bpp.lz.1b5d3117 similarity index 100% rename from gfx/pics/beedrill/front.animated.2bpp.lz.1b5d3117 rename to gfx/pokemon/beedrill/front.animated.2bpp.lz.1b5d3117 diff --git a/gfx/pics/beedrill/front.png b/gfx/pokemon/beedrill/front.png similarity index 100% rename from gfx/pics/beedrill/front.png rename to gfx/pokemon/beedrill/front.png diff --git a/gfx/pics/beedrill/shiny.pal b/gfx/pokemon/beedrill/shiny.pal similarity index 100% rename from gfx/pics/beedrill/shiny.pal rename to gfx/pokemon/beedrill/shiny.pal diff --git a/gfx/pics/bellossom/anim0.asm b/gfx/pokemon/bellossom/anim0.asm similarity index 100% rename from gfx/pics/bellossom/anim0.asm rename to gfx/pokemon/bellossom/anim0.asm diff --git a/gfx/pics/bellossom/anim1.asm b/gfx/pokemon/bellossom/anim1.asm similarity index 100% rename from gfx/pics/bellossom/anim1.asm rename to gfx/pokemon/bellossom/anim1.asm diff --git a/gfx/pics/bellossom/back.2bpp.lz.10d31691 b/gfx/pokemon/bellossom/back.2bpp.lz.10d31691 similarity index 100% rename from gfx/pics/bellossom/back.2bpp.lz.10d31691 rename to gfx/pokemon/bellossom/back.2bpp.lz.10d31691 diff --git a/gfx/pics/bellossom/back.png b/gfx/pokemon/bellossom/back.png similarity index 100% rename from gfx/pics/bellossom/back.png rename to gfx/pokemon/bellossom/back.png diff --git a/gfx/pics/bellossom/front.animated.2bpp.lz.289eaecf b/gfx/pokemon/bellossom/front.animated.2bpp.lz.289eaecf similarity index 100% rename from gfx/pics/bellossom/front.animated.2bpp.lz.289eaecf rename to gfx/pokemon/bellossom/front.animated.2bpp.lz.289eaecf diff --git a/gfx/pics/bellossom/front.png b/gfx/pokemon/bellossom/front.png similarity index 100% rename from gfx/pics/bellossom/front.png rename to gfx/pokemon/bellossom/front.png diff --git a/gfx/pics/bellossom/shiny.pal b/gfx/pokemon/bellossom/shiny.pal similarity index 100% rename from gfx/pics/bellossom/shiny.pal rename to gfx/pokemon/bellossom/shiny.pal diff --git a/gfx/pics/bellsprout/anim0.asm b/gfx/pokemon/bellsprout/anim0.asm similarity index 100% rename from gfx/pics/bellsprout/anim0.asm rename to gfx/pokemon/bellsprout/anim0.asm diff --git a/gfx/pics/bellsprout/anim1.asm b/gfx/pokemon/bellsprout/anim1.asm similarity index 100% rename from gfx/pics/bellsprout/anim1.asm rename to gfx/pokemon/bellsprout/anim1.asm diff --git a/gfx/pics/bellsprout/back.2bpp.lz.9dacbda8 b/gfx/pokemon/bellsprout/back.2bpp.lz.9dacbda8 similarity index 100% rename from gfx/pics/bellsprout/back.2bpp.lz.9dacbda8 rename to gfx/pokemon/bellsprout/back.2bpp.lz.9dacbda8 diff --git a/gfx/pics/bellsprout/back.png b/gfx/pokemon/bellsprout/back.png similarity index 100% rename from gfx/pics/bellsprout/back.png rename to gfx/pokemon/bellsprout/back.png diff --git a/gfx/pics/bellsprout/front.animated.2bpp.lz.44df413d b/gfx/pokemon/bellsprout/front.animated.2bpp.lz.44df413d similarity index 100% rename from gfx/pics/bellsprout/front.animated.2bpp.lz.44df413d rename to gfx/pokemon/bellsprout/front.animated.2bpp.lz.44df413d diff --git a/gfx/pics/bellsprout/front.png b/gfx/pokemon/bellsprout/front.png similarity index 100% rename from gfx/pics/bellsprout/front.png rename to gfx/pokemon/bellsprout/front.png diff --git a/gfx/pics/bellsprout/shiny.pal b/gfx/pokemon/bellsprout/shiny.pal similarity index 100% rename from gfx/pics/bellsprout/shiny.pal rename to gfx/pokemon/bellsprout/shiny.pal diff --git a/gfx/pics/bitmask_pointers.asm b/gfx/pokemon/bitmask_pointers.asm similarity index 100% rename from gfx/pics/bitmask_pointers.asm rename to gfx/pokemon/bitmask_pointers.asm diff --git a/gfx/pokemon/bitmasks.asm b/gfx/pokemon/bitmasks.asm new file mode 100644 index 000000000..5f4504934 --- /dev/null +++ b/gfx/pokemon/bitmasks.asm @@ -0,0 +1,252 @@ +BulbasaurBitmasks: INCLUDE "gfx/pokemon/bulbasaur/bitmask.asm" +IvysaurBitmasks: INCLUDE "gfx/pokemon/ivysaur/bitmask.asm" +VenusaurBitmasks: INCLUDE "gfx/pokemon/venusaur/bitmask.asm" +CharmanderBitmasks: INCLUDE "gfx/pokemon/charmander/bitmask.asm" +CharmeleonBitmasks: INCLUDE "gfx/pokemon/charmeleon/bitmask.asm" +CharizardBitmasks: INCLUDE "gfx/pokemon/charizard/bitmask.asm" +SquirtleBitmasks: INCLUDE "gfx/pokemon/squirtle/bitmask.asm" +WartortleBitmasks: INCLUDE "gfx/pokemon/wartortle/bitmask.asm" +BlastoiseBitmasks: INCLUDE "gfx/pokemon/blastoise/bitmask.asm" +CaterpieBitmasks: INCLUDE "gfx/pokemon/caterpie/bitmask.asm" +MetapodBitmasks: INCLUDE "gfx/pokemon/metapod/bitmask.asm" +ButterfreeBitmasks: INCLUDE "gfx/pokemon/butterfree/bitmask.asm" +WeedleBitmasks: INCLUDE "gfx/pokemon/weedle/bitmask.asm" +KakunaBitmasks: INCLUDE "gfx/pokemon/kakuna/bitmask.asm" +BeedrillBitmasks: INCLUDE "gfx/pokemon/beedrill/bitmask.asm" +PidgeyBitmasks: INCLUDE "gfx/pokemon/pidgey/bitmask.asm" +PidgeottoBitmasks: INCLUDE "gfx/pokemon/pidgeotto/bitmask.asm" +PidgeotBitmasks: INCLUDE "gfx/pokemon/pidgeot/bitmask.asm" +RattataBitmasks: INCLUDE "gfx/pokemon/rattata/bitmask.asm" +RaticateBitmasks: INCLUDE "gfx/pokemon/raticate/bitmask.asm" +SpearowBitmasks: INCLUDE "gfx/pokemon/spearow/bitmask.asm" +FearowBitmasks: INCLUDE "gfx/pokemon/fearow/bitmask.asm" +EkansBitmasks: INCLUDE "gfx/pokemon/ekans/bitmask.asm" +ArbokBitmasks: INCLUDE "gfx/pokemon/arbok/bitmask.asm" +PikachuBitmasks: INCLUDE "gfx/pokemon/pikachu/bitmask.asm" +RaichuBitmasks: INCLUDE "gfx/pokemon/raichu/bitmask.asm" +SandshrewBitmasks: INCLUDE "gfx/pokemon/sandshrew/bitmask.asm" +SandslashBitmasks: INCLUDE "gfx/pokemon/sandslash/bitmask.asm" +NidoranFBitmasks: INCLUDE "gfx/pokemon/nidoran_f/bitmask.asm" +NidorinaBitmasks: INCLUDE "gfx/pokemon/nidorina/bitmask.asm" +NidoqueenBitmasks: INCLUDE "gfx/pokemon/nidoqueen/bitmask.asm" +NidoranMBitmasks: INCLUDE "gfx/pokemon/nidoran_m/bitmask.asm" +NidorinoBitmasks: INCLUDE "gfx/pokemon/nidorino/bitmask.asm" +NidokingBitmasks: INCLUDE "gfx/pokemon/nidoking/bitmask.asm" +ClefairyBitmasks: INCLUDE "gfx/pokemon/clefairy/bitmask.asm" +ClefableBitmasks: INCLUDE "gfx/pokemon/clefable/bitmask.asm" +VulpixBitmasks: INCLUDE "gfx/pokemon/vulpix/bitmask.asm" +NinetalesBitmasks: INCLUDE "gfx/pokemon/ninetales/bitmask.asm" +JigglypuffBitmasks: INCLUDE "gfx/pokemon/jigglypuff/bitmask.asm" +WigglytuffBitmasks: INCLUDE "gfx/pokemon/wigglytuff/bitmask.asm" +ZubatBitmasks: INCLUDE "gfx/pokemon/zubat/bitmask.asm" +GolbatBitmasks: INCLUDE "gfx/pokemon/golbat/bitmask.asm" +OddishBitmasks: INCLUDE "gfx/pokemon/oddish/bitmask.asm" +GloomBitmasks: INCLUDE "gfx/pokemon/gloom/bitmask.asm" +VileplumeBitmasks: INCLUDE "gfx/pokemon/vileplume/bitmask.asm" +ParasBitmasks: INCLUDE "gfx/pokemon/paras/bitmask.asm" +ParasectBitmasks: INCLUDE "gfx/pokemon/parasect/bitmask.asm" +VenonatBitmasks: INCLUDE "gfx/pokemon/venonat/bitmask.asm" +VenomothBitmasks: INCLUDE "gfx/pokemon/venomoth/bitmask.asm" +DiglettBitmasks: INCLUDE "gfx/pokemon/diglett/bitmask.asm" +DugtrioBitmasks: INCLUDE "gfx/pokemon/dugtrio/bitmask.asm" +MeowthBitmasks: INCLUDE "gfx/pokemon/meowth/bitmask.asm" +PersianBitmasks: INCLUDE "gfx/pokemon/persian/bitmask.asm" +PsyduckBitmasks: INCLUDE "gfx/pokemon/psyduck/bitmask.asm" +GolduckBitmasks: INCLUDE "gfx/pokemon/golduck/bitmask.asm" +MankeyBitmasks: INCLUDE "gfx/pokemon/mankey/bitmask.asm" +PrimeapeBitmasks: INCLUDE "gfx/pokemon/primeape/bitmask.asm" +GrowlitheBitmasks: INCLUDE "gfx/pokemon/growlithe/bitmask.asm" +ArcanineBitmasks: INCLUDE "gfx/pokemon/arcanine/bitmask.asm" +PoliwagBitmasks: INCLUDE "gfx/pokemon/poliwag/bitmask.asm" +PoliwhirlBitmasks: INCLUDE "gfx/pokemon/poliwhirl/bitmask.asm" +PoliwrathBitmasks: INCLUDE "gfx/pokemon/poliwrath/bitmask.asm" +AbraBitmasks: INCLUDE "gfx/pokemon/abra/bitmask.asm" +KadabraBitmasks: INCLUDE "gfx/pokemon/kadabra/bitmask.asm" +AlakazamBitmasks: INCLUDE "gfx/pokemon/alakazam/bitmask.asm" +MachopBitmasks: INCLUDE "gfx/pokemon/machop/bitmask.asm" +MachokeBitmasks: INCLUDE "gfx/pokemon/machoke/bitmask.asm" +MachampBitmasks: INCLUDE "gfx/pokemon/machamp/bitmask.asm" +BellsproutBitmasks: INCLUDE "gfx/pokemon/bellsprout/bitmask.asm" +WeepinbellBitmasks: INCLUDE "gfx/pokemon/weepinbell/bitmask.asm" +VictreebelBitmasks: INCLUDE "gfx/pokemon/victreebel/bitmask.asm" +TentacoolBitmasks: INCLUDE "gfx/pokemon/tentacool/bitmask.asm" +TentacruelBitmasks: INCLUDE "gfx/pokemon/tentacruel/bitmask.asm" +GeodudeBitmasks: INCLUDE "gfx/pokemon/geodude/bitmask.asm" +GravelerBitmasks: INCLUDE "gfx/pokemon/graveler/bitmask.asm" +GolemBitmasks: INCLUDE "gfx/pokemon/golem/bitmask.asm" +PonytaBitmasks: INCLUDE "gfx/pokemon/ponyta/bitmask.asm" +RapidashBitmasks: INCLUDE "gfx/pokemon/rapidash/bitmask.asm" +SlowpokeBitmasks: INCLUDE "gfx/pokemon/slowpoke/bitmask.asm" +SlowbroBitmasks: INCLUDE "gfx/pokemon/slowbro/bitmask.asm" +MagnemiteBitmasks: INCLUDE "gfx/pokemon/magnemite/bitmask.asm" +MagnetonBitmasks: INCLUDE "gfx/pokemon/magneton/bitmask.asm" +FarfetchDBitmasks: INCLUDE "gfx/pokemon/farfetch_d/bitmask.asm" +DoduoBitmasks: INCLUDE "gfx/pokemon/doduo/bitmask.asm" +DodrioBitmasks: INCLUDE "gfx/pokemon/dodrio/bitmask.asm" +SeelBitmasks: INCLUDE "gfx/pokemon/seel/bitmask.asm" +DewgongBitmasks: INCLUDE "gfx/pokemon/dewgong/bitmask.asm" +GrimerBitmasks: INCLUDE "gfx/pokemon/grimer/bitmask.asm" +MukBitmasks: INCLUDE "gfx/pokemon/muk/bitmask.asm" +ShellderBitmasks: INCLUDE "gfx/pokemon/shellder/bitmask.asm" +CloysterBitmasks: INCLUDE "gfx/pokemon/cloyster/bitmask.asm" +GastlyBitmasks: INCLUDE "gfx/pokemon/gastly/bitmask.asm" +HaunterBitmasks: INCLUDE "gfx/pokemon/haunter/bitmask.asm" +GengarBitmasks: INCLUDE "gfx/pokemon/gengar/bitmask.asm" +OnixBitmasks: INCLUDE "gfx/pokemon/onix/bitmask.asm" +DrowzeeBitmasks: INCLUDE "gfx/pokemon/drowzee/bitmask.asm" +HypnoBitmasks: INCLUDE "gfx/pokemon/hypno/bitmask.asm" +KrabbyBitmasks: INCLUDE "gfx/pokemon/krabby/bitmask.asm" +KinglerBitmasks: INCLUDE "gfx/pokemon/kingler/bitmask.asm" +VoltorbBitmasks: INCLUDE "gfx/pokemon/voltorb/bitmask.asm" +ElectrodeBitmasks: INCLUDE "gfx/pokemon/electrode/bitmask.asm" +ExeggcuteBitmasks: INCLUDE "gfx/pokemon/exeggcute/bitmask.asm" +ExeggutorBitmasks: INCLUDE "gfx/pokemon/exeggutor/bitmask.asm" +CuboneBitmasks: INCLUDE "gfx/pokemon/cubone/bitmask.asm" +MarowakBitmasks: INCLUDE "gfx/pokemon/marowak/bitmask.asm" +HitmonleeBitmasks: INCLUDE "gfx/pokemon/hitmonlee/bitmask.asm" +HitmonchanBitmasks: INCLUDE "gfx/pokemon/hitmonchan/bitmask.asm" +LickitungBitmasks: INCLUDE "gfx/pokemon/lickitung/bitmask.asm" +KoffingBitmasks: INCLUDE "gfx/pokemon/koffing/bitmask.asm" +WeezingBitmasks: INCLUDE "gfx/pokemon/weezing/bitmask.asm" +RhyhornBitmasks: INCLUDE "gfx/pokemon/rhyhorn/bitmask.asm" +RhydonBitmasks: INCLUDE "gfx/pokemon/rhydon/bitmask.asm" +ChanseyBitmasks: INCLUDE "gfx/pokemon/chansey/bitmask.asm" +TangelaBitmasks: INCLUDE "gfx/pokemon/tangela/bitmask.asm" +KangaskhanBitmasks: INCLUDE "gfx/pokemon/kangaskhan/bitmask.asm" +HorseaBitmasks: INCLUDE "gfx/pokemon/horsea/bitmask.asm" +SeadraBitmasks: INCLUDE "gfx/pokemon/seadra/bitmask.asm" +GoldeenBitmasks: INCLUDE "gfx/pokemon/goldeen/bitmask.asm" +SeakingBitmasks: INCLUDE "gfx/pokemon/seaking/bitmask.asm" +StaryuBitmasks: INCLUDE "gfx/pokemon/staryu/bitmask.asm" +StarmieBitmasks: INCLUDE "gfx/pokemon/starmie/bitmask.asm" +MrMimeBitmasks: INCLUDE "gfx/pokemon/mr__mime/bitmask.asm" +ScytherBitmasks: INCLUDE "gfx/pokemon/scyther/bitmask.asm" +JynxBitmasks: INCLUDE "gfx/pokemon/jynx/bitmask.asm" +ElectabuzzBitmasks: INCLUDE "gfx/pokemon/electabuzz/bitmask.asm" +MagmarBitmasks: INCLUDE "gfx/pokemon/magmar/bitmask.asm" +PinsirBitmasks: INCLUDE "gfx/pokemon/pinsir/bitmask.asm" +TaurosBitmasks: INCLUDE "gfx/pokemon/tauros/bitmask.asm" +MagikarpBitmasks: INCLUDE "gfx/pokemon/magikarp/bitmask.asm" +GyaradosBitmasks: INCLUDE "gfx/pokemon/gyarados/bitmask.asm" +LaprasBitmasks: INCLUDE "gfx/pokemon/lapras/bitmask.asm" +DittoBitmasks: INCLUDE "gfx/pokemon/ditto/bitmask.asm" +EeveeBitmasks: INCLUDE "gfx/pokemon/eevee/bitmask.asm" +VaporeonBitmasks: INCLUDE "gfx/pokemon/vaporeon/bitmask.asm" +JolteonBitmasks: INCLUDE "gfx/pokemon/jolteon/bitmask.asm" +FlareonBitmasks: INCLUDE "gfx/pokemon/flareon/bitmask.asm" +PorygonBitmasks: INCLUDE "gfx/pokemon/porygon/bitmask.asm" +OmanyteBitmasks: INCLUDE "gfx/pokemon/omanyte/bitmask.asm" +OmastarBitmasks: INCLUDE "gfx/pokemon/omastar/bitmask.asm" +KabutoBitmasks: INCLUDE "gfx/pokemon/kabuto/bitmask.asm" +KabutopsBitmasks: INCLUDE "gfx/pokemon/kabutops/bitmask.asm" +AerodactylBitmasks: INCLUDE "gfx/pokemon/aerodactyl/bitmask.asm" +SnorlaxBitmasks: INCLUDE "gfx/pokemon/snorlax/bitmask.asm" +ArticunoBitmasks: INCLUDE "gfx/pokemon/articuno/bitmask.asm" +ZapdosBitmasks: INCLUDE "gfx/pokemon/zapdos/bitmask.asm" +MoltresBitmasks: INCLUDE "gfx/pokemon/moltres/bitmask.asm" +DratiniBitmasks: INCLUDE "gfx/pokemon/dratini/bitmask.asm" +DragonairBitmasks: INCLUDE "gfx/pokemon/dragonair/bitmask.asm" +DragoniteBitmasks: INCLUDE "gfx/pokemon/dragonite/bitmask.asm" +MewtwoBitmasks: INCLUDE "gfx/pokemon/mewtwo/bitmask.asm" +MewBitmasks: INCLUDE "gfx/pokemon/mew/bitmask.asm" +ChikoritaBitmasks: INCLUDE "gfx/pokemon/chikorita/bitmask.asm" +BayleefBitmasks: INCLUDE "gfx/pokemon/bayleef/bitmask.asm" +MeganiumBitmasks: INCLUDE "gfx/pokemon/meganium/bitmask.asm" +CyndaquilBitmasks: INCLUDE "gfx/pokemon/cyndaquil/bitmask.asm" +QuilavaBitmasks: INCLUDE "gfx/pokemon/quilava/bitmask.asm" +TyphlosionBitmasks: INCLUDE "gfx/pokemon/typhlosion/bitmask.asm" +TotodileBitmasks: INCLUDE "gfx/pokemon/totodile/bitmask.asm" +CroconawBitmasks: INCLUDE "gfx/pokemon/croconaw/bitmask.asm" +FeraligatrBitmasks: INCLUDE "gfx/pokemon/feraligatr/bitmask.asm" +SentretBitmasks: INCLUDE "gfx/pokemon/sentret/bitmask.asm" +FurretBitmasks: INCLUDE "gfx/pokemon/furret/bitmask.asm" +HoothootBitmasks: INCLUDE "gfx/pokemon/hoothoot/bitmask.asm" +NoctowlBitmasks: INCLUDE "gfx/pokemon/noctowl/bitmask.asm" +LedybaBitmasks: INCLUDE "gfx/pokemon/ledyba/bitmask.asm" +LedianBitmasks: INCLUDE "gfx/pokemon/ledian/bitmask.asm" +SpinarakBitmasks: INCLUDE "gfx/pokemon/spinarak/bitmask.asm" +AriadosBitmasks: INCLUDE "gfx/pokemon/ariados/bitmask.asm" +CrobatBitmasks: INCLUDE "gfx/pokemon/crobat/bitmask.asm" +ChinchouBitmasks: INCLUDE "gfx/pokemon/chinchou/bitmask.asm" +LanturnBitmasks: INCLUDE "gfx/pokemon/lanturn/bitmask.asm" +PichuBitmasks: INCLUDE "gfx/pokemon/pichu/bitmask.asm" +CleffaBitmasks: INCLUDE "gfx/pokemon/cleffa/bitmask.asm" +IgglybuffBitmasks: INCLUDE "gfx/pokemon/igglybuff/bitmask.asm" +TogepiBitmasks: INCLUDE "gfx/pokemon/togepi/bitmask.asm" +TogeticBitmasks: INCLUDE "gfx/pokemon/togetic/bitmask.asm" +NatuBitmasks: INCLUDE "gfx/pokemon/natu/bitmask.asm" +XatuBitmasks: INCLUDE "gfx/pokemon/xatu/bitmask.asm" +MareepBitmasks: INCLUDE "gfx/pokemon/mareep/bitmask.asm" +FlaaffyBitmasks: INCLUDE "gfx/pokemon/flaaffy/bitmask.asm" +AmpharosBitmasks: INCLUDE "gfx/pokemon/ampharos/bitmask.asm" +BellossomBitmasks: INCLUDE "gfx/pokemon/bellossom/bitmask.asm" +MarillBitmasks: INCLUDE "gfx/pokemon/marill/bitmask.asm" +AzumarillBitmasks: INCLUDE "gfx/pokemon/azumarill/bitmask.asm" +SudowoodoBitmasks: INCLUDE "gfx/pokemon/sudowoodo/bitmask.asm" +PolitoedBitmasks: INCLUDE "gfx/pokemon/politoed/bitmask.asm" +HoppipBitmasks: INCLUDE "gfx/pokemon/hoppip/bitmask.asm" +SkiploomBitmasks: INCLUDE "gfx/pokemon/skiploom/bitmask.asm" +JumpluffBitmasks: INCLUDE "gfx/pokemon/jumpluff/bitmask.asm" +AipomBitmasks: INCLUDE "gfx/pokemon/aipom/bitmask.asm" +SunkernBitmasks: INCLUDE "gfx/pokemon/sunkern/bitmask.asm" +SunfloraBitmasks: INCLUDE "gfx/pokemon/sunflora/bitmask.asm" +YanmaBitmasks: INCLUDE "gfx/pokemon/yanma/bitmask.asm" +WooperBitmasks: INCLUDE "gfx/pokemon/wooper/bitmask.asm" +QuagsireBitmasks: INCLUDE "gfx/pokemon/quagsire/bitmask.asm" +EspeonBitmasks: INCLUDE "gfx/pokemon/espeon/bitmask.asm" +UmbreonBitmasks: INCLUDE "gfx/pokemon/umbreon/bitmask.asm" +MurkrowBitmasks: INCLUDE "gfx/pokemon/murkrow/bitmask.asm" +SlowkingBitmasks: INCLUDE "gfx/pokemon/slowking/bitmask.asm" +MisdreavusBitmasks: INCLUDE "gfx/pokemon/misdreavus/bitmask.asm" +UnownBitmasks: INCLUDE "gfx/pokemon/unown/bitmask.asm" +WobbuffetBitmasks: INCLUDE "gfx/pokemon/wobbuffet/bitmask.asm" +GirafarigBitmasks: INCLUDE "gfx/pokemon/girafarig/bitmask.asm" +PinecoBitmasks: INCLUDE "gfx/pokemon/pineco/bitmask.asm" +ForretressBitmasks: INCLUDE "gfx/pokemon/forretress/bitmask.asm" +DunsparceBitmasks: INCLUDE "gfx/pokemon/dunsparce/bitmask.asm" +GligarBitmasks: INCLUDE "gfx/pokemon/gligar/bitmask.asm" +SteelixBitmasks: INCLUDE "gfx/pokemon/steelix/bitmask.asm" +SnubbullBitmasks: INCLUDE "gfx/pokemon/snubbull/bitmask.asm" +GranbullBitmasks: INCLUDE "gfx/pokemon/granbull/bitmask.asm" +QwilfishBitmasks: INCLUDE "gfx/pokemon/qwilfish/bitmask.asm" +ScizorBitmasks: INCLUDE "gfx/pokemon/scizor/bitmask.asm" +ShuckleBitmasks: INCLUDE "gfx/pokemon/shuckle/bitmask.asm" +HeracrossBitmasks: INCLUDE "gfx/pokemon/heracross/bitmask.asm" +SneaselBitmasks: INCLUDE "gfx/pokemon/sneasel/bitmask.asm" +TeddiursaBitmasks: INCLUDE "gfx/pokemon/teddiursa/bitmask.asm" +UrsaringBitmasks: INCLUDE "gfx/pokemon/ursaring/bitmask.asm" +SlugmaBitmasks: INCLUDE "gfx/pokemon/slugma/bitmask.asm" +MagcargoBitmasks: INCLUDE "gfx/pokemon/magcargo/bitmask.asm" +SwinubBitmasks: INCLUDE "gfx/pokemon/swinub/bitmask.asm" +PiloswineBitmasks: INCLUDE "gfx/pokemon/piloswine/bitmask.asm" +CorsolaBitmasks: INCLUDE "gfx/pokemon/corsola/bitmask.asm" +RemoraidBitmasks: INCLUDE "gfx/pokemon/remoraid/bitmask.asm" +OctilleryBitmasks: INCLUDE "gfx/pokemon/octillery/bitmask.asm" +DelibirdBitmasks: INCLUDE "gfx/pokemon/delibird/bitmask.asm" +MantineBitmasks: INCLUDE "gfx/pokemon/mantine/bitmask.asm" +SkarmoryBitmasks: INCLUDE "gfx/pokemon/skarmory/bitmask.asm" +HoundourBitmasks: INCLUDE "gfx/pokemon/houndour/bitmask.asm" +HoundoomBitmasks: INCLUDE "gfx/pokemon/houndoom/bitmask.asm" +KingdraBitmasks: INCLUDE "gfx/pokemon/kingdra/bitmask.asm" +PhanpyBitmasks: INCLUDE "gfx/pokemon/phanpy/bitmask.asm" +DonphanBitmasks: INCLUDE "gfx/pokemon/donphan/bitmask.asm" +Porygon2Bitmasks: INCLUDE "gfx/pokemon/porygon2/bitmask.asm" +StantlerBitmasks: INCLUDE "gfx/pokemon/stantler/bitmask.asm" +SmeargleBitmasks: INCLUDE "gfx/pokemon/smeargle/bitmask.asm" +TyrogueBitmasks: INCLUDE "gfx/pokemon/tyrogue/bitmask.asm" +HitmontopBitmasks: INCLUDE "gfx/pokemon/hitmontop/bitmask.asm" +SmoochumBitmasks: INCLUDE "gfx/pokemon/smoochum/bitmask.asm" +ElekidBitmasks: INCLUDE "gfx/pokemon/elekid/bitmask.asm" +MagbyBitmasks: INCLUDE "gfx/pokemon/magby/bitmask.asm" +MiltankBitmasks: INCLUDE "gfx/pokemon/miltank/bitmask.asm" +BlisseyBitmasks: INCLUDE "gfx/pokemon/blissey/bitmask.asm" +RaikouBitmasks: INCLUDE "gfx/pokemon/raikou/bitmask.asm" +EnteiBitmasks: INCLUDE "gfx/pokemon/entei/bitmask.asm" +SuicuneBitmasks: INCLUDE "gfx/pokemon/suicune/bitmask.asm" +LarvitarBitmasks: INCLUDE "gfx/pokemon/larvitar/bitmask.asm" +PupitarBitmasks: INCLUDE "gfx/pokemon/pupitar/bitmask.asm" +TyranitarBitmasks: INCLUDE "gfx/pokemon/tyranitar/bitmask.asm" +LugiaBitmasks: INCLUDE "gfx/pokemon/lugia/bitmask.asm" +HoOhBitmasks: INCLUDE "gfx/pokemon/ho_oh/bitmask.asm" +CelebiBitmasks: INCLUDE "gfx/pokemon/celebi/bitmask.asm" +EggBitmasks: INCLUDE "gfx/pokemon/egg/bitmask.asm" diff --git a/gfx/pics/blastoise/anim0.asm b/gfx/pokemon/blastoise/anim0.asm similarity index 100% rename from gfx/pics/blastoise/anim0.asm rename to gfx/pokemon/blastoise/anim0.asm diff --git a/gfx/pics/blastoise/anim1.asm b/gfx/pokemon/blastoise/anim1.asm similarity index 100% rename from gfx/pics/blastoise/anim1.asm rename to gfx/pokemon/blastoise/anim1.asm diff --git a/gfx/pics/blastoise/back.2bpp.lz.b90e8d5a b/gfx/pokemon/blastoise/back.2bpp.lz.b90e8d5a similarity index 100% rename from gfx/pics/blastoise/back.2bpp.lz.b90e8d5a rename to gfx/pokemon/blastoise/back.2bpp.lz.b90e8d5a diff --git a/gfx/pics/blastoise/back.png b/gfx/pokemon/blastoise/back.png similarity index 100% rename from gfx/pics/blastoise/back.png rename to gfx/pokemon/blastoise/back.png diff --git a/gfx/pics/blastoise/front.animated.2bpp.lz.3899aed0 b/gfx/pokemon/blastoise/front.animated.2bpp.lz.3899aed0 similarity index 100% rename from gfx/pics/blastoise/front.animated.2bpp.lz.3899aed0 rename to gfx/pokemon/blastoise/front.animated.2bpp.lz.3899aed0 diff --git a/gfx/pics/blastoise/front.png b/gfx/pokemon/blastoise/front.png similarity index 100% rename from gfx/pics/blastoise/front.png rename to gfx/pokemon/blastoise/front.png diff --git a/gfx/pics/blastoise/shiny.pal b/gfx/pokemon/blastoise/shiny.pal similarity index 100% rename from gfx/pics/blastoise/shiny.pal rename to gfx/pokemon/blastoise/shiny.pal diff --git a/gfx/pics/blissey/anim0.asm b/gfx/pokemon/blissey/anim0.asm similarity index 100% rename from gfx/pics/blissey/anim0.asm rename to gfx/pokemon/blissey/anim0.asm diff --git a/gfx/pics/blissey/anim1.asm b/gfx/pokemon/blissey/anim1.asm similarity index 100% rename from gfx/pics/blissey/anim1.asm rename to gfx/pokemon/blissey/anim1.asm diff --git a/gfx/pics/blissey/back.2bpp.lz.d2763673 b/gfx/pokemon/blissey/back.2bpp.lz.d2763673 similarity index 100% rename from gfx/pics/blissey/back.2bpp.lz.d2763673 rename to gfx/pokemon/blissey/back.2bpp.lz.d2763673 diff --git a/gfx/pics/blissey/back.png b/gfx/pokemon/blissey/back.png similarity index 100% rename from gfx/pics/blissey/back.png rename to gfx/pokemon/blissey/back.png diff --git a/gfx/pics/blissey/front.animated.2bpp.lz.04f2353a b/gfx/pokemon/blissey/front.animated.2bpp.lz.04f2353a similarity index 100% rename from gfx/pics/blissey/front.animated.2bpp.lz.04f2353a rename to gfx/pokemon/blissey/front.animated.2bpp.lz.04f2353a diff --git a/gfx/pics/blissey/front.png b/gfx/pokemon/blissey/front.png similarity index 100% rename from gfx/pics/blissey/front.png rename to gfx/pokemon/blissey/front.png diff --git a/gfx/pics/blissey/shiny.pal b/gfx/pokemon/blissey/shiny.pal similarity index 100% rename from gfx/pics/blissey/shiny.pal rename to gfx/pokemon/blissey/shiny.pal diff --git a/gfx/pics/bulbasaur/anim0.asm b/gfx/pokemon/bulbasaur/anim0.asm similarity index 100% rename from gfx/pics/bulbasaur/anim0.asm rename to gfx/pokemon/bulbasaur/anim0.asm diff --git a/gfx/pics/bulbasaur/anim1.asm b/gfx/pokemon/bulbasaur/anim1.asm similarity index 100% rename from gfx/pics/bulbasaur/anim1.asm rename to gfx/pokemon/bulbasaur/anim1.asm diff --git a/gfx/pics/bulbasaur/back.2bpp.lz.84f8d1c4 b/gfx/pokemon/bulbasaur/back.2bpp.lz.84f8d1c4 similarity index 100% rename from gfx/pics/bulbasaur/back.2bpp.lz.84f8d1c4 rename to gfx/pokemon/bulbasaur/back.2bpp.lz.84f8d1c4 diff --git a/gfx/pics/bulbasaur/back.png b/gfx/pokemon/bulbasaur/back.png similarity index 100% rename from gfx/pics/bulbasaur/back.png rename to gfx/pokemon/bulbasaur/back.png diff --git a/gfx/pics/bulbasaur/front.animated.2bpp.lz.04627405 b/gfx/pokemon/bulbasaur/front.animated.2bpp.lz.04627405 similarity index 100% rename from gfx/pics/bulbasaur/front.animated.2bpp.lz.04627405 rename to gfx/pokemon/bulbasaur/front.animated.2bpp.lz.04627405 diff --git a/gfx/pics/bulbasaur/front.png b/gfx/pokemon/bulbasaur/front.png similarity index 100% rename from gfx/pics/bulbasaur/front.png rename to gfx/pokemon/bulbasaur/front.png diff --git a/gfx/pics/bulbasaur/shiny.pal b/gfx/pokemon/bulbasaur/shiny.pal similarity index 100% rename from gfx/pics/bulbasaur/shiny.pal rename to gfx/pokemon/bulbasaur/shiny.pal diff --git a/gfx/pics/butterfree/anim0.asm b/gfx/pokemon/butterfree/anim0.asm similarity index 100% rename from gfx/pics/butterfree/anim0.asm rename to gfx/pokemon/butterfree/anim0.asm diff --git a/gfx/pics/butterfree/anim1.asm b/gfx/pokemon/butterfree/anim1.asm similarity index 100% rename from gfx/pics/butterfree/anim1.asm rename to gfx/pokemon/butterfree/anim1.asm diff --git a/gfx/pics/butterfree/back.2bpp.lz.a8543d86 b/gfx/pokemon/butterfree/back.2bpp.lz.a8543d86 similarity index 100% rename from gfx/pics/butterfree/back.2bpp.lz.a8543d86 rename to gfx/pokemon/butterfree/back.2bpp.lz.a8543d86 diff --git a/gfx/pics/butterfree/back.png b/gfx/pokemon/butterfree/back.png similarity index 100% rename from gfx/pics/butterfree/back.png rename to gfx/pokemon/butterfree/back.png diff --git a/gfx/pics/butterfree/front.animated.2bpp.lz.33ba7e24 b/gfx/pokemon/butterfree/front.animated.2bpp.lz.33ba7e24 similarity index 100% rename from gfx/pics/butterfree/front.animated.2bpp.lz.33ba7e24 rename to gfx/pokemon/butterfree/front.animated.2bpp.lz.33ba7e24 diff --git a/gfx/pics/butterfree/front.png b/gfx/pokemon/butterfree/front.png similarity index 100% rename from gfx/pics/butterfree/front.png rename to gfx/pokemon/butterfree/front.png diff --git a/gfx/pics/butterfree/shiny.pal b/gfx/pokemon/butterfree/shiny.pal similarity index 100% rename from gfx/pics/butterfree/shiny.pal rename to gfx/pokemon/butterfree/shiny.pal diff --git a/gfx/pics/caterpie/anim0.asm b/gfx/pokemon/caterpie/anim0.asm similarity index 100% rename from gfx/pics/caterpie/anim0.asm rename to gfx/pokemon/caterpie/anim0.asm diff --git a/gfx/pics/caterpie/anim1.asm b/gfx/pokemon/caterpie/anim1.asm similarity index 100% rename from gfx/pics/caterpie/anim1.asm rename to gfx/pokemon/caterpie/anim1.asm diff --git a/gfx/pics/caterpie/back.2bpp.lz.57e32015 b/gfx/pokemon/caterpie/back.2bpp.lz.57e32015 similarity index 100% rename from gfx/pics/caterpie/back.2bpp.lz.57e32015 rename to gfx/pokemon/caterpie/back.2bpp.lz.57e32015 diff --git a/gfx/pics/caterpie/back.png b/gfx/pokemon/caterpie/back.png similarity index 100% rename from gfx/pics/caterpie/back.png rename to gfx/pokemon/caterpie/back.png diff --git a/gfx/pics/caterpie/front.animated.2bpp.lz.ec4f7cb8 b/gfx/pokemon/caterpie/front.animated.2bpp.lz.ec4f7cb8 similarity index 100% rename from gfx/pics/caterpie/front.animated.2bpp.lz.ec4f7cb8 rename to gfx/pokemon/caterpie/front.animated.2bpp.lz.ec4f7cb8 diff --git a/gfx/pics/caterpie/front.png b/gfx/pokemon/caterpie/front.png similarity index 100% rename from gfx/pics/caterpie/front.png rename to gfx/pokemon/caterpie/front.png diff --git a/gfx/pics/caterpie/shiny.pal b/gfx/pokemon/caterpie/shiny.pal similarity index 100% rename from gfx/pics/caterpie/shiny.pal rename to gfx/pokemon/caterpie/shiny.pal diff --git a/gfx/pics/celebi/anim0.asm b/gfx/pokemon/celebi/anim0.asm similarity index 100% rename from gfx/pics/celebi/anim0.asm rename to gfx/pokemon/celebi/anim0.asm diff --git a/gfx/pics/celebi/anim1.asm b/gfx/pokemon/celebi/anim1.asm similarity index 100% rename from gfx/pics/celebi/anim1.asm rename to gfx/pokemon/celebi/anim1.asm diff --git a/gfx/pics/celebi/back.2bpp.lz.17ea5fe6 b/gfx/pokemon/celebi/back.2bpp.lz.17ea5fe6 similarity index 100% rename from gfx/pics/celebi/back.2bpp.lz.17ea5fe6 rename to gfx/pokemon/celebi/back.2bpp.lz.17ea5fe6 diff --git a/gfx/pics/celebi/back.png b/gfx/pokemon/celebi/back.png similarity index 100% rename from gfx/pics/celebi/back.png rename to gfx/pokemon/celebi/back.png diff --git a/gfx/pics/celebi/front.animated.2bpp.lz.16f259a5 b/gfx/pokemon/celebi/front.animated.2bpp.lz.16f259a5 similarity index 100% rename from gfx/pics/celebi/front.animated.2bpp.lz.16f259a5 rename to gfx/pokemon/celebi/front.animated.2bpp.lz.16f259a5 diff --git a/gfx/pics/celebi/front.png b/gfx/pokemon/celebi/front.png similarity index 100% rename from gfx/pics/celebi/front.png rename to gfx/pokemon/celebi/front.png diff --git a/gfx/pics/celebi/shiny.pal b/gfx/pokemon/celebi/shiny.pal similarity index 100% rename from gfx/pics/celebi/shiny.pal rename to gfx/pokemon/celebi/shiny.pal diff --git a/gfx/pics/chansey/anim0.asm b/gfx/pokemon/chansey/anim0.asm similarity index 100% rename from gfx/pics/chansey/anim0.asm rename to gfx/pokemon/chansey/anim0.asm diff --git a/gfx/pics/chansey/anim1.asm b/gfx/pokemon/chansey/anim1.asm similarity index 100% rename from gfx/pics/chansey/anim1.asm rename to gfx/pokemon/chansey/anim1.asm diff --git a/gfx/pics/chansey/back.2bpp.lz.14d90ba1 b/gfx/pokemon/chansey/back.2bpp.lz.14d90ba1 similarity index 100% rename from gfx/pics/chansey/back.2bpp.lz.14d90ba1 rename to gfx/pokemon/chansey/back.2bpp.lz.14d90ba1 diff --git a/gfx/pics/chansey/back.png b/gfx/pokemon/chansey/back.png similarity index 100% rename from gfx/pics/chansey/back.png rename to gfx/pokemon/chansey/back.png diff --git a/gfx/pics/chansey/front.animated.2bpp.lz.158fc381 b/gfx/pokemon/chansey/front.animated.2bpp.lz.158fc381 similarity index 100% rename from gfx/pics/chansey/front.animated.2bpp.lz.158fc381 rename to gfx/pokemon/chansey/front.animated.2bpp.lz.158fc381 diff --git a/gfx/pics/chansey/front.png b/gfx/pokemon/chansey/front.png similarity index 100% rename from gfx/pics/chansey/front.png rename to gfx/pokemon/chansey/front.png diff --git a/gfx/pics/chansey/shiny.pal b/gfx/pokemon/chansey/shiny.pal similarity index 100% rename from gfx/pics/chansey/shiny.pal rename to gfx/pokemon/chansey/shiny.pal diff --git a/gfx/pics/charizard/anim0.asm b/gfx/pokemon/charizard/anim0.asm similarity index 100% rename from gfx/pics/charizard/anim0.asm rename to gfx/pokemon/charizard/anim0.asm diff --git a/gfx/pics/charizard/anim1.asm b/gfx/pokemon/charizard/anim1.asm similarity index 100% rename from gfx/pics/charizard/anim1.asm rename to gfx/pokemon/charizard/anim1.asm diff --git a/gfx/pics/charizard/back.2bpp.lz.f04ac62c b/gfx/pokemon/charizard/back.2bpp.lz.f04ac62c similarity index 100% rename from gfx/pics/charizard/back.2bpp.lz.f04ac62c rename to gfx/pokemon/charizard/back.2bpp.lz.f04ac62c diff --git a/gfx/pics/charizard/back.png b/gfx/pokemon/charizard/back.png similarity index 100% rename from gfx/pics/charizard/back.png rename to gfx/pokemon/charizard/back.png diff --git a/gfx/pics/charizard/front.animated.2bpp.lz.0068f820 b/gfx/pokemon/charizard/front.animated.2bpp.lz.0068f820 similarity index 100% rename from gfx/pics/charizard/front.animated.2bpp.lz.0068f820 rename to gfx/pokemon/charizard/front.animated.2bpp.lz.0068f820 diff --git a/gfx/pics/charizard/front.png b/gfx/pokemon/charizard/front.png similarity index 100% rename from gfx/pics/charizard/front.png rename to gfx/pokemon/charizard/front.png diff --git a/gfx/pics/charizard/shiny.pal b/gfx/pokemon/charizard/shiny.pal similarity index 100% rename from gfx/pics/charizard/shiny.pal rename to gfx/pokemon/charizard/shiny.pal diff --git a/gfx/pics/charmander/anim0.asm b/gfx/pokemon/charmander/anim0.asm similarity index 100% rename from gfx/pics/charmander/anim0.asm rename to gfx/pokemon/charmander/anim0.asm diff --git a/gfx/pics/charmander/anim1.asm b/gfx/pokemon/charmander/anim1.asm similarity index 100% rename from gfx/pics/charmander/anim1.asm rename to gfx/pokemon/charmander/anim1.asm diff --git a/gfx/pics/charmander/back.2bpp.lz.bcb371c6 b/gfx/pokemon/charmander/back.2bpp.lz.bcb371c6 similarity index 100% rename from gfx/pics/charmander/back.2bpp.lz.bcb371c6 rename to gfx/pokemon/charmander/back.2bpp.lz.bcb371c6 diff --git a/gfx/pics/charmander/back.png b/gfx/pokemon/charmander/back.png similarity index 100% rename from gfx/pics/charmander/back.png rename to gfx/pokemon/charmander/back.png diff --git a/gfx/pics/charmander/front.animated.2bpp.lz.704bfc17 b/gfx/pokemon/charmander/front.animated.2bpp.lz.704bfc17 similarity index 100% rename from gfx/pics/charmander/front.animated.2bpp.lz.704bfc17 rename to gfx/pokemon/charmander/front.animated.2bpp.lz.704bfc17 diff --git a/gfx/pics/charmander/front.png b/gfx/pokemon/charmander/front.png similarity index 100% rename from gfx/pics/charmander/front.png rename to gfx/pokemon/charmander/front.png diff --git a/gfx/pics/charmander/shiny.pal b/gfx/pokemon/charmander/shiny.pal similarity index 100% rename from gfx/pics/charmander/shiny.pal rename to gfx/pokemon/charmander/shiny.pal diff --git a/gfx/pics/charmeleon/anim0.asm b/gfx/pokemon/charmeleon/anim0.asm similarity index 100% rename from gfx/pics/charmeleon/anim0.asm rename to gfx/pokemon/charmeleon/anim0.asm diff --git a/gfx/pics/charmeleon/anim1.asm b/gfx/pokemon/charmeleon/anim1.asm similarity index 100% rename from gfx/pics/charmeleon/anim1.asm rename to gfx/pokemon/charmeleon/anim1.asm diff --git a/gfx/pics/charmeleon/back.2bpp.lz.cf73268f b/gfx/pokemon/charmeleon/back.2bpp.lz.cf73268f similarity index 100% rename from gfx/pics/charmeleon/back.2bpp.lz.cf73268f rename to gfx/pokemon/charmeleon/back.2bpp.lz.cf73268f diff --git a/gfx/pics/charmeleon/back.png b/gfx/pokemon/charmeleon/back.png similarity index 100% rename from gfx/pics/charmeleon/back.png rename to gfx/pokemon/charmeleon/back.png diff --git a/gfx/pics/charmeleon/front.animated.2bpp.lz.0e629968 b/gfx/pokemon/charmeleon/front.animated.2bpp.lz.0e629968 similarity index 100% rename from gfx/pics/charmeleon/front.animated.2bpp.lz.0e629968 rename to gfx/pokemon/charmeleon/front.animated.2bpp.lz.0e629968 diff --git a/gfx/pics/charmeleon/front.png b/gfx/pokemon/charmeleon/front.png similarity index 100% rename from gfx/pics/charmeleon/front.png rename to gfx/pokemon/charmeleon/front.png diff --git a/gfx/pics/charmeleon/shiny.pal b/gfx/pokemon/charmeleon/shiny.pal similarity index 100% rename from gfx/pics/charmeleon/shiny.pal rename to gfx/pokemon/charmeleon/shiny.pal diff --git a/gfx/pics/chikorita/anim0.asm b/gfx/pokemon/chikorita/anim0.asm similarity index 100% rename from gfx/pics/chikorita/anim0.asm rename to gfx/pokemon/chikorita/anim0.asm diff --git a/gfx/pics/chikorita/anim1.asm b/gfx/pokemon/chikorita/anim1.asm similarity index 100% rename from gfx/pics/chikorita/anim1.asm rename to gfx/pokemon/chikorita/anim1.asm diff --git a/gfx/pics/chikorita/back.2bpp.lz.27a21938 b/gfx/pokemon/chikorita/back.2bpp.lz.27a21938 similarity index 100% rename from gfx/pics/chikorita/back.2bpp.lz.27a21938 rename to gfx/pokemon/chikorita/back.2bpp.lz.27a21938 diff --git a/gfx/pics/chikorita/back.png b/gfx/pokemon/chikorita/back.png similarity index 100% rename from gfx/pics/chikorita/back.png rename to gfx/pokemon/chikorita/back.png diff --git a/gfx/pics/chikorita/front.animated.2bpp.lz.18de5fe9 b/gfx/pokemon/chikorita/front.animated.2bpp.lz.18de5fe9 similarity index 100% rename from gfx/pics/chikorita/front.animated.2bpp.lz.18de5fe9 rename to gfx/pokemon/chikorita/front.animated.2bpp.lz.18de5fe9 diff --git a/gfx/pics/chikorita/front.png b/gfx/pokemon/chikorita/front.png similarity index 100% rename from gfx/pics/chikorita/front.png rename to gfx/pokemon/chikorita/front.png diff --git a/gfx/pics/chikorita/shiny.pal b/gfx/pokemon/chikorita/shiny.pal similarity index 100% rename from gfx/pics/chikorita/shiny.pal rename to gfx/pokemon/chikorita/shiny.pal diff --git a/gfx/pics/chinchou/anim0.asm b/gfx/pokemon/chinchou/anim0.asm similarity index 100% rename from gfx/pics/chinchou/anim0.asm rename to gfx/pokemon/chinchou/anim0.asm diff --git a/gfx/pics/chinchou/anim1.asm b/gfx/pokemon/chinchou/anim1.asm similarity index 100% rename from gfx/pics/chinchou/anim1.asm rename to gfx/pokemon/chinchou/anim1.asm diff --git a/gfx/pics/chinchou/back.2bpp.lz.ea061e91 b/gfx/pokemon/chinchou/back.2bpp.lz.ea061e91 similarity index 100% rename from gfx/pics/chinchou/back.2bpp.lz.ea061e91 rename to gfx/pokemon/chinchou/back.2bpp.lz.ea061e91 diff --git a/gfx/pics/chinchou/back.png b/gfx/pokemon/chinchou/back.png similarity index 100% rename from gfx/pics/chinchou/back.png rename to gfx/pokemon/chinchou/back.png diff --git a/gfx/pics/chinchou/front.animated.2bpp.lz.901aa690 b/gfx/pokemon/chinchou/front.animated.2bpp.lz.901aa690 similarity index 100% rename from gfx/pics/chinchou/front.animated.2bpp.lz.901aa690 rename to gfx/pokemon/chinchou/front.animated.2bpp.lz.901aa690 diff --git a/gfx/pics/chinchou/front.png b/gfx/pokemon/chinchou/front.png similarity index 100% rename from gfx/pics/chinchou/front.png rename to gfx/pokemon/chinchou/front.png diff --git a/gfx/pics/chinchou/shiny.pal b/gfx/pokemon/chinchou/shiny.pal similarity index 100% rename from gfx/pics/chinchou/shiny.pal rename to gfx/pokemon/chinchou/shiny.pal diff --git a/gfx/pics/clefable/anim0.asm b/gfx/pokemon/clefable/anim0.asm similarity index 100% rename from gfx/pics/clefable/anim0.asm rename to gfx/pokemon/clefable/anim0.asm diff --git a/gfx/pics/clefable/anim1.asm b/gfx/pokemon/clefable/anim1.asm similarity index 100% rename from gfx/pics/clefable/anim1.asm rename to gfx/pokemon/clefable/anim1.asm diff --git a/gfx/pics/clefable/back.2bpp.lz.d57ec142 b/gfx/pokemon/clefable/back.2bpp.lz.d57ec142 similarity index 100% rename from gfx/pics/clefable/back.2bpp.lz.d57ec142 rename to gfx/pokemon/clefable/back.2bpp.lz.d57ec142 diff --git a/gfx/pics/clefable/back.png b/gfx/pokemon/clefable/back.png similarity index 100% rename from gfx/pics/clefable/back.png rename to gfx/pokemon/clefable/back.png diff --git a/gfx/pics/clefable/front.animated.2bpp.lz.59d160ad b/gfx/pokemon/clefable/front.animated.2bpp.lz.59d160ad similarity index 100% rename from gfx/pics/clefable/front.animated.2bpp.lz.59d160ad rename to gfx/pokemon/clefable/front.animated.2bpp.lz.59d160ad diff --git a/gfx/pics/clefable/front.png b/gfx/pokemon/clefable/front.png similarity index 100% rename from gfx/pics/clefable/front.png rename to gfx/pokemon/clefable/front.png diff --git a/gfx/pics/clefable/shiny.pal b/gfx/pokemon/clefable/shiny.pal similarity index 100% rename from gfx/pics/clefable/shiny.pal rename to gfx/pokemon/clefable/shiny.pal diff --git a/gfx/pics/clefairy/anim0.asm b/gfx/pokemon/clefairy/anim0.asm similarity index 100% rename from gfx/pics/clefairy/anim0.asm rename to gfx/pokemon/clefairy/anim0.asm diff --git a/gfx/pics/clefairy/anim1.asm b/gfx/pokemon/clefairy/anim1.asm similarity index 100% rename from gfx/pics/clefairy/anim1.asm rename to gfx/pokemon/clefairy/anim1.asm diff --git a/gfx/pics/clefairy/back.2bpp.lz.f8aff3dd b/gfx/pokemon/clefairy/back.2bpp.lz.f8aff3dd similarity index 100% rename from gfx/pics/clefairy/back.2bpp.lz.f8aff3dd rename to gfx/pokemon/clefairy/back.2bpp.lz.f8aff3dd diff --git a/gfx/pics/clefairy/back.png b/gfx/pokemon/clefairy/back.png similarity index 100% rename from gfx/pics/clefairy/back.png rename to gfx/pokemon/clefairy/back.png diff --git a/gfx/pics/clefairy/front.animated.2bpp.lz.0918b60d b/gfx/pokemon/clefairy/front.animated.2bpp.lz.0918b60d similarity index 100% rename from gfx/pics/clefairy/front.animated.2bpp.lz.0918b60d rename to gfx/pokemon/clefairy/front.animated.2bpp.lz.0918b60d diff --git a/gfx/pics/clefairy/front.png b/gfx/pokemon/clefairy/front.png similarity index 100% rename from gfx/pics/clefairy/front.png rename to gfx/pokemon/clefairy/front.png diff --git a/gfx/pics/clefairy/shiny.pal b/gfx/pokemon/clefairy/shiny.pal similarity index 100% rename from gfx/pics/clefairy/shiny.pal rename to gfx/pokemon/clefairy/shiny.pal diff --git a/gfx/pics/cleffa/anim0.asm b/gfx/pokemon/cleffa/anim0.asm similarity index 100% rename from gfx/pics/cleffa/anim0.asm rename to gfx/pokemon/cleffa/anim0.asm diff --git a/gfx/pics/cleffa/anim1.asm b/gfx/pokemon/cleffa/anim1.asm similarity index 100% rename from gfx/pics/cleffa/anim1.asm rename to gfx/pokemon/cleffa/anim1.asm diff --git a/gfx/pics/cleffa/back.2bpp.lz.ea9b3d08 b/gfx/pokemon/cleffa/back.2bpp.lz.ea9b3d08 similarity index 100% rename from gfx/pics/cleffa/back.2bpp.lz.ea9b3d08 rename to gfx/pokemon/cleffa/back.2bpp.lz.ea9b3d08 diff --git a/gfx/pics/cleffa/back.png b/gfx/pokemon/cleffa/back.png similarity index 100% rename from gfx/pics/cleffa/back.png rename to gfx/pokemon/cleffa/back.png diff --git a/gfx/pics/cleffa/front.animated.2bpp.lz.49630c80 b/gfx/pokemon/cleffa/front.animated.2bpp.lz.49630c80 similarity index 100% rename from gfx/pics/cleffa/front.animated.2bpp.lz.49630c80 rename to gfx/pokemon/cleffa/front.animated.2bpp.lz.49630c80 diff --git a/gfx/pics/cleffa/front.png b/gfx/pokemon/cleffa/front.png similarity index 100% rename from gfx/pics/cleffa/front.png rename to gfx/pokemon/cleffa/front.png diff --git a/gfx/pics/cleffa/shiny.pal b/gfx/pokemon/cleffa/shiny.pal similarity index 100% rename from gfx/pics/cleffa/shiny.pal rename to gfx/pokemon/cleffa/shiny.pal diff --git a/gfx/pics/cloyster/anim0.asm b/gfx/pokemon/cloyster/anim0.asm similarity index 100% rename from gfx/pics/cloyster/anim0.asm rename to gfx/pokemon/cloyster/anim0.asm diff --git a/gfx/pics/cloyster/anim1.asm b/gfx/pokemon/cloyster/anim1.asm similarity index 100% rename from gfx/pics/cloyster/anim1.asm rename to gfx/pokemon/cloyster/anim1.asm diff --git a/gfx/pics/cloyster/back.2bpp.lz.5ad194b3 b/gfx/pokemon/cloyster/back.2bpp.lz.5ad194b3 similarity index 100% rename from gfx/pics/cloyster/back.2bpp.lz.5ad194b3 rename to gfx/pokemon/cloyster/back.2bpp.lz.5ad194b3 diff --git a/gfx/pics/cloyster/back.png b/gfx/pokemon/cloyster/back.png similarity index 100% rename from gfx/pics/cloyster/back.png rename to gfx/pokemon/cloyster/back.png diff --git a/gfx/pics/cloyster/front.animated.2bpp.lz.fe85709f b/gfx/pokemon/cloyster/front.animated.2bpp.lz.fe85709f similarity index 100% rename from gfx/pics/cloyster/front.animated.2bpp.lz.fe85709f rename to gfx/pokemon/cloyster/front.animated.2bpp.lz.fe85709f diff --git a/gfx/pics/cloyster/front.png b/gfx/pokemon/cloyster/front.png similarity index 100% rename from gfx/pics/cloyster/front.png rename to gfx/pokemon/cloyster/front.png diff --git a/gfx/pics/cloyster/shiny.pal b/gfx/pokemon/cloyster/shiny.pal similarity index 100% rename from gfx/pics/cloyster/shiny.pal rename to gfx/pokemon/cloyster/shiny.pal diff --git a/gfx/pics/corsola/anim0.asm b/gfx/pokemon/corsola/anim0.asm similarity index 100% rename from gfx/pics/corsola/anim0.asm rename to gfx/pokemon/corsola/anim0.asm diff --git a/gfx/pics/corsola/anim1.asm b/gfx/pokemon/corsola/anim1.asm similarity index 100% rename from gfx/pics/corsola/anim1.asm rename to gfx/pokemon/corsola/anim1.asm diff --git a/gfx/pics/corsola/back.2bpp.lz.2b6c7860 b/gfx/pokemon/corsola/back.2bpp.lz.2b6c7860 similarity index 100% rename from gfx/pics/corsola/back.2bpp.lz.2b6c7860 rename to gfx/pokemon/corsola/back.2bpp.lz.2b6c7860 diff --git a/gfx/pics/corsola/back.png b/gfx/pokemon/corsola/back.png similarity index 100% rename from gfx/pics/corsola/back.png rename to gfx/pokemon/corsola/back.png diff --git a/gfx/pics/corsola/front.animated.2bpp.lz.2e7905aa b/gfx/pokemon/corsola/front.animated.2bpp.lz.2e7905aa similarity index 100% rename from gfx/pics/corsola/front.animated.2bpp.lz.2e7905aa rename to gfx/pokemon/corsola/front.animated.2bpp.lz.2e7905aa diff --git a/gfx/pics/corsola/front.png b/gfx/pokemon/corsola/front.png similarity index 100% rename from gfx/pics/corsola/front.png rename to gfx/pokemon/corsola/front.png diff --git a/gfx/pics/corsola/shiny.pal b/gfx/pokemon/corsola/shiny.pal similarity index 100% rename from gfx/pics/corsola/shiny.pal rename to gfx/pokemon/corsola/shiny.pal diff --git a/gfx/pics/crobat/anim0.asm b/gfx/pokemon/crobat/anim0.asm similarity index 100% rename from gfx/pics/crobat/anim0.asm rename to gfx/pokemon/crobat/anim0.asm diff --git a/gfx/pics/crobat/anim1.asm b/gfx/pokemon/crobat/anim1.asm similarity index 100% rename from gfx/pics/crobat/anim1.asm rename to gfx/pokemon/crobat/anim1.asm diff --git a/gfx/pics/crobat/back.2bpp.lz.30850b2e b/gfx/pokemon/crobat/back.2bpp.lz.30850b2e similarity index 100% rename from gfx/pics/crobat/back.2bpp.lz.30850b2e rename to gfx/pokemon/crobat/back.2bpp.lz.30850b2e diff --git a/gfx/pics/crobat/back.png b/gfx/pokemon/crobat/back.png similarity index 100% rename from gfx/pics/crobat/back.png rename to gfx/pokemon/crobat/back.png diff --git a/gfx/pics/crobat/front.animated.2bpp.lz.dc386ff0 b/gfx/pokemon/crobat/front.animated.2bpp.lz.dc386ff0 similarity index 100% rename from gfx/pics/crobat/front.animated.2bpp.lz.dc386ff0 rename to gfx/pokemon/crobat/front.animated.2bpp.lz.dc386ff0 diff --git a/gfx/pics/crobat/front.png b/gfx/pokemon/crobat/front.png similarity index 100% rename from gfx/pics/crobat/front.png rename to gfx/pokemon/crobat/front.png diff --git a/gfx/pics/crobat/shiny.pal b/gfx/pokemon/crobat/shiny.pal similarity index 100% rename from gfx/pics/crobat/shiny.pal rename to gfx/pokemon/crobat/shiny.pal diff --git a/gfx/pics/croconaw/anim0.asm b/gfx/pokemon/croconaw/anim0.asm similarity index 100% rename from gfx/pics/croconaw/anim0.asm rename to gfx/pokemon/croconaw/anim0.asm diff --git a/gfx/pics/croconaw/anim1.asm b/gfx/pokemon/croconaw/anim1.asm similarity index 100% rename from gfx/pics/croconaw/anim1.asm rename to gfx/pokemon/croconaw/anim1.asm diff --git a/gfx/pics/croconaw/back.2bpp.lz.a605c82f b/gfx/pokemon/croconaw/back.2bpp.lz.a605c82f similarity index 100% rename from gfx/pics/croconaw/back.2bpp.lz.a605c82f rename to gfx/pokemon/croconaw/back.2bpp.lz.a605c82f diff --git a/gfx/pics/croconaw/back.png b/gfx/pokemon/croconaw/back.png similarity index 100% rename from gfx/pics/croconaw/back.png rename to gfx/pokemon/croconaw/back.png diff --git a/gfx/pics/croconaw/front.animated.2bpp.lz.a797986d b/gfx/pokemon/croconaw/front.animated.2bpp.lz.a797986d similarity index 100% rename from gfx/pics/croconaw/front.animated.2bpp.lz.a797986d rename to gfx/pokemon/croconaw/front.animated.2bpp.lz.a797986d diff --git a/gfx/pics/croconaw/front.png b/gfx/pokemon/croconaw/front.png similarity index 100% rename from gfx/pics/croconaw/front.png rename to gfx/pokemon/croconaw/front.png diff --git a/gfx/pics/croconaw/shiny.pal b/gfx/pokemon/croconaw/shiny.pal similarity index 100% rename from gfx/pics/croconaw/shiny.pal rename to gfx/pokemon/croconaw/shiny.pal diff --git a/gfx/pics/cubone/anim0.asm b/gfx/pokemon/cubone/anim0.asm similarity index 100% rename from gfx/pics/cubone/anim0.asm rename to gfx/pokemon/cubone/anim0.asm diff --git a/gfx/pics/cubone/anim1.asm b/gfx/pokemon/cubone/anim1.asm similarity index 100% rename from gfx/pics/cubone/anim1.asm rename to gfx/pokemon/cubone/anim1.asm diff --git a/gfx/pics/cubone/back.2bpp.lz.bd849dfb b/gfx/pokemon/cubone/back.2bpp.lz.bd849dfb similarity index 100% rename from gfx/pics/cubone/back.2bpp.lz.bd849dfb rename to gfx/pokemon/cubone/back.2bpp.lz.bd849dfb diff --git a/gfx/pics/cubone/back.png b/gfx/pokemon/cubone/back.png similarity index 100% rename from gfx/pics/cubone/back.png rename to gfx/pokemon/cubone/back.png diff --git a/gfx/pics/cubone/front.animated.2bpp.lz.0d63a3a4 b/gfx/pokemon/cubone/front.animated.2bpp.lz.0d63a3a4 similarity index 100% rename from gfx/pics/cubone/front.animated.2bpp.lz.0d63a3a4 rename to gfx/pokemon/cubone/front.animated.2bpp.lz.0d63a3a4 diff --git a/gfx/pics/cubone/front.png b/gfx/pokemon/cubone/front.png similarity index 100% rename from gfx/pics/cubone/front.png rename to gfx/pokemon/cubone/front.png diff --git a/gfx/pics/cubone/shiny.pal b/gfx/pokemon/cubone/shiny.pal similarity index 100% rename from gfx/pics/cubone/shiny.pal rename to gfx/pokemon/cubone/shiny.pal diff --git a/gfx/pics/cyndaquil/anim0.asm b/gfx/pokemon/cyndaquil/anim0.asm similarity index 100% rename from gfx/pics/cyndaquil/anim0.asm rename to gfx/pokemon/cyndaquil/anim0.asm diff --git a/gfx/pics/cyndaquil/anim1.asm b/gfx/pokemon/cyndaquil/anim1.asm similarity index 100% rename from gfx/pics/cyndaquil/anim1.asm rename to gfx/pokemon/cyndaquil/anim1.asm diff --git a/gfx/pics/cyndaquil/back.2bpp.lz.68baeeeb b/gfx/pokemon/cyndaquil/back.2bpp.lz.68baeeeb similarity index 100% rename from gfx/pics/cyndaquil/back.2bpp.lz.68baeeeb rename to gfx/pokemon/cyndaquil/back.2bpp.lz.68baeeeb diff --git a/gfx/pics/cyndaquil/back.png b/gfx/pokemon/cyndaquil/back.png similarity index 100% rename from gfx/pics/cyndaquil/back.png rename to gfx/pokemon/cyndaquil/back.png diff --git a/gfx/pics/cyndaquil/front.animated.2bpp.lz.0d5dce8d b/gfx/pokemon/cyndaquil/front.animated.2bpp.lz.0d5dce8d similarity index 100% rename from gfx/pics/cyndaquil/front.animated.2bpp.lz.0d5dce8d rename to gfx/pokemon/cyndaquil/front.animated.2bpp.lz.0d5dce8d diff --git a/gfx/pics/cyndaquil/front.png b/gfx/pokemon/cyndaquil/front.png similarity index 100% rename from gfx/pics/cyndaquil/front.png rename to gfx/pokemon/cyndaquil/front.png diff --git a/gfx/pics/cyndaquil/shiny.pal b/gfx/pokemon/cyndaquil/shiny.pal similarity index 100% rename from gfx/pics/cyndaquil/shiny.pal rename to gfx/pokemon/cyndaquil/shiny.pal diff --git a/gfx/pics/delibird/anim0.asm b/gfx/pokemon/delibird/anim0.asm similarity index 100% rename from gfx/pics/delibird/anim0.asm rename to gfx/pokemon/delibird/anim0.asm diff --git a/gfx/pics/delibird/anim1.asm b/gfx/pokemon/delibird/anim1.asm similarity index 100% rename from gfx/pics/delibird/anim1.asm rename to gfx/pokemon/delibird/anim1.asm diff --git a/gfx/pics/delibird/back.2bpp.lz.11463d76 b/gfx/pokemon/delibird/back.2bpp.lz.11463d76 similarity index 100% rename from gfx/pics/delibird/back.2bpp.lz.11463d76 rename to gfx/pokemon/delibird/back.2bpp.lz.11463d76 diff --git a/gfx/pics/delibird/back.png b/gfx/pokemon/delibird/back.png similarity index 100% rename from gfx/pics/delibird/back.png rename to gfx/pokemon/delibird/back.png diff --git a/gfx/pics/delibird/front.animated.2bpp.lz.a3126c48 b/gfx/pokemon/delibird/front.animated.2bpp.lz.a3126c48 similarity index 100% rename from gfx/pics/delibird/front.animated.2bpp.lz.a3126c48 rename to gfx/pokemon/delibird/front.animated.2bpp.lz.a3126c48 diff --git a/gfx/pics/delibird/front.png b/gfx/pokemon/delibird/front.png similarity index 100% rename from gfx/pics/delibird/front.png rename to gfx/pokemon/delibird/front.png diff --git a/gfx/pics/delibird/shiny.pal b/gfx/pokemon/delibird/shiny.pal similarity index 100% rename from gfx/pics/delibird/shiny.pal rename to gfx/pokemon/delibird/shiny.pal diff --git a/gfx/pics/dewgong/anim0.asm b/gfx/pokemon/dewgong/anim0.asm similarity index 100% rename from gfx/pics/dewgong/anim0.asm rename to gfx/pokemon/dewgong/anim0.asm diff --git a/gfx/pics/dewgong/anim1.asm b/gfx/pokemon/dewgong/anim1.asm similarity index 100% rename from gfx/pics/dewgong/anim1.asm rename to gfx/pokemon/dewgong/anim1.asm diff --git a/gfx/pics/dewgong/back.2bpp.lz.4e1fef76 b/gfx/pokemon/dewgong/back.2bpp.lz.4e1fef76 similarity index 100% rename from gfx/pics/dewgong/back.2bpp.lz.4e1fef76 rename to gfx/pokemon/dewgong/back.2bpp.lz.4e1fef76 diff --git a/gfx/pics/dewgong/back.png b/gfx/pokemon/dewgong/back.png similarity index 100% rename from gfx/pics/dewgong/back.png rename to gfx/pokemon/dewgong/back.png diff --git a/gfx/pics/dewgong/front.animated.2bpp.lz.cc53359c b/gfx/pokemon/dewgong/front.animated.2bpp.lz.cc53359c similarity index 100% rename from gfx/pics/dewgong/front.animated.2bpp.lz.cc53359c rename to gfx/pokemon/dewgong/front.animated.2bpp.lz.cc53359c diff --git a/gfx/pics/dewgong/front.png b/gfx/pokemon/dewgong/front.png similarity index 100% rename from gfx/pics/dewgong/front.png rename to gfx/pokemon/dewgong/front.png diff --git a/gfx/pics/dewgong/shiny.pal b/gfx/pokemon/dewgong/shiny.pal similarity index 100% rename from gfx/pics/dewgong/shiny.pal rename to gfx/pokemon/dewgong/shiny.pal diff --git a/gfx/pics/diglett/anim0.asm b/gfx/pokemon/diglett/anim0.asm similarity index 100% rename from gfx/pics/diglett/anim0.asm rename to gfx/pokemon/diglett/anim0.asm diff --git a/gfx/pics/diglett/anim1.asm b/gfx/pokemon/diglett/anim1.asm similarity index 100% rename from gfx/pics/diglett/anim1.asm rename to gfx/pokemon/diglett/anim1.asm diff --git a/gfx/pics/diglett/back.2bpp.lz.31d8cacc b/gfx/pokemon/diglett/back.2bpp.lz.31d8cacc similarity index 100% rename from gfx/pics/diglett/back.2bpp.lz.31d8cacc rename to gfx/pokemon/diglett/back.2bpp.lz.31d8cacc diff --git a/gfx/pics/diglett/back.png b/gfx/pokemon/diglett/back.png similarity index 100% rename from gfx/pics/diglett/back.png rename to gfx/pokemon/diglett/back.png diff --git a/gfx/pics/diglett/front.animated.2bpp.lz.52b0361e b/gfx/pokemon/diglett/front.animated.2bpp.lz.52b0361e similarity index 100% rename from gfx/pics/diglett/front.animated.2bpp.lz.52b0361e rename to gfx/pokemon/diglett/front.animated.2bpp.lz.52b0361e diff --git a/gfx/pics/diglett/front.png b/gfx/pokemon/diglett/front.png similarity index 100% rename from gfx/pics/diglett/front.png rename to gfx/pokemon/diglett/front.png diff --git a/gfx/pics/diglett/shiny.pal b/gfx/pokemon/diglett/shiny.pal similarity index 100% rename from gfx/pics/diglett/shiny.pal rename to gfx/pokemon/diglett/shiny.pal diff --git a/gfx/pics/ditto/anim0.asm b/gfx/pokemon/ditto/anim0.asm similarity index 100% rename from gfx/pics/ditto/anim0.asm rename to gfx/pokemon/ditto/anim0.asm diff --git a/gfx/pics/ditto/anim1.asm b/gfx/pokemon/ditto/anim1.asm similarity index 100% rename from gfx/pics/ditto/anim1.asm rename to gfx/pokemon/ditto/anim1.asm diff --git a/gfx/pics/ditto/back.2bpp.lz.b01a9d91 b/gfx/pokemon/ditto/back.2bpp.lz.b01a9d91 similarity index 100% rename from gfx/pics/ditto/back.2bpp.lz.b01a9d91 rename to gfx/pokemon/ditto/back.2bpp.lz.b01a9d91 diff --git a/gfx/pics/ditto/back.png b/gfx/pokemon/ditto/back.png similarity index 100% rename from gfx/pics/ditto/back.png rename to gfx/pokemon/ditto/back.png diff --git a/gfx/pics/ditto/front.animated.2bpp.lz.344c90fd b/gfx/pokemon/ditto/front.animated.2bpp.lz.344c90fd similarity index 100% rename from gfx/pics/ditto/front.animated.2bpp.lz.344c90fd rename to gfx/pokemon/ditto/front.animated.2bpp.lz.344c90fd diff --git a/gfx/pics/ditto/front.png b/gfx/pokemon/ditto/front.png similarity index 100% rename from gfx/pics/ditto/front.png rename to gfx/pokemon/ditto/front.png diff --git a/gfx/pics/ditto/shiny.pal b/gfx/pokemon/ditto/shiny.pal similarity index 100% rename from gfx/pics/ditto/shiny.pal rename to gfx/pokemon/ditto/shiny.pal diff --git a/gfx/pics/dodrio/anim0.asm b/gfx/pokemon/dodrio/anim0.asm similarity index 100% rename from gfx/pics/dodrio/anim0.asm rename to gfx/pokemon/dodrio/anim0.asm diff --git a/gfx/pics/dodrio/anim1.asm b/gfx/pokemon/dodrio/anim1.asm similarity index 100% rename from gfx/pics/dodrio/anim1.asm rename to gfx/pokemon/dodrio/anim1.asm diff --git a/gfx/pics/dodrio/back.2bpp.lz.a5480e88 b/gfx/pokemon/dodrio/back.2bpp.lz.a5480e88 similarity index 100% rename from gfx/pics/dodrio/back.2bpp.lz.a5480e88 rename to gfx/pokemon/dodrio/back.2bpp.lz.a5480e88 diff --git a/gfx/pics/dodrio/back.png b/gfx/pokemon/dodrio/back.png similarity index 100% rename from gfx/pics/dodrio/back.png rename to gfx/pokemon/dodrio/back.png diff --git a/gfx/pics/dodrio/front.animated.2bpp.lz.2aaff569 b/gfx/pokemon/dodrio/front.animated.2bpp.lz.2aaff569 similarity index 100% rename from gfx/pics/dodrio/front.animated.2bpp.lz.2aaff569 rename to gfx/pokemon/dodrio/front.animated.2bpp.lz.2aaff569 diff --git a/gfx/pics/dodrio/front.png b/gfx/pokemon/dodrio/front.png similarity index 100% rename from gfx/pics/dodrio/front.png rename to gfx/pokemon/dodrio/front.png diff --git a/gfx/pics/dodrio/shiny.pal b/gfx/pokemon/dodrio/shiny.pal similarity index 100% rename from gfx/pics/dodrio/shiny.pal rename to gfx/pokemon/dodrio/shiny.pal diff --git a/gfx/pics/doduo/anim0.asm b/gfx/pokemon/doduo/anim0.asm similarity index 100% rename from gfx/pics/doduo/anim0.asm rename to gfx/pokemon/doduo/anim0.asm diff --git a/gfx/pics/doduo/anim1.asm b/gfx/pokemon/doduo/anim1.asm similarity index 100% rename from gfx/pics/doduo/anim1.asm rename to gfx/pokemon/doduo/anim1.asm diff --git a/gfx/pics/doduo/back.2bpp.lz.05a57563 b/gfx/pokemon/doduo/back.2bpp.lz.05a57563 similarity index 100% rename from gfx/pics/doduo/back.2bpp.lz.05a57563 rename to gfx/pokemon/doduo/back.2bpp.lz.05a57563 diff --git a/gfx/pics/doduo/back.png b/gfx/pokemon/doduo/back.png similarity index 100% rename from gfx/pics/doduo/back.png rename to gfx/pokemon/doduo/back.png diff --git a/gfx/pics/doduo/front.animated.2bpp.lz.89c4acbd b/gfx/pokemon/doduo/front.animated.2bpp.lz.89c4acbd similarity index 100% rename from gfx/pics/doduo/front.animated.2bpp.lz.89c4acbd rename to gfx/pokemon/doduo/front.animated.2bpp.lz.89c4acbd diff --git a/gfx/pics/doduo/front.png b/gfx/pokemon/doduo/front.png similarity index 100% rename from gfx/pics/doduo/front.png rename to gfx/pokemon/doduo/front.png diff --git a/gfx/pics/doduo/shiny.pal b/gfx/pokemon/doduo/shiny.pal similarity index 100% rename from gfx/pics/doduo/shiny.pal rename to gfx/pokemon/doduo/shiny.pal diff --git a/gfx/pics/donphan/anim0.asm b/gfx/pokemon/donphan/anim0.asm similarity index 100% rename from gfx/pics/donphan/anim0.asm rename to gfx/pokemon/donphan/anim0.asm diff --git a/gfx/pics/donphan/anim1.asm b/gfx/pokemon/donphan/anim1.asm similarity index 100% rename from gfx/pics/donphan/anim1.asm rename to gfx/pokemon/donphan/anim1.asm diff --git a/gfx/pics/donphan/back.2bpp.lz.5067b370 b/gfx/pokemon/donphan/back.2bpp.lz.5067b370 similarity index 100% rename from gfx/pics/donphan/back.2bpp.lz.5067b370 rename to gfx/pokemon/donphan/back.2bpp.lz.5067b370 diff --git a/gfx/pics/donphan/back.png b/gfx/pokemon/donphan/back.png similarity index 100% rename from gfx/pics/donphan/back.png rename to gfx/pokemon/donphan/back.png diff --git a/gfx/pics/donphan/front.animated.2bpp.lz.9e1b7048 b/gfx/pokemon/donphan/front.animated.2bpp.lz.9e1b7048 similarity index 100% rename from gfx/pics/donphan/front.animated.2bpp.lz.9e1b7048 rename to gfx/pokemon/donphan/front.animated.2bpp.lz.9e1b7048 diff --git a/gfx/pics/donphan/front.png b/gfx/pokemon/donphan/front.png similarity index 100% rename from gfx/pics/donphan/front.png rename to gfx/pokemon/donphan/front.png diff --git a/gfx/pics/donphan/shiny.pal b/gfx/pokemon/donphan/shiny.pal similarity index 100% rename from gfx/pics/donphan/shiny.pal rename to gfx/pokemon/donphan/shiny.pal diff --git a/gfx/pics/dragonair/anim0.asm b/gfx/pokemon/dragonair/anim0.asm similarity index 100% rename from gfx/pics/dragonair/anim0.asm rename to gfx/pokemon/dragonair/anim0.asm diff --git a/gfx/pics/dragonair/anim1.asm b/gfx/pokemon/dragonair/anim1.asm similarity index 100% rename from gfx/pics/dragonair/anim1.asm rename to gfx/pokemon/dragonair/anim1.asm diff --git a/gfx/pics/dragonair/back.2bpp.lz.9b6fda5b b/gfx/pokemon/dragonair/back.2bpp.lz.9b6fda5b similarity index 100% rename from gfx/pics/dragonair/back.2bpp.lz.9b6fda5b rename to gfx/pokemon/dragonair/back.2bpp.lz.9b6fda5b diff --git a/gfx/pics/dragonair/back.png b/gfx/pokemon/dragonair/back.png similarity index 100% rename from gfx/pics/dragonair/back.png rename to gfx/pokemon/dragonair/back.png diff --git a/gfx/pics/dragonair/front.animated.2bpp.lz.bb9ee373 b/gfx/pokemon/dragonair/front.animated.2bpp.lz.bb9ee373 similarity index 100% rename from gfx/pics/dragonair/front.animated.2bpp.lz.bb9ee373 rename to gfx/pokemon/dragonair/front.animated.2bpp.lz.bb9ee373 diff --git a/gfx/pics/dragonair/front.png b/gfx/pokemon/dragonair/front.png similarity index 100% rename from gfx/pics/dragonair/front.png rename to gfx/pokemon/dragonair/front.png diff --git a/gfx/pics/dragonair/shiny.pal b/gfx/pokemon/dragonair/shiny.pal similarity index 100% rename from gfx/pics/dragonair/shiny.pal rename to gfx/pokemon/dragonair/shiny.pal diff --git a/gfx/pics/dragonite/anim0.asm b/gfx/pokemon/dragonite/anim0.asm similarity index 100% rename from gfx/pics/dragonite/anim0.asm rename to gfx/pokemon/dragonite/anim0.asm diff --git a/gfx/pics/dragonite/anim1.asm b/gfx/pokemon/dragonite/anim1.asm similarity index 100% rename from gfx/pics/dragonite/anim1.asm rename to gfx/pokemon/dragonite/anim1.asm diff --git a/gfx/pics/dragonite/back.2bpp.lz.c408806f b/gfx/pokemon/dragonite/back.2bpp.lz.c408806f similarity index 100% rename from gfx/pics/dragonite/back.2bpp.lz.c408806f rename to gfx/pokemon/dragonite/back.2bpp.lz.c408806f diff --git a/gfx/pics/dragonite/back.png b/gfx/pokemon/dragonite/back.png similarity index 100% rename from gfx/pics/dragonite/back.png rename to gfx/pokemon/dragonite/back.png diff --git a/gfx/pics/dragonite/front.animated.2bpp.lz.b914dfd9 b/gfx/pokemon/dragonite/front.animated.2bpp.lz.b914dfd9 similarity index 100% rename from gfx/pics/dragonite/front.animated.2bpp.lz.b914dfd9 rename to gfx/pokemon/dragonite/front.animated.2bpp.lz.b914dfd9 diff --git a/gfx/pics/dragonite/front.png b/gfx/pokemon/dragonite/front.png similarity index 100% rename from gfx/pics/dragonite/front.png rename to gfx/pokemon/dragonite/front.png diff --git a/gfx/pics/dragonite/shiny.pal b/gfx/pokemon/dragonite/shiny.pal similarity index 100% rename from gfx/pics/dragonite/shiny.pal rename to gfx/pokemon/dragonite/shiny.pal diff --git a/gfx/pics/dratini/anim0.asm b/gfx/pokemon/dratini/anim0.asm similarity index 100% rename from gfx/pics/dratini/anim0.asm rename to gfx/pokemon/dratini/anim0.asm diff --git a/gfx/pics/dratini/anim1.asm b/gfx/pokemon/dratini/anim1.asm similarity index 100% rename from gfx/pics/dratini/anim1.asm rename to gfx/pokemon/dratini/anim1.asm diff --git a/gfx/pics/dratini/back.2bpp.lz.be4d6a2a b/gfx/pokemon/dratini/back.2bpp.lz.be4d6a2a similarity index 100% rename from gfx/pics/dratini/back.2bpp.lz.be4d6a2a rename to gfx/pokemon/dratini/back.2bpp.lz.be4d6a2a diff --git a/gfx/pics/dratini/back.png b/gfx/pokemon/dratini/back.png similarity index 100% rename from gfx/pics/dratini/back.png rename to gfx/pokemon/dratini/back.png diff --git a/gfx/pics/dratini/front.animated.2bpp.lz.838e4248 b/gfx/pokemon/dratini/front.animated.2bpp.lz.838e4248 similarity index 100% rename from gfx/pics/dratini/front.animated.2bpp.lz.838e4248 rename to gfx/pokemon/dratini/front.animated.2bpp.lz.838e4248 diff --git a/gfx/pics/dratini/front.png b/gfx/pokemon/dratini/front.png similarity index 100% rename from gfx/pics/dratini/front.png rename to gfx/pokemon/dratini/front.png diff --git a/gfx/pics/dratini/shiny.pal b/gfx/pokemon/dratini/shiny.pal similarity index 100% rename from gfx/pics/dratini/shiny.pal rename to gfx/pokemon/dratini/shiny.pal diff --git a/gfx/pics/drowzee/anim0.asm b/gfx/pokemon/drowzee/anim0.asm similarity index 100% rename from gfx/pics/drowzee/anim0.asm rename to gfx/pokemon/drowzee/anim0.asm diff --git a/gfx/pics/drowzee/anim1.asm b/gfx/pokemon/drowzee/anim1.asm similarity index 100% rename from gfx/pics/drowzee/anim1.asm rename to gfx/pokemon/drowzee/anim1.asm diff --git a/gfx/pics/drowzee/back.2bpp.lz.55367f5a b/gfx/pokemon/drowzee/back.2bpp.lz.55367f5a similarity index 100% rename from gfx/pics/drowzee/back.2bpp.lz.55367f5a rename to gfx/pokemon/drowzee/back.2bpp.lz.55367f5a diff --git a/gfx/pics/drowzee/back.png b/gfx/pokemon/drowzee/back.png similarity index 100% rename from gfx/pics/drowzee/back.png rename to gfx/pokemon/drowzee/back.png diff --git a/gfx/pics/drowzee/front.animated.2bpp.lz.1f23711a b/gfx/pokemon/drowzee/front.animated.2bpp.lz.1f23711a similarity index 100% rename from gfx/pics/drowzee/front.animated.2bpp.lz.1f23711a rename to gfx/pokemon/drowzee/front.animated.2bpp.lz.1f23711a diff --git a/gfx/pics/drowzee/front.png b/gfx/pokemon/drowzee/front.png similarity index 100% rename from gfx/pics/drowzee/front.png rename to gfx/pokemon/drowzee/front.png diff --git a/gfx/pics/drowzee/shiny.pal b/gfx/pokemon/drowzee/shiny.pal similarity index 100% rename from gfx/pics/drowzee/shiny.pal rename to gfx/pokemon/drowzee/shiny.pal diff --git a/gfx/pics/dugtrio/anim0.asm b/gfx/pokemon/dugtrio/anim0.asm similarity index 100% rename from gfx/pics/dugtrio/anim0.asm rename to gfx/pokemon/dugtrio/anim0.asm diff --git a/gfx/pics/dugtrio/anim1.asm b/gfx/pokemon/dugtrio/anim1.asm similarity index 100% rename from gfx/pics/dugtrio/anim1.asm rename to gfx/pokemon/dugtrio/anim1.asm diff --git a/gfx/pics/dugtrio/back.2bpp.lz.e821a89c b/gfx/pokemon/dugtrio/back.2bpp.lz.e821a89c similarity index 100% rename from gfx/pics/dugtrio/back.2bpp.lz.e821a89c rename to gfx/pokemon/dugtrio/back.2bpp.lz.e821a89c diff --git a/gfx/pics/dugtrio/back.png b/gfx/pokemon/dugtrio/back.png similarity index 100% rename from gfx/pics/dugtrio/back.png rename to gfx/pokemon/dugtrio/back.png diff --git a/gfx/pics/dugtrio/front.animated.2bpp.lz.5c9e668c b/gfx/pokemon/dugtrio/front.animated.2bpp.lz.5c9e668c similarity index 100% rename from gfx/pics/dugtrio/front.animated.2bpp.lz.5c9e668c rename to gfx/pokemon/dugtrio/front.animated.2bpp.lz.5c9e668c diff --git a/gfx/pics/dugtrio/front.png b/gfx/pokemon/dugtrio/front.png similarity index 100% rename from gfx/pics/dugtrio/front.png rename to gfx/pokemon/dugtrio/front.png diff --git a/gfx/pics/dugtrio/shiny.pal b/gfx/pokemon/dugtrio/shiny.pal similarity index 100% rename from gfx/pics/dugtrio/shiny.pal rename to gfx/pokemon/dugtrio/shiny.pal diff --git a/gfx/pics/dunsparce/anim0.asm b/gfx/pokemon/dunsparce/anim0.asm similarity index 100% rename from gfx/pics/dunsparce/anim0.asm rename to gfx/pokemon/dunsparce/anim0.asm diff --git a/gfx/pics/dunsparce/anim1.asm b/gfx/pokemon/dunsparce/anim1.asm similarity index 100% rename from gfx/pics/dunsparce/anim1.asm rename to gfx/pokemon/dunsparce/anim1.asm diff --git a/gfx/pics/dunsparce/back.2bpp.lz.aee69114 b/gfx/pokemon/dunsparce/back.2bpp.lz.aee69114 similarity index 100% rename from gfx/pics/dunsparce/back.2bpp.lz.aee69114 rename to gfx/pokemon/dunsparce/back.2bpp.lz.aee69114 diff --git a/gfx/pics/dunsparce/back.png b/gfx/pokemon/dunsparce/back.png similarity index 100% rename from gfx/pics/dunsparce/back.png rename to gfx/pokemon/dunsparce/back.png diff --git a/gfx/pics/dunsparce/front.animated.2bpp.lz.04ea863c b/gfx/pokemon/dunsparce/front.animated.2bpp.lz.04ea863c similarity index 100% rename from gfx/pics/dunsparce/front.animated.2bpp.lz.04ea863c rename to gfx/pokemon/dunsparce/front.animated.2bpp.lz.04ea863c diff --git a/gfx/pics/dunsparce/front.png b/gfx/pokemon/dunsparce/front.png similarity index 100% rename from gfx/pics/dunsparce/front.png rename to gfx/pokemon/dunsparce/front.png diff --git a/gfx/pics/dunsparce/shiny.pal b/gfx/pokemon/dunsparce/shiny.pal similarity index 100% rename from gfx/pics/dunsparce/shiny.pal rename to gfx/pokemon/dunsparce/shiny.pal diff --git a/gfx/pics/eevee/anim0.asm b/gfx/pokemon/eevee/anim0.asm similarity index 100% rename from gfx/pics/eevee/anim0.asm rename to gfx/pokemon/eevee/anim0.asm diff --git a/gfx/pics/eevee/anim1.asm b/gfx/pokemon/eevee/anim1.asm similarity index 100% rename from gfx/pics/eevee/anim1.asm rename to gfx/pokemon/eevee/anim1.asm diff --git a/gfx/pics/eevee/back.2bpp.lz.bc34ce62 b/gfx/pokemon/eevee/back.2bpp.lz.bc34ce62 similarity index 100% rename from gfx/pics/eevee/back.2bpp.lz.bc34ce62 rename to gfx/pokemon/eevee/back.2bpp.lz.bc34ce62 diff --git a/gfx/pics/eevee/back.png b/gfx/pokemon/eevee/back.png similarity index 100% rename from gfx/pics/eevee/back.png rename to gfx/pokemon/eevee/back.png diff --git a/gfx/pics/eevee/front.animated.2bpp.lz.04e72b48 b/gfx/pokemon/eevee/front.animated.2bpp.lz.04e72b48 similarity index 100% rename from gfx/pics/eevee/front.animated.2bpp.lz.04e72b48 rename to gfx/pokemon/eevee/front.animated.2bpp.lz.04e72b48 diff --git a/gfx/pics/eevee/front.png b/gfx/pokemon/eevee/front.png similarity index 100% rename from gfx/pics/eevee/front.png rename to gfx/pokemon/eevee/front.png diff --git a/gfx/pics/eevee/shiny.pal b/gfx/pokemon/eevee/shiny.pal similarity index 100% rename from gfx/pics/eevee/shiny.pal rename to gfx/pokemon/eevee/shiny.pal diff --git a/gfx/pics/egg/anim0.asm b/gfx/pokemon/egg/anim0.asm similarity index 100% rename from gfx/pics/egg/anim0.asm rename to gfx/pokemon/egg/anim0.asm diff --git a/gfx/pics/egg/anim1.asm b/gfx/pokemon/egg/anim1.asm similarity index 100% rename from gfx/pics/egg/anim1.asm rename to gfx/pokemon/egg/anim1.asm diff --git a/gfx/pics/egg/front.animated.2bpp.lz.7b468eff b/gfx/pokemon/egg/front.animated.2bpp.lz.7b468eff similarity index 100% rename from gfx/pics/egg/front.animated.2bpp.lz.7b468eff rename to gfx/pokemon/egg/front.animated.2bpp.lz.7b468eff diff --git a/gfx/pics/egg/front.png b/gfx/pokemon/egg/front.png similarity index 100% rename from gfx/pics/egg/front.png rename to gfx/pokemon/egg/front.png diff --git a/gfx/pics/ekans/anim0.asm b/gfx/pokemon/ekans/anim0.asm similarity index 100% rename from gfx/pics/ekans/anim0.asm rename to gfx/pokemon/ekans/anim0.asm diff --git a/gfx/pics/ekans/anim1.asm b/gfx/pokemon/ekans/anim1.asm similarity index 100% rename from gfx/pics/ekans/anim1.asm rename to gfx/pokemon/ekans/anim1.asm diff --git a/gfx/pics/ekans/back.2bpp.lz.671d14d9 b/gfx/pokemon/ekans/back.2bpp.lz.671d14d9 similarity index 100% rename from gfx/pics/ekans/back.2bpp.lz.671d14d9 rename to gfx/pokemon/ekans/back.2bpp.lz.671d14d9 diff --git a/gfx/pics/ekans/back.png b/gfx/pokemon/ekans/back.png similarity index 100% rename from gfx/pics/ekans/back.png rename to gfx/pokemon/ekans/back.png diff --git a/gfx/pics/ekans/front.animated.2bpp.lz.018a1c72 b/gfx/pokemon/ekans/front.animated.2bpp.lz.018a1c72 similarity index 100% rename from gfx/pics/ekans/front.animated.2bpp.lz.018a1c72 rename to gfx/pokemon/ekans/front.animated.2bpp.lz.018a1c72 diff --git a/gfx/pics/ekans/front.png b/gfx/pokemon/ekans/front.png similarity index 100% rename from gfx/pics/ekans/front.png rename to gfx/pokemon/ekans/front.png diff --git a/gfx/pics/ekans/shiny.pal b/gfx/pokemon/ekans/shiny.pal similarity index 100% rename from gfx/pics/ekans/shiny.pal rename to gfx/pokemon/ekans/shiny.pal diff --git a/gfx/pics/electabuzz/anim0.asm b/gfx/pokemon/electabuzz/anim0.asm similarity index 100% rename from gfx/pics/electabuzz/anim0.asm rename to gfx/pokemon/electabuzz/anim0.asm diff --git a/gfx/pics/electabuzz/anim1.asm b/gfx/pokemon/electabuzz/anim1.asm similarity index 100% rename from gfx/pics/electabuzz/anim1.asm rename to gfx/pokemon/electabuzz/anim1.asm diff --git a/gfx/pics/electabuzz/back.2bpp.lz.e97330fe b/gfx/pokemon/electabuzz/back.2bpp.lz.e97330fe similarity index 100% rename from gfx/pics/electabuzz/back.2bpp.lz.e97330fe rename to gfx/pokemon/electabuzz/back.2bpp.lz.e97330fe diff --git a/gfx/pics/electabuzz/back.png b/gfx/pokemon/electabuzz/back.png similarity index 100% rename from gfx/pics/electabuzz/back.png rename to gfx/pokemon/electabuzz/back.png diff --git a/gfx/pics/electabuzz/front.animated.2bpp.lz.381e1c6e b/gfx/pokemon/electabuzz/front.animated.2bpp.lz.381e1c6e similarity index 100% rename from gfx/pics/electabuzz/front.animated.2bpp.lz.381e1c6e rename to gfx/pokemon/electabuzz/front.animated.2bpp.lz.381e1c6e diff --git a/gfx/pics/electabuzz/front.png b/gfx/pokemon/electabuzz/front.png similarity index 100% rename from gfx/pics/electabuzz/front.png rename to gfx/pokemon/electabuzz/front.png diff --git a/gfx/pics/electabuzz/shiny.pal b/gfx/pokemon/electabuzz/shiny.pal similarity index 100% rename from gfx/pics/electabuzz/shiny.pal rename to gfx/pokemon/electabuzz/shiny.pal diff --git a/gfx/pics/electrode/anim0.asm b/gfx/pokemon/electrode/anim0.asm similarity index 100% rename from gfx/pics/electrode/anim0.asm rename to gfx/pokemon/electrode/anim0.asm diff --git a/gfx/pics/electrode/anim1.asm b/gfx/pokemon/electrode/anim1.asm similarity index 100% rename from gfx/pics/electrode/anim1.asm rename to gfx/pokemon/electrode/anim1.asm diff --git a/gfx/pics/electrode/back.2bpp.lz.874e1f1c b/gfx/pokemon/electrode/back.2bpp.lz.874e1f1c similarity index 100% rename from gfx/pics/electrode/back.2bpp.lz.874e1f1c rename to gfx/pokemon/electrode/back.2bpp.lz.874e1f1c diff --git a/gfx/pics/electrode/back.png b/gfx/pokemon/electrode/back.png similarity index 100% rename from gfx/pics/electrode/back.png rename to gfx/pokemon/electrode/back.png diff --git a/gfx/pics/electrode/front.animated.2bpp.lz.d7943ad8 b/gfx/pokemon/electrode/front.animated.2bpp.lz.d7943ad8 similarity index 100% rename from gfx/pics/electrode/front.animated.2bpp.lz.d7943ad8 rename to gfx/pokemon/electrode/front.animated.2bpp.lz.d7943ad8 diff --git a/gfx/pics/electrode/front.png b/gfx/pokemon/electrode/front.png similarity index 100% rename from gfx/pics/electrode/front.png rename to gfx/pokemon/electrode/front.png diff --git a/gfx/pics/electrode/shiny.pal b/gfx/pokemon/electrode/shiny.pal similarity index 100% rename from gfx/pics/electrode/shiny.pal rename to gfx/pokemon/electrode/shiny.pal diff --git a/gfx/pics/elekid/anim0.asm b/gfx/pokemon/elekid/anim0.asm similarity index 100% rename from gfx/pics/elekid/anim0.asm rename to gfx/pokemon/elekid/anim0.asm diff --git a/gfx/pics/elekid/anim1.asm b/gfx/pokemon/elekid/anim1.asm similarity index 100% rename from gfx/pics/elekid/anim1.asm rename to gfx/pokemon/elekid/anim1.asm diff --git a/gfx/pics/elekid/back.2bpp.lz.227a1b23 b/gfx/pokemon/elekid/back.2bpp.lz.227a1b23 similarity index 100% rename from gfx/pics/elekid/back.2bpp.lz.227a1b23 rename to gfx/pokemon/elekid/back.2bpp.lz.227a1b23 diff --git a/gfx/pics/elekid/back.png b/gfx/pokemon/elekid/back.png similarity index 100% rename from gfx/pics/elekid/back.png rename to gfx/pokemon/elekid/back.png diff --git a/gfx/pics/elekid/front.animated.2bpp.lz.3bbb6b61 b/gfx/pokemon/elekid/front.animated.2bpp.lz.3bbb6b61 similarity index 100% rename from gfx/pics/elekid/front.animated.2bpp.lz.3bbb6b61 rename to gfx/pokemon/elekid/front.animated.2bpp.lz.3bbb6b61 diff --git a/gfx/pics/elekid/front.png b/gfx/pokemon/elekid/front.png similarity index 100% rename from gfx/pics/elekid/front.png rename to gfx/pokemon/elekid/front.png diff --git a/gfx/pics/elekid/shiny.pal b/gfx/pokemon/elekid/shiny.pal similarity index 100% rename from gfx/pics/elekid/shiny.pal rename to gfx/pokemon/elekid/shiny.pal diff --git a/gfx/pics/entei/anim0.asm b/gfx/pokemon/entei/anim0.asm similarity index 100% rename from gfx/pics/entei/anim0.asm rename to gfx/pokemon/entei/anim0.asm diff --git a/gfx/pics/entei/anim1.asm b/gfx/pokemon/entei/anim1.asm similarity index 100% rename from gfx/pics/entei/anim1.asm rename to gfx/pokemon/entei/anim1.asm diff --git a/gfx/pics/entei/back.2bpp.lz.d1e1986a b/gfx/pokemon/entei/back.2bpp.lz.d1e1986a similarity index 100% rename from gfx/pics/entei/back.2bpp.lz.d1e1986a rename to gfx/pokemon/entei/back.2bpp.lz.d1e1986a diff --git a/gfx/pics/entei/back.png b/gfx/pokemon/entei/back.png similarity index 100% rename from gfx/pics/entei/back.png rename to gfx/pokemon/entei/back.png diff --git a/gfx/pics/entei/front.animated.2bpp.lz.ebaf8024 b/gfx/pokemon/entei/front.animated.2bpp.lz.ebaf8024 similarity index 100% rename from gfx/pics/entei/front.animated.2bpp.lz.ebaf8024 rename to gfx/pokemon/entei/front.animated.2bpp.lz.ebaf8024 diff --git a/gfx/pics/entei/front.png b/gfx/pokemon/entei/front.png similarity index 100% rename from gfx/pics/entei/front.png rename to gfx/pokemon/entei/front.png diff --git a/gfx/pics/entei/shiny.pal b/gfx/pokemon/entei/shiny.pal similarity index 100% rename from gfx/pics/entei/shiny.pal rename to gfx/pokemon/entei/shiny.pal diff --git a/gfx/pics/espeon/anim0.asm b/gfx/pokemon/espeon/anim0.asm similarity index 100% rename from gfx/pics/espeon/anim0.asm rename to gfx/pokemon/espeon/anim0.asm diff --git a/gfx/pics/espeon/anim1.asm b/gfx/pokemon/espeon/anim1.asm similarity index 100% rename from gfx/pics/espeon/anim1.asm rename to gfx/pokemon/espeon/anim1.asm diff --git a/gfx/pics/espeon/back.2bpp.lz.0e77f26e b/gfx/pokemon/espeon/back.2bpp.lz.0e77f26e similarity index 100% rename from gfx/pics/espeon/back.2bpp.lz.0e77f26e rename to gfx/pokemon/espeon/back.2bpp.lz.0e77f26e diff --git a/gfx/pics/espeon/back.png b/gfx/pokemon/espeon/back.png similarity index 100% rename from gfx/pics/espeon/back.png rename to gfx/pokemon/espeon/back.png diff --git a/gfx/pics/espeon/front.animated.2bpp.lz.069f57ec b/gfx/pokemon/espeon/front.animated.2bpp.lz.069f57ec similarity index 100% rename from gfx/pics/espeon/front.animated.2bpp.lz.069f57ec rename to gfx/pokemon/espeon/front.animated.2bpp.lz.069f57ec diff --git a/gfx/pics/espeon/front.png b/gfx/pokemon/espeon/front.png similarity index 100% rename from gfx/pics/espeon/front.png rename to gfx/pokemon/espeon/front.png diff --git a/gfx/pics/espeon/shiny.pal b/gfx/pokemon/espeon/shiny.pal similarity index 100% rename from gfx/pics/espeon/shiny.pal rename to gfx/pokemon/espeon/shiny.pal diff --git a/gfx/pics/exeggcute/anim0.asm b/gfx/pokemon/exeggcute/anim0.asm similarity index 100% rename from gfx/pics/exeggcute/anim0.asm rename to gfx/pokemon/exeggcute/anim0.asm diff --git a/gfx/pics/exeggcute/anim1.asm b/gfx/pokemon/exeggcute/anim1.asm similarity index 100% rename from gfx/pics/exeggcute/anim1.asm rename to gfx/pokemon/exeggcute/anim1.asm diff --git a/gfx/pics/exeggcute/back.2bpp.lz.060c38b0 b/gfx/pokemon/exeggcute/back.2bpp.lz.060c38b0 similarity index 100% rename from gfx/pics/exeggcute/back.2bpp.lz.060c38b0 rename to gfx/pokemon/exeggcute/back.2bpp.lz.060c38b0 diff --git a/gfx/pics/exeggcute/back.png b/gfx/pokemon/exeggcute/back.png similarity index 100% rename from gfx/pics/exeggcute/back.png rename to gfx/pokemon/exeggcute/back.png diff --git a/gfx/pics/exeggcute/front.animated.2bpp.lz.578a4722 b/gfx/pokemon/exeggcute/front.animated.2bpp.lz.578a4722 similarity index 100% rename from gfx/pics/exeggcute/front.animated.2bpp.lz.578a4722 rename to gfx/pokemon/exeggcute/front.animated.2bpp.lz.578a4722 diff --git a/gfx/pics/exeggcute/front.png b/gfx/pokemon/exeggcute/front.png similarity index 100% rename from gfx/pics/exeggcute/front.png rename to gfx/pokemon/exeggcute/front.png diff --git a/gfx/pics/exeggcute/shiny.pal b/gfx/pokemon/exeggcute/shiny.pal similarity index 100% rename from gfx/pics/exeggcute/shiny.pal rename to gfx/pokemon/exeggcute/shiny.pal diff --git a/gfx/pics/exeggutor/anim0.asm b/gfx/pokemon/exeggutor/anim0.asm similarity index 100% rename from gfx/pics/exeggutor/anim0.asm rename to gfx/pokemon/exeggutor/anim0.asm diff --git a/gfx/pics/exeggutor/anim1.asm b/gfx/pokemon/exeggutor/anim1.asm similarity index 100% rename from gfx/pics/exeggutor/anim1.asm rename to gfx/pokemon/exeggutor/anim1.asm diff --git a/gfx/pics/exeggutor/back.2bpp.lz.e012643e b/gfx/pokemon/exeggutor/back.2bpp.lz.e012643e similarity index 100% rename from gfx/pics/exeggutor/back.2bpp.lz.e012643e rename to gfx/pokemon/exeggutor/back.2bpp.lz.e012643e diff --git a/gfx/pics/exeggutor/back.png b/gfx/pokemon/exeggutor/back.png similarity index 100% rename from gfx/pics/exeggutor/back.png rename to gfx/pokemon/exeggutor/back.png diff --git a/gfx/pics/exeggutor/front.animated.2bpp.lz.3915d572 b/gfx/pokemon/exeggutor/front.animated.2bpp.lz.3915d572 similarity index 100% rename from gfx/pics/exeggutor/front.animated.2bpp.lz.3915d572 rename to gfx/pokemon/exeggutor/front.animated.2bpp.lz.3915d572 diff --git a/gfx/pics/exeggutor/front.png b/gfx/pokemon/exeggutor/front.png similarity index 100% rename from gfx/pics/exeggutor/front.png rename to gfx/pokemon/exeggutor/front.png diff --git a/gfx/pics/exeggutor/shiny.pal b/gfx/pokemon/exeggutor/shiny.pal similarity index 100% rename from gfx/pics/exeggutor/shiny.pal rename to gfx/pokemon/exeggutor/shiny.pal diff --git a/gfx/pics/extra_pointers.asm b/gfx/pokemon/extra_pointers.asm similarity index 100% rename from gfx/pics/extra_pointers.asm rename to gfx/pokemon/extra_pointers.asm diff --git a/gfx/pokemon/extras.asm b/gfx/pokemon/extras.asm new file mode 100644 index 000000000..88cb6a77b --- /dev/null +++ b/gfx/pokemon/extras.asm @@ -0,0 +1,252 @@ +BulbasaurAnimationExtra: INCLUDE "gfx/pokemon/bulbasaur/anim1.asm" +IvysaurAnimationExtra: INCLUDE "gfx/pokemon/ivysaur/anim1.asm" +VenusaurAnimationExtra: INCLUDE "gfx/pokemon/venusaur/anim1.asm" +CharmanderAnimationExtra: INCLUDE "gfx/pokemon/charmander/anim1.asm" +CharmeleonAnimationExtra: INCLUDE "gfx/pokemon/charmeleon/anim1.asm" +CharizardAnimationExtra: INCLUDE "gfx/pokemon/charizard/anim1.asm" +SquirtleAnimationExtra: INCLUDE "gfx/pokemon/squirtle/anim1.asm" +WartortleAnimationExtra: INCLUDE "gfx/pokemon/wartortle/anim1.asm" +BlastoiseAnimationExtra: INCLUDE "gfx/pokemon/blastoise/anim1.asm" +CaterpieAnimationExtra: INCLUDE "gfx/pokemon/caterpie/anim1.asm" +MetapodAnimationExtra: INCLUDE "gfx/pokemon/metapod/anim1.asm" +ButterfreeAnimationExtra: INCLUDE "gfx/pokemon/butterfree/anim1.asm" +WeedleAnimationExtra: INCLUDE "gfx/pokemon/weedle/anim1.asm" +KakunaAnimationExtra: INCLUDE "gfx/pokemon/kakuna/anim1.asm" +BeedrillAnimationExtra: INCLUDE "gfx/pokemon/beedrill/anim1.asm" +PidgeyAnimationExtra: INCLUDE "gfx/pokemon/pidgey/anim1.asm" +PidgeottoAnimationExtra: INCLUDE "gfx/pokemon/pidgeotto/anim1.asm" +PidgeotAnimationExtra: INCLUDE "gfx/pokemon/pidgeot/anim1.asm" +RattataAnimationExtra: INCLUDE "gfx/pokemon/rattata/anim1.asm" +RaticateAnimationExtra: INCLUDE "gfx/pokemon/raticate/anim1.asm" +SpearowAnimationExtra: INCLUDE "gfx/pokemon/spearow/anim1.asm" +FearowAnimationExtra: INCLUDE "gfx/pokemon/fearow/anim1.asm" +EkansAnimationExtra: INCLUDE "gfx/pokemon/ekans/anim1.asm" +ArbokAnimationExtra: INCLUDE "gfx/pokemon/arbok/anim1.asm" +PikachuAnimationExtra: INCLUDE "gfx/pokemon/pikachu/anim1.asm" +RaichuAnimationExtra: INCLUDE "gfx/pokemon/raichu/anim1.asm" +SandshrewAnimationExtra: INCLUDE "gfx/pokemon/sandshrew/anim1.asm" +SandslashAnimationExtra: INCLUDE "gfx/pokemon/sandslash/anim1.asm" +NidoranFAnimationExtra: INCLUDE "gfx/pokemon/nidoran_f/anim1.asm" +NidorinaAnimationExtra: INCLUDE "gfx/pokemon/nidorina/anim1.asm" +NidoqueenAnimationExtra: INCLUDE "gfx/pokemon/nidoqueen/anim1.asm" +NidoranMAnimationExtra: INCLUDE "gfx/pokemon/nidoran_m/anim1.asm" +NidorinoAnimationExtra: INCLUDE "gfx/pokemon/nidorino/anim1.asm" +NidokingAnimationExtra: INCLUDE "gfx/pokemon/nidoking/anim1.asm" +ClefairyAnimationExtra: INCLUDE "gfx/pokemon/clefairy/anim1.asm" +ClefableAnimationExtra: INCLUDE "gfx/pokemon/clefable/anim1.asm" +VulpixAnimationExtra: INCLUDE "gfx/pokemon/vulpix/anim1.asm" +NinetalesAnimationExtra: INCLUDE "gfx/pokemon/ninetales/anim1.asm" +JigglypuffAnimationExtra: INCLUDE "gfx/pokemon/jigglypuff/anim1.asm" +WigglytuffAnimationExtra: INCLUDE "gfx/pokemon/wigglytuff/anim1.asm" +ZubatAnimationExtra: INCLUDE "gfx/pokemon/zubat/anim1.asm" +GolbatAnimationExtra: INCLUDE "gfx/pokemon/golbat/anim1.asm" +OddishAnimationExtra: INCLUDE "gfx/pokemon/oddish/anim1.asm" +GloomAnimationExtra: INCLUDE "gfx/pokemon/gloom/anim1.asm" +VileplumeAnimationExtra: INCLUDE "gfx/pokemon/vileplume/anim1.asm" +ParasAnimationExtra: INCLUDE "gfx/pokemon/paras/anim1.asm" +ParasectAnimationExtra: INCLUDE "gfx/pokemon/parasect/anim1.asm" +VenonatAnimationExtra: INCLUDE "gfx/pokemon/venonat/anim1.asm" +VenomothAnimationExtra: INCLUDE "gfx/pokemon/venomoth/anim1.asm" +DiglettAnimationExtra: INCLUDE "gfx/pokemon/diglett/anim1.asm" +DugtrioAnimationExtra: INCLUDE "gfx/pokemon/dugtrio/anim1.asm" +MeowthAnimationExtra: INCLUDE "gfx/pokemon/meowth/anim1.asm" +PersianAnimationExtra: INCLUDE "gfx/pokemon/persian/anim1.asm" +PsyduckAnimationExtra: INCLUDE "gfx/pokemon/psyduck/anim1.asm" +GolduckAnimationExtra: INCLUDE "gfx/pokemon/golduck/anim1.asm" +MankeyAnimationExtra: INCLUDE "gfx/pokemon/mankey/anim1.asm" +PrimeapeAnimationExtra: INCLUDE "gfx/pokemon/primeape/anim1.asm" +GrowlitheAnimationExtra: INCLUDE "gfx/pokemon/growlithe/anim1.asm" +ArcanineAnimationExtra: INCLUDE "gfx/pokemon/arcanine/anim1.asm" +PoliwagAnimationExtra: INCLUDE "gfx/pokemon/poliwag/anim1.asm" +PoliwhirlAnimationExtra: INCLUDE "gfx/pokemon/poliwhirl/anim1.asm" +PoliwrathAnimationExtra: INCLUDE "gfx/pokemon/poliwrath/anim1.asm" +AbraAnimationExtra: INCLUDE "gfx/pokemon/abra/anim1.asm" +KadabraAnimationExtra: INCLUDE "gfx/pokemon/kadabra/anim1.asm" +AlakazamAnimationExtra: INCLUDE "gfx/pokemon/alakazam/anim1.asm" +MachopAnimationExtra: INCLUDE "gfx/pokemon/machop/anim1.asm" +MachokeAnimationExtra: INCLUDE "gfx/pokemon/machoke/anim1.asm" +MachampAnimationExtra: INCLUDE "gfx/pokemon/machamp/anim1.asm" +BellsproutAnimationExtra: INCLUDE "gfx/pokemon/bellsprout/anim1.asm" +WeepinbellAnimationExtra: INCLUDE "gfx/pokemon/weepinbell/anim1.asm" +VictreebelAnimationExtra: INCLUDE "gfx/pokemon/victreebel/anim1.asm" +TentacoolAnimationExtra: INCLUDE "gfx/pokemon/tentacool/anim1.asm" +TentacruelAnimationExtra: INCLUDE "gfx/pokemon/tentacruel/anim1.asm" +GeodudeAnimationExtra: INCLUDE "gfx/pokemon/geodude/anim1.asm" +GravelerAnimationExtra: INCLUDE "gfx/pokemon/graveler/anim1.asm" +GolemAnimationExtra: INCLUDE "gfx/pokemon/golem/anim1.asm" +PonytaAnimationExtra: INCLUDE "gfx/pokemon/ponyta/anim1.asm" +RapidashAnimationExtra: INCLUDE "gfx/pokemon/rapidash/anim1.asm" +SlowpokeAnimationExtra: INCLUDE "gfx/pokemon/slowpoke/anim1.asm" +SlowbroAnimationExtra: INCLUDE "gfx/pokemon/slowbro/anim1.asm" +MagnemiteAnimationExtra: INCLUDE "gfx/pokemon/magnemite/anim1.asm" +MagnetonAnimationExtra: INCLUDE "gfx/pokemon/magneton/anim1.asm" +FarfetchDAnimationExtra: INCLUDE "gfx/pokemon/farfetch_d/anim1.asm" +DoduoAnimationExtra: INCLUDE "gfx/pokemon/doduo/anim1.asm" +DodrioAnimationExtra: INCLUDE "gfx/pokemon/dodrio/anim1.asm" +SeelAnimationExtra: INCLUDE "gfx/pokemon/seel/anim1.asm" +DewgongAnimationExtra: INCLUDE "gfx/pokemon/dewgong/anim1.asm" +GrimerAnimationExtra: INCLUDE "gfx/pokemon/grimer/anim1.asm" +MukAnimationExtra: INCLUDE "gfx/pokemon/muk/anim1.asm" +ShellderAnimationExtra: INCLUDE "gfx/pokemon/shellder/anim1.asm" +CloysterAnimationExtra: INCLUDE "gfx/pokemon/cloyster/anim1.asm" +GastlyAnimationExtra: INCLUDE "gfx/pokemon/gastly/anim1.asm" +HaunterAnimationExtra: INCLUDE "gfx/pokemon/haunter/anim1.asm" +GengarAnimationExtra: INCLUDE "gfx/pokemon/gengar/anim1.asm" +OnixAnimationExtra: INCLUDE "gfx/pokemon/onix/anim1.asm" +DrowzeeAnimationExtra: INCLUDE "gfx/pokemon/drowzee/anim1.asm" +HypnoAnimationExtra: INCLUDE "gfx/pokemon/hypno/anim1.asm" +KrabbyAnimationExtra: INCLUDE "gfx/pokemon/krabby/anim1.asm" +KinglerAnimationExtra: INCLUDE "gfx/pokemon/kingler/anim1.asm" +VoltorbAnimationExtra: INCLUDE "gfx/pokemon/voltorb/anim1.asm" +ElectrodeAnimationExtra: INCLUDE "gfx/pokemon/electrode/anim1.asm" +ExeggcuteAnimationExtra: INCLUDE "gfx/pokemon/exeggcute/anim1.asm" +ExeggutorAnimationExtra: INCLUDE "gfx/pokemon/exeggutor/anim1.asm" +CuboneAnimationExtra: INCLUDE "gfx/pokemon/cubone/anim1.asm" +MarowakAnimationExtra: INCLUDE "gfx/pokemon/marowak/anim1.asm" +HitmonleeAnimationExtra: INCLUDE "gfx/pokemon/hitmonlee/anim1.asm" +HitmonchanAnimationExtra: INCLUDE "gfx/pokemon/hitmonchan/anim1.asm" +LickitungAnimationExtra: INCLUDE "gfx/pokemon/lickitung/anim1.asm" +KoffingAnimationExtra: INCLUDE "gfx/pokemon/koffing/anim1.asm" +WeezingAnimationExtra: INCLUDE "gfx/pokemon/weezing/anim1.asm" +RhyhornAnimationExtra: INCLUDE "gfx/pokemon/rhyhorn/anim1.asm" +RhydonAnimationExtra: INCLUDE "gfx/pokemon/rhydon/anim1.asm" +ChanseyAnimationExtra: INCLUDE "gfx/pokemon/chansey/anim1.asm" +TangelaAnimationExtra: INCLUDE "gfx/pokemon/tangela/anim1.asm" +KangaskhanAnimationExtra: INCLUDE "gfx/pokemon/kangaskhan/anim1.asm" +HorseaAnimationExtra: INCLUDE "gfx/pokemon/horsea/anim1.asm" +SeadraAnimationExtra: INCLUDE "gfx/pokemon/seadra/anim1.asm" +GoldeenAnimationExtra: INCLUDE "gfx/pokemon/goldeen/anim1.asm" +SeakingAnimationExtra: INCLUDE "gfx/pokemon/seaking/anim1.asm" +StaryuAnimationExtra: INCLUDE "gfx/pokemon/staryu/anim1.asm" +StarmieAnimationExtra: INCLUDE "gfx/pokemon/starmie/anim1.asm" +MrMimeAnimationExtra: INCLUDE "gfx/pokemon/mr__mime/anim1.asm" +ScytherAnimationExtra: INCLUDE "gfx/pokemon/scyther/anim1.asm" +JynxAnimationExtra: INCLUDE "gfx/pokemon/jynx/anim1.asm" +ElectabuzzAnimationExtra: INCLUDE "gfx/pokemon/electabuzz/anim1.asm" +MagmarAnimationExtra: INCLUDE "gfx/pokemon/magmar/anim1.asm" +PinsirAnimationExtra: INCLUDE "gfx/pokemon/pinsir/anim1.asm" +TaurosAnimationExtra: INCLUDE "gfx/pokemon/tauros/anim1.asm" +MagikarpAnimationExtra: INCLUDE "gfx/pokemon/magikarp/anim1.asm" +GyaradosAnimationExtra: INCLUDE "gfx/pokemon/gyarados/anim1.asm" +LaprasAnimationExtra: INCLUDE "gfx/pokemon/lapras/anim1.asm" +DittoAnimationExtra: INCLUDE "gfx/pokemon/ditto/anim1.asm" +EeveeAnimationExtra: INCLUDE "gfx/pokemon/eevee/anim1.asm" +VaporeonAnimationExtra: INCLUDE "gfx/pokemon/vaporeon/anim1.asm" +JolteonAnimationExtra: INCLUDE "gfx/pokemon/jolteon/anim1.asm" +FlareonAnimationExtra: INCLUDE "gfx/pokemon/flareon/anim1.asm" +PorygonAnimationExtra: INCLUDE "gfx/pokemon/porygon/anim1.asm" +OmanyteAnimationExtra: INCLUDE "gfx/pokemon/omanyte/anim1.asm" +OmastarAnimationExtra: INCLUDE "gfx/pokemon/omastar/anim1.asm" +KabutoAnimationExtra: INCLUDE "gfx/pokemon/kabuto/anim1.asm" +KabutopsAnimationExtra: INCLUDE "gfx/pokemon/kabutops/anim1.asm" +AerodactylAnimationExtra: INCLUDE "gfx/pokemon/aerodactyl/anim1.asm" +SnorlaxAnimationExtra: INCLUDE "gfx/pokemon/snorlax/anim1.asm" +ArticunoAnimationExtra: INCLUDE "gfx/pokemon/articuno/anim1.asm" +ZapdosAnimationExtra: INCLUDE "gfx/pokemon/zapdos/anim1.asm" +MoltresAnimationExtra: INCLUDE "gfx/pokemon/moltres/anim1.asm" +DratiniAnimationExtra: INCLUDE "gfx/pokemon/dratini/anim1.asm" +DragonairAnimationExtra: INCLUDE "gfx/pokemon/dragonair/anim1.asm" +DragoniteAnimationExtra: INCLUDE "gfx/pokemon/dragonite/anim1.asm" +MewtwoAnimationExtra: INCLUDE "gfx/pokemon/mewtwo/anim1.asm" +MewAnimationExtra: INCLUDE "gfx/pokemon/mew/anim1.asm" +ChikoritaAnimationExtra: INCLUDE "gfx/pokemon/chikorita/anim1.asm" +BayleefAnimationExtra: INCLUDE "gfx/pokemon/bayleef/anim1.asm" +MeganiumAnimationExtra: INCLUDE "gfx/pokemon/meganium/anim1.asm" +CyndaquilAnimationExtra: INCLUDE "gfx/pokemon/cyndaquil/anim1.asm" +QuilavaAnimationExtra: INCLUDE "gfx/pokemon/quilava/anim1.asm" +TyphlosionAnimationExtra: INCLUDE "gfx/pokemon/typhlosion/anim1.asm" +TotodileAnimationExtra: INCLUDE "gfx/pokemon/totodile/anim1.asm" +CroconawAnimationExtra: INCLUDE "gfx/pokemon/croconaw/anim1.asm" +FeraligatrAnimationExtra: INCLUDE "gfx/pokemon/feraligatr/anim1.asm" +SentretAnimationExtra: INCLUDE "gfx/pokemon/sentret/anim1.asm" +FurretAnimationExtra: INCLUDE "gfx/pokemon/furret/anim1.asm" +HoothootAnimationExtra: INCLUDE "gfx/pokemon/hoothoot/anim1.asm" +NoctowlAnimationExtra: INCLUDE "gfx/pokemon/noctowl/anim1.asm" +LedybaAnimationExtra: INCLUDE "gfx/pokemon/ledyba/anim1.asm" +LedianAnimationExtra: INCLUDE "gfx/pokemon/ledian/anim1.asm" +SpinarakAnimationExtra: INCLUDE "gfx/pokemon/spinarak/anim1.asm" +AriadosAnimationExtra: INCLUDE "gfx/pokemon/ariados/anim1.asm" +CrobatAnimationExtra: INCLUDE "gfx/pokemon/crobat/anim1.asm" +ChinchouAnimationExtra: INCLUDE "gfx/pokemon/chinchou/anim1.asm" +LanturnAnimationExtra: INCLUDE "gfx/pokemon/lanturn/anim1.asm" +PichuAnimationExtra: INCLUDE "gfx/pokemon/pichu/anim1.asm" +CleffaAnimationExtra: INCLUDE "gfx/pokemon/cleffa/anim1.asm" +IgglybuffAnimationExtra: INCLUDE "gfx/pokemon/igglybuff/anim1.asm" +TogepiAnimationExtra: INCLUDE "gfx/pokemon/togepi/anim1.asm" +TogeticAnimationExtra: INCLUDE "gfx/pokemon/togetic/anim1.asm" +NatuAnimationExtra: INCLUDE "gfx/pokemon/natu/anim1.asm" +XatuAnimationExtra: INCLUDE "gfx/pokemon/xatu/anim1.asm" +MareepAnimationExtra: INCLUDE "gfx/pokemon/mareep/anim1.asm" +FlaaffyAnimationExtra: INCLUDE "gfx/pokemon/flaaffy/anim1.asm" +AmpharosAnimationExtra: INCLUDE "gfx/pokemon/ampharos/anim1.asm" +BellossomAnimationExtra: INCLUDE "gfx/pokemon/bellossom/anim1.asm" +MarillAnimationExtra: INCLUDE "gfx/pokemon/marill/anim1.asm" +AzumarillAnimationExtra: INCLUDE "gfx/pokemon/azumarill/anim1.asm" +SudowoodoAnimationExtra: INCLUDE "gfx/pokemon/sudowoodo/anim1.asm" +PolitoedAnimationExtra: INCLUDE "gfx/pokemon/politoed/anim1.asm" +HoppipAnimationExtra: INCLUDE "gfx/pokemon/hoppip/anim1.asm" +SkiploomAnimationExtra: INCLUDE "gfx/pokemon/skiploom/anim1.asm" +JumpluffAnimationExtra: INCLUDE "gfx/pokemon/jumpluff/anim1.asm" +AipomAnimationExtra: INCLUDE "gfx/pokemon/aipom/anim1.asm" +SunkernAnimationExtra: INCLUDE "gfx/pokemon/sunkern/anim1.asm" +SunfloraAnimationExtra: INCLUDE "gfx/pokemon/sunflora/anim1.asm" +YanmaAnimationExtra: INCLUDE "gfx/pokemon/yanma/anim1.asm" +WooperAnimationExtra: INCLUDE "gfx/pokemon/wooper/anim1.asm" +QuagsireAnimationExtra: INCLUDE "gfx/pokemon/quagsire/anim1.asm" +EspeonAnimationExtra: INCLUDE "gfx/pokemon/espeon/anim1.asm" +UmbreonAnimationExtra: INCLUDE "gfx/pokemon/umbreon/anim1.asm" +MurkrowAnimationExtra: INCLUDE "gfx/pokemon/murkrow/anim1.asm" +SlowkingAnimationExtra: INCLUDE "gfx/pokemon/slowking/anim1.asm" +MisdreavusAnimationExtra: INCLUDE "gfx/pokemon/misdreavus/anim1.asm" +UnownAnimationExtra: INCLUDE "gfx/pokemon/unown/anim1.asm" +WobbuffetAnimationExtra: INCLUDE "gfx/pokemon/wobbuffet/anim1.asm" +GirafarigAnimationExtra: INCLUDE "gfx/pokemon/girafarig/anim1.asm" +PinecoAnimationExtra: INCLUDE "gfx/pokemon/pineco/anim1.asm" +ForretressAnimationExtra: INCLUDE "gfx/pokemon/forretress/anim1.asm" +DunsparceAnimationExtra: INCLUDE "gfx/pokemon/dunsparce/anim1.asm" +GligarAnimationExtra: INCLUDE "gfx/pokemon/gligar/anim1.asm" +SteelixAnimationExtra: INCLUDE "gfx/pokemon/steelix/anim1.asm" +SnubbullAnimationExtra: INCLUDE "gfx/pokemon/snubbull/anim1.asm" +GranbullAnimationExtra: INCLUDE "gfx/pokemon/granbull/anim1.asm" +QwilfishAnimationExtra: INCLUDE "gfx/pokemon/qwilfish/anim1.asm" +ScizorAnimationExtra: INCLUDE "gfx/pokemon/scizor/anim1.asm" +ShuckleAnimationExtra: INCLUDE "gfx/pokemon/shuckle/anim1.asm" +HeracrossAnimationExtra: INCLUDE "gfx/pokemon/heracross/anim1.asm" +SneaselAnimationExtra: INCLUDE "gfx/pokemon/sneasel/anim1.asm" +TeddiursaAnimationExtra: INCLUDE "gfx/pokemon/teddiursa/anim1.asm" +UrsaringAnimationExtra: INCLUDE "gfx/pokemon/ursaring/anim1.asm" +SlugmaAnimationExtra: INCLUDE "gfx/pokemon/slugma/anim1.asm" +MagcargoAnimationExtra: INCLUDE "gfx/pokemon/magcargo/anim1.asm" +SwinubAnimationExtra: INCLUDE "gfx/pokemon/swinub/anim1.asm" +PiloswineAnimationExtra: INCLUDE "gfx/pokemon/piloswine/anim1.asm" +CorsolaAnimationExtra: INCLUDE "gfx/pokemon/corsola/anim1.asm" +RemoraidAnimationExtra: INCLUDE "gfx/pokemon/remoraid/anim1.asm" +OctilleryAnimationExtra: INCLUDE "gfx/pokemon/octillery/anim1.asm" +DelibirdAnimationExtra: INCLUDE "gfx/pokemon/delibird/anim1.asm" +MantineAnimationExtra: INCLUDE "gfx/pokemon/mantine/anim1.asm" +SkarmoryAnimationExtra: INCLUDE "gfx/pokemon/skarmory/anim1.asm" +HoundourAnimationExtra: INCLUDE "gfx/pokemon/houndour/anim1.asm" +HoundoomAnimationExtra: INCLUDE "gfx/pokemon/houndoom/anim1.asm" +KingdraAnimationExtra: INCLUDE "gfx/pokemon/kingdra/anim1.asm" +PhanpyAnimationExtra: INCLUDE "gfx/pokemon/phanpy/anim1.asm" +DonphanAnimationExtra: INCLUDE "gfx/pokemon/donphan/anim1.asm" +Porygon2AnimationExtra: INCLUDE "gfx/pokemon/porygon2/anim1.asm" +StantlerAnimationExtra: INCLUDE "gfx/pokemon/stantler/anim1.asm" +SmeargleAnimationExtra: INCLUDE "gfx/pokemon/smeargle/anim1.asm" +TyrogueAnimationExtra: INCLUDE "gfx/pokemon/tyrogue/anim1.asm" +HitmontopAnimationExtra: INCLUDE "gfx/pokemon/hitmontop/anim1.asm" +SmoochumAnimationExtra: INCLUDE "gfx/pokemon/smoochum/anim1.asm" +ElekidAnimationExtra: INCLUDE "gfx/pokemon/elekid/anim1.asm" +MagbyAnimationExtra: INCLUDE "gfx/pokemon/magby/anim1.asm" +MiltankAnimationExtra: INCLUDE "gfx/pokemon/miltank/anim1.asm" +BlisseyAnimationExtra: INCLUDE "gfx/pokemon/blissey/anim1.asm" +RaikouAnimationExtra: INCLUDE "gfx/pokemon/raikou/anim1.asm" +EnteiAnimationExtra: INCLUDE "gfx/pokemon/entei/anim1.asm" +SuicuneAnimationExtra: INCLUDE "gfx/pokemon/suicune/anim1.asm" +LarvitarAnimationExtra: INCLUDE "gfx/pokemon/larvitar/anim1.asm" +PupitarAnimationExtra: INCLUDE "gfx/pokemon/pupitar/anim1.asm" +TyranitarAnimationExtra: INCLUDE "gfx/pokemon/tyranitar/anim1.asm" +LugiaAnimationExtra: INCLUDE "gfx/pokemon/lugia/anim1.asm" +HoOhAnimationExtra: INCLUDE "gfx/pokemon/ho_oh/anim1.asm" +CelebiAnimationExtra: INCLUDE "gfx/pokemon/celebi/anim1.asm" +EggAnimationExtra: INCLUDE "gfx/pokemon/egg/anim1.asm" diff --git a/gfx/pics/farfetch_d/anim0.asm b/gfx/pokemon/farfetch_d/anim0.asm similarity index 100% rename from gfx/pics/farfetch_d/anim0.asm rename to gfx/pokemon/farfetch_d/anim0.asm diff --git a/gfx/pics/farfetch_d/anim1.asm b/gfx/pokemon/farfetch_d/anim1.asm similarity index 100% rename from gfx/pics/farfetch_d/anim1.asm rename to gfx/pokemon/farfetch_d/anim1.asm diff --git a/gfx/pics/farfetch_d/back.2bpp.lz.6f28ebc4 b/gfx/pokemon/farfetch_d/back.2bpp.lz.6f28ebc4 similarity index 100% rename from gfx/pics/farfetch_d/back.2bpp.lz.6f28ebc4 rename to gfx/pokemon/farfetch_d/back.2bpp.lz.6f28ebc4 diff --git a/gfx/pics/farfetch_d/back.png b/gfx/pokemon/farfetch_d/back.png similarity index 100% rename from gfx/pics/farfetch_d/back.png rename to gfx/pokemon/farfetch_d/back.png diff --git a/gfx/pics/farfetch_d/front.animated.2bpp.lz.a4ae9393 b/gfx/pokemon/farfetch_d/front.animated.2bpp.lz.a4ae9393 similarity index 100% rename from gfx/pics/farfetch_d/front.animated.2bpp.lz.a4ae9393 rename to gfx/pokemon/farfetch_d/front.animated.2bpp.lz.a4ae9393 diff --git a/gfx/pics/farfetch_d/front.png b/gfx/pokemon/farfetch_d/front.png similarity index 100% rename from gfx/pics/farfetch_d/front.png rename to gfx/pokemon/farfetch_d/front.png diff --git a/gfx/pics/farfetch_d/shiny.pal b/gfx/pokemon/farfetch_d/shiny.pal similarity index 100% rename from gfx/pics/farfetch_d/shiny.pal rename to gfx/pokemon/farfetch_d/shiny.pal diff --git a/gfx/pics/fearow/anim0.asm b/gfx/pokemon/fearow/anim0.asm similarity index 100% rename from gfx/pics/fearow/anim0.asm rename to gfx/pokemon/fearow/anim0.asm diff --git a/gfx/pics/fearow/anim1.asm b/gfx/pokemon/fearow/anim1.asm similarity index 100% rename from gfx/pics/fearow/anim1.asm rename to gfx/pokemon/fearow/anim1.asm diff --git a/gfx/pics/fearow/back.2bpp.lz.a7a39118 b/gfx/pokemon/fearow/back.2bpp.lz.a7a39118 similarity index 100% rename from gfx/pics/fearow/back.2bpp.lz.a7a39118 rename to gfx/pokemon/fearow/back.2bpp.lz.a7a39118 diff --git a/gfx/pics/fearow/back.png b/gfx/pokemon/fearow/back.png similarity index 100% rename from gfx/pics/fearow/back.png rename to gfx/pokemon/fearow/back.png diff --git a/gfx/pics/fearow/front.animated.2bpp.lz.393b11d6 b/gfx/pokemon/fearow/front.animated.2bpp.lz.393b11d6 similarity index 100% rename from gfx/pics/fearow/front.animated.2bpp.lz.393b11d6 rename to gfx/pokemon/fearow/front.animated.2bpp.lz.393b11d6 diff --git a/gfx/pics/fearow/front.png b/gfx/pokemon/fearow/front.png similarity index 100% rename from gfx/pics/fearow/front.png rename to gfx/pokemon/fearow/front.png diff --git a/gfx/pics/fearow/shiny.pal b/gfx/pokemon/fearow/shiny.pal similarity index 100% rename from gfx/pics/fearow/shiny.pal rename to gfx/pokemon/fearow/shiny.pal diff --git a/gfx/pics/feraligatr/anim0.asm b/gfx/pokemon/feraligatr/anim0.asm similarity index 100% rename from gfx/pics/feraligatr/anim0.asm rename to gfx/pokemon/feraligatr/anim0.asm diff --git a/gfx/pics/feraligatr/anim1.asm b/gfx/pokemon/feraligatr/anim1.asm similarity index 100% rename from gfx/pics/feraligatr/anim1.asm rename to gfx/pokemon/feraligatr/anim1.asm diff --git a/gfx/pics/feraligatr/back.2bpp.lz.f95abe99 b/gfx/pokemon/feraligatr/back.2bpp.lz.f95abe99 similarity index 100% rename from gfx/pics/feraligatr/back.2bpp.lz.f95abe99 rename to gfx/pokemon/feraligatr/back.2bpp.lz.f95abe99 diff --git a/gfx/pics/feraligatr/back.png b/gfx/pokemon/feraligatr/back.png similarity index 100% rename from gfx/pics/feraligatr/back.png rename to gfx/pokemon/feraligatr/back.png diff --git a/gfx/pics/feraligatr/front.animated.2bpp.lz.fade72cc b/gfx/pokemon/feraligatr/front.animated.2bpp.lz.fade72cc similarity index 100% rename from gfx/pics/feraligatr/front.animated.2bpp.lz.fade72cc rename to gfx/pokemon/feraligatr/front.animated.2bpp.lz.fade72cc diff --git a/gfx/pics/feraligatr/front.png b/gfx/pokemon/feraligatr/front.png similarity index 100% rename from gfx/pics/feraligatr/front.png rename to gfx/pokemon/feraligatr/front.png diff --git a/gfx/pics/feraligatr/shiny.pal b/gfx/pokemon/feraligatr/shiny.pal similarity index 100% rename from gfx/pics/feraligatr/shiny.pal rename to gfx/pokemon/feraligatr/shiny.pal diff --git a/gfx/pics/flaaffy/anim0.asm b/gfx/pokemon/flaaffy/anim0.asm similarity index 100% rename from gfx/pics/flaaffy/anim0.asm rename to gfx/pokemon/flaaffy/anim0.asm diff --git a/gfx/pics/flaaffy/anim1.asm b/gfx/pokemon/flaaffy/anim1.asm similarity index 100% rename from gfx/pics/flaaffy/anim1.asm rename to gfx/pokemon/flaaffy/anim1.asm diff --git a/gfx/pics/flaaffy/back.2bpp.lz.461855e4 b/gfx/pokemon/flaaffy/back.2bpp.lz.461855e4 similarity index 100% rename from gfx/pics/flaaffy/back.2bpp.lz.461855e4 rename to gfx/pokemon/flaaffy/back.2bpp.lz.461855e4 diff --git a/gfx/pics/flaaffy/back.png b/gfx/pokemon/flaaffy/back.png similarity index 100% rename from gfx/pics/flaaffy/back.png rename to gfx/pokemon/flaaffy/back.png diff --git a/gfx/pics/flaaffy/front.animated.2bpp.lz.6a27aac3 b/gfx/pokemon/flaaffy/front.animated.2bpp.lz.6a27aac3 similarity index 100% rename from gfx/pics/flaaffy/front.animated.2bpp.lz.6a27aac3 rename to gfx/pokemon/flaaffy/front.animated.2bpp.lz.6a27aac3 diff --git a/gfx/pics/flaaffy/front.png b/gfx/pokemon/flaaffy/front.png similarity index 100% rename from gfx/pics/flaaffy/front.png rename to gfx/pokemon/flaaffy/front.png diff --git a/gfx/pics/flaaffy/shiny.pal b/gfx/pokemon/flaaffy/shiny.pal similarity index 100% rename from gfx/pics/flaaffy/shiny.pal rename to gfx/pokemon/flaaffy/shiny.pal diff --git a/gfx/pics/flareon/anim0.asm b/gfx/pokemon/flareon/anim0.asm similarity index 100% rename from gfx/pics/flareon/anim0.asm rename to gfx/pokemon/flareon/anim0.asm diff --git a/gfx/pics/flareon/anim1.asm b/gfx/pokemon/flareon/anim1.asm similarity index 100% rename from gfx/pics/flareon/anim1.asm rename to gfx/pokemon/flareon/anim1.asm diff --git a/gfx/pics/flareon/back.2bpp.lz.d58af0e5 b/gfx/pokemon/flareon/back.2bpp.lz.d58af0e5 similarity index 100% rename from gfx/pics/flareon/back.2bpp.lz.d58af0e5 rename to gfx/pokemon/flareon/back.2bpp.lz.d58af0e5 diff --git a/gfx/pics/flareon/back.png b/gfx/pokemon/flareon/back.png similarity index 100% rename from gfx/pics/flareon/back.png rename to gfx/pokemon/flareon/back.png diff --git a/gfx/pics/flareon/front.animated.2bpp.lz.7b68c716 b/gfx/pokemon/flareon/front.animated.2bpp.lz.7b68c716 similarity index 100% rename from gfx/pics/flareon/front.animated.2bpp.lz.7b68c716 rename to gfx/pokemon/flareon/front.animated.2bpp.lz.7b68c716 diff --git a/gfx/pics/flareon/front.png b/gfx/pokemon/flareon/front.png similarity index 100% rename from gfx/pics/flareon/front.png rename to gfx/pokemon/flareon/front.png diff --git a/gfx/pics/flareon/shiny.pal b/gfx/pokemon/flareon/shiny.pal similarity index 100% rename from gfx/pics/flareon/shiny.pal rename to gfx/pokemon/flareon/shiny.pal diff --git a/gfx/pics/forretress/anim0.asm b/gfx/pokemon/forretress/anim0.asm similarity index 100% rename from gfx/pics/forretress/anim0.asm rename to gfx/pokemon/forretress/anim0.asm diff --git a/gfx/pics/forretress/anim1.asm b/gfx/pokemon/forretress/anim1.asm similarity index 100% rename from gfx/pics/forretress/anim1.asm rename to gfx/pokemon/forretress/anim1.asm diff --git a/gfx/pics/forretress/back.2bpp.lz.2b8e5f48 b/gfx/pokemon/forretress/back.2bpp.lz.2b8e5f48 similarity index 100% rename from gfx/pics/forretress/back.2bpp.lz.2b8e5f48 rename to gfx/pokemon/forretress/back.2bpp.lz.2b8e5f48 diff --git a/gfx/pics/forretress/back.png b/gfx/pokemon/forretress/back.png similarity index 100% rename from gfx/pics/forretress/back.png rename to gfx/pokemon/forretress/back.png diff --git a/gfx/pics/forretress/front.animated.2bpp.lz.761b9f80 b/gfx/pokemon/forretress/front.animated.2bpp.lz.761b9f80 similarity index 100% rename from gfx/pics/forretress/front.animated.2bpp.lz.761b9f80 rename to gfx/pokemon/forretress/front.animated.2bpp.lz.761b9f80 diff --git a/gfx/pics/forretress/front.png b/gfx/pokemon/forretress/front.png similarity index 100% rename from gfx/pics/forretress/front.png rename to gfx/pokemon/forretress/front.png diff --git a/gfx/pics/forretress/shiny.pal b/gfx/pokemon/forretress/shiny.pal similarity index 100% rename from gfx/pics/forretress/shiny.pal rename to gfx/pokemon/forretress/shiny.pal diff --git a/gfx/pics/frame_pointers.asm b/gfx/pokemon/frame_pointers.asm similarity index 100% rename from gfx/pics/frame_pointers.asm rename to gfx/pokemon/frame_pointers.asm diff --git a/gfx/pics/furret/anim0.asm b/gfx/pokemon/furret/anim0.asm similarity index 100% rename from gfx/pics/furret/anim0.asm rename to gfx/pokemon/furret/anim0.asm diff --git a/gfx/pics/furret/anim1.asm b/gfx/pokemon/furret/anim1.asm similarity index 100% rename from gfx/pics/furret/anim1.asm rename to gfx/pokemon/furret/anim1.asm diff --git a/gfx/pics/furret/back.2bpp.lz.24792550 b/gfx/pokemon/furret/back.2bpp.lz.24792550 similarity index 100% rename from gfx/pics/furret/back.2bpp.lz.24792550 rename to gfx/pokemon/furret/back.2bpp.lz.24792550 diff --git a/gfx/pics/furret/back.png b/gfx/pokemon/furret/back.png similarity index 100% rename from gfx/pics/furret/back.png rename to gfx/pokemon/furret/back.png diff --git a/gfx/pics/furret/front.animated.2bpp.lz.f72a2758 b/gfx/pokemon/furret/front.animated.2bpp.lz.f72a2758 similarity index 100% rename from gfx/pics/furret/front.animated.2bpp.lz.f72a2758 rename to gfx/pokemon/furret/front.animated.2bpp.lz.f72a2758 diff --git a/gfx/pics/furret/front.png b/gfx/pokemon/furret/front.png similarity index 100% rename from gfx/pics/furret/front.png rename to gfx/pokemon/furret/front.png diff --git a/gfx/pics/furret/shiny.pal b/gfx/pokemon/furret/shiny.pal similarity index 100% rename from gfx/pics/furret/shiny.pal rename to gfx/pokemon/furret/shiny.pal diff --git a/gfx/pics/gastly/anim0.asm b/gfx/pokemon/gastly/anim0.asm similarity index 100% rename from gfx/pics/gastly/anim0.asm rename to gfx/pokemon/gastly/anim0.asm diff --git a/gfx/pics/gastly/anim1.asm b/gfx/pokemon/gastly/anim1.asm similarity index 100% rename from gfx/pics/gastly/anim1.asm rename to gfx/pokemon/gastly/anim1.asm diff --git a/gfx/pics/gastly/back.2bpp.lz.4078fa56 b/gfx/pokemon/gastly/back.2bpp.lz.4078fa56 similarity index 100% rename from gfx/pics/gastly/back.2bpp.lz.4078fa56 rename to gfx/pokemon/gastly/back.2bpp.lz.4078fa56 diff --git a/gfx/pics/gastly/back.png b/gfx/pokemon/gastly/back.png similarity index 100% rename from gfx/pics/gastly/back.png rename to gfx/pokemon/gastly/back.png diff --git a/gfx/pics/gastly/front.animated.2bpp.lz.84148c1e b/gfx/pokemon/gastly/front.animated.2bpp.lz.84148c1e similarity index 100% rename from gfx/pics/gastly/front.animated.2bpp.lz.84148c1e rename to gfx/pokemon/gastly/front.animated.2bpp.lz.84148c1e diff --git a/gfx/pics/gastly/front.png b/gfx/pokemon/gastly/front.png similarity index 100% rename from gfx/pics/gastly/front.png rename to gfx/pokemon/gastly/front.png diff --git a/gfx/pics/gastly/shiny.pal b/gfx/pokemon/gastly/shiny.pal similarity index 100% rename from gfx/pics/gastly/shiny.pal rename to gfx/pokemon/gastly/shiny.pal diff --git a/gfx/pics/gengar/anim0.asm b/gfx/pokemon/gengar/anim0.asm similarity index 100% rename from gfx/pics/gengar/anim0.asm rename to gfx/pokemon/gengar/anim0.asm diff --git a/gfx/pics/gengar/anim1.asm b/gfx/pokemon/gengar/anim1.asm similarity index 100% rename from gfx/pics/gengar/anim1.asm rename to gfx/pokemon/gengar/anim1.asm diff --git a/gfx/pics/gengar/back.2bpp.lz.5237ee63 b/gfx/pokemon/gengar/back.2bpp.lz.5237ee63 similarity index 100% rename from gfx/pics/gengar/back.2bpp.lz.5237ee63 rename to gfx/pokemon/gengar/back.2bpp.lz.5237ee63 diff --git a/gfx/pics/gengar/back.png b/gfx/pokemon/gengar/back.png similarity index 100% rename from gfx/pics/gengar/back.png rename to gfx/pokemon/gengar/back.png diff --git a/gfx/pics/gengar/front.animated.2bpp.lz.65ddc6f5 b/gfx/pokemon/gengar/front.animated.2bpp.lz.65ddc6f5 similarity index 100% rename from gfx/pics/gengar/front.animated.2bpp.lz.65ddc6f5 rename to gfx/pokemon/gengar/front.animated.2bpp.lz.65ddc6f5 diff --git a/gfx/pics/gengar/front.png b/gfx/pokemon/gengar/front.png similarity index 100% rename from gfx/pics/gengar/front.png rename to gfx/pokemon/gengar/front.png diff --git a/gfx/pics/gengar/shiny.pal b/gfx/pokemon/gengar/shiny.pal similarity index 100% rename from gfx/pics/gengar/shiny.pal rename to gfx/pokemon/gengar/shiny.pal diff --git a/gfx/pics/geodude/anim0.asm b/gfx/pokemon/geodude/anim0.asm similarity index 100% rename from gfx/pics/geodude/anim0.asm rename to gfx/pokemon/geodude/anim0.asm diff --git a/gfx/pics/geodude/anim1.asm b/gfx/pokemon/geodude/anim1.asm similarity index 100% rename from gfx/pics/geodude/anim1.asm rename to gfx/pokemon/geodude/anim1.asm diff --git a/gfx/pics/geodude/back.2bpp.lz.d5aa5e9f b/gfx/pokemon/geodude/back.2bpp.lz.d5aa5e9f similarity index 100% rename from gfx/pics/geodude/back.2bpp.lz.d5aa5e9f rename to gfx/pokemon/geodude/back.2bpp.lz.d5aa5e9f diff --git a/gfx/pics/geodude/back.png b/gfx/pokemon/geodude/back.png similarity index 100% rename from gfx/pics/geodude/back.png rename to gfx/pokemon/geodude/back.png diff --git a/gfx/pics/geodude/front.animated.2bpp.lz.d743f2c9 b/gfx/pokemon/geodude/front.animated.2bpp.lz.d743f2c9 similarity index 100% rename from gfx/pics/geodude/front.animated.2bpp.lz.d743f2c9 rename to gfx/pokemon/geodude/front.animated.2bpp.lz.d743f2c9 diff --git a/gfx/pics/geodude/front.png b/gfx/pokemon/geodude/front.png similarity index 100% rename from gfx/pics/geodude/front.png rename to gfx/pokemon/geodude/front.png diff --git a/gfx/pics/geodude/shiny.pal b/gfx/pokemon/geodude/shiny.pal similarity index 100% rename from gfx/pics/geodude/shiny.pal rename to gfx/pokemon/geodude/shiny.pal diff --git a/gfx/pics/girafarig/anim0.asm b/gfx/pokemon/girafarig/anim0.asm similarity index 100% rename from gfx/pics/girafarig/anim0.asm rename to gfx/pokemon/girafarig/anim0.asm diff --git a/gfx/pics/girafarig/anim1.asm b/gfx/pokemon/girafarig/anim1.asm similarity index 100% rename from gfx/pics/girafarig/anim1.asm rename to gfx/pokemon/girafarig/anim1.asm diff --git a/gfx/pics/girafarig/back.2bpp.lz.5dd68457 b/gfx/pokemon/girafarig/back.2bpp.lz.5dd68457 similarity index 100% rename from gfx/pics/girafarig/back.2bpp.lz.5dd68457 rename to gfx/pokemon/girafarig/back.2bpp.lz.5dd68457 diff --git a/gfx/pics/girafarig/back.png b/gfx/pokemon/girafarig/back.png similarity index 100% rename from gfx/pics/girafarig/back.png rename to gfx/pokemon/girafarig/back.png diff --git a/gfx/pics/girafarig/front.animated.2bpp.lz.76d809c4 b/gfx/pokemon/girafarig/front.animated.2bpp.lz.76d809c4 similarity index 100% rename from gfx/pics/girafarig/front.animated.2bpp.lz.76d809c4 rename to gfx/pokemon/girafarig/front.animated.2bpp.lz.76d809c4 diff --git a/gfx/pics/girafarig/front.png b/gfx/pokemon/girafarig/front.png similarity index 100% rename from gfx/pics/girafarig/front.png rename to gfx/pokemon/girafarig/front.png diff --git a/gfx/pics/girafarig/shiny.pal b/gfx/pokemon/girafarig/shiny.pal similarity index 100% rename from gfx/pics/girafarig/shiny.pal rename to gfx/pokemon/girafarig/shiny.pal diff --git a/gfx/pics/gligar/anim0.asm b/gfx/pokemon/gligar/anim0.asm similarity index 100% rename from gfx/pics/gligar/anim0.asm rename to gfx/pokemon/gligar/anim0.asm diff --git a/gfx/pics/gligar/anim1.asm b/gfx/pokemon/gligar/anim1.asm similarity index 100% rename from gfx/pics/gligar/anim1.asm rename to gfx/pokemon/gligar/anim1.asm diff --git a/gfx/pics/gligar/back.2bpp.lz.ee922122 b/gfx/pokemon/gligar/back.2bpp.lz.ee922122 similarity index 100% rename from gfx/pics/gligar/back.2bpp.lz.ee922122 rename to gfx/pokemon/gligar/back.2bpp.lz.ee922122 diff --git a/gfx/pics/gligar/back.png b/gfx/pokemon/gligar/back.png similarity index 100% rename from gfx/pics/gligar/back.png rename to gfx/pokemon/gligar/back.png diff --git a/gfx/pics/gligar/front.animated.2bpp.lz.4dcc41b3 b/gfx/pokemon/gligar/front.animated.2bpp.lz.4dcc41b3 similarity index 100% rename from gfx/pics/gligar/front.animated.2bpp.lz.4dcc41b3 rename to gfx/pokemon/gligar/front.animated.2bpp.lz.4dcc41b3 diff --git a/gfx/pics/gligar/front.png b/gfx/pokemon/gligar/front.png similarity index 100% rename from gfx/pics/gligar/front.png rename to gfx/pokemon/gligar/front.png diff --git a/gfx/pics/gligar/shiny.pal b/gfx/pokemon/gligar/shiny.pal similarity index 100% rename from gfx/pics/gligar/shiny.pal rename to gfx/pokemon/gligar/shiny.pal diff --git a/gfx/pics/gloom/anim0.asm b/gfx/pokemon/gloom/anim0.asm similarity index 100% rename from gfx/pics/gloom/anim0.asm rename to gfx/pokemon/gloom/anim0.asm diff --git a/gfx/pics/gloom/anim1.asm b/gfx/pokemon/gloom/anim1.asm similarity index 100% rename from gfx/pics/gloom/anim1.asm rename to gfx/pokemon/gloom/anim1.asm diff --git a/gfx/pics/gloom/back.2bpp.lz.9a321f63 b/gfx/pokemon/gloom/back.2bpp.lz.9a321f63 similarity index 100% rename from gfx/pics/gloom/back.2bpp.lz.9a321f63 rename to gfx/pokemon/gloom/back.2bpp.lz.9a321f63 diff --git a/gfx/pics/gloom/back.png b/gfx/pokemon/gloom/back.png similarity index 100% rename from gfx/pics/gloom/back.png rename to gfx/pokemon/gloom/back.png diff --git a/gfx/pics/gloom/front.animated.2bpp.lz.c6ef04a5 b/gfx/pokemon/gloom/front.animated.2bpp.lz.c6ef04a5 similarity index 100% rename from gfx/pics/gloom/front.animated.2bpp.lz.c6ef04a5 rename to gfx/pokemon/gloom/front.animated.2bpp.lz.c6ef04a5 diff --git a/gfx/pics/gloom/front.png b/gfx/pokemon/gloom/front.png similarity index 100% rename from gfx/pics/gloom/front.png rename to gfx/pokemon/gloom/front.png diff --git a/gfx/pics/gloom/shiny.pal b/gfx/pokemon/gloom/shiny.pal similarity index 100% rename from gfx/pics/gloom/shiny.pal rename to gfx/pokemon/gloom/shiny.pal diff --git a/gfx/pics/golbat/anim0.asm b/gfx/pokemon/golbat/anim0.asm similarity index 100% rename from gfx/pics/golbat/anim0.asm rename to gfx/pokemon/golbat/anim0.asm diff --git a/gfx/pics/golbat/anim1.asm b/gfx/pokemon/golbat/anim1.asm similarity index 100% rename from gfx/pics/golbat/anim1.asm rename to gfx/pokemon/golbat/anim1.asm diff --git a/gfx/pics/golbat/back.2bpp.lz.e277e260 b/gfx/pokemon/golbat/back.2bpp.lz.e277e260 similarity index 100% rename from gfx/pics/golbat/back.2bpp.lz.e277e260 rename to gfx/pokemon/golbat/back.2bpp.lz.e277e260 diff --git a/gfx/pics/golbat/back.png b/gfx/pokemon/golbat/back.png similarity index 100% rename from gfx/pics/golbat/back.png rename to gfx/pokemon/golbat/back.png diff --git a/gfx/pics/golbat/front.animated.2bpp.lz.c35ffe9b b/gfx/pokemon/golbat/front.animated.2bpp.lz.c35ffe9b similarity index 100% rename from gfx/pics/golbat/front.animated.2bpp.lz.c35ffe9b rename to gfx/pokemon/golbat/front.animated.2bpp.lz.c35ffe9b diff --git a/gfx/pics/golbat/front.png b/gfx/pokemon/golbat/front.png similarity index 100% rename from gfx/pics/golbat/front.png rename to gfx/pokemon/golbat/front.png diff --git a/gfx/pics/golbat/shiny.pal b/gfx/pokemon/golbat/shiny.pal similarity index 100% rename from gfx/pics/golbat/shiny.pal rename to gfx/pokemon/golbat/shiny.pal diff --git a/gfx/pics/goldeen/anim0.asm b/gfx/pokemon/goldeen/anim0.asm similarity index 100% rename from gfx/pics/goldeen/anim0.asm rename to gfx/pokemon/goldeen/anim0.asm diff --git a/gfx/pics/goldeen/anim1.asm b/gfx/pokemon/goldeen/anim1.asm similarity index 100% rename from gfx/pics/goldeen/anim1.asm rename to gfx/pokemon/goldeen/anim1.asm diff --git a/gfx/pics/goldeen/back.2bpp.lz.d0e5751e b/gfx/pokemon/goldeen/back.2bpp.lz.d0e5751e similarity index 100% rename from gfx/pics/goldeen/back.2bpp.lz.d0e5751e rename to gfx/pokemon/goldeen/back.2bpp.lz.d0e5751e diff --git a/gfx/pics/goldeen/back.png b/gfx/pokemon/goldeen/back.png similarity index 100% rename from gfx/pics/goldeen/back.png rename to gfx/pokemon/goldeen/back.png diff --git a/gfx/pics/goldeen/front.animated.2bpp.lz.c451a8c4 b/gfx/pokemon/goldeen/front.animated.2bpp.lz.c451a8c4 similarity index 100% rename from gfx/pics/goldeen/front.animated.2bpp.lz.c451a8c4 rename to gfx/pokemon/goldeen/front.animated.2bpp.lz.c451a8c4 diff --git a/gfx/pics/goldeen/front.png b/gfx/pokemon/goldeen/front.png similarity index 100% rename from gfx/pics/goldeen/front.png rename to gfx/pokemon/goldeen/front.png diff --git a/gfx/pics/goldeen/shiny.pal b/gfx/pokemon/goldeen/shiny.pal similarity index 100% rename from gfx/pics/goldeen/shiny.pal rename to gfx/pokemon/goldeen/shiny.pal diff --git a/gfx/pics/golduck/anim0.asm b/gfx/pokemon/golduck/anim0.asm similarity index 100% rename from gfx/pics/golduck/anim0.asm rename to gfx/pokemon/golduck/anim0.asm diff --git a/gfx/pics/golduck/anim1.asm b/gfx/pokemon/golduck/anim1.asm similarity index 100% rename from gfx/pics/golduck/anim1.asm rename to gfx/pokemon/golduck/anim1.asm diff --git a/gfx/pics/golduck/back.2bpp.lz.2d022642 b/gfx/pokemon/golduck/back.2bpp.lz.2d022642 similarity index 100% rename from gfx/pics/golduck/back.2bpp.lz.2d022642 rename to gfx/pokemon/golduck/back.2bpp.lz.2d022642 diff --git a/gfx/pics/golduck/back.png b/gfx/pokemon/golduck/back.png similarity index 100% rename from gfx/pics/golduck/back.png rename to gfx/pokemon/golduck/back.png diff --git a/gfx/pics/golduck/front.animated.2bpp.lz.09e97414 b/gfx/pokemon/golduck/front.animated.2bpp.lz.09e97414 similarity index 100% rename from gfx/pics/golduck/front.animated.2bpp.lz.09e97414 rename to gfx/pokemon/golduck/front.animated.2bpp.lz.09e97414 diff --git a/gfx/pics/golduck/front.png b/gfx/pokemon/golduck/front.png similarity index 100% rename from gfx/pics/golduck/front.png rename to gfx/pokemon/golduck/front.png diff --git a/gfx/pics/golduck/shiny.pal b/gfx/pokemon/golduck/shiny.pal similarity index 100% rename from gfx/pics/golduck/shiny.pal rename to gfx/pokemon/golduck/shiny.pal diff --git a/gfx/pics/golem/anim0.asm b/gfx/pokemon/golem/anim0.asm similarity index 100% rename from gfx/pics/golem/anim0.asm rename to gfx/pokemon/golem/anim0.asm diff --git a/gfx/pics/golem/anim1.asm b/gfx/pokemon/golem/anim1.asm similarity index 100% rename from gfx/pics/golem/anim1.asm rename to gfx/pokemon/golem/anim1.asm diff --git a/gfx/pics/golem/back.2bpp.lz.ae903dee b/gfx/pokemon/golem/back.2bpp.lz.ae903dee similarity index 100% rename from gfx/pics/golem/back.2bpp.lz.ae903dee rename to gfx/pokemon/golem/back.2bpp.lz.ae903dee diff --git a/gfx/pics/golem/back.png b/gfx/pokemon/golem/back.png similarity index 100% rename from gfx/pics/golem/back.png rename to gfx/pokemon/golem/back.png diff --git a/gfx/pics/golem/front.animated.2bpp.lz.a16f21c8 b/gfx/pokemon/golem/front.animated.2bpp.lz.a16f21c8 similarity index 100% rename from gfx/pics/golem/front.animated.2bpp.lz.a16f21c8 rename to gfx/pokemon/golem/front.animated.2bpp.lz.a16f21c8 diff --git a/gfx/pics/golem/front.png b/gfx/pokemon/golem/front.png similarity index 100% rename from gfx/pics/golem/front.png rename to gfx/pokemon/golem/front.png diff --git a/gfx/pics/golem/shiny.pal b/gfx/pokemon/golem/shiny.pal similarity index 100% rename from gfx/pics/golem/shiny.pal rename to gfx/pokemon/golem/shiny.pal diff --git a/gfx/pics/granbull/anim0.asm b/gfx/pokemon/granbull/anim0.asm similarity index 100% rename from gfx/pics/granbull/anim0.asm rename to gfx/pokemon/granbull/anim0.asm diff --git a/gfx/pics/granbull/anim1.asm b/gfx/pokemon/granbull/anim1.asm similarity index 100% rename from gfx/pics/granbull/anim1.asm rename to gfx/pokemon/granbull/anim1.asm diff --git a/gfx/pics/granbull/back.2bpp.lz.7f1208ed b/gfx/pokemon/granbull/back.2bpp.lz.7f1208ed similarity index 100% rename from gfx/pics/granbull/back.2bpp.lz.7f1208ed rename to gfx/pokemon/granbull/back.2bpp.lz.7f1208ed diff --git a/gfx/pics/granbull/back.png b/gfx/pokemon/granbull/back.png similarity index 100% rename from gfx/pics/granbull/back.png rename to gfx/pokemon/granbull/back.png diff --git a/gfx/pics/granbull/front.animated.2bpp.lz.4504768b b/gfx/pokemon/granbull/front.animated.2bpp.lz.4504768b similarity index 100% rename from gfx/pics/granbull/front.animated.2bpp.lz.4504768b rename to gfx/pokemon/granbull/front.animated.2bpp.lz.4504768b diff --git a/gfx/pics/granbull/front.png b/gfx/pokemon/granbull/front.png similarity index 100% rename from gfx/pics/granbull/front.png rename to gfx/pokemon/granbull/front.png diff --git a/gfx/pics/granbull/shiny.pal b/gfx/pokemon/granbull/shiny.pal similarity index 100% rename from gfx/pics/granbull/shiny.pal rename to gfx/pokemon/granbull/shiny.pal diff --git a/gfx/pics/graveler/anim0.asm b/gfx/pokemon/graveler/anim0.asm similarity index 100% rename from gfx/pics/graveler/anim0.asm rename to gfx/pokemon/graveler/anim0.asm diff --git a/gfx/pics/graveler/anim1.asm b/gfx/pokemon/graveler/anim1.asm similarity index 100% rename from gfx/pics/graveler/anim1.asm rename to gfx/pokemon/graveler/anim1.asm diff --git a/gfx/pics/graveler/back.2bpp.lz.c7867de7 b/gfx/pokemon/graveler/back.2bpp.lz.c7867de7 similarity index 100% rename from gfx/pics/graveler/back.2bpp.lz.c7867de7 rename to gfx/pokemon/graveler/back.2bpp.lz.c7867de7 diff --git a/gfx/pics/graveler/back.png b/gfx/pokemon/graveler/back.png similarity index 100% rename from gfx/pics/graveler/back.png rename to gfx/pokemon/graveler/back.png diff --git a/gfx/pics/graveler/front.animated.2bpp.lz.68d07c61 b/gfx/pokemon/graveler/front.animated.2bpp.lz.68d07c61 similarity index 100% rename from gfx/pics/graveler/front.animated.2bpp.lz.68d07c61 rename to gfx/pokemon/graveler/front.animated.2bpp.lz.68d07c61 diff --git a/gfx/pics/graveler/front.png b/gfx/pokemon/graveler/front.png similarity index 100% rename from gfx/pics/graveler/front.png rename to gfx/pokemon/graveler/front.png diff --git a/gfx/pics/graveler/shiny.pal b/gfx/pokemon/graveler/shiny.pal similarity index 100% rename from gfx/pics/graveler/shiny.pal rename to gfx/pokemon/graveler/shiny.pal diff --git a/gfx/pics/grimer/anim0.asm b/gfx/pokemon/grimer/anim0.asm similarity index 100% rename from gfx/pics/grimer/anim0.asm rename to gfx/pokemon/grimer/anim0.asm diff --git a/gfx/pics/grimer/anim1.asm b/gfx/pokemon/grimer/anim1.asm similarity index 100% rename from gfx/pics/grimer/anim1.asm rename to gfx/pokemon/grimer/anim1.asm diff --git a/gfx/pics/grimer/back.2bpp.lz.833bd626 b/gfx/pokemon/grimer/back.2bpp.lz.833bd626 similarity index 100% rename from gfx/pics/grimer/back.2bpp.lz.833bd626 rename to gfx/pokemon/grimer/back.2bpp.lz.833bd626 diff --git a/gfx/pics/grimer/back.png b/gfx/pokemon/grimer/back.png similarity index 100% rename from gfx/pics/grimer/back.png rename to gfx/pokemon/grimer/back.png diff --git a/gfx/pics/grimer/front.animated.2bpp.lz.dfe40e91 b/gfx/pokemon/grimer/front.animated.2bpp.lz.dfe40e91 similarity index 100% rename from gfx/pics/grimer/front.animated.2bpp.lz.dfe40e91 rename to gfx/pokemon/grimer/front.animated.2bpp.lz.dfe40e91 diff --git a/gfx/pics/grimer/front.png b/gfx/pokemon/grimer/front.png similarity index 100% rename from gfx/pics/grimer/front.png rename to gfx/pokemon/grimer/front.png diff --git a/gfx/pics/grimer/shiny.pal b/gfx/pokemon/grimer/shiny.pal similarity index 100% rename from gfx/pics/grimer/shiny.pal rename to gfx/pokemon/grimer/shiny.pal diff --git a/gfx/pics/growlithe/anim0.asm b/gfx/pokemon/growlithe/anim0.asm similarity index 100% rename from gfx/pics/growlithe/anim0.asm rename to gfx/pokemon/growlithe/anim0.asm diff --git a/gfx/pics/growlithe/anim1.asm b/gfx/pokemon/growlithe/anim1.asm similarity index 100% rename from gfx/pics/growlithe/anim1.asm rename to gfx/pokemon/growlithe/anim1.asm diff --git a/gfx/pics/growlithe/back.2bpp.lz.7f5831f6 b/gfx/pokemon/growlithe/back.2bpp.lz.7f5831f6 similarity index 100% rename from gfx/pics/growlithe/back.2bpp.lz.7f5831f6 rename to gfx/pokemon/growlithe/back.2bpp.lz.7f5831f6 diff --git a/gfx/pics/growlithe/back.png b/gfx/pokemon/growlithe/back.png similarity index 100% rename from gfx/pics/growlithe/back.png rename to gfx/pokemon/growlithe/back.png diff --git a/gfx/pics/growlithe/front.animated.2bpp.lz.f7b376fa b/gfx/pokemon/growlithe/front.animated.2bpp.lz.f7b376fa similarity index 100% rename from gfx/pics/growlithe/front.animated.2bpp.lz.f7b376fa rename to gfx/pokemon/growlithe/front.animated.2bpp.lz.f7b376fa diff --git a/gfx/pics/growlithe/front.png b/gfx/pokemon/growlithe/front.png similarity index 100% rename from gfx/pics/growlithe/front.png rename to gfx/pokemon/growlithe/front.png diff --git a/gfx/pics/growlithe/shiny.pal b/gfx/pokemon/growlithe/shiny.pal similarity index 100% rename from gfx/pics/growlithe/shiny.pal rename to gfx/pokemon/growlithe/shiny.pal diff --git a/gfx/pics/gyarados/anim0.asm b/gfx/pokemon/gyarados/anim0.asm similarity index 100% rename from gfx/pics/gyarados/anim0.asm rename to gfx/pokemon/gyarados/anim0.asm diff --git a/gfx/pics/gyarados/anim1.asm b/gfx/pokemon/gyarados/anim1.asm similarity index 100% rename from gfx/pics/gyarados/anim1.asm rename to gfx/pokemon/gyarados/anim1.asm diff --git a/gfx/pics/gyarados/back.2bpp.lz.fc577f9e b/gfx/pokemon/gyarados/back.2bpp.lz.fc577f9e similarity index 100% rename from gfx/pics/gyarados/back.2bpp.lz.fc577f9e rename to gfx/pokemon/gyarados/back.2bpp.lz.fc577f9e diff --git a/gfx/pics/gyarados/back.png b/gfx/pokemon/gyarados/back.png similarity index 100% rename from gfx/pics/gyarados/back.png rename to gfx/pokemon/gyarados/back.png diff --git a/gfx/pics/gyarados/front.animated.2bpp.lz.1b498e2b b/gfx/pokemon/gyarados/front.animated.2bpp.lz.1b498e2b similarity index 100% rename from gfx/pics/gyarados/front.animated.2bpp.lz.1b498e2b rename to gfx/pokemon/gyarados/front.animated.2bpp.lz.1b498e2b diff --git a/gfx/pics/gyarados/front.png b/gfx/pokemon/gyarados/front.png similarity index 100% rename from gfx/pics/gyarados/front.png rename to gfx/pokemon/gyarados/front.png diff --git a/gfx/pics/gyarados/shiny.pal b/gfx/pokemon/gyarados/shiny.pal similarity index 100% rename from gfx/pics/gyarados/shiny.pal rename to gfx/pokemon/gyarados/shiny.pal diff --git a/gfx/pics/haunter/anim0.asm b/gfx/pokemon/haunter/anim0.asm similarity index 100% rename from gfx/pics/haunter/anim0.asm rename to gfx/pokemon/haunter/anim0.asm diff --git a/gfx/pics/haunter/anim1.asm b/gfx/pokemon/haunter/anim1.asm similarity index 100% rename from gfx/pics/haunter/anim1.asm rename to gfx/pokemon/haunter/anim1.asm diff --git a/gfx/pics/haunter/back.2bpp.lz.8a5dc2c1 b/gfx/pokemon/haunter/back.2bpp.lz.8a5dc2c1 similarity index 100% rename from gfx/pics/haunter/back.2bpp.lz.8a5dc2c1 rename to gfx/pokemon/haunter/back.2bpp.lz.8a5dc2c1 diff --git a/gfx/pics/haunter/back.png b/gfx/pokemon/haunter/back.png similarity index 100% rename from gfx/pics/haunter/back.png rename to gfx/pokemon/haunter/back.png diff --git a/gfx/pics/haunter/front.animated.2bpp.lz.aeed5f7e b/gfx/pokemon/haunter/front.animated.2bpp.lz.aeed5f7e similarity index 100% rename from gfx/pics/haunter/front.animated.2bpp.lz.aeed5f7e rename to gfx/pokemon/haunter/front.animated.2bpp.lz.aeed5f7e diff --git a/gfx/pics/haunter/front.png b/gfx/pokemon/haunter/front.png similarity index 100% rename from gfx/pics/haunter/front.png rename to gfx/pokemon/haunter/front.png diff --git a/gfx/pics/haunter/shiny.pal b/gfx/pokemon/haunter/shiny.pal similarity index 100% rename from gfx/pics/haunter/shiny.pal rename to gfx/pokemon/haunter/shiny.pal diff --git a/gfx/pics/heracross/anim0.asm b/gfx/pokemon/heracross/anim0.asm similarity index 100% rename from gfx/pics/heracross/anim0.asm rename to gfx/pokemon/heracross/anim0.asm diff --git a/gfx/pics/heracross/anim1.asm b/gfx/pokemon/heracross/anim1.asm similarity index 100% rename from gfx/pics/heracross/anim1.asm rename to gfx/pokemon/heracross/anim1.asm diff --git a/gfx/pics/heracross/back.2bpp.lz.ba09608b b/gfx/pokemon/heracross/back.2bpp.lz.ba09608b similarity index 100% rename from gfx/pics/heracross/back.2bpp.lz.ba09608b rename to gfx/pokemon/heracross/back.2bpp.lz.ba09608b diff --git a/gfx/pics/heracross/back.png b/gfx/pokemon/heracross/back.png similarity index 100% rename from gfx/pics/heracross/back.png rename to gfx/pokemon/heracross/back.png diff --git a/gfx/pics/heracross/front.animated.2bpp.lz.0742fe2b b/gfx/pokemon/heracross/front.animated.2bpp.lz.0742fe2b similarity index 100% rename from gfx/pics/heracross/front.animated.2bpp.lz.0742fe2b rename to gfx/pokemon/heracross/front.animated.2bpp.lz.0742fe2b diff --git a/gfx/pics/heracross/front.png b/gfx/pokemon/heracross/front.png similarity index 100% rename from gfx/pics/heracross/front.png rename to gfx/pokemon/heracross/front.png diff --git a/gfx/pics/heracross/shiny.pal b/gfx/pokemon/heracross/shiny.pal similarity index 100% rename from gfx/pics/heracross/shiny.pal rename to gfx/pokemon/heracross/shiny.pal diff --git a/gfx/pics/hitmonchan/anim0.asm b/gfx/pokemon/hitmonchan/anim0.asm similarity index 100% rename from gfx/pics/hitmonchan/anim0.asm rename to gfx/pokemon/hitmonchan/anim0.asm diff --git a/gfx/pics/hitmonchan/anim1.asm b/gfx/pokemon/hitmonchan/anim1.asm similarity index 100% rename from gfx/pics/hitmonchan/anim1.asm rename to gfx/pokemon/hitmonchan/anim1.asm diff --git a/gfx/pics/hitmonchan/back.2bpp.lz.68e28b98 b/gfx/pokemon/hitmonchan/back.2bpp.lz.68e28b98 similarity index 100% rename from gfx/pics/hitmonchan/back.2bpp.lz.68e28b98 rename to gfx/pokemon/hitmonchan/back.2bpp.lz.68e28b98 diff --git a/gfx/pics/hitmonchan/back.png b/gfx/pokemon/hitmonchan/back.png similarity index 100% rename from gfx/pics/hitmonchan/back.png rename to gfx/pokemon/hitmonchan/back.png diff --git a/gfx/pics/hitmonchan/front.animated.2bpp.lz.61836c4c b/gfx/pokemon/hitmonchan/front.animated.2bpp.lz.61836c4c similarity index 100% rename from gfx/pics/hitmonchan/front.animated.2bpp.lz.61836c4c rename to gfx/pokemon/hitmonchan/front.animated.2bpp.lz.61836c4c diff --git a/gfx/pics/hitmonchan/front.png b/gfx/pokemon/hitmonchan/front.png similarity index 100% rename from gfx/pics/hitmonchan/front.png rename to gfx/pokemon/hitmonchan/front.png diff --git a/gfx/pics/hitmonchan/shiny.pal b/gfx/pokemon/hitmonchan/shiny.pal similarity index 100% rename from gfx/pics/hitmonchan/shiny.pal rename to gfx/pokemon/hitmonchan/shiny.pal diff --git a/gfx/pics/hitmonlee/anim0.asm b/gfx/pokemon/hitmonlee/anim0.asm similarity index 100% rename from gfx/pics/hitmonlee/anim0.asm rename to gfx/pokemon/hitmonlee/anim0.asm diff --git a/gfx/pics/hitmonlee/anim1.asm b/gfx/pokemon/hitmonlee/anim1.asm similarity index 100% rename from gfx/pics/hitmonlee/anim1.asm rename to gfx/pokemon/hitmonlee/anim1.asm diff --git a/gfx/pics/hitmonlee/back.2bpp.lz.374e3caa b/gfx/pokemon/hitmonlee/back.2bpp.lz.374e3caa similarity index 100% rename from gfx/pics/hitmonlee/back.2bpp.lz.374e3caa rename to gfx/pokemon/hitmonlee/back.2bpp.lz.374e3caa diff --git a/gfx/pics/hitmonlee/back.png b/gfx/pokemon/hitmonlee/back.png similarity index 100% rename from gfx/pics/hitmonlee/back.png rename to gfx/pokemon/hitmonlee/back.png diff --git a/gfx/pics/hitmonlee/front.animated.2bpp.lz.d174eba1 b/gfx/pokemon/hitmonlee/front.animated.2bpp.lz.d174eba1 similarity index 100% rename from gfx/pics/hitmonlee/front.animated.2bpp.lz.d174eba1 rename to gfx/pokemon/hitmonlee/front.animated.2bpp.lz.d174eba1 diff --git a/gfx/pics/hitmonlee/front.png b/gfx/pokemon/hitmonlee/front.png similarity index 100% rename from gfx/pics/hitmonlee/front.png rename to gfx/pokemon/hitmonlee/front.png diff --git a/gfx/pics/hitmonlee/shiny.pal b/gfx/pokemon/hitmonlee/shiny.pal similarity index 100% rename from gfx/pics/hitmonlee/shiny.pal rename to gfx/pokemon/hitmonlee/shiny.pal diff --git a/gfx/pics/hitmontop/anim0.asm b/gfx/pokemon/hitmontop/anim0.asm similarity index 100% rename from gfx/pics/hitmontop/anim0.asm rename to gfx/pokemon/hitmontop/anim0.asm diff --git a/gfx/pics/hitmontop/anim1.asm b/gfx/pokemon/hitmontop/anim1.asm similarity index 100% rename from gfx/pics/hitmontop/anim1.asm rename to gfx/pokemon/hitmontop/anim1.asm diff --git a/gfx/pics/hitmontop/back.2bpp.lz.ea3f1576 b/gfx/pokemon/hitmontop/back.2bpp.lz.ea3f1576 similarity index 100% rename from gfx/pics/hitmontop/back.2bpp.lz.ea3f1576 rename to gfx/pokemon/hitmontop/back.2bpp.lz.ea3f1576 diff --git a/gfx/pics/hitmontop/back.png b/gfx/pokemon/hitmontop/back.png similarity index 100% rename from gfx/pics/hitmontop/back.png rename to gfx/pokemon/hitmontop/back.png diff --git a/gfx/pics/hitmontop/front.animated.2bpp.lz.1b3e96fc b/gfx/pokemon/hitmontop/front.animated.2bpp.lz.1b3e96fc similarity index 100% rename from gfx/pics/hitmontop/front.animated.2bpp.lz.1b3e96fc rename to gfx/pokemon/hitmontop/front.animated.2bpp.lz.1b3e96fc diff --git a/gfx/pics/hitmontop/front.png b/gfx/pokemon/hitmontop/front.png similarity index 100% rename from gfx/pics/hitmontop/front.png rename to gfx/pokemon/hitmontop/front.png diff --git a/gfx/pics/hitmontop/shiny.pal b/gfx/pokemon/hitmontop/shiny.pal similarity index 100% rename from gfx/pics/hitmontop/shiny.pal rename to gfx/pokemon/hitmontop/shiny.pal diff --git a/gfx/pics/ho_oh/anim0.asm b/gfx/pokemon/ho_oh/anim0.asm similarity index 100% rename from gfx/pics/ho_oh/anim0.asm rename to gfx/pokemon/ho_oh/anim0.asm diff --git a/gfx/pics/ho_oh/anim1.asm b/gfx/pokemon/ho_oh/anim1.asm similarity index 100% rename from gfx/pics/ho_oh/anim1.asm rename to gfx/pokemon/ho_oh/anim1.asm diff --git a/gfx/pics/ho_oh/back.2bpp.lz.1412f260 b/gfx/pokemon/ho_oh/back.2bpp.lz.1412f260 similarity index 100% rename from gfx/pics/ho_oh/back.2bpp.lz.1412f260 rename to gfx/pokemon/ho_oh/back.2bpp.lz.1412f260 diff --git a/gfx/pics/ho_oh/back.png b/gfx/pokemon/ho_oh/back.png similarity index 100% rename from gfx/pics/ho_oh/back.png rename to gfx/pokemon/ho_oh/back.png diff --git a/gfx/pics/ho_oh/front.animated.2bpp.lz.db80b5eb b/gfx/pokemon/ho_oh/front.animated.2bpp.lz.db80b5eb similarity index 100% rename from gfx/pics/ho_oh/front.animated.2bpp.lz.db80b5eb rename to gfx/pokemon/ho_oh/front.animated.2bpp.lz.db80b5eb diff --git a/gfx/pics/ho_oh/front.png b/gfx/pokemon/ho_oh/front.png similarity index 100% rename from gfx/pics/ho_oh/front.png rename to gfx/pokemon/ho_oh/front.png diff --git a/gfx/pics/ho_oh/shiny.pal b/gfx/pokemon/ho_oh/shiny.pal similarity index 100% rename from gfx/pics/ho_oh/shiny.pal rename to gfx/pokemon/ho_oh/shiny.pal diff --git a/gfx/pics/hoothoot/anim0.asm b/gfx/pokemon/hoothoot/anim0.asm similarity index 100% rename from gfx/pics/hoothoot/anim0.asm rename to gfx/pokemon/hoothoot/anim0.asm diff --git a/gfx/pics/hoothoot/anim1.asm b/gfx/pokemon/hoothoot/anim1.asm similarity index 100% rename from gfx/pics/hoothoot/anim1.asm rename to gfx/pokemon/hoothoot/anim1.asm diff --git a/gfx/pics/hoothoot/back.2bpp.lz.7ebb0b29 b/gfx/pokemon/hoothoot/back.2bpp.lz.7ebb0b29 similarity index 100% rename from gfx/pics/hoothoot/back.2bpp.lz.7ebb0b29 rename to gfx/pokemon/hoothoot/back.2bpp.lz.7ebb0b29 diff --git a/gfx/pics/hoothoot/back.png b/gfx/pokemon/hoothoot/back.png similarity index 100% rename from gfx/pics/hoothoot/back.png rename to gfx/pokemon/hoothoot/back.png diff --git a/gfx/pics/hoothoot/front.animated.2bpp.lz.752ab202 b/gfx/pokemon/hoothoot/front.animated.2bpp.lz.752ab202 similarity index 100% rename from gfx/pics/hoothoot/front.animated.2bpp.lz.752ab202 rename to gfx/pokemon/hoothoot/front.animated.2bpp.lz.752ab202 diff --git a/gfx/pics/hoothoot/front.png b/gfx/pokemon/hoothoot/front.png similarity index 100% rename from gfx/pics/hoothoot/front.png rename to gfx/pokemon/hoothoot/front.png diff --git a/gfx/pics/hoothoot/shiny.pal b/gfx/pokemon/hoothoot/shiny.pal similarity index 100% rename from gfx/pics/hoothoot/shiny.pal rename to gfx/pokemon/hoothoot/shiny.pal diff --git a/gfx/pics/hoppip/anim0.asm b/gfx/pokemon/hoppip/anim0.asm similarity index 100% rename from gfx/pics/hoppip/anim0.asm rename to gfx/pokemon/hoppip/anim0.asm diff --git a/gfx/pics/hoppip/anim1.asm b/gfx/pokemon/hoppip/anim1.asm similarity index 100% rename from gfx/pics/hoppip/anim1.asm rename to gfx/pokemon/hoppip/anim1.asm diff --git a/gfx/pics/hoppip/back.2bpp.lz.5684c023 b/gfx/pokemon/hoppip/back.2bpp.lz.5684c023 similarity index 100% rename from gfx/pics/hoppip/back.2bpp.lz.5684c023 rename to gfx/pokemon/hoppip/back.2bpp.lz.5684c023 diff --git a/gfx/pics/hoppip/back.png b/gfx/pokemon/hoppip/back.png similarity index 100% rename from gfx/pics/hoppip/back.png rename to gfx/pokemon/hoppip/back.png diff --git a/gfx/pics/hoppip/front.animated.2bpp.lz.a03efe74 b/gfx/pokemon/hoppip/front.animated.2bpp.lz.a03efe74 similarity index 100% rename from gfx/pics/hoppip/front.animated.2bpp.lz.a03efe74 rename to gfx/pokemon/hoppip/front.animated.2bpp.lz.a03efe74 diff --git a/gfx/pics/hoppip/front.png b/gfx/pokemon/hoppip/front.png similarity index 100% rename from gfx/pics/hoppip/front.png rename to gfx/pokemon/hoppip/front.png diff --git a/gfx/pics/hoppip/shiny.pal b/gfx/pokemon/hoppip/shiny.pal similarity index 100% rename from gfx/pics/hoppip/shiny.pal rename to gfx/pokemon/hoppip/shiny.pal diff --git a/gfx/pics/horsea/anim0.asm b/gfx/pokemon/horsea/anim0.asm similarity index 100% rename from gfx/pics/horsea/anim0.asm rename to gfx/pokemon/horsea/anim0.asm diff --git a/gfx/pics/horsea/anim1.asm b/gfx/pokemon/horsea/anim1.asm similarity index 100% rename from gfx/pics/horsea/anim1.asm rename to gfx/pokemon/horsea/anim1.asm diff --git a/gfx/pics/horsea/back.2bpp.lz.50b6afb9 b/gfx/pokemon/horsea/back.2bpp.lz.50b6afb9 similarity index 100% rename from gfx/pics/horsea/back.2bpp.lz.50b6afb9 rename to gfx/pokemon/horsea/back.2bpp.lz.50b6afb9 diff --git a/gfx/pics/horsea/back.png b/gfx/pokemon/horsea/back.png similarity index 100% rename from gfx/pics/horsea/back.png rename to gfx/pokemon/horsea/back.png diff --git a/gfx/pics/horsea/front.animated.2bpp.lz.8b84f98e b/gfx/pokemon/horsea/front.animated.2bpp.lz.8b84f98e similarity index 100% rename from gfx/pics/horsea/front.animated.2bpp.lz.8b84f98e rename to gfx/pokemon/horsea/front.animated.2bpp.lz.8b84f98e diff --git a/gfx/pics/horsea/front.png b/gfx/pokemon/horsea/front.png similarity index 100% rename from gfx/pics/horsea/front.png rename to gfx/pokemon/horsea/front.png diff --git a/gfx/pics/horsea/shiny.pal b/gfx/pokemon/horsea/shiny.pal similarity index 100% rename from gfx/pics/horsea/shiny.pal rename to gfx/pokemon/horsea/shiny.pal diff --git a/gfx/pics/houndoom/anim0.asm b/gfx/pokemon/houndoom/anim0.asm similarity index 100% rename from gfx/pics/houndoom/anim0.asm rename to gfx/pokemon/houndoom/anim0.asm diff --git a/gfx/pics/houndoom/anim1.asm b/gfx/pokemon/houndoom/anim1.asm similarity index 100% rename from gfx/pics/houndoom/anim1.asm rename to gfx/pokemon/houndoom/anim1.asm diff --git a/gfx/pics/houndoom/back.2bpp.lz.5fa55a47 b/gfx/pokemon/houndoom/back.2bpp.lz.5fa55a47 similarity index 100% rename from gfx/pics/houndoom/back.2bpp.lz.5fa55a47 rename to gfx/pokemon/houndoom/back.2bpp.lz.5fa55a47 diff --git a/gfx/pics/houndoom/back.png b/gfx/pokemon/houndoom/back.png similarity index 100% rename from gfx/pics/houndoom/back.png rename to gfx/pokemon/houndoom/back.png diff --git a/gfx/pics/houndoom/front.animated.2bpp.lz.2d450e90 b/gfx/pokemon/houndoom/front.animated.2bpp.lz.2d450e90 similarity index 100% rename from gfx/pics/houndoom/front.animated.2bpp.lz.2d450e90 rename to gfx/pokemon/houndoom/front.animated.2bpp.lz.2d450e90 diff --git a/gfx/pics/houndoom/front.png b/gfx/pokemon/houndoom/front.png similarity index 100% rename from gfx/pics/houndoom/front.png rename to gfx/pokemon/houndoom/front.png diff --git a/gfx/pics/houndoom/shiny.pal b/gfx/pokemon/houndoom/shiny.pal similarity index 100% rename from gfx/pics/houndoom/shiny.pal rename to gfx/pokemon/houndoom/shiny.pal diff --git a/gfx/pics/houndour/anim0.asm b/gfx/pokemon/houndour/anim0.asm similarity index 100% rename from gfx/pics/houndour/anim0.asm rename to gfx/pokemon/houndour/anim0.asm diff --git a/gfx/pics/houndour/anim1.asm b/gfx/pokemon/houndour/anim1.asm similarity index 100% rename from gfx/pics/houndour/anim1.asm rename to gfx/pokemon/houndour/anim1.asm diff --git a/gfx/pics/houndour/back.2bpp.lz.ae5f2dc9 b/gfx/pokemon/houndour/back.2bpp.lz.ae5f2dc9 similarity index 100% rename from gfx/pics/houndour/back.2bpp.lz.ae5f2dc9 rename to gfx/pokemon/houndour/back.2bpp.lz.ae5f2dc9 diff --git a/gfx/pics/houndour/back.png b/gfx/pokemon/houndour/back.png similarity index 100% rename from gfx/pics/houndour/back.png rename to gfx/pokemon/houndour/back.png diff --git a/gfx/pics/houndour/front.animated.2bpp.lz.f847f4f6 b/gfx/pokemon/houndour/front.animated.2bpp.lz.f847f4f6 similarity index 100% rename from gfx/pics/houndour/front.animated.2bpp.lz.f847f4f6 rename to gfx/pokemon/houndour/front.animated.2bpp.lz.f847f4f6 diff --git a/gfx/pics/houndour/front.png b/gfx/pokemon/houndour/front.png similarity index 100% rename from gfx/pics/houndour/front.png rename to gfx/pokemon/houndour/front.png diff --git a/gfx/pics/houndour/shiny.pal b/gfx/pokemon/houndour/shiny.pal similarity index 100% rename from gfx/pics/houndour/shiny.pal rename to gfx/pokemon/houndour/shiny.pal diff --git a/gfx/pics/hypno/anim0.asm b/gfx/pokemon/hypno/anim0.asm similarity index 100% rename from gfx/pics/hypno/anim0.asm rename to gfx/pokemon/hypno/anim0.asm diff --git a/gfx/pics/hypno/anim1.asm b/gfx/pokemon/hypno/anim1.asm similarity index 100% rename from gfx/pics/hypno/anim1.asm rename to gfx/pokemon/hypno/anim1.asm diff --git a/gfx/pics/hypno/back.2bpp.lz.c091ce88 b/gfx/pokemon/hypno/back.2bpp.lz.c091ce88 similarity index 100% rename from gfx/pics/hypno/back.2bpp.lz.c091ce88 rename to gfx/pokemon/hypno/back.2bpp.lz.c091ce88 diff --git a/gfx/pics/hypno/back.png b/gfx/pokemon/hypno/back.png similarity index 100% rename from gfx/pics/hypno/back.png rename to gfx/pokemon/hypno/back.png diff --git a/gfx/pics/hypno/front.animated.2bpp.lz.638333a3 b/gfx/pokemon/hypno/front.animated.2bpp.lz.638333a3 similarity index 100% rename from gfx/pics/hypno/front.animated.2bpp.lz.638333a3 rename to gfx/pokemon/hypno/front.animated.2bpp.lz.638333a3 diff --git a/gfx/pics/hypno/front.png b/gfx/pokemon/hypno/front.png similarity index 100% rename from gfx/pics/hypno/front.png rename to gfx/pokemon/hypno/front.png diff --git a/gfx/pics/hypno/shiny.pal b/gfx/pokemon/hypno/shiny.pal similarity index 100% rename from gfx/pics/hypno/shiny.pal rename to gfx/pokemon/hypno/shiny.pal diff --git a/gfx/pics/igglybuff/anim0.asm b/gfx/pokemon/igglybuff/anim0.asm similarity index 100% rename from gfx/pics/igglybuff/anim0.asm rename to gfx/pokemon/igglybuff/anim0.asm diff --git a/gfx/pics/igglybuff/anim1.asm b/gfx/pokemon/igglybuff/anim1.asm similarity index 100% rename from gfx/pics/igglybuff/anim1.asm rename to gfx/pokemon/igglybuff/anim1.asm diff --git a/gfx/pics/igglybuff/back.2bpp.lz.c0c17dcb b/gfx/pokemon/igglybuff/back.2bpp.lz.c0c17dcb similarity index 100% rename from gfx/pics/igglybuff/back.2bpp.lz.c0c17dcb rename to gfx/pokemon/igglybuff/back.2bpp.lz.c0c17dcb diff --git a/gfx/pics/igglybuff/back.png b/gfx/pokemon/igglybuff/back.png similarity index 100% rename from gfx/pics/igglybuff/back.png rename to gfx/pokemon/igglybuff/back.png diff --git a/gfx/pics/igglybuff/front.animated.2bpp.lz.1e00afc3 b/gfx/pokemon/igglybuff/front.animated.2bpp.lz.1e00afc3 similarity index 100% rename from gfx/pics/igglybuff/front.animated.2bpp.lz.1e00afc3 rename to gfx/pokemon/igglybuff/front.animated.2bpp.lz.1e00afc3 diff --git a/gfx/pics/igglybuff/front.png b/gfx/pokemon/igglybuff/front.png similarity index 100% rename from gfx/pics/igglybuff/front.png rename to gfx/pokemon/igglybuff/front.png diff --git a/gfx/pics/igglybuff/shiny.pal b/gfx/pokemon/igglybuff/shiny.pal similarity index 100% rename from gfx/pics/igglybuff/shiny.pal rename to gfx/pokemon/igglybuff/shiny.pal diff --git a/gfx/pics/ivysaur/anim0.asm b/gfx/pokemon/ivysaur/anim0.asm similarity index 100% rename from gfx/pics/ivysaur/anim0.asm rename to gfx/pokemon/ivysaur/anim0.asm diff --git a/gfx/pics/ivysaur/anim1.asm b/gfx/pokemon/ivysaur/anim1.asm similarity index 100% rename from gfx/pics/ivysaur/anim1.asm rename to gfx/pokemon/ivysaur/anim1.asm diff --git a/gfx/pics/ivysaur/back.2bpp.lz.bed1ff58 b/gfx/pokemon/ivysaur/back.2bpp.lz.bed1ff58 similarity index 100% rename from gfx/pics/ivysaur/back.2bpp.lz.bed1ff58 rename to gfx/pokemon/ivysaur/back.2bpp.lz.bed1ff58 diff --git a/gfx/pics/ivysaur/back.png b/gfx/pokemon/ivysaur/back.png similarity index 100% rename from gfx/pics/ivysaur/back.png rename to gfx/pokemon/ivysaur/back.png diff --git a/gfx/pics/ivysaur/front.animated.2bpp.lz.3abed0fa b/gfx/pokemon/ivysaur/front.animated.2bpp.lz.3abed0fa similarity index 100% rename from gfx/pics/ivysaur/front.animated.2bpp.lz.3abed0fa rename to gfx/pokemon/ivysaur/front.animated.2bpp.lz.3abed0fa diff --git a/gfx/pics/ivysaur/front.png b/gfx/pokemon/ivysaur/front.png similarity index 100% rename from gfx/pics/ivysaur/front.png rename to gfx/pokemon/ivysaur/front.png diff --git a/gfx/pics/ivysaur/shiny.pal b/gfx/pokemon/ivysaur/shiny.pal similarity index 100% rename from gfx/pics/ivysaur/shiny.pal rename to gfx/pokemon/ivysaur/shiny.pal diff --git a/gfx/pics/jigglypuff/anim0.asm b/gfx/pokemon/jigglypuff/anim0.asm similarity index 100% rename from gfx/pics/jigglypuff/anim0.asm rename to gfx/pokemon/jigglypuff/anim0.asm diff --git a/gfx/pics/jigglypuff/anim1.asm b/gfx/pokemon/jigglypuff/anim1.asm similarity index 100% rename from gfx/pics/jigglypuff/anim1.asm rename to gfx/pokemon/jigglypuff/anim1.asm diff --git a/gfx/pics/jigglypuff/back.2bpp.lz.87d5730b b/gfx/pokemon/jigglypuff/back.2bpp.lz.87d5730b similarity index 100% rename from gfx/pics/jigglypuff/back.2bpp.lz.87d5730b rename to gfx/pokemon/jigglypuff/back.2bpp.lz.87d5730b diff --git a/gfx/pics/jigglypuff/back.png b/gfx/pokemon/jigglypuff/back.png similarity index 100% rename from gfx/pics/jigglypuff/back.png rename to gfx/pokemon/jigglypuff/back.png diff --git a/gfx/pics/jigglypuff/front.animated.2bpp.lz.9fd159f4 b/gfx/pokemon/jigglypuff/front.animated.2bpp.lz.9fd159f4 similarity index 100% rename from gfx/pics/jigglypuff/front.animated.2bpp.lz.9fd159f4 rename to gfx/pokemon/jigglypuff/front.animated.2bpp.lz.9fd159f4 diff --git a/gfx/pics/jigglypuff/front.png b/gfx/pokemon/jigglypuff/front.png similarity index 100% rename from gfx/pics/jigglypuff/front.png rename to gfx/pokemon/jigglypuff/front.png diff --git a/gfx/pics/jigglypuff/shiny.pal b/gfx/pokemon/jigglypuff/shiny.pal similarity index 100% rename from gfx/pics/jigglypuff/shiny.pal rename to gfx/pokemon/jigglypuff/shiny.pal diff --git a/gfx/pokemon/johto_frames.asm b/gfx/pokemon/johto_frames.asm new file mode 100644 index 000000000..56ea6eb00 --- /dev/null +++ b/gfx/pokemon/johto_frames.asm @@ -0,0 +1,102 @@ +JohtoFrames: +ChikoritaFrames: INCLUDE "gfx/pokemon/chikorita/frames.asm" +BayleefFrames: INCLUDE "gfx/pokemon/bayleef/frames.asm" +MeganiumFrames: INCLUDE "gfx/pokemon/meganium/frames.asm" +CyndaquilFrames: INCLUDE "gfx/pokemon/cyndaquil/frames.asm" +QuilavaFrames: INCLUDE "gfx/pokemon/quilava/frames.asm" +TyphlosionFrames: INCLUDE "gfx/pokemon/typhlosion/frames.asm" +TotodileFrames: INCLUDE "gfx/pokemon/totodile/frames.asm" +CroconawFrames: INCLUDE "gfx/pokemon/croconaw/frames.asm" +FeraligatrFrames: INCLUDE "gfx/pokemon/feraligatr/frames.asm" +SentretFrames: INCLUDE "gfx/pokemon/sentret/frames.asm" +FurretFrames: INCLUDE "gfx/pokemon/furret/frames.asm" +HoothootFrames: INCLUDE "gfx/pokemon/hoothoot/frames.asm" +NoctowlFrames: INCLUDE "gfx/pokemon/noctowl/frames.asm" +LedybaFrames: INCLUDE "gfx/pokemon/ledyba/frames.asm" +LedianFrames: INCLUDE "gfx/pokemon/ledian/frames.asm" +SpinarakFrames: INCLUDE "gfx/pokemon/spinarak/frames.asm" +AriadosFrames: INCLUDE "gfx/pokemon/ariados/frames.asm" +CrobatFrames: INCLUDE "gfx/pokemon/crobat/frames.asm" +ChinchouFrames: INCLUDE "gfx/pokemon/chinchou/frames.asm" +LanturnFrames: INCLUDE "gfx/pokemon/lanturn/frames.asm" +PichuFrames: INCLUDE "gfx/pokemon/pichu/frames.asm" +CleffaFrames: INCLUDE "gfx/pokemon/cleffa/frames.asm" +IgglybuffFrames: INCLUDE "gfx/pokemon/igglybuff/frames.asm" +TogepiFrames: INCLUDE "gfx/pokemon/togepi/frames.asm" +TogeticFrames: INCLUDE "gfx/pokemon/togetic/frames.asm" +NatuFrames: INCLUDE "gfx/pokemon/natu/frames.asm" +XatuFrames: INCLUDE "gfx/pokemon/xatu/frames.asm" +MareepFrames: INCLUDE "gfx/pokemon/mareep/frames.asm" +FlaaffyFrames: INCLUDE "gfx/pokemon/flaaffy/frames.asm" +AmpharosFrames: INCLUDE "gfx/pokemon/ampharos/frames.asm" +BellossomFrames: INCLUDE "gfx/pokemon/bellossom/frames.asm" +MarillFrames: INCLUDE "gfx/pokemon/marill/frames.asm" +AzumarillFrames: INCLUDE "gfx/pokemon/azumarill/frames.asm" +SudowoodoFrames: INCLUDE "gfx/pokemon/sudowoodo/frames.asm" +PolitoedFrames: INCLUDE "gfx/pokemon/politoed/frames.asm" +HoppipFrames: INCLUDE "gfx/pokemon/hoppip/frames.asm" +SkiploomFrames: INCLUDE "gfx/pokemon/skiploom/frames.asm" +JumpluffFrames: INCLUDE "gfx/pokemon/jumpluff/frames.asm" +AipomFrames: INCLUDE "gfx/pokemon/aipom/frames.asm" +SunkernFrames: INCLUDE "gfx/pokemon/sunkern/frames.asm" +SunfloraFrames: INCLUDE "gfx/pokemon/sunflora/frames.asm" +YanmaFrames: INCLUDE "gfx/pokemon/yanma/frames.asm" +WooperFrames: INCLUDE "gfx/pokemon/wooper/frames.asm" +QuagsireFrames: INCLUDE "gfx/pokemon/quagsire/frames.asm" +EspeonFrames: INCLUDE "gfx/pokemon/espeon/frames.asm" +UmbreonFrames: INCLUDE "gfx/pokemon/umbreon/frames.asm" +MurkrowFrames: INCLUDE "gfx/pokemon/murkrow/frames.asm" +SlowkingFrames: INCLUDE "gfx/pokemon/slowking/frames.asm" +MisdreavusFrames: INCLUDE "gfx/pokemon/misdreavus/frames.asm" +UnownFrames: INCLUDE "gfx/pokemon/unown/frames.asm" +WobbuffetFrames: INCLUDE "gfx/pokemon/wobbuffet/frames.asm" +GirafarigFrames: INCLUDE "gfx/pokemon/girafarig/frames.asm" +PinecoFrames: INCLUDE "gfx/pokemon/pineco/frames.asm" +ForretressFrames: INCLUDE "gfx/pokemon/forretress/frames.asm" +DunsparceFrames: INCLUDE "gfx/pokemon/dunsparce/frames.asm" +GligarFrames: INCLUDE "gfx/pokemon/gligar/frames.asm" +SteelixFrames: INCLUDE "gfx/pokemon/steelix/frames.asm" +SnubbullFrames: INCLUDE "gfx/pokemon/snubbull/frames.asm" +GranbullFrames: INCLUDE "gfx/pokemon/granbull/frames.asm" +QwilfishFrames: INCLUDE "gfx/pokemon/qwilfish/frames.asm" +ScizorFrames: INCLUDE "gfx/pokemon/scizor/frames.asm" +ShuckleFrames: INCLUDE "gfx/pokemon/shuckle/frames.asm" +HeracrossFrames: INCLUDE "gfx/pokemon/heracross/frames.asm" +SneaselFrames: INCLUDE "gfx/pokemon/sneasel/frames.asm" +TeddiursaFrames: INCLUDE "gfx/pokemon/teddiursa/frames.asm" +UrsaringFrames: INCLUDE "gfx/pokemon/ursaring/frames.asm" +SlugmaFrames: INCLUDE "gfx/pokemon/slugma/frames.asm" +MagcargoFrames: INCLUDE "gfx/pokemon/magcargo/frames.asm" +SwinubFrames: INCLUDE "gfx/pokemon/swinub/frames.asm" +PiloswineFrames: INCLUDE "gfx/pokemon/piloswine/frames.asm" +CorsolaFrames: INCLUDE "gfx/pokemon/corsola/frames.asm" +RemoraidFrames: INCLUDE "gfx/pokemon/remoraid/frames.asm" +OctilleryFrames: INCLUDE "gfx/pokemon/octillery/frames.asm" +DelibirdFrames: INCLUDE "gfx/pokemon/delibird/frames.asm" +MantineFrames: INCLUDE "gfx/pokemon/mantine/frames.asm" +SkarmoryFrames: INCLUDE "gfx/pokemon/skarmory/frames.asm" +HoundourFrames: INCLUDE "gfx/pokemon/houndour/frames.asm" +HoundoomFrames: INCLUDE "gfx/pokemon/houndoom/frames.asm" +KingdraFrames: INCLUDE "gfx/pokemon/kingdra/frames.asm" +PhanpyFrames: INCLUDE "gfx/pokemon/phanpy/frames.asm" +DonphanFrames: INCLUDE "gfx/pokemon/donphan/frames.asm" +Porygon2Frames: INCLUDE "gfx/pokemon/porygon2/frames.asm" +StantlerFrames: INCLUDE "gfx/pokemon/stantler/frames.asm" +SmeargleFrames: INCLUDE "gfx/pokemon/smeargle/frames.asm" +TyrogueFrames: INCLUDE "gfx/pokemon/tyrogue/frames.asm" +HitmontopFrames: INCLUDE "gfx/pokemon/hitmontop/frames.asm" +SmoochumFrames: INCLUDE "gfx/pokemon/smoochum/frames.asm" +ElekidFrames: INCLUDE "gfx/pokemon/elekid/frames.asm" +MagbyFrames: INCLUDE "gfx/pokemon/magby/frames.asm" +MiltankFrames: INCLUDE "gfx/pokemon/miltank/frames.asm" +BlisseyFrames: INCLUDE "gfx/pokemon/blissey/frames.asm" +RaikouFrames: INCLUDE "gfx/pokemon/raikou/frames.asm" +EnteiFrames: INCLUDE "gfx/pokemon/entei/frames.asm" +SuicuneFrames: INCLUDE "gfx/pokemon/suicune/frames.asm" +LarvitarFrames: INCLUDE "gfx/pokemon/larvitar/frames.asm" +PupitarFrames: INCLUDE "gfx/pokemon/pupitar/frames.asm" +TyranitarFrames: INCLUDE "gfx/pokemon/tyranitar/frames.asm" +LugiaFrames: INCLUDE "gfx/pokemon/lugia/frames.asm" +HoOhFrames: INCLUDE "gfx/pokemon/ho_oh/frames.asm" +CelebiFrames: INCLUDE "gfx/pokemon/celebi/frames.asm" +EggFrames: INCLUDE "gfx/pokemon/egg/frames.asm" diff --git a/gfx/pics/jolteon/anim0.asm b/gfx/pokemon/jolteon/anim0.asm similarity index 100% rename from gfx/pics/jolteon/anim0.asm rename to gfx/pokemon/jolteon/anim0.asm diff --git a/gfx/pics/jolteon/anim1.asm b/gfx/pokemon/jolteon/anim1.asm similarity index 100% rename from gfx/pics/jolteon/anim1.asm rename to gfx/pokemon/jolteon/anim1.asm diff --git a/gfx/pics/jolteon/back.2bpp.lz.f248aac4 b/gfx/pokemon/jolteon/back.2bpp.lz.f248aac4 similarity index 100% rename from gfx/pics/jolteon/back.2bpp.lz.f248aac4 rename to gfx/pokemon/jolteon/back.2bpp.lz.f248aac4 diff --git a/gfx/pics/jolteon/back.png b/gfx/pokemon/jolteon/back.png similarity index 100% rename from gfx/pics/jolteon/back.png rename to gfx/pokemon/jolteon/back.png diff --git a/gfx/pics/jolteon/front.animated.2bpp.lz.b2b07d79 b/gfx/pokemon/jolteon/front.animated.2bpp.lz.b2b07d79 similarity index 100% rename from gfx/pics/jolteon/front.animated.2bpp.lz.b2b07d79 rename to gfx/pokemon/jolteon/front.animated.2bpp.lz.b2b07d79 diff --git a/gfx/pics/jolteon/front.png b/gfx/pokemon/jolteon/front.png similarity index 100% rename from gfx/pics/jolteon/front.png rename to gfx/pokemon/jolteon/front.png diff --git a/gfx/pics/jolteon/shiny.pal b/gfx/pokemon/jolteon/shiny.pal similarity index 100% rename from gfx/pics/jolteon/shiny.pal rename to gfx/pokemon/jolteon/shiny.pal diff --git a/gfx/pics/jumpluff/anim0.asm b/gfx/pokemon/jumpluff/anim0.asm similarity index 100% rename from gfx/pics/jumpluff/anim0.asm rename to gfx/pokemon/jumpluff/anim0.asm diff --git a/gfx/pics/jumpluff/anim1.asm b/gfx/pokemon/jumpluff/anim1.asm similarity index 100% rename from gfx/pics/jumpluff/anim1.asm rename to gfx/pokemon/jumpluff/anim1.asm diff --git a/gfx/pics/jumpluff/back.2bpp.lz.b258a699 b/gfx/pokemon/jumpluff/back.2bpp.lz.b258a699 similarity index 100% rename from gfx/pics/jumpluff/back.2bpp.lz.b258a699 rename to gfx/pokemon/jumpluff/back.2bpp.lz.b258a699 diff --git a/gfx/pics/jumpluff/back.png b/gfx/pokemon/jumpluff/back.png similarity index 100% rename from gfx/pics/jumpluff/back.png rename to gfx/pokemon/jumpluff/back.png diff --git a/gfx/pics/jumpluff/front.animated.2bpp.lz.6d1d8175 b/gfx/pokemon/jumpluff/front.animated.2bpp.lz.6d1d8175 similarity index 100% rename from gfx/pics/jumpluff/front.animated.2bpp.lz.6d1d8175 rename to gfx/pokemon/jumpluff/front.animated.2bpp.lz.6d1d8175 diff --git a/gfx/pics/jumpluff/front.png b/gfx/pokemon/jumpluff/front.png similarity index 100% rename from gfx/pics/jumpluff/front.png rename to gfx/pokemon/jumpluff/front.png diff --git a/gfx/pics/jumpluff/shiny.pal b/gfx/pokemon/jumpluff/shiny.pal similarity index 100% rename from gfx/pics/jumpluff/shiny.pal rename to gfx/pokemon/jumpluff/shiny.pal diff --git a/gfx/pics/jynx/anim0.asm b/gfx/pokemon/jynx/anim0.asm similarity index 100% rename from gfx/pics/jynx/anim0.asm rename to gfx/pokemon/jynx/anim0.asm diff --git a/gfx/pics/jynx/anim1.asm b/gfx/pokemon/jynx/anim1.asm similarity index 100% rename from gfx/pics/jynx/anim1.asm rename to gfx/pokemon/jynx/anim1.asm diff --git a/gfx/pics/jynx/back.2bpp.lz.1eef1c1b b/gfx/pokemon/jynx/back.2bpp.lz.1eef1c1b similarity index 100% rename from gfx/pics/jynx/back.2bpp.lz.1eef1c1b rename to gfx/pokemon/jynx/back.2bpp.lz.1eef1c1b diff --git a/gfx/pics/jynx/back.png b/gfx/pokemon/jynx/back.png similarity index 100% rename from gfx/pics/jynx/back.png rename to gfx/pokemon/jynx/back.png diff --git a/gfx/pics/jynx/front.animated.2bpp.lz.6aaf67b0 b/gfx/pokemon/jynx/front.animated.2bpp.lz.6aaf67b0 similarity index 100% rename from gfx/pics/jynx/front.animated.2bpp.lz.6aaf67b0 rename to gfx/pokemon/jynx/front.animated.2bpp.lz.6aaf67b0 diff --git a/gfx/pics/jynx/front.png b/gfx/pokemon/jynx/front.png similarity index 100% rename from gfx/pics/jynx/front.png rename to gfx/pokemon/jynx/front.png diff --git a/gfx/pics/jynx/shiny.pal b/gfx/pokemon/jynx/shiny.pal similarity index 100% rename from gfx/pics/jynx/shiny.pal rename to gfx/pokemon/jynx/shiny.pal diff --git a/gfx/pics/kabuto/anim0.asm b/gfx/pokemon/kabuto/anim0.asm similarity index 100% rename from gfx/pics/kabuto/anim0.asm rename to gfx/pokemon/kabuto/anim0.asm diff --git a/gfx/pics/kabuto/anim1.asm b/gfx/pokemon/kabuto/anim1.asm similarity index 100% rename from gfx/pics/kabuto/anim1.asm rename to gfx/pokemon/kabuto/anim1.asm diff --git a/gfx/pics/kabuto/back.2bpp.lz.0717a29b b/gfx/pokemon/kabuto/back.2bpp.lz.0717a29b similarity index 100% rename from gfx/pics/kabuto/back.2bpp.lz.0717a29b rename to gfx/pokemon/kabuto/back.2bpp.lz.0717a29b diff --git a/gfx/pics/kabuto/back.png b/gfx/pokemon/kabuto/back.png similarity index 100% rename from gfx/pics/kabuto/back.png rename to gfx/pokemon/kabuto/back.png diff --git a/gfx/pics/kabuto/front.animated.2bpp.lz.afe4e2dc b/gfx/pokemon/kabuto/front.animated.2bpp.lz.afe4e2dc similarity index 100% rename from gfx/pics/kabuto/front.animated.2bpp.lz.afe4e2dc rename to gfx/pokemon/kabuto/front.animated.2bpp.lz.afe4e2dc diff --git a/gfx/pics/kabuto/front.png b/gfx/pokemon/kabuto/front.png similarity index 100% rename from gfx/pics/kabuto/front.png rename to gfx/pokemon/kabuto/front.png diff --git a/gfx/pics/kabuto/shiny.pal b/gfx/pokemon/kabuto/shiny.pal similarity index 100% rename from gfx/pics/kabuto/shiny.pal rename to gfx/pokemon/kabuto/shiny.pal diff --git a/gfx/pics/kabutops/anim0.asm b/gfx/pokemon/kabutops/anim0.asm similarity index 100% rename from gfx/pics/kabutops/anim0.asm rename to gfx/pokemon/kabutops/anim0.asm diff --git a/gfx/pics/kabutops/anim1.asm b/gfx/pokemon/kabutops/anim1.asm similarity index 100% rename from gfx/pics/kabutops/anim1.asm rename to gfx/pokemon/kabutops/anim1.asm diff --git a/gfx/pics/kabutops/back.2bpp.lz.98a1dfc4 b/gfx/pokemon/kabutops/back.2bpp.lz.98a1dfc4 similarity index 100% rename from gfx/pics/kabutops/back.2bpp.lz.98a1dfc4 rename to gfx/pokemon/kabutops/back.2bpp.lz.98a1dfc4 diff --git a/gfx/pics/kabutops/back.png b/gfx/pokemon/kabutops/back.png similarity index 100% rename from gfx/pics/kabutops/back.png rename to gfx/pokemon/kabutops/back.png diff --git a/gfx/pics/kabutops/front.animated.2bpp.lz.d5e4bfeb b/gfx/pokemon/kabutops/front.animated.2bpp.lz.d5e4bfeb similarity index 100% rename from gfx/pics/kabutops/front.animated.2bpp.lz.d5e4bfeb rename to gfx/pokemon/kabutops/front.animated.2bpp.lz.d5e4bfeb diff --git a/gfx/pics/kabutops/front.png b/gfx/pokemon/kabutops/front.png similarity index 100% rename from gfx/pics/kabutops/front.png rename to gfx/pokemon/kabutops/front.png diff --git a/gfx/pics/kabutops/shiny.pal b/gfx/pokemon/kabutops/shiny.pal similarity index 100% rename from gfx/pics/kabutops/shiny.pal rename to gfx/pokemon/kabutops/shiny.pal diff --git a/gfx/pics/kadabra/anim0.asm b/gfx/pokemon/kadabra/anim0.asm similarity index 100% rename from gfx/pics/kadabra/anim0.asm rename to gfx/pokemon/kadabra/anim0.asm diff --git a/gfx/pics/kadabra/anim1.asm b/gfx/pokemon/kadabra/anim1.asm similarity index 100% rename from gfx/pics/kadabra/anim1.asm rename to gfx/pokemon/kadabra/anim1.asm diff --git a/gfx/pics/kadabra/back.2bpp.lz.6b26c1a0 b/gfx/pokemon/kadabra/back.2bpp.lz.6b26c1a0 similarity index 100% rename from gfx/pics/kadabra/back.2bpp.lz.6b26c1a0 rename to gfx/pokemon/kadabra/back.2bpp.lz.6b26c1a0 diff --git a/gfx/pics/kadabra/back.png b/gfx/pokemon/kadabra/back.png similarity index 100% rename from gfx/pics/kadabra/back.png rename to gfx/pokemon/kadabra/back.png diff --git a/gfx/pics/kadabra/front.animated.2bpp.lz.bc78f9cf b/gfx/pokemon/kadabra/front.animated.2bpp.lz.bc78f9cf similarity index 100% rename from gfx/pics/kadabra/front.animated.2bpp.lz.bc78f9cf rename to gfx/pokemon/kadabra/front.animated.2bpp.lz.bc78f9cf diff --git a/gfx/pics/kadabra/front.png b/gfx/pokemon/kadabra/front.png similarity index 100% rename from gfx/pics/kadabra/front.png rename to gfx/pokemon/kadabra/front.png diff --git a/gfx/pics/kadabra/shiny.pal b/gfx/pokemon/kadabra/shiny.pal similarity index 100% rename from gfx/pics/kadabra/shiny.pal rename to gfx/pokemon/kadabra/shiny.pal diff --git a/gfx/pics/kakuna/anim0.asm b/gfx/pokemon/kakuna/anim0.asm similarity index 100% rename from gfx/pics/kakuna/anim0.asm rename to gfx/pokemon/kakuna/anim0.asm diff --git a/gfx/pics/kakuna/anim1.asm b/gfx/pokemon/kakuna/anim1.asm similarity index 100% rename from gfx/pics/kakuna/anim1.asm rename to gfx/pokemon/kakuna/anim1.asm diff --git a/gfx/pics/kakuna/back.2bpp.lz.3bffa4c3 b/gfx/pokemon/kakuna/back.2bpp.lz.3bffa4c3 similarity index 100% rename from gfx/pics/kakuna/back.2bpp.lz.3bffa4c3 rename to gfx/pokemon/kakuna/back.2bpp.lz.3bffa4c3 diff --git a/gfx/pics/kakuna/back.png b/gfx/pokemon/kakuna/back.png similarity index 100% rename from gfx/pics/kakuna/back.png rename to gfx/pokemon/kakuna/back.png diff --git a/gfx/pics/kakuna/front.animated.2bpp.lz.c7425e72 b/gfx/pokemon/kakuna/front.animated.2bpp.lz.c7425e72 similarity index 100% rename from gfx/pics/kakuna/front.animated.2bpp.lz.c7425e72 rename to gfx/pokemon/kakuna/front.animated.2bpp.lz.c7425e72 diff --git a/gfx/pics/kakuna/front.png b/gfx/pokemon/kakuna/front.png similarity index 100% rename from gfx/pics/kakuna/front.png rename to gfx/pokemon/kakuna/front.png diff --git a/gfx/pics/kakuna/shiny.pal b/gfx/pokemon/kakuna/shiny.pal similarity index 100% rename from gfx/pics/kakuna/shiny.pal rename to gfx/pokemon/kakuna/shiny.pal diff --git a/gfx/pics/kangaskhan/anim0.asm b/gfx/pokemon/kangaskhan/anim0.asm similarity index 100% rename from gfx/pics/kangaskhan/anim0.asm rename to gfx/pokemon/kangaskhan/anim0.asm diff --git a/gfx/pics/kangaskhan/anim1.asm b/gfx/pokemon/kangaskhan/anim1.asm similarity index 100% rename from gfx/pics/kangaskhan/anim1.asm rename to gfx/pokemon/kangaskhan/anim1.asm diff --git a/gfx/pics/kangaskhan/back.2bpp.lz.0d7cc337 b/gfx/pokemon/kangaskhan/back.2bpp.lz.0d7cc337 similarity index 100% rename from gfx/pics/kangaskhan/back.2bpp.lz.0d7cc337 rename to gfx/pokemon/kangaskhan/back.2bpp.lz.0d7cc337 diff --git a/gfx/pics/kangaskhan/back.png b/gfx/pokemon/kangaskhan/back.png similarity index 100% rename from gfx/pics/kangaskhan/back.png rename to gfx/pokemon/kangaskhan/back.png diff --git a/gfx/pics/kangaskhan/front.animated.2bpp.lz.09c81009 b/gfx/pokemon/kangaskhan/front.animated.2bpp.lz.09c81009 similarity index 100% rename from gfx/pics/kangaskhan/front.animated.2bpp.lz.09c81009 rename to gfx/pokemon/kangaskhan/front.animated.2bpp.lz.09c81009 diff --git a/gfx/pics/kangaskhan/front.png b/gfx/pokemon/kangaskhan/front.png similarity index 100% rename from gfx/pics/kangaskhan/front.png rename to gfx/pokemon/kangaskhan/front.png diff --git a/gfx/pics/kangaskhan/shiny.pal b/gfx/pokemon/kangaskhan/shiny.pal similarity index 100% rename from gfx/pics/kangaskhan/shiny.pal rename to gfx/pokemon/kangaskhan/shiny.pal diff --git a/gfx/pokemon/kanto_frames.asm b/gfx/pokemon/kanto_frames.asm new file mode 100644 index 000000000..9a7aa7c85 --- /dev/null +++ b/gfx/pokemon/kanto_frames.asm @@ -0,0 +1,152 @@ +KantoFrames: +BulbasaurFrames: INCLUDE "gfx/pokemon/bulbasaur/frames.asm" +IvysaurFrames: INCLUDE "gfx/pokemon/ivysaur/frames.asm" +VenusaurFrames: INCLUDE "gfx/pokemon/venusaur/frames.asm" +CharmanderFrames: INCLUDE "gfx/pokemon/charmander/frames.asm" +CharmeleonFrames: INCLUDE "gfx/pokemon/charmeleon/frames.asm" +CharizardFrames: INCLUDE "gfx/pokemon/charizard/frames.asm" +SquirtleFrames: INCLUDE "gfx/pokemon/squirtle/frames.asm" +WartortleFrames: INCLUDE "gfx/pokemon/wartortle/frames.asm" +BlastoiseFrames: INCLUDE "gfx/pokemon/blastoise/frames.asm" +CaterpieFrames: INCLUDE "gfx/pokemon/caterpie/frames.asm" +MetapodFrames: INCLUDE "gfx/pokemon/metapod/frames.asm" +ButterfreeFrames: INCLUDE "gfx/pokemon/butterfree/frames.asm" +WeedleFrames: INCLUDE "gfx/pokemon/weedle/frames.asm" +KakunaFrames: INCLUDE "gfx/pokemon/kakuna/frames.asm" +BeedrillFrames: INCLUDE "gfx/pokemon/beedrill/frames.asm" +PidgeyFrames: INCLUDE "gfx/pokemon/pidgey/frames.asm" +PidgeottoFrames: INCLUDE "gfx/pokemon/pidgeotto/frames.asm" +PidgeotFrames: INCLUDE "gfx/pokemon/pidgeot/frames.asm" +RattataFrames: INCLUDE "gfx/pokemon/rattata/frames.asm" +RaticateFrames: INCLUDE "gfx/pokemon/raticate/frames.asm" +SpearowFrames: INCLUDE "gfx/pokemon/spearow/frames.asm" +FearowFrames: INCLUDE "gfx/pokemon/fearow/frames.asm" +EkansFrames: INCLUDE "gfx/pokemon/ekans/frames.asm" +ArbokFrames: INCLUDE "gfx/pokemon/arbok/frames.asm" +PikachuFrames: INCLUDE "gfx/pokemon/pikachu/frames.asm" +RaichuFrames: INCLUDE "gfx/pokemon/raichu/frames.asm" +SandshrewFrames: INCLUDE "gfx/pokemon/sandshrew/frames.asm" +SandslashFrames: INCLUDE "gfx/pokemon/sandslash/frames.asm" +NidoranFFrames: INCLUDE "gfx/pokemon/nidoran_f/frames.asm" +NidorinaFrames: INCLUDE "gfx/pokemon/nidorina/frames.asm" +NidoqueenFrames: INCLUDE "gfx/pokemon/nidoqueen/frames.asm" +NidoranMFrames: INCLUDE "gfx/pokemon/nidoran_m/frames.asm" +NidorinoFrames: INCLUDE "gfx/pokemon/nidorino/frames.asm" +NidokingFrames: INCLUDE "gfx/pokemon/nidoking/frames.asm" +ClefairyFrames: INCLUDE "gfx/pokemon/clefairy/frames.asm" +ClefableFrames: INCLUDE "gfx/pokemon/clefable/frames.asm" +VulpixFrames: INCLUDE "gfx/pokemon/vulpix/frames.asm" +NinetalesFrames: INCLUDE "gfx/pokemon/ninetales/frames.asm" +JigglypuffFrames: INCLUDE "gfx/pokemon/jigglypuff/frames.asm" +WigglytuffFrames: INCLUDE "gfx/pokemon/wigglytuff/frames.asm" +ZubatFrames: INCLUDE "gfx/pokemon/zubat/frames.asm" +GolbatFrames: INCLUDE "gfx/pokemon/golbat/frames.asm" +OddishFrames: INCLUDE "gfx/pokemon/oddish/frames.asm" +GloomFrames: INCLUDE "gfx/pokemon/gloom/frames.asm" +VileplumeFrames: INCLUDE "gfx/pokemon/vileplume/frames.asm" +ParasFrames: INCLUDE "gfx/pokemon/paras/frames.asm" +ParasectFrames: INCLUDE "gfx/pokemon/parasect/frames.asm" +VenonatFrames: INCLUDE "gfx/pokemon/venonat/frames.asm" +VenomothFrames: INCLUDE "gfx/pokemon/venomoth/frames.asm" +DiglettFrames: INCLUDE "gfx/pokemon/diglett/frames.asm" +DugtrioFrames: INCLUDE "gfx/pokemon/dugtrio/frames.asm" +MeowthFrames: INCLUDE "gfx/pokemon/meowth/frames.asm" +PersianFrames: INCLUDE "gfx/pokemon/persian/frames.asm" +PsyduckFrames: INCLUDE "gfx/pokemon/psyduck/frames.asm" +GolduckFrames: INCLUDE "gfx/pokemon/golduck/frames.asm" +MankeyFrames: INCLUDE "gfx/pokemon/mankey/frames.asm" +PrimeapeFrames: INCLUDE "gfx/pokemon/primeape/frames.asm" +GrowlitheFrames: INCLUDE "gfx/pokemon/growlithe/frames.asm" +ArcanineFrames: INCLUDE "gfx/pokemon/arcanine/frames.asm" +PoliwagFrames: INCLUDE "gfx/pokemon/poliwag/frames.asm" +PoliwhirlFrames: INCLUDE "gfx/pokemon/poliwhirl/frames.asm" +PoliwrathFrames: INCLUDE "gfx/pokemon/poliwrath/frames.asm" +AbraFrames: INCLUDE "gfx/pokemon/abra/frames.asm" +KadabraFrames: INCLUDE "gfx/pokemon/kadabra/frames.asm" +AlakazamFrames: INCLUDE "gfx/pokemon/alakazam/frames.asm" +MachopFrames: INCLUDE "gfx/pokemon/machop/frames.asm" +MachokeFrames: INCLUDE "gfx/pokemon/machoke/frames.asm" +MachampFrames: INCLUDE "gfx/pokemon/machamp/frames.asm" +BellsproutFrames: INCLUDE "gfx/pokemon/bellsprout/frames.asm" +WeepinbellFrames: INCLUDE "gfx/pokemon/weepinbell/frames.asm" +VictreebelFrames: INCLUDE "gfx/pokemon/victreebel/frames.asm" +TentacoolFrames: INCLUDE "gfx/pokemon/tentacool/frames.asm" +TentacruelFrames: INCLUDE "gfx/pokemon/tentacruel/frames.asm" +GeodudeFrames: INCLUDE "gfx/pokemon/geodude/frames.asm" +GravelerFrames: INCLUDE "gfx/pokemon/graveler/frames.asm" +GolemFrames: INCLUDE "gfx/pokemon/golem/frames.asm" +PonytaFrames: INCLUDE "gfx/pokemon/ponyta/frames.asm" +RapidashFrames: INCLUDE "gfx/pokemon/rapidash/frames.asm" +SlowpokeFrames: INCLUDE "gfx/pokemon/slowpoke/frames.asm" +SlowbroFrames: INCLUDE "gfx/pokemon/slowbro/frames.asm" +MagnemiteFrames: INCLUDE "gfx/pokemon/magnemite/frames.asm" +MagnetonFrames: INCLUDE "gfx/pokemon/magneton/frames.asm" +FarfetchDFrames: INCLUDE "gfx/pokemon/farfetch_d/frames.asm" +DoduoFrames: INCLUDE "gfx/pokemon/doduo/frames.asm" +DodrioFrames: INCLUDE "gfx/pokemon/dodrio/frames.asm" +SeelFrames: INCLUDE "gfx/pokemon/seel/frames.asm" +DewgongFrames: INCLUDE "gfx/pokemon/dewgong/frames.asm" +GrimerFrames: INCLUDE "gfx/pokemon/grimer/frames.asm" +MukFrames: INCLUDE "gfx/pokemon/muk/frames.asm" +ShellderFrames: INCLUDE "gfx/pokemon/shellder/frames.asm" +CloysterFrames: INCLUDE "gfx/pokemon/cloyster/frames.asm" +GastlyFrames: INCLUDE "gfx/pokemon/gastly/frames.asm" +HaunterFrames: INCLUDE "gfx/pokemon/haunter/frames.asm" +GengarFrames: INCLUDE "gfx/pokemon/gengar/frames.asm" +OnixFrames: INCLUDE "gfx/pokemon/onix/frames.asm" +DrowzeeFrames: INCLUDE "gfx/pokemon/drowzee/frames.asm" +HypnoFrames: INCLUDE "gfx/pokemon/hypno/frames.asm" +KrabbyFrames: INCLUDE "gfx/pokemon/krabby/frames.asm" +KinglerFrames: INCLUDE "gfx/pokemon/kingler/frames.asm" +VoltorbFrames: INCLUDE "gfx/pokemon/voltorb/frames.asm" +ElectrodeFrames: INCLUDE "gfx/pokemon/electrode/frames.asm" +ExeggcuteFrames: INCLUDE "gfx/pokemon/exeggcute/frames.asm" +ExeggutorFrames: INCLUDE "gfx/pokemon/exeggutor/frames.asm" +CuboneFrames: INCLUDE "gfx/pokemon/cubone/frames.asm" +MarowakFrames: INCLUDE "gfx/pokemon/marowak/frames.asm" +HitmonleeFrames: INCLUDE "gfx/pokemon/hitmonlee/frames.asm" +HitmonchanFrames: INCLUDE "gfx/pokemon/hitmonchan/frames.asm" +LickitungFrames: INCLUDE "gfx/pokemon/lickitung/frames.asm" +KoffingFrames: INCLUDE "gfx/pokemon/koffing/frames.asm" +WeezingFrames: INCLUDE "gfx/pokemon/weezing/frames.asm" +RhyhornFrames: INCLUDE "gfx/pokemon/rhyhorn/frames.asm" +RhydonFrames: INCLUDE "gfx/pokemon/rhydon/frames.asm" +ChanseyFrames: INCLUDE "gfx/pokemon/chansey/frames.asm" +TangelaFrames: INCLUDE "gfx/pokemon/tangela/frames.asm" +KangaskhanFrames: INCLUDE "gfx/pokemon/kangaskhan/frames.asm" +HorseaFrames: INCLUDE "gfx/pokemon/horsea/frames.asm" +SeadraFrames: INCLUDE "gfx/pokemon/seadra/frames.asm" +GoldeenFrames: INCLUDE "gfx/pokemon/goldeen/frames.asm" +SeakingFrames: INCLUDE "gfx/pokemon/seaking/frames.asm" +StaryuFrames: INCLUDE "gfx/pokemon/staryu/frames.asm" +StarmieFrames: INCLUDE "gfx/pokemon/starmie/frames.asm" +MrMimeFrames: INCLUDE "gfx/pokemon/mr__mime/frames.asm" +ScytherFrames: INCLUDE "gfx/pokemon/scyther/frames.asm" +JynxFrames: INCLUDE "gfx/pokemon/jynx/frames.asm" +ElectabuzzFrames: INCLUDE "gfx/pokemon/electabuzz/frames.asm" +MagmarFrames: INCLUDE "gfx/pokemon/magmar/frames.asm" +PinsirFrames: INCLUDE "gfx/pokemon/pinsir/frames.asm" +TaurosFrames: INCLUDE "gfx/pokemon/tauros/frames.asm" +MagikarpFrames: INCLUDE "gfx/pokemon/magikarp/frames.asm" +GyaradosFrames: INCLUDE "gfx/pokemon/gyarados/frames.asm" +LaprasFrames: INCLUDE "gfx/pokemon/lapras/frames.asm" +DittoFrames: INCLUDE "gfx/pokemon/ditto/frames.asm" +EeveeFrames: INCLUDE "gfx/pokemon/eevee/frames.asm" +VaporeonFrames: INCLUDE "gfx/pokemon/vaporeon/frames.asm" +JolteonFrames: INCLUDE "gfx/pokemon/jolteon/frames.asm" +FlareonFrames: INCLUDE "gfx/pokemon/flareon/frames.asm" +PorygonFrames: INCLUDE "gfx/pokemon/porygon/frames.asm" +OmanyteFrames: INCLUDE "gfx/pokemon/omanyte/frames.asm" +OmastarFrames: INCLUDE "gfx/pokemon/omastar/frames.asm" +KabutoFrames: INCLUDE "gfx/pokemon/kabuto/frames.asm" +KabutopsFrames: INCLUDE "gfx/pokemon/kabutops/frames.asm" +AerodactylFrames: INCLUDE "gfx/pokemon/aerodactyl/frames.asm" +SnorlaxFrames: INCLUDE "gfx/pokemon/snorlax/frames.asm" +ArticunoFrames: INCLUDE "gfx/pokemon/articuno/frames.asm" +ZapdosFrames: INCLUDE "gfx/pokemon/zapdos/frames.asm" +MoltresFrames: INCLUDE "gfx/pokemon/moltres/frames.asm" +DratiniFrames: INCLUDE "gfx/pokemon/dratini/frames.asm" +DragonairFrames: INCLUDE "gfx/pokemon/dragonair/frames.asm" +DragoniteFrames: INCLUDE "gfx/pokemon/dragonite/frames.asm" +MewtwoFrames: INCLUDE "gfx/pokemon/mewtwo/frames.asm" +MewFrames: INCLUDE "gfx/pokemon/mew/frames.asm" diff --git a/gfx/pics/kingdra/anim0.asm b/gfx/pokemon/kingdra/anim0.asm similarity index 100% rename from gfx/pics/kingdra/anim0.asm rename to gfx/pokemon/kingdra/anim0.asm diff --git a/gfx/pics/kingdra/anim1.asm b/gfx/pokemon/kingdra/anim1.asm similarity index 100% rename from gfx/pics/kingdra/anim1.asm rename to gfx/pokemon/kingdra/anim1.asm diff --git a/gfx/pics/kingdra/back.2bpp.lz.e48ecb3f b/gfx/pokemon/kingdra/back.2bpp.lz.e48ecb3f similarity index 100% rename from gfx/pics/kingdra/back.2bpp.lz.e48ecb3f rename to gfx/pokemon/kingdra/back.2bpp.lz.e48ecb3f diff --git a/gfx/pics/kingdra/back.png b/gfx/pokemon/kingdra/back.png similarity index 100% rename from gfx/pics/kingdra/back.png rename to gfx/pokemon/kingdra/back.png diff --git a/gfx/pics/kingdra/front.animated.2bpp.lz.668c0516 b/gfx/pokemon/kingdra/front.animated.2bpp.lz.668c0516 similarity index 100% rename from gfx/pics/kingdra/front.animated.2bpp.lz.668c0516 rename to gfx/pokemon/kingdra/front.animated.2bpp.lz.668c0516 diff --git a/gfx/pics/kingdra/front.png b/gfx/pokemon/kingdra/front.png similarity index 100% rename from gfx/pics/kingdra/front.png rename to gfx/pokemon/kingdra/front.png diff --git a/gfx/pics/kingdra/shiny.pal b/gfx/pokemon/kingdra/shiny.pal similarity index 100% rename from gfx/pics/kingdra/shiny.pal rename to gfx/pokemon/kingdra/shiny.pal diff --git a/gfx/pics/kingler/anim0.asm b/gfx/pokemon/kingler/anim0.asm similarity index 100% rename from gfx/pics/kingler/anim0.asm rename to gfx/pokemon/kingler/anim0.asm diff --git a/gfx/pics/kingler/anim1.asm b/gfx/pokemon/kingler/anim1.asm similarity index 100% rename from gfx/pics/kingler/anim1.asm rename to gfx/pokemon/kingler/anim1.asm diff --git a/gfx/pics/kingler/back.2bpp.lz.88e96d65 b/gfx/pokemon/kingler/back.2bpp.lz.88e96d65 similarity index 100% rename from gfx/pics/kingler/back.2bpp.lz.88e96d65 rename to gfx/pokemon/kingler/back.2bpp.lz.88e96d65 diff --git a/gfx/pics/kingler/back.png b/gfx/pokemon/kingler/back.png similarity index 100% rename from gfx/pics/kingler/back.png rename to gfx/pokemon/kingler/back.png diff --git a/gfx/pics/kingler/front.animated.2bpp.lz.35305199 b/gfx/pokemon/kingler/front.animated.2bpp.lz.35305199 similarity index 100% rename from gfx/pics/kingler/front.animated.2bpp.lz.35305199 rename to gfx/pokemon/kingler/front.animated.2bpp.lz.35305199 diff --git a/gfx/pics/kingler/front.png b/gfx/pokemon/kingler/front.png similarity index 100% rename from gfx/pics/kingler/front.png rename to gfx/pokemon/kingler/front.png diff --git a/gfx/pics/kingler/shiny.pal b/gfx/pokemon/kingler/shiny.pal similarity index 100% rename from gfx/pics/kingler/shiny.pal rename to gfx/pokemon/kingler/shiny.pal diff --git a/gfx/pics/koffing/anim0.asm b/gfx/pokemon/koffing/anim0.asm similarity index 100% rename from gfx/pics/koffing/anim0.asm rename to gfx/pokemon/koffing/anim0.asm diff --git a/gfx/pics/koffing/anim1.asm b/gfx/pokemon/koffing/anim1.asm similarity index 100% rename from gfx/pics/koffing/anim1.asm rename to gfx/pokemon/koffing/anim1.asm diff --git a/gfx/pics/koffing/back.2bpp.lz.8c0a2526 b/gfx/pokemon/koffing/back.2bpp.lz.8c0a2526 similarity index 100% rename from gfx/pics/koffing/back.2bpp.lz.8c0a2526 rename to gfx/pokemon/koffing/back.2bpp.lz.8c0a2526 diff --git a/gfx/pics/koffing/back.png b/gfx/pokemon/koffing/back.png similarity index 100% rename from gfx/pics/koffing/back.png rename to gfx/pokemon/koffing/back.png diff --git a/gfx/pics/koffing/front.animated.2bpp.lz.00044b3f b/gfx/pokemon/koffing/front.animated.2bpp.lz.00044b3f similarity index 100% rename from gfx/pics/koffing/front.animated.2bpp.lz.00044b3f rename to gfx/pokemon/koffing/front.animated.2bpp.lz.00044b3f diff --git a/gfx/pics/koffing/front.png b/gfx/pokemon/koffing/front.png similarity index 100% rename from gfx/pics/koffing/front.png rename to gfx/pokemon/koffing/front.png diff --git a/gfx/pics/koffing/shiny.pal b/gfx/pokemon/koffing/shiny.pal similarity index 100% rename from gfx/pics/koffing/shiny.pal rename to gfx/pokemon/koffing/shiny.pal diff --git a/gfx/pics/krabby/anim0.asm b/gfx/pokemon/krabby/anim0.asm similarity index 100% rename from gfx/pics/krabby/anim0.asm rename to gfx/pokemon/krabby/anim0.asm diff --git a/gfx/pics/krabby/anim1.asm b/gfx/pokemon/krabby/anim1.asm similarity index 100% rename from gfx/pics/krabby/anim1.asm rename to gfx/pokemon/krabby/anim1.asm diff --git a/gfx/pics/krabby/back.2bpp.lz.2bc2487b b/gfx/pokemon/krabby/back.2bpp.lz.2bc2487b similarity index 100% rename from gfx/pics/krabby/back.2bpp.lz.2bc2487b rename to gfx/pokemon/krabby/back.2bpp.lz.2bc2487b diff --git a/gfx/pics/krabby/back.png b/gfx/pokemon/krabby/back.png similarity index 100% rename from gfx/pics/krabby/back.png rename to gfx/pokemon/krabby/back.png diff --git a/gfx/pics/krabby/front.animated.2bpp.lz.39592514 b/gfx/pokemon/krabby/front.animated.2bpp.lz.39592514 similarity index 100% rename from gfx/pics/krabby/front.animated.2bpp.lz.39592514 rename to gfx/pokemon/krabby/front.animated.2bpp.lz.39592514 diff --git a/gfx/pics/krabby/front.png b/gfx/pokemon/krabby/front.png similarity index 100% rename from gfx/pics/krabby/front.png rename to gfx/pokemon/krabby/front.png diff --git a/gfx/pics/krabby/shiny.pal b/gfx/pokemon/krabby/shiny.pal similarity index 100% rename from gfx/pics/krabby/shiny.pal rename to gfx/pokemon/krabby/shiny.pal diff --git a/gfx/pics/lanturn/anim0.asm b/gfx/pokemon/lanturn/anim0.asm similarity index 100% rename from gfx/pics/lanturn/anim0.asm rename to gfx/pokemon/lanturn/anim0.asm diff --git a/gfx/pics/lanturn/anim1.asm b/gfx/pokemon/lanturn/anim1.asm similarity index 100% rename from gfx/pics/lanturn/anim1.asm rename to gfx/pokemon/lanturn/anim1.asm diff --git a/gfx/pics/lanturn/back.2bpp.lz.8e9c7c1a b/gfx/pokemon/lanturn/back.2bpp.lz.8e9c7c1a similarity index 100% rename from gfx/pics/lanturn/back.2bpp.lz.8e9c7c1a rename to gfx/pokemon/lanturn/back.2bpp.lz.8e9c7c1a diff --git a/gfx/pics/lanturn/back.png b/gfx/pokemon/lanturn/back.png similarity index 100% rename from gfx/pics/lanturn/back.png rename to gfx/pokemon/lanturn/back.png diff --git a/gfx/pics/lanturn/front.animated.2bpp.lz.1bfac161 b/gfx/pokemon/lanturn/front.animated.2bpp.lz.1bfac161 similarity index 100% rename from gfx/pics/lanturn/front.animated.2bpp.lz.1bfac161 rename to gfx/pokemon/lanturn/front.animated.2bpp.lz.1bfac161 diff --git a/gfx/pics/lanturn/front.png b/gfx/pokemon/lanturn/front.png similarity index 100% rename from gfx/pics/lanturn/front.png rename to gfx/pokemon/lanturn/front.png diff --git a/gfx/pics/lanturn/shiny.pal b/gfx/pokemon/lanturn/shiny.pal similarity index 100% rename from gfx/pics/lanturn/shiny.pal rename to gfx/pokemon/lanturn/shiny.pal diff --git a/gfx/pics/lapras/anim0.asm b/gfx/pokemon/lapras/anim0.asm similarity index 100% rename from gfx/pics/lapras/anim0.asm rename to gfx/pokemon/lapras/anim0.asm diff --git a/gfx/pics/lapras/anim1.asm b/gfx/pokemon/lapras/anim1.asm similarity index 100% rename from gfx/pics/lapras/anim1.asm rename to gfx/pokemon/lapras/anim1.asm diff --git a/gfx/pics/lapras/back.2bpp.lz.d09351a1 b/gfx/pokemon/lapras/back.2bpp.lz.d09351a1 similarity index 100% rename from gfx/pics/lapras/back.2bpp.lz.d09351a1 rename to gfx/pokemon/lapras/back.2bpp.lz.d09351a1 diff --git a/gfx/pics/lapras/back.png b/gfx/pokemon/lapras/back.png similarity index 100% rename from gfx/pics/lapras/back.png rename to gfx/pokemon/lapras/back.png diff --git a/gfx/pics/lapras/front.animated.2bpp.lz.8290ef8e b/gfx/pokemon/lapras/front.animated.2bpp.lz.8290ef8e similarity index 100% rename from gfx/pics/lapras/front.animated.2bpp.lz.8290ef8e rename to gfx/pokemon/lapras/front.animated.2bpp.lz.8290ef8e diff --git a/gfx/pics/lapras/front.png b/gfx/pokemon/lapras/front.png similarity index 100% rename from gfx/pics/lapras/front.png rename to gfx/pokemon/lapras/front.png diff --git a/gfx/pics/lapras/shiny.pal b/gfx/pokemon/lapras/shiny.pal similarity index 100% rename from gfx/pics/lapras/shiny.pal rename to gfx/pokemon/lapras/shiny.pal diff --git a/gfx/pics/larvitar/anim0.asm b/gfx/pokemon/larvitar/anim0.asm similarity index 100% rename from gfx/pics/larvitar/anim0.asm rename to gfx/pokemon/larvitar/anim0.asm diff --git a/gfx/pics/larvitar/anim1.asm b/gfx/pokemon/larvitar/anim1.asm similarity index 100% rename from gfx/pics/larvitar/anim1.asm rename to gfx/pokemon/larvitar/anim1.asm diff --git a/gfx/pics/larvitar/back.2bpp.lz.4b2ac395 b/gfx/pokemon/larvitar/back.2bpp.lz.4b2ac395 similarity index 100% rename from gfx/pics/larvitar/back.2bpp.lz.4b2ac395 rename to gfx/pokemon/larvitar/back.2bpp.lz.4b2ac395 diff --git a/gfx/pics/larvitar/back.png b/gfx/pokemon/larvitar/back.png similarity index 100% rename from gfx/pics/larvitar/back.png rename to gfx/pokemon/larvitar/back.png diff --git a/gfx/pics/larvitar/front.animated.2bpp.lz.83859c57 b/gfx/pokemon/larvitar/front.animated.2bpp.lz.83859c57 similarity index 100% rename from gfx/pics/larvitar/front.animated.2bpp.lz.83859c57 rename to gfx/pokemon/larvitar/front.animated.2bpp.lz.83859c57 diff --git a/gfx/pics/larvitar/front.png b/gfx/pokemon/larvitar/front.png similarity index 100% rename from gfx/pics/larvitar/front.png rename to gfx/pokemon/larvitar/front.png diff --git a/gfx/pics/larvitar/shiny.pal b/gfx/pokemon/larvitar/shiny.pal similarity index 100% rename from gfx/pics/larvitar/shiny.pal rename to gfx/pokemon/larvitar/shiny.pal diff --git a/gfx/pics/ledian/anim0.asm b/gfx/pokemon/ledian/anim0.asm similarity index 100% rename from gfx/pics/ledian/anim0.asm rename to gfx/pokemon/ledian/anim0.asm diff --git a/gfx/pics/ledian/anim1.asm b/gfx/pokemon/ledian/anim1.asm similarity index 100% rename from gfx/pics/ledian/anim1.asm rename to gfx/pokemon/ledian/anim1.asm diff --git a/gfx/pics/ledian/back.2bpp.lz.48657bbb b/gfx/pokemon/ledian/back.2bpp.lz.48657bbb similarity index 100% rename from gfx/pics/ledian/back.2bpp.lz.48657bbb rename to gfx/pokemon/ledian/back.2bpp.lz.48657bbb diff --git a/gfx/pics/ledian/back.png b/gfx/pokemon/ledian/back.png similarity index 100% rename from gfx/pics/ledian/back.png rename to gfx/pokemon/ledian/back.png diff --git a/gfx/pics/ledian/front.animated.2bpp.lz.83e819c3 b/gfx/pokemon/ledian/front.animated.2bpp.lz.83e819c3 similarity index 100% rename from gfx/pics/ledian/front.animated.2bpp.lz.83e819c3 rename to gfx/pokemon/ledian/front.animated.2bpp.lz.83e819c3 diff --git a/gfx/pics/ledian/front.png b/gfx/pokemon/ledian/front.png similarity index 100% rename from gfx/pics/ledian/front.png rename to gfx/pokemon/ledian/front.png diff --git a/gfx/pics/ledian/shiny.pal b/gfx/pokemon/ledian/shiny.pal similarity index 100% rename from gfx/pics/ledian/shiny.pal rename to gfx/pokemon/ledian/shiny.pal diff --git a/gfx/pics/ledyba/anim0.asm b/gfx/pokemon/ledyba/anim0.asm similarity index 100% rename from gfx/pics/ledyba/anim0.asm rename to gfx/pokemon/ledyba/anim0.asm diff --git a/gfx/pics/ledyba/anim1.asm b/gfx/pokemon/ledyba/anim1.asm similarity index 100% rename from gfx/pics/ledyba/anim1.asm rename to gfx/pokemon/ledyba/anim1.asm diff --git a/gfx/pics/ledyba/back.2bpp.lz.d50e8860 b/gfx/pokemon/ledyba/back.2bpp.lz.d50e8860 similarity index 100% rename from gfx/pics/ledyba/back.2bpp.lz.d50e8860 rename to gfx/pokemon/ledyba/back.2bpp.lz.d50e8860 diff --git a/gfx/pics/ledyba/back.png b/gfx/pokemon/ledyba/back.png similarity index 100% rename from gfx/pics/ledyba/back.png rename to gfx/pokemon/ledyba/back.png diff --git a/gfx/pics/ledyba/front.animated.2bpp.lz.1700dc27 b/gfx/pokemon/ledyba/front.animated.2bpp.lz.1700dc27 similarity index 100% rename from gfx/pics/ledyba/front.animated.2bpp.lz.1700dc27 rename to gfx/pokemon/ledyba/front.animated.2bpp.lz.1700dc27 diff --git a/gfx/pics/ledyba/front.png b/gfx/pokemon/ledyba/front.png similarity index 100% rename from gfx/pics/ledyba/front.png rename to gfx/pokemon/ledyba/front.png diff --git a/gfx/pics/ledyba/shiny.pal b/gfx/pokemon/ledyba/shiny.pal similarity index 100% rename from gfx/pics/ledyba/shiny.pal rename to gfx/pokemon/ledyba/shiny.pal diff --git a/gfx/pics/lickitung/anim0.asm b/gfx/pokemon/lickitung/anim0.asm similarity index 100% rename from gfx/pics/lickitung/anim0.asm rename to gfx/pokemon/lickitung/anim0.asm diff --git a/gfx/pics/lickitung/anim1.asm b/gfx/pokemon/lickitung/anim1.asm similarity index 100% rename from gfx/pics/lickitung/anim1.asm rename to gfx/pokemon/lickitung/anim1.asm diff --git a/gfx/pics/lickitung/back.2bpp.lz.a127e40b b/gfx/pokemon/lickitung/back.2bpp.lz.a127e40b similarity index 100% rename from gfx/pics/lickitung/back.2bpp.lz.a127e40b rename to gfx/pokemon/lickitung/back.2bpp.lz.a127e40b diff --git a/gfx/pics/lickitung/back.png b/gfx/pokemon/lickitung/back.png similarity index 100% rename from gfx/pics/lickitung/back.png rename to gfx/pokemon/lickitung/back.png diff --git a/gfx/pics/lickitung/front.animated.2bpp.lz.328a7c53 b/gfx/pokemon/lickitung/front.animated.2bpp.lz.328a7c53 similarity index 100% rename from gfx/pics/lickitung/front.animated.2bpp.lz.328a7c53 rename to gfx/pokemon/lickitung/front.animated.2bpp.lz.328a7c53 diff --git a/gfx/pics/lickitung/front.png b/gfx/pokemon/lickitung/front.png similarity index 100% rename from gfx/pics/lickitung/front.png rename to gfx/pokemon/lickitung/front.png diff --git a/gfx/pics/lickitung/shiny.pal b/gfx/pokemon/lickitung/shiny.pal similarity index 100% rename from gfx/pics/lickitung/shiny.pal rename to gfx/pokemon/lickitung/shiny.pal diff --git a/gfx/pics/lugia/anim0.asm b/gfx/pokemon/lugia/anim0.asm similarity index 100% rename from gfx/pics/lugia/anim0.asm rename to gfx/pokemon/lugia/anim0.asm diff --git a/gfx/pics/lugia/anim1.asm b/gfx/pokemon/lugia/anim1.asm similarity index 100% rename from gfx/pics/lugia/anim1.asm rename to gfx/pokemon/lugia/anim1.asm diff --git a/gfx/pics/lugia/back.2bpp.lz.ad953eb5 b/gfx/pokemon/lugia/back.2bpp.lz.ad953eb5 similarity index 100% rename from gfx/pics/lugia/back.2bpp.lz.ad953eb5 rename to gfx/pokemon/lugia/back.2bpp.lz.ad953eb5 diff --git a/gfx/pics/lugia/back.png b/gfx/pokemon/lugia/back.png similarity index 100% rename from gfx/pics/lugia/back.png rename to gfx/pokemon/lugia/back.png diff --git a/gfx/pics/lugia/front.animated.2bpp.lz.7293eddc b/gfx/pokemon/lugia/front.animated.2bpp.lz.7293eddc similarity index 100% rename from gfx/pics/lugia/front.animated.2bpp.lz.7293eddc rename to gfx/pokemon/lugia/front.animated.2bpp.lz.7293eddc diff --git a/gfx/pics/lugia/front.png b/gfx/pokemon/lugia/front.png similarity index 100% rename from gfx/pics/lugia/front.png rename to gfx/pokemon/lugia/front.png diff --git a/gfx/pics/lugia/shiny.pal b/gfx/pokemon/lugia/shiny.pal similarity index 100% rename from gfx/pics/lugia/shiny.pal rename to gfx/pokemon/lugia/shiny.pal diff --git a/gfx/pics/machamp/anim0.asm b/gfx/pokemon/machamp/anim0.asm similarity index 100% rename from gfx/pics/machamp/anim0.asm rename to gfx/pokemon/machamp/anim0.asm diff --git a/gfx/pics/machamp/anim1.asm b/gfx/pokemon/machamp/anim1.asm similarity index 100% rename from gfx/pics/machamp/anim1.asm rename to gfx/pokemon/machamp/anim1.asm diff --git a/gfx/pics/machamp/back.2bpp.lz.757f4c29 b/gfx/pokemon/machamp/back.2bpp.lz.757f4c29 similarity index 100% rename from gfx/pics/machamp/back.2bpp.lz.757f4c29 rename to gfx/pokemon/machamp/back.2bpp.lz.757f4c29 diff --git a/gfx/pics/machamp/back.png b/gfx/pokemon/machamp/back.png similarity index 100% rename from gfx/pics/machamp/back.png rename to gfx/pokemon/machamp/back.png diff --git a/gfx/pics/machamp/front.animated.2bpp.lz.2d408542 b/gfx/pokemon/machamp/front.animated.2bpp.lz.2d408542 similarity index 100% rename from gfx/pics/machamp/front.animated.2bpp.lz.2d408542 rename to gfx/pokemon/machamp/front.animated.2bpp.lz.2d408542 diff --git a/gfx/pics/machamp/front.png b/gfx/pokemon/machamp/front.png similarity index 100% rename from gfx/pics/machamp/front.png rename to gfx/pokemon/machamp/front.png diff --git a/gfx/pics/machamp/shiny.pal b/gfx/pokemon/machamp/shiny.pal similarity index 100% rename from gfx/pics/machamp/shiny.pal rename to gfx/pokemon/machamp/shiny.pal diff --git a/gfx/pics/machoke/anim0.asm b/gfx/pokemon/machoke/anim0.asm similarity index 100% rename from gfx/pics/machoke/anim0.asm rename to gfx/pokemon/machoke/anim0.asm diff --git a/gfx/pics/machoke/anim1.asm b/gfx/pokemon/machoke/anim1.asm similarity index 100% rename from gfx/pics/machoke/anim1.asm rename to gfx/pokemon/machoke/anim1.asm diff --git a/gfx/pics/machoke/back.2bpp.lz.2634245e b/gfx/pokemon/machoke/back.2bpp.lz.2634245e similarity index 100% rename from gfx/pics/machoke/back.2bpp.lz.2634245e rename to gfx/pokemon/machoke/back.2bpp.lz.2634245e diff --git a/gfx/pics/machoke/back.png b/gfx/pokemon/machoke/back.png similarity index 100% rename from gfx/pics/machoke/back.png rename to gfx/pokemon/machoke/back.png diff --git a/gfx/pics/machoke/front.animated.2bpp.lz.f38b95a7 b/gfx/pokemon/machoke/front.animated.2bpp.lz.f38b95a7 similarity index 100% rename from gfx/pics/machoke/front.animated.2bpp.lz.f38b95a7 rename to gfx/pokemon/machoke/front.animated.2bpp.lz.f38b95a7 diff --git a/gfx/pics/machoke/front.png b/gfx/pokemon/machoke/front.png similarity index 100% rename from gfx/pics/machoke/front.png rename to gfx/pokemon/machoke/front.png diff --git a/gfx/pics/machoke/shiny.pal b/gfx/pokemon/machoke/shiny.pal similarity index 100% rename from gfx/pics/machoke/shiny.pal rename to gfx/pokemon/machoke/shiny.pal diff --git a/gfx/pics/machop/anim0.asm b/gfx/pokemon/machop/anim0.asm similarity index 100% rename from gfx/pics/machop/anim0.asm rename to gfx/pokemon/machop/anim0.asm diff --git a/gfx/pics/machop/anim1.asm b/gfx/pokemon/machop/anim1.asm similarity index 100% rename from gfx/pics/machop/anim1.asm rename to gfx/pokemon/machop/anim1.asm diff --git a/gfx/pics/machop/back.2bpp.lz.bc17b50a b/gfx/pokemon/machop/back.2bpp.lz.bc17b50a similarity index 100% rename from gfx/pics/machop/back.2bpp.lz.bc17b50a rename to gfx/pokemon/machop/back.2bpp.lz.bc17b50a diff --git a/gfx/pics/machop/back.png b/gfx/pokemon/machop/back.png similarity index 100% rename from gfx/pics/machop/back.png rename to gfx/pokemon/machop/back.png diff --git a/gfx/pics/machop/front.animated.2bpp.lz.0fd8735f b/gfx/pokemon/machop/front.animated.2bpp.lz.0fd8735f similarity index 100% rename from gfx/pics/machop/front.animated.2bpp.lz.0fd8735f rename to gfx/pokemon/machop/front.animated.2bpp.lz.0fd8735f diff --git a/gfx/pics/machop/front.png b/gfx/pokemon/machop/front.png similarity index 100% rename from gfx/pics/machop/front.png rename to gfx/pokemon/machop/front.png diff --git a/gfx/pics/machop/shiny.pal b/gfx/pokemon/machop/shiny.pal similarity index 100% rename from gfx/pics/machop/shiny.pal rename to gfx/pokemon/machop/shiny.pal diff --git a/gfx/pics/magby/anim0.asm b/gfx/pokemon/magby/anim0.asm similarity index 100% rename from gfx/pics/magby/anim0.asm rename to gfx/pokemon/magby/anim0.asm diff --git a/gfx/pics/magby/anim1.asm b/gfx/pokemon/magby/anim1.asm similarity index 100% rename from gfx/pics/magby/anim1.asm rename to gfx/pokemon/magby/anim1.asm diff --git a/gfx/pics/magby/back.2bpp.lz.e50ccadb b/gfx/pokemon/magby/back.2bpp.lz.e50ccadb similarity index 100% rename from gfx/pics/magby/back.2bpp.lz.e50ccadb rename to gfx/pokemon/magby/back.2bpp.lz.e50ccadb diff --git a/gfx/pics/magby/back.png b/gfx/pokemon/magby/back.png similarity index 100% rename from gfx/pics/magby/back.png rename to gfx/pokemon/magby/back.png diff --git a/gfx/pics/magby/front.animated.2bpp.lz.172d0807 b/gfx/pokemon/magby/front.animated.2bpp.lz.172d0807 similarity index 100% rename from gfx/pics/magby/front.animated.2bpp.lz.172d0807 rename to gfx/pokemon/magby/front.animated.2bpp.lz.172d0807 diff --git a/gfx/pics/magby/front.png b/gfx/pokemon/magby/front.png similarity index 100% rename from gfx/pics/magby/front.png rename to gfx/pokemon/magby/front.png diff --git a/gfx/pics/magby/shiny.pal b/gfx/pokemon/magby/shiny.pal similarity index 100% rename from gfx/pics/magby/shiny.pal rename to gfx/pokemon/magby/shiny.pal diff --git a/gfx/pics/magcargo/anim0.asm b/gfx/pokemon/magcargo/anim0.asm similarity index 100% rename from gfx/pics/magcargo/anim0.asm rename to gfx/pokemon/magcargo/anim0.asm diff --git a/gfx/pics/magcargo/anim1.asm b/gfx/pokemon/magcargo/anim1.asm similarity index 100% rename from gfx/pics/magcargo/anim1.asm rename to gfx/pokemon/magcargo/anim1.asm diff --git a/gfx/pics/magcargo/back.2bpp.lz.56b096bc b/gfx/pokemon/magcargo/back.2bpp.lz.56b096bc similarity index 100% rename from gfx/pics/magcargo/back.2bpp.lz.56b096bc rename to gfx/pokemon/magcargo/back.2bpp.lz.56b096bc diff --git a/gfx/pics/magcargo/back.png b/gfx/pokemon/magcargo/back.png similarity index 100% rename from gfx/pics/magcargo/back.png rename to gfx/pokemon/magcargo/back.png diff --git a/gfx/pics/magcargo/front.animated.2bpp.lz.53a425f4 b/gfx/pokemon/magcargo/front.animated.2bpp.lz.53a425f4 similarity index 100% rename from gfx/pics/magcargo/front.animated.2bpp.lz.53a425f4 rename to gfx/pokemon/magcargo/front.animated.2bpp.lz.53a425f4 diff --git a/gfx/pics/magcargo/front.png b/gfx/pokemon/magcargo/front.png similarity index 100% rename from gfx/pics/magcargo/front.png rename to gfx/pokemon/magcargo/front.png diff --git a/gfx/pics/magcargo/shiny.pal b/gfx/pokemon/magcargo/shiny.pal similarity index 100% rename from gfx/pics/magcargo/shiny.pal rename to gfx/pokemon/magcargo/shiny.pal diff --git a/gfx/pics/magikarp/anim0.asm b/gfx/pokemon/magikarp/anim0.asm similarity index 100% rename from gfx/pics/magikarp/anim0.asm rename to gfx/pokemon/magikarp/anim0.asm diff --git a/gfx/pics/magikarp/anim1.asm b/gfx/pokemon/magikarp/anim1.asm similarity index 100% rename from gfx/pics/magikarp/anim1.asm rename to gfx/pokemon/magikarp/anim1.asm diff --git a/gfx/pics/magikarp/back.2bpp.lz.7f25810a b/gfx/pokemon/magikarp/back.2bpp.lz.7f25810a similarity index 100% rename from gfx/pics/magikarp/back.2bpp.lz.7f25810a rename to gfx/pokemon/magikarp/back.2bpp.lz.7f25810a diff --git a/gfx/pics/magikarp/back.png b/gfx/pokemon/magikarp/back.png similarity index 100% rename from gfx/pics/magikarp/back.png rename to gfx/pokemon/magikarp/back.png diff --git a/gfx/pics/magikarp/front.animated.2bpp.lz.031ee449 b/gfx/pokemon/magikarp/front.animated.2bpp.lz.031ee449 similarity index 100% rename from gfx/pics/magikarp/front.animated.2bpp.lz.031ee449 rename to gfx/pokemon/magikarp/front.animated.2bpp.lz.031ee449 diff --git a/gfx/pics/magikarp/front.png b/gfx/pokemon/magikarp/front.png similarity index 100% rename from gfx/pics/magikarp/front.png rename to gfx/pokemon/magikarp/front.png diff --git a/gfx/pics/magikarp/shiny.pal b/gfx/pokemon/magikarp/shiny.pal similarity index 100% rename from gfx/pics/magikarp/shiny.pal rename to gfx/pokemon/magikarp/shiny.pal diff --git a/gfx/pics/magmar/anim0.asm b/gfx/pokemon/magmar/anim0.asm similarity index 100% rename from gfx/pics/magmar/anim0.asm rename to gfx/pokemon/magmar/anim0.asm diff --git a/gfx/pics/magmar/anim1.asm b/gfx/pokemon/magmar/anim1.asm similarity index 100% rename from gfx/pics/magmar/anim1.asm rename to gfx/pokemon/magmar/anim1.asm diff --git a/gfx/pics/magmar/back.2bpp.lz.6916c87b b/gfx/pokemon/magmar/back.2bpp.lz.6916c87b similarity index 100% rename from gfx/pics/magmar/back.2bpp.lz.6916c87b rename to gfx/pokemon/magmar/back.2bpp.lz.6916c87b diff --git a/gfx/pics/magmar/back.png b/gfx/pokemon/magmar/back.png similarity index 100% rename from gfx/pics/magmar/back.png rename to gfx/pokemon/magmar/back.png diff --git a/gfx/pics/magmar/front.animated.2bpp.lz.0048e21c b/gfx/pokemon/magmar/front.animated.2bpp.lz.0048e21c similarity index 100% rename from gfx/pics/magmar/front.animated.2bpp.lz.0048e21c rename to gfx/pokemon/magmar/front.animated.2bpp.lz.0048e21c diff --git a/gfx/pics/magmar/front.png b/gfx/pokemon/magmar/front.png similarity index 100% rename from gfx/pics/magmar/front.png rename to gfx/pokemon/magmar/front.png diff --git a/gfx/pics/magmar/shiny.pal b/gfx/pokemon/magmar/shiny.pal similarity index 100% rename from gfx/pics/magmar/shiny.pal rename to gfx/pokemon/magmar/shiny.pal diff --git a/gfx/pics/magnemite/anim0.asm b/gfx/pokemon/magnemite/anim0.asm similarity index 100% rename from gfx/pics/magnemite/anim0.asm rename to gfx/pokemon/magnemite/anim0.asm diff --git a/gfx/pics/magnemite/anim1.asm b/gfx/pokemon/magnemite/anim1.asm similarity index 100% rename from gfx/pics/magnemite/anim1.asm rename to gfx/pokemon/magnemite/anim1.asm diff --git a/gfx/pics/magnemite/back.2bpp.lz.e00bd515 b/gfx/pokemon/magnemite/back.2bpp.lz.e00bd515 similarity index 100% rename from gfx/pics/magnemite/back.2bpp.lz.e00bd515 rename to gfx/pokemon/magnemite/back.2bpp.lz.e00bd515 diff --git a/gfx/pics/magnemite/back.png b/gfx/pokemon/magnemite/back.png similarity index 100% rename from gfx/pics/magnemite/back.png rename to gfx/pokemon/magnemite/back.png diff --git a/gfx/pics/magnemite/front.animated.2bpp.lz.e4b07135 b/gfx/pokemon/magnemite/front.animated.2bpp.lz.e4b07135 similarity index 100% rename from gfx/pics/magnemite/front.animated.2bpp.lz.e4b07135 rename to gfx/pokemon/magnemite/front.animated.2bpp.lz.e4b07135 diff --git a/gfx/pics/magnemite/front.png b/gfx/pokemon/magnemite/front.png similarity index 100% rename from gfx/pics/magnemite/front.png rename to gfx/pokemon/magnemite/front.png diff --git a/gfx/pics/magnemite/shiny.pal b/gfx/pokemon/magnemite/shiny.pal similarity index 100% rename from gfx/pics/magnemite/shiny.pal rename to gfx/pokemon/magnemite/shiny.pal diff --git a/gfx/pics/magneton/anim0.asm b/gfx/pokemon/magneton/anim0.asm similarity index 100% rename from gfx/pics/magneton/anim0.asm rename to gfx/pokemon/magneton/anim0.asm diff --git a/gfx/pics/magneton/anim1.asm b/gfx/pokemon/magneton/anim1.asm similarity index 100% rename from gfx/pics/magneton/anim1.asm rename to gfx/pokemon/magneton/anim1.asm diff --git a/gfx/pics/magneton/back.2bpp.lz.f7a7089b b/gfx/pokemon/magneton/back.2bpp.lz.f7a7089b similarity index 100% rename from gfx/pics/magneton/back.2bpp.lz.f7a7089b rename to gfx/pokemon/magneton/back.2bpp.lz.f7a7089b diff --git a/gfx/pics/magneton/back.png b/gfx/pokemon/magneton/back.png similarity index 100% rename from gfx/pics/magneton/back.png rename to gfx/pokemon/magneton/back.png diff --git a/gfx/pics/magneton/front.animated.2bpp.lz.cd3b65a6 b/gfx/pokemon/magneton/front.animated.2bpp.lz.cd3b65a6 similarity index 100% rename from gfx/pics/magneton/front.animated.2bpp.lz.cd3b65a6 rename to gfx/pokemon/magneton/front.animated.2bpp.lz.cd3b65a6 diff --git a/gfx/pics/magneton/front.png b/gfx/pokemon/magneton/front.png similarity index 100% rename from gfx/pics/magneton/front.png rename to gfx/pokemon/magneton/front.png diff --git a/gfx/pics/magneton/shiny.pal b/gfx/pokemon/magneton/shiny.pal similarity index 100% rename from gfx/pics/magneton/shiny.pal rename to gfx/pokemon/magneton/shiny.pal diff --git a/gfx/pics/mankey/anim0.asm b/gfx/pokemon/mankey/anim0.asm similarity index 100% rename from gfx/pics/mankey/anim0.asm rename to gfx/pokemon/mankey/anim0.asm diff --git a/gfx/pics/mankey/anim1.asm b/gfx/pokemon/mankey/anim1.asm similarity index 100% rename from gfx/pics/mankey/anim1.asm rename to gfx/pokemon/mankey/anim1.asm diff --git a/gfx/pics/mankey/back.2bpp.lz.42cb1b61 b/gfx/pokemon/mankey/back.2bpp.lz.42cb1b61 similarity index 100% rename from gfx/pics/mankey/back.2bpp.lz.42cb1b61 rename to gfx/pokemon/mankey/back.2bpp.lz.42cb1b61 diff --git a/gfx/pics/mankey/back.png b/gfx/pokemon/mankey/back.png similarity index 100% rename from gfx/pics/mankey/back.png rename to gfx/pokemon/mankey/back.png diff --git a/gfx/pics/mankey/front.animated.2bpp.lz.48eac19a b/gfx/pokemon/mankey/front.animated.2bpp.lz.48eac19a similarity index 100% rename from gfx/pics/mankey/front.animated.2bpp.lz.48eac19a rename to gfx/pokemon/mankey/front.animated.2bpp.lz.48eac19a diff --git a/gfx/pics/mankey/front.png b/gfx/pokemon/mankey/front.png similarity index 100% rename from gfx/pics/mankey/front.png rename to gfx/pokemon/mankey/front.png diff --git a/gfx/pics/mankey/shiny.pal b/gfx/pokemon/mankey/shiny.pal similarity index 100% rename from gfx/pics/mankey/shiny.pal rename to gfx/pokemon/mankey/shiny.pal diff --git a/gfx/pics/mantine/anim0.asm b/gfx/pokemon/mantine/anim0.asm similarity index 100% rename from gfx/pics/mantine/anim0.asm rename to gfx/pokemon/mantine/anim0.asm diff --git a/gfx/pics/mantine/anim1.asm b/gfx/pokemon/mantine/anim1.asm similarity index 100% rename from gfx/pics/mantine/anim1.asm rename to gfx/pokemon/mantine/anim1.asm diff --git a/gfx/pics/mantine/back.2bpp.lz.1320b7f3 b/gfx/pokemon/mantine/back.2bpp.lz.1320b7f3 similarity index 100% rename from gfx/pics/mantine/back.2bpp.lz.1320b7f3 rename to gfx/pokemon/mantine/back.2bpp.lz.1320b7f3 diff --git a/gfx/pics/mantine/back.png b/gfx/pokemon/mantine/back.png similarity index 100% rename from gfx/pics/mantine/back.png rename to gfx/pokemon/mantine/back.png diff --git a/gfx/pics/mantine/front.animated.2bpp.lz.9eb40d04 b/gfx/pokemon/mantine/front.animated.2bpp.lz.9eb40d04 similarity index 100% rename from gfx/pics/mantine/front.animated.2bpp.lz.9eb40d04 rename to gfx/pokemon/mantine/front.animated.2bpp.lz.9eb40d04 diff --git a/gfx/pics/mantine/front.png b/gfx/pokemon/mantine/front.png similarity index 100% rename from gfx/pics/mantine/front.png rename to gfx/pokemon/mantine/front.png diff --git a/gfx/pics/mantine/shiny.pal b/gfx/pokemon/mantine/shiny.pal similarity index 100% rename from gfx/pics/mantine/shiny.pal rename to gfx/pokemon/mantine/shiny.pal diff --git a/gfx/pics/mareep/anim0.asm b/gfx/pokemon/mareep/anim0.asm similarity index 100% rename from gfx/pics/mareep/anim0.asm rename to gfx/pokemon/mareep/anim0.asm diff --git a/gfx/pics/mareep/anim1.asm b/gfx/pokemon/mareep/anim1.asm similarity index 100% rename from gfx/pics/mareep/anim1.asm rename to gfx/pokemon/mareep/anim1.asm diff --git a/gfx/pics/mareep/back.2bpp.lz.b9bdc89c b/gfx/pokemon/mareep/back.2bpp.lz.b9bdc89c similarity index 100% rename from gfx/pics/mareep/back.2bpp.lz.b9bdc89c rename to gfx/pokemon/mareep/back.2bpp.lz.b9bdc89c diff --git a/gfx/pics/mareep/back.png b/gfx/pokemon/mareep/back.png similarity index 100% rename from gfx/pics/mareep/back.png rename to gfx/pokemon/mareep/back.png diff --git a/gfx/pics/mareep/front.animated.2bpp.lz.f660483d b/gfx/pokemon/mareep/front.animated.2bpp.lz.f660483d similarity index 100% rename from gfx/pics/mareep/front.animated.2bpp.lz.f660483d rename to gfx/pokemon/mareep/front.animated.2bpp.lz.f660483d diff --git a/gfx/pics/mareep/front.png b/gfx/pokemon/mareep/front.png similarity index 100% rename from gfx/pics/mareep/front.png rename to gfx/pokemon/mareep/front.png diff --git a/gfx/pics/mareep/shiny.pal b/gfx/pokemon/mareep/shiny.pal similarity index 100% rename from gfx/pics/mareep/shiny.pal rename to gfx/pokemon/mareep/shiny.pal diff --git a/gfx/pics/marill/anim0.asm b/gfx/pokemon/marill/anim0.asm similarity index 100% rename from gfx/pics/marill/anim0.asm rename to gfx/pokemon/marill/anim0.asm diff --git a/gfx/pics/marill/anim1.asm b/gfx/pokemon/marill/anim1.asm similarity index 100% rename from gfx/pics/marill/anim1.asm rename to gfx/pokemon/marill/anim1.asm diff --git a/gfx/pics/marill/back.2bpp.lz.87e2be16 b/gfx/pokemon/marill/back.2bpp.lz.87e2be16 similarity index 100% rename from gfx/pics/marill/back.2bpp.lz.87e2be16 rename to gfx/pokemon/marill/back.2bpp.lz.87e2be16 diff --git a/gfx/pics/marill/back.png b/gfx/pokemon/marill/back.png similarity index 100% rename from gfx/pics/marill/back.png rename to gfx/pokemon/marill/back.png diff --git a/gfx/pics/marill/front.animated.2bpp.lz.7f742686 b/gfx/pokemon/marill/front.animated.2bpp.lz.7f742686 similarity index 100% rename from gfx/pics/marill/front.animated.2bpp.lz.7f742686 rename to gfx/pokemon/marill/front.animated.2bpp.lz.7f742686 diff --git a/gfx/pics/marill/front.png b/gfx/pokemon/marill/front.png similarity index 100% rename from gfx/pics/marill/front.png rename to gfx/pokemon/marill/front.png diff --git a/gfx/pics/marill/shiny.pal b/gfx/pokemon/marill/shiny.pal similarity index 100% rename from gfx/pics/marill/shiny.pal rename to gfx/pokemon/marill/shiny.pal diff --git a/gfx/pics/marowak/anim0.asm b/gfx/pokemon/marowak/anim0.asm similarity index 100% rename from gfx/pics/marowak/anim0.asm rename to gfx/pokemon/marowak/anim0.asm diff --git a/gfx/pics/marowak/anim1.asm b/gfx/pokemon/marowak/anim1.asm similarity index 100% rename from gfx/pics/marowak/anim1.asm rename to gfx/pokemon/marowak/anim1.asm diff --git a/gfx/pics/marowak/back.2bpp.lz.055ba40e b/gfx/pokemon/marowak/back.2bpp.lz.055ba40e similarity index 100% rename from gfx/pics/marowak/back.2bpp.lz.055ba40e rename to gfx/pokemon/marowak/back.2bpp.lz.055ba40e diff --git a/gfx/pics/marowak/back.png b/gfx/pokemon/marowak/back.png similarity index 100% rename from gfx/pics/marowak/back.png rename to gfx/pokemon/marowak/back.png diff --git a/gfx/pics/marowak/front.animated.2bpp.lz.ef1553a0 b/gfx/pokemon/marowak/front.animated.2bpp.lz.ef1553a0 similarity index 100% rename from gfx/pics/marowak/front.animated.2bpp.lz.ef1553a0 rename to gfx/pokemon/marowak/front.animated.2bpp.lz.ef1553a0 diff --git a/gfx/pics/marowak/front.png b/gfx/pokemon/marowak/front.png similarity index 100% rename from gfx/pics/marowak/front.png rename to gfx/pokemon/marowak/front.png diff --git a/gfx/pics/marowak/shiny.pal b/gfx/pokemon/marowak/shiny.pal similarity index 100% rename from gfx/pics/marowak/shiny.pal rename to gfx/pokemon/marowak/shiny.pal diff --git a/gfx/pics/meganium/anim0.asm b/gfx/pokemon/meganium/anim0.asm similarity index 100% rename from gfx/pics/meganium/anim0.asm rename to gfx/pokemon/meganium/anim0.asm diff --git a/gfx/pics/meganium/anim1.asm b/gfx/pokemon/meganium/anim1.asm similarity index 100% rename from gfx/pics/meganium/anim1.asm rename to gfx/pokemon/meganium/anim1.asm diff --git a/gfx/pics/meganium/back.2bpp.lz.d25a5edb b/gfx/pokemon/meganium/back.2bpp.lz.d25a5edb similarity index 100% rename from gfx/pics/meganium/back.2bpp.lz.d25a5edb rename to gfx/pokemon/meganium/back.2bpp.lz.d25a5edb diff --git a/gfx/pics/meganium/back.png b/gfx/pokemon/meganium/back.png similarity index 100% rename from gfx/pics/meganium/back.png rename to gfx/pokemon/meganium/back.png diff --git a/gfx/pics/meganium/front.animated.2bpp.lz.fe0b9df4 b/gfx/pokemon/meganium/front.animated.2bpp.lz.fe0b9df4 similarity index 100% rename from gfx/pics/meganium/front.animated.2bpp.lz.fe0b9df4 rename to gfx/pokemon/meganium/front.animated.2bpp.lz.fe0b9df4 diff --git a/gfx/pics/meganium/front.png b/gfx/pokemon/meganium/front.png similarity index 100% rename from gfx/pics/meganium/front.png rename to gfx/pokemon/meganium/front.png diff --git a/gfx/pics/meganium/shiny.pal b/gfx/pokemon/meganium/shiny.pal similarity index 100% rename from gfx/pics/meganium/shiny.pal rename to gfx/pokemon/meganium/shiny.pal diff --git a/gfx/pics/meowth/anim0.asm b/gfx/pokemon/meowth/anim0.asm similarity index 100% rename from gfx/pics/meowth/anim0.asm rename to gfx/pokemon/meowth/anim0.asm diff --git a/gfx/pics/meowth/anim1.asm b/gfx/pokemon/meowth/anim1.asm similarity index 100% rename from gfx/pics/meowth/anim1.asm rename to gfx/pokemon/meowth/anim1.asm diff --git a/gfx/pics/meowth/back.2bpp.lz.4196bd91 b/gfx/pokemon/meowth/back.2bpp.lz.4196bd91 similarity index 100% rename from gfx/pics/meowth/back.2bpp.lz.4196bd91 rename to gfx/pokemon/meowth/back.2bpp.lz.4196bd91 diff --git a/gfx/pics/meowth/back.png b/gfx/pokemon/meowth/back.png similarity index 100% rename from gfx/pics/meowth/back.png rename to gfx/pokemon/meowth/back.png diff --git a/gfx/pics/meowth/front.animated.2bpp.lz.144f12f0 b/gfx/pokemon/meowth/front.animated.2bpp.lz.144f12f0 similarity index 100% rename from gfx/pics/meowth/front.animated.2bpp.lz.144f12f0 rename to gfx/pokemon/meowth/front.animated.2bpp.lz.144f12f0 diff --git a/gfx/pics/meowth/front.png b/gfx/pokemon/meowth/front.png similarity index 100% rename from gfx/pics/meowth/front.png rename to gfx/pokemon/meowth/front.png diff --git a/gfx/pics/meowth/shiny.pal b/gfx/pokemon/meowth/shiny.pal similarity index 100% rename from gfx/pics/meowth/shiny.pal rename to gfx/pokemon/meowth/shiny.pal diff --git a/gfx/pics/metapod/anim0.asm b/gfx/pokemon/metapod/anim0.asm similarity index 100% rename from gfx/pics/metapod/anim0.asm rename to gfx/pokemon/metapod/anim0.asm diff --git a/gfx/pics/metapod/anim1.asm b/gfx/pokemon/metapod/anim1.asm similarity index 100% rename from gfx/pics/metapod/anim1.asm rename to gfx/pokemon/metapod/anim1.asm diff --git a/gfx/pics/metapod/back.2bpp.lz.b580afc8 b/gfx/pokemon/metapod/back.2bpp.lz.b580afc8 similarity index 100% rename from gfx/pics/metapod/back.2bpp.lz.b580afc8 rename to gfx/pokemon/metapod/back.2bpp.lz.b580afc8 diff --git a/gfx/pics/metapod/back.png b/gfx/pokemon/metapod/back.png similarity index 100% rename from gfx/pics/metapod/back.png rename to gfx/pokemon/metapod/back.png diff --git a/gfx/pics/metapod/front.animated.2bpp.lz.5025baa2 b/gfx/pokemon/metapod/front.animated.2bpp.lz.5025baa2 similarity index 100% rename from gfx/pics/metapod/front.animated.2bpp.lz.5025baa2 rename to gfx/pokemon/metapod/front.animated.2bpp.lz.5025baa2 diff --git a/gfx/pics/metapod/front.png b/gfx/pokemon/metapod/front.png similarity index 100% rename from gfx/pics/metapod/front.png rename to gfx/pokemon/metapod/front.png diff --git a/gfx/pics/metapod/shiny.pal b/gfx/pokemon/metapod/shiny.pal similarity index 100% rename from gfx/pics/metapod/shiny.pal rename to gfx/pokemon/metapod/shiny.pal diff --git a/gfx/pics/mew/anim0.asm b/gfx/pokemon/mew/anim0.asm similarity index 100% rename from gfx/pics/mew/anim0.asm rename to gfx/pokemon/mew/anim0.asm diff --git a/gfx/pics/mew/anim1.asm b/gfx/pokemon/mew/anim1.asm similarity index 100% rename from gfx/pics/mew/anim1.asm rename to gfx/pokemon/mew/anim1.asm diff --git a/gfx/pics/mew/back.2bpp.lz.9947d6eb b/gfx/pokemon/mew/back.2bpp.lz.9947d6eb similarity index 100% rename from gfx/pics/mew/back.2bpp.lz.9947d6eb rename to gfx/pokemon/mew/back.2bpp.lz.9947d6eb diff --git a/gfx/pics/mew/back.png b/gfx/pokemon/mew/back.png similarity index 100% rename from gfx/pics/mew/back.png rename to gfx/pokemon/mew/back.png diff --git a/gfx/pics/mew/front.animated.2bpp.lz.b6da9713 b/gfx/pokemon/mew/front.animated.2bpp.lz.b6da9713 similarity index 100% rename from gfx/pics/mew/front.animated.2bpp.lz.b6da9713 rename to gfx/pokemon/mew/front.animated.2bpp.lz.b6da9713 diff --git a/gfx/pics/mew/front.png b/gfx/pokemon/mew/front.png similarity index 100% rename from gfx/pics/mew/front.png rename to gfx/pokemon/mew/front.png diff --git a/gfx/pics/mew/shiny.pal b/gfx/pokemon/mew/shiny.pal similarity index 100% rename from gfx/pics/mew/shiny.pal rename to gfx/pokemon/mew/shiny.pal diff --git a/gfx/pics/mewtwo/anim0.asm b/gfx/pokemon/mewtwo/anim0.asm similarity index 100% rename from gfx/pics/mewtwo/anim0.asm rename to gfx/pokemon/mewtwo/anim0.asm diff --git a/gfx/pics/mewtwo/anim1.asm b/gfx/pokemon/mewtwo/anim1.asm similarity index 100% rename from gfx/pics/mewtwo/anim1.asm rename to gfx/pokemon/mewtwo/anim1.asm diff --git a/gfx/pics/mewtwo/back.2bpp.lz.a7d2c077 b/gfx/pokemon/mewtwo/back.2bpp.lz.a7d2c077 similarity index 100% rename from gfx/pics/mewtwo/back.2bpp.lz.a7d2c077 rename to gfx/pokemon/mewtwo/back.2bpp.lz.a7d2c077 diff --git a/gfx/pics/mewtwo/back.png b/gfx/pokemon/mewtwo/back.png similarity index 100% rename from gfx/pics/mewtwo/back.png rename to gfx/pokemon/mewtwo/back.png diff --git a/gfx/pics/mewtwo/front.animated.2bpp.lz.45e8b40d b/gfx/pokemon/mewtwo/front.animated.2bpp.lz.45e8b40d similarity index 100% rename from gfx/pics/mewtwo/front.animated.2bpp.lz.45e8b40d rename to gfx/pokemon/mewtwo/front.animated.2bpp.lz.45e8b40d diff --git a/gfx/pics/mewtwo/front.png b/gfx/pokemon/mewtwo/front.png similarity index 100% rename from gfx/pics/mewtwo/front.png rename to gfx/pokemon/mewtwo/front.png diff --git a/gfx/pics/mewtwo/shiny.pal b/gfx/pokemon/mewtwo/shiny.pal similarity index 100% rename from gfx/pics/mewtwo/shiny.pal rename to gfx/pokemon/mewtwo/shiny.pal diff --git a/gfx/pics/miltank/anim0.asm b/gfx/pokemon/miltank/anim0.asm similarity index 100% rename from gfx/pics/miltank/anim0.asm rename to gfx/pokemon/miltank/anim0.asm diff --git a/gfx/pics/miltank/anim1.asm b/gfx/pokemon/miltank/anim1.asm similarity index 100% rename from gfx/pics/miltank/anim1.asm rename to gfx/pokemon/miltank/anim1.asm diff --git a/gfx/pics/miltank/back.2bpp.lz.b7787e72 b/gfx/pokemon/miltank/back.2bpp.lz.b7787e72 similarity index 100% rename from gfx/pics/miltank/back.2bpp.lz.b7787e72 rename to gfx/pokemon/miltank/back.2bpp.lz.b7787e72 diff --git a/gfx/pics/miltank/back.png b/gfx/pokemon/miltank/back.png similarity index 100% rename from gfx/pics/miltank/back.png rename to gfx/pokemon/miltank/back.png diff --git a/gfx/pics/miltank/front.animated.2bpp.lz.91da7c3b b/gfx/pokemon/miltank/front.animated.2bpp.lz.91da7c3b similarity index 100% rename from gfx/pics/miltank/front.animated.2bpp.lz.91da7c3b rename to gfx/pokemon/miltank/front.animated.2bpp.lz.91da7c3b diff --git a/gfx/pics/miltank/front.png b/gfx/pokemon/miltank/front.png similarity index 100% rename from gfx/pics/miltank/front.png rename to gfx/pokemon/miltank/front.png diff --git a/gfx/pics/miltank/shiny.pal b/gfx/pokemon/miltank/shiny.pal similarity index 100% rename from gfx/pics/miltank/shiny.pal rename to gfx/pokemon/miltank/shiny.pal diff --git a/gfx/pics/misdreavus/anim0.asm b/gfx/pokemon/misdreavus/anim0.asm similarity index 100% rename from gfx/pics/misdreavus/anim0.asm rename to gfx/pokemon/misdreavus/anim0.asm diff --git a/gfx/pics/misdreavus/anim1.asm b/gfx/pokemon/misdreavus/anim1.asm similarity index 100% rename from gfx/pics/misdreavus/anim1.asm rename to gfx/pokemon/misdreavus/anim1.asm diff --git a/gfx/pics/misdreavus/back.2bpp.lz.8bdebfce b/gfx/pokemon/misdreavus/back.2bpp.lz.8bdebfce similarity index 100% rename from gfx/pics/misdreavus/back.2bpp.lz.8bdebfce rename to gfx/pokemon/misdreavus/back.2bpp.lz.8bdebfce diff --git a/gfx/pics/misdreavus/back.png b/gfx/pokemon/misdreavus/back.png similarity index 100% rename from gfx/pics/misdreavus/back.png rename to gfx/pokemon/misdreavus/back.png diff --git a/gfx/pics/misdreavus/front.animated.2bpp.lz.5f73baa2 b/gfx/pokemon/misdreavus/front.animated.2bpp.lz.5f73baa2 similarity index 100% rename from gfx/pics/misdreavus/front.animated.2bpp.lz.5f73baa2 rename to gfx/pokemon/misdreavus/front.animated.2bpp.lz.5f73baa2 diff --git a/gfx/pics/misdreavus/front.png b/gfx/pokemon/misdreavus/front.png similarity index 100% rename from gfx/pics/misdreavus/front.png rename to gfx/pokemon/misdreavus/front.png diff --git a/gfx/pics/misdreavus/shiny.pal b/gfx/pokemon/misdreavus/shiny.pal similarity index 100% rename from gfx/pics/misdreavus/shiny.pal rename to gfx/pokemon/misdreavus/shiny.pal diff --git a/gfx/pics/moltres/anim0.asm b/gfx/pokemon/moltres/anim0.asm similarity index 100% rename from gfx/pics/moltres/anim0.asm rename to gfx/pokemon/moltres/anim0.asm diff --git a/gfx/pics/moltres/anim1.asm b/gfx/pokemon/moltres/anim1.asm similarity index 100% rename from gfx/pics/moltres/anim1.asm rename to gfx/pokemon/moltres/anim1.asm diff --git a/gfx/pics/moltres/back.2bpp.lz.356242c8 b/gfx/pokemon/moltres/back.2bpp.lz.356242c8 similarity index 100% rename from gfx/pics/moltres/back.2bpp.lz.356242c8 rename to gfx/pokemon/moltres/back.2bpp.lz.356242c8 diff --git a/gfx/pics/moltres/back.png b/gfx/pokemon/moltres/back.png similarity index 100% rename from gfx/pics/moltres/back.png rename to gfx/pokemon/moltres/back.png diff --git a/gfx/pics/moltres/front.animated.2bpp.lz.281bc0ec b/gfx/pokemon/moltres/front.animated.2bpp.lz.281bc0ec similarity index 100% rename from gfx/pics/moltres/front.animated.2bpp.lz.281bc0ec rename to gfx/pokemon/moltres/front.animated.2bpp.lz.281bc0ec diff --git a/gfx/pics/moltres/front.png b/gfx/pokemon/moltres/front.png similarity index 100% rename from gfx/pics/moltres/front.png rename to gfx/pokemon/moltres/front.png diff --git a/gfx/pics/moltres/shiny.pal b/gfx/pokemon/moltres/shiny.pal similarity index 100% rename from gfx/pics/moltres/shiny.pal rename to gfx/pokemon/moltres/shiny.pal diff --git a/gfx/pics/mr__mime/anim0.asm b/gfx/pokemon/mr__mime/anim0.asm similarity index 100% rename from gfx/pics/mr__mime/anim0.asm rename to gfx/pokemon/mr__mime/anim0.asm diff --git a/gfx/pics/mr__mime/anim1.asm b/gfx/pokemon/mr__mime/anim1.asm similarity index 100% rename from gfx/pics/mr__mime/anim1.asm rename to gfx/pokemon/mr__mime/anim1.asm diff --git a/gfx/pics/mr__mime/back.2bpp.lz.0fb88006 b/gfx/pokemon/mr__mime/back.2bpp.lz.0fb88006 similarity index 100% rename from gfx/pics/mr__mime/back.2bpp.lz.0fb88006 rename to gfx/pokemon/mr__mime/back.2bpp.lz.0fb88006 diff --git a/gfx/pics/mr__mime/back.png b/gfx/pokemon/mr__mime/back.png similarity index 100% rename from gfx/pics/mr__mime/back.png rename to gfx/pokemon/mr__mime/back.png diff --git a/gfx/pics/mr__mime/front.animated.2bpp.lz.f948d1b8 b/gfx/pokemon/mr__mime/front.animated.2bpp.lz.f948d1b8 similarity index 100% rename from gfx/pics/mr__mime/front.animated.2bpp.lz.f948d1b8 rename to gfx/pokemon/mr__mime/front.animated.2bpp.lz.f948d1b8 diff --git a/gfx/pics/mr__mime/front.png b/gfx/pokemon/mr__mime/front.png similarity index 100% rename from gfx/pics/mr__mime/front.png rename to gfx/pokemon/mr__mime/front.png diff --git a/gfx/pics/mr__mime/shiny.pal b/gfx/pokemon/mr__mime/shiny.pal similarity index 100% rename from gfx/pics/mr__mime/shiny.pal rename to gfx/pokemon/mr__mime/shiny.pal diff --git a/gfx/pics/muk/anim0.asm b/gfx/pokemon/muk/anim0.asm similarity index 100% rename from gfx/pics/muk/anim0.asm rename to gfx/pokemon/muk/anim0.asm diff --git a/gfx/pics/muk/anim1.asm b/gfx/pokemon/muk/anim1.asm similarity index 100% rename from gfx/pics/muk/anim1.asm rename to gfx/pokemon/muk/anim1.asm diff --git a/gfx/pics/muk/back.2bpp.lz.a1f2f370 b/gfx/pokemon/muk/back.2bpp.lz.a1f2f370 similarity index 100% rename from gfx/pics/muk/back.2bpp.lz.a1f2f370 rename to gfx/pokemon/muk/back.2bpp.lz.a1f2f370 diff --git a/gfx/pics/muk/back.png b/gfx/pokemon/muk/back.png similarity index 100% rename from gfx/pics/muk/back.png rename to gfx/pokemon/muk/back.png diff --git a/gfx/pics/muk/front.animated.2bpp.lz.530363b2 b/gfx/pokemon/muk/front.animated.2bpp.lz.530363b2 similarity index 100% rename from gfx/pics/muk/front.animated.2bpp.lz.530363b2 rename to gfx/pokemon/muk/front.animated.2bpp.lz.530363b2 diff --git a/gfx/pics/muk/front.png b/gfx/pokemon/muk/front.png similarity index 100% rename from gfx/pics/muk/front.png rename to gfx/pokemon/muk/front.png diff --git a/gfx/pics/muk/shiny.pal b/gfx/pokemon/muk/shiny.pal similarity index 100% rename from gfx/pics/muk/shiny.pal rename to gfx/pokemon/muk/shiny.pal diff --git a/gfx/pics/murkrow/anim0.asm b/gfx/pokemon/murkrow/anim0.asm similarity index 100% rename from gfx/pics/murkrow/anim0.asm rename to gfx/pokemon/murkrow/anim0.asm diff --git a/gfx/pics/murkrow/anim1.asm b/gfx/pokemon/murkrow/anim1.asm similarity index 100% rename from gfx/pics/murkrow/anim1.asm rename to gfx/pokemon/murkrow/anim1.asm diff --git a/gfx/pics/murkrow/back.2bpp.lz.0c347b5b b/gfx/pokemon/murkrow/back.2bpp.lz.0c347b5b similarity index 100% rename from gfx/pics/murkrow/back.2bpp.lz.0c347b5b rename to gfx/pokemon/murkrow/back.2bpp.lz.0c347b5b diff --git a/gfx/pics/murkrow/back.png b/gfx/pokemon/murkrow/back.png similarity index 100% rename from gfx/pics/murkrow/back.png rename to gfx/pokemon/murkrow/back.png diff --git a/gfx/pics/murkrow/front.animated.2bpp.lz.5d2805e8 b/gfx/pokemon/murkrow/front.animated.2bpp.lz.5d2805e8 similarity index 100% rename from gfx/pics/murkrow/front.animated.2bpp.lz.5d2805e8 rename to gfx/pokemon/murkrow/front.animated.2bpp.lz.5d2805e8 diff --git a/gfx/pics/murkrow/front.png b/gfx/pokemon/murkrow/front.png similarity index 100% rename from gfx/pics/murkrow/front.png rename to gfx/pokemon/murkrow/front.png diff --git a/gfx/pics/murkrow/shiny.pal b/gfx/pokemon/murkrow/shiny.pal similarity index 100% rename from gfx/pics/murkrow/shiny.pal rename to gfx/pokemon/murkrow/shiny.pal diff --git a/gfx/pics/natu/anim0.asm b/gfx/pokemon/natu/anim0.asm similarity index 100% rename from gfx/pics/natu/anim0.asm rename to gfx/pokemon/natu/anim0.asm diff --git a/gfx/pics/natu/anim1.asm b/gfx/pokemon/natu/anim1.asm similarity index 100% rename from gfx/pics/natu/anim1.asm rename to gfx/pokemon/natu/anim1.asm diff --git a/gfx/pics/natu/back.2bpp.lz.c8339fb4 b/gfx/pokemon/natu/back.2bpp.lz.c8339fb4 similarity index 100% rename from gfx/pics/natu/back.2bpp.lz.c8339fb4 rename to gfx/pokemon/natu/back.2bpp.lz.c8339fb4 diff --git a/gfx/pics/natu/back.png b/gfx/pokemon/natu/back.png similarity index 100% rename from gfx/pics/natu/back.png rename to gfx/pokemon/natu/back.png diff --git a/gfx/pics/natu/front.animated.2bpp.lz.997efaf6 b/gfx/pokemon/natu/front.animated.2bpp.lz.997efaf6 similarity index 100% rename from gfx/pics/natu/front.animated.2bpp.lz.997efaf6 rename to gfx/pokemon/natu/front.animated.2bpp.lz.997efaf6 diff --git a/gfx/pics/natu/front.png b/gfx/pokemon/natu/front.png similarity index 100% rename from gfx/pics/natu/front.png rename to gfx/pokemon/natu/front.png diff --git a/gfx/pics/natu/shiny.pal b/gfx/pokemon/natu/shiny.pal similarity index 100% rename from gfx/pics/natu/shiny.pal rename to gfx/pokemon/natu/shiny.pal diff --git a/gfx/pics/nidoking/anim0.asm b/gfx/pokemon/nidoking/anim0.asm similarity index 100% rename from gfx/pics/nidoking/anim0.asm rename to gfx/pokemon/nidoking/anim0.asm diff --git a/gfx/pics/nidoking/anim1.asm b/gfx/pokemon/nidoking/anim1.asm similarity index 100% rename from gfx/pics/nidoking/anim1.asm rename to gfx/pokemon/nidoking/anim1.asm diff --git a/gfx/pics/nidoking/back.2bpp.lz.93211604 b/gfx/pokemon/nidoking/back.2bpp.lz.93211604 similarity index 100% rename from gfx/pics/nidoking/back.2bpp.lz.93211604 rename to gfx/pokemon/nidoking/back.2bpp.lz.93211604 diff --git a/gfx/pics/nidoking/back.png b/gfx/pokemon/nidoking/back.png similarity index 100% rename from gfx/pics/nidoking/back.png rename to gfx/pokemon/nidoking/back.png diff --git a/gfx/pics/nidoking/front.animated.2bpp.lz.bd38fa1e b/gfx/pokemon/nidoking/front.animated.2bpp.lz.bd38fa1e similarity index 100% rename from gfx/pics/nidoking/front.animated.2bpp.lz.bd38fa1e rename to gfx/pokemon/nidoking/front.animated.2bpp.lz.bd38fa1e diff --git a/gfx/pics/nidoking/front.png b/gfx/pokemon/nidoking/front.png similarity index 100% rename from gfx/pics/nidoking/front.png rename to gfx/pokemon/nidoking/front.png diff --git a/gfx/pics/nidoking/shiny.pal b/gfx/pokemon/nidoking/shiny.pal similarity index 100% rename from gfx/pics/nidoking/shiny.pal rename to gfx/pokemon/nidoking/shiny.pal diff --git a/gfx/pics/nidoqueen/anim0.asm b/gfx/pokemon/nidoqueen/anim0.asm similarity index 100% rename from gfx/pics/nidoqueen/anim0.asm rename to gfx/pokemon/nidoqueen/anim0.asm diff --git a/gfx/pics/nidoqueen/anim1.asm b/gfx/pokemon/nidoqueen/anim1.asm similarity index 100% rename from gfx/pics/nidoqueen/anim1.asm rename to gfx/pokemon/nidoqueen/anim1.asm diff --git a/gfx/pics/nidoqueen/back.2bpp.lz.f1eb0f0c b/gfx/pokemon/nidoqueen/back.2bpp.lz.f1eb0f0c similarity index 100% rename from gfx/pics/nidoqueen/back.2bpp.lz.f1eb0f0c rename to gfx/pokemon/nidoqueen/back.2bpp.lz.f1eb0f0c diff --git a/gfx/pics/nidoqueen/back.png b/gfx/pokemon/nidoqueen/back.png similarity index 100% rename from gfx/pics/nidoqueen/back.png rename to gfx/pokemon/nidoqueen/back.png diff --git a/gfx/pics/nidoqueen/front.animated.2bpp.lz.0bf11b0a b/gfx/pokemon/nidoqueen/front.animated.2bpp.lz.0bf11b0a similarity index 100% rename from gfx/pics/nidoqueen/front.animated.2bpp.lz.0bf11b0a rename to gfx/pokemon/nidoqueen/front.animated.2bpp.lz.0bf11b0a diff --git a/gfx/pics/nidoqueen/front.png b/gfx/pokemon/nidoqueen/front.png similarity index 100% rename from gfx/pics/nidoqueen/front.png rename to gfx/pokemon/nidoqueen/front.png diff --git a/gfx/pics/nidoqueen/shiny.pal b/gfx/pokemon/nidoqueen/shiny.pal similarity index 100% rename from gfx/pics/nidoqueen/shiny.pal rename to gfx/pokemon/nidoqueen/shiny.pal diff --git a/gfx/pics/nidoran_f/anim0.asm b/gfx/pokemon/nidoran_f/anim0.asm similarity index 100% rename from gfx/pics/nidoran_f/anim0.asm rename to gfx/pokemon/nidoran_f/anim0.asm diff --git a/gfx/pics/nidoran_f/anim1.asm b/gfx/pokemon/nidoran_f/anim1.asm similarity index 100% rename from gfx/pics/nidoran_f/anim1.asm rename to gfx/pokemon/nidoran_f/anim1.asm diff --git a/gfx/pics/nidoran_f/back.2bpp.lz.9b6990f1 b/gfx/pokemon/nidoran_f/back.2bpp.lz.9b6990f1 similarity index 100% rename from gfx/pics/nidoran_f/back.2bpp.lz.9b6990f1 rename to gfx/pokemon/nidoran_f/back.2bpp.lz.9b6990f1 diff --git a/gfx/pics/nidoran_f/back.png b/gfx/pokemon/nidoran_f/back.png similarity index 100% rename from gfx/pics/nidoran_f/back.png rename to gfx/pokemon/nidoran_f/back.png diff --git a/gfx/pics/nidoran_f/front.animated.2bpp.lz.0a4602e7 b/gfx/pokemon/nidoran_f/front.animated.2bpp.lz.0a4602e7 similarity index 100% rename from gfx/pics/nidoran_f/front.animated.2bpp.lz.0a4602e7 rename to gfx/pokemon/nidoran_f/front.animated.2bpp.lz.0a4602e7 diff --git a/gfx/pics/nidoran_f/front.png b/gfx/pokemon/nidoran_f/front.png similarity index 100% rename from gfx/pics/nidoran_f/front.png rename to gfx/pokemon/nidoran_f/front.png diff --git a/gfx/pics/nidoran_f/shiny.pal b/gfx/pokemon/nidoran_f/shiny.pal similarity index 100% rename from gfx/pics/nidoran_f/shiny.pal rename to gfx/pokemon/nidoran_f/shiny.pal diff --git a/gfx/pics/nidoran_m/anim0.asm b/gfx/pokemon/nidoran_m/anim0.asm similarity index 100% rename from gfx/pics/nidoran_m/anim0.asm rename to gfx/pokemon/nidoran_m/anim0.asm diff --git a/gfx/pics/nidoran_m/anim1.asm b/gfx/pokemon/nidoran_m/anim1.asm similarity index 100% rename from gfx/pics/nidoran_m/anim1.asm rename to gfx/pokemon/nidoran_m/anim1.asm diff --git a/gfx/pics/nidoran_m/back.2bpp.lz.c9e54720 b/gfx/pokemon/nidoran_m/back.2bpp.lz.c9e54720 similarity index 100% rename from gfx/pics/nidoran_m/back.2bpp.lz.c9e54720 rename to gfx/pokemon/nidoran_m/back.2bpp.lz.c9e54720 diff --git a/gfx/pics/nidoran_m/back.png b/gfx/pokemon/nidoran_m/back.png similarity index 100% rename from gfx/pics/nidoran_m/back.png rename to gfx/pokemon/nidoran_m/back.png diff --git a/gfx/pics/nidoran_m/front.animated.2bpp.lz.b121beaa b/gfx/pokemon/nidoran_m/front.animated.2bpp.lz.b121beaa similarity index 100% rename from gfx/pics/nidoran_m/front.animated.2bpp.lz.b121beaa rename to gfx/pokemon/nidoran_m/front.animated.2bpp.lz.b121beaa diff --git a/gfx/pics/nidoran_m/front.png b/gfx/pokemon/nidoran_m/front.png similarity index 100% rename from gfx/pics/nidoran_m/front.png rename to gfx/pokemon/nidoran_m/front.png diff --git a/gfx/pics/nidoran_m/shiny.pal b/gfx/pokemon/nidoran_m/shiny.pal similarity index 100% rename from gfx/pics/nidoran_m/shiny.pal rename to gfx/pokemon/nidoran_m/shiny.pal diff --git a/gfx/pics/nidorina/anim0.asm b/gfx/pokemon/nidorina/anim0.asm similarity index 100% rename from gfx/pics/nidorina/anim0.asm rename to gfx/pokemon/nidorina/anim0.asm diff --git a/gfx/pics/nidorina/anim1.asm b/gfx/pokemon/nidorina/anim1.asm similarity index 100% rename from gfx/pics/nidorina/anim1.asm rename to gfx/pokemon/nidorina/anim1.asm diff --git a/gfx/pics/nidorina/back.2bpp.lz.a00ecf4a b/gfx/pokemon/nidorina/back.2bpp.lz.a00ecf4a similarity index 100% rename from gfx/pics/nidorina/back.2bpp.lz.a00ecf4a rename to gfx/pokemon/nidorina/back.2bpp.lz.a00ecf4a diff --git a/gfx/pics/nidorina/back.png b/gfx/pokemon/nidorina/back.png similarity index 100% rename from gfx/pics/nidorina/back.png rename to gfx/pokemon/nidorina/back.png diff --git a/gfx/pics/nidorina/front.animated.2bpp.lz.51532540 b/gfx/pokemon/nidorina/front.animated.2bpp.lz.51532540 similarity index 100% rename from gfx/pics/nidorina/front.animated.2bpp.lz.51532540 rename to gfx/pokemon/nidorina/front.animated.2bpp.lz.51532540 diff --git a/gfx/pics/nidorina/front.png b/gfx/pokemon/nidorina/front.png similarity index 100% rename from gfx/pics/nidorina/front.png rename to gfx/pokemon/nidorina/front.png diff --git a/gfx/pics/nidorina/shiny.pal b/gfx/pokemon/nidorina/shiny.pal similarity index 100% rename from gfx/pics/nidorina/shiny.pal rename to gfx/pokemon/nidorina/shiny.pal diff --git a/gfx/pics/nidorino/anim0.asm b/gfx/pokemon/nidorino/anim0.asm similarity index 100% rename from gfx/pics/nidorino/anim0.asm rename to gfx/pokemon/nidorino/anim0.asm diff --git a/gfx/pics/nidorino/anim1.asm b/gfx/pokemon/nidorino/anim1.asm similarity index 100% rename from gfx/pics/nidorino/anim1.asm rename to gfx/pokemon/nidorino/anim1.asm diff --git a/gfx/pics/nidorino/back.2bpp.lz.8504fdd1 b/gfx/pokemon/nidorino/back.2bpp.lz.8504fdd1 similarity index 100% rename from gfx/pics/nidorino/back.2bpp.lz.8504fdd1 rename to gfx/pokemon/nidorino/back.2bpp.lz.8504fdd1 diff --git a/gfx/pics/nidorino/back.png b/gfx/pokemon/nidorino/back.png similarity index 100% rename from gfx/pics/nidorino/back.png rename to gfx/pokemon/nidorino/back.png diff --git a/gfx/pics/nidorino/front.animated.2bpp.lz.ba11ef23 b/gfx/pokemon/nidorino/front.animated.2bpp.lz.ba11ef23 similarity index 100% rename from gfx/pics/nidorino/front.animated.2bpp.lz.ba11ef23 rename to gfx/pokemon/nidorino/front.animated.2bpp.lz.ba11ef23 diff --git a/gfx/pics/nidorino/front.png b/gfx/pokemon/nidorino/front.png similarity index 100% rename from gfx/pics/nidorino/front.png rename to gfx/pokemon/nidorino/front.png diff --git a/gfx/pics/nidorino/shiny.pal b/gfx/pokemon/nidorino/shiny.pal similarity index 100% rename from gfx/pics/nidorino/shiny.pal rename to gfx/pokemon/nidorino/shiny.pal diff --git a/gfx/pics/ninetales/anim0.asm b/gfx/pokemon/ninetales/anim0.asm similarity index 100% rename from gfx/pics/ninetales/anim0.asm rename to gfx/pokemon/ninetales/anim0.asm diff --git a/gfx/pics/ninetales/anim1.asm b/gfx/pokemon/ninetales/anim1.asm similarity index 100% rename from gfx/pics/ninetales/anim1.asm rename to gfx/pokemon/ninetales/anim1.asm diff --git a/gfx/pics/ninetales/back.2bpp.lz.999b3894 b/gfx/pokemon/ninetales/back.2bpp.lz.999b3894 similarity index 100% rename from gfx/pics/ninetales/back.2bpp.lz.999b3894 rename to gfx/pokemon/ninetales/back.2bpp.lz.999b3894 diff --git a/gfx/pics/ninetales/back.png b/gfx/pokemon/ninetales/back.png similarity index 100% rename from gfx/pics/ninetales/back.png rename to gfx/pokemon/ninetales/back.png diff --git a/gfx/pics/ninetales/front.animated.2bpp.lz.eef934ff b/gfx/pokemon/ninetales/front.animated.2bpp.lz.eef934ff similarity index 100% rename from gfx/pics/ninetales/front.animated.2bpp.lz.eef934ff rename to gfx/pokemon/ninetales/front.animated.2bpp.lz.eef934ff diff --git a/gfx/pics/ninetales/front.png b/gfx/pokemon/ninetales/front.png similarity index 100% rename from gfx/pics/ninetales/front.png rename to gfx/pokemon/ninetales/front.png diff --git a/gfx/pics/ninetales/shiny.pal b/gfx/pokemon/ninetales/shiny.pal similarity index 100% rename from gfx/pics/ninetales/shiny.pal rename to gfx/pokemon/ninetales/shiny.pal diff --git a/gfx/pics/noctowl/anim0.asm b/gfx/pokemon/noctowl/anim0.asm similarity index 100% rename from gfx/pics/noctowl/anim0.asm rename to gfx/pokemon/noctowl/anim0.asm diff --git a/gfx/pics/noctowl/anim1.asm b/gfx/pokemon/noctowl/anim1.asm similarity index 100% rename from gfx/pics/noctowl/anim1.asm rename to gfx/pokemon/noctowl/anim1.asm diff --git a/gfx/pics/noctowl/back.2bpp.lz.9c8ac57f b/gfx/pokemon/noctowl/back.2bpp.lz.9c8ac57f similarity index 100% rename from gfx/pics/noctowl/back.2bpp.lz.9c8ac57f rename to gfx/pokemon/noctowl/back.2bpp.lz.9c8ac57f diff --git a/gfx/pics/noctowl/back.png b/gfx/pokemon/noctowl/back.png similarity index 100% rename from gfx/pics/noctowl/back.png rename to gfx/pokemon/noctowl/back.png diff --git a/gfx/pics/noctowl/front.animated.2bpp.lz.7d6594fe b/gfx/pokemon/noctowl/front.animated.2bpp.lz.7d6594fe similarity index 100% rename from gfx/pics/noctowl/front.animated.2bpp.lz.7d6594fe rename to gfx/pokemon/noctowl/front.animated.2bpp.lz.7d6594fe diff --git a/gfx/pics/noctowl/front.png b/gfx/pokemon/noctowl/front.png similarity index 100% rename from gfx/pics/noctowl/front.png rename to gfx/pokemon/noctowl/front.png diff --git a/gfx/pics/noctowl/shiny.pal b/gfx/pokemon/noctowl/shiny.pal similarity index 100% rename from gfx/pics/noctowl/shiny.pal rename to gfx/pokemon/noctowl/shiny.pal diff --git a/gfx/pics/octillery/anim0.asm b/gfx/pokemon/octillery/anim0.asm similarity index 100% rename from gfx/pics/octillery/anim0.asm rename to gfx/pokemon/octillery/anim0.asm diff --git a/gfx/pics/octillery/anim1.asm b/gfx/pokemon/octillery/anim1.asm similarity index 100% rename from gfx/pics/octillery/anim1.asm rename to gfx/pokemon/octillery/anim1.asm diff --git a/gfx/pics/octillery/back.2bpp.lz.48b6e47d b/gfx/pokemon/octillery/back.2bpp.lz.48b6e47d similarity index 100% rename from gfx/pics/octillery/back.2bpp.lz.48b6e47d rename to gfx/pokemon/octillery/back.2bpp.lz.48b6e47d diff --git a/gfx/pics/octillery/back.png b/gfx/pokemon/octillery/back.png similarity index 100% rename from gfx/pics/octillery/back.png rename to gfx/pokemon/octillery/back.png diff --git a/gfx/pics/octillery/front.animated.2bpp.lz.de99954b b/gfx/pokemon/octillery/front.animated.2bpp.lz.de99954b similarity index 100% rename from gfx/pics/octillery/front.animated.2bpp.lz.de99954b rename to gfx/pokemon/octillery/front.animated.2bpp.lz.de99954b diff --git a/gfx/pics/octillery/front.png b/gfx/pokemon/octillery/front.png similarity index 100% rename from gfx/pics/octillery/front.png rename to gfx/pokemon/octillery/front.png diff --git a/gfx/pics/octillery/shiny.pal b/gfx/pokemon/octillery/shiny.pal similarity index 100% rename from gfx/pics/octillery/shiny.pal rename to gfx/pokemon/octillery/shiny.pal diff --git a/gfx/pics/oddish/anim0.asm b/gfx/pokemon/oddish/anim0.asm similarity index 100% rename from gfx/pics/oddish/anim0.asm rename to gfx/pokemon/oddish/anim0.asm diff --git a/gfx/pics/oddish/anim1.asm b/gfx/pokemon/oddish/anim1.asm similarity index 100% rename from gfx/pics/oddish/anim1.asm rename to gfx/pokemon/oddish/anim1.asm diff --git a/gfx/pics/oddish/back.2bpp.lz.4f9ec682 b/gfx/pokemon/oddish/back.2bpp.lz.4f9ec682 similarity index 100% rename from gfx/pics/oddish/back.2bpp.lz.4f9ec682 rename to gfx/pokemon/oddish/back.2bpp.lz.4f9ec682 diff --git a/gfx/pics/oddish/back.png b/gfx/pokemon/oddish/back.png similarity index 100% rename from gfx/pics/oddish/back.png rename to gfx/pokemon/oddish/back.png diff --git a/gfx/pics/oddish/front.animated.2bpp.lz.ea2e0dcd b/gfx/pokemon/oddish/front.animated.2bpp.lz.ea2e0dcd similarity index 100% rename from gfx/pics/oddish/front.animated.2bpp.lz.ea2e0dcd rename to gfx/pokemon/oddish/front.animated.2bpp.lz.ea2e0dcd diff --git a/gfx/pics/oddish/front.png b/gfx/pokemon/oddish/front.png similarity index 100% rename from gfx/pics/oddish/front.png rename to gfx/pokemon/oddish/front.png diff --git a/gfx/pics/oddish/shiny.pal b/gfx/pokemon/oddish/shiny.pal similarity index 100% rename from gfx/pics/oddish/shiny.pal rename to gfx/pokemon/oddish/shiny.pal diff --git a/gfx/pics/omanyte/anim0.asm b/gfx/pokemon/omanyte/anim0.asm similarity index 100% rename from gfx/pics/omanyte/anim0.asm rename to gfx/pokemon/omanyte/anim0.asm diff --git a/gfx/pics/omanyte/anim1.asm b/gfx/pokemon/omanyte/anim1.asm similarity index 100% rename from gfx/pics/omanyte/anim1.asm rename to gfx/pokemon/omanyte/anim1.asm diff --git a/gfx/pics/omanyte/back.2bpp.lz.f442a670 b/gfx/pokemon/omanyte/back.2bpp.lz.f442a670 similarity index 100% rename from gfx/pics/omanyte/back.2bpp.lz.f442a670 rename to gfx/pokemon/omanyte/back.2bpp.lz.f442a670 diff --git a/gfx/pics/omanyte/back.png b/gfx/pokemon/omanyte/back.png similarity index 100% rename from gfx/pics/omanyte/back.png rename to gfx/pokemon/omanyte/back.png diff --git a/gfx/pics/omanyte/front.animated.2bpp.lz.15b343dc b/gfx/pokemon/omanyte/front.animated.2bpp.lz.15b343dc similarity index 100% rename from gfx/pics/omanyte/front.animated.2bpp.lz.15b343dc rename to gfx/pokemon/omanyte/front.animated.2bpp.lz.15b343dc diff --git a/gfx/pics/omanyte/front.png b/gfx/pokemon/omanyte/front.png similarity index 100% rename from gfx/pics/omanyte/front.png rename to gfx/pokemon/omanyte/front.png diff --git a/gfx/pics/omanyte/shiny.pal b/gfx/pokemon/omanyte/shiny.pal similarity index 100% rename from gfx/pics/omanyte/shiny.pal rename to gfx/pokemon/omanyte/shiny.pal diff --git a/gfx/pics/omastar/anim0.asm b/gfx/pokemon/omastar/anim0.asm similarity index 100% rename from gfx/pics/omastar/anim0.asm rename to gfx/pokemon/omastar/anim0.asm diff --git a/gfx/pics/omastar/anim1.asm b/gfx/pokemon/omastar/anim1.asm similarity index 100% rename from gfx/pics/omastar/anim1.asm rename to gfx/pokemon/omastar/anim1.asm diff --git a/gfx/pics/omastar/back.2bpp.lz.c75932db b/gfx/pokemon/omastar/back.2bpp.lz.c75932db similarity index 100% rename from gfx/pics/omastar/back.2bpp.lz.c75932db rename to gfx/pokemon/omastar/back.2bpp.lz.c75932db diff --git a/gfx/pics/omastar/back.png b/gfx/pokemon/omastar/back.png similarity index 100% rename from gfx/pics/omastar/back.png rename to gfx/pokemon/omastar/back.png diff --git a/gfx/pics/omastar/front.animated.2bpp.lz.b3f6c3dc b/gfx/pokemon/omastar/front.animated.2bpp.lz.b3f6c3dc similarity index 100% rename from gfx/pics/omastar/front.animated.2bpp.lz.b3f6c3dc rename to gfx/pokemon/omastar/front.animated.2bpp.lz.b3f6c3dc diff --git a/gfx/pics/omastar/front.png b/gfx/pokemon/omastar/front.png similarity index 100% rename from gfx/pics/omastar/front.png rename to gfx/pokemon/omastar/front.png diff --git a/gfx/pics/omastar/shiny.pal b/gfx/pokemon/omastar/shiny.pal similarity index 100% rename from gfx/pics/omastar/shiny.pal rename to gfx/pokemon/omastar/shiny.pal diff --git a/gfx/pics/onix/anim0.asm b/gfx/pokemon/onix/anim0.asm similarity index 100% rename from gfx/pics/onix/anim0.asm rename to gfx/pokemon/onix/anim0.asm diff --git a/gfx/pics/onix/anim1.asm b/gfx/pokemon/onix/anim1.asm similarity index 100% rename from gfx/pics/onix/anim1.asm rename to gfx/pokemon/onix/anim1.asm diff --git a/gfx/pics/onix/back.2bpp.lz.cb580eb9 b/gfx/pokemon/onix/back.2bpp.lz.cb580eb9 similarity index 100% rename from gfx/pics/onix/back.2bpp.lz.cb580eb9 rename to gfx/pokemon/onix/back.2bpp.lz.cb580eb9 diff --git a/gfx/pics/onix/back.png b/gfx/pokemon/onix/back.png similarity index 100% rename from gfx/pics/onix/back.png rename to gfx/pokemon/onix/back.png diff --git a/gfx/pics/onix/front.animated.2bpp.lz.84b7e9ef b/gfx/pokemon/onix/front.animated.2bpp.lz.84b7e9ef similarity index 100% rename from gfx/pics/onix/front.animated.2bpp.lz.84b7e9ef rename to gfx/pokemon/onix/front.animated.2bpp.lz.84b7e9ef diff --git a/gfx/pics/onix/front.png b/gfx/pokemon/onix/front.png similarity index 100% rename from gfx/pics/onix/front.png rename to gfx/pokemon/onix/front.png diff --git a/gfx/pics/onix/shiny.pal b/gfx/pokemon/onix/shiny.pal similarity index 100% rename from gfx/pics/onix/shiny.pal rename to gfx/pokemon/onix/shiny.pal diff --git a/gfx/pokemon/palette_pointers.asm b/gfx/pokemon/palette_pointers.asm new file mode 100644 index 000000000..4ba114413 --- /dev/null +++ b/gfx/pokemon/palette_pointers.asm @@ -0,0 +1,541 @@ +PokemonPalettes: ; a8ce + +; 000 + RGB 30, 22, 17 + RGB 16, 14, 19 +; 000 shiny + RGB 30, 22, 17 + RGB 16, 14, 19 + +BulbasaurPalette: INCLUDE "gfx/pokemon/bulbasaur/normal.pal" +BulbasaurShinyPalette: INCLUDE "gfx/pokemon/bulbasaur/shiny.pal" +IvysaurPalette: INCLUDE "gfx/pokemon/ivysaur/normal.pal" +IvysaurShinyPalette: INCLUDE "gfx/pokemon/ivysaur/shiny.pal" +VenusaurPalette: INCLUDE "gfx/pokemon/venusaur/normal.pal" +VenusaurShinyPalette: INCLUDE "gfx/pokemon/venusaur/shiny.pal" +CharmanderPalette: INCLUDE "gfx/pokemon/charmander/normal.pal" +CharmanderShinyPalette: INCLUDE "gfx/pokemon/charmander/shiny.pal" +CharmeleonPalette: INCLUDE "gfx/pokemon/charmeleon/normal.pal" +CharmeleonShinyPalette: INCLUDE "gfx/pokemon/charmeleon/shiny.pal" +CharizardPalette: INCLUDE "gfx/pokemon/charizard/normal.pal" +CharizardShinyPalette: INCLUDE "gfx/pokemon/charizard/shiny.pal" +SquirtlePalette: INCLUDE "gfx/pokemon/squirtle/normal.pal" +SquirtleShinyPalette: INCLUDE "gfx/pokemon/squirtle/shiny.pal" +WartortlePalette: INCLUDE "gfx/pokemon/wartortle/normal.pal" +WartortleShinyPalette: INCLUDE "gfx/pokemon/wartortle/shiny.pal" +BlastoisePalette: INCLUDE "gfx/pokemon/blastoise/normal.pal" +BlastoiseShinyPalette: INCLUDE "gfx/pokemon/blastoise/shiny.pal" +CaterpiePalette: INCLUDE "gfx/pokemon/caterpie/normal.pal" +CaterpieShinyPalette: INCLUDE "gfx/pokemon/caterpie/shiny.pal" +MetapodPalette: INCLUDE "gfx/pokemon/metapod/normal.pal" +MetapodShinyPalette: INCLUDE "gfx/pokemon/metapod/shiny.pal" +ButterfreePalette: INCLUDE "gfx/pokemon/butterfree/normal.pal" +ButterfreeShinyPalette: INCLUDE "gfx/pokemon/butterfree/shiny.pal" +WeedlePalette: INCLUDE "gfx/pokemon/weedle/normal.pal" +WeedleShinyPalette: INCLUDE "gfx/pokemon/weedle/shiny.pal" +KakunaPalette: INCLUDE "gfx/pokemon/kakuna/normal.pal" +KakunaShinyPalette: INCLUDE "gfx/pokemon/kakuna/shiny.pal" +BeedrillPalette: INCLUDE "gfx/pokemon/beedrill/normal.pal" +BeedrillShinyPalette: INCLUDE "gfx/pokemon/beedrill/shiny.pal" +PidgeyPalette: INCLUDE "gfx/pokemon/pidgey/normal.pal" +PidgeyShinyPalette: INCLUDE "gfx/pokemon/pidgey/shiny.pal" +PidgeottoPalette: INCLUDE "gfx/pokemon/pidgeotto/normal.pal" +PidgeottoShinyPalette: INCLUDE "gfx/pokemon/pidgeotto/shiny.pal" +PidgeotPalette: INCLUDE "gfx/pokemon/pidgeot/normal.pal" +PidgeotShinyPalette: INCLUDE "gfx/pokemon/pidgeot/shiny.pal" +RattataPalette: INCLUDE "gfx/pokemon/rattata/normal.pal" +RattataShinyPalette: INCLUDE "gfx/pokemon/rattata/shiny.pal" +RaticatePalette: INCLUDE "gfx/pokemon/raticate/normal.pal" +RaticateShinyPalette: INCLUDE "gfx/pokemon/raticate/shiny.pal" +SpearowPalette: INCLUDE "gfx/pokemon/spearow/normal.pal" +SpearowShinyPalette: INCLUDE "gfx/pokemon/spearow/shiny.pal" +FearowPalette: INCLUDE "gfx/pokemon/fearow/normal.pal" +FearowShinyPalette: INCLUDE "gfx/pokemon/fearow/shiny.pal" +EkansPalette: INCLUDE "gfx/pokemon/ekans/normal.pal" +EkansShinyPalette: INCLUDE "gfx/pokemon/ekans/shiny.pal" +ArbokPalette: INCLUDE "gfx/pokemon/arbok/normal.pal" +ArbokShinyPalette: INCLUDE "gfx/pokemon/arbok/shiny.pal" +PikachuPalette: INCLUDE "gfx/pokemon/pikachu/normal.pal" +PikachuShinyPalette: INCLUDE "gfx/pokemon/pikachu/shiny.pal" +RaichuPalette: INCLUDE "gfx/pokemon/raichu/normal.pal" +RaichuShinyPalette: INCLUDE "gfx/pokemon/raichu/shiny.pal" +SandshrewPalette: INCLUDE "gfx/pokemon/sandshrew/normal.pal" +SandshrewShinyPalette: INCLUDE "gfx/pokemon/sandshrew/shiny.pal" +SandslashPalette: INCLUDE "gfx/pokemon/sandslash/normal.pal" +SandslashShinyPalette: INCLUDE "gfx/pokemon/sandslash/shiny.pal" +NidoranFPalette: INCLUDE "gfx/pokemon/nidoran_f/normal.pal" +NidoranFShinyPalette: INCLUDE "gfx/pokemon/nidoran_f/shiny.pal" +NidorinaPalette: INCLUDE "gfx/pokemon/nidorina/normal.pal" +NidorinaShinyPalette: INCLUDE "gfx/pokemon/nidorina/shiny.pal" +NidoqueenPalette: INCLUDE "gfx/pokemon/nidoqueen/normal.pal" +NidoqueenShinyPalette: INCLUDE "gfx/pokemon/nidoqueen/shiny.pal" +NidoranMPalette: INCLUDE "gfx/pokemon/nidoran_m/normal.pal" +NidoranMShinyPalette: INCLUDE "gfx/pokemon/nidoran_m/shiny.pal" +NidorinoPalette: INCLUDE "gfx/pokemon/nidorino/normal.pal" +NidorinoShinyPalette: INCLUDE "gfx/pokemon/nidorino/shiny.pal" +NidokingPalette: INCLUDE "gfx/pokemon/nidoking/normal.pal" +NidokingShinyPalette: INCLUDE "gfx/pokemon/nidoking/shiny.pal" +ClefairyPalette: INCLUDE "gfx/pokemon/clefairy/normal.pal" +ClefairyShinyPalette: INCLUDE "gfx/pokemon/clefairy/shiny.pal" +ClefablePalette: INCLUDE "gfx/pokemon/clefable/normal.pal" +ClefableShinyPalette: INCLUDE "gfx/pokemon/clefable/shiny.pal" +VulpixPalette: INCLUDE "gfx/pokemon/vulpix/normal.pal" +VulpixShinyPalette: INCLUDE "gfx/pokemon/vulpix/shiny.pal" +NinetalesPalette: INCLUDE "gfx/pokemon/ninetales/normal.pal" +NinetalesShinyPalette: INCLUDE "gfx/pokemon/ninetales/shiny.pal" +JigglypuffPalette: INCLUDE "gfx/pokemon/jigglypuff/normal.pal" +JigglypuffShinyPalette: INCLUDE "gfx/pokemon/jigglypuff/shiny.pal" +WigglytuffPalette: INCLUDE "gfx/pokemon/wigglytuff/normal.pal" +WigglytuffShinyPalette: INCLUDE "gfx/pokemon/wigglytuff/shiny.pal" +ZubatPalette: INCLUDE "gfx/pokemon/zubat/normal.pal" +ZubatShinyPalette: INCLUDE "gfx/pokemon/zubat/shiny.pal" +GolbatPalette: INCLUDE "gfx/pokemon/golbat/normal.pal" +GolbatShinyPalette: INCLUDE "gfx/pokemon/golbat/shiny.pal" +OddishPalette: INCLUDE "gfx/pokemon/oddish/normal.pal" +OddishShinyPalette: INCLUDE "gfx/pokemon/oddish/shiny.pal" +GloomPalette: INCLUDE "gfx/pokemon/gloom/normal.pal" +GloomShinyPalette: INCLUDE "gfx/pokemon/gloom/shiny.pal" +VileplumePalette: INCLUDE "gfx/pokemon/vileplume/normal.pal" +VileplumeShinyPalette: INCLUDE "gfx/pokemon/vileplume/shiny.pal" +ParasPalette: INCLUDE "gfx/pokemon/paras/normal.pal" +ParasShinyPalette: INCLUDE "gfx/pokemon/paras/shiny.pal" +ParasectPalette: INCLUDE "gfx/pokemon/parasect/normal.pal" +ParasectShinyPalette: INCLUDE "gfx/pokemon/parasect/shiny.pal" +VenonatPalette: INCLUDE "gfx/pokemon/venonat/normal.pal" +VenonatShinyPalette: INCLUDE "gfx/pokemon/venonat/shiny.pal" +VenomothPalette: INCLUDE "gfx/pokemon/venomoth/normal.pal" +VenomothShinyPalette: INCLUDE "gfx/pokemon/venomoth/shiny.pal" +DiglettPalette: INCLUDE "gfx/pokemon/diglett/normal.pal" +DiglettShinyPalette: INCLUDE "gfx/pokemon/diglett/shiny.pal" +DugtrioPalette: INCLUDE "gfx/pokemon/dugtrio/normal.pal" +DugtrioShinyPalette: INCLUDE "gfx/pokemon/dugtrio/shiny.pal" +MeowthPalette: INCLUDE "gfx/pokemon/meowth/normal.pal" +MeowthShinyPalette: INCLUDE "gfx/pokemon/meowth/shiny.pal" +PersianPalette: INCLUDE "gfx/pokemon/persian/normal.pal" +PersianShinyPalette: INCLUDE "gfx/pokemon/persian/shiny.pal" +PsyduckPalette: INCLUDE "gfx/pokemon/psyduck/normal.pal" +PsyduckShinyPalette: INCLUDE "gfx/pokemon/psyduck/shiny.pal" +GolduckPalette: INCLUDE "gfx/pokemon/golduck/normal.pal" +GolduckShinyPalette: INCLUDE "gfx/pokemon/golduck/shiny.pal" +MankeyPalette: INCLUDE "gfx/pokemon/mankey/normal.pal" +MankeyShinyPalette: INCLUDE "gfx/pokemon/mankey/shiny.pal" +PrimeapePalette: INCLUDE "gfx/pokemon/primeape/normal.pal" +PrimeapeShinyPalette: INCLUDE "gfx/pokemon/primeape/shiny.pal" +GrowlithePalette: INCLUDE "gfx/pokemon/growlithe/normal.pal" +GrowlitheShinyPalette: INCLUDE "gfx/pokemon/growlithe/shiny.pal" +ArcaninePalette: INCLUDE "gfx/pokemon/arcanine/normal.pal" +ArcanineShinyPalette: INCLUDE "gfx/pokemon/arcanine/shiny.pal" +PoliwagPalette: INCLUDE "gfx/pokemon/poliwag/normal.pal" +PoliwagShinyPalette: INCLUDE "gfx/pokemon/poliwag/shiny.pal" +PoliwhirlPalette: INCLUDE "gfx/pokemon/poliwhirl/normal.pal" +PoliwhirlShinyPalette: INCLUDE "gfx/pokemon/poliwhirl/shiny.pal" +PoliwrathPalette: INCLUDE "gfx/pokemon/poliwrath/normal.pal" +PoliwrathShinyPalette: INCLUDE "gfx/pokemon/poliwrath/shiny.pal" +AbraPalette: INCLUDE "gfx/pokemon/abra/normal.pal" +AbraShinyPalette: INCLUDE "gfx/pokemon/abra/shiny.pal" +KadabraPalette: INCLUDE "gfx/pokemon/kadabra/normal.pal" +KadabraShinyPalette: INCLUDE "gfx/pokemon/kadabra/shiny.pal" +AlakazamPalette: INCLUDE "gfx/pokemon/alakazam/normal.pal" +AlakazamShinyPalette: INCLUDE "gfx/pokemon/alakazam/shiny.pal" +MachopPalette: INCLUDE "gfx/pokemon/machop/normal.pal" +MachopShinyPalette: INCLUDE "gfx/pokemon/machop/shiny.pal" +MachokePalette: INCLUDE "gfx/pokemon/machoke/normal.pal" +MachokeShinyPalette: INCLUDE "gfx/pokemon/machoke/shiny.pal" +MachampPalette: INCLUDE "gfx/pokemon/machamp/normal.pal" +MachampShinyPalette: INCLUDE "gfx/pokemon/machamp/shiny.pal" +BellsproutPalette: INCLUDE "gfx/pokemon/bellsprout/normal.pal" +BellsproutShinyPalette: INCLUDE "gfx/pokemon/bellsprout/shiny.pal" +WeepinbellPalette: INCLUDE "gfx/pokemon/weepinbell/normal.pal" +WeepinbellShinyPalette: INCLUDE "gfx/pokemon/weepinbell/shiny.pal" +VictreebelPalette: INCLUDE "gfx/pokemon/victreebel/normal.pal" +VictreebelShinyPalette: INCLUDE "gfx/pokemon/victreebel/shiny.pal" +TentacoolPalette: INCLUDE "gfx/pokemon/tentacool/normal.pal" +TentacoolShinyPalette: INCLUDE "gfx/pokemon/tentacool/shiny.pal" +TentacruelPalette: INCLUDE "gfx/pokemon/tentacruel/normal.pal" +TentacruelShinyPalette: INCLUDE "gfx/pokemon/tentacruel/shiny.pal" +GeodudePalette: INCLUDE "gfx/pokemon/geodude/normal.pal" +GeodudeShinyPalette: INCLUDE "gfx/pokemon/geodude/shiny.pal" +GravelerPalette: INCLUDE "gfx/pokemon/graveler/normal.pal" +GravelerShinyPalette: INCLUDE "gfx/pokemon/graveler/shiny.pal" +GolemPalette: INCLUDE "gfx/pokemon/golem/normal.pal" +GolemShinyPalette: INCLUDE "gfx/pokemon/golem/shiny.pal" +PonytaPalette: INCLUDE "gfx/pokemon/ponyta/normal.pal" +PonytaShinyPalette: INCLUDE "gfx/pokemon/ponyta/shiny.pal" +RapidashPalette: INCLUDE "gfx/pokemon/rapidash/normal.pal" +RapidashShinyPalette: INCLUDE "gfx/pokemon/rapidash/shiny.pal" +SlowpokePalette: INCLUDE "gfx/pokemon/slowpoke/normal.pal" +SlowpokeShinyPalette: INCLUDE "gfx/pokemon/slowpoke/shiny.pal" +SlowbroPalette: INCLUDE "gfx/pokemon/slowbro/normal.pal" +SlowbroShinyPalette: INCLUDE "gfx/pokemon/slowbro/shiny.pal" +MagnemitePalette: INCLUDE "gfx/pokemon/magnemite/normal.pal" +MagnemiteShinyPalette: INCLUDE "gfx/pokemon/magnemite/shiny.pal" +MagnetonPalette: INCLUDE "gfx/pokemon/magneton/normal.pal" +MagnetonShinyPalette: INCLUDE "gfx/pokemon/magneton/shiny.pal" +FarfetchDPalette: INCLUDE "gfx/pokemon/farfetch_d/normal.pal" +FarfetchDShinyPalette: INCLUDE "gfx/pokemon/farfetch_d/shiny.pal" +DoduoPalette: INCLUDE "gfx/pokemon/doduo/normal.pal" +DoduoShinyPalette: INCLUDE "gfx/pokemon/doduo/shiny.pal" +DodrioPalette: INCLUDE "gfx/pokemon/dodrio/normal.pal" +DodrioShinyPalette: INCLUDE "gfx/pokemon/dodrio/shiny.pal" +SeelPalette: INCLUDE "gfx/pokemon/seel/normal.pal" +SeelShinyPalette: INCLUDE "gfx/pokemon/seel/shiny.pal" +DewgongPalette: INCLUDE "gfx/pokemon/dewgong/normal.pal" +DewgongShinyPalette: INCLUDE "gfx/pokemon/dewgong/shiny.pal" +GrimerPalette: INCLUDE "gfx/pokemon/grimer/normal.pal" +GrimerShinyPalette: INCLUDE "gfx/pokemon/grimer/shiny.pal" +MukPalette: INCLUDE "gfx/pokemon/muk/normal.pal" +MukShinyPalette: INCLUDE "gfx/pokemon/muk/shiny.pal" +ShellderPalette: INCLUDE "gfx/pokemon/shellder/normal.pal" +ShellderShinyPalette: INCLUDE "gfx/pokemon/shellder/shiny.pal" +CloysterPalette: INCLUDE "gfx/pokemon/cloyster/normal.pal" +CloysterShinyPalette: INCLUDE "gfx/pokemon/cloyster/shiny.pal" +GastlyPalette: INCLUDE "gfx/pokemon/gastly/normal.pal" +GastlyShinyPalette: INCLUDE "gfx/pokemon/gastly/shiny.pal" +HaunterPalette: INCLUDE "gfx/pokemon/haunter/normal.pal" +HaunterShinyPalette: INCLUDE "gfx/pokemon/haunter/shiny.pal" +GengarPalette: INCLUDE "gfx/pokemon/gengar/normal.pal" +GengarShinyPalette: INCLUDE "gfx/pokemon/gengar/shiny.pal" +OnixPalette: INCLUDE "gfx/pokemon/onix/normal.pal" +OnixShinyPalette: INCLUDE "gfx/pokemon/onix/shiny.pal" +DrowzeePalette: INCLUDE "gfx/pokemon/drowzee/normal.pal" +DrowzeeShinyPalette: INCLUDE "gfx/pokemon/drowzee/shiny.pal" +HypnoPalette: INCLUDE "gfx/pokemon/hypno/normal.pal" +HypnoShinyPalette: INCLUDE "gfx/pokemon/hypno/shiny.pal" +KrabbyPalette: INCLUDE "gfx/pokemon/krabby/normal.pal" +KrabbyShinyPalette: INCLUDE "gfx/pokemon/krabby/shiny.pal" +KinglerPalette: INCLUDE "gfx/pokemon/kingler/normal.pal" +KinglerShinyPalette: INCLUDE "gfx/pokemon/kingler/shiny.pal" +VoltorbPalette: INCLUDE "gfx/pokemon/voltorb/normal.pal" +VoltorbShinyPalette: INCLUDE "gfx/pokemon/voltorb/shiny.pal" +ElectrodePalette: INCLUDE "gfx/pokemon/electrode/normal.pal" +ElectrodeShinyPalette: INCLUDE "gfx/pokemon/electrode/shiny.pal" +ExeggcutePalette: INCLUDE "gfx/pokemon/exeggcute/normal.pal" +ExeggcuteShinyPalette: INCLUDE "gfx/pokemon/exeggcute/shiny.pal" +ExeggutorPalette: INCLUDE "gfx/pokemon/exeggutor/normal.pal" +ExeggutorShinyPalette: INCLUDE "gfx/pokemon/exeggutor/shiny.pal" +CubonePalette: INCLUDE "gfx/pokemon/cubone/normal.pal" +CuboneShinyPalette: INCLUDE "gfx/pokemon/cubone/shiny.pal" +MarowakPalette: INCLUDE "gfx/pokemon/marowak/normal.pal" +MarowakShinyPalette: INCLUDE "gfx/pokemon/marowak/shiny.pal" +HitmonleePalette: INCLUDE "gfx/pokemon/hitmonlee/normal.pal" +HitmonleeShinyPalette: INCLUDE "gfx/pokemon/hitmonlee/shiny.pal" +HitmonchanPalette: INCLUDE "gfx/pokemon/hitmonchan/normal.pal" +HitmonchanShinyPalette: INCLUDE "gfx/pokemon/hitmonchan/shiny.pal" +LickitungPalette: INCLUDE "gfx/pokemon/lickitung/normal.pal" +LickitungShinyPalette: INCLUDE "gfx/pokemon/lickitung/shiny.pal" +KoffingPalette: INCLUDE "gfx/pokemon/koffing/normal.pal" +KoffingShinyPalette: INCLUDE "gfx/pokemon/koffing/shiny.pal" +WeezingPalette: INCLUDE "gfx/pokemon/weezing/normal.pal" +WeezingShinyPalette: INCLUDE "gfx/pokemon/weezing/shiny.pal" +RhyhornPalette: INCLUDE "gfx/pokemon/rhyhorn/normal.pal" +RhyhornShinyPalette: INCLUDE "gfx/pokemon/rhyhorn/shiny.pal" +RhydonPalette: INCLUDE "gfx/pokemon/rhydon/normal.pal" +RhydonShinyPalette: INCLUDE "gfx/pokemon/rhydon/shiny.pal" +ChanseyPalette: INCLUDE "gfx/pokemon/chansey/normal.pal" +ChanseyShinyPalette: INCLUDE "gfx/pokemon/chansey/shiny.pal" +TangelaPalette: INCLUDE "gfx/pokemon/tangela/normal.pal" +TangelaShinyPalette: INCLUDE "gfx/pokemon/tangela/shiny.pal" +KangaskhanPalette: INCLUDE "gfx/pokemon/kangaskhan/normal.pal" +KangaskhanShinyPalette: INCLUDE "gfx/pokemon/kangaskhan/shiny.pal" +HorseaPalette: INCLUDE "gfx/pokemon/horsea/normal.pal" +HorseaShinyPalette: INCLUDE "gfx/pokemon/horsea/shiny.pal" +SeadraPalette: INCLUDE "gfx/pokemon/seadra/normal.pal" +SeadraShinyPalette: INCLUDE "gfx/pokemon/seadra/shiny.pal" +GoldeenPalette: INCLUDE "gfx/pokemon/goldeen/normal.pal" +GoldeenShinyPalette: INCLUDE "gfx/pokemon/goldeen/shiny.pal" +SeakingPalette: INCLUDE "gfx/pokemon/seaking/normal.pal" +SeakingShinyPalette: INCLUDE "gfx/pokemon/seaking/shiny.pal" +StaryuPalette: INCLUDE "gfx/pokemon/staryu/normal.pal" +StaryuShinyPalette: INCLUDE "gfx/pokemon/staryu/shiny.pal" +StarmiePalette: INCLUDE "gfx/pokemon/starmie/normal.pal" +StarmieShinyPalette: INCLUDE "gfx/pokemon/starmie/shiny.pal" +MrMimePalette: INCLUDE "gfx/pokemon/mr__mime/normal.pal" +MrMimeShinyPalette: INCLUDE "gfx/pokemon/mr__mime/shiny.pal" +ScytherPalette: INCLUDE "gfx/pokemon/scyther/normal.pal" +ScytherShinyPalette: INCLUDE "gfx/pokemon/scyther/shiny.pal" +JynxPalette: INCLUDE "gfx/pokemon/jynx/normal.pal" +JynxShinyPalette: INCLUDE "gfx/pokemon/jynx/shiny.pal" +ElectabuzzPalette: INCLUDE "gfx/pokemon/electabuzz/normal.pal" +ElectabuzzShinyPalette: INCLUDE "gfx/pokemon/electabuzz/shiny.pal" +MagmarPalette: INCLUDE "gfx/pokemon/magmar/normal.pal" +MagmarShinyPalette: INCLUDE "gfx/pokemon/magmar/shiny.pal" +PinsirPalette: INCLUDE "gfx/pokemon/pinsir/normal.pal" +PinsirShinyPalette: INCLUDE "gfx/pokemon/pinsir/shiny.pal" +TaurosPalette: INCLUDE "gfx/pokemon/tauros/normal.pal" +TaurosShinyPalette: INCLUDE "gfx/pokemon/tauros/shiny.pal" +MagikarpPalette: INCLUDE "gfx/pokemon/magikarp/normal.pal" +MagikarpShinyPalette: INCLUDE "gfx/pokemon/magikarp/shiny.pal" +GyaradosPalette: INCLUDE "gfx/pokemon/gyarados/normal.pal" +GyaradosShinyPalette: INCLUDE "gfx/pokemon/gyarados/shiny.pal" +LaprasPalette: INCLUDE "gfx/pokemon/lapras/normal.pal" +LaprasShinyPalette: INCLUDE "gfx/pokemon/lapras/shiny.pal" +DittoPalette: INCLUDE "gfx/pokemon/ditto/normal.pal" +DittoShinyPalette: INCLUDE "gfx/pokemon/ditto/shiny.pal" +EeveePalette: INCLUDE "gfx/pokemon/eevee/normal.pal" +EeveeShinyPalette: INCLUDE "gfx/pokemon/eevee/shiny.pal" +VaporeonPalette: INCLUDE "gfx/pokemon/vaporeon/normal.pal" +VaporeonShinyPalette: INCLUDE "gfx/pokemon/vaporeon/shiny.pal" +JolteonPalette: INCLUDE "gfx/pokemon/jolteon/normal.pal" +JolteonShinyPalette: INCLUDE "gfx/pokemon/jolteon/shiny.pal" +FlareonPalette: INCLUDE "gfx/pokemon/flareon/normal.pal" +FlareonShinyPalette: INCLUDE "gfx/pokemon/flareon/shiny.pal" +PorygonPalette: INCLUDE "gfx/pokemon/porygon/normal.pal" +PorygonShinyPalette: INCLUDE "gfx/pokemon/porygon/shiny.pal" +OmanytePalette: INCLUDE "gfx/pokemon/omanyte/normal.pal" +OmanyteShinyPalette: INCLUDE "gfx/pokemon/omanyte/shiny.pal" +OmastarPalette: INCLUDE "gfx/pokemon/omastar/normal.pal" +OmastarShinyPalette: INCLUDE "gfx/pokemon/omastar/shiny.pal" +KabutoPalette: INCLUDE "gfx/pokemon/kabuto/normal.pal" +KabutoShinyPalette: INCLUDE "gfx/pokemon/kabuto/shiny.pal" +KabutopsPalette: INCLUDE "gfx/pokemon/kabutops/normal.pal" +KabutopsShinyPalette: INCLUDE "gfx/pokemon/kabutops/shiny.pal" +AerodactylPalette: INCLUDE "gfx/pokemon/aerodactyl/normal.pal" +AerodactylShinyPalette: INCLUDE "gfx/pokemon/aerodactyl/shiny.pal" +SnorlaxPalette: INCLUDE "gfx/pokemon/snorlax/normal.pal" +SnorlaxShinyPalette: INCLUDE "gfx/pokemon/snorlax/shiny.pal" +ArticunoPalette: INCLUDE "gfx/pokemon/articuno/normal.pal" +ArticunoShinyPalette: INCLUDE "gfx/pokemon/articuno/shiny.pal" +ZapdosPalette: INCLUDE "gfx/pokemon/zapdos/normal.pal" +ZapdosShinyPalette: INCLUDE "gfx/pokemon/zapdos/shiny.pal" +MoltresPalette: INCLUDE "gfx/pokemon/moltres/normal.pal" +MoltresShinyPalette: INCLUDE "gfx/pokemon/moltres/shiny.pal" +DratiniPalette: INCLUDE "gfx/pokemon/dratini/normal.pal" +DratiniShinyPalette: INCLUDE "gfx/pokemon/dratini/shiny.pal" +DragonairPalette: INCLUDE "gfx/pokemon/dragonair/normal.pal" +DragonairShinyPalette: INCLUDE "gfx/pokemon/dragonair/shiny.pal" +DragonitePalette: INCLUDE "gfx/pokemon/dragonite/normal.pal" +DragoniteShinyPalette: INCLUDE "gfx/pokemon/dragonite/shiny.pal" +MewtwoPalette: INCLUDE "gfx/pokemon/mewtwo/normal.pal" +MewtwoShinyPalette: INCLUDE "gfx/pokemon/mewtwo/shiny.pal" +MewPalette: INCLUDE "gfx/pokemon/mew/normal.pal" +MewShinyPalette: INCLUDE "gfx/pokemon/mew/shiny.pal" +ChikoritaPalette: INCLUDE "gfx/pokemon/chikorita/normal.pal" +ChikoritaShinyPalette: INCLUDE "gfx/pokemon/chikorita/shiny.pal" +BayleefPalette: INCLUDE "gfx/pokemon/bayleef/normal.pal" +BayleefShinyPalette: INCLUDE "gfx/pokemon/bayleef/shiny.pal" +MeganiumPalette: INCLUDE "gfx/pokemon/meganium/normal.pal" +MeganiumShinyPalette: INCLUDE "gfx/pokemon/meganium/shiny.pal" +CyndaquilPalette: INCLUDE "gfx/pokemon/cyndaquil/normal.pal" +CyndaquilShinyPalette: INCLUDE "gfx/pokemon/cyndaquil/shiny.pal" +QuilavaPalette: INCLUDE "gfx/pokemon/quilava/normal.pal" +QuilavaShinyPalette: INCLUDE "gfx/pokemon/quilava/shiny.pal" +TyphlosionPalette: INCLUDE "gfx/pokemon/typhlosion/normal.pal" +TyphlosionShinyPalette: INCLUDE "gfx/pokemon/typhlosion/shiny.pal" +TotodilePalette: INCLUDE "gfx/pokemon/totodile/normal.pal" +TotodileShinyPalette: INCLUDE "gfx/pokemon/totodile/shiny.pal" +CroconawPalette: INCLUDE "gfx/pokemon/croconaw/normal.pal" +CroconawShinyPalette: INCLUDE "gfx/pokemon/croconaw/shiny.pal" +FeraligatrPalette: INCLUDE "gfx/pokemon/feraligatr/normal.pal" +FeraligatrShinyPalette: INCLUDE "gfx/pokemon/feraligatr/shiny.pal" +SentretPalette: INCLUDE "gfx/pokemon/sentret/normal.pal" +SentretShinyPalette: INCLUDE "gfx/pokemon/sentret/shiny.pal" +FurretPalette: INCLUDE "gfx/pokemon/furret/normal.pal" +FurretShinyPalette: INCLUDE "gfx/pokemon/furret/shiny.pal" +HoothootPalette: INCLUDE "gfx/pokemon/hoothoot/normal.pal" +HoothootShinyPalette: INCLUDE "gfx/pokemon/hoothoot/shiny.pal" +NoctowlPalette: INCLUDE "gfx/pokemon/noctowl/normal.pal" +NoctowlShinyPalette: INCLUDE "gfx/pokemon/noctowl/shiny.pal" +LedybaPalette: INCLUDE "gfx/pokemon/ledyba/normal.pal" +LedybaShinyPalette: INCLUDE "gfx/pokemon/ledyba/shiny.pal" +LedianPalette: INCLUDE "gfx/pokemon/ledian/normal.pal" +LedianShinyPalette: INCLUDE "gfx/pokemon/ledian/shiny.pal" +SpinarakPalette: INCLUDE "gfx/pokemon/spinarak/normal.pal" +SpinarakShinyPalette: INCLUDE "gfx/pokemon/spinarak/shiny.pal" +AriadosPalette: INCLUDE "gfx/pokemon/ariados/normal.pal" +AriadosShinyPalette: INCLUDE "gfx/pokemon/ariados/shiny.pal" +CrobatPalette: INCLUDE "gfx/pokemon/crobat/normal.pal" +CrobatShinyPalette: INCLUDE "gfx/pokemon/crobat/shiny.pal" +ChinchouPalette: INCLUDE "gfx/pokemon/chinchou/normal.pal" +ChinchouShinyPalette: INCLUDE "gfx/pokemon/chinchou/shiny.pal" +LanturnPalette: INCLUDE "gfx/pokemon/lanturn/normal.pal" +LanturnShinyPalette: INCLUDE "gfx/pokemon/lanturn/shiny.pal" +PichuPalette: INCLUDE "gfx/pokemon/pichu/normal.pal" +PichuShinyPalette: INCLUDE "gfx/pokemon/pichu/shiny.pal" +CleffaPalette: INCLUDE "gfx/pokemon/cleffa/normal.pal" +CleffaShinyPalette: INCLUDE "gfx/pokemon/cleffa/shiny.pal" +IgglybuffPalette: INCLUDE "gfx/pokemon/igglybuff/normal.pal" +IgglybuffShinyPalette: INCLUDE "gfx/pokemon/igglybuff/shiny.pal" +TogepiPalette: INCLUDE "gfx/pokemon/togepi/normal.pal" +TogepiShinyPalette: INCLUDE "gfx/pokemon/togepi/shiny.pal" +TogeticPalette: INCLUDE "gfx/pokemon/togetic/normal.pal" +TogeticShinyPalette: INCLUDE "gfx/pokemon/togetic/shiny.pal" +NatuPalette: INCLUDE "gfx/pokemon/natu/normal.pal" +NatuShinyPalette: INCLUDE "gfx/pokemon/natu/shiny.pal" +XatuPalette: INCLUDE "gfx/pokemon/xatu/normal.pal" +XatuShinyPalette: INCLUDE "gfx/pokemon/xatu/shiny.pal" +MareepPalette: INCLUDE "gfx/pokemon/mareep/normal.pal" +MareepShinyPalette: INCLUDE "gfx/pokemon/mareep/shiny.pal" +FlaaffyPalette: INCLUDE "gfx/pokemon/flaaffy/normal.pal" +FlaaffyShinyPalette: INCLUDE "gfx/pokemon/flaaffy/shiny.pal" +AmpharosPalette: INCLUDE "gfx/pokemon/ampharos/normal.pal" +AmpharosShinyPalette: INCLUDE "gfx/pokemon/ampharos/shiny.pal" +BellossomPalette: INCLUDE "gfx/pokemon/bellossom/normal.pal" +BellossomShinyPalette: INCLUDE "gfx/pokemon/bellossom/shiny.pal" +MarillPalette: INCLUDE "gfx/pokemon/marill/normal.pal" +MarillShinyPalette: INCLUDE "gfx/pokemon/marill/shiny.pal" +AzumarillPalette: INCLUDE "gfx/pokemon/azumarill/normal.pal" +AzumarillShinyPalette: INCLUDE "gfx/pokemon/azumarill/shiny.pal" +SudowoodoPalette: INCLUDE "gfx/pokemon/sudowoodo/normal.pal" +SudowoodoShinyPalette: INCLUDE "gfx/pokemon/sudowoodo/shiny.pal" +PolitoedPalette: INCLUDE "gfx/pokemon/politoed/normal.pal" +PolitoedShinyPalette: INCLUDE "gfx/pokemon/politoed/shiny.pal" +HoppipPalette: INCLUDE "gfx/pokemon/hoppip/normal.pal" +HoppipShinyPalette: INCLUDE "gfx/pokemon/hoppip/shiny.pal" +SkiploomPalette: INCLUDE "gfx/pokemon/skiploom/normal.pal" +SkiploomShinyPalette: INCLUDE "gfx/pokemon/skiploom/shiny.pal" +JumpluffPalette: INCLUDE "gfx/pokemon/jumpluff/normal.pal" +JumpluffShinyPalette: INCLUDE "gfx/pokemon/jumpluff/shiny.pal" +AipomPalette: INCLUDE "gfx/pokemon/aipom/normal.pal" +AipomShinyPalette: INCLUDE "gfx/pokemon/aipom/shiny.pal" +SunkernPalette: INCLUDE "gfx/pokemon/sunkern/normal.pal" +SunkernShinyPalette: INCLUDE "gfx/pokemon/sunkern/shiny.pal" +SunfloraPalette: INCLUDE "gfx/pokemon/sunflora/normal.pal" +SunfloraShinyPalette: INCLUDE "gfx/pokemon/sunflora/shiny.pal" +YanmaPalette: INCLUDE "gfx/pokemon/yanma/normal.pal" +YanmaShinyPalette: INCLUDE "gfx/pokemon/yanma/shiny.pal" +WooperPalette: INCLUDE "gfx/pokemon/wooper/normal.pal" +WooperShinyPalette: INCLUDE "gfx/pokemon/wooper/shiny.pal" +QuagsirePalette: INCLUDE "gfx/pokemon/quagsire/normal.pal" +QuagsireShinyPalette: INCLUDE "gfx/pokemon/quagsire/shiny.pal" +EspeonPalette: INCLUDE "gfx/pokemon/espeon/normal.pal" +EspeonShinyPalette: INCLUDE "gfx/pokemon/espeon/shiny.pal" +UmbreonPalette: INCLUDE "gfx/pokemon/umbreon/normal.pal" +UmbreonShinyPalette: INCLUDE "gfx/pokemon/umbreon/shiny.pal" +MurkrowPalette: INCLUDE "gfx/pokemon/murkrow/normal.pal" +MurkrowShinyPalette: INCLUDE "gfx/pokemon/murkrow/shiny.pal" +SlowkingPalette: INCLUDE "gfx/pokemon/slowking/normal.pal" +SlowkingShinyPalette: INCLUDE "gfx/pokemon/slowking/shiny.pal" +MisdreavusPalette: INCLUDE "gfx/pokemon/misdreavus/normal.pal" +MisdreavusShinyPalette: INCLUDE "gfx/pokemon/misdreavus/shiny.pal" +UnownPalette: INCLUDE "gfx/pokemon/unown/normal.pal" +UnownShinyPalette: INCLUDE "gfx/pokemon/unown/shiny.pal" +WobbuffetPalette: INCLUDE "gfx/pokemon/wobbuffet/normal.pal" +WobbuffetShinyPalette: INCLUDE "gfx/pokemon/wobbuffet/shiny.pal" +GirafarigPalette: INCLUDE "gfx/pokemon/girafarig/normal.pal" +GirafarigShinyPalette: INCLUDE "gfx/pokemon/girafarig/shiny.pal" +PinecoPalette: INCLUDE "gfx/pokemon/pineco/normal.pal" +PinecoShinyPalette: INCLUDE "gfx/pokemon/pineco/shiny.pal" +ForretressPalette: INCLUDE "gfx/pokemon/forretress/normal.pal" +ForretressShinyPalette: INCLUDE "gfx/pokemon/forretress/shiny.pal" +DunsparcePalette: INCLUDE "gfx/pokemon/dunsparce/normal.pal" +DunsparceShinyPalette: INCLUDE "gfx/pokemon/dunsparce/shiny.pal" +GligarPalette: INCLUDE "gfx/pokemon/gligar/normal.pal" +GligarShinyPalette: INCLUDE "gfx/pokemon/gligar/shiny.pal" +SteelixPalette: INCLUDE "gfx/pokemon/steelix/normal.pal" +SteelixShinyPalette: INCLUDE "gfx/pokemon/steelix/shiny.pal" +SnubbullPalette: INCLUDE "gfx/pokemon/snubbull/normal.pal" +SnubbullShinyPalette: INCLUDE "gfx/pokemon/snubbull/shiny.pal" +GranbullPalette: INCLUDE "gfx/pokemon/granbull/normal.pal" +GranbullShinyPalette: INCLUDE "gfx/pokemon/granbull/shiny.pal" +QwilfishPalette: INCLUDE "gfx/pokemon/qwilfish/normal.pal" +QwilfishShinyPalette: INCLUDE "gfx/pokemon/qwilfish/shiny.pal" +ScizorPalette: INCLUDE "gfx/pokemon/scizor/normal.pal" +ScizorShinyPalette: INCLUDE "gfx/pokemon/scizor/shiny.pal" +ShucklePalette: INCLUDE "gfx/pokemon/shuckle/normal.pal" +ShuckleShinyPalette: INCLUDE "gfx/pokemon/shuckle/shiny.pal" +HeracrossPalette: INCLUDE "gfx/pokemon/heracross/normal.pal" +HeracrossShinyPalette: INCLUDE "gfx/pokemon/heracross/shiny.pal" +SneaselPalette: INCLUDE "gfx/pokemon/sneasel/normal.pal" +SneaselShinyPalette: INCLUDE "gfx/pokemon/sneasel/shiny.pal" +TeddiursaPalette: INCLUDE "gfx/pokemon/teddiursa/normal.pal" +TeddiursaShinyPalette: INCLUDE "gfx/pokemon/teddiursa/shiny.pal" +UrsaringPalette: INCLUDE "gfx/pokemon/ursaring/normal.pal" +UrsaringShinyPalette: INCLUDE "gfx/pokemon/ursaring/shiny.pal" +SlugmaPalette: INCLUDE "gfx/pokemon/slugma/normal.pal" +SlugmaShinyPalette: INCLUDE "gfx/pokemon/slugma/shiny.pal" +MagcargoPalette: INCLUDE "gfx/pokemon/magcargo/normal.pal" +MagcargoShinyPalette: INCLUDE "gfx/pokemon/magcargo/shiny.pal" +SwinubPalette: INCLUDE "gfx/pokemon/swinub/normal.pal" +SwinubShinyPalette: INCLUDE "gfx/pokemon/swinub/shiny.pal" +PiloswinePalette: INCLUDE "gfx/pokemon/piloswine/normal.pal" +PiloswineShinyPalette: INCLUDE "gfx/pokemon/piloswine/shiny.pal" +CorsolaPalette: INCLUDE "gfx/pokemon/corsola/normal.pal" +CorsolaShinyPalette: INCLUDE "gfx/pokemon/corsola/shiny.pal" +RemoraidPalette: INCLUDE "gfx/pokemon/remoraid/normal.pal" +RemoraidShinyPalette: INCLUDE "gfx/pokemon/remoraid/shiny.pal" +OctilleryPalette: INCLUDE "gfx/pokemon/octillery/normal.pal" +OctilleryShinyPalette: INCLUDE "gfx/pokemon/octillery/shiny.pal" +DelibirdPalette: INCLUDE "gfx/pokemon/delibird/normal.pal" +DelibirdShinyPalette: INCLUDE "gfx/pokemon/delibird/shiny.pal" +MantinePalette: INCLUDE "gfx/pokemon/mantine/normal.pal" +MantineShinyPalette: INCLUDE "gfx/pokemon/mantine/shiny.pal" +SkarmoryPalette: INCLUDE "gfx/pokemon/skarmory/normal.pal" +SkarmoryShinyPalette: INCLUDE "gfx/pokemon/skarmory/shiny.pal" +HoundourPalette: INCLUDE "gfx/pokemon/houndour/normal.pal" +HoundourShinyPalette: INCLUDE "gfx/pokemon/houndour/shiny.pal" +HoundoomPalette: INCLUDE "gfx/pokemon/houndoom/normal.pal" +HoundoomShinyPalette: INCLUDE "gfx/pokemon/houndoom/shiny.pal" +KingdraPalette: INCLUDE "gfx/pokemon/kingdra/normal.pal" +KingdraShinyPalette: INCLUDE "gfx/pokemon/kingdra/shiny.pal" +PhanpyPalette: INCLUDE "gfx/pokemon/phanpy/normal.pal" +PhanpyShinyPalette: INCLUDE "gfx/pokemon/phanpy/shiny.pal" +DonphanPalette: INCLUDE "gfx/pokemon/donphan/normal.pal" +DonphanShinyPalette: INCLUDE "gfx/pokemon/donphan/shiny.pal" +Porygon2Palette: INCLUDE "gfx/pokemon/porygon2/normal.pal" +Porygon2ShinyPalette: INCLUDE "gfx/pokemon/porygon2/shiny.pal" +StantlerPalette: INCLUDE "gfx/pokemon/stantler/normal.pal" +StantlerShinyPalette: INCLUDE "gfx/pokemon/stantler/shiny.pal" +SmearglePalette: INCLUDE "gfx/pokemon/smeargle/normal.pal" +SmeargleShinyPalette: INCLUDE "gfx/pokemon/smeargle/shiny.pal" +TyroguePalette: INCLUDE "gfx/pokemon/tyrogue/normal.pal" +TyrogueShinyPalette: INCLUDE "gfx/pokemon/tyrogue/shiny.pal" +HitmontopPalette: INCLUDE "gfx/pokemon/hitmontop/normal.pal" +HitmontopShinyPalette: INCLUDE "gfx/pokemon/hitmontop/shiny.pal" +SmoochumPalette: INCLUDE "gfx/pokemon/smoochum/normal.pal" +SmoochumShinyPalette: INCLUDE "gfx/pokemon/smoochum/shiny.pal" +ElekidPalette: INCLUDE "gfx/pokemon/elekid/normal.pal" +ElekidShinyPalette: INCLUDE "gfx/pokemon/elekid/shiny.pal" +MagbyPalette: INCLUDE "gfx/pokemon/magby/normal.pal" +MagbyShinyPalette: INCLUDE "gfx/pokemon/magby/shiny.pal" +MiltankPalette: INCLUDE "gfx/pokemon/miltank/normal.pal" +MiltankShinyPalette: INCLUDE "gfx/pokemon/miltank/shiny.pal" +BlisseyPalette: INCLUDE "gfx/pokemon/blissey/normal.pal" +BlisseyShinyPalette: INCLUDE "gfx/pokemon/blissey/shiny.pal" +RaikouPalette: INCLUDE "gfx/pokemon/raikou/normal.pal" +RaikouShinyPalette: INCLUDE "gfx/pokemon/raikou/shiny.pal" +EnteiPalette: INCLUDE "gfx/pokemon/entei/normal.pal" +EnteiShinyPalette: INCLUDE "gfx/pokemon/entei/shiny.pal" +SuicunePalette: INCLUDE "gfx/pokemon/suicune/normal.pal" +SuicuneShinyPalette: INCLUDE "gfx/pokemon/suicune/shiny.pal" +LarvitarPalette: INCLUDE "gfx/pokemon/larvitar/normal.pal" +LarvitarShinyPalette: INCLUDE "gfx/pokemon/larvitar/shiny.pal" +PupitarPalette: INCLUDE "gfx/pokemon/pupitar/normal.pal" +PupitarShinyPalette: INCLUDE "gfx/pokemon/pupitar/shiny.pal" +TyranitarPalette: INCLUDE "gfx/pokemon/tyranitar/normal.pal" +TyranitarShinyPalette: INCLUDE "gfx/pokemon/tyranitar/shiny.pal" +LugiaPalette: INCLUDE "gfx/pokemon/lugia/normal.pal" +LugiaShinyPalette: INCLUDE "gfx/pokemon/lugia/shiny.pal" +HoOhPalette: INCLUDE "gfx/pokemon/ho_oh/normal.pal" +HoOhShinyPalette: INCLUDE "gfx/pokemon/ho_oh/shiny.pal" +CelebiPalette: INCLUDE "gfx/pokemon/celebi/normal.pal" +CelebiShinyPalette: INCLUDE "gfx/pokemon/celebi/shiny.pal" + +; 252 + RGB 30, 26, 11 + RGB 23, 16, 00 +; 252 shiny + RGB 30, 26, 11 + RGB 23, 16, 00 + +; Egg + RGB 30, 26, 11 + RGB 23, 16, 00 +; Egg shiny + RGB 30, 26, 11 + RGB 23, 16, 00 + +; 254 + RGB 30, 26, 11 + RGB 23, 16, 00 +; 254 shiny + RGB 30, 26, 11 + RGB 23, 16, 00 + +; 255 + RGB 23, 23, 23 + RGB 17, 17, 17 +; 255 shiny + RGB 23, 23, 23 + RGB 17, 17, 17 + +; b0ce diff --git a/gfx/pics/paras/anim0.asm b/gfx/pokemon/paras/anim0.asm similarity index 100% rename from gfx/pics/paras/anim0.asm rename to gfx/pokemon/paras/anim0.asm diff --git a/gfx/pics/paras/anim1.asm b/gfx/pokemon/paras/anim1.asm similarity index 100% rename from gfx/pics/paras/anim1.asm rename to gfx/pokemon/paras/anim1.asm diff --git a/gfx/pics/paras/back.2bpp.lz.b5a4d1e2 b/gfx/pokemon/paras/back.2bpp.lz.b5a4d1e2 similarity index 100% rename from gfx/pics/paras/back.2bpp.lz.b5a4d1e2 rename to gfx/pokemon/paras/back.2bpp.lz.b5a4d1e2 diff --git a/gfx/pics/paras/back.png b/gfx/pokemon/paras/back.png similarity index 100% rename from gfx/pics/paras/back.png rename to gfx/pokemon/paras/back.png diff --git a/gfx/pics/paras/front.animated.2bpp.lz.37a2c2f8 b/gfx/pokemon/paras/front.animated.2bpp.lz.37a2c2f8 similarity index 100% rename from gfx/pics/paras/front.animated.2bpp.lz.37a2c2f8 rename to gfx/pokemon/paras/front.animated.2bpp.lz.37a2c2f8 diff --git a/gfx/pics/paras/front.png b/gfx/pokemon/paras/front.png similarity index 100% rename from gfx/pics/paras/front.png rename to gfx/pokemon/paras/front.png diff --git a/gfx/pics/paras/shiny.pal b/gfx/pokemon/paras/shiny.pal similarity index 100% rename from gfx/pics/paras/shiny.pal rename to gfx/pokemon/paras/shiny.pal diff --git a/gfx/pics/parasect/anim0.asm b/gfx/pokemon/parasect/anim0.asm similarity index 100% rename from gfx/pics/parasect/anim0.asm rename to gfx/pokemon/parasect/anim0.asm diff --git a/gfx/pics/parasect/anim1.asm b/gfx/pokemon/parasect/anim1.asm similarity index 100% rename from gfx/pics/parasect/anim1.asm rename to gfx/pokemon/parasect/anim1.asm diff --git a/gfx/pics/parasect/back.2bpp.lz.ed08ef08 b/gfx/pokemon/parasect/back.2bpp.lz.ed08ef08 similarity index 100% rename from gfx/pics/parasect/back.2bpp.lz.ed08ef08 rename to gfx/pokemon/parasect/back.2bpp.lz.ed08ef08 diff --git a/gfx/pics/parasect/back.png b/gfx/pokemon/parasect/back.png similarity index 100% rename from gfx/pics/parasect/back.png rename to gfx/pokemon/parasect/back.png diff --git a/gfx/pics/parasect/front.animated.2bpp.lz.f78f9f36 b/gfx/pokemon/parasect/front.animated.2bpp.lz.f78f9f36 similarity index 100% rename from gfx/pics/parasect/front.animated.2bpp.lz.f78f9f36 rename to gfx/pokemon/parasect/front.animated.2bpp.lz.f78f9f36 diff --git a/gfx/pics/parasect/front.png b/gfx/pokemon/parasect/front.png similarity index 100% rename from gfx/pics/parasect/front.png rename to gfx/pokemon/parasect/front.png diff --git a/gfx/pics/parasect/shiny.pal b/gfx/pokemon/parasect/shiny.pal similarity index 100% rename from gfx/pics/parasect/shiny.pal rename to gfx/pokemon/parasect/shiny.pal diff --git a/gfx/pics/persian/anim0.asm b/gfx/pokemon/persian/anim0.asm similarity index 100% rename from gfx/pics/persian/anim0.asm rename to gfx/pokemon/persian/anim0.asm diff --git a/gfx/pics/persian/anim1.asm b/gfx/pokemon/persian/anim1.asm similarity index 100% rename from gfx/pics/persian/anim1.asm rename to gfx/pokemon/persian/anim1.asm diff --git a/gfx/pics/persian/back.2bpp.lz.0e1c1c9a b/gfx/pokemon/persian/back.2bpp.lz.0e1c1c9a similarity index 100% rename from gfx/pics/persian/back.2bpp.lz.0e1c1c9a rename to gfx/pokemon/persian/back.2bpp.lz.0e1c1c9a diff --git a/gfx/pics/persian/back.png b/gfx/pokemon/persian/back.png similarity index 100% rename from gfx/pics/persian/back.png rename to gfx/pokemon/persian/back.png diff --git a/gfx/pics/persian/front.animated.2bpp.lz.0e6a2521 b/gfx/pokemon/persian/front.animated.2bpp.lz.0e6a2521 similarity index 100% rename from gfx/pics/persian/front.animated.2bpp.lz.0e6a2521 rename to gfx/pokemon/persian/front.animated.2bpp.lz.0e6a2521 diff --git a/gfx/pics/persian/front.png b/gfx/pokemon/persian/front.png similarity index 100% rename from gfx/pics/persian/front.png rename to gfx/pokemon/persian/front.png diff --git a/gfx/pics/persian/shiny.pal b/gfx/pokemon/persian/shiny.pal similarity index 100% rename from gfx/pics/persian/shiny.pal rename to gfx/pokemon/persian/shiny.pal diff --git a/gfx/pics/phanpy/anim0.asm b/gfx/pokemon/phanpy/anim0.asm similarity index 100% rename from gfx/pics/phanpy/anim0.asm rename to gfx/pokemon/phanpy/anim0.asm diff --git a/gfx/pics/phanpy/anim1.asm b/gfx/pokemon/phanpy/anim1.asm similarity index 100% rename from gfx/pics/phanpy/anim1.asm rename to gfx/pokemon/phanpy/anim1.asm diff --git a/gfx/pics/phanpy/back.2bpp.lz.a5c509b8 b/gfx/pokemon/phanpy/back.2bpp.lz.a5c509b8 similarity index 100% rename from gfx/pics/phanpy/back.2bpp.lz.a5c509b8 rename to gfx/pokemon/phanpy/back.2bpp.lz.a5c509b8 diff --git a/gfx/pics/phanpy/back.png b/gfx/pokemon/phanpy/back.png similarity index 100% rename from gfx/pics/phanpy/back.png rename to gfx/pokemon/phanpy/back.png diff --git a/gfx/pics/phanpy/front.animated.2bpp.lz.53b49445 b/gfx/pokemon/phanpy/front.animated.2bpp.lz.53b49445 similarity index 100% rename from gfx/pics/phanpy/front.animated.2bpp.lz.53b49445 rename to gfx/pokemon/phanpy/front.animated.2bpp.lz.53b49445 diff --git a/gfx/pics/phanpy/front.png b/gfx/pokemon/phanpy/front.png similarity index 100% rename from gfx/pics/phanpy/front.png rename to gfx/pokemon/phanpy/front.png diff --git a/gfx/pics/phanpy/shiny.pal b/gfx/pokemon/phanpy/shiny.pal similarity index 100% rename from gfx/pics/phanpy/shiny.pal rename to gfx/pokemon/phanpy/shiny.pal diff --git a/gfx/pics/pic_pointers.asm b/gfx/pokemon/pic_pointers.asm similarity index 100% rename from gfx/pics/pic_pointers.asm rename to gfx/pokemon/pic_pointers.asm diff --git a/gfx/pics/pichu/anim0.asm b/gfx/pokemon/pichu/anim0.asm similarity index 100% rename from gfx/pics/pichu/anim0.asm rename to gfx/pokemon/pichu/anim0.asm diff --git a/gfx/pics/pichu/anim1.asm b/gfx/pokemon/pichu/anim1.asm similarity index 100% rename from gfx/pics/pichu/anim1.asm rename to gfx/pokemon/pichu/anim1.asm diff --git a/gfx/pics/pichu/back.2bpp.lz.c5580983 b/gfx/pokemon/pichu/back.2bpp.lz.c5580983 similarity index 100% rename from gfx/pics/pichu/back.2bpp.lz.c5580983 rename to gfx/pokemon/pichu/back.2bpp.lz.c5580983 diff --git a/gfx/pics/pichu/back.png b/gfx/pokemon/pichu/back.png similarity index 100% rename from gfx/pics/pichu/back.png rename to gfx/pokemon/pichu/back.png diff --git a/gfx/pics/pichu/front.animated.2bpp.lz.9c1c3bef b/gfx/pokemon/pichu/front.animated.2bpp.lz.9c1c3bef similarity index 100% rename from gfx/pics/pichu/front.animated.2bpp.lz.9c1c3bef rename to gfx/pokemon/pichu/front.animated.2bpp.lz.9c1c3bef diff --git a/gfx/pics/pichu/front.png b/gfx/pokemon/pichu/front.png similarity index 100% rename from gfx/pics/pichu/front.png rename to gfx/pokemon/pichu/front.png diff --git a/gfx/pics/pichu/shiny.pal b/gfx/pokemon/pichu/shiny.pal similarity index 100% rename from gfx/pics/pichu/shiny.pal rename to gfx/pokemon/pichu/shiny.pal diff --git a/gfx/pics/pidgeot/anim0.asm b/gfx/pokemon/pidgeot/anim0.asm similarity index 100% rename from gfx/pics/pidgeot/anim0.asm rename to gfx/pokemon/pidgeot/anim0.asm diff --git a/gfx/pics/pidgeot/anim1.asm b/gfx/pokemon/pidgeot/anim1.asm similarity index 100% rename from gfx/pics/pidgeot/anim1.asm rename to gfx/pokemon/pidgeot/anim1.asm diff --git a/gfx/pics/pidgeot/back.2bpp.lz.7d9e44a5 b/gfx/pokemon/pidgeot/back.2bpp.lz.7d9e44a5 similarity index 100% rename from gfx/pics/pidgeot/back.2bpp.lz.7d9e44a5 rename to gfx/pokemon/pidgeot/back.2bpp.lz.7d9e44a5 diff --git a/gfx/pics/pidgeot/back.png b/gfx/pokemon/pidgeot/back.png similarity index 100% rename from gfx/pics/pidgeot/back.png rename to gfx/pokemon/pidgeot/back.png diff --git a/gfx/pics/pidgeot/front.animated.2bpp.lz.c161ad71 b/gfx/pokemon/pidgeot/front.animated.2bpp.lz.c161ad71 similarity index 100% rename from gfx/pics/pidgeot/front.animated.2bpp.lz.c161ad71 rename to gfx/pokemon/pidgeot/front.animated.2bpp.lz.c161ad71 diff --git a/gfx/pics/pidgeot/front.png b/gfx/pokemon/pidgeot/front.png similarity index 100% rename from gfx/pics/pidgeot/front.png rename to gfx/pokemon/pidgeot/front.png diff --git a/gfx/pics/pidgeot/shiny.pal b/gfx/pokemon/pidgeot/shiny.pal similarity index 100% rename from gfx/pics/pidgeot/shiny.pal rename to gfx/pokemon/pidgeot/shiny.pal diff --git a/gfx/pics/pidgeotto/anim0.asm b/gfx/pokemon/pidgeotto/anim0.asm similarity index 100% rename from gfx/pics/pidgeotto/anim0.asm rename to gfx/pokemon/pidgeotto/anim0.asm diff --git a/gfx/pics/pidgeotto/anim1.asm b/gfx/pokemon/pidgeotto/anim1.asm similarity index 100% rename from gfx/pics/pidgeotto/anim1.asm rename to gfx/pokemon/pidgeotto/anim1.asm diff --git a/gfx/pics/pidgeotto/back.2bpp.lz.8a0dd470 b/gfx/pokemon/pidgeotto/back.2bpp.lz.8a0dd470 similarity index 100% rename from gfx/pics/pidgeotto/back.2bpp.lz.8a0dd470 rename to gfx/pokemon/pidgeotto/back.2bpp.lz.8a0dd470 diff --git a/gfx/pics/pidgeotto/back.png b/gfx/pokemon/pidgeotto/back.png similarity index 100% rename from gfx/pics/pidgeotto/back.png rename to gfx/pokemon/pidgeotto/back.png diff --git a/gfx/pics/pidgeotto/front.animated.2bpp.lz.8ce78b51 b/gfx/pokemon/pidgeotto/front.animated.2bpp.lz.8ce78b51 similarity index 100% rename from gfx/pics/pidgeotto/front.animated.2bpp.lz.8ce78b51 rename to gfx/pokemon/pidgeotto/front.animated.2bpp.lz.8ce78b51 diff --git a/gfx/pics/pidgeotto/front.png b/gfx/pokemon/pidgeotto/front.png similarity index 100% rename from gfx/pics/pidgeotto/front.png rename to gfx/pokemon/pidgeotto/front.png diff --git a/gfx/pics/pidgeotto/shiny.pal b/gfx/pokemon/pidgeotto/shiny.pal similarity index 100% rename from gfx/pics/pidgeotto/shiny.pal rename to gfx/pokemon/pidgeotto/shiny.pal diff --git a/gfx/pics/pidgey/anim0.asm b/gfx/pokemon/pidgey/anim0.asm similarity index 100% rename from gfx/pics/pidgey/anim0.asm rename to gfx/pokemon/pidgey/anim0.asm diff --git a/gfx/pics/pidgey/anim1.asm b/gfx/pokemon/pidgey/anim1.asm similarity index 100% rename from gfx/pics/pidgey/anim1.asm rename to gfx/pokemon/pidgey/anim1.asm diff --git a/gfx/pics/pidgey/back.2bpp.lz.027129e8 b/gfx/pokemon/pidgey/back.2bpp.lz.027129e8 similarity index 100% rename from gfx/pics/pidgey/back.2bpp.lz.027129e8 rename to gfx/pokemon/pidgey/back.2bpp.lz.027129e8 diff --git a/gfx/pics/pidgey/back.png b/gfx/pokemon/pidgey/back.png similarity index 100% rename from gfx/pics/pidgey/back.png rename to gfx/pokemon/pidgey/back.png diff --git a/gfx/pics/pidgey/front.animated.2bpp.lz.9acd46ca b/gfx/pokemon/pidgey/front.animated.2bpp.lz.9acd46ca similarity index 100% rename from gfx/pics/pidgey/front.animated.2bpp.lz.9acd46ca rename to gfx/pokemon/pidgey/front.animated.2bpp.lz.9acd46ca diff --git a/gfx/pics/pidgey/front.png b/gfx/pokemon/pidgey/front.png similarity index 100% rename from gfx/pics/pidgey/front.png rename to gfx/pokemon/pidgey/front.png diff --git a/gfx/pics/pidgey/shiny.pal b/gfx/pokemon/pidgey/shiny.pal similarity index 100% rename from gfx/pics/pidgey/shiny.pal rename to gfx/pokemon/pidgey/shiny.pal diff --git a/gfx/pics/pikachu/anim0.asm b/gfx/pokemon/pikachu/anim0.asm similarity index 100% rename from gfx/pics/pikachu/anim0.asm rename to gfx/pokemon/pikachu/anim0.asm diff --git a/gfx/pics/pikachu/anim1.asm b/gfx/pokemon/pikachu/anim1.asm similarity index 100% rename from gfx/pics/pikachu/anim1.asm rename to gfx/pokemon/pikachu/anim1.asm diff --git a/gfx/pics/pikachu/back.2bpp.lz.98998807 b/gfx/pokemon/pikachu/back.2bpp.lz.98998807 similarity index 100% rename from gfx/pics/pikachu/back.2bpp.lz.98998807 rename to gfx/pokemon/pikachu/back.2bpp.lz.98998807 diff --git a/gfx/pics/pikachu/back.png b/gfx/pokemon/pikachu/back.png similarity index 100% rename from gfx/pics/pikachu/back.png rename to gfx/pokemon/pikachu/back.png diff --git a/gfx/pics/pikachu/front.animated.2bpp.lz.9c100565 b/gfx/pokemon/pikachu/front.animated.2bpp.lz.9c100565 similarity index 100% rename from gfx/pics/pikachu/front.animated.2bpp.lz.9c100565 rename to gfx/pokemon/pikachu/front.animated.2bpp.lz.9c100565 diff --git a/gfx/pics/pikachu/front.png b/gfx/pokemon/pikachu/front.png similarity index 100% rename from gfx/pics/pikachu/front.png rename to gfx/pokemon/pikachu/front.png diff --git a/gfx/pics/pikachu/shiny.pal b/gfx/pokemon/pikachu/shiny.pal similarity index 100% rename from gfx/pics/pikachu/shiny.pal rename to gfx/pokemon/pikachu/shiny.pal diff --git a/gfx/pics/piloswine/anim0.asm b/gfx/pokemon/piloswine/anim0.asm similarity index 100% rename from gfx/pics/piloswine/anim0.asm rename to gfx/pokemon/piloswine/anim0.asm diff --git a/gfx/pics/piloswine/anim1.asm b/gfx/pokemon/piloswine/anim1.asm similarity index 100% rename from gfx/pics/piloswine/anim1.asm rename to gfx/pokemon/piloswine/anim1.asm diff --git a/gfx/pics/piloswine/back.2bpp.lz.6fe7da21 b/gfx/pokemon/piloswine/back.2bpp.lz.6fe7da21 similarity index 100% rename from gfx/pics/piloswine/back.2bpp.lz.6fe7da21 rename to gfx/pokemon/piloswine/back.2bpp.lz.6fe7da21 diff --git a/gfx/pics/piloswine/back.png b/gfx/pokemon/piloswine/back.png similarity index 100% rename from gfx/pics/piloswine/back.png rename to gfx/pokemon/piloswine/back.png diff --git a/gfx/pics/piloswine/front.animated.2bpp.lz.f6f37ed2 b/gfx/pokemon/piloswine/front.animated.2bpp.lz.f6f37ed2 similarity index 100% rename from gfx/pics/piloswine/front.animated.2bpp.lz.f6f37ed2 rename to gfx/pokemon/piloswine/front.animated.2bpp.lz.f6f37ed2 diff --git a/gfx/pics/piloswine/front.png b/gfx/pokemon/piloswine/front.png similarity index 100% rename from gfx/pics/piloswine/front.png rename to gfx/pokemon/piloswine/front.png diff --git a/gfx/pics/piloswine/shiny.pal b/gfx/pokemon/piloswine/shiny.pal similarity index 100% rename from gfx/pics/piloswine/shiny.pal rename to gfx/pokemon/piloswine/shiny.pal diff --git a/gfx/pics/pineco/anim0.asm b/gfx/pokemon/pineco/anim0.asm similarity index 100% rename from gfx/pics/pineco/anim0.asm rename to gfx/pokemon/pineco/anim0.asm diff --git a/gfx/pics/pineco/anim1.asm b/gfx/pokemon/pineco/anim1.asm similarity index 100% rename from gfx/pics/pineco/anim1.asm rename to gfx/pokemon/pineco/anim1.asm diff --git a/gfx/pics/pineco/back.2bpp.lz.70df8ca3 b/gfx/pokemon/pineco/back.2bpp.lz.70df8ca3 similarity index 100% rename from gfx/pics/pineco/back.2bpp.lz.70df8ca3 rename to gfx/pokemon/pineco/back.2bpp.lz.70df8ca3 diff --git a/gfx/pics/pineco/back.png b/gfx/pokemon/pineco/back.png similarity index 100% rename from gfx/pics/pineco/back.png rename to gfx/pokemon/pineco/back.png diff --git a/gfx/pics/pineco/front.animated.2bpp.lz.82d91497 b/gfx/pokemon/pineco/front.animated.2bpp.lz.82d91497 similarity index 100% rename from gfx/pics/pineco/front.animated.2bpp.lz.82d91497 rename to gfx/pokemon/pineco/front.animated.2bpp.lz.82d91497 diff --git a/gfx/pics/pineco/front.png b/gfx/pokemon/pineco/front.png similarity index 100% rename from gfx/pics/pineco/front.png rename to gfx/pokemon/pineco/front.png diff --git a/gfx/pics/pineco/shiny.pal b/gfx/pokemon/pineco/shiny.pal similarity index 100% rename from gfx/pics/pineco/shiny.pal rename to gfx/pokemon/pineco/shiny.pal diff --git a/gfx/pics/pinsir/anim0.asm b/gfx/pokemon/pinsir/anim0.asm similarity index 100% rename from gfx/pics/pinsir/anim0.asm rename to gfx/pokemon/pinsir/anim0.asm diff --git a/gfx/pics/pinsir/anim1.asm b/gfx/pokemon/pinsir/anim1.asm similarity index 100% rename from gfx/pics/pinsir/anim1.asm rename to gfx/pokemon/pinsir/anim1.asm diff --git a/gfx/pics/pinsir/back.2bpp.lz.09ac7dd4 b/gfx/pokemon/pinsir/back.2bpp.lz.09ac7dd4 similarity index 100% rename from gfx/pics/pinsir/back.2bpp.lz.09ac7dd4 rename to gfx/pokemon/pinsir/back.2bpp.lz.09ac7dd4 diff --git a/gfx/pics/pinsir/back.png b/gfx/pokemon/pinsir/back.png similarity index 100% rename from gfx/pics/pinsir/back.png rename to gfx/pokemon/pinsir/back.png diff --git a/gfx/pics/pinsir/front.animated.2bpp.lz.1e3839f2 b/gfx/pokemon/pinsir/front.animated.2bpp.lz.1e3839f2 similarity index 100% rename from gfx/pics/pinsir/front.animated.2bpp.lz.1e3839f2 rename to gfx/pokemon/pinsir/front.animated.2bpp.lz.1e3839f2 diff --git a/gfx/pics/pinsir/front.png b/gfx/pokemon/pinsir/front.png similarity index 100% rename from gfx/pics/pinsir/front.png rename to gfx/pokemon/pinsir/front.png diff --git a/gfx/pics/pinsir/shiny.pal b/gfx/pokemon/pinsir/shiny.pal similarity index 100% rename from gfx/pics/pinsir/shiny.pal rename to gfx/pokemon/pinsir/shiny.pal diff --git a/gfx/pics/politoed/anim0.asm b/gfx/pokemon/politoed/anim0.asm similarity index 100% rename from gfx/pics/politoed/anim0.asm rename to gfx/pokemon/politoed/anim0.asm diff --git a/gfx/pics/politoed/anim1.asm b/gfx/pokemon/politoed/anim1.asm similarity index 100% rename from gfx/pics/politoed/anim1.asm rename to gfx/pokemon/politoed/anim1.asm diff --git a/gfx/pics/politoed/back.2bpp.lz.7873e52f b/gfx/pokemon/politoed/back.2bpp.lz.7873e52f similarity index 100% rename from gfx/pics/politoed/back.2bpp.lz.7873e52f rename to gfx/pokemon/politoed/back.2bpp.lz.7873e52f diff --git a/gfx/pics/politoed/back.png b/gfx/pokemon/politoed/back.png similarity index 100% rename from gfx/pics/politoed/back.png rename to gfx/pokemon/politoed/back.png diff --git a/gfx/pics/politoed/front.animated.2bpp.lz.408a9c1a b/gfx/pokemon/politoed/front.animated.2bpp.lz.408a9c1a similarity index 100% rename from gfx/pics/politoed/front.animated.2bpp.lz.408a9c1a rename to gfx/pokemon/politoed/front.animated.2bpp.lz.408a9c1a diff --git a/gfx/pics/politoed/front.png b/gfx/pokemon/politoed/front.png similarity index 100% rename from gfx/pics/politoed/front.png rename to gfx/pokemon/politoed/front.png diff --git a/gfx/pics/politoed/shiny.pal b/gfx/pokemon/politoed/shiny.pal similarity index 100% rename from gfx/pics/politoed/shiny.pal rename to gfx/pokemon/politoed/shiny.pal diff --git a/gfx/pics/poliwag/anim0.asm b/gfx/pokemon/poliwag/anim0.asm similarity index 100% rename from gfx/pics/poliwag/anim0.asm rename to gfx/pokemon/poliwag/anim0.asm diff --git a/gfx/pics/poliwag/anim1.asm b/gfx/pokemon/poliwag/anim1.asm similarity index 100% rename from gfx/pics/poliwag/anim1.asm rename to gfx/pokemon/poliwag/anim1.asm diff --git a/gfx/pics/poliwag/back.2bpp.lz.35b9ee20 b/gfx/pokemon/poliwag/back.2bpp.lz.35b9ee20 similarity index 100% rename from gfx/pics/poliwag/back.2bpp.lz.35b9ee20 rename to gfx/pokemon/poliwag/back.2bpp.lz.35b9ee20 diff --git a/gfx/pics/poliwag/back.png b/gfx/pokemon/poliwag/back.png similarity index 100% rename from gfx/pics/poliwag/back.png rename to gfx/pokemon/poliwag/back.png diff --git a/gfx/pics/poliwag/front.animated.2bpp.lz.c7d26488 b/gfx/pokemon/poliwag/front.animated.2bpp.lz.c7d26488 similarity index 100% rename from gfx/pics/poliwag/front.animated.2bpp.lz.c7d26488 rename to gfx/pokemon/poliwag/front.animated.2bpp.lz.c7d26488 diff --git a/gfx/pics/poliwag/front.png b/gfx/pokemon/poliwag/front.png similarity index 100% rename from gfx/pics/poliwag/front.png rename to gfx/pokemon/poliwag/front.png diff --git a/gfx/pics/poliwag/shiny.pal b/gfx/pokemon/poliwag/shiny.pal similarity index 100% rename from gfx/pics/poliwag/shiny.pal rename to gfx/pokemon/poliwag/shiny.pal diff --git a/gfx/pics/poliwhirl/anim0.asm b/gfx/pokemon/poliwhirl/anim0.asm similarity index 100% rename from gfx/pics/poliwhirl/anim0.asm rename to gfx/pokemon/poliwhirl/anim0.asm diff --git a/gfx/pics/poliwhirl/anim1.asm b/gfx/pokemon/poliwhirl/anim1.asm similarity index 100% rename from gfx/pics/poliwhirl/anim1.asm rename to gfx/pokemon/poliwhirl/anim1.asm diff --git a/gfx/pics/poliwhirl/back.2bpp.lz.76564593 b/gfx/pokemon/poliwhirl/back.2bpp.lz.76564593 similarity index 100% rename from gfx/pics/poliwhirl/back.2bpp.lz.76564593 rename to gfx/pokemon/poliwhirl/back.2bpp.lz.76564593 diff --git a/gfx/pics/poliwhirl/back.png b/gfx/pokemon/poliwhirl/back.png similarity index 100% rename from gfx/pics/poliwhirl/back.png rename to gfx/pokemon/poliwhirl/back.png diff --git a/gfx/pics/poliwhirl/front.animated.2bpp.lz.9a36033f b/gfx/pokemon/poliwhirl/front.animated.2bpp.lz.9a36033f similarity index 100% rename from gfx/pics/poliwhirl/front.animated.2bpp.lz.9a36033f rename to gfx/pokemon/poliwhirl/front.animated.2bpp.lz.9a36033f diff --git a/gfx/pics/poliwhirl/front.png b/gfx/pokemon/poliwhirl/front.png similarity index 100% rename from gfx/pics/poliwhirl/front.png rename to gfx/pokemon/poliwhirl/front.png diff --git a/gfx/pics/poliwhirl/shiny.pal b/gfx/pokemon/poliwhirl/shiny.pal similarity index 100% rename from gfx/pics/poliwhirl/shiny.pal rename to gfx/pokemon/poliwhirl/shiny.pal diff --git a/gfx/pics/poliwrath/anim0.asm b/gfx/pokemon/poliwrath/anim0.asm similarity index 100% rename from gfx/pics/poliwrath/anim0.asm rename to gfx/pokemon/poliwrath/anim0.asm diff --git a/gfx/pics/poliwrath/anim1.asm b/gfx/pokemon/poliwrath/anim1.asm similarity index 100% rename from gfx/pics/poliwrath/anim1.asm rename to gfx/pokemon/poliwrath/anim1.asm diff --git a/gfx/pics/poliwrath/back.2bpp.lz.240e911e b/gfx/pokemon/poliwrath/back.2bpp.lz.240e911e similarity index 100% rename from gfx/pics/poliwrath/back.2bpp.lz.240e911e rename to gfx/pokemon/poliwrath/back.2bpp.lz.240e911e diff --git a/gfx/pics/poliwrath/back.png b/gfx/pokemon/poliwrath/back.png similarity index 100% rename from gfx/pics/poliwrath/back.png rename to gfx/pokemon/poliwrath/back.png diff --git a/gfx/pics/poliwrath/front.animated.2bpp.lz.fb1157ec b/gfx/pokemon/poliwrath/front.animated.2bpp.lz.fb1157ec similarity index 100% rename from gfx/pics/poliwrath/front.animated.2bpp.lz.fb1157ec rename to gfx/pokemon/poliwrath/front.animated.2bpp.lz.fb1157ec diff --git a/gfx/pics/poliwrath/front.png b/gfx/pokemon/poliwrath/front.png similarity index 100% rename from gfx/pics/poliwrath/front.png rename to gfx/pokemon/poliwrath/front.png diff --git a/gfx/pics/poliwrath/shiny.pal b/gfx/pokemon/poliwrath/shiny.pal similarity index 100% rename from gfx/pics/poliwrath/shiny.pal rename to gfx/pokemon/poliwrath/shiny.pal diff --git a/gfx/pics/ponyta/anim0.asm b/gfx/pokemon/ponyta/anim0.asm similarity index 100% rename from gfx/pics/ponyta/anim0.asm rename to gfx/pokemon/ponyta/anim0.asm diff --git a/gfx/pics/ponyta/anim1.asm b/gfx/pokemon/ponyta/anim1.asm similarity index 100% rename from gfx/pics/ponyta/anim1.asm rename to gfx/pokemon/ponyta/anim1.asm diff --git a/gfx/pics/ponyta/back.2bpp.lz.10ddc7ea b/gfx/pokemon/ponyta/back.2bpp.lz.10ddc7ea similarity index 100% rename from gfx/pics/ponyta/back.2bpp.lz.10ddc7ea rename to gfx/pokemon/ponyta/back.2bpp.lz.10ddc7ea diff --git a/gfx/pics/ponyta/back.png b/gfx/pokemon/ponyta/back.png similarity index 100% rename from gfx/pics/ponyta/back.png rename to gfx/pokemon/ponyta/back.png diff --git a/gfx/pics/ponyta/front.animated.2bpp.lz.2c8708d6 b/gfx/pokemon/ponyta/front.animated.2bpp.lz.2c8708d6 similarity index 100% rename from gfx/pics/ponyta/front.animated.2bpp.lz.2c8708d6 rename to gfx/pokemon/ponyta/front.animated.2bpp.lz.2c8708d6 diff --git a/gfx/pics/ponyta/front.png b/gfx/pokemon/ponyta/front.png similarity index 100% rename from gfx/pics/ponyta/front.png rename to gfx/pokemon/ponyta/front.png diff --git a/gfx/pics/ponyta/shiny.pal b/gfx/pokemon/ponyta/shiny.pal similarity index 100% rename from gfx/pics/ponyta/shiny.pal rename to gfx/pokemon/ponyta/shiny.pal diff --git a/gfx/pics/porygon/anim0.asm b/gfx/pokemon/porygon/anim0.asm similarity index 100% rename from gfx/pics/porygon/anim0.asm rename to gfx/pokemon/porygon/anim0.asm diff --git a/gfx/pics/porygon/anim1.asm b/gfx/pokemon/porygon/anim1.asm similarity index 100% rename from gfx/pics/porygon/anim1.asm rename to gfx/pokemon/porygon/anim1.asm diff --git a/gfx/pics/porygon/back.2bpp.lz.b3d71350 b/gfx/pokemon/porygon/back.2bpp.lz.b3d71350 similarity index 100% rename from gfx/pics/porygon/back.2bpp.lz.b3d71350 rename to gfx/pokemon/porygon/back.2bpp.lz.b3d71350 diff --git a/gfx/pics/porygon/back.png b/gfx/pokemon/porygon/back.png similarity index 100% rename from gfx/pics/porygon/back.png rename to gfx/pokemon/porygon/back.png diff --git a/gfx/pics/porygon/front.animated.2bpp.lz.70fc1333 b/gfx/pokemon/porygon/front.animated.2bpp.lz.70fc1333 similarity index 100% rename from gfx/pics/porygon/front.animated.2bpp.lz.70fc1333 rename to gfx/pokemon/porygon/front.animated.2bpp.lz.70fc1333 diff --git a/gfx/pics/porygon/front.png b/gfx/pokemon/porygon/front.png similarity index 100% rename from gfx/pics/porygon/front.png rename to gfx/pokemon/porygon/front.png diff --git a/gfx/pics/porygon/shiny.pal b/gfx/pokemon/porygon/shiny.pal similarity index 100% rename from gfx/pics/porygon/shiny.pal rename to gfx/pokemon/porygon/shiny.pal diff --git a/gfx/pics/porygon2/anim0.asm b/gfx/pokemon/porygon2/anim0.asm similarity index 100% rename from gfx/pics/porygon2/anim0.asm rename to gfx/pokemon/porygon2/anim0.asm diff --git a/gfx/pics/porygon2/anim1.asm b/gfx/pokemon/porygon2/anim1.asm similarity index 100% rename from gfx/pics/porygon2/anim1.asm rename to gfx/pokemon/porygon2/anim1.asm diff --git a/gfx/pics/porygon2/back.2bpp.lz.5bba6e40 b/gfx/pokemon/porygon2/back.2bpp.lz.5bba6e40 similarity index 100% rename from gfx/pics/porygon2/back.2bpp.lz.5bba6e40 rename to gfx/pokemon/porygon2/back.2bpp.lz.5bba6e40 diff --git a/gfx/pics/porygon2/back.png b/gfx/pokemon/porygon2/back.png similarity index 100% rename from gfx/pics/porygon2/back.png rename to gfx/pokemon/porygon2/back.png diff --git a/gfx/pics/porygon2/front.animated.2bpp.lz.a6410e75 b/gfx/pokemon/porygon2/front.animated.2bpp.lz.a6410e75 similarity index 100% rename from gfx/pics/porygon2/front.animated.2bpp.lz.a6410e75 rename to gfx/pokemon/porygon2/front.animated.2bpp.lz.a6410e75 diff --git a/gfx/pics/porygon2/front.png b/gfx/pokemon/porygon2/front.png similarity index 100% rename from gfx/pics/porygon2/front.png rename to gfx/pokemon/porygon2/front.png diff --git a/gfx/pics/porygon2/shiny.pal b/gfx/pokemon/porygon2/shiny.pal similarity index 100% rename from gfx/pics/porygon2/shiny.pal rename to gfx/pokemon/porygon2/shiny.pal diff --git a/gfx/pics/primeape/anim0.asm b/gfx/pokemon/primeape/anim0.asm similarity index 100% rename from gfx/pics/primeape/anim0.asm rename to gfx/pokemon/primeape/anim0.asm diff --git a/gfx/pics/primeape/anim1.asm b/gfx/pokemon/primeape/anim1.asm similarity index 100% rename from gfx/pics/primeape/anim1.asm rename to gfx/pokemon/primeape/anim1.asm diff --git a/gfx/pics/primeape/back.2bpp.lz.690e407d b/gfx/pokemon/primeape/back.2bpp.lz.690e407d similarity index 100% rename from gfx/pics/primeape/back.2bpp.lz.690e407d rename to gfx/pokemon/primeape/back.2bpp.lz.690e407d diff --git a/gfx/pics/primeape/back.png b/gfx/pokemon/primeape/back.png similarity index 100% rename from gfx/pics/primeape/back.png rename to gfx/pokemon/primeape/back.png diff --git a/gfx/pics/primeape/front.animated.2bpp.lz.218352ec b/gfx/pokemon/primeape/front.animated.2bpp.lz.218352ec similarity index 100% rename from gfx/pics/primeape/front.animated.2bpp.lz.218352ec rename to gfx/pokemon/primeape/front.animated.2bpp.lz.218352ec diff --git a/gfx/pics/primeape/front.png b/gfx/pokemon/primeape/front.png similarity index 100% rename from gfx/pics/primeape/front.png rename to gfx/pokemon/primeape/front.png diff --git a/gfx/pics/primeape/shiny.pal b/gfx/pokemon/primeape/shiny.pal similarity index 100% rename from gfx/pics/primeape/shiny.pal rename to gfx/pokemon/primeape/shiny.pal diff --git a/gfx/pics/psyduck/anim0.asm b/gfx/pokemon/psyduck/anim0.asm similarity index 100% rename from gfx/pics/psyduck/anim0.asm rename to gfx/pokemon/psyduck/anim0.asm diff --git a/gfx/pics/psyduck/anim1.asm b/gfx/pokemon/psyduck/anim1.asm similarity index 100% rename from gfx/pics/psyduck/anim1.asm rename to gfx/pokemon/psyduck/anim1.asm diff --git a/gfx/pics/psyduck/back.2bpp.lz.d68cddb2 b/gfx/pokemon/psyduck/back.2bpp.lz.d68cddb2 similarity index 100% rename from gfx/pics/psyduck/back.2bpp.lz.d68cddb2 rename to gfx/pokemon/psyduck/back.2bpp.lz.d68cddb2 diff --git a/gfx/pics/psyduck/back.png b/gfx/pokemon/psyduck/back.png similarity index 100% rename from gfx/pics/psyduck/back.png rename to gfx/pokemon/psyduck/back.png diff --git a/gfx/pics/psyduck/front.animated.2bpp.lz.e4efd065 b/gfx/pokemon/psyduck/front.animated.2bpp.lz.e4efd065 similarity index 100% rename from gfx/pics/psyduck/front.animated.2bpp.lz.e4efd065 rename to gfx/pokemon/psyduck/front.animated.2bpp.lz.e4efd065 diff --git a/gfx/pics/psyduck/front.png b/gfx/pokemon/psyduck/front.png similarity index 100% rename from gfx/pics/psyduck/front.png rename to gfx/pokemon/psyduck/front.png diff --git a/gfx/pics/psyduck/shiny.pal b/gfx/pokemon/psyduck/shiny.pal similarity index 100% rename from gfx/pics/psyduck/shiny.pal rename to gfx/pokemon/psyduck/shiny.pal diff --git a/gfx/pics/pupitar/anim0.asm b/gfx/pokemon/pupitar/anim0.asm similarity index 100% rename from gfx/pics/pupitar/anim0.asm rename to gfx/pokemon/pupitar/anim0.asm diff --git a/gfx/pics/pupitar/anim1.asm b/gfx/pokemon/pupitar/anim1.asm similarity index 100% rename from gfx/pics/pupitar/anim1.asm rename to gfx/pokemon/pupitar/anim1.asm diff --git a/gfx/pics/pupitar/back.2bpp.lz.100020c1 b/gfx/pokemon/pupitar/back.2bpp.lz.100020c1 similarity index 100% rename from gfx/pics/pupitar/back.2bpp.lz.100020c1 rename to gfx/pokemon/pupitar/back.2bpp.lz.100020c1 diff --git a/gfx/pics/pupitar/back.png b/gfx/pokemon/pupitar/back.png similarity index 100% rename from gfx/pics/pupitar/back.png rename to gfx/pokemon/pupitar/back.png diff --git a/gfx/pics/pupitar/front.animated.2bpp.lz.418c0962 b/gfx/pokemon/pupitar/front.animated.2bpp.lz.418c0962 similarity index 100% rename from gfx/pics/pupitar/front.animated.2bpp.lz.418c0962 rename to gfx/pokemon/pupitar/front.animated.2bpp.lz.418c0962 diff --git a/gfx/pics/pupitar/front.png b/gfx/pokemon/pupitar/front.png similarity index 100% rename from gfx/pics/pupitar/front.png rename to gfx/pokemon/pupitar/front.png diff --git a/gfx/pics/pupitar/shiny.pal b/gfx/pokemon/pupitar/shiny.pal similarity index 100% rename from gfx/pics/pupitar/shiny.pal rename to gfx/pokemon/pupitar/shiny.pal diff --git a/gfx/pics/quagsire/anim0.asm b/gfx/pokemon/quagsire/anim0.asm similarity index 100% rename from gfx/pics/quagsire/anim0.asm rename to gfx/pokemon/quagsire/anim0.asm diff --git a/gfx/pics/quagsire/anim1.asm b/gfx/pokemon/quagsire/anim1.asm similarity index 100% rename from gfx/pics/quagsire/anim1.asm rename to gfx/pokemon/quagsire/anim1.asm diff --git a/gfx/pics/quagsire/back.2bpp.lz.64b2ec05 b/gfx/pokemon/quagsire/back.2bpp.lz.64b2ec05 similarity index 100% rename from gfx/pics/quagsire/back.2bpp.lz.64b2ec05 rename to gfx/pokemon/quagsire/back.2bpp.lz.64b2ec05 diff --git a/gfx/pics/quagsire/back.png b/gfx/pokemon/quagsire/back.png similarity index 100% rename from gfx/pics/quagsire/back.png rename to gfx/pokemon/quagsire/back.png diff --git a/gfx/pics/quagsire/front.animated.2bpp.lz.bd292a94 b/gfx/pokemon/quagsire/front.animated.2bpp.lz.bd292a94 similarity index 100% rename from gfx/pics/quagsire/front.animated.2bpp.lz.bd292a94 rename to gfx/pokemon/quagsire/front.animated.2bpp.lz.bd292a94 diff --git a/gfx/pics/quagsire/front.png b/gfx/pokemon/quagsire/front.png similarity index 100% rename from gfx/pics/quagsire/front.png rename to gfx/pokemon/quagsire/front.png diff --git a/gfx/pics/quagsire/shiny.pal b/gfx/pokemon/quagsire/shiny.pal similarity index 100% rename from gfx/pics/quagsire/shiny.pal rename to gfx/pokemon/quagsire/shiny.pal diff --git a/gfx/pics/questionmark/front.2bpp.lz.14c284f5 b/gfx/pokemon/questionmark/front.2bpp.lz.14c284f5 similarity index 100% rename from gfx/pics/questionmark/front.2bpp.lz.14c284f5 rename to gfx/pokemon/questionmark/front.2bpp.lz.14c284f5 diff --git a/gfx/pics/questionmark/front.png b/gfx/pokemon/questionmark/front.png similarity index 100% rename from gfx/pics/questionmark/front.png rename to gfx/pokemon/questionmark/front.png diff --git a/gfx/pics/quilava/anim0.asm b/gfx/pokemon/quilava/anim0.asm similarity index 100% rename from gfx/pics/quilava/anim0.asm rename to gfx/pokemon/quilava/anim0.asm diff --git a/gfx/pics/quilava/anim1.asm b/gfx/pokemon/quilava/anim1.asm similarity index 100% rename from gfx/pics/quilava/anim1.asm rename to gfx/pokemon/quilava/anim1.asm diff --git a/gfx/pics/quilava/back.2bpp.lz.500906e1 b/gfx/pokemon/quilava/back.2bpp.lz.500906e1 similarity index 100% rename from gfx/pics/quilava/back.2bpp.lz.500906e1 rename to gfx/pokemon/quilava/back.2bpp.lz.500906e1 diff --git a/gfx/pics/quilava/back.png b/gfx/pokemon/quilava/back.png similarity index 100% rename from gfx/pics/quilava/back.png rename to gfx/pokemon/quilava/back.png diff --git a/gfx/pics/quilava/front.animated.2bpp.lz.f42f4c67 b/gfx/pokemon/quilava/front.animated.2bpp.lz.f42f4c67 similarity index 100% rename from gfx/pics/quilava/front.animated.2bpp.lz.f42f4c67 rename to gfx/pokemon/quilava/front.animated.2bpp.lz.f42f4c67 diff --git a/gfx/pics/quilava/front.png b/gfx/pokemon/quilava/front.png similarity index 100% rename from gfx/pics/quilava/front.png rename to gfx/pokemon/quilava/front.png diff --git a/gfx/pics/quilava/shiny.pal b/gfx/pokemon/quilava/shiny.pal similarity index 100% rename from gfx/pics/quilava/shiny.pal rename to gfx/pokemon/quilava/shiny.pal diff --git a/gfx/pics/qwilfish/anim0.asm b/gfx/pokemon/qwilfish/anim0.asm similarity index 100% rename from gfx/pics/qwilfish/anim0.asm rename to gfx/pokemon/qwilfish/anim0.asm diff --git a/gfx/pics/qwilfish/anim1.asm b/gfx/pokemon/qwilfish/anim1.asm similarity index 100% rename from gfx/pics/qwilfish/anim1.asm rename to gfx/pokemon/qwilfish/anim1.asm diff --git a/gfx/pics/qwilfish/back.2bpp.lz.b2bb83c6 b/gfx/pokemon/qwilfish/back.2bpp.lz.b2bb83c6 similarity index 100% rename from gfx/pics/qwilfish/back.2bpp.lz.b2bb83c6 rename to gfx/pokemon/qwilfish/back.2bpp.lz.b2bb83c6 diff --git a/gfx/pics/qwilfish/back.png b/gfx/pokemon/qwilfish/back.png similarity index 100% rename from gfx/pics/qwilfish/back.png rename to gfx/pokemon/qwilfish/back.png diff --git a/gfx/pics/qwilfish/front.animated.2bpp.lz.9e79c033 b/gfx/pokemon/qwilfish/front.animated.2bpp.lz.9e79c033 similarity index 100% rename from gfx/pics/qwilfish/front.animated.2bpp.lz.9e79c033 rename to gfx/pokemon/qwilfish/front.animated.2bpp.lz.9e79c033 diff --git a/gfx/pics/qwilfish/front.png b/gfx/pokemon/qwilfish/front.png similarity index 100% rename from gfx/pics/qwilfish/front.png rename to gfx/pokemon/qwilfish/front.png diff --git a/gfx/pics/qwilfish/shiny.pal b/gfx/pokemon/qwilfish/shiny.pal similarity index 100% rename from gfx/pics/qwilfish/shiny.pal rename to gfx/pokemon/qwilfish/shiny.pal diff --git a/gfx/pics/raichu/anim0.asm b/gfx/pokemon/raichu/anim0.asm similarity index 100% rename from gfx/pics/raichu/anim0.asm rename to gfx/pokemon/raichu/anim0.asm diff --git a/gfx/pics/raichu/anim1.asm b/gfx/pokemon/raichu/anim1.asm similarity index 100% rename from gfx/pics/raichu/anim1.asm rename to gfx/pokemon/raichu/anim1.asm diff --git a/gfx/pics/raichu/back.2bpp.lz.fa4c7423 b/gfx/pokemon/raichu/back.2bpp.lz.fa4c7423 similarity index 100% rename from gfx/pics/raichu/back.2bpp.lz.fa4c7423 rename to gfx/pokemon/raichu/back.2bpp.lz.fa4c7423 diff --git a/gfx/pics/raichu/back.png b/gfx/pokemon/raichu/back.png similarity index 100% rename from gfx/pics/raichu/back.png rename to gfx/pokemon/raichu/back.png diff --git a/gfx/pics/raichu/front.animated.2bpp.lz.25f943cb b/gfx/pokemon/raichu/front.animated.2bpp.lz.25f943cb similarity index 100% rename from gfx/pics/raichu/front.animated.2bpp.lz.25f943cb rename to gfx/pokemon/raichu/front.animated.2bpp.lz.25f943cb diff --git a/gfx/pics/raichu/front.png b/gfx/pokemon/raichu/front.png similarity index 100% rename from gfx/pics/raichu/front.png rename to gfx/pokemon/raichu/front.png diff --git a/gfx/pics/raichu/shiny.pal b/gfx/pokemon/raichu/shiny.pal similarity index 100% rename from gfx/pics/raichu/shiny.pal rename to gfx/pokemon/raichu/shiny.pal diff --git a/gfx/pics/raikou/anim0.asm b/gfx/pokemon/raikou/anim0.asm similarity index 100% rename from gfx/pics/raikou/anim0.asm rename to gfx/pokemon/raikou/anim0.asm diff --git a/gfx/pics/raikou/anim1.asm b/gfx/pokemon/raikou/anim1.asm similarity index 100% rename from gfx/pics/raikou/anim1.asm rename to gfx/pokemon/raikou/anim1.asm diff --git a/gfx/pics/raikou/back.2bpp.lz.657ddfaf b/gfx/pokemon/raikou/back.2bpp.lz.657ddfaf similarity index 100% rename from gfx/pics/raikou/back.2bpp.lz.657ddfaf rename to gfx/pokemon/raikou/back.2bpp.lz.657ddfaf diff --git a/gfx/pics/raikou/back.png b/gfx/pokemon/raikou/back.png similarity index 100% rename from gfx/pics/raikou/back.png rename to gfx/pokemon/raikou/back.png diff --git a/gfx/pics/raikou/front.animated.2bpp.lz.464b6fd7 b/gfx/pokemon/raikou/front.animated.2bpp.lz.464b6fd7 similarity index 100% rename from gfx/pics/raikou/front.animated.2bpp.lz.464b6fd7 rename to gfx/pokemon/raikou/front.animated.2bpp.lz.464b6fd7 diff --git a/gfx/pics/raikou/front.png b/gfx/pokemon/raikou/front.png similarity index 100% rename from gfx/pics/raikou/front.png rename to gfx/pokemon/raikou/front.png diff --git a/gfx/pics/raikou/shiny.pal b/gfx/pokemon/raikou/shiny.pal similarity index 100% rename from gfx/pics/raikou/shiny.pal rename to gfx/pokemon/raikou/shiny.pal diff --git a/gfx/pics/rapidash/anim0.asm b/gfx/pokemon/rapidash/anim0.asm similarity index 100% rename from gfx/pics/rapidash/anim0.asm rename to gfx/pokemon/rapidash/anim0.asm diff --git a/gfx/pics/rapidash/anim1.asm b/gfx/pokemon/rapidash/anim1.asm similarity index 100% rename from gfx/pics/rapidash/anim1.asm rename to gfx/pokemon/rapidash/anim1.asm diff --git a/gfx/pics/rapidash/back.2bpp.lz.fdd1946c b/gfx/pokemon/rapidash/back.2bpp.lz.fdd1946c similarity index 100% rename from gfx/pics/rapidash/back.2bpp.lz.fdd1946c rename to gfx/pokemon/rapidash/back.2bpp.lz.fdd1946c diff --git a/gfx/pics/rapidash/back.png b/gfx/pokemon/rapidash/back.png similarity index 100% rename from gfx/pics/rapidash/back.png rename to gfx/pokemon/rapidash/back.png diff --git a/gfx/pics/rapidash/front.animated.2bpp.lz.d5ac5a96 b/gfx/pokemon/rapidash/front.animated.2bpp.lz.d5ac5a96 similarity index 100% rename from gfx/pics/rapidash/front.animated.2bpp.lz.d5ac5a96 rename to gfx/pokemon/rapidash/front.animated.2bpp.lz.d5ac5a96 diff --git a/gfx/pics/rapidash/front.png b/gfx/pokemon/rapidash/front.png similarity index 100% rename from gfx/pics/rapidash/front.png rename to gfx/pokemon/rapidash/front.png diff --git a/gfx/pics/rapidash/shiny.pal b/gfx/pokemon/rapidash/shiny.pal similarity index 100% rename from gfx/pics/rapidash/shiny.pal rename to gfx/pokemon/rapidash/shiny.pal diff --git a/gfx/pics/raticate/anim0.asm b/gfx/pokemon/raticate/anim0.asm similarity index 100% rename from gfx/pics/raticate/anim0.asm rename to gfx/pokemon/raticate/anim0.asm diff --git a/gfx/pics/raticate/anim1.asm b/gfx/pokemon/raticate/anim1.asm similarity index 100% rename from gfx/pics/raticate/anim1.asm rename to gfx/pokemon/raticate/anim1.asm diff --git a/gfx/pics/raticate/back.2bpp.lz.b2a77d02 b/gfx/pokemon/raticate/back.2bpp.lz.b2a77d02 similarity index 100% rename from gfx/pics/raticate/back.2bpp.lz.b2a77d02 rename to gfx/pokemon/raticate/back.2bpp.lz.b2a77d02 diff --git a/gfx/pics/raticate/back.png b/gfx/pokemon/raticate/back.png similarity index 100% rename from gfx/pics/raticate/back.png rename to gfx/pokemon/raticate/back.png diff --git a/gfx/pics/raticate/front.animated.2bpp.lz.ef1a4689 b/gfx/pokemon/raticate/front.animated.2bpp.lz.ef1a4689 similarity index 100% rename from gfx/pics/raticate/front.animated.2bpp.lz.ef1a4689 rename to gfx/pokemon/raticate/front.animated.2bpp.lz.ef1a4689 diff --git a/gfx/pics/raticate/front.png b/gfx/pokemon/raticate/front.png similarity index 100% rename from gfx/pics/raticate/front.png rename to gfx/pokemon/raticate/front.png diff --git a/gfx/pics/raticate/shiny.pal b/gfx/pokemon/raticate/shiny.pal similarity index 100% rename from gfx/pics/raticate/shiny.pal rename to gfx/pokemon/raticate/shiny.pal diff --git a/gfx/pics/rattata/anim0.asm b/gfx/pokemon/rattata/anim0.asm similarity index 100% rename from gfx/pics/rattata/anim0.asm rename to gfx/pokemon/rattata/anim0.asm diff --git a/gfx/pics/rattata/anim1.asm b/gfx/pokemon/rattata/anim1.asm similarity index 100% rename from gfx/pics/rattata/anim1.asm rename to gfx/pokemon/rattata/anim1.asm diff --git a/gfx/pics/rattata/back.2bpp.lz.86979cd5 b/gfx/pokemon/rattata/back.2bpp.lz.86979cd5 similarity index 100% rename from gfx/pics/rattata/back.2bpp.lz.86979cd5 rename to gfx/pokemon/rattata/back.2bpp.lz.86979cd5 diff --git a/gfx/pics/rattata/back.png b/gfx/pokemon/rattata/back.png similarity index 100% rename from gfx/pics/rattata/back.png rename to gfx/pokemon/rattata/back.png diff --git a/gfx/pics/rattata/front.animated.2bpp.lz.5bdaea2b b/gfx/pokemon/rattata/front.animated.2bpp.lz.5bdaea2b similarity index 100% rename from gfx/pics/rattata/front.animated.2bpp.lz.5bdaea2b rename to gfx/pokemon/rattata/front.animated.2bpp.lz.5bdaea2b diff --git a/gfx/pics/rattata/front.png b/gfx/pokemon/rattata/front.png similarity index 100% rename from gfx/pics/rattata/front.png rename to gfx/pokemon/rattata/front.png diff --git a/gfx/pics/rattata/shiny.pal b/gfx/pokemon/rattata/shiny.pal similarity index 100% rename from gfx/pics/rattata/shiny.pal rename to gfx/pokemon/rattata/shiny.pal diff --git a/gfx/pics/remoraid/anim0.asm b/gfx/pokemon/remoraid/anim0.asm similarity index 100% rename from gfx/pics/remoraid/anim0.asm rename to gfx/pokemon/remoraid/anim0.asm diff --git a/gfx/pics/remoraid/anim1.asm b/gfx/pokemon/remoraid/anim1.asm similarity index 100% rename from gfx/pics/remoraid/anim1.asm rename to gfx/pokemon/remoraid/anim1.asm diff --git a/gfx/pics/remoraid/back.2bpp.lz.8a6e4f29 b/gfx/pokemon/remoraid/back.2bpp.lz.8a6e4f29 similarity index 100% rename from gfx/pics/remoraid/back.2bpp.lz.8a6e4f29 rename to gfx/pokemon/remoraid/back.2bpp.lz.8a6e4f29 diff --git a/gfx/pics/remoraid/back.png b/gfx/pokemon/remoraid/back.png similarity index 100% rename from gfx/pics/remoraid/back.png rename to gfx/pokemon/remoraid/back.png diff --git a/gfx/pics/remoraid/front.animated.2bpp.lz.4eaf1230 b/gfx/pokemon/remoraid/front.animated.2bpp.lz.4eaf1230 similarity index 100% rename from gfx/pics/remoraid/front.animated.2bpp.lz.4eaf1230 rename to gfx/pokemon/remoraid/front.animated.2bpp.lz.4eaf1230 diff --git a/gfx/pics/remoraid/front.png b/gfx/pokemon/remoraid/front.png similarity index 100% rename from gfx/pics/remoraid/front.png rename to gfx/pokemon/remoraid/front.png diff --git a/gfx/pics/remoraid/shiny.pal b/gfx/pokemon/remoraid/shiny.pal similarity index 100% rename from gfx/pics/remoraid/shiny.pal rename to gfx/pokemon/remoraid/shiny.pal diff --git a/gfx/pics/rhydon/anim0.asm b/gfx/pokemon/rhydon/anim0.asm similarity index 100% rename from gfx/pics/rhydon/anim0.asm rename to gfx/pokemon/rhydon/anim0.asm diff --git a/gfx/pics/rhydon/anim1.asm b/gfx/pokemon/rhydon/anim1.asm similarity index 100% rename from gfx/pics/rhydon/anim1.asm rename to gfx/pokemon/rhydon/anim1.asm diff --git a/gfx/pics/rhydon/back.2bpp.lz.4a3ea4af b/gfx/pokemon/rhydon/back.2bpp.lz.4a3ea4af similarity index 100% rename from gfx/pics/rhydon/back.2bpp.lz.4a3ea4af rename to gfx/pokemon/rhydon/back.2bpp.lz.4a3ea4af diff --git a/gfx/pics/rhydon/back.png b/gfx/pokemon/rhydon/back.png similarity index 100% rename from gfx/pics/rhydon/back.png rename to gfx/pokemon/rhydon/back.png diff --git a/gfx/pics/rhydon/front.animated.2bpp.lz.7257fc4f b/gfx/pokemon/rhydon/front.animated.2bpp.lz.7257fc4f similarity index 100% rename from gfx/pics/rhydon/front.animated.2bpp.lz.7257fc4f rename to gfx/pokemon/rhydon/front.animated.2bpp.lz.7257fc4f diff --git a/gfx/pics/rhydon/front.png b/gfx/pokemon/rhydon/front.png similarity index 100% rename from gfx/pics/rhydon/front.png rename to gfx/pokemon/rhydon/front.png diff --git a/gfx/pics/rhydon/shiny.pal b/gfx/pokemon/rhydon/shiny.pal similarity index 100% rename from gfx/pics/rhydon/shiny.pal rename to gfx/pokemon/rhydon/shiny.pal diff --git a/gfx/pics/rhyhorn/anim0.asm b/gfx/pokemon/rhyhorn/anim0.asm similarity index 100% rename from gfx/pics/rhyhorn/anim0.asm rename to gfx/pokemon/rhyhorn/anim0.asm diff --git a/gfx/pics/rhyhorn/anim1.asm b/gfx/pokemon/rhyhorn/anim1.asm similarity index 100% rename from gfx/pics/rhyhorn/anim1.asm rename to gfx/pokemon/rhyhorn/anim1.asm diff --git a/gfx/pics/rhyhorn/back.2bpp.lz.b9a8e755 b/gfx/pokemon/rhyhorn/back.2bpp.lz.b9a8e755 similarity index 100% rename from gfx/pics/rhyhorn/back.2bpp.lz.b9a8e755 rename to gfx/pokemon/rhyhorn/back.2bpp.lz.b9a8e755 diff --git a/gfx/pics/rhyhorn/back.png b/gfx/pokemon/rhyhorn/back.png similarity index 100% rename from gfx/pics/rhyhorn/back.png rename to gfx/pokemon/rhyhorn/back.png diff --git a/gfx/pics/rhyhorn/front.animated.2bpp.lz.bdfdf7dc b/gfx/pokemon/rhyhorn/front.animated.2bpp.lz.bdfdf7dc similarity index 100% rename from gfx/pics/rhyhorn/front.animated.2bpp.lz.bdfdf7dc rename to gfx/pokemon/rhyhorn/front.animated.2bpp.lz.bdfdf7dc diff --git a/gfx/pics/rhyhorn/front.png b/gfx/pokemon/rhyhorn/front.png similarity index 100% rename from gfx/pics/rhyhorn/front.png rename to gfx/pokemon/rhyhorn/front.png diff --git a/gfx/pics/rhyhorn/shiny.pal b/gfx/pokemon/rhyhorn/shiny.pal similarity index 100% rename from gfx/pics/rhyhorn/shiny.pal rename to gfx/pokemon/rhyhorn/shiny.pal diff --git a/gfx/pics/sandshrew/anim0.asm b/gfx/pokemon/sandshrew/anim0.asm similarity index 100% rename from gfx/pics/sandshrew/anim0.asm rename to gfx/pokemon/sandshrew/anim0.asm diff --git a/gfx/pics/sandshrew/anim1.asm b/gfx/pokemon/sandshrew/anim1.asm similarity index 100% rename from gfx/pics/sandshrew/anim1.asm rename to gfx/pokemon/sandshrew/anim1.asm diff --git a/gfx/pics/sandshrew/back.2bpp.lz.7655193f b/gfx/pokemon/sandshrew/back.2bpp.lz.7655193f similarity index 100% rename from gfx/pics/sandshrew/back.2bpp.lz.7655193f rename to gfx/pokemon/sandshrew/back.2bpp.lz.7655193f diff --git a/gfx/pics/sandshrew/back.png b/gfx/pokemon/sandshrew/back.png similarity index 100% rename from gfx/pics/sandshrew/back.png rename to gfx/pokemon/sandshrew/back.png diff --git a/gfx/pics/sandshrew/front.animated.2bpp.lz.758def3d b/gfx/pokemon/sandshrew/front.animated.2bpp.lz.758def3d similarity index 100% rename from gfx/pics/sandshrew/front.animated.2bpp.lz.758def3d rename to gfx/pokemon/sandshrew/front.animated.2bpp.lz.758def3d diff --git a/gfx/pics/sandshrew/front.png b/gfx/pokemon/sandshrew/front.png similarity index 100% rename from gfx/pics/sandshrew/front.png rename to gfx/pokemon/sandshrew/front.png diff --git a/gfx/pics/sandshrew/shiny.pal b/gfx/pokemon/sandshrew/shiny.pal similarity index 100% rename from gfx/pics/sandshrew/shiny.pal rename to gfx/pokemon/sandshrew/shiny.pal diff --git a/gfx/pics/sandslash/anim0.asm b/gfx/pokemon/sandslash/anim0.asm similarity index 100% rename from gfx/pics/sandslash/anim0.asm rename to gfx/pokemon/sandslash/anim0.asm diff --git a/gfx/pics/sandslash/anim1.asm b/gfx/pokemon/sandslash/anim1.asm similarity index 100% rename from gfx/pics/sandslash/anim1.asm rename to gfx/pokemon/sandslash/anim1.asm diff --git a/gfx/pics/sandslash/back.2bpp.lz.2999f4c6 b/gfx/pokemon/sandslash/back.2bpp.lz.2999f4c6 similarity index 100% rename from gfx/pics/sandslash/back.2bpp.lz.2999f4c6 rename to gfx/pokemon/sandslash/back.2bpp.lz.2999f4c6 diff --git a/gfx/pics/sandslash/back.png b/gfx/pokemon/sandslash/back.png similarity index 100% rename from gfx/pics/sandslash/back.png rename to gfx/pokemon/sandslash/back.png diff --git a/gfx/pics/sandslash/front.animated.2bpp.lz.d6498722 b/gfx/pokemon/sandslash/front.animated.2bpp.lz.d6498722 similarity index 100% rename from gfx/pics/sandslash/front.animated.2bpp.lz.d6498722 rename to gfx/pokemon/sandslash/front.animated.2bpp.lz.d6498722 diff --git a/gfx/pics/sandslash/front.png b/gfx/pokemon/sandslash/front.png similarity index 100% rename from gfx/pics/sandslash/front.png rename to gfx/pokemon/sandslash/front.png diff --git a/gfx/pics/sandslash/shiny.pal b/gfx/pokemon/sandslash/shiny.pal similarity index 100% rename from gfx/pics/sandslash/shiny.pal rename to gfx/pokemon/sandslash/shiny.pal diff --git a/gfx/pics/scizor/anim0.asm b/gfx/pokemon/scizor/anim0.asm similarity index 100% rename from gfx/pics/scizor/anim0.asm rename to gfx/pokemon/scizor/anim0.asm diff --git a/gfx/pics/scizor/anim1.asm b/gfx/pokemon/scizor/anim1.asm similarity index 100% rename from gfx/pics/scizor/anim1.asm rename to gfx/pokemon/scizor/anim1.asm diff --git a/gfx/pics/scizor/back.2bpp.lz.85149f27 b/gfx/pokemon/scizor/back.2bpp.lz.85149f27 similarity index 100% rename from gfx/pics/scizor/back.2bpp.lz.85149f27 rename to gfx/pokemon/scizor/back.2bpp.lz.85149f27 diff --git a/gfx/pics/scizor/back.png b/gfx/pokemon/scizor/back.png similarity index 100% rename from gfx/pics/scizor/back.png rename to gfx/pokemon/scizor/back.png diff --git a/gfx/pics/scizor/front.animated.2bpp.lz.afd0131a b/gfx/pokemon/scizor/front.animated.2bpp.lz.afd0131a similarity index 100% rename from gfx/pics/scizor/front.animated.2bpp.lz.afd0131a rename to gfx/pokemon/scizor/front.animated.2bpp.lz.afd0131a diff --git a/gfx/pics/scizor/front.png b/gfx/pokemon/scizor/front.png similarity index 100% rename from gfx/pics/scizor/front.png rename to gfx/pokemon/scizor/front.png diff --git a/gfx/pics/scizor/shiny.pal b/gfx/pokemon/scizor/shiny.pal similarity index 100% rename from gfx/pics/scizor/shiny.pal rename to gfx/pokemon/scizor/shiny.pal diff --git a/gfx/pics/scyther/anim0.asm b/gfx/pokemon/scyther/anim0.asm similarity index 100% rename from gfx/pics/scyther/anim0.asm rename to gfx/pokemon/scyther/anim0.asm diff --git a/gfx/pics/scyther/anim1.asm b/gfx/pokemon/scyther/anim1.asm similarity index 100% rename from gfx/pics/scyther/anim1.asm rename to gfx/pokemon/scyther/anim1.asm diff --git a/gfx/pics/scyther/back.2bpp.lz.1d7f8a87 b/gfx/pokemon/scyther/back.2bpp.lz.1d7f8a87 similarity index 100% rename from gfx/pics/scyther/back.2bpp.lz.1d7f8a87 rename to gfx/pokemon/scyther/back.2bpp.lz.1d7f8a87 diff --git a/gfx/pics/scyther/back.png b/gfx/pokemon/scyther/back.png similarity index 100% rename from gfx/pics/scyther/back.png rename to gfx/pokemon/scyther/back.png diff --git a/gfx/pics/scyther/front.animated.2bpp.lz.86d1a281 b/gfx/pokemon/scyther/front.animated.2bpp.lz.86d1a281 similarity index 100% rename from gfx/pics/scyther/front.animated.2bpp.lz.86d1a281 rename to gfx/pokemon/scyther/front.animated.2bpp.lz.86d1a281 diff --git a/gfx/pics/scyther/front.png b/gfx/pokemon/scyther/front.png similarity index 100% rename from gfx/pics/scyther/front.png rename to gfx/pokemon/scyther/front.png diff --git a/gfx/pics/scyther/shiny.pal b/gfx/pokemon/scyther/shiny.pal similarity index 100% rename from gfx/pics/scyther/shiny.pal rename to gfx/pokemon/scyther/shiny.pal diff --git a/gfx/pics/seadra/anim0.asm b/gfx/pokemon/seadra/anim0.asm similarity index 100% rename from gfx/pics/seadra/anim0.asm rename to gfx/pokemon/seadra/anim0.asm diff --git a/gfx/pics/seadra/anim1.asm b/gfx/pokemon/seadra/anim1.asm similarity index 100% rename from gfx/pics/seadra/anim1.asm rename to gfx/pokemon/seadra/anim1.asm diff --git a/gfx/pics/seadra/back.2bpp.lz.354a02e4 b/gfx/pokemon/seadra/back.2bpp.lz.354a02e4 similarity index 100% rename from gfx/pics/seadra/back.2bpp.lz.354a02e4 rename to gfx/pokemon/seadra/back.2bpp.lz.354a02e4 diff --git a/gfx/pics/seadra/back.png b/gfx/pokemon/seadra/back.png similarity index 100% rename from gfx/pics/seadra/back.png rename to gfx/pokemon/seadra/back.png diff --git a/gfx/pics/seadra/front.animated.2bpp.lz.efa9c88c b/gfx/pokemon/seadra/front.animated.2bpp.lz.efa9c88c similarity index 100% rename from gfx/pics/seadra/front.animated.2bpp.lz.efa9c88c rename to gfx/pokemon/seadra/front.animated.2bpp.lz.efa9c88c diff --git a/gfx/pics/seadra/front.png b/gfx/pokemon/seadra/front.png similarity index 100% rename from gfx/pics/seadra/front.png rename to gfx/pokemon/seadra/front.png diff --git a/gfx/pics/seadra/shiny.pal b/gfx/pokemon/seadra/shiny.pal similarity index 100% rename from gfx/pics/seadra/shiny.pal rename to gfx/pokemon/seadra/shiny.pal diff --git a/gfx/pics/seaking/anim0.asm b/gfx/pokemon/seaking/anim0.asm similarity index 100% rename from gfx/pics/seaking/anim0.asm rename to gfx/pokemon/seaking/anim0.asm diff --git a/gfx/pics/seaking/anim1.asm b/gfx/pokemon/seaking/anim1.asm similarity index 100% rename from gfx/pics/seaking/anim1.asm rename to gfx/pokemon/seaking/anim1.asm diff --git a/gfx/pics/seaking/back.2bpp.lz.3e699249 b/gfx/pokemon/seaking/back.2bpp.lz.3e699249 similarity index 100% rename from gfx/pics/seaking/back.2bpp.lz.3e699249 rename to gfx/pokemon/seaking/back.2bpp.lz.3e699249 diff --git a/gfx/pics/seaking/back.png b/gfx/pokemon/seaking/back.png similarity index 100% rename from gfx/pics/seaking/back.png rename to gfx/pokemon/seaking/back.png diff --git a/gfx/pics/seaking/front.animated.2bpp.lz.fb4eb288 b/gfx/pokemon/seaking/front.animated.2bpp.lz.fb4eb288 similarity index 100% rename from gfx/pics/seaking/front.animated.2bpp.lz.fb4eb288 rename to gfx/pokemon/seaking/front.animated.2bpp.lz.fb4eb288 diff --git a/gfx/pics/seaking/front.png b/gfx/pokemon/seaking/front.png similarity index 100% rename from gfx/pics/seaking/front.png rename to gfx/pokemon/seaking/front.png diff --git a/gfx/pics/seaking/shiny.pal b/gfx/pokemon/seaking/shiny.pal similarity index 100% rename from gfx/pics/seaking/shiny.pal rename to gfx/pokemon/seaking/shiny.pal diff --git a/gfx/pics/seel/anim0.asm b/gfx/pokemon/seel/anim0.asm similarity index 100% rename from gfx/pics/seel/anim0.asm rename to gfx/pokemon/seel/anim0.asm diff --git a/gfx/pics/seel/anim1.asm b/gfx/pokemon/seel/anim1.asm similarity index 100% rename from gfx/pics/seel/anim1.asm rename to gfx/pokemon/seel/anim1.asm diff --git a/gfx/pics/seel/back.2bpp.lz.518a4d40 b/gfx/pokemon/seel/back.2bpp.lz.518a4d40 similarity index 100% rename from gfx/pics/seel/back.2bpp.lz.518a4d40 rename to gfx/pokemon/seel/back.2bpp.lz.518a4d40 diff --git a/gfx/pics/seel/back.png b/gfx/pokemon/seel/back.png similarity index 100% rename from gfx/pics/seel/back.png rename to gfx/pokemon/seel/back.png diff --git a/gfx/pics/seel/front.animated.2bpp.lz.2dc48023 b/gfx/pokemon/seel/front.animated.2bpp.lz.2dc48023 similarity index 100% rename from gfx/pics/seel/front.animated.2bpp.lz.2dc48023 rename to gfx/pokemon/seel/front.animated.2bpp.lz.2dc48023 diff --git a/gfx/pics/seel/front.png b/gfx/pokemon/seel/front.png similarity index 100% rename from gfx/pics/seel/front.png rename to gfx/pokemon/seel/front.png diff --git a/gfx/pics/seel/shiny.pal b/gfx/pokemon/seel/shiny.pal similarity index 100% rename from gfx/pics/seel/shiny.pal rename to gfx/pokemon/seel/shiny.pal diff --git a/gfx/pics/sentret/anim0.asm b/gfx/pokemon/sentret/anim0.asm similarity index 100% rename from gfx/pics/sentret/anim0.asm rename to gfx/pokemon/sentret/anim0.asm diff --git a/gfx/pics/sentret/anim1.asm b/gfx/pokemon/sentret/anim1.asm similarity index 100% rename from gfx/pics/sentret/anim1.asm rename to gfx/pokemon/sentret/anim1.asm diff --git a/gfx/pics/sentret/back.2bpp.lz.c19b7f3b b/gfx/pokemon/sentret/back.2bpp.lz.c19b7f3b similarity index 100% rename from gfx/pics/sentret/back.2bpp.lz.c19b7f3b rename to gfx/pokemon/sentret/back.2bpp.lz.c19b7f3b diff --git a/gfx/pics/sentret/back.png b/gfx/pokemon/sentret/back.png similarity index 100% rename from gfx/pics/sentret/back.png rename to gfx/pokemon/sentret/back.png diff --git a/gfx/pics/sentret/front.animated.2bpp.lz.07c594c0 b/gfx/pokemon/sentret/front.animated.2bpp.lz.07c594c0 similarity index 100% rename from gfx/pics/sentret/front.animated.2bpp.lz.07c594c0 rename to gfx/pokemon/sentret/front.animated.2bpp.lz.07c594c0 diff --git a/gfx/pics/sentret/front.png b/gfx/pokemon/sentret/front.png similarity index 100% rename from gfx/pics/sentret/front.png rename to gfx/pokemon/sentret/front.png diff --git a/gfx/pics/sentret/shiny.pal b/gfx/pokemon/sentret/shiny.pal similarity index 100% rename from gfx/pics/sentret/shiny.pal rename to gfx/pokemon/sentret/shiny.pal diff --git a/gfx/pics/shellder/anim0.asm b/gfx/pokemon/shellder/anim0.asm similarity index 100% rename from gfx/pics/shellder/anim0.asm rename to gfx/pokemon/shellder/anim0.asm diff --git a/gfx/pics/shellder/anim1.asm b/gfx/pokemon/shellder/anim1.asm similarity index 100% rename from gfx/pics/shellder/anim1.asm rename to gfx/pokemon/shellder/anim1.asm diff --git a/gfx/pics/shellder/back.2bpp.lz.61e27953 b/gfx/pokemon/shellder/back.2bpp.lz.61e27953 similarity index 100% rename from gfx/pics/shellder/back.2bpp.lz.61e27953 rename to gfx/pokemon/shellder/back.2bpp.lz.61e27953 diff --git a/gfx/pics/shellder/back.png b/gfx/pokemon/shellder/back.png similarity index 100% rename from gfx/pics/shellder/back.png rename to gfx/pokemon/shellder/back.png diff --git a/gfx/pics/shellder/front.animated.2bpp.lz.df57d475 b/gfx/pokemon/shellder/front.animated.2bpp.lz.df57d475 similarity index 100% rename from gfx/pics/shellder/front.animated.2bpp.lz.df57d475 rename to gfx/pokemon/shellder/front.animated.2bpp.lz.df57d475 diff --git a/gfx/pics/shellder/front.png b/gfx/pokemon/shellder/front.png similarity index 100% rename from gfx/pics/shellder/front.png rename to gfx/pokemon/shellder/front.png diff --git a/gfx/pics/shellder/shiny.pal b/gfx/pokemon/shellder/shiny.pal similarity index 100% rename from gfx/pics/shellder/shiny.pal rename to gfx/pokemon/shellder/shiny.pal diff --git a/gfx/pics/shuckle/anim0.asm b/gfx/pokemon/shuckle/anim0.asm similarity index 100% rename from gfx/pics/shuckle/anim0.asm rename to gfx/pokemon/shuckle/anim0.asm diff --git a/gfx/pics/shuckle/anim1.asm b/gfx/pokemon/shuckle/anim1.asm similarity index 100% rename from gfx/pics/shuckle/anim1.asm rename to gfx/pokemon/shuckle/anim1.asm diff --git a/gfx/pics/shuckle/back.2bpp.lz.8d66899b b/gfx/pokemon/shuckle/back.2bpp.lz.8d66899b similarity index 100% rename from gfx/pics/shuckle/back.2bpp.lz.8d66899b rename to gfx/pokemon/shuckle/back.2bpp.lz.8d66899b diff --git a/gfx/pics/shuckle/back.png b/gfx/pokemon/shuckle/back.png similarity index 100% rename from gfx/pics/shuckle/back.png rename to gfx/pokemon/shuckle/back.png diff --git a/gfx/pics/shuckle/front.animated.2bpp.lz.dee153d4 b/gfx/pokemon/shuckle/front.animated.2bpp.lz.dee153d4 similarity index 100% rename from gfx/pics/shuckle/front.animated.2bpp.lz.dee153d4 rename to gfx/pokemon/shuckle/front.animated.2bpp.lz.dee153d4 diff --git a/gfx/pics/shuckle/front.png b/gfx/pokemon/shuckle/front.png similarity index 100% rename from gfx/pics/shuckle/front.png rename to gfx/pokemon/shuckle/front.png diff --git a/gfx/pics/shuckle/shiny.pal b/gfx/pokemon/shuckle/shiny.pal similarity index 100% rename from gfx/pics/shuckle/shiny.pal rename to gfx/pokemon/shuckle/shiny.pal diff --git a/gfx/pics/skarmory/anim0.asm b/gfx/pokemon/skarmory/anim0.asm similarity index 100% rename from gfx/pics/skarmory/anim0.asm rename to gfx/pokemon/skarmory/anim0.asm diff --git a/gfx/pics/skarmory/anim1.asm b/gfx/pokemon/skarmory/anim1.asm similarity index 100% rename from gfx/pics/skarmory/anim1.asm rename to gfx/pokemon/skarmory/anim1.asm diff --git a/gfx/pics/skarmory/back.2bpp.lz.f5e2e2e4 b/gfx/pokemon/skarmory/back.2bpp.lz.f5e2e2e4 similarity index 100% rename from gfx/pics/skarmory/back.2bpp.lz.f5e2e2e4 rename to gfx/pokemon/skarmory/back.2bpp.lz.f5e2e2e4 diff --git a/gfx/pics/skarmory/back.png b/gfx/pokemon/skarmory/back.png similarity index 100% rename from gfx/pics/skarmory/back.png rename to gfx/pokemon/skarmory/back.png diff --git a/gfx/pics/skarmory/front.animated.2bpp.lz.7de4675e b/gfx/pokemon/skarmory/front.animated.2bpp.lz.7de4675e similarity index 100% rename from gfx/pics/skarmory/front.animated.2bpp.lz.7de4675e rename to gfx/pokemon/skarmory/front.animated.2bpp.lz.7de4675e diff --git a/gfx/pics/skarmory/front.png b/gfx/pokemon/skarmory/front.png similarity index 100% rename from gfx/pics/skarmory/front.png rename to gfx/pokemon/skarmory/front.png diff --git a/gfx/pics/skarmory/shiny.pal b/gfx/pokemon/skarmory/shiny.pal similarity index 100% rename from gfx/pics/skarmory/shiny.pal rename to gfx/pokemon/skarmory/shiny.pal diff --git a/gfx/pics/skiploom/anim0.asm b/gfx/pokemon/skiploom/anim0.asm similarity index 100% rename from gfx/pics/skiploom/anim0.asm rename to gfx/pokemon/skiploom/anim0.asm diff --git a/gfx/pics/skiploom/anim1.asm b/gfx/pokemon/skiploom/anim1.asm similarity index 100% rename from gfx/pics/skiploom/anim1.asm rename to gfx/pokemon/skiploom/anim1.asm diff --git a/gfx/pics/skiploom/back.2bpp.lz.54e87a0c b/gfx/pokemon/skiploom/back.2bpp.lz.54e87a0c similarity index 100% rename from gfx/pics/skiploom/back.2bpp.lz.54e87a0c rename to gfx/pokemon/skiploom/back.2bpp.lz.54e87a0c diff --git a/gfx/pics/skiploom/back.png b/gfx/pokemon/skiploom/back.png similarity index 100% rename from gfx/pics/skiploom/back.png rename to gfx/pokemon/skiploom/back.png diff --git a/gfx/pics/skiploom/front.animated.2bpp.lz.6436d556 b/gfx/pokemon/skiploom/front.animated.2bpp.lz.6436d556 similarity index 100% rename from gfx/pics/skiploom/front.animated.2bpp.lz.6436d556 rename to gfx/pokemon/skiploom/front.animated.2bpp.lz.6436d556 diff --git a/gfx/pics/skiploom/front.png b/gfx/pokemon/skiploom/front.png similarity index 100% rename from gfx/pics/skiploom/front.png rename to gfx/pokemon/skiploom/front.png diff --git a/gfx/pics/skiploom/shiny.pal b/gfx/pokemon/skiploom/shiny.pal similarity index 100% rename from gfx/pics/skiploom/shiny.pal rename to gfx/pokemon/skiploom/shiny.pal diff --git a/gfx/pics/slowbro/anim0.asm b/gfx/pokemon/slowbro/anim0.asm similarity index 100% rename from gfx/pics/slowbro/anim0.asm rename to gfx/pokemon/slowbro/anim0.asm diff --git a/gfx/pics/slowbro/anim1.asm b/gfx/pokemon/slowbro/anim1.asm similarity index 100% rename from gfx/pics/slowbro/anim1.asm rename to gfx/pokemon/slowbro/anim1.asm diff --git a/gfx/pics/slowbro/back.2bpp.lz.3676b1f1 b/gfx/pokemon/slowbro/back.2bpp.lz.3676b1f1 similarity index 100% rename from gfx/pics/slowbro/back.2bpp.lz.3676b1f1 rename to gfx/pokemon/slowbro/back.2bpp.lz.3676b1f1 diff --git a/gfx/pics/slowbro/back.png b/gfx/pokemon/slowbro/back.png similarity index 100% rename from gfx/pics/slowbro/back.png rename to gfx/pokemon/slowbro/back.png diff --git a/gfx/pics/slowbro/front.animated.2bpp.lz.257e2e84 b/gfx/pokemon/slowbro/front.animated.2bpp.lz.257e2e84 similarity index 100% rename from gfx/pics/slowbro/front.animated.2bpp.lz.257e2e84 rename to gfx/pokemon/slowbro/front.animated.2bpp.lz.257e2e84 diff --git a/gfx/pics/slowbro/front.png b/gfx/pokemon/slowbro/front.png similarity index 100% rename from gfx/pics/slowbro/front.png rename to gfx/pokemon/slowbro/front.png diff --git a/gfx/pics/slowbro/shiny.pal b/gfx/pokemon/slowbro/shiny.pal similarity index 100% rename from gfx/pics/slowbro/shiny.pal rename to gfx/pokemon/slowbro/shiny.pal diff --git a/gfx/pics/slowking/anim0.asm b/gfx/pokemon/slowking/anim0.asm similarity index 100% rename from gfx/pics/slowking/anim0.asm rename to gfx/pokemon/slowking/anim0.asm diff --git a/gfx/pics/slowking/anim1.asm b/gfx/pokemon/slowking/anim1.asm similarity index 100% rename from gfx/pics/slowking/anim1.asm rename to gfx/pokemon/slowking/anim1.asm diff --git a/gfx/pics/slowking/back.2bpp.lz.a90de69e b/gfx/pokemon/slowking/back.2bpp.lz.a90de69e similarity index 100% rename from gfx/pics/slowking/back.2bpp.lz.a90de69e rename to gfx/pokemon/slowking/back.2bpp.lz.a90de69e diff --git a/gfx/pics/slowking/back.png b/gfx/pokemon/slowking/back.png similarity index 100% rename from gfx/pics/slowking/back.png rename to gfx/pokemon/slowking/back.png diff --git a/gfx/pics/slowking/front.animated.2bpp.lz.4c2f7140 b/gfx/pokemon/slowking/front.animated.2bpp.lz.4c2f7140 similarity index 100% rename from gfx/pics/slowking/front.animated.2bpp.lz.4c2f7140 rename to gfx/pokemon/slowking/front.animated.2bpp.lz.4c2f7140 diff --git a/gfx/pics/slowking/front.png b/gfx/pokemon/slowking/front.png similarity index 100% rename from gfx/pics/slowking/front.png rename to gfx/pokemon/slowking/front.png diff --git a/gfx/pics/slowking/shiny.pal b/gfx/pokemon/slowking/shiny.pal similarity index 100% rename from gfx/pics/slowking/shiny.pal rename to gfx/pokemon/slowking/shiny.pal diff --git a/gfx/pics/slowpoke/anim0.asm b/gfx/pokemon/slowpoke/anim0.asm similarity index 100% rename from gfx/pics/slowpoke/anim0.asm rename to gfx/pokemon/slowpoke/anim0.asm diff --git a/gfx/pics/slowpoke/anim1.asm b/gfx/pokemon/slowpoke/anim1.asm similarity index 100% rename from gfx/pics/slowpoke/anim1.asm rename to gfx/pokemon/slowpoke/anim1.asm diff --git a/gfx/pics/slowpoke/back.2bpp.lz.f2d1bb5c b/gfx/pokemon/slowpoke/back.2bpp.lz.f2d1bb5c similarity index 100% rename from gfx/pics/slowpoke/back.2bpp.lz.f2d1bb5c rename to gfx/pokemon/slowpoke/back.2bpp.lz.f2d1bb5c diff --git a/gfx/pics/slowpoke/back.png b/gfx/pokemon/slowpoke/back.png similarity index 100% rename from gfx/pics/slowpoke/back.png rename to gfx/pokemon/slowpoke/back.png diff --git a/gfx/pics/slowpoke/front.animated.2bpp.lz.42347014 b/gfx/pokemon/slowpoke/front.animated.2bpp.lz.42347014 similarity index 100% rename from gfx/pics/slowpoke/front.animated.2bpp.lz.42347014 rename to gfx/pokemon/slowpoke/front.animated.2bpp.lz.42347014 diff --git a/gfx/pics/slowpoke/front.png b/gfx/pokemon/slowpoke/front.png similarity index 100% rename from gfx/pics/slowpoke/front.png rename to gfx/pokemon/slowpoke/front.png diff --git a/gfx/pics/slowpoke/shiny.pal b/gfx/pokemon/slowpoke/shiny.pal similarity index 100% rename from gfx/pics/slowpoke/shiny.pal rename to gfx/pokemon/slowpoke/shiny.pal diff --git a/gfx/pics/slugma/anim0.asm b/gfx/pokemon/slugma/anim0.asm similarity index 100% rename from gfx/pics/slugma/anim0.asm rename to gfx/pokemon/slugma/anim0.asm diff --git a/gfx/pics/slugma/anim1.asm b/gfx/pokemon/slugma/anim1.asm similarity index 100% rename from gfx/pics/slugma/anim1.asm rename to gfx/pokemon/slugma/anim1.asm diff --git a/gfx/pics/slugma/back.2bpp.lz.dc25c77a b/gfx/pokemon/slugma/back.2bpp.lz.dc25c77a similarity index 100% rename from gfx/pics/slugma/back.2bpp.lz.dc25c77a rename to gfx/pokemon/slugma/back.2bpp.lz.dc25c77a diff --git a/gfx/pics/slugma/back.png b/gfx/pokemon/slugma/back.png similarity index 100% rename from gfx/pics/slugma/back.png rename to gfx/pokemon/slugma/back.png diff --git a/gfx/pics/slugma/front.animated.2bpp.lz.c1a44906 b/gfx/pokemon/slugma/front.animated.2bpp.lz.c1a44906 similarity index 100% rename from gfx/pics/slugma/front.animated.2bpp.lz.c1a44906 rename to gfx/pokemon/slugma/front.animated.2bpp.lz.c1a44906 diff --git a/gfx/pics/slugma/front.png b/gfx/pokemon/slugma/front.png similarity index 100% rename from gfx/pics/slugma/front.png rename to gfx/pokemon/slugma/front.png diff --git a/gfx/pics/slugma/shiny.pal b/gfx/pokemon/slugma/shiny.pal similarity index 100% rename from gfx/pics/slugma/shiny.pal rename to gfx/pokemon/slugma/shiny.pal diff --git a/gfx/pics/smeargle/anim0.asm b/gfx/pokemon/smeargle/anim0.asm similarity index 100% rename from gfx/pics/smeargle/anim0.asm rename to gfx/pokemon/smeargle/anim0.asm diff --git a/gfx/pics/smeargle/anim1.asm b/gfx/pokemon/smeargle/anim1.asm similarity index 100% rename from gfx/pics/smeargle/anim1.asm rename to gfx/pokemon/smeargle/anim1.asm diff --git a/gfx/pics/smeargle/back.2bpp.lz.2de2de8c b/gfx/pokemon/smeargle/back.2bpp.lz.2de2de8c similarity index 100% rename from gfx/pics/smeargle/back.2bpp.lz.2de2de8c rename to gfx/pokemon/smeargle/back.2bpp.lz.2de2de8c diff --git a/gfx/pics/smeargle/back.png b/gfx/pokemon/smeargle/back.png similarity index 100% rename from gfx/pics/smeargle/back.png rename to gfx/pokemon/smeargle/back.png diff --git a/gfx/pics/smeargle/front.animated.2bpp.lz.82ec0f51 b/gfx/pokemon/smeargle/front.animated.2bpp.lz.82ec0f51 similarity index 100% rename from gfx/pics/smeargle/front.animated.2bpp.lz.82ec0f51 rename to gfx/pokemon/smeargle/front.animated.2bpp.lz.82ec0f51 diff --git a/gfx/pics/smeargle/front.png b/gfx/pokemon/smeargle/front.png similarity index 100% rename from gfx/pics/smeargle/front.png rename to gfx/pokemon/smeargle/front.png diff --git a/gfx/pics/smeargle/shiny.pal b/gfx/pokemon/smeargle/shiny.pal similarity index 100% rename from gfx/pics/smeargle/shiny.pal rename to gfx/pokemon/smeargle/shiny.pal diff --git a/gfx/pics/smoochum/anim0.asm b/gfx/pokemon/smoochum/anim0.asm similarity index 100% rename from gfx/pics/smoochum/anim0.asm rename to gfx/pokemon/smoochum/anim0.asm diff --git a/gfx/pics/smoochum/anim1.asm b/gfx/pokemon/smoochum/anim1.asm similarity index 100% rename from gfx/pics/smoochum/anim1.asm rename to gfx/pokemon/smoochum/anim1.asm diff --git a/gfx/pics/smoochum/back.2bpp.lz.af01f906 b/gfx/pokemon/smoochum/back.2bpp.lz.af01f906 similarity index 100% rename from gfx/pics/smoochum/back.2bpp.lz.af01f906 rename to gfx/pokemon/smoochum/back.2bpp.lz.af01f906 diff --git a/gfx/pics/smoochum/back.png b/gfx/pokemon/smoochum/back.png similarity index 100% rename from gfx/pics/smoochum/back.png rename to gfx/pokemon/smoochum/back.png diff --git a/gfx/pics/smoochum/front.animated.2bpp.lz.5977720b b/gfx/pokemon/smoochum/front.animated.2bpp.lz.5977720b similarity index 100% rename from gfx/pics/smoochum/front.animated.2bpp.lz.5977720b rename to gfx/pokemon/smoochum/front.animated.2bpp.lz.5977720b diff --git a/gfx/pics/smoochum/front.png b/gfx/pokemon/smoochum/front.png similarity index 100% rename from gfx/pics/smoochum/front.png rename to gfx/pokemon/smoochum/front.png diff --git a/gfx/pics/smoochum/shiny.pal b/gfx/pokemon/smoochum/shiny.pal similarity index 100% rename from gfx/pics/smoochum/shiny.pal rename to gfx/pokemon/smoochum/shiny.pal diff --git a/gfx/pics/sneasel/anim0.asm b/gfx/pokemon/sneasel/anim0.asm similarity index 100% rename from gfx/pics/sneasel/anim0.asm rename to gfx/pokemon/sneasel/anim0.asm diff --git a/gfx/pics/sneasel/anim1.asm b/gfx/pokemon/sneasel/anim1.asm similarity index 100% rename from gfx/pics/sneasel/anim1.asm rename to gfx/pokemon/sneasel/anim1.asm diff --git a/gfx/pics/sneasel/back.2bpp.lz.5298828d b/gfx/pokemon/sneasel/back.2bpp.lz.5298828d similarity index 100% rename from gfx/pics/sneasel/back.2bpp.lz.5298828d rename to gfx/pokemon/sneasel/back.2bpp.lz.5298828d diff --git a/gfx/pics/sneasel/back.png b/gfx/pokemon/sneasel/back.png similarity index 100% rename from gfx/pics/sneasel/back.png rename to gfx/pokemon/sneasel/back.png diff --git a/gfx/pics/sneasel/front.animated.2bpp.lz.8f7db3e9 b/gfx/pokemon/sneasel/front.animated.2bpp.lz.8f7db3e9 similarity index 100% rename from gfx/pics/sneasel/front.animated.2bpp.lz.8f7db3e9 rename to gfx/pokemon/sneasel/front.animated.2bpp.lz.8f7db3e9 diff --git a/gfx/pics/sneasel/front.png b/gfx/pokemon/sneasel/front.png similarity index 100% rename from gfx/pics/sneasel/front.png rename to gfx/pokemon/sneasel/front.png diff --git a/gfx/pics/sneasel/shiny.pal b/gfx/pokemon/sneasel/shiny.pal similarity index 100% rename from gfx/pics/sneasel/shiny.pal rename to gfx/pokemon/sneasel/shiny.pal diff --git a/gfx/pics/snorlax/anim0.asm b/gfx/pokemon/snorlax/anim0.asm similarity index 100% rename from gfx/pics/snorlax/anim0.asm rename to gfx/pokemon/snorlax/anim0.asm diff --git a/gfx/pics/snorlax/anim1.asm b/gfx/pokemon/snorlax/anim1.asm similarity index 100% rename from gfx/pics/snorlax/anim1.asm rename to gfx/pokemon/snorlax/anim1.asm diff --git a/gfx/pics/snorlax/back.2bpp.lz.90570272 b/gfx/pokemon/snorlax/back.2bpp.lz.90570272 similarity index 100% rename from gfx/pics/snorlax/back.2bpp.lz.90570272 rename to gfx/pokemon/snorlax/back.2bpp.lz.90570272 diff --git a/gfx/pics/snorlax/back.png b/gfx/pokemon/snorlax/back.png similarity index 100% rename from gfx/pics/snorlax/back.png rename to gfx/pokemon/snorlax/back.png diff --git a/gfx/pics/snorlax/front.animated.2bpp.lz.8253357b b/gfx/pokemon/snorlax/front.animated.2bpp.lz.8253357b similarity index 100% rename from gfx/pics/snorlax/front.animated.2bpp.lz.8253357b rename to gfx/pokemon/snorlax/front.animated.2bpp.lz.8253357b diff --git a/gfx/pics/snorlax/front.png b/gfx/pokemon/snorlax/front.png similarity index 100% rename from gfx/pics/snorlax/front.png rename to gfx/pokemon/snorlax/front.png diff --git a/gfx/pics/snorlax/shiny.pal b/gfx/pokemon/snorlax/shiny.pal similarity index 100% rename from gfx/pics/snorlax/shiny.pal rename to gfx/pokemon/snorlax/shiny.pal diff --git a/gfx/pics/snubbull/anim0.asm b/gfx/pokemon/snubbull/anim0.asm similarity index 100% rename from gfx/pics/snubbull/anim0.asm rename to gfx/pokemon/snubbull/anim0.asm diff --git a/gfx/pics/snubbull/anim1.asm b/gfx/pokemon/snubbull/anim1.asm similarity index 100% rename from gfx/pics/snubbull/anim1.asm rename to gfx/pokemon/snubbull/anim1.asm diff --git a/gfx/pics/snubbull/back.2bpp.lz.26eaaa5d b/gfx/pokemon/snubbull/back.2bpp.lz.26eaaa5d similarity index 100% rename from gfx/pics/snubbull/back.2bpp.lz.26eaaa5d rename to gfx/pokemon/snubbull/back.2bpp.lz.26eaaa5d diff --git a/gfx/pics/snubbull/back.png b/gfx/pokemon/snubbull/back.png similarity index 100% rename from gfx/pics/snubbull/back.png rename to gfx/pokemon/snubbull/back.png diff --git a/gfx/pics/snubbull/front.animated.2bpp.lz.a1b4eb88 b/gfx/pokemon/snubbull/front.animated.2bpp.lz.a1b4eb88 similarity index 100% rename from gfx/pics/snubbull/front.animated.2bpp.lz.a1b4eb88 rename to gfx/pokemon/snubbull/front.animated.2bpp.lz.a1b4eb88 diff --git a/gfx/pics/snubbull/front.png b/gfx/pokemon/snubbull/front.png similarity index 100% rename from gfx/pics/snubbull/front.png rename to gfx/pokemon/snubbull/front.png diff --git a/gfx/pics/snubbull/shiny.pal b/gfx/pokemon/snubbull/shiny.pal similarity index 100% rename from gfx/pics/snubbull/shiny.pal rename to gfx/pokemon/snubbull/shiny.pal diff --git a/gfx/pics/spearow/anim0.asm b/gfx/pokemon/spearow/anim0.asm similarity index 100% rename from gfx/pics/spearow/anim0.asm rename to gfx/pokemon/spearow/anim0.asm diff --git a/gfx/pics/spearow/anim1.asm b/gfx/pokemon/spearow/anim1.asm similarity index 100% rename from gfx/pics/spearow/anim1.asm rename to gfx/pokemon/spearow/anim1.asm diff --git a/gfx/pics/spearow/back.2bpp.lz.b8e760aa b/gfx/pokemon/spearow/back.2bpp.lz.b8e760aa similarity index 100% rename from gfx/pics/spearow/back.2bpp.lz.b8e760aa rename to gfx/pokemon/spearow/back.2bpp.lz.b8e760aa diff --git a/gfx/pics/spearow/back.png b/gfx/pokemon/spearow/back.png similarity index 100% rename from gfx/pics/spearow/back.png rename to gfx/pokemon/spearow/back.png diff --git a/gfx/pics/spearow/front.animated.2bpp.lz.59d61986 b/gfx/pokemon/spearow/front.animated.2bpp.lz.59d61986 similarity index 100% rename from gfx/pics/spearow/front.animated.2bpp.lz.59d61986 rename to gfx/pokemon/spearow/front.animated.2bpp.lz.59d61986 diff --git a/gfx/pics/spearow/front.png b/gfx/pokemon/spearow/front.png similarity index 100% rename from gfx/pics/spearow/front.png rename to gfx/pokemon/spearow/front.png diff --git a/gfx/pics/spearow/shiny.pal b/gfx/pokemon/spearow/shiny.pal similarity index 100% rename from gfx/pics/spearow/shiny.pal rename to gfx/pokemon/spearow/shiny.pal diff --git a/gfx/pics/spinarak/anim0.asm b/gfx/pokemon/spinarak/anim0.asm similarity index 100% rename from gfx/pics/spinarak/anim0.asm rename to gfx/pokemon/spinarak/anim0.asm diff --git a/gfx/pics/spinarak/anim1.asm b/gfx/pokemon/spinarak/anim1.asm similarity index 100% rename from gfx/pics/spinarak/anim1.asm rename to gfx/pokemon/spinarak/anim1.asm diff --git a/gfx/pics/spinarak/back.2bpp.lz.14002836 b/gfx/pokemon/spinarak/back.2bpp.lz.14002836 similarity index 100% rename from gfx/pics/spinarak/back.2bpp.lz.14002836 rename to gfx/pokemon/spinarak/back.2bpp.lz.14002836 diff --git a/gfx/pics/spinarak/back.png b/gfx/pokemon/spinarak/back.png similarity index 100% rename from gfx/pics/spinarak/back.png rename to gfx/pokemon/spinarak/back.png diff --git a/gfx/pics/spinarak/front.animated.2bpp.lz.31ab6868 b/gfx/pokemon/spinarak/front.animated.2bpp.lz.31ab6868 similarity index 100% rename from gfx/pics/spinarak/front.animated.2bpp.lz.31ab6868 rename to gfx/pokemon/spinarak/front.animated.2bpp.lz.31ab6868 diff --git a/gfx/pics/spinarak/front.png b/gfx/pokemon/spinarak/front.png similarity index 100% rename from gfx/pics/spinarak/front.png rename to gfx/pokemon/spinarak/front.png diff --git a/gfx/pics/spinarak/shiny.pal b/gfx/pokemon/spinarak/shiny.pal similarity index 100% rename from gfx/pics/spinarak/shiny.pal rename to gfx/pokemon/spinarak/shiny.pal diff --git a/gfx/pics/squirtle/anim0.asm b/gfx/pokemon/squirtle/anim0.asm similarity index 100% rename from gfx/pics/squirtle/anim0.asm rename to gfx/pokemon/squirtle/anim0.asm diff --git a/gfx/pics/squirtle/anim1.asm b/gfx/pokemon/squirtle/anim1.asm similarity index 100% rename from gfx/pics/squirtle/anim1.asm rename to gfx/pokemon/squirtle/anim1.asm diff --git a/gfx/pics/squirtle/back.2bpp.lz.76295ae8 b/gfx/pokemon/squirtle/back.2bpp.lz.76295ae8 similarity index 100% rename from gfx/pics/squirtle/back.2bpp.lz.76295ae8 rename to gfx/pokemon/squirtle/back.2bpp.lz.76295ae8 diff --git a/gfx/pics/squirtle/back.png b/gfx/pokemon/squirtle/back.png similarity index 100% rename from gfx/pics/squirtle/back.png rename to gfx/pokemon/squirtle/back.png diff --git a/gfx/pics/squirtle/front.animated.2bpp.lz.9b6f9ec9 b/gfx/pokemon/squirtle/front.animated.2bpp.lz.9b6f9ec9 similarity index 100% rename from gfx/pics/squirtle/front.animated.2bpp.lz.9b6f9ec9 rename to gfx/pokemon/squirtle/front.animated.2bpp.lz.9b6f9ec9 diff --git a/gfx/pics/squirtle/front.png b/gfx/pokemon/squirtle/front.png similarity index 100% rename from gfx/pics/squirtle/front.png rename to gfx/pokemon/squirtle/front.png diff --git a/gfx/pics/squirtle/shiny.pal b/gfx/pokemon/squirtle/shiny.pal similarity index 100% rename from gfx/pics/squirtle/shiny.pal rename to gfx/pokemon/squirtle/shiny.pal diff --git a/gfx/pics/stantler/anim0.asm b/gfx/pokemon/stantler/anim0.asm similarity index 100% rename from gfx/pics/stantler/anim0.asm rename to gfx/pokemon/stantler/anim0.asm diff --git a/gfx/pics/stantler/anim1.asm b/gfx/pokemon/stantler/anim1.asm similarity index 100% rename from gfx/pics/stantler/anim1.asm rename to gfx/pokemon/stantler/anim1.asm diff --git a/gfx/pics/stantler/back.2bpp.lz.16502aac b/gfx/pokemon/stantler/back.2bpp.lz.16502aac similarity index 100% rename from gfx/pics/stantler/back.2bpp.lz.16502aac rename to gfx/pokemon/stantler/back.2bpp.lz.16502aac diff --git a/gfx/pics/stantler/back.png b/gfx/pokemon/stantler/back.png similarity index 100% rename from gfx/pics/stantler/back.png rename to gfx/pokemon/stantler/back.png diff --git a/gfx/pics/stantler/front.animated.2bpp.lz.46b7dd06 b/gfx/pokemon/stantler/front.animated.2bpp.lz.46b7dd06 similarity index 100% rename from gfx/pics/stantler/front.animated.2bpp.lz.46b7dd06 rename to gfx/pokemon/stantler/front.animated.2bpp.lz.46b7dd06 diff --git a/gfx/pics/stantler/front.png b/gfx/pokemon/stantler/front.png similarity index 100% rename from gfx/pics/stantler/front.png rename to gfx/pokemon/stantler/front.png diff --git a/gfx/pics/stantler/shiny.pal b/gfx/pokemon/stantler/shiny.pal similarity index 100% rename from gfx/pics/stantler/shiny.pal rename to gfx/pokemon/stantler/shiny.pal diff --git a/gfx/pics/starmie/anim0.asm b/gfx/pokemon/starmie/anim0.asm similarity index 100% rename from gfx/pics/starmie/anim0.asm rename to gfx/pokemon/starmie/anim0.asm diff --git a/gfx/pics/starmie/anim1.asm b/gfx/pokemon/starmie/anim1.asm similarity index 100% rename from gfx/pics/starmie/anim1.asm rename to gfx/pokemon/starmie/anim1.asm diff --git a/gfx/pics/starmie/back.2bpp.lz.a8923741 b/gfx/pokemon/starmie/back.2bpp.lz.a8923741 similarity index 100% rename from gfx/pics/starmie/back.2bpp.lz.a8923741 rename to gfx/pokemon/starmie/back.2bpp.lz.a8923741 diff --git a/gfx/pics/starmie/back.png b/gfx/pokemon/starmie/back.png similarity index 100% rename from gfx/pics/starmie/back.png rename to gfx/pokemon/starmie/back.png diff --git a/gfx/pics/starmie/front.animated.2bpp.lz.522b6699 b/gfx/pokemon/starmie/front.animated.2bpp.lz.522b6699 similarity index 100% rename from gfx/pics/starmie/front.animated.2bpp.lz.522b6699 rename to gfx/pokemon/starmie/front.animated.2bpp.lz.522b6699 diff --git a/gfx/pics/starmie/front.png b/gfx/pokemon/starmie/front.png similarity index 100% rename from gfx/pics/starmie/front.png rename to gfx/pokemon/starmie/front.png diff --git a/gfx/pics/starmie/shiny.pal b/gfx/pokemon/starmie/shiny.pal similarity index 100% rename from gfx/pics/starmie/shiny.pal rename to gfx/pokemon/starmie/shiny.pal diff --git a/gfx/pics/staryu/anim0.asm b/gfx/pokemon/staryu/anim0.asm similarity index 100% rename from gfx/pics/staryu/anim0.asm rename to gfx/pokemon/staryu/anim0.asm diff --git a/gfx/pics/staryu/anim1.asm b/gfx/pokemon/staryu/anim1.asm similarity index 100% rename from gfx/pics/staryu/anim1.asm rename to gfx/pokemon/staryu/anim1.asm diff --git a/gfx/pics/staryu/back.2bpp.lz.79ea9d00 b/gfx/pokemon/staryu/back.2bpp.lz.79ea9d00 similarity index 100% rename from gfx/pics/staryu/back.2bpp.lz.79ea9d00 rename to gfx/pokemon/staryu/back.2bpp.lz.79ea9d00 diff --git a/gfx/pics/staryu/back.png b/gfx/pokemon/staryu/back.png similarity index 100% rename from gfx/pics/staryu/back.png rename to gfx/pokemon/staryu/back.png diff --git a/gfx/pics/staryu/front.animated.2bpp.lz.22f1d06b b/gfx/pokemon/staryu/front.animated.2bpp.lz.22f1d06b similarity index 100% rename from gfx/pics/staryu/front.animated.2bpp.lz.22f1d06b rename to gfx/pokemon/staryu/front.animated.2bpp.lz.22f1d06b diff --git a/gfx/pics/staryu/front.png b/gfx/pokemon/staryu/front.png similarity index 100% rename from gfx/pics/staryu/front.png rename to gfx/pokemon/staryu/front.png diff --git a/gfx/pics/staryu/shiny.pal b/gfx/pokemon/staryu/shiny.pal similarity index 100% rename from gfx/pics/staryu/shiny.pal rename to gfx/pokemon/staryu/shiny.pal diff --git a/gfx/pics/steelix/anim0.asm b/gfx/pokemon/steelix/anim0.asm similarity index 100% rename from gfx/pics/steelix/anim0.asm rename to gfx/pokemon/steelix/anim0.asm diff --git a/gfx/pics/steelix/anim1.asm b/gfx/pokemon/steelix/anim1.asm similarity index 100% rename from gfx/pics/steelix/anim1.asm rename to gfx/pokemon/steelix/anim1.asm diff --git a/gfx/pics/steelix/back.2bpp.lz.f3c03e61 b/gfx/pokemon/steelix/back.2bpp.lz.f3c03e61 similarity index 100% rename from gfx/pics/steelix/back.2bpp.lz.f3c03e61 rename to gfx/pokemon/steelix/back.2bpp.lz.f3c03e61 diff --git a/gfx/pics/steelix/back.png b/gfx/pokemon/steelix/back.png similarity index 100% rename from gfx/pics/steelix/back.png rename to gfx/pokemon/steelix/back.png diff --git a/gfx/pics/steelix/front.animated.2bpp.lz.42f3f8d1 b/gfx/pokemon/steelix/front.animated.2bpp.lz.42f3f8d1 similarity index 100% rename from gfx/pics/steelix/front.animated.2bpp.lz.42f3f8d1 rename to gfx/pokemon/steelix/front.animated.2bpp.lz.42f3f8d1 diff --git a/gfx/pics/steelix/front.png b/gfx/pokemon/steelix/front.png similarity index 100% rename from gfx/pics/steelix/front.png rename to gfx/pokemon/steelix/front.png diff --git a/gfx/pics/steelix/shiny.pal b/gfx/pokemon/steelix/shiny.pal similarity index 100% rename from gfx/pics/steelix/shiny.pal rename to gfx/pokemon/steelix/shiny.pal diff --git a/gfx/pics/sudowoodo/anim0.asm b/gfx/pokemon/sudowoodo/anim0.asm similarity index 100% rename from gfx/pics/sudowoodo/anim0.asm rename to gfx/pokemon/sudowoodo/anim0.asm diff --git a/gfx/pics/sudowoodo/anim1.asm b/gfx/pokemon/sudowoodo/anim1.asm similarity index 100% rename from gfx/pics/sudowoodo/anim1.asm rename to gfx/pokemon/sudowoodo/anim1.asm diff --git a/gfx/pics/sudowoodo/back.2bpp.lz.728036c6 b/gfx/pokemon/sudowoodo/back.2bpp.lz.728036c6 similarity index 100% rename from gfx/pics/sudowoodo/back.2bpp.lz.728036c6 rename to gfx/pokemon/sudowoodo/back.2bpp.lz.728036c6 diff --git a/gfx/pics/sudowoodo/back.png b/gfx/pokemon/sudowoodo/back.png similarity index 100% rename from gfx/pics/sudowoodo/back.png rename to gfx/pokemon/sudowoodo/back.png diff --git a/gfx/pics/sudowoodo/front.animated.2bpp.lz.b0f04991 b/gfx/pokemon/sudowoodo/front.animated.2bpp.lz.b0f04991 similarity index 100% rename from gfx/pics/sudowoodo/front.animated.2bpp.lz.b0f04991 rename to gfx/pokemon/sudowoodo/front.animated.2bpp.lz.b0f04991 diff --git a/gfx/pics/sudowoodo/front.png b/gfx/pokemon/sudowoodo/front.png similarity index 100% rename from gfx/pics/sudowoodo/front.png rename to gfx/pokemon/sudowoodo/front.png diff --git a/gfx/pics/sudowoodo/shiny.pal b/gfx/pokemon/sudowoodo/shiny.pal similarity index 100% rename from gfx/pics/sudowoodo/shiny.pal rename to gfx/pokemon/sudowoodo/shiny.pal diff --git a/gfx/pics/suicune/anim0.asm b/gfx/pokemon/suicune/anim0.asm similarity index 100% rename from gfx/pics/suicune/anim0.asm rename to gfx/pokemon/suicune/anim0.asm diff --git a/gfx/pics/suicune/anim1.asm b/gfx/pokemon/suicune/anim1.asm similarity index 100% rename from gfx/pics/suicune/anim1.asm rename to gfx/pokemon/suicune/anim1.asm diff --git a/gfx/pics/suicune/back.2bpp.lz.5c49d112 b/gfx/pokemon/suicune/back.2bpp.lz.5c49d112 similarity index 100% rename from gfx/pics/suicune/back.2bpp.lz.5c49d112 rename to gfx/pokemon/suicune/back.2bpp.lz.5c49d112 diff --git a/gfx/pics/suicune/back.png b/gfx/pokemon/suicune/back.png similarity index 100% rename from gfx/pics/suicune/back.png rename to gfx/pokemon/suicune/back.png diff --git a/gfx/pics/suicune/front.animated.2bpp.lz.64698c0a b/gfx/pokemon/suicune/front.animated.2bpp.lz.64698c0a similarity index 100% rename from gfx/pics/suicune/front.animated.2bpp.lz.64698c0a rename to gfx/pokemon/suicune/front.animated.2bpp.lz.64698c0a diff --git a/gfx/pics/suicune/front.png b/gfx/pokemon/suicune/front.png similarity index 100% rename from gfx/pics/suicune/front.png rename to gfx/pokemon/suicune/front.png diff --git a/gfx/pics/suicune/shiny.pal b/gfx/pokemon/suicune/shiny.pal similarity index 100% rename from gfx/pics/suicune/shiny.pal rename to gfx/pokemon/suicune/shiny.pal diff --git a/gfx/pics/sunflora/anim0.asm b/gfx/pokemon/sunflora/anim0.asm similarity index 100% rename from gfx/pics/sunflora/anim0.asm rename to gfx/pokemon/sunflora/anim0.asm diff --git a/gfx/pics/sunflora/anim1.asm b/gfx/pokemon/sunflora/anim1.asm similarity index 100% rename from gfx/pics/sunflora/anim1.asm rename to gfx/pokemon/sunflora/anim1.asm diff --git a/gfx/pics/sunflora/back.2bpp.lz.9d0684f0 b/gfx/pokemon/sunflora/back.2bpp.lz.9d0684f0 similarity index 100% rename from gfx/pics/sunflora/back.2bpp.lz.9d0684f0 rename to gfx/pokemon/sunflora/back.2bpp.lz.9d0684f0 diff --git a/gfx/pics/sunflora/back.png b/gfx/pokemon/sunflora/back.png similarity index 100% rename from gfx/pics/sunflora/back.png rename to gfx/pokemon/sunflora/back.png diff --git a/gfx/pics/sunflora/front.animated.2bpp.lz.258c3e67 b/gfx/pokemon/sunflora/front.animated.2bpp.lz.258c3e67 similarity index 100% rename from gfx/pics/sunflora/front.animated.2bpp.lz.258c3e67 rename to gfx/pokemon/sunflora/front.animated.2bpp.lz.258c3e67 diff --git a/gfx/pics/sunflora/front.png b/gfx/pokemon/sunflora/front.png similarity index 100% rename from gfx/pics/sunflora/front.png rename to gfx/pokemon/sunflora/front.png diff --git a/gfx/pics/sunflora/shiny.pal b/gfx/pokemon/sunflora/shiny.pal similarity index 100% rename from gfx/pics/sunflora/shiny.pal rename to gfx/pokemon/sunflora/shiny.pal diff --git a/gfx/pics/sunkern/anim0.asm b/gfx/pokemon/sunkern/anim0.asm similarity index 100% rename from gfx/pics/sunkern/anim0.asm rename to gfx/pokemon/sunkern/anim0.asm diff --git a/gfx/pics/sunkern/anim1.asm b/gfx/pokemon/sunkern/anim1.asm similarity index 100% rename from gfx/pics/sunkern/anim1.asm rename to gfx/pokemon/sunkern/anim1.asm diff --git a/gfx/pics/sunkern/back.2bpp.lz.d28f6303 b/gfx/pokemon/sunkern/back.2bpp.lz.d28f6303 similarity index 100% rename from gfx/pics/sunkern/back.2bpp.lz.d28f6303 rename to gfx/pokemon/sunkern/back.2bpp.lz.d28f6303 diff --git a/gfx/pics/sunkern/back.png b/gfx/pokemon/sunkern/back.png similarity index 100% rename from gfx/pics/sunkern/back.png rename to gfx/pokemon/sunkern/back.png diff --git a/gfx/pics/sunkern/front.animated.2bpp.lz.316c5261 b/gfx/pokemon/sunkern/front.animated.2bpp.lz.316c5261 similarity index 100% rename from gfx/pics/sunkern/front.animated.2bpp.lz.316c5261 rename to gfx/pokemon/sunkern/front.animated.2bpp.lz.316c5261 diff --git a/gfx/pics/sunkern/front.png b/gfx/pokemon/sunkern/front.png similarity index 100% rename from gfx/pics/sunkern/front.png rename to gfx/pokemon/sunkern/front.png diff --git a/gfx/pics/sunkern/shiny.pal b/gfx/pokemon/sunkern/shiny.pal similarity index 100% rename from gfx/pics/sunkern/shiny.pal rename to gfx/pokemon/sunkern/shiny.pal diff --git a/gfx/pics/swinub/anim0.asm b/gfx/pokemon/swinub/anim0.asm similarity index 100% rename from gfx/pics/swinub/anim0.asm rename to gfx/pokemon/swinub/anim0.asm diff --git a/gfx/pics/swinub/anim1.asm b/gfx/pokemon/swinub/anim1.asm similarity index 100% rename from gfx/pics/swinub/anim1.asm rename to gfx/pokemon/swinub/anim1.asm diff --git a/gfx/pics/swinub/back.2bpp.lz.1ebbfabf b/gfx/pokemon/swinub/back.2bpp.lz.1ebbfabf similarity index 100% rename from gfx/pics/swinub/back.2bpp.lz.1ebbfabf rename to gfx/pokemon/swinub/back.2bpp.lz.1ebbfabf diff --git a/gfx/pics/swinub/back.png b/gfx/pokemon/swinub/back.png similarity index 100% rename from gfx/pics/swinub/back.png rename to gfx/pokemon/swinub/back.png diff --git a/gfx/pics/swinub/front.animated.2bpp.lz.228147a5 b/gfx/pokemon/swinub/front.animated.2bpp.lz.228147a5 similarity index 100% rename from gfx/pics/swinub/front.animated.2bpp.lz.228147a5 rename to gfx/pokemon/swinub/front.animated.2bpp.lz.228147a5 diff --git a/gfx/pics/swinub/front.png b/gfx/pokemon/swinub/front.png similarity index 100% rename from gfx/pics/swinub/front.png rename to gfx/pokemon/swinub/front.png diff --git a/gfx/pics/swinub/shiny.pal b/gfx/pokemon/swinub/shiny.pal similarity index 100% rename from gfx/pics/swinub/shiny.pal rename to gfx/pokemon/swinub/shiny.pal diff --git a/gfx/pics/tangela/anim0.asm b/gfx/pokemon/tangela/anim0.asm similarity index 100% rename from gfx/pics/tangela/anim0.asm rename to gfx/pokemon/tangela/anim0.asm diff --git a/gfx/pics/tangela/anim1.asm b/gfx/pokemon/tangela/anim1.asm similarity index 100% rename from gfx/pics/tangela/anim1.asm rename to gfx/pokemon/tangela/anim1.asm diff --git a/gfx/pics/tangela/back.2bpp.lz.435194a6 b/gfx/pokemon/tangela/back.2bpp.lz.435194a6 similarity index 100% rename from gfx/pics/tangela/back.2bpp.lz.435194a6 rename to gfx/pokemon/tangela/back.2bpp.lz.435194a6 diff --git a/gfx/pics/tangela/back.png b/gfx/pokemon/tangela/back.png similarity index 100% rename from gfx/pics/tangela/back.png rename to gfx/pokemon/tangela/back.png diff --git a/gfx/pics/tangela/front.animated.2bpp.lz.7cb3fed8 b/gfx/pokemon/tangela/front.animated.2bpp.lz.7cb3fed8 similarity index 100% rename from gfx/pics/tangela/front.animated.2bpp.lz.7cb3fed8 rename to gfx/pokemon/tangela/front.animated.2bpp.lz.7cb3fed8 diff --git a/gfx/pics/tangela/front.png b/gfx/pokemon/tangela/front.png similarity index 100% rename from gfx/pics/tangela/front.png rename to gfx/pokemon/tangela/front.png diff --git a/gfx/pics/tangela/shiny.pal b/gfx/pokemon/tangela/shiny.pal similarity index 100% rename from gfx/pics/tangela/shiny.pal rename to gfx/pokemon/tangela/shiny.pal diff --git a/gfx/pics/tauros/anim0.asm b/gfx/pokemon/tauros/anim0.asm similarity index 100% rename from gfx/pics/tauros/anim0.asm rename to gfx/pokemon/tauros/anim0.asm diff --git a/gfx/pics/tauros/anim1.asm b/gfx/pokemon/tauros/anim1.asm similarity index 100% rename from gfx/pics/tauros/anim1.asm rename to gfx/pokemon/tauros/anim1.asm diff --git a/gfx/pics/tauros/back.2bpp.lz.f487c586 b/gfx/pokemon/tauros/back.2bpp.lz.f487c586 similarity index 100% rename from gfx/pics/tauros/back.2bpp.lz.f487c586 rename to gfx/pokemon/tauros/back.2bpp.lz.f487c586 diff --git a/gfx/pics/tauros/back.png b/gfx/pokemon/tauros/back.png similarity index 100% rename from gfx/pics/tauros/back.png rename to gfx/pokemon/tauros/back.png diff --git a/gfx/pics/tauros/front.animated.2bpp.lz.982dd0db b/gfx/pokemon/tauros/front.animated.2bpp.lz.982dd0db similarity index 100% rename from gfx/pics/tauros/front.animated.2bpp.lz.982dd0db rename to gfx/pokemon/tauros/front.animated.2bpp.lz.982dd0db diff --git a/gfx/pics/tauros/front.png b/gfx/pokemon/tauros/front.png similarity index 100% rename from gfx/pics/tauros/front.png rename to gfx/pokemon/tauros/front.png diff --git a/gfx/pics/tauros/shiny.pal b/gfx/pokemon/tauros/shiny.pal similarity index 100% rename from gfx/pics/tauros/shiny.pal rename to gfx/pokemon/tauros/shiny.pal diff --git a/gfx/pics/teddiursa/anim0.asm b/gfx/pokemon/teddiursa/anim0.asm similarity index 100% rename from gfx/pics/teddiursa/anim0.asm rename to gfx/pokemon/teddiursa/anim0.asm diff --git a/gfx/pics/teddiursa/anim1.asm b/gfx/pokemon/teddiursa/anim1.asm similarity index 100% rename from gfx/pics/teddiursa/anim1.asm rename to gfx/pokemon/teddiursa/anim1.asm diff --git a/gfx/pics/teddiursa/back.2bpp.lz.53f6e34e b/gfx/pokemon/teddiursa/back.2bpp.lz.53f6e34e similarity index 100% rename from gfx/pics/teddiursa/back.2bpp.lz.53f6e34e rename to gfx/pokemon/teddiursa/back.2bpp.lz.53f6e34e diff --git a/gfx/pics/teddiursa/back.png b/gfx/pokemon/teddiursa/back.png similarity index 100% rename from gfx/pics/teddiursa/back.png rename to gfx/pokemon/teddiursa/back.png diff --git a/gfx/pics/teddiursa/front.animated.2bpp.lz.5f9648c7 b/gfx/pokemon/teddiursa/front.animated.2bpp.lz.5f9648c7 similarity index 100% rename from gfx/pics/teddiursa/front.animated.2bpp.lz.5f9648c7 rename to gfx/pokemon/teddiursa/front.animated.2bpp.lz.5f9648c7 diff --git a/gfx/pics/teddiursa/front.png b/gfx/pokemon/teddiursa/front.png similarity index 100% rename from gfx/pics/teddiursa/front.png rename to gfx/pokemon/teddiursa/front.png diff --git a/gfx/pics/teddiursa/shiny.pal b/gfx/pokemon/teddiursa/shiny.pal similarity index 100% rename from gfx/pics/teddiursa/shiny.pal rename to gfx/pokemon/teddiursa/shiny.pal diff --git a/gfx/pics/tentacool/anim0.asm b/gfx/pokemon/tentacool/anim0.asm similarity index 100% rename from gfx/pics/tentacool/anim0.asm rename to gfx/pokemon/tentacool/anim0.asm diff --git a/gfx/pics/tentacool/anim1.asm b/gfx/pokemon/tentacool/anim1.asm similarity index 100% rename from gfx/pics/tentacool/anim1.asm rename to gfx/pokemon/tentacool/anim1.asm diff --git a/gfx/pics/tentacool/back.2bpp.lz.ae7b2102 b/gfx/pokemon/tentacool/back.2bpp.lz.ae7b2102 similarity index 100% rename from gfx/pics/tentacool/back.2bpp.lz.ae7b2102 rename to gfx/pokemon/tentacool/back.2bpp.lz.ae7b2102 diff --git a/gfx/pics/tentacool/back.png b/gfx/pokemon/tentacool/back.png similarity index 100% rename from gfx/pics/tentacool/back.png rename to gfx/pokemon/tentacool/back.png diff --git a/gfx/pics/tentacool/front.animated.2bpp.lz.7a86457c b/gfx/pokemon/tentacool/front.animated.2bpp.lz.7a86457c similarity index 100% rename from gfx/pics/tentacool/front.animated.2bpp.lz.7a86457c rename to gfx/pokemon/tentacool/front.animated.2bpp.lz.7a86457c diff --git a/gfx/pics/tentacool/front.png b/gfx/pokemon/tentacool/front.png similarity index 100% rename from gfx/pics/tentacool/front.png rename to gfx/pokemon/tentacool/front.png diff --git a/gfx/pics/tentacool/shiny.pal b/gfx/pokemon/tentacool/shiny.pal similarity index 100% rename from gfx/pics/tentacool/shiny.pal rename to gfx/pokemon/tentacool/shiny.pal diff --git a/gfx/pics/tentacruel/anim0.asm b/gfx/pokemon/tentacruel/anim0.asm similarity index 100% rename from gfx/pics/tentacruel/anim0.asm rename to gfx/pokemon/tentacruel/anim0.asm diff --git a/gfx/pics/tentacruel/anim1.asm b/gfx/pokemon/tentacruel/anim1.asm similarity index 100% rename from gfx/pics/tentacruel/anim1.asm rename to gfx/pokemon/tentacruel/anim1.asm diff --git a/gfx/pics/tentacruel/back.2bpp.lz.0e344f19 b/gfx/pokemon/tentacruel/back.2bpp.lz.0e344f19 similarity index 100% rename from gfx/pics/tentacruel/back.2bpp.lz.0e344f19 rename to gfx/pokemon/tentacruel/back.2bpp.lz.0e344f19 diff --git a/gfx/pics/tentacruel/back.png b/gfx/pokemon/tentacruel/back.png similarity index 100% rename from gfx/pics/tentacruel/back.png rename to gfx/pokemon/tentacruel/back.png diff --git a/gfx/pics/tentacruel/front.animated.2bpp.lz.f13e5904 b/gfx/pokemon/tentacruel/front.animated.2bpp.lz.f13e5904 similarity index 100% rename from gfx/pics/tentacruel/front.animated.2bpp.lz.f13e5904 rename to gfx/pokemon/tentacruel/front.animated.2bpp.lz.f13e5904 diff --git a/gfx/pics/tentacruel/front.png b/gfx/pokemon/tentacruel/front.png similarity index 100% rename from gfx/pics/tentacruel/front.png rename to gfx/pokemon/tentacruel/front.png diff --git a/gfx/pics/tentacruel/shiny.pal b/gfx/pokemon/tentacruel/shiny.pal similarity index 100% rename from gfx/pics/tentacruel/shiny.pal rename to gfx/pokemon/tentacruel/shiny.pal diff --git a/gfx/pics/togepi/anim0.asm b/gfx/pokemon/togepi/anim0.asm similarity index 100% rename from gfx/pics/togepi/anim0.asm rename to gfx/pokemon/togepi/anim0.asm diff --git a/gfx/pics/togepi/anim1.asm b/gfx/pokemon/togepi/anim1.asm similarity index 100% rename from gfx/pics/togepi/anim1.asm rename to gfx/pokemon/togepi/anim1.asm diff --git a/gfx/pics/togepi/back.2bpp.lz.0e22cc02 b/gfx/pokemon/togepi/back.2bpp.lz.0e22cc02 similarity index 100% rename from gfx/pics/togepi/back.2bpp.lz.0e22cc02 rename to gfx/pokemon/togepi/back.2bpp.lz.0e22cc02 diff --git a/gfx/pics/togepi/back.png b/gfx/pokemon/togepi/back.png similarity index 100% rename from gfx/pics/togepi/back.png rename to gfx/pokemon/togepi/back.png diff --git a/gfx/pics/togepi/front.animated.2bpp.lz.0cf7ba07 b/gfx/pokemon/togepi/front.animated.2bpp.lz.0cf7ba07 similarity index 100% rename from gfx/pics/togepi/front.animated.2bpp.lz.0cf7ba07 rename to gfx/pokemon/togepi/front.animated.2bpp.lz.0cf7ba07 diff --git a/gfx/pics/togepi/front.png b/gfx/pokemon/togepi/front.png similarity index 100% rename from gfx/pics/togepi/front.png rename to gfx/pokemon/togepi/front.png diff --git a/gfx/pics/togepi/shiny.pal b/gfx/pokemon/togepi/shiny.pal similarity index 100% rename from gfx/pics/togepi/shiny.pal rename to gfx/pokemon/togepi/shiny.pal diff --git a/gfx/pics/togetic/anim0.asm b/gfx/pokemon/togetic/anim0.asm similarity index 100% rename from gfx/pics/togetic/anim0.asm rename to gfx/pokemon/togetic/anim0.asm diff --git a/gfx/pics/togetic/anim1.asm b/gfx/pokemon/togetic/anim1.asm similarity index 100% rename from gfx/pics/togetic/anim1.asm rename to gfx/pokemon/togetic/anim1.asm diff --git a/gfx/pics/togetic/back.2bpp.lz.62cbb330 b/gfx/pokemon/togetic/back.2bpp.lz.62cbb330 similarity index 100% rename from gfx/pics/togetic/back.2bpp.lz.62cbb330 rename to gfx/pokemon/togetic/back.2bpp.lz.62cbb330 diff --git a/gfx/pics/togetic/back.png b/gfx/pokemon/togetic/back.png similarity index 100% rename from gfx/pics/togetic/back.png rename to gfx/pokemon/togetic/back.png diff --git a/gfx/pics/togetic/front.animated.2bpp.lz.5797583e b/gfx/pokemon/togetic/front.animated.2bpp.lz.5797583e similarity index 100% rename from gfx/pics/togetic/front.animated.2bpp.lz.5797583e rename to gfx/pokemon/togetic/front.animated.2bpp.lz.5797583e diff --git a/gfx/pics/togetic/front.png b/gfx/pokemon/togetic/front.png similarity index 100% rename from gfx/pics/togetic/front.png rename to gfx/pokemon/togetic/front.png diff --git a/gfx/pics/togetic/shiny.pal b/gfx/pokemon/togetic/shiny.pal similarity index 100% rename from gfx/pics/togetic/shiny.pal rename to gfx/pokemon/togetic/shiny.pal diff --git a/gfx/pics/totodile/anim0.asm b/gfx/pokemon/totodile/anim0.asm similarity index 100% rename from gfx/pics/totodile/anim0.asm rename to gfx/pokemon/totodile/anim0.asm diff --git a/gfx/pics/totodile/anim1.asm b/gfx/pokemon/totodile/anim1.asm similarity index 100% rename from gfx/pics/totodile/anim1.asm rename to gfx/pokemon/totodile/anim1.asm diff --git a/gfx/pics/totodile/back.2bpp.lz.ab6bc2a1 b/gfx/pokemon/totodile/back.2bpp.lz.ab6bc2a1 similarity index 100% rename from gfx/pics/totodile/back.2bpp.lz.ab6bc2a1 rename to gfx/pokemon/totodile/back.2bpp.lz.ab6bc2a1 diff --git a/gfx/pics/totodile/back.png b/gfx/pokemon/totodile/back.png similarity index 100% rename from gfx/pics/totodile/back.png rename to gfx/pokemon/totodile/back.png diff --git a/gfx/pics/totodile/front.animated.2bpp.lz.afce8cd0 b/gfx/pokemon/totodile/front.animated.2bpp.lz.afce8cd0 similarity index 100% rename from gfx/pics/totodile/front.animated.2bpp.lz.afce8cd0 rename to gfx/pokemon/totodile/front.animated.2bpp.lz.afce8cd0 diff --git a/gfx/pics/totodile/front.png b/gfx/pokemon/totodile/front.png similarity index 100% rename from gfx/pics/totodile/front.png rename to gfx/pokemon/totodile/front.png diff --git a/gfx/pics/totodile/shiny.pal b/gfx/pokemon/totodile/shiny.pal similarity index 100% rename from gfx/pics/totodile/shiny.pal rename to gfx/pokemon/totodile/shiny.pal diff --git a/gfx/pics/typhlosion/anim0.asm b/gfx/pokemon/typhlosion/anim0.asm similarity index 100% rename from gfx/pics/typhlosion/anim0.asm rename to gfx/pokemon/typhlosion/anim0.asm diff --git a/gfx/pics/typhlosion/anim1.asm b/gfx/pokemon/typhlosion/anim1.asm similarity index 100% rename from gfx/pics/typhlosion/anim1.asm rename to gfx/pokemon/typhlosion/anim1.asm diff --git a/gfx/pics/typhlosion/back.2bpp.lz.83be0292 b/gfx/pokemon/typhlosion/back.2bpp.lz.83be0292 similarity index 100% rename from gfx/pics/typhlosion/back.2bpp.lz.83be0292 rename to gfx/pokemon/typhlosion/back.2bpp.lz.83be0292 diff --git a/gfx/pics/typhlosion/back.png b/gfx/pokemon/typhlosion/back.png similarity index 100% rename from gfx/pics/typhlosion/back.png rename to gfx/pokemon/typhlosion/back.png diff --git a/gfx/pics/typhlosion/front.animated.2bpp.lz.65adc1e1 b/gfx/pokemon/typhlosion/front.animated.2bpp.lz.65adc1e1 similarity index 100% rename from gfx/pics/typhlosion/front.animated.2bpp.lz.65adc1e1 rename to gfx/pokemon/typhlosion/front.animated.2bpp.lz.65adc1e1 diff --git a/gfx/pics/typhlosion/front.png b/gfx/pokemon/typhlosion/front.png similarity index 100% rename from gfx/pics/typhlosion/front.png rename to gfx/pokemon/typhlosion/front.png diff --git a/gfx/pics/typhlosion/shiny.pal b/gfx/pokemon/typhlosion/shiny.pal similarity index 100% rename from gfx/pics/typhlosion/shiny.pal rename to gfx/pokemon/typhlosion/shiny.pal diff --git a/gfx/pics/tyranitar/anim0.asm b/gfx/pokemon/tyranitar/anim0.asm similarity index 100% rename from gfx/pics/tyranitar/anim0.asm rename to gfx/pokemon/tyranitar/anim0.asm diff --git a/gfx/pics/tyranitar/anim1.asm b/gfx/pokemon/tyranitar/anim1.asm similarity index 100% rename from gfx/pics/tyranitar/anim1.asm rename to gfx/pokemon/tyranitar/anim1.asm diff --git a/gfx/pics/tyranitar/back.2bpp.lz.05b022c9 b/gfx/pokemon/tyranitar/back.2bpp.lz.05b022c9 similarity index 100% rename from gfx/pics/tyranitar/back.2bpp.lz.05b022c9 rename to gfx/pokemon/tyranitar/back.2bpp.lz.05b022c9 diff --git a/gfx/pics/tyranitar/back.png b/gfx/pokemon/tyranitar/back.png similarity index 100% rename from gfx/pics/tyranitar/back.png rename to gfx/pokemon/tyranitar/back.png diff --git a/gfx/pics/tyranitar/front.animated.2bpp.lz.e0e9187e b/gfx/pokemon/tyranitar/front.animated.2bpp.lz.e0e9187e similarity index 100% rename from gfx/pics/tyranitar/front.animated.2bpp.lz.e0e9187e rename to gfx/pokemon/tyranitar/front.animated.2bpp.lz.e0e9187e diff --git a/gfx/pics/tyranitar/front.png b/gfx/pokemon/tyranitar/front.png similarity index 100% rename from gfx/pics/tyranitar/front.png rename to gfx/pokemon/tyranitar/front.png diff --git a/gfx/pics/tyranitar/shiny.pal b/gfx/pokemon/tyranitar/shiny.pal similarity index 100% rename from gfx/pics/tyranitar/shiny.pal rename to gfx/pokemon/tyranitar/shiny.pal diff --git a/gfx/pics/tyrogue/anim0.asm b/gfx/pokemon/tyrogue/anim0.asm similarity index 100% rename from gfx/pics/tyrogue/anim0.asm rename to gfx/pokemon/tyrogue/anim0.asm diff --git a/gfx/pics/tyrogue/anim1.asm b/gfx/pokemon/tyrogue/anim1.asm similarity index 100% rename from gfx/pics/tyrogue/anim1.asm rename to gfx/pokemon/tyrogue/anim1.asm diff --git a/gfx/pics/tyrogue/back.2bpp.lz.5d84cef1 b/gfx/pokemon/tyrogue/back.2bpp.lz.5d84cef1 similarity index 100% rename from gfx/pics/tyrogue/back.2bpp.lz.5d84cef1 rename to gfx/pokemon/tyrogue/back.2bpp.lz.5d84cef1 diff --git a/gfx/pics/tyrogue/back.png b/gfx/pokemon/tyrogue/back.png similarity index 100% rename from gfx/pics/tyrogue/back.png rename to gfx/pokemon/tyrogue/back.png diff --git a/gfx/pics/tyrogue/front.animated.2bpp.lz.a3790421 b/gfx/pokemon/tyrogue/front.animated.2bpp.lz.a3790421 similarity index 100% rename from gfx/pics/tyrogue/front.animated.2bpp.lz.a3790421 rename to gfx/pokemon/tyrogue/front.animated.2bpp.lz.a3790421 diff --git a/gfx/pics/tyrogue/front.png b/gfx/pokemon/tyrogue/front.png similarity index 100% rename from gfx/pics/tyrogue/front.png rename to gfx/pokemon/tyrogue/front.png diff --git a/gfx/pics/tyrogue/shiny.pal b/gfx/pokemon/tyrogue/shiny.pal similarity index 100% rename from gfx/pics/tyrogue/shiny.pal rename to gfx/pokemon/tyrogue/shiny.pal diff --git a/gfx/pics/umbreon/anim0.asm b/gfx/pokemon/umbreon/anim0.asm similarity index 100% rename from gfx/pics/umbreon/anim0.asm rename to gfx/pokemon/umbreon/anim0.asm diff --git a/gfx/pics/umbreon/anim1.asm b/gfx/pokemon/umbreon/anim1.asm similarity index 100% rename from gfx/pics/umbreon/anim1.asm rename to gfx/pokemon/umbreon/anim1.asm diff --git a/gfx/pics/umbreon/back.2bpp.lz.55e50b8c b/gfx/pokemon/umbreon/back.2bpp.lz.55e50b8c similarity index 100% rename from gfx/pics/umbreon/back.2bpp.lz.55e50b8c rename to gfx/pokemon/umbreon/back.2bpp.lz.55e50b8c diff --git a/gfx/pics/umbreon/back.png b/gfx/pokemon/umbreon/back.png similarity index 100% rename from gfx/pics/umbreon/back.png rename to gfx/pokemon/umbreon/back.png diff --git a/gfx/pics/umbreon/front.animated.2bpp.lz.b484be57 b/gfx/pokemon/umbreon/front.animated.2bpp.lz.b484be57 similarity index 100% rename from gfx/pics/umbreon/front.animated.2bpp.lz.b484be57 rename to gfx/pokemon/umbreon/front.animated.2bpp.lz.b484be57 diff --git a/gfx/pics/umbreon/front.png b/gfx/pokemon/umbreon/front.png similarity index 100% rename from gfx/pics/umbreon/front.png rename to gfx/pokemon/umbreon/front.png diff --git a/gfx/pics/umbreon/shiny.pal b/gfx/pokemon/umbreon/shiny.pal similarity index 100% rename from gfx/pics/umbreon/shiny.pal rename to gfx/pokemon/umbreon/shiny.pal diff --git a/gfx/pics/unown/anim0.asm b/gfx/pokemon/unown/anim0.asm similarity index 100% rename from gfx/pics/unown/anim0.asm rename to gfx/pokemon/unown/anim0.asm diff --git a/gfx/pics/unown/anim1.asm b/gfx/pokemon/unown/anim1.asm similarity index 100% rename from gfx/pics/unown/anim1.asm rename to gfx/pokemon/unown/anim1.asm diff --git a/gfx/pics/unown/bitmask.asm b/gfx/pokemon/unown/bitmask.asm similarity index 100% rename from gfx/pics/unown/bitmask.asm rename to gfx/pokemon/unown/bitmask.asm diff --git a/gfx/pics/unown/frames.asm b/gfx/pokemon/unown/frames.asm similarity index 100% rename from gfx/pics/unown/frames.asm rename to gfx/pokemon/unown/frames.asm diff --git a/gfx/pics/unown/normal.pal b/gfx/pokemon/unown/normal.pal similarity index 100% rename from gfx/pics/unown/normal.pal rename to gfx/pokemon/unown/normal.pal diff --git a/gfx/pics/unown/shiny.pal b/gfx/pokemon/unown/shiny.pal similarity index 100% rename from gfx/pics/unown/shiny.pal rename to gfx/pokemon/unown/shiny.pal diff --git a/gfx/pics/unown_a/anim0.asm b/gfx/pokemon/unown_a/anim0.asm similarity index 100% rename from gfx/pics/unown_a/anim0.asm rename to gfx/pokemon/unown_a/anim0.asm diff --git a/gfx/pics/unown_a/anim1.asm b/gfx/pokemon/unown_a/anim1.asm similarity index 100% rename from gfx/pics/unown_a/anim1.asm rename to gfx/pokemon/unown_a/anim1.asm diff --git a/gfx/pics/unown_a/back.2bpp.lz.b8389572 b/gfx/pokemon/unown_a/back.2bpp.lz.b8389572 similarity index 100% rename from gfx/pics/unown_a/back.2bpp.lz.b8389572 rename to gfx/pokemon/unown_a/back.2bpp.lz.b8389572 diff --git a/gfx/pics/unown_a/back.png b/gfx/pokemon/unown_a/back.png similarity index 100% rename from gfx/pics/unown_a/back.png rename to gfx/pokemon/unown_a/back.png diff --git a/gfx/pics/unown_a/front.animated.2bpp.lz.47e16756 b/gfx/pokemon/unown_a/front.animated.2bpp.lz.47e16756 similarity index 100% rename from gfx/pics/unown_a/front.animated.2bpp.lz.47e16756 rename to gfx/pokemon/unown_a/front.animated.2bpp.lz.47e16756 diff --git a/gfx/pics/unown_a/front.png b/gfx/pokemon/unown_a/front.png similarity index 100% rename from gfx/pics/unown_a/front.png rename to gfx/pokemon/unown_a/front.png diff --git a/gfx/pics/unown_anim_pointers.asm b/gfx/pokemon/unown_anim_pointers.asm similarity index 100% rename from gfx/pics/unown_anim_pointers.asm rename to gfx/pokemon/unown_anim_pointers.asm diff --git a/gfx/pokemon/unown_anims.asm b/gfx/pokemon/unown_anims.asm new file mode 100644 index 000000000..cb5bf0aa2 --- /dev/null +++ b/gfx/pokemon/unown_anims.asm @@ -0,0 +1,27 @@ +UnownAnimations: +UnownAAnimation: INCLUDE "gfx/pokemon/unown_a/anim0.asm" +UnownBAnimation: INCLUDE "gfx/pokemon/unown_b/anim0.asm" +UnownCAnimation: INCLUDE "gfx/pokemon/unown_c/anim0.asm" +UnownDAnimation: INCLUDE "gfx/pokemon/unown_d/anim0.asm" +UnownEAnimation: INCLUDE "gfx/pokemon/unown_e/anim0.asm" +UnownFAnimation: INCLUDE "gfx/pokemon/unown_f/anim0.asm" +UnownGAnimation: INCLUDE "gfx/pokemon/unown_g/anim0.asm" +UnownHAnimation: INCLUDE "gfx/pokemon/unown_h/anim0.asm" +UnownIAnimation: INCLUDE "gfx/pokemon/unown_i/anim0.asm" +UnownJAnimation: INCLUDE "gfx/pokemon/unown_j/anim0.asm" +UnownKAnimation: INCLUDE "gfx/pokemon/unown_k/anim0.asm" +UnownLAnimation: INCLUDE "gfx/pokemon/unown_l/anim0.asm" +UnownMAnimation: INCLUDE "gfx/pokemon/unown_m/anim0.asm" +UnownNAnimation: INCLUDE "gfx/pokemon/unown_n/anim0.asm" +UnownOAnimation: INCLUDE "gfx/pokemon/unown_o/anim0.asm" +UnownPAnimation: INCLUDE "gfx/pokemon/unown_p/anim0.asm" +UnownQAnimation: INCLUDE "gfx/pokemon/unown_q/anim0.asm" +UnownRAnimation: INCLUDE "gfx/pokemon/unown_r/anim0.asm" +UnownSAnimation: INCLUDE "gfx/pokemon/unown_s/anim0.asm" +UnownTAnimation: INCLUDE "gfx/pokemon/unown_t/anim0.asm" +UnownUAnimation: INCLUDE "gfx/pokemon/unown_u/anim0.asm" +UnownVAnimation: INCLUDE "gfx/pokemon/unown_v/anim0.asm" +UnownWAnimation: INCLUDE "gfx/pokemon/unown_w/anim0.asm" +UnownXAnimation: INCLUDE "gfx/pokemon/unown_x/anim0.asm" +UnownYAnimation: INCLUDE "gfx/pokemon/unown_y/anim0.asm" +UnownZAnimation: INCLUDE "gfx/pokemon/unown_z/anim0.asm" diff --git a/gfx/pics/unown_b/anim0.asm b/gfx/pokemon/unown_b/anim0.asm similarity index 100% rename from gfx/pics/unown_b/anim0.asm rename to gfx/pokemon/unown_b/anim0.asm diff --git a/gfx/pics/unown_b/anim1.asm b/gfx/pokemon/unown_b/anim1.asm similarity index 100% rename from gfx/pics/unown_b/anim1.asm rename to gfx/pokemon/unown_b/anim1.asm diff --git a/gfx/pics/unown_b/back.2bpp.lz.72a0840f b/gfx/pokemon/unown_b/back.2bpp.lz.72a0840f similarity index 100% rename from gfx/pics/unown_b/back.2bpp.lz.72a0840f rename to gfx/pokemon/unown_b/back.2bpp.lz.72a0840f diff --git a/gfx/pics/unown_b/back.png b/gfx/pokemon/unown_b/back.png similarity index 100% rename from gfx/pics/unown_b/back.png rename to gfx/pokemon/unown_b/back.png diff --git a/gfx/pics/unown_b/front.animated.2bpp.lz.5742d494 b/gfx/pokemon/unown_b/front.animated.2bpp.lz.5742d494 similarity index 100% rename from gfx/pics/unown_b/front.animated.2bpp.lz.5742d494 rename to gfx/pokemon/unown_b/front.animated.2bpp.lz.5742d494 diff --git a/gfx/pics/unown_b/front.png b/gfx/pokemon/unown_b/front.png similarity index 100% rename from gfx/pics/unown_b/front.png rename to gfx/pokemon/unown_b/front.png diff --git a/gfx/pics/unown_bitmask_pointers.asm b/gfx/pokemon/unown_bitmask_pointers.asm similarity index 100% rename from gfx/pics/unown_bitmask_pointers.asm rename to gfx/pokemon/unown_bitmask_pointers.asm diff --git a/gfx/pokemon/unown_bitmasks.asm b/gfx/pokemon/unown_bitmasks.asm new file mode 100644 index 000000000..99604c98f --- /dev/null +++ b/gfx/pokemon/unown_bitmasks.asm @@ -0,0 +1,26 @@ +UnownABitmasks: INCLUDE "gfx/pokemon/unown_a/bitmask.asm" +UnownBBitmasks: INCLUDE "gfx/pokemon/unown_b/bitmask.asm" +UnownCBitmasks: INCLUDE "gfx/pokemon/unown_c/bitmask.asm" +UnownDBitmasks: INCLUDE "gfx/pokemon/unown_d/bitmask.asm" +UnownEBitmasks: INCLUDE "gfx/pokemon/unown_e/bitmask.asm" +UnownFBitmasks: INCLUDE "gfx/pokemon/unown_f/bitmask.asm" +UnownGBitmasks: INCLUDE "gfx/pokemon/unown_g/bitmask.asm" +UnownHBitmasks: INCLUDE "gfx/pokemon/unown_h/bitmask.asm" +UnownIBitmasks: INCLUDE "gfx/pokemon/unown_i/bitmask.asm" +UnownJBitmasks: INCLUDE "gfx/pokemon/unown_j/bitmask.asm" +UnownKBitmasks: INCLUDE "gfx/pokemon/unown_k/bitmask.asm" +UnownLBitmasks: INCLUDE "gfx/pokemon/unown_l/bitmask.asm" +UnownMBitmasks: INCLUDE "gfx/pokemon/unown_m/bitmask.asm" +UnownNBitmasks: INCLUDE "gfx/pokemon/unown_n/bitmask.asm" +UnownOBitmasks: INCLUDE "gfx/pokemon/unown_o/bitmask.asm" +UnownPBitmasks: INCLUDE "gfx/pokemon/unown_p/bitmask.asm" +UnownQBitmasks: INCLUDE "gfx/pokemon/unown_q/bitmask.asm" +UnownRBitmasks: INCLUDE "gfx/pokemon/unown_r/bitmask.asm" +UnownSBitmasks: INCLUDE "gfx/pokemon/unown_s/bitmask.asm" +UnownTBitmasks: INCLUDE "gfx/pokemon/unown_t/bitmask.asm" +UnownUBitmasks: INCLUDE "gfx/pokemon/unown_u/bitmask.asm" +UnownVBitmasks: INCLUDE "gfx/pokemon/unown_v/bitmask.asm" +UnownWBitmasks: INCLUDE "gfx/pokemon/unown_w/bitmask.asm" +UnownXBitmasks: INCLUDE "gfx/pokemon/unown_x/bitmask.asm" +UnownYBitmasks: INCLUDE "gfx/pokemon/unown_y/bitmask.asm" +UnownZBitmasks: INCLUDE "gfx/pokemon/unown_z/bitmask.asm" diff --git a/gfx/pics/unown_c/anim0.asm b/gfx/pokemon/unown_c/anim0.asm similarity index 100% rename from gfx/pics/unown_c/anim0.asm rename to gfx/pokemon/unown_c/anim0.asm diff --git a/gfx/pics/unown_c/anim1.asm b/gfx/pokemon/unown_c/anim1.asm similarity index 100% rename from gfx/pics/unown_c/anim1.asm rename to gfx/pokemon/unown_c/anim1.asm diff --git a/gfx/pics/unown_c/back.2bpp.lz.f92b665a b/gfx/pokemon/unown_c/back.2bpp.lz.f92b665a similarity index 100% rename from gfx/pics/unown_c/back.2bpp.lz.f92b665a rename to gfx/pokemon/unown_c/back.2bpp.lz.f92b665a diff --git a/gfx/pics/unown_c/back.png b/gfx/pokemon/unown_c/back.png similarity index 100% rename from gfx/pics/unown_c/back.png rename to gfx/pokemon/unown_c/back.png diff --git a/gfx/pics/unown_c/front.animated.2bpp.lz.5fef639b b/gfx/pokemon/unown_c/front.animated.2bpp.lz.5fef639b similarity index 100% rename from gfx/pics/unown_c/front.animated.2bpp.lz.5fef639b rename to gfx/pokemon/unown_c/front.animated.2bpp.lz.5fef639b diff --git a/gfx/pics/unown_c/front.png b/gfx/pokemon/unown_c/front.png similarity index 100% rename from gfx/pics/unown_c/front.png rename to gfx/pokemon/unown_c/front.png diff --git a/gfx/pics/unown_d/anim0.asm b/gfx/pokemon/unown_d/anim0.asm similarity index 100% rename from gfx/pics/unown_d/anim0.asm rename to gfx/pokemon/unown_d/anim0.asm diff --git a/gfx/pics/unown_d/anim1.asm b/gfx/pokemon/unown_d/anim1.asm similarity index 100% rename from gfx/pics/unown_d/anim1.asm rename to gfx/pokemon/unown_d/anim1.asm diff --git a/gfx/pics/unown_d/back.2bpp.lz.c8213d32 b/gfx/pokemon/unown_d/back.2bpp.lz.c8213d32 similarity index 100% rename from gfx/pics/unown_d/back.2bpp.lz.c8213d32 rename to gfx/pokemon/unown_d/back.2bpp.lz.c8213d32 diff --git a/gfx/pics/unown_d/back.png b/gfx/pokemon/unown_d/back.png similarity index 100% rename from gfx/pics/unown_d/back.png rename to gfx/pokemon/unown_d/back.png diff --git a/gfx/pics/unown_d/front.animated.2bpp.lz.7810a57f b/gfx/pokemon/unown_d/front.animated.2bpp.lz.7810a57f similarity index 100% rename from gfx/pics/unown_d/front.animated.2bpp.lz.7810a57f rename to gfx/pokemon/unown_d/front.animated.2bpp.lz.7810a57f diff --git a/gfx/pics/unown_d/front.png b/gfx/pokemon/unown_d/front.png similarity index 100% rename from gfx/pics/unown_d/front.png rename to gfx/pokemon/unown_d/front.png diff --git a/gfx/pics/unown_e/anim0.asm b/gfx/pokemon/unown_e/anim0.asm similarity index 100% rename from gfx/pics/unown_e/anim0.asm rename to gfx/pokemon/unown_e/anim0.asm diff --git a/gfx/pics/unown_e/anim1.asm b/gfx/pokemon/unown_e/anim1.asm similarity index 100% rename from gfx/pics/unown_e/anim1.asm rename to gfx/pokemon/unown_e/anim1.asm diff --git a/gfx/pics/unown_e/back.2bpp.lz.777a8ecd b/gfx/pokemon/unown_e/back.2bpp.lz.777a8ecd similarity index 100% rename from gfx/pics/unown_e/back.2bpp.lz.777a8ecd rename to gfx/pokemon/unown_e/back.2bpp.lz.777a8ecd diff --git a/gfx/pics/unown_e/back.png b/gfx/pokemon/unown_e/back.png similarity index 100% rename from gfx/pics/unown_e/back.png rename to gfx/pokemon/unown_e/back.png diff --git a/gfx/pics/unown_e/front.animated.2bpp.lz.83f43ff7 b/gfx/pokemon/unown_e/front.animated.2bpp.lz.83f43ff7 similarity index 100% rename from gfx/pics/unown_e/front.animated.2bpp.lz.83f43ff7 rename to gfx/pokemon/unown_e/front.animated.2bpp.lz.83f43ff7 diff --git a/gfx/pics/unown_e/front.png b/gfx/pokemon/unown_e/front.png similarity index 100% rename from gfx/pics/unown_e/front.png rename to gfx/pokemon/unown_e/front.png diff --git a/gfx/pics/unown_extra_pointers.asm b/gfx/pokemon/unown_extra_pointers.asm similarity index 100% rename from gfx/pics/unown_extra_pointers.asm rename to gfx/pokemon/unown_extra_pointers.asm diff --git a/gfx/pokemon/unown_extras.asm b/gfx/pokemon/unown_extras.asm new file mode 100644 index 000000000..218a539fe --- /dev/null +++ b/gfx/pokemon/unown_extras.asm @@ -0,0 +1,26 @@ +UnownAAnimationExtra: INCLUDE "gfx/pokemon/unown_a/anim1.asm" +UnownBAnimationExtra: INCLUDE "gfx/pokemon/unown_b/anim1.asm" +UnownCAnimationExtra: INCLUDE "gfx/pokemon/unown_c/anim1.asm" +UnownDAnimationExtra: INCLUDE "gfx/pokemon/unown_d/anim1.asm" +UnownEAnimationExtra: INCLUDE "gfx/pokemon/unown_e/anim1.asm" +UnownFAnimationExtra: INCLUDE "gfx/pokemon/unown_f/anim1.asm" +UnownGAnimationExtra: INCLUDE "gfx/pokemon/unown_g/anim1.asm" +UnownHAnimationExtra: INCLUDE "gfx/pokemon/unown_h/anim1.asm" +UnownIAnimationExtra: INCLUDE "gfx/pokemon/unown_i/anim1.asm" +UnownJAnimationExtra: INCLUDE "gfx/pokemon/unown_j/anim1.asm" +UnownKAnimationExtra: INCLUDE "gfx/pokemon/unown_k/anim1.asm" +UnownLAnimationExtra: INCLUDE "gfx/pokemon/unown_l/anim1.asm" +UnownMAnimationExtra: INCLUDE "gfx/pokemon/unown_m/anim1.asm" +UnownNAnimationExtra: INCLUDE "gfx/pokemon/unown_n/anim1.asm" +UnownOAnimationExtra: INCLUDE "gfx/pokemon/unown_o/anim1.asm" +UnownPAnimationExtra: INCLUDE "gfx/pokemon/unown_p/anim1.asm" +UnownQAnimationExtra: INCLUDE "gfx/pokemon/unown_q/anim1.asm" +UnownRAnimationExtra: INCLUDE "gfx/pokemon/unown_r/anim1.asm" +UnownSAnimationExtra: INCLUDE "gfx/pokemon/unown_s/anim1.asm" +UnownTAnimationExtra: INCLUDE "gfx/pokemon/unown_t/anim1.asm" +UnownUAnimationExtra: INCLUDE "gfx/pokemon/unown_u/anim1.asm" +UnownVAnimationExtra: INCLUDE "gfx/pokemon/unown_v/anim1.asm" +UnownWAnimationExtra: INCLUDE "gfx/pokemon/unown_w/anim1.asm" +UnownXAnimationExtra: INCLUDE "gfx/pokemon/unown_x/anim1.asm" +UnownYAnimationExtra: INCLUDE "gfx/pokemon/unown_y/anim1.asm" +UnownZAnimationExtra: INCLUDE "gfx/pokemon/unown_z/anim1.asm" diff --git a/gfx/pics/unown_f/anim0.asm b/gfx/pokemon/unown_f/anim0.asm similarity index 100% rename from gfx/pics/unown_f/anim0.asm rename to gfx/pokemon/unown_f/anim0.asm diff --git a/gfx/pics/unown_f/anim1.asm b/gfx/pokemon/unown_f/anim1.asm similarity index 100% rename from gfx/pics/unown_f/anim1.asm rename to gfx/pokemon/unown_f/anim1.asm diff --git a/gfx/pics/unown_f/back.2bpp.lz.3fe1c85a b/gfx/pokemon/unown_f/back.2bpp.lz.3fe1c85a similarity index 100% rename from gfx/pics/unown_f/back.2bpp.lz.3fe1c85a rename to gfx/pokemon/unown_f/back.2bpp.lz.3fe1c85a diff --git a/gfx/pics/unown_f/back.png b/gfx/pokemon/unown_f/back.png similarity index 100% rename from gfx/pics/unown_f/back.png rename to gfx/pokemon/unown_f/back.png diff --git a/gfx/pics/unown_f/front.animated.2bpp.lz.ec888954 b/gfx/pokemon/unown_f/front.animated.2bpp.lz.ec888954 similarity index 100% rename from gfx/pics/unown_f/front.animated.2bpp.lz.ec888954 rename to gfx/pokemon/unown_f/front.animated.2bpp.lz.ec888954 diff --git a/gfx/pics/unown_f/front.png b/gfx/pokemon/unown_f/front.png similarity index 100% rename from gfx/pics/unown_f/front.png rename to gfx/pokemon/unown_f/front.png diff --git a/gfx/pics/unown_frame_pointers.asm b/gfx/pokemon/unown_frame_pointers.asm similarity index 100% rename from gfx/pics/unown_frame_pointers.asm rename to gfx/pokemon/unown_frame_pointers.asm diff --git a/gfx/pokemon/unown_frames.asm b/gfx/pokemon/unown_frames.asm new file mode 100644 index 000000000..7b7c5bc7e --- /dev/null +++ b/gfx/pokemon/unown_frames.asm @@ -0,0 +1,27 @@ +UnownsFrames: +UnownAFrames: INCLUDE "gfx/pokemon/unown_a/frames.asm" +UnownBFrames: INCLUDE "gfx/pokemon/unown_b/frames.asm" +UnownCFrames: INCLUDE "gfx/pokemon/unown_c/frames.asm" +UnownDFrames: INCLUDE "gfx/pokemon/unown_d/frames.asm" +UnownEFrames: INCLUDE "gfx/pokemon/unown_e/frames.asm" +UnownFFrames: INCLUDE "gfx/pokemon/unown_f/frames.asm" +UnownGFrames: INCLUDE "gfx/pokemon/unown_g/frames.asm" +UnownHFrames: INCLUDE "gfx/pokemon/unown_h/frames.asm" +UnownIFrames: INCLUDE "gfx/pokemon/unown_i/frames.asm" +UnownJFrames: INCLUDE "gfx/pokemon/unown_j/frames.asm" +UnownKFrames: INCLUDE "gfx/pokemon/unown_k/frames.asm" +UnownLFrames: INCLUDE "gfx/pokemon/unown_l/frames.asm" +UnownMFrames: INCLUDE "gfx/pokemon/unown_m/frames.asm" +UnownNFrames: INCLUDE "gfx/pokemon/unown_n/frames.asm" +UnownOFrames: INCLUDE "gfx/pokemon/unown_o/frames.asm" +UnownPFrames: INCLUDE "gfx/pokemon/unown_p/frames.asm" +UnownQFrames: INCLUDE "gfx/pokemon/unown_q/frames.asm" +UnownRFrames: INCLUDE "gfx/pokemon/unown_r/frames.asm" +UnownSFrames: INCLUDE "gfx/pokemon/unown_s/frames.asm" +UnownTFrames: INCLUDE "gfx/pokemon/unown_t/frames.asm" +UnownUFrames: INCLUDE "gfx/pokemon/unown_u/frames.asm" +UnownVFrames: INCLUDE "gfx/pokemon/unown_v/frames.asm" +UnownWFrames: INCLUDE "gfx/pokemon/unown_w/frames.asm" +UnownXFrames: INCLUDE "gfx/pokemon/unown_x/frames.asm" +UnownYFrames: INCLUDE "gfx/pokemon/unown_y/frames.asm" +UnownZFrames: INCLUDE "gfx/pokemon/unown_z/frames.asm" diff --git a/gfx/pics/unown_g/anim0.asm b/gfx/pokemon/unown_g/anim0.asm similarity index 100% rename from gfx/pics/unown_g/anim0.asm rename to gfx/pokemon/unown_g/anim0.asm diff --git a/gfx/pics/unown_g/anim1.asm b/gfx/pokemon/unown_g/anim1.asm similarity index 100% rename from gfx/pics/unown_g/anim1.asm rename to gfx/pokemon/unown_g/anim1.asm diff --git a/gfx/pics/unown_g/back.2bpp.lz.91650439 b/gfx/pokemon/unown_g/back.2bpp.lz.91650439 similarity index 100% rename from gfx/pics/unown_g/back.2bpp.lz.91650439 rename to gfx/pokemon/unown_g/back.2bpp.lz.91650439 diff --git a/gfx/pics/unown_g/back.png b/gfx/pokemon/unown_g/back.png similarity index 100% rename from gfx/pics/unown_g/back.png rename to gfx/pokemon/unown_g/back.png diff --git a/gfx/pics/unown_g/front.animated.2bpp.lz.c0b74162 b/gfx/pokemon/unown_g/front.animated.2bpp.lz.c0b74162 similarity index 100% rename from gfx/pics/unown_g/front.animated.2bpp.lz.c0b74162 rename to gfx/pokemon/unown_g/front.animated.2bpp.lz.c0b74162 diff --git a/gfx/pics/unown_g/front.png b/gfx/pokemon/unown_g/front.png similarity index 100% rename from gfx/pics/unown_g/front.png rename to gfx/pokemon/unown_g/front.png diff --git a/gfx/pics/unown_h/anim0.asm b/gfx/pokemon/unown_h/anim0.asm similarity index 100% rename from gfx/pics/unown_h/anim0.asm rename to gfx/pokemon/unown_h/anim0.asm diff --git a/gfx/pics/unown_h/anim1.asm b/gfx/pokemon/unown_h/anim1.asm similarity index 100% rename from gfx/pics/unown_h/anim1.asm rename to gfx/pokemon/unown_h/anim1.asm diff --git a/gfx/pics/unown_h/back.2bpp.lz.78421e5b b/gfx/pokemon/unown_h/back.2bpp.lz.78421e5b similarity index 100% rename from gfx/pics/unown_h/back.2bpp.lz.78421e5b rename to gfx/pokemon/unown_h/back.2bpp.lz.78421e5b diff --git a/gfx/pics/unown_h/back.png b/gfx/pokemon/unown_h/back.png similarity index 100% rename from gfx/pics/unown_h/back.png rename to gfx/pokemon/unown_h/back.png diff --git a/gfx/pics/unown_h/front.animated.2bpp.lz.9a6afeb9 b/gfx/pokemon/unown_h/front.animated.2bpp.lz.9a6afeb9 similarity index 100% rename from gfx/pics/unown_h/front.animated.2bpp.lz.9a6afeb9 rename to gfx/pokemon/unown_h/front.animated.2bpp.lz.9a6afeb9 diff --git a/gfx/pics/unown_h/front.png b/gfx/pokemon/unown_h/front.png similarity index 100% rename from gfx/pics/unown_h/front.png rename to gfx/pokemon/unown_h/front.png diff --git a/gfx/pics/unown_i/anim0.asm b/gfx/pokemon/unown_i/anim0.asm similarity index 100% rename from gfx/pics/unown_i/anim0.asm rename to gfx/pokemon/unown_i/anim0.asm diff --git a/gfx/pics/unown_i/anim1.asm b/gfx/pokemon/unown_i/anim1.asm similarity index 100% rename from gfx/pics/unown_i/anim1.asm rename to gfx/pokemon/unown_i/anim1.asm diff --git a/gfx/pics/unown_i/back.2bpp.lz.7feb4b30 b/gfx/pokemon/unown_i/back.2bpp.lz.7feb4b30 similarity index 100% rename from gfx/pics/unown_i/back.2bpp.lz.7feb4b30 rename to gfx/pokemon/unown_i/back.2bpp.lz.7feb4b30 diff --git a/gfx/pics/unown_i/back.png b/gfx/pokemon/unown_i/back.png similarity index 100% rename from gfx/pics/unown_i/back.png rename to gfx/pokemon/unown_i/back.png diff --git a/gfx/pics/unown_i/front.animated.2bpp.lz.f5e7f816 b/gfx/pokemon/unown_i/front.animated.2bpp.lz.f5e7f816 similarity index 100% rename from gfx/pics/unown_i/front.animated.2bpp.lz.f5e7f816 rename to gfx/pokemon/unown_i/front.animated.2bpp.lz.f5e7f816 diff --git a/gfx/pics/unown_i/front.png b/gfx/pokemon/unown_i/front.png similarity index 100% rename from gfx/pics/unown_i/front.png rename to gfx/pokemon/unown_i/front.png diff --git a/gfx/pics/unown_j/anim0.asm b/gfx/pokemon/unown_j/anim0.asm similarity index 100% rename from gfx/pics/unown_j/anim0.asm rename to gfx/pokemon/unown_j/anim0.asm diff --git a/gfx/pics/unown_j/anim1.asm b/gfx/pokemon/unown_j/anim1.asm similarity index 100% rename from gfx/pics/unown_j/anim1.asm rename to gfx/pokemon/unown_j/anim1.asm diff --git a/gfx/pics/unown_j/back.2bpp.lz.b0f3bec2 b/gfx/pokemon/unown_j/back.2bpp.lz.b0f3bec2 similarity index 100% rename from gfx/pics/unown_j/back.2bpp.lz.b0f3bec2 rename to gfx/pokemon/unown_j/back.2bpp.lz.b0f3bec2 diff --git a/gfx/pics/unown_j/back.png b/gfx/pokemon/unown_j/back.png similarity index 100% rename from gfx/pics/unown_j/back.png rename to gfx/pokemon/unown_j/back.png diff --git a/gfx/pics/unown_j/front.animated.2bpp.lz.d8bf9223 b/gfx/pokemon/unown_j/front.animated.2bpp.lz.d8bf9223 similarity index 100% rename from gfx/pics/unown_j/front.animated.2bpp.lz.d8bf9223 rename to gfx/pokemon/unown_j/front.animated.2bpp.lz.d8bf9223 diff --git a/gfx/pics/unown_j/front.png b/gfx/pokemon/unown_j/front.png similarity index 100% rename from gfx/pics/unown_j/front.png rename to gfx/pokemon/unown_j/front.png diff --git a/gfx/pics/unown_k/anim0.asm b/gfx/pokemon/unown_k/anim0.asm similarity index 100% rename from gfx/pics/unown_k/anim0.asm rename to gfx/pokemon/unown_k/anim0.asm diff --git a/gfx/pics/unown_k/anim1.asm b/gfx/pokemon/unown_k/anim1.asm similarity index 100% rename from gfx/pics/unown_k/anim1.asm rename to gfx/pokemon/unown_k/anim1.asm diff --git a/gfx/pics/unown_k/back.2bpp.lz.745fda48 b/gfx/pokemon/unown_k/back.2bpp.lz.745fda48 similarity index 100% rename from gfx/pics/unown_k/back.2bpp.lz.745fda48 rename to gfx/pokemon/unown_k/back.2bpp.lz.745fda48 diff --git a/gfx/pics/unown_k/back.png b/gfx/pokemon/unown_k/back.png similarity index 100% rename from gfx/pics/unown_k/back.png rename to gfx/pokemon/unown_k/back.png diff --git a/gfx/pics/unown_k/front.animated.2bpp.lz.fb25b385 b/gfx/pokemon/unown_k/front.animated.2bpp.lz.fb25b385 similarity index 100% rename from gfx/pics/unown_k/front.animated.2bpp.lz.fb25b385 rename to gfx/pokemon/unown_k/front.animated.2bpp.lz.fb25b385 diff --git a/gfx/pics/unown_k/front.png b/gfx/pokemon/unown_k/front.png similarity index 100% rename from gfx/pics/unown_k/front.png rename to gfx/pokemon/unown_k/front.png diff --git a/gfx/pics/unown_l/anim0.asm b/gfx/pokemon/unown_l/anim0.asm similarity index 100% rename from gfx/pics/unown_l/anim0.asm rename to gfx/pokemon/unown_l/anim0.asm diff --git a/gfx/pics/unown_l/anim1.asm b/gfx/pokemon/unown_l/anim1.asm similarity index 100% rename from gfx/pics/unown_l/anim1.asm rename to gfx/pokemon/unown_l/anim1.asm diff --git a/gfx/pics/unown_l/back.2bpp.lz.e38e0d57 b/gfx/pokemon/unown_l/back.2bpp.lz.e38e0d57 similarity index 100% rename from gfx/pics/unown_l/back.2bpp.lz.e38e0d57 rename to gfx/pokemon/unown_l/back.2bpp.lz.e38e0d57 diff --git a/gfx/pics/unown_l/back.png b/gfx/pokemon/unown_l/back.png similarity index 100% rename from gfx/pics/unown_l/back.png rename to gfx/pokemon/unown_l/back.png diff --git a/gfx/pics/unown_l/front.animated.2bpp.lz.26195a59 b/gfx/pokemon/unown_l/front.animated.2bpp.lz.26195a59 similarity index 100% rename from gfx/pics/unown_l/front.animated.2bpp.lz.26195a59 rename to gfx/pokemon/unown_l/front.animated.2bpp.lz.26195a59 diff --git a/gfx/pics/unown_l/front.png b/gfx/pokemon/unown_l/front.png similarity index 100% rename from gfx/pics/unown_l/front.png rename to gfx/pokemon/unown_l/front.png diff --git a/gfx/pics/unown_m/anim0.asm b/gfx/pokemon/unown_m/anim0.asm similarity index 100% rename from gfx/pics/unown_m/anim0.asm rename to gfx/pokemon/unown_m/anim0.asm diff --git a/gfx/pics/unown_m/anim1.asm b/gfx/pokemon/unown_m/anim1.asm similarity index 100% rename from gfx/pics/unown_m/anim1.asm rename to gfx/pokemon/unown_m/anim1.asm diff --git a/gfx/pics/unown_m/back.2bpp.lz.38d93bc8 b/gfx/pokemon/unown_m/back.2bpp.lz.38d93bc8 similarity index 100% rename from gfx/pics/unown_m/back.2bpp.lz.38d93bc8 rename to gfx/pokemon/unown_m/back.2bpp.lz.38d93bc8 diff --git a/gfx/pics/unown_m/back.png b/gfx/pokemon/unown_m/back.png similarity index 100% rename from gfx/pics/unown_m/back.png rename to gfx/pokemon/unown_m/back.png diff --git a/gfx/pics/unown_m/front.animated.2bpp.lz.2659315e b/gfx/pokemon/unown_m/front.animated.2bpp.lz.2659315e similarity index 100% rename from gfx/pics/unown_m/front.animated.2bpp.lz.2659315e rename to gfx/pokemon/unown_m/front.animated.2bpp.lz.2659315e diff --git a/gfx/pics/unown_m/front.png b/gfx/pokemon/unown_m/front.png similarity index 100% rename from gfx/pics/unown_m/front.png rename to gfx/pokemon/unown_m/front.png diff --git a/gfx/pics/unown_n/anim0.asm b/gfx/pokemon/unown_n/anim0.asm similarity index 100% rename from gfx/pics/unown_n/anim0.asm rename to gfx/pokemon/unown_n/anim0.asm diff --git a/gfx/pics/unown_n/anim1.asm b/gfx/pokemon/unown_n/anim1.asm similarity index 100% rename from gfx/pics/unown_n/anim1.asm rename to gfx/pokemon/unown_n/anim1.asm diff --git a/gfx/pics/unown_n/back.2bpp.lz.c8b7d3a4 b/gfx/pokemon/unown_n/back.2bpp.lz.c8b7d3a4 similarity index 100% rename from gfx/pics/unown_n/back.2bpp.lz.c8b7d3a4 rename to gfx/pokemon/unown_n/back.2bpp.lz.c8b7d3a4 diff --git a/gfx/pics/unown_n/back.png b/gfx/pokemon/unown_n/back.png similarity index 100% rename from gfx/pics/unown_n/back.png rename to gfx/pokemon/unown_n/back.png diff --git a/gfx/pics/unown_n/front.animated.2bpp.lz.96ce7c62 b/gfx/pokemon/unown_n/front.animated.2bpp.lz.96ce7c62 similarity index 100% rename from gfx/pics/unown_n/front.animated.2bpp.lz.96ce7c62 rename to gfx/pokemon/unown_n/front.animated.2bpp.lz.96ce7c62 diff --git a/gfx/pics/unown_n/front.png b/gfx/pokemon/unown_n/front.png similarity index 100% rename from gfx/pics/unown_n/front.png rename to gfx/pokemon/unown_n/front.png diff --git a/gfx/pics/unown_o/anim0.asm b/gfx/pokemon/unown_o/anim0.asm similarity index 100% rename from gfx/pics/unown_o/anim0.asm rename to gfx/pokemon/unown_o/anim0.asm diff --git a/gfx/pics/unown_o/anim1.asm b/gfx/pokemon/unown_o/anim1.asm similarity index 100% rename from gfx/pics/unown_o/anim1.asm rename to gfx/pokemon/unown_o/anim1.asm diff --git a/gfx/pics/unown_o/back.2bpp.lz.89ba693c b/gfx/pokemon/unown_o/back.2bpp.lz.89ba693c similarity index 100% rename from gfx/pics/unown_o/back.2bpp.lz.89ba693c rename to gfx/pokemon/unown_o/back.2bpp.lz.89ba693c diff --git a/gfx/pics/unown_o/back.png b/gfx/pokemon/unown_o/back.png similarity index 100% rename from gfx/pics/unown_o/back.png rename to gfx/pokemon/unown_o/back.png diff --git a/gfx/pics/unown_o/front.animated.2bpp.lz.a9151b66 b/gfx/pokemon/unown_o/front.animated.2bpp.lz.a9151b66 similarity index 100% rename from gfx/pics/unown_o/front.animated.2bpp.lz.a9151b66 rename to gfx/pokemon/unown_o/front.animated.2bpp.lz.a9151b66 diff --git a/gfx/pics/unown_o/front.png b/gfx/pokemon/unown_o/front.png similarity index 100% rename from gfx/pics/unown_o/front.png rename to gfx/pokemon/unown_o/front.png diff --git a/gfx/pics/unown_p/anim0.asm b/gfx/pokemon/unown_p/anim0.asm similarity index 100% rename from gfx/pics/unown_p/anim0.asm rename to gfx/pokemon/unown_p/anim0.asm diff --git a/gfx/pics/unown_p/anim1.asm b/gfx/pokemon/unown_p/anim1.asm similarity index 100% rename from gfx/pics/unown_p/anim1.asm rename to gfx/pokemon/unown_p/anim1.asm diff --git a/gfx/pics/unown_p/back.2bpp.lz.09c618c4 b/gfx/pokemon/unown_p/back.2bpp.lz.09c618c4 similarity index 100% rename from gfx/pics/unown_p/back.2bpp.lz.09c618c4 rename to gfx/pokemon/unown_p/back.2bpp.lz.09c618c4 diff --git a/gfx/pics/unown_p/back.png b/gfx/pokemon/unown_p/back.png similarity index 100% rename from gfx/pics/unown_p/back.png rename to gfx/pokemon/unown_p/back.png diff --git a/gfx/pics/unown_p/front.animated.2bpp.lz.83a096fc b/gfx/pokemon/unown_p/front.animated.2bpp.lz.83a096fc similarity index 100% rename from gfx/pics/unown_p/front.animated.2bpp.lz.83a096fc rename to gfx/pokemon/unown_p/front.animated.2bpp.lz.83a096fc diff --git a/gfx/pics/unown_p/front.png b/gfx/pokemon/unown_p/front.png similarity index 100% rename from gfx/pics/unown_p/front.png rename to gfx/pokemon/unown_p/front.png diff --git a/gfx/pics/unown_pic_pointers.asm b/gfx/pokemon/unown_pic_pointers.asm similarity index 100% rename from gfx/pics/unown_pic_pointers.asm rename to gfx/pokemon/unown_pic_pointers.asm diff --git a/gfx/pics/unown_q/anim0.asm b/gfx/pokemon/unown_q/anim0.asm similarity index 100% rename from gfx/pics/unown_q/anim0.asm rename to gfx/pokemon/unown_q/anim0.asm diff --git a/gfx/pics/unown_q/anim1.asm b/gfx/pokemon/unown_q/anim1.asm similarity index 100% rename from gfx/pics/unown_q/anim1.asm rename to gfx/pokemon/unown_q/anim1.asm diff --git a/gfx/pics/unown_q/back.2bpp.lz.e32430b4 b/gfx/pokemon/unown_q/back.2bpp.lz.e32430b4 similarity index 100% rename from gfx/pics/unown_q/back.2bpp.lz.e32430b4 rename to gfx/pokemon/unown_q/back.2bpp.lz.e32430b4 diff --git a/gfx/pics/unown_q/back.png b/gfx/pokemon/unown_q/back.png similarity index 100% rename from gfx/pics/unown_q/back.png rename to gfx/pokemon/unown_q/back.png diff --git a/gfx/pics/unown_q/front.animated.2bpp.lz.44dad60c b/gfx/pokemon/unown_q/front.animated.2bpp.lz.44dad60c similarity index 100% rename from gfx/pics/unown_q/front.animated.2bpp.lz.44dad60c rename to gfx/pokemon/unown_q/front.animated.2bpp.lz.44dad60c diff --git a/gfx/pics/unown_q/front.png b/gfx/pokemon/unown_q/front.png similarity index 100% rename from gfx/pics/unown_q/front.png rename to gfx/pokemon/unown_q/front.png diff --git a/gfx/pics/unown_r/anim0.asm b/gfx/pokemon/unown_r/anim0.asm similarity index 100% rename from gfx/pics/unown_r/anim0.asm rename to gfx/pokemon/unown_r/anim0.asm diff --git a/gfx/pics/unown_r/anim1.asm b/gfx/pokemon/unown_r/anim1.asm similarity index 100% rename from gfx/pics/unown_r/anim1.asm rename to gfx/pokemon/unown_r/anim1.asm diff --git a/gfx/pics/unown_r/back.2bpp.lz.5df8287c b/gfx/pokemon/unown_r/back.2bpp.lz.5df8287c similarity index 100% rename from gfx/pics/unown_r/back.2bpp.lz.5df8287c rename to gfx/pokemon/unown_r/back.2bpp.lz.5df8287c diff --git a/gfx/pics/unown_r/back.png b/gfx/pokemon/unown_r/back.png similarity index 100% rename from gfx/pics/unown_r/back.png rename to gfx/pokemon/unown_r/back.png diff --git a/gfx/pics/unown_r/front.animated.2bpp.lz.8e67e3fc b/gfx/pokemon/unown_r/front.animated.2bpp.lz.8e67e3fc similarity index 100% rename from gfx/pics/unown_r/front.animated.2bpp.lz.8e67e3fc rename to gfx/pokemon/unown_r/front.animated.2bpp.lz.8e67e3fc diff --git a/gfx/pics/unown_r/front.png b/gfx/pokemon/unown_r/front.png similarity index 100% rename from gfx/pics/unown_r/front.png rename to gfx/pokemon/unown_r/front.png diff --git a/gfx/pics/unown_s/anim0.asm b/gfx/pokemon/unown_s/anim0.asm similarity index 100% rename from gfx/pics/unown_s/anim0.asm rename to gfx/pokemon/unown_s/anim0.asm diff --git a/gfx/pics/unown_s/anim1.asm b/gfx/pokemon/unown_s/anim1.asm similarity index 100% rename from gfx/pics/unown_s/anim1.asm rename to gfx/pokemon/unown_s/anim1.asm diff --git a/gfx/pics/unown_s/back.2bpp.lz.abd4ad58 b/gfx/pokemon/unown_s/back.2bpp.lz.abd4ad58 similarity index 100% rename from gfx/pics/unown_s/back.2bpp.lz.abd4ad58 rename to gfx/pokemon/unown_s/back.2bpp.lz.abd4ad58 diff --git a/gfx/pics/unown_s/back.png b/gfx/pokemon/unown_s/back.png similarity index 100% rename from gfx/pics/unown_s/back.png rename to gfx/pokemon/unown_s/back.png diff --git a/gfx/pics/unown_s/front.animated.2bpp.lz.f3db4e89 b/gfx/pokemon/unown_s/front.animated.2bpp.lz.f3db4e89 similarity index 100% rename from gfx/pics/unown_s/front.animated.2bpp.lz.f3db4e89 rename to gfx/pokemon/unown_s/front.animated.2bpp.lz.f3db4e89 diff --git a/gfx/pics/unown_s/front.png b/gfx/pokemon/unown_s/front.png similarity index 100% rename from gfx/pics/unown_s/front.png rename to gfx/pokemon/unown_s/front.png diff --git a/gfx/pics/unown_t/anim0.asm b/gfx/pokemon/unown_t/anim0.asm similarity index 100% rename from gfx/pics/unown_t/anim0.asm rename to gfx/pokemon/unown_t/anim0.asm diff --git a/gfx/pics/unown_t/anim1.asm b/gfx/pokemon/unown_t/anim1.asm similarity index 100% rename from gfx/pics/unown_t/anim1.asm rename to gfx/pokemon/unown_t/anim1.asm diff --git a/gfx/pics/unown_t/back.2bpp.lz.87d48ca0 b/gfx/pokemon/unown_t/back.2bpp.lz.87d48ca0 similarity index 100% rename from gfx/pics/unown_t/back.2bpp.lz.87d48ca0 rename to gfx/pokemon/unown_t/back.2bpp.lz.87d48ca0 diff --git a/gfx/pics/unown_t/back.png b/gfx/pokemon/unown_t/back.png similarity index 100% rename from gfx/pics/unown_t/back.png rename to gfx/pokemon/unown_t/back.png diff --git a/gfx/pics/unown_t/front.animated.2bpp.lz.8bdc40ae b/gfx/pokemon/unown_t/front.animated.2bpp.lz.8bdc40ae similarity index 100% rename from gfx/pics/unown_t/front.animated.2bpp.lz.8bdc40ae rename to gfx/pokemon/unown_t/front.animated.2bpp.lz.8bdc40ae diff --git a/gfx/pics/unown_t/front.png b/gfx/pokemon/unown_t/front.png similarity index 100% rename from gfx/pics/unown_t/front.png rename to gfx/pokemon/unown_t/front.png diff --git a/gfx/pics/unown_u/anim0.asm b/gfx/pokemon/unown_u/anim0.asm similarity index 100% rename from gfx/pics/unown_u/anim0.asm rename to gfx/pokemon/unown_u/anim0.asm diff --git a/gfx/pics/unown_u/anim1.asm b/gfx/pokemon/unown_u/anim1.asm similarity index 100% rename from gfx/pics/unown_u/anim1.asm rename to gfx/pokemon/unown_u/anim1.asm diff --git a/gfx/pics/unown_u/back.2bpp.lz.40b63dfb b/gfx/pokemon/unown_u/back.2bpp.lz.40b63dfb similarity index 100% rename from gfx/pics/unown_u/back.2bpp.lz.40b63dfb rename to gfx/pokemon/unown_u/back.2bpp.lz.40b63dfb diff --git a/gfx/pics/unown_u/back.png b/gfx/pokemon/unown_u/back.png similarity index 100% rename from gfx/pics/unown_u/back.png rename to gfx/pokemon/unown_u/back.png diff --git a/gfx/pics/unown_u/front.animated.2bpp.lz.2690db54 b/gfx/pokemon/unown_u/front.animated.2bpp.lz.2690db54 similarity index 100% rename from gfx/pics/unown_u/front.animated.2bpp.lz.2690db54 rename to gfx/pokemon/unown_u/front.animated.2bpp.lz.2690db54 diff --git a/gfx/pics/unown_u/front.png b/gfx/pokemon/unown_u/front.png similarity index 100% rename from gfx/pics/unown_u/front.png rename to gfx/pokemon/unown_u/front.png diff --git a/gfx/pics/unown_v/anim0.asm b/gfx/pokemon/unown_v/anim0.asm similarity index 100% rename from gfx/pics/unown_v/anim0.asm rename to gfx/pokemon/unown_v/anim0.asm diff --git a/gfx/pics/unown_v/anim1.asm b/gfx/pokemon/unown_v/anim1.asm similarity index 100% rename from gfx/pics/unown_v/anim1.asm rename to gfx/pokemon/unown_v/anim1.asm diff --git a/gfx/pics/unown_v/back.2bpp.lz.5b1a6acc b/gfx/pokemon/unown_v/back.2bpp.lz.5b1a6acc similarity index 100% rename from gfx/pics/unown_v/back.2bpp.lz.5b1a6acc rename to gfx/pokemon/unown_v/back.2bpp.lz.5b1a6acc diff --git a/gfx/pics/unown_v/back.png b/gfx/pokemon/unown_v/back.png similarity index 100% rename from gfx/pics/unown_v/back.png rename to gfx/pokemon/unown_v/back.png diff --git a/gfx/pics/unown_v/front.animated.2bpp.lz.d196c60e b/gfx/pokemon/unown_v/front.animated.2bpp.lz.d196c60e similarity index 100% rename from gfx/pics/unown_v/front.animated.2bpp.lz.d196c60e rename to gfx/pokemon/unown_v/front.animated.2bpp.lz.d196c60e diff --git a/gfx/pics/unown_v/front.png b/gfx/pokemon/unown_v/front.png similarity index 100% rename from gfx/pics/unown_v/front.png rename to gfx/pokemon/unown_v/front.png diff --git a/gfx/pics/unown_w/anim0.asm b/gfx/pokemon/unown_w/anim0.asm similarity index 100% rename from gfx/pics/unown_w/anim0.asm rename to gfx/pokemon/unown_w/anim0.asm diff --git a/gfx/pics/unown_w/anim1.asm b/gfx/pokemon/unown_w/anim1.asm similarity index 100% rename from gfx/pics/unown_w/anim1.asm rename to gfx/pokemon/unown_w/anim1.asm diff --git a/gfx/pics/unown_w/back.2bpp.lz.a55282bf b/gfx/pokemon/unown_w/back.2bpp.lz.a55282bf similarity index 100% rename from gfx/pics/unown_w/back.2bpp.lz.a55282bf rename to gfx/pokemon/unown_w/back.2bpp.lz.a55282bf diff --git a/gfx/pics/unown_w/back.png b/gfx/pokemon/unown_w/back.png similarity index 100% rename from gfx/pics/unown_w/back.png rename to gfx/pokemon/unown_w/back.png diff --git a/gfx/pics/unown_w/front.animated.2bpp.lz.5b45fa3d b/gfx/pokemon/unown_w/front.animated.2bpp.lz.5b45fa3d similarity index 100% rename from gfx/pics/unown_w/front.animated.2bpp.lz.5b45fa3d rename to gfx/pokemon/unown_w/front.animated.2bpp.lz.5b45fa3d diff --git a/gfx/pics/unown_w/front.png b/gfx/pokemon/unown_w/front.png similarity index 100% rename from gfx/pics/unown_w/front.png rename to gfx/pokemon/unown_w/front.png diff --git a/gfx/pics/unown_x/anim0.asm b/gfx/pokemon/unown_x/anim0.asm similarity index 100% rename from gfx/pics/unown_x/anim0.asm rename to gfx/pokemon/unown_x/anim0.asm diff --git a/gfx/pics/unown_x/anim1.asm b/gfx/pokemon/unown_x/anim1.asm similarity index 100% rename from gfx/pics/unown_x/anim1.asm rename to gfx/pokemon/unown_x/anim1.asm diff --git a/gfx/pics/unown_x/back.2bpp.lz.0001a198 b/gfx/pokemon/unown_x/back.2bpp.lz.0001a198 similarity index 100% rename from gfx/pics/unown_x/back.2bpp.lz.0001a198 rename to gfx/pokemon/unown_x/back.2bpp.lz.0001a198 diff --git a/gfx/pics/unown_x/back.png b/gfx/pokemon/unown_x/back.png similarity index 100% rename from gfx/pics/unown_x/back.png rename to gfx/pokemon/unown_x/back.png diff --git a/gfx/pics/unown_x/front.animated.2bpp.lz.3362c680 b/gfx/pokemon/unown_x/front.animated.2bpp.lz.3362c680 similarity index 100% rename from gfx/pics/unown_x/front.animated.2bpp.lz.3362c680 rename to gfx/pokemon/unown_x/front.animated.2bpp.lz.3362c680 diff --git a/gfx/pics/unown_x/front.png b/gfx/pokemon/unown_x/front.png similarity index 100% rename from gfx/pics/unown_x/front.png rename to gfx/pokemon/unown_x/front.png diff --git a/gfx/pics/unown_y/anim0.asm b/gfx/pokemon/unown_y/anim0.asm similarity index 100% rename from gfx/pics/unown_y/anim0.asm rename to gfx/pokemon/unown_y/anim0.asm diff --git a/gfx/pics/unown_y/anim1.asm b/gfx/pokemon/unown_y/anim1.asm similarity index 100% rename from gfx/pics/unown_y/anim1.asm rename to gfx/pokemon/unown_y/anim1.asm diff --git a/gfx/pics/unown_y/back.2bpp.lz.292d9ff2 b/gfx/pokemon/unown_y/back.2bpp.lz.292d9ff2 similarity index 100% rename from gfx/pics/unown_y/back.2bpp.lz.292d9ff2 rename to gfx/pokemon/unown_y/back.2bpp.lz.292d9ff2 diff --git a/gfx/pics/unown_y/back.png b/gfx/pokemon/unown_y/back.png similarity index 100% rename from gfx/pics/unown_y/back.png rename to gfx/pokemon/unown_y/back.png diff --git a/gfx/pics/unown_y/front.animated.2bpp.lz.8cd89db4 b/gfx/pokemon/unown_y/front.animated.2bpp.lz.8cd89db4 similarity index 100% rename from gfx/pics/unown_y/front.animated.2bpp.lz.8cd89db4 rename to gfx/pokemon/unown_y/front.animated.2bpp.lz.8cd89db4 diff --git a/gfx/pics/unown_y/front.png b/gfx/pokemon/unown_y/front.png similarity index 100% rename from gfx/pics/unown_y/front.png rename to gfx/pokemon/unown_y/front.png diff --git a/gfx/pics/unown_z/anim0.asm b/gfx/pokemon/unown_z/anim0.asm similarity index 100% rename from gfx/pics/unown_z/anim0.asm rename to gfx/pokemon/unown_z/anim0.asm diff --git a/gfx/pics/unown_z/anim1.asm b/gfx/pokemon/unown_z/anim1.asm similarity index 100% rename from gfx/pics/unown_z/anim1.asm rename to gfx/pokemon/unown_z/anim1.asm diff --git a/gfx/pics/unown_z/back.2bpp.lz.a41240a1 b/gfx/pokemon/unown_z/back.2bpp.lz.a41240a1 similarity index 100% rename from gfx/pics/unown_z/back.2bpp.lz.a41240a1 rename to gfx/pokemon/unown_z/back.2bpp.lz.a41240a1 diff --git a/gfx/pics/unown_z/back.png b/gfx/pokemon/unown_z/back.png similarity index 100% rename from gfx/pics/unown_z/back.png rename to gfx/pokemon/unown_z/back.png diff --git a/gfx/pics/unown_z/front.animated.2bpp.lz.2d4170a0 b/gfx/pokemon/unown_z/front.animated.2bpp.lz.2d4170a0 similarity index 100% rename from gfx/pics/unown_z/front.animated.2bpp.lz.2d4170a0 rename to gfx/pokemon/unown_z/front.animated.2bpp.lz.2d4170a0 diff --git a/gfx/pics/unown_z/front.png b/gfx/pokemon/unown_z/front.png similarity index 100% rename from gfx/pics/unown_z/front.png rename to gfx/pokemon/unown_z/front.png diff --git a/gfx/pics/ursaring/anim0.asm b/gfx/pokemon/ursaring/anim0.asm similarity index 100% rename from gfx/pics/ursaring/anim0.asm rename to gfx/pokemon/ursaring/anim0.asm diff --git a/gfx/pics/ursaring/anim1.asm b/gfx/pokemon/ursaring/anim1.asm similarity index 100% rename from gfx/pics/ursaring/anim1.asm rename to gfx/pokemon/ursaring/anim1.asm diff --git a/gfx/pics/ursaring/back.2bpp.lz.0966cee1 b/gfx/pokemon/ursaring/back.2bpp.lz.0966cee1 similarity index 100% rename from gfx/pics/ursaring/back.2bpp.lz.0966cee1 rename to gfx/pokemon/ursaring/back.2bpp.lz.0966cee1 diff --git a/gfx/pics/ursaring/back.png b/gfx/pokemon/ursaring/back.png similarity index 100% rename from gfx/pics/ursaring/back.png rename to gfx/pokemon/ursaring/back.png diff --git a/gfx/pics/ursaring/front.animated.2bpp.lz.5bcb8114 b/gfx/pokemon/ursaring/front.animated.2bpp.lz.5bcb8114 similarity index 100% rename from gfx/pics/ursaring/front.animated.2bpp.lz.5bcb8114 rename to gfx/pokemon/ursaring/front.animated.2bpp.lz.5bcb8114 diff --git a/gfx/pics/ursaring/front.png b/gfx/pokemon/ursaring/front.png similarity index 100% rename from gfx/pics/ursaring/front.png rename to gfx/pokemon/ursaring/front.png diff --git a/gfx/pics/ursaring/shiny.pal b/gfx/pokemon/ursaring/shiny.pal similarity index 100% rename from gfx/pics/ursaring/shiny.pal rename to gfx/pokemon/ursaring/shiny.pal diff --git a/gfx/pics/vaporeon/anim0.asm b/gfx/pokemon/vaporeon/anim0.asm similarity index 100% rename from gfx/pics/vaporeon/anim0.asm rename to gfx/pokemon/vaporeon/anim0.asm diff --git a/gfx/pics/vaporeon/anim1.asm b/gfx/pokemon/vaporeon/anim1.asm similarity index 100% rename from gfx/pics/vaporeon/anim1.asm rename to gfx/pokemon/vaporeon/anim1.asm diff --git a/gfx/pics/vaporeon/back.2bpp.lz.aafe2ea4 b/gfx/pokemon/vaporeon/back.2bpp.lz.aafe2ea4 similarity index 100% rename from gfx/pics/vaporeon/back.2bpp.lz.aafe2ea4 rename to gfx/pokemon/vaporeon/back.2bpp.lz.aafe2ea4 diff --git a/gfx/pics/vaporeon/back.png b/gfx/pokemon/vaporeon/back.png similarity index 100% rename from gfx/pics/vaporeon/back.png rename to gfx/pokemon/vaporeon/back.png diff --git a/gfx/pics/vaporeon/front.animated.2bpp.lz.6e1ee993 b/gfx/pokemon/vaporeon/front.animated.2bpp.lz.6e1ee993 similarity index 100% rename from gfx/pics/vaporeon/front.animated.2bpp.lz.6e1ee993 rename to gfx/pokemon/vaporeon/front.animated.2bpp.lz.6e1ee993 diff --git a/gfx/pics/vaporeon/front.png b/gfx/pokemon/vaporeon/front.png similarity index 100% rename from gfx/pics/vaporeon/front.png rename to gfx/pokemon/vaporeon/front.png diff --git a/gfx/pics/vaporeon/shiny.pal b/gfx/pokemon/vaporeon/shiny.pal similarity index 100% rename from gfx/pics/vaporeon/shiny.pal rename to gfx/pokemon/vaporeon/shiny.pal diff --git a/gfx/pics/venomoth/anim0.asm b/gfx/pokemon/venomoth/anim0.asm similarity index 100% rename from gfx/pics/venomoth/anim0.asm rename to gfx/pokemon/venomoth/anim0.asm diff --git a/gfx/pics/venomoth/anim1.asm b/gfx/pokemon/venomoth/anim1.asm similarity index 100% rename from gfx/pics/venomoth/anim1.asm rename to gfx/pokemon/venomoth/anim1.asm diff --git a/gfx/pics/venomoth/back.2bpp.lz.ba3cccb7 b/gfx/pokemon/venomoth/back.2bpp.lz.ba3cccb7 similarity index 100% rename from gfx/pics/venomoth/back.2bpp.lz.ba3cccb7 rename to gfx/pokemon/venomoth/back.2bpp.lz.ba3cccb7 diff --git a/gfx/pics/venomoth/back.png b/gfx/pokemon/venomoth/back.png similarity index 100% rename from gfx/pics/venomoth/back.png rename to gfx/pokemon/venomoth/back.png diff --git a/gfx/pics/venomoth/front.animated.2bpp.lz.6c0096ec b/gfx/pokemon/venomoth/front.animated.2bpp.lz.6c0096ec similarity index 100% rename from gfx/pics/venomoth/front.animated.2bpp.lz.6c0096ec rename to gfx/pokemon/venomoth/front.animated.2bpp.lz.6c0096ec diff --git a/gfx/pics/venomoth/front.png b/gfx/pokemon/venomoth/front.png similarity index 100% rename from gfx/pics/venomoth/front.png rename to gfx/pokemon/venomoth/front.png diff --git a/gfx/pics/venomoth/shiny.pal b/gfx/pokemon/venomoth/shiny.pal similarity index 100% rename from gfx/pics/venomoth/shiny.pal rename to gfx/pokemon/venomoth/shiny.pal diff --git a/gfx/pics/venonat/anim0.asm b/gfx/pokemon/venonat/anim0.asm similarity index 100% rename from gfx/pics/venonat/anim0.asm rename to gfx/pokemon/venonat/anim0.asm diff --git a/gfx/pics/venonat/anim1.asm b/gfx/pokemon/venonat/anim1.asm similarity index 100% rename from gfx/pics/venonat/anim1.asm rename to gfx/pokemon/venonat/anim1.asm diff --git a/gfx/pics/venonat/back.2bpp.lz.63b1017a b/gfx/pokemon/venonat/back.2bpp.lz.63b1017a similarity index 100% rename from gfx/pics/venonat/back.2bpp.lz.63b1017a rename to gfx/pokemon/venonat/back.2bpp.lz.63b1017a diff --git a/gfx/pics/venonat/back.png b/gfx/pokemon/venonat/back.png similarity index 100% rename from gfx/pics/venonat/back.png rename to gfx/pokemon/venonat/back.png diff --git a/gfx/pics/venonat/front.animated.2bpp.lz.02a36f08 b/gfx/pokemon/venonat/front.animated.2bpp.lz.02a36f08 similarity index 100% rename from gfx/pics/venonat/front.animated.2bpp.lz.02a36f08 rename to gfx/pokemon/venonat/front.animated.2bpp.lz.02a36f08 diff --git a/gfx/pics/venonat/front.png b/gfx/pokemon/venonat/front.png similarity index 100% rename from gfx/pics/venonat/front.png rename to gfx/pokemon/venonat/front.png diff --git a/gfx/pics/venonat/shiny.pal b/gfx/pokemon/venonat/shiny.pal similarity index 100% rename from gfx/pics/venonat/shiny.pal rename to gfx/pokemon/venonat/shiny.pal diff --git a/gfx/pics/venusaur/anim0.asm b/gfx/pokemon/venusaur/anim0.asm similarity index 100% rename from gfx/pics/venusaur/anim0.asm rename to gfx/pokemon/venusaur/anim0.asm diff --git a/gfx/pics/venusaur/anim1.asm b/gfx/pokemon/venusaur/anim1.asm similarity index 100% rename from gfx/pics/venusaur/anim1.asm rename to gfx/pokemon/venusaur/anim1.asm diff --git a/gfx/pics/venusaur/back.2bpp.lz.1d5b9ebe b/gfx/pokemon/venusaur/back.2bpp.lz.1d5b9ebe similarity index 100% rename from gfx/pics/venusaur/back.2bpp.lz.1d5b9ebe rename to gfx/pokemon/venusaur/back.2bpp.lz.1d5b9ebe diff --git a/gfx/pics/venusaur/back.png b/gfx/pokemon/venusaur/back.png similarity index 100% rename from gfx/pics/venusaur/back.png rename to gfx/pokemon/venusaur/back.png diff --git a/gfx/pics/venusaur/front.animated.2bpp.lz.48d131f4 b/gfx/pokemon/venusaur/front.animated.2bpp.lz.48d131f4 similarity index 100% rename from gfx/pics/venusaur/front.animated.2bpp.lz.48d131f4 rename to gfx/pokemon/venusaur/front.animated.2bpp.lz.48d131f4 diff --git a/gfx/pics/venusaur/front.png b/gfx/pokemon/venusaur/front.png similarity index 100% rename from gfx/pics/venusaur/front.png rename to gfx/pokemon/venusaur/front.png diff --git a/gfx/pics/venusaur/shiny.pal b/gfx/pokemon/venusaur/shiny.pal similarity index 100% rename from gfx/pics/venusaur/shiny.pal rename to gfx/pokemon/venusaur/shiny.pal diff --git a/gfx/pics/victreebel/anim0.asm b/gfx/pokemon/victreebel/anim0.asm similarity index 100% rename from gfx/pics/victreebel/anim0.asm rename to gfx/pokemon/victreebel/anim0.asm diff --git a/gfx/pics/victreebel/anim1.asm b/gfx/pokemon/victreebel/anim1.asm similarity index 100% rename from gfx/pics/victreebel/anim1.asm rename to gfx/pokemon/victreebel/anim1.asm diff --git a/gfx/pics/victreebel/back.2bpp.lz.a80b1dc4 b/gfx/pokemon/victreebel/back.2bpp.lz.a80b1dc4 similarity index 100% rename from gfx/pics/victreebel/back.2bpp.lz.a80b1dc4 rename to gfx/pokemon/victreebel/back.2bpp.lz.a80b1dc4 diff --git a/gfx/pics/victreebel/back.png b/gfx/pokemon/victreebel/back.png similarity index 100% rename from gfx/pics/victreebel/back.png rename to gfx/pokemon/victreebel/back.png diff --git a/gfx/pics/victreebel/front.animated.2bpp.lz.d5d535c1 b/gfx/pokemon/victreebel/front.animated.2bpp.lz.d5d535c1 similarity index 100% rename from gfx/pics/victreebel/front.animated.2bpp.lz.d5d535c1 rename to gfx/pokemon/victreebel/front.animated.2bpp.lz.d5d535c1 diff --git a/gfx/pics/victreebel/front.png b/gfx/pokemon/victreebel/front.png similarity index 100% rename from gfx/pics/victreebel/front.png rename to gfx/pokemon/victreebel/front.png diff --git a/gfx/pics/victreebel/shiny.pal b/gfx/pokemon/victreebel/shiny.pal similarity index 100% rename from gfx/pics/victreebel/shiny.pal rename to gfx/pokemon/victreebel/shiny.pal diff --git a/gfx/pics/vileplume/anim0.asm b/gfx/pokemon/vileplume/anim0.asm similarity index 100% rename from gfx/pics/vileplume/anim0.asm rename to gfx/pokemon/vileplume/anim0.asm diff --git a/gfx/pics/vileplume/anim1.asm b/gfx/pokemon/vileplume/anim1.asm similarity index 100% rename from gfx/pics/vileplume/anim1.asm rename to gfx/pokemon/vileplume/anim1.asm diff --git a/gfx/pics/vileplume/back.2bpp.lz.9f944092 b/gfx/pokemon/vileplume/back.2bpp.lz.9f944092 similarity index 100% rename from gfx/pics/vileplume/back.2bpp.lz.9f944092 rename to gfx/pokemon/vileplume/back.2bpp.lz.9f944092 diff --git a/gfx/pics/vileplume/back.png b/gfx/pokemon/vileplume/back.png similarity index 100% rename from gfx/pics/vileplume/back.png rename to gfx/pokemon/vileplume/back.png diff --git a/gfx/pics/vileplume/front.animated.2bpp.lz.db2287e6 b/gfx/pokemon/vileplume/front.animated.2bpp.lz.db2287e6 similarity index 100% rename from gfx/pics/vileplume/front.animated.2bpp.lz.db2287e6 rename to gfx/pokemon/vileplume/front.animated.2bpp.lz.db2287e6 diff --git a/gfx/pics/vileplume/front.png b/gfx/pokemon/vileplume/front.png similarity index 100% rename from gfx/pics/vileplume/front.png rename to gfx/pokemon/vileplume/front.png diff --git a/gfx/pics/vileplume/shiny.pal b/gfx/pokemon/vileplume/shiny.pal similarity index 100% rename from gfx/pics/vileplume/shiny.pal rename to gfx/pokemon/vileplume/shiny.pal diff --git a/gfx/pics/voltorb/anim0.asm b/gfx/pokemon/voltorb/anim0.asm similarity index 100% rename from gfx/pics/voltorb/anim0.asm rename to gfx/pokemon/voltorb/anim0.asm diff --git a/gfx/pics/voltorb/anim1.asm b/gfx/pokemon/voltorb/anim1.asm similarity index 100% rename from gfx/pics/voltorb/anim1.asm rename to gfx/pokemon/voltorb/anim1.asm diff --git a/gfx/pics/voltorb/back.2bpp.lz.f19cefe9 b/gfx/pokemon/voltorb/back.2bpp.lz.f19cefe9 similarity index 100% rename from gfx/pics/voltorb/back.2bpp.lz.f19cefe9 rename to gfx/pokemon/voltorb/back.2bpp.lz.f19cefe9 diff --git a/gfx/pics/voltorb/back.png b/gfx/pokemon/voltorb/back.png similarity index 100% rename from gfx/pics/voltorb/back.png rename to gfx/pokemon/voltorb/back.png diff --git a/gfx/pics/voltorb/front.animated.2bpp.lz.64051f97 b/gfx/pokemon/voltorb/front.animated.2bpp.lz.64051f97 similarity index 100% rename from gfx/pics/voltorb/front.animated.2bpp.lz.64051f97 rename to gfx/pokemon/voltorb/front.animated.2bpp.lz.64051f97 diff --git a/gfx/pics/voltorb/front.png b/gfx/pokemon/voltorb/front.png similarity index 100% rename from gfx/pics/voltorb/front.png rename to gfx/pokemon/voltorb/front.png diff --git a/gfx/pics/voltorb/shiny.pal b/gfx/pokemon/voltorb/shiny.pal similarity index 100% rename from gfx/pics/voltorb/shiny.pal rename to gfx/pokemon/voltorb/shiny.pal diff --git a/gfx/pics/vulpix/anim0.asm b/gfx/pokemon/vulpix/anim0.asm similarity index 100% rename from gfx/pics/vulpix/anim0.asm rename to gfx/pokemon/vulpix/anim0.asm diff --git a/gfx/pics/vulpix/anim1.asm b/gfx/pokemon/vulpix/anim1.asm similarity index 100% rename from gfx/pics/vulpix/anim1.asm rename to gfx/pokemon/vulpix/anim1.asm diff --git a/gfx/pics/vulpix/back.2bpp.lz.0c7852c8 b/gfx/pokemon/vulpix/back.2bpp.lz.0c7852c8 similarity index 100% rename from gfx/pics/vulpix/back.2bpp.lz.0c7852c8 rename to gfx/pokemon/vulpix/back.2bpp.lz.0c7852c8 diff --git a/gfx/pics/vulpix/back.png b/gfx/pokemon/vulpix/back.png similarity index 100% rename from gfx/pics/vulpix/back.png rename to gfx/pokemon/vulpix/back.png diff --git a/gfx/pics/vulpix/front.animated.2bpp.lz.df94d884 b/gfx/pokemon/vulpix/front.animated.2bpp.lz.df94d884 similarity index 100% rename from gfx/pics/vulpix/front.animated.2bpp.lz.df94d884 rename to gfx/pokemon/vulpix/front.animated.2bpp.lz.df94d884 diff --git a/gfx/pics/vulpix/front.png b/gfx/pokemon/vulpix/front.png similarity index 100% rename from gfx/pics/vulpix/front.png rename to gfx/pokemon/vulpix/front.png diff --git a/gfx/pics/vulpix/shiny.pal b/gfx/pokemon/vulpix/shiny.pal similarity index 100% rename from gfx/pics/vulpix/shiny.pal rename to gfx/pokemon/vulpix/shiny.pal diff --git a/gfx/pics/wartortle/anim0.asm b/gfx/pokemon/wartortle/anim0.asm similarity index 100% rename from gfx/pics/wartortle/anim0.asm rename to gfx/pokemon/wartortle/anim0.asm diff --git a/gfx/pics/wartortle/anim1.asm b/gfx/pokemon/wartortle/anim1.asm similarity index 100% rename from gfx/pics/wartortle/anim1.asm rename to gfx/pokemon/wartortle/anim1.asm diff --git a/gfx/pics/wartortle/back.2bpp.lz.f2338cb4 b/gfx/pokemon/wartortle/back.2bpp.lz.f2338cb4 similarity index 100% rename from gfx/pics/wartortle/back.2bpp.lz.f2338cb4 rename to gfx/pokemon/wartortle/back.2bpp.lz.f2338cb4 diff --git a/gfx/pics/wartortle/back.png b/gfx/pokemon/wartortle/back.png similarity index 100% rename from gfx/pics/wartortle/back.png rename to gfx/pokemon/wartortle/back.png diff --git a/gfx/pics/wartortle/front.animated.2bpp.lz.f50d25f5 b/gfx/pokemon/wartortle/front.animated.2bpp.lz.f50d25f5 similarity index 100% rename from gfx/pics/wartortle/front.animated.2bpp.lz.f50d25f5 rename to gfx/pokemon/wartortle/front.animated.2bpp.lz.f50d25f5 diff --git a/gfx/pics/wartortle/front.png b/gfx/pokemon/wartortle/front.png similarity index 100% rename from gfx/pics/wartortle/front.png rename to gfx/pokemon/wartortle/front.png diff --git a/gfx/pics/wartortle/shiny.pal b/gfx/pokemon/wartortle/shiny.pal similarity index 100% rename from gfx/pics/wartortle/shiny.pal rename to gfx/pokemon/wartortle/shiny.pal diff --git a/gfx/pics/weedle/anim0.asm b/gfx/pokemon/weedle/anim0.asm similarity index 100% rename from gfx/pics/weedle/anim0.asm rename to gfx/pokemon/weedle/anim0.asm diff --git a/gfx/pics/weedle/anim1.asm b/gfx/pokemon/weedle/anim1.asm similarity index 100% rename from gfx/pics/weedle/anim1.asm rename to gfx/pokemon/weedle/anim1.asm diff --git a/gfx/pics/weedle/back.2bpp.lz.f26ac339 b/gfx/pokemon/weedle/back.2bpp.lz.f26ac339 similarity index 100% rename from gfx/pics/weedle/back.2bpp.lz.f26ac339 rename to gfx/pokemon/weedle/back.2bpp.lz.f26ac339 diff --git a/gfx/pics/weedle/back.png b/gfx/pokemon/weedle/back.png similarity index 100% rename from gfx/pics/weedle/back.png rename to gfx/pokemon/weedle/back.png diff --git a/gfx/pics/weedle/front.animated.2bpp.lz.9e1dedbd b/gfx/pokemon/weedle/front.animated.2bpp.lz.9e1dedbd similarity index 100% rename from gfx/pics/weedle/front.animated.2bpp.lz.9e1dedbd rename to gfx/pokemon/weedle/front.animated.2bpp.lz.9e1dedbd diff --git a/gfx/pics/weedle/front.png b/gfx/pokemon/weedle/front.png similarity index 100% rename from gfx/pics/weedle/front.png rename to gfx/pokemon/weedle/front.png diff --git a/gfx/pics/weedle/shiny.pal b/gfx/pokemon/weedle/shiny.pal similarity index 100% rename from gfx/pics/weedle/shiny.pal rename to gfx/pokemon/weedle/shiny.pal diff --git a/gfx/pics/weepinbell/anim0.asm b/gfx/pokemon/weepinbell/anim0.asm similarity index 100% rename from gfx/pics/weepinbell/anim0.asm rename to gfx/pokemon/weepinbell/anim0.asm diff --git a/gfx/pics/weepinbell/anim1.asm b/gfx/pokemon/weepinbell/anim1.asm similarity index 100% rename from gfx/pics/weepinbell/anim1.asm rename to gfx/pokemon/weepinbell/anim1.asm diff --git a/gfx/pics/weepinbell/back.2bpp.lz.f84a5fe6 b/gfx/pokemon/weepinbell/back.2bpp.lz.f84a5fe6 similarity index 100% rename from gfx/pics/weepinbell/back.2bpp.lz.f84a5fe6 rename to gfx/pokemon/weepinbell/back.2bpp.lz.f84a5fe6 diff --git a/gfx/pics/weepinbell/back.png b/gfx/pokemon/weepinbell/back.png similarity index 100% rename from gfx/pics/weepinbell/back.png rename to gfx/pokemon/weepinbell/back.png diff --git a/gfx/pics/weepinbell/front.animated.2bpp.lz.7b06c092 b/gfx/pokemon/weepinbell/front.animated.2bpp.lz.7b06c092 similarity index 100% rename from gfx/pics/weepinbell/front.animated.2bpp.lz.7b06c092 rename to gfx/pokemon/weepinbell/front.animated.2bpp.lz.7b06c092 diff --git a/gfx/pics/weepinbell/front.png b/gfx/pokemon/weepinbell/front.png similarity index 100% rename from gfx/pics/weepinbell/front.png rename to gfx/pokemon/weepinbell/front.png diff --git a/gfx/pics/weepinbell/shiny.pal b/gfx/pokemon/weepinbell/shiny.pal similarity index 100% rename from gfx/pics/weepinbell/shiny.pal rename to gfx/pokemon/weepinbell/shiny.pal diff --git a/gfx/pics/weezing/anim0.asm b/gfx/pokemon/weezing/anim0.asm similarity index 100% rename from gfx/pics/weezing/anim0.asm rename to gfx/pokemon/weezing/anim0.asm diff --git a/gfx/pics/weezing/anim1.asm b/gfx/pokemon/weezing/anim1.asm similarity index 100% rename from gfx/pics/weezing/anim1.asm rename to gfx/pokemon/weezing/anim1.asm diff --git a/gfx/pics/weezing/back.2bpp.lz.5ac5b672 b/gfx/pokemon/weezing/back.2bpp.lz.5ac5b672 similarity index 100% rename from gfx/pics/weezing/back.2bpp.lz.5ac5b672 rename to gfx/pokemon/weezing/back.2bpp.lz.5ac5b672 diff --git a/gfx/pics/weezing/back.png b/gfx/pokemon/weezing/back.png similarity index 100% rename from gfx/pics/weezing/back.png rename to gfx/pokemon/weezing/back.png diff --git a/gfx/pics/weezing/front.animated.2bpp.lz.75928bd0 b/gfx/pokemon/weezing/front.animated.2bpp.lz.75928bd0 similarity index 100% rename from gfx/pics/weezing/front.animated.2bpp.lz.75928bd0 rename to gfx/pokemon/weezing/front.animated.2bpp.lz.75928bd0 diff --git a/gfx/pics/weezing/front.png b/gfx/pokemon/weezing/front.png similarity index 100% rename from gfx/pics/weezing/front.png rename to gfx/pokemon/weezing/front.png diff --git a/gfx/pics/weezing/shiny.pal b/gfx/pokemon/weezing/shiny.pal similarity index 100% rename from gfx/pics/weezing/shiny.pal rename to gfx/pokemon/weezing/shiny.pal diff --git a/gfx/pics/wigglytuff/anim0.asm b/gfx/pokemon/wigglytuff/anim0.asm similarity index 100% rename from gfx/pics/wigglytuff/anim0.asm rename to gfx/pokemon/wigglytuff/anim0.asm diff --git a/gfx/pics/wigglytuff/anim1.asm b/gfx/pokemon/wigglytuff/anim1.asm similarity index 100% rename from gfx/pics/wigglytuff/anim1.asm rename to gfx/pokemon/wigglytuff/anim1.asm diff --git a/gfx/pics/wigglytuff/back.2bpp.lz.fee674ac b/gfx/pokemon/wigglytuff/back.2bpp.lz.fee674ac similarity index 100% rename from gfx/pics/wigglytuff/back.2bpp.lz.fee674ac rename to gfx/pokemon/wigglytuff/back.2bpp.lz.fee674ac diff --git a/gfx/pics/wigglytuff/back.png b/gfx/pokemon/wigglytuff/back.png similarity index 100% rename from gfx/pics/wigglytuff/back.png rename to gfx/pokemon/wigglytuff/back.png diff --git a/gfx/pics/wigglytuff/front.animated.2bpp.lz.49311d0b b/gfx/pokemon/wigglytuff/front.animated.2bpp.lz.49311d0b similarity index 100% rename from gfx/pics/wigglytuff/front.animated.2bpp.lz.49311d0b rename to gfx/pokemon/wigglytuff/front.animated.2bpp.lz.49311d0b diff --git a/gfx/pics/wigglytuff/front.png b/gfx/pokemon/wigglytuff/front.png similarity index 100% rename from gfx/pics/wigglytuff/front.png rename to gfx/pokemon/wigglytuff/front.png diff --git a/gfx/pics/wigglytuff/shiny.pal b/gfx/pokemon/wigglytuff/shiny.pal similarity index 100% rename from gfx/pics/wigglytuff/shiny.pal rename to gfx/pokemon/wigglytuff/shiny.pal diff --git a/gfx/pics/wobbuffet/anim0.asm b/gfx/pokemon/wobbuffet/anim0.asm similarity index 100% rename from gfx/pics/wobbuffet/anim0.asm rename to gfx/pokemon/wobbuffet/anim0.asm diff --git a/gfx/pics/wobbuffet/anim1.asm b/gfx/pokemon/wobbuffet/anim1.asm similarity index 100% rename from gfx/pics/wobbuffet/anim1.asm rename to gfx/pokemon/wobbuffet/anim1.asm diff --git a/gfx/pics/wobbuffet/back.2bpp.lz.a862192a b/gfx/pokemon/wobbuffet/back.2bpp.lz.a862192a similarity index 100% rename from gfx/pics/wobbuffet/back.2bpp.lz.a862192a rename to gfx/pokemon/wobbuffet/back.2bpp.lz.a862192a diff --git a/gfx/pics/wobbuffet/back.png b/gfx/pokemon/wobbuffet/back.png similarity index 100% rename from gfx/pics/wobbuffet/back.png rename to gfx/pokemon/wobbuffet/back.png diff --git a/gfx/pics/wobbuffet/front.animated.2bpp.lz.f1f4687d b/gfx/pokemon/wobbuffet/front.animated.2bpp.lz.f1f4687d similarity index 100% rename from gfx/pics/wobbuffet/front.animated.2bpp.lz.f1f4687d rename to gfx/pokemon/wobbuffet/front.animated.2bpp.lz.f1f4687d diff --git a/gfx/pics/wobbuffet/front.png b/gfx/pokemon/wobbuffet/front.png similarity index 100% rename from gfx/pics/wobbuffet/front.png rename to gfx/pokemon/wobbuffet/front.png diff --git a/gfx/pics/wobbuffet/shiny.pal b/gfx/pokemon/wobbuffet/shiny.pal similarity index 100% rename from gfx/pics/wobbuffet/shiny.pal rename to gfx/pokemon/wobbuffet/shiny.pal diff --git a/gfx/pics/wooper/anim0.asm b/gfx/pokemon/wooper/anim0.asm similarity index 100% rename from gfx/pics/wooper/anim0.asm rename to gfx/pokemon/wooper/anim0.asm diff --git a/gfx/pics/wooper/anim1.asm b/gfx/pokemon/wooper/anim1.asm similarity index 100% rename from gfx/pics/wooper/anim1.asm rename to gfx/pokemon/wooper/anim1.asm diff --git a/gfx/pics/wooper/back.2bpp.lz.4f4b7917 b/gfx/pokemon/wooper/back.2bpp.lz.4f4b7917 similarity index 100% rename from gfx/pics/wooper/back.2bpp.lz.4f4b7917 rename to gfx/pokemon/wooper/back.2bpp.lz.4f4b7917 diff --git a/gfx/pics/wooper/back.png b/gfx/pokemon/wooper/back.png similarity index 100% rename from gfx/pics/wooper/back.png rename to gfx/pokemon/wooper/back.png diff --git a/gfx/pics/wooper/front.animated.2bpp.lz.4e440469 b/gfx/pokemon/wooper/front.animated.2bpp.lz.4e440469 similarity index 100% rename from gfx/pics/wooper/front.animated.2bpp.lz.4e440469 rename to gfx/pokemon/wooper/front.animated.2bpp.lz.4e440469 diff --git a/gfx/pics/wooper/front.png b/gfx/pokemon/wooper/front.png similarity index 100% rename from gfx/pics/wooper/front.png rename to gfx/pokemon/wooper/front.png diff --git a/gfx/pics/wooper/shiny.pal b/gfx/pokemon/wooper/shiny.pal similarity index 100% rename from gfx/pics/wooper/shiny.pal rename to gfx/pokemon/wooper/shiny.pal diff --git a/gfx/pics/xatu/anim0.asm b/gfx/pokemon/xatu/anim0.asm similarity index 100% rename from gfx/pics/xatu/anim0.asm rename to gfx/pokemon/xatu/anim0.asm diff --git a/gfx/pics/xatu/anim1.asm b/gfx/pokemon/xatu/anim1.asm similarity index 100% rename from gfx/pics/xatu/anim1.asm rename to gfx/pokemon/xatu/anim1.asm diff --git a/gfx/pics/xatu/back.2bpp.lz.4de765ff b/gfx/pokemon/xatu/back.2bpp.lz.4de765ff similarity index 100% rename from gfx/pics/xatu/back.2bpp.lz.4de765ff rename to gfx/pokemon/xatu/back.2bpp.lz.4de765ff diff --git a/gfx/pics/xatu/back.png b/gfx/pokemon/xatu/back.png similarity index 100% rename from gfx/pics/xatu/back.png rename to gfx/pokemon/xatu/back.png diff --git a/gfx/pics/xatu/front.animated.2bpp.lz.4f452e43 b/gfx/pokemon/xatu/front.animated.2bpp.lz.4f452e43 similarity index 100% rename from gfx/pics/xatu/front.animated.2bpp.lz.4f452e43 rename to gfx/pokemon/xatu/front.animated.2bpp.lz.4f452e43 diff --git a/gfx/pics/xatu/front.png b/gfx/pokemon/xatu/front.png similarity index 100% rename from gfx/pics/xatu/front.png rename to gfx/pokemon/xatu/front.png diff --git a/gfx/pics/xatu/shiny.pal b/gfx/pokemon/xatu/shiny.pal similarity index 100% rename from gfx/pics/xatu/shiny.pal rename to gfx/pokemon/xatu/shiny.pal diff --git a/gfx/pics/yanma/anim0.asm b/gfx/pokemon/yanma/anim0.asm similarity index 100% rename from gfx/pics/yanma/anim0.asm rename to gfx/pokemon/yanma/anim0.asm diff --git a/gfx/pics/yanma/anim1.asm b/gfx/pokemon/yanma/anim1.asm similarity index 100% rename from gfx/pics/yanma/anim1.asm rename to gfx/pokemon/yanma/anim1.asm diff --git a/gfx/pics/yanma/back.2bpp.lz.2ca27ab3 b/gfx/pokemon/yanma/back.2bpp.lz.2ca27ab3 similarity index 100% rename from gfx/pics/yanma/back.2bpp.lz.2ca27ab3 rename to gfx/pokemon/yanma/back.2bpp.lz.2ca27ab3 diff --git a/gfx/pics/yanma/back.png b/gfx/pokemon/yanma/back.png similarity index 100% rename from gfx/pics/yanma/back.png rename to gfx/pokemon/yanma/back.png diff --git a/gfx/pics/yanma/front.animated.2bpp.lz.25f91adf b/gfx/pokemon/yanma/front.animated.2bpp.lz.25f91adf similarity index 100% rename from gfx/pics/yanma/front.animated.2bpp.lz.25f91adf rename to gfx/pokemon/yanma/front.animated.2bpp.lz.25f91adf diff --git a/gfx/pics/yanma/front.png b/gfx/pokemon/yanma/front.png similarity index 100% rename from gfx/pics/yanma/front.png rename to gfx/pokemon/yanma/front.png diff --git a/gfx/pics/yanma/shiny.pal b/gfx/pokemon/yanma/shiny.pal similarity index 100% rename from gfx/pics/yanma/shiny.pal rename to gfx/pokemon/yanma/shiny.pal diff --git a/gfx/pics/zapdos/anim0.asm b/gfx/pokemon/zapdos/anim0.asm similarity index 100% rename from gfx/pics/zapdos/anim0.asm rename to gfx/pokemon/zapdos/anim0.asm diff --git a/gfx/pics/zapdos/anim1.asm b/gfx/pokemon/zapdos/anim1.asm similarity index 100% rename from gfx/pics/zapdos/anim1.asm rename to gfx/pokemon/zapdos/anim1.asm diff --git a/gfx/pics/zapdos/back.2bpp.lz.a44c7524 b/gfx/pokemon/zapdos/back.2bpp.lz.a44c7524 similarity index 100% rename from gfx/pics/zapdos/back.2bpp.lz.a44c7524 rename to gfx/pokemon/zapdos/back.2bpp.lz.a44c7524 diff --git a/gfx/pics/zapdos/back.png b/gfx/pokemon/zapdos/back.png similarity index 100% rename from gfx/pics/zapdos/back.png rename to gfx/pokemon/zapdos/back.png diff --git a/gfx/pics/zapdos/front.animated.2bpp.lz.05cb214a b/gfx/pokemon/zapdos/front.animated.2bpp.lz.05cb214a similarity index 100% rename from gfx/pics/zapdos/front.animated.2bpp.lz.05cb214a rename to gfx/pokemon/zapdos/front.animated.2bpp.lz.05cb214a diff --git a/gfx/pics/zapdos/front.png b/gfx/pokemon/zapdos/front.png similarity index 100% rename from gfx/pics/zapdos/front.png rename to gfx/pokemon/zapdos/front.png diff --git a/gfx/pics/zapdos/shiny.pal b/gfx/pokemon/zapdos/shiny.pal similarity index 100% rename from gfx/pics/zapdos/shiny.pal rename to gfx/pokemon/zapdos/shiny.pal diff --git a/gfx/pics/zubat/anim0.asm b/gfx/pokemon/zubat/anim0.asm similarity index 100% rename from gfx/pics/zubat/anim0.asm rename to gfx/pokemon/zubat/anim0.asm diff --git a/gfx/pics/zubat/anim1.asm b/gfx/pokemon/zubat/anim1.asm similarity index 100% rename from gfx/pics/zubat/anim1.asm rename to gfx/pokemon/zubat/anim1.asm diff --git a/gfx/pics/zubat/back.2bpp.lz.aa77eb62 b/gfx/pokemon/zubat/back.2bpp.lz.aa77eb62 similarity index 100% rename from gfx/pics/zubat/back.2bpp.lz.aa77eb62 rename to gfx/pokemon/zubat/back.2bpp.lz.aa77eb62 diff --git a/gfx/pics/zubat/back.png b/gfx/pokemon/zubat/back.png similarity index 100% rename from gfx/pics/zubat/back.png rename to gfx/pokemon/zubat/back.png diff --git a/gfx/pics/zubat/front.animated.2bpp.lz.f12e6581 b/gfx/pokemon/zubat/front.animated.2bpp.lz.f12e6581 similarity index 100% rename from gfx/pics/zubat/front.animated.2bpp.lz.f12e6581 rename to gfx/pokemon/zubat/front.animated.2bpp.lz.f12e6581 diff --git a/gfx/pics/zubat/front.png b/gfx/pokemon/zubat/front.png similarity index 100% rename from gfx/pics/zubat/front.png rename to gfx/pokemon/zubat/front.png diff --git a/gfx/pics/zubat/shiny.pal b/gfx/pokemon/zubat/shiny.pal similarity index 100% rename from gfx/pics/zubat/shiny.pal rename to gfx/pokemon/zubat/shiny.pal diff --git a/main.asm b/main.asm index 6fd426e8a..8aa861f26 100644 --- a/main.asm +++ b/main.asm @@ -406,25 +406,25 @@ INCLUDE "battle/anim_objects.asm" SECTION "Pic Animations 1", ROMX -INCLUDE "gfx/pics/animation.asm" -INCLUDE "gfx/pics/anim_pointers.asm" -INCLUDE "gfx/pics/anims.asm" -INCLUDE "gfx/pics/extra_pointers.asm" -INCLUDE "gfx/pics/extras.asm" -INCLUDE "gfx/pics/unown_anim_pointers.asm" -INCLUDE "gfx/pics/unown_anims.asm" -INCLUDE "gfx/pics/unown_extra_pointers.asm" -INCLUDE "gfx/pics/unown_extras.asm" -INCLUDE "gfx/pics/bitmask_pointers.asm" -INCLUDE "gfx/pics/bitmasks.asm" -INCLUDE "gfx/pics/unown_bitmask_pointers.asm" -INCLUDE "gfx/pics/unown_bitmasks.asm" +INCLUDE "gfx/pokemon/animation.asm" +INCLUDE "gfx/pokemon/anim_pointers.asm" +INCLUDE "gfx/pokemon/anims.asm" +INCLUDE "gfx/pokemon/extra_pointers.asm" +INCLUDE "gfx/pokemon/extras.asm" +INCLUDE "gfx/pokemon/unown_anim_pointers.asm" +INCLUDE "gfx/pokemon/unown_anims.asm" +INCLUDE "gfx/pokemon/unown_extra_pointers.asm" +INCLUDE "gfx/pokemon/unown_extras.asm" +INCLUDE "gfx/pokemon/bitmask_pointers.asm" +INCLUDE "gfx/pokemon/bitmasks.asm" +INCLUDE "gfx/pokemon/unown_bitmask_pointers.asm" +INCLUDE "gfx/pokemon/unown_bitmasks.asm" SECTION "Pic Animations 2", ROMX -INCLUDE "gfx/pics/frame_pointers.asm" -INCLUDE "gfx/pics/kanto_frames.asm" +INCLUDE "gfx/pokemon/frame_pointers.asm" +INCLUDE "gfx/pokemon/kanto_frames.asm" SECTION "Font Inversed", ROMX @@ -435,9 +435,9 @@ INCBIN "gfx/font/font_inversed.1bpp" SECTION "Pic Animations 3", ROMX -INCLUDE "gfx/pics/johto_frames.asm" -INCLUDE "gfx/pics/unown_frame_pointers.asm" -INCLUDE "gfx/pics/unown_frames.asm" +INCLUDE "gfx/pokemon/johto_frames.asm" +INCLUDE "gfx/pokemon/unown_frame_pointers.asm" +INCLUDE "gfx/pokemon/unown_frames.asm" SECTION "bank38", ROMX