Rename pokemon animation files (fix #439)

This commit is contained in:
Remy Oukaour 2017-12-28 11:05:42 -05:00
parent e2b378f5e3
commit b373984ab9
570 changed files with 863 additions and 863 deletions

View File

@ -13,7 +13,7 @@
; - NewPokedexOrder (see data/pokemon/dex_order_new.asm) ; - NewPokedexOrder (see data/pokemon/dex_order_new.asm)
; - Pokered_MonIndices (see data/time_capsule/mon_order.asm) ; - Pokered_MonIndices (see data/time_capsule/mon_order.asm)
; - AnimationPointers (see gfx/pokemon/anim_pointers.asm) ; - AnimationPointers (see gfx/pokemon/anim_pointers.asm)
; - AnimationExtraPointers (see gfx/pokemon/extra_pointers.asm) ; - AnimationIdlePointers (see gfx/pokemon/idle_pointers.asm)
; - BitmasksPointers (see gfx/pokemon/bitmask_pointers.asm) ; - BitmasksPointers (see gfx/pokemon/bitmask_pointers.asm)
; - FramesPointers (see gfx/pokemon/frame_pointers.asm) ; - FramesPointers (see gfx/pokemon/frame_pointers.asm)
; - Footprints (see gfx/footprints.asm) ; - Footprints (see gfx/footprints.asm)

View File

@ -77,13 +77,13 @@ PokeAnims: ; d0042
.Slow: pokeanim StereoCry, Setup2, Play .Slow: pokeanim StereoCry, Setup2, Play
.Normal: pokeanim StereoCry, Setup, Play .Normal: pokeanim StereoCry, Setup, Play
.Menu: pokeanim CryNoWait, Setup, Play, SetWait, Wait, Extra, Play .Menu: pokeanim CryNoWait, Setup, Play, SetWait, Wait, Idle, Play
.Trade: pokeanim Extra, Play2, Extra, Play, SetWait, Wait, Cry, Setup, Play .Trade: pokeanim Idle, Play2, Idle, Play, SetWait, Wait, Cry, Setup, Play
.Evolve: pokeanim Extra, Play, SetWait, Wait, CryNoWait, Setup, Play .Evolve: pokeanim Idle, Play, SetWait, Wait, CryNoWait, Setup, Play
.Hatch: pokeanim Extra, Play, CryNoWait, Setup, Play, SetWait, Wait, Extra, Play .Hatch: pokeanim Idle, Play, CryNoWait, Setup, Play, SetWait, Wait, Idle, Play
.Unused: pokeanim CryNoWait, Setup, Play, SetWait, Wait, Extra, Play .Unused: pokeanim CryNoWait, Setup, Play, SetWait, Wait, Idle, Play
.Egg1: pokeanim Setup, Play .Egg1: pokeanim Setup, Play
.Egg2: pokeanim Extra, Play .Egg2: pokeanim Idle, Play
AnimateFrontpic: ; d008e AnimateFrontpic: ; d008e
@ -151,7 +151,7 @@ endm
setup_command PokeAnim_Wait setup_command PokeAnim_Wait
setup_command PokeAnim_Setup setup_command PokeAnim_Setup
setup_command PokeAnim_Setup2 setup_command PokeAnim_Setup2
setup_command PokeAnim_Extra setup_command PokeAnim_Idle
setup_command PokeAnim_Play setup_command PokeAnim_Play
setup_command PokeAnim_Play2 setup_command PokeAnim_Play2
setup_command PokeAnim_Cry setup_command PokeAnim_Cry
@ -198,7 +198,7 @@ PokeAnim_Setup2: ; d011d
ret ret
; d012f ; d012f
PokeAnim_Extra: ; d012f PokeAnim_Idle: ; d012f
ld c, TRUE ld c, TRUE
ld b, 0 ld b, 0
call PokeAnim_InitAnim call PokeAnim_InitAnim
@ -360,18 +360,18 @@ PokeAnim_InitPicAttributes: ; d01d6
PokeAnim_InitAnim: ; d0228 PokeAnim_InitAnim: ; d0228
ld a, [rSVBK] ld a, [rSVBK]
push af push af
ld a, BANK(wPokeAnimExtraFlag) ld a, BANK(wPokeAnimIdleFlag)
ld [rSVBK], a ld [rSVBK], a
push bc push bc
ld hl, wPokeAnimExtraFlag ld hl, wPokeAnimIdleFlag
ld bc, wPokeAnimStructEnd - wPokeAnimExtraFlag ld bc, wPokeAnimStructEnd - wPokeAnimIdleFlag
xor a xor a
call ByteFill call ByteFill
pop bc pop bc
ld a, b ld a, b
ld [wPokeAnimSpeed], a ld [wPokeAnimSpeed], a
ld a, c ld a, c
ld [wPokeAnimExtraFlag], a ld [wPokeAnimIdleFlag], a
call GetMonAnimPointer call GetMonAnimPointer
call GetMonFramesPointer call GetMonFramesPointer
call GetMonBitmaskPointer call GetMonBitmaskPointer
@ -949,20 +949,20 @@ GetMonAnimPointer: ; d055c
ld c, BANK(UnownAnimations) ld c, BANK(UnownAnimations)
ld hl, UnownAnimationPointers ld hl, UnownAnimationPointers
ld de, UnownAnimationExtraPointers ld de, UnownAnimationIdlePointers
call PokeAnim_IsUnown call PokeAnim_IsUnown
jr z, .unown jr z, .unown
ld c, BANK(PicAnimations) ld c, BANK(PicAnimations)
ld hl, AnimationPointers ld hl, AnimationPointers
ld de, AnimationExtraPointers ld de, AnimationIdlePointers
.unown .unown
ld a, [wPokeAnimExtraFlag] ld a, [wPokeAnimIdleFlag]
and a and a
jr z, .extras jr z, .idles
ld h, d ld h, d
ld l, e ld l, e
.extras .idles
ld a, [wPokeAnimSpeciesOrUnown] ld a, [wPokeAnimSpeciesOrUnown]
dec a dec a
@ -982,12 +982,12 @@ GetMonAnimPointer: ; d055c
.egg .egg
ld hl, EggAnimation ld hl, EggAnimation
ld c, BANK(EggAnimation) ld c, BANK(EggAnimation)
ld a, [wPokeAnimExtraFlag] ld a, [wPokeAnimIdleFlag]
and a and a
jr z, .extras_egg jr z, .idles_egg
ld hl, EggAnimationExtra ld hl, EggAnimationIdle
ld c, BANK(EggAnimationExtra) ld c, BANK(EggAnimationIdle)
.extras_egg .idles_egg
ld a, c ld a, c
ld [wPokeAnimPointerBank], a ld [wPokeAnimPointerBank], a

View File

@ -1,253 +1,253 @@
PicAnimations: PicAnimations:
BulbasaurAnimation: INCLUDE "gfx/pokemon/bulbasaur/anim0.asm" BulbasaurAnimation: INCLUDE "gfx/pokemon/bulbasaur/anim.asm"
IvysaurAnimation: INCLUDE "gfx/pokemon/ivysaur/anim0.asm" IvysaurAnimation: INCLUDE "gfx/pokemon/ivysaur/anim.asm"
VenusaurAnimation: INCLUDE "gfx/pokemon/venusaur/anim0.asm" VenusaurAnimation: INCLUDE "gfx/pokemon/venusaur/anim.asm"
CharmanderAnimation: INCLUDE "gfx/pokemon/charmander/anim0.asm" CharmanderAnimation: INCLUDE "gfx/pokemon/charmander/anim.asm"
CharmeleonAnimation: INCLUDE "gfx/pokemon/charmeleon/anim0.asm" CharmeleonAnimation: INCLUDE "gfx/pokemon/charmeleon/anim.asm"
CharizardAnimation: INCLUDE "gfx/pokemon/charizard/anim0.asm" CharizardAnimation: INCLUDE "gfx/pokemon/charizard/anim.asm"
SquirtleAnimation: INCLUDE "gfx/pokemon/squirtle/anim0.asm" SquirtleAnimation: INCLUDE "gfx/pokemon/squirtle/anim.asm"
WartortleAnimation: INCLUDE "gfx/pokemon/wartortle/anim0.asm" WartortleAnimation: INCLUDE "gfx/pokemon/wartortle/anim.asm"
BlastoiseAnimation: INCLUDE "gfx/pokemon/blastoise/anim0.asm" BlastoiseAnimation: INCLUDE "gfx/pokemon/blastoise/anim.asm"
CaterpieAnimation: INCLUDE "gfx/pokemon/caterpie/anim0.asm" CaterpieAnimation: INCLUDE "gfx/pokemon/caterpie/anim.asm"
MetapodAnimation: INCLUDE "gfx/pokemon/metapod/anim0.asm" MetapodAnimation: INCLUDE "gfx/pokemon/metapod/anim.asm"
ButterfreeAnimation: INCLUDE "gfx/pokemon/butterfree/anim0.asm" ButterfreeAnimation: INCLUDE "gfx/pokemon/butterfree/anim.asm"
WeedleAnimation: INCLUDE "gfx/pokemon/weedle/anim0.asm" WeedleAnimation: INCLUDE "gfx/pokemon/weedle/anim.asm"
KakunaAnimation: INCLUDE "gfx/pokemon/kakuna/anim0.asm" KakunaAnimation: INCLUDE "gfx/pokemon/kakuna/anim.asm"
BeedrillAnimation: INCLUDE "gfx/pokemon/beedrill/anim0.asm" BeedrillAnimation: INCLUDE "gfx/pokemon/beedrill/anim.asm"
PidgeyAnimation: INCLUDE "gfx/pokemon/pidgey/anim0.asm" PidgeyAnimation: INCLUDE "gfx/pokemon/pidgey/anim.asm"
PidgeottoAnimation: INCLUDE "gfx/pokemon/pidgeotto/anim0.asm" PidgeottoAnimation: INCLUDE "gfx/pokemon/pidgeotto/anim.asm"
PidgeotAnimation: INCLUDE "gfx/pokemon/pidgeot/anim0.asm" PidgeotAnimation: INCLUDE "gfx/pokemon/pidgeot/anim.asm"
RattataAnimation: INCLUDE "gfx/pokemon/rattata/anim0.asm" RattataAnimation: INCLUDE "gfx/pokemon/rattata/anim.asm"
RaticateAnimation: INCLUDE "gfx/pokemon/raticate/anim0.asm" RaticateAnimation: INCLUDE "gfx/pokemon/raticate/anim.asm"
SpearowAnimation: INCLUDE "gfx/pokemon/spearow/anim0.asm" SpearowAnimation: INCLUDE "gfx/pokemon/spearow/anim.asm"
FearowAnimation: INCLUDE "gfx/pokemon/fearow/anim0.asm" FearowAnimation: INCLUDE "gfx/pokemon/fearow/anim.asm"
EkansAnimation: INCLUDE "gfx/pokemon/ekans/anim0.asm" EkansAnimation: INCLUDE "gfx/pokemon/ekans/anim.asm"
ArbokAnimation: INCLUDE "gfx/pokemon/arbok/anim0.asm" ArbokAnimation: INCLUDE "gfx/pokemon/arbok/anim.asm"
PikachuAnimation: INCLUDE "gfx/pokemon/pikachu/anim0.asm" PikachuAnimation: INCLUDE "gfx/pokemon/pikachu/anim.asm"
RaichuAnimation: INCLUDE "gfx/pokemon/raichu/anim0.asm" RaichuAnimation: INCLUDE "gfx/pokemon/raichu/anim.asm"
SandshrewAnimation: INCLUDE "gfx/pokemon/sandshrew/anim0.asm" SandshrewAnimation: INCLUDE "gfx/pokemon/sandshrew/anim.asm"
SandslashAnimation: INCLUDE "gfx/pokemon/sandslash/anim0.asm" SandslashAnimation: INCLUDE "gfx/pokemon/sandslash/anim.asm"
NidoranFAnimation: INCLUDE "gfx/pokemon/nidoran_f/anim0.asm" NidoranFAnimation: INCLUDE "gfx/pokemon/nidoran_f/anim.asm"
NidorinaAnimation: INCLUDE "gfx/pokemon/nidorina/anim0.asm" NidorinaAnimation: INCLUDE "gfx/pokemon/nidorina/anim.asm"
NidoqueenAnimation: INCLUDE "gfx/pokemon/nidoqueen/anim0.asm" NidoqueenAnimation: INCLUDE "gfx/pokemon/nidoqueen/anim.asm"
NidoranMAnimation: INCLUDE "gfx/pokemon/nidoran_m/anim0.asm" NidoranMAnimation: INCLUDE "gfx/pokemon/nidoran_m/anim.asm"
NidorinoAnimation: INCLUDE "gfx/pokemon/nidorino/anim0.asm" NidorinoAnimation: INCLUDE "gfx/pokemon/nidorino/anim.asm"
NidokingAnimation: INCLUDE "gfx/pokemon/nidoking/anim0.asm" NidokingAnimation: INCLUDE "gfx/pokemon/nidoking/anim.asm"
ClefairyAnimation: INCLUDE "gfx/pokemon/clefairy/anim0.asm" ClefairyAnimation: INCLUDE "gfx/pokemon/clefairy/anim.asm"
ClefableAnimation: INCLUDE "gfx/pokemon/clefable/anim0.asm" ClefableAnimation: INCLUDE "gfx/pokemon/clefable/anim.asm"
VulpixAnimation: INCLUDE "gfx/pokemon/vulpix/anim0.asm" VulpixAnimation: INCLUDE "gfx/pokemon/vulpix/anim.asm"
NinetalesAnimation: INCLUDE "gfx/pokemon/ninetales/anim0.asm" NinetalesAnimation: INCLUDE "gfx/pokemon/ninetales/anim.asm"
JigglypuffAnimation: INCLUDE "gfx/pokemon/jigglypuff/anim0.asm" JigglypuffAnimation: INCLUDE "gfx/pokemon/jigglypuff/anim.asm"
WigglytuffAnimation: INCLUDE "gfx/pokemon/wigglytuff/anim0.asm" WigglytuffAnimation: INCLUDE "gfx/pokemon/wigglytuff/anim.asm"
ZubatAnimation: INCLUDE "gfx/pokemon/zubat/anim0.asm" ZubatAnimation: INCLUDE "gfx/pokemon/zubat/anim.asm"
GolbatAnimation: INCLUDE "gfx/pokemon/golbat/anim0.asm" GolbatAnimation: INCLUDE "gfx/pokemon/golbat/anim.asm"
OddishAnimation: INCLUDE "gfx/pokemon/oddish/anim0.asm" OddishAnimation: INCLUDE "gfx/pokemon/oddish/anim.asm"
GloomAnimation: INCLUDE "gfx/pokemon/gloom/anim0.asm" GloomAnimation: INCLUDE "gfx/pokemon/gloom/anim.asm"
VileplumeAnimation: INCLUDE "gfx/pokemon/vileplume/anim0.asm" VileplumeAnimation: INCLUDE "gfx/pokemon/vileplume/anim.asm"
ParasAnimation: INCLUDE "gfx/pokemon/paras/anim0.asm" ParasAnimation: INCLUDE "gfx/pokemon/paras/anim.asm"
ParasectAnimation: INCLUDE "gfx/pokemon/parasect/anim0.asm" ParasectAnimation: INCLUDE "gfx/pokemon/parasect/anim.asm"
VenonatAnimation: INCLUDE "gfx/pokemon/venonat/anim0.asm" VenonatAnimation: INCLUDE "gfx/pokemon/venonat/anim.asm"
VenomothAnimation: INCLUDE "gfx/pokemon/venomoth/anim0.asm" VenomothAnimation: INCLUDE "gfx/pokemon/venomoth/anim.asm"
DiglettAnimation: INCLUDE "gfx/pokemon/diglett/anim0.asm" DiglettAnimation: INCLUDE "gfx/pokemon/diglett/anim.asm"
DugtrioAnimation: INCLUDE "gfx/pokemon/dugtrio/anim0.asm" DugtrioAnimation: INCLUDE "gfx/pokemon/dugtrio/anim.asm"
MeowthAnimation: INCLUDE "gfx/pokemon/meowth/anim0.asm" MeowthAnimation: INCLUDE "gfx/pokemon/meowth/anim.asm"
PersianAnimation: INCLUDE "gfx/pokemon/persian/anim0.asm" PersianAnimation: INCLUDE "gfx/pokemon/persian/anim.asm"
PsyduckAnimation: INCLUDE "gfx/pokemon/psyduck/anim0.asm" PsyduckAnimation: INCLUDE "gfx/pokemon/psyduck/anim.asm"
GolduckAnimation: INCLUDE "gfx/pokemon/golduck/anim0.asm" GolduckAnimation: INCLUDE "gfx/pokemon/golduck/anim.asm"
MankeyAnimation: INCLUDE "gfx/pokemon/mankey/anim0.asm" MankeyAnimation: INCLUDE "gfx/pokemon/mankey/anim.asm"
PrimeapeAnimation: INCLUDE "gfx/pokemon/primeape/anim0.asm" PrimeapeAnimation: INCLUDE "gfx/pokemon/primeape/anim.asm"
GrowlitheAnimation: INCLUDE "gfx/pokemon/growlithe/anim0.asm" GrowlitheAnimation: INCLUDE "gfx/pokemon/growlithe/anim.asm"
ArcanineAnimation: INCLUDE "gfx/pokemon/arcanine/anim0.asm" ArcanineAnimation: INCLUDE "gfx/pokemon/arcanine/anim.asm"
PoliwagAnimation: INCLUDE "gfx/pokemon/poliwag/anim0.asm" PoliwagAnimation: INCLUDE "gfx/pokemon/poliwag/anim.asm"
PoliwhirlAnimation: INCLUDE "gfx/pokemon/poliwhirl/anim0.asm" PoliwhirlAnimation: INCLUDE "gfx/pokemon/poliwhirl/anim.asm"
PoliwrathAnimation: INCLUDE "gfx/pokemon/poliwrath/anim0.asm" PoliwrathAnimation: INCLUDE "gfx/pokemon/poliwrath/anim.asm"
AbraAnimation: INCLUDE "gfx/pokemon/abra/anim0.asm" AbraAnimation: INCLUDE "gfx/pokemon/abra/anim.asm"
KadabraAnimation: INCLUDE "gfx/pokemon/kadabra/anim0.asm" KadabraAnimation: INCLUDE "gfx/pokemon/kadabra/anim.asm"
AlakazamAnimation: INCLUDE "gfx/pokemon/alakazam/anim0.asm" AlakazamAnimation: INCLUDE "gfx/pokemon/alakazam/anim.asm"
MachopAnimation: INCLUDE "gfx/pokemon/machop/anim0.asm" MachopAnimation: INCLUDE "gfx/pokemon/machop/anim.asm"
MachokeAnimation: INCLUDE "gfx/pokemon/machoke/anim0.asm" MachokeAnimation: INCLUDE "gfx/pokemon/machoke/anim.asm"
MachampAnimation: INCLUDE "gfx/pokemon/machamp/anim0.asm" MachampAnimation: INCLUDE "gfx/pokemon/machamp/anim.asm"
BellsproutAnimation: INCLUDE "gfx/pokemon/bellsprout/anim0.asm" BellsproutAnimation: INCLUDE "gfx/pokemon/bellsprout/anim.asm"
WeepinbellAnimation: INCLUDE "gfx/pokemon/weepinbell/anim0.asm" WeepinbellAnimation: INCLUDE "gfx/pokemon/weepinbell/anim.asm"
VictreebelAnimation: INCLUDE "gfx/pokemon/victreebel/anim0.asm" VictreebelAnimation: INCLUDE "gfx/pokemon/victreebel/anim.asm"
TentacoolAnimation: INCLUDE "gfx/pokemon/tentacool/anim0.asm" TentacoolAnimation: INCLUDE "gfx/pokemon/tentacool/anim.asm"
TentacruelAnimation: INCLUDE "gfx/pokemon/tentacruel/anim0.asm" TentacruelAnimation: INCLUDE "gfx/pokemon/tentacruel/anim.asm"
GeodudeAnimation: INCLUDE "gfx/pokemon/geodude/anim0.asm" GeodudeAnimation: INCLUDE "gfx/pokemon/geodude/anim.asm"
GravelerAnimation: INCLUDE "gfx/pokemon/graveler/anim0.asm" GravelerAnimation: INCLUDE "gfx/pokemon/graveler/anim.asm"
GolemAnimation: INCLUDE "gfx/pokemon/golem/anim0.asm" GolemAnimation: INCLUDE "gfx/pokemon/golem/anim.asm"
PonytaAnimation: INCLUDE "gfx/pokemon/ponyta/anim0.asm" PonytaAnimation: INCLUDE "gfx/pokemon/ponyta/anim.asm"
RapidashAnimation: INCLUDE "gfx/pokemon/rapidash/anim0.asm" RapidashAnimation: INCLUDE "gfx/pokemon/rapidash/anim.asm"
SlowpokeAnimation: INCLUDE "gfx/pokemon/slowpoke/anim0.asm" SlowpokeAnimation: INCLUDE "gfx/pokemon/slowpoke/anim.asm"
SlowbroAnimation: INCLUDE "gfx/pokemon/slowbro/anim0.asm" SlowbroAnimation: INCLUDE "gfx/pokemon/slowbro/anim.asm"
MagnemiteAnimation: INCLUDE "gfx/pokemon/magnemite/anim0.asm" MagnemiteAnimation: INCLUDE "gfx/pokemon/magnemite/anim.asm"
MagnetonAnimation: INCLUDE "gfx/pokemon/magneton/anim0.asm" MagnetonAnimation: INCLUDE "gfx/pokemon/magneton/anim.asm"
FarfetchDAnimation: INCLUDE "gfx/pokemon/farfetch_d/anim0.asm" FarfetchDAnimation: INCLUDE "gfx/pokemon/farfetch_d/anim.asm"
DoduoAnimation: INCLUDE "gfx/pokemon/doduo/anim0.asm" DoduoAnimation: INCLUDE "gfx/pokemon/doduo/anim.asm"
DodrioAnimation: INCLUDE "gfx/pokemon/dodrio/anim0.asm" DodrioAnimation: INCLUDE "gfx/pokemon/dodrio/anim.asm"
SeelAnimation: INCLUDE "gfx/pokemon/seel/anim0.asm" SeelAnimation: INCLUDE "gfx/pokemon/seel/anim.asm"
DewgongAnimation: INCLUDE "gfx/pokemon/dewgong/anim0.asm" DewgongAnimation: INCLUDE "gfx/pokemon/dewgong/anim.asm"
GrimerAnimation: INCLUDE "gfx/pokemon/grimer/anim0.asm" GrimerAnimation: INCLUDE "gfx/pokemon/grimer/anim.asm"
MukAnimation: INCLUDE "gfx/pokemon/muk/anim0.asm" MukAnimation: INCLUDE "gfx/pokemon/muk/anim.asm"
ShellderAnimation: INCLUDE "gfx/pokemon/shellder/anim0.asm" ShellderAnimation: INCLUDE "gfx/pokemon/shellder/anim.asm"
CloysterAnimation: INCLUDE "gfx/pokemon/cloyster/anim0.asm" CloysterAnimation: INCLUDE "gfx/pokemon/cloyster/anim.asm"
GastlyAnimation: INCLUDE "gfx/pokemon/gastly/anim0.asm" GastlyAnimation: INCLUDE "gfx/pokemon/gastly/anim.asm"
HaunterAnimation: INCLUDE "gfx/pokemon/haunter/anim0.asm" HaunterAnimation: INCLUDE "gfx/pokemon/haunter/anim.asm"
GengarAnimation: INCLUDE "gfx/pokemon/gengar/anim0.asm" GengarAnimation: INCLUDE "gfx/pokemon/gengar/anim.asm"
OnixAnimation: INCLUDE "gfx/pokemon/onix/anim0.asm" OnixAnimation: INCLUDE "gfx/pokemon/onix/anim.asm"
DrowzeeAnimation: INCLUDE "gfx/pokemon/drowzee/anim0.asm" DrowzeeAnimation: INCLUDE "gfx/pokemon/drowzee/anim.asm"
HypnoAnimation: INCLUDE "gfx/pokemon/hypno/anim0.asm" HypnoAnimation: INCLUDE "gfx/pokemon/hypno/anim.asm"
KrabbyAnimation: INCLUDE "gfx/pokemon/krabby/anim0.asm" KrabbyAnimation: INCLUDE "gfx/pokemon/krabby/anim.asm"
KinglerAnimation: INCLUDE "gfx/pokemon/kingler/anim0.asm" KinglerAnimation: INCLUDE "gfx/pokemon/kingler/anim.asm"
VoltorbAnimation: INCLUDE "gfx/pokemon/voltorb/anim0.asm" VoltorbAnimation: INCLUDE "gfx/pokemon/voltorb/anim.asm"
ElectrodeAnimation: INCLUDE "gfx/pokemon/electrode/anim0.asm" ElectrodeAnimation: INCLUDE "gfx/pokemon/electrode/anim.asm"
ExeggcuteAnimation: INCLUDE "gfx/pokemon/exeggcute/anim0.asm" ExeggcuteAnimation: INCLUDE "gfx/pokemon/exeggcute/anim.asm"
ExeggutorAnimation: INCLUDE "gfx/pokemon/exeggutor/anim0.asm" ExeggutorAnimation: INCLUDE "gfx/pokemon/exeggutor/anim.asm"
CuboneAnimation: INCLUDE "gfx/pokemon/cubone/anim0.asm" CuboneAnimation: INCLUDE "gfx/pokemon/cubone/anim.asm"
MarowakAnimation: INCLUDE "gfx/pokemon/marowak/anim0.asm" MarowakAnimation: INCLUDE "gfx/pokemon/marowak/anim.asm"
HitmonleeAnimation: INCLUDE "gfx/pokemon/hitmonlee/anim0.asm" HitmonleeAnimation: INCLUDE "gfx/pokemon/hitmonlee/anim.asm"
HitmonchanAnimation: INCLUDE "gfx/pokemon/hitmonchan/anim0.asm" HitmonchanAnimation: INCLUDE "gfx/pokemon/hitmonchan/anim.asm"
LickitungAnimation: INCLUDE "gfx/pokemon/lickitung/anim0.asm" LickitungAnimation: INCLUDE "gfx/pokemon/lickitung/anim.asm"
KoffingAnimation: INCLUDE "gfx/pokemon/koffing/anim0.asm" KoffingAnimation: INCLUDE "gfx/pokemon/koffing/anim.asm"
WeezingAnimation: INCLUDE "gfx/pokemon/weezing/anim0.asm" WeezingAnimation: INCLUDE "gfx/pokemon/weezing/anim.asm"
RhyhornAnimation: INCLUDE "gfx/pokemon/rhyhorn/anim0.asm" RhyhornAnimation: INCLUDE "gfx/pokemon/rhyhorn/anim.asm"
RhydonAnimation: INCLUDE "gfx/pokemon/rhydon/anim0.asm" RhydonAnimation: INCLUDE "gfx/pokemon/rhydon/anim.asm"
ChanseyAnimation: INCLUDE "gfx/pokemon/chansey/anim0.asm" ChanseyAnimation: INCLUDE "gfx/pokemon/chansey/anim.asm"
TangelaAnimation: INCLUDE "gfx/pokemon/tangela/anim0.asm" TangelaAnimation: INCLUDE "gfx/pokemon/tangela/anim.asm"
KangaskhanAnimation: INCLUDE "gfx/pokemon/kangaskhan/anim0.asm" KangaskhanAnimation: INCLUDE "gfx/pokemon/kangaskhan/anim.asm"
HorseaAnimation: INCLUDE "gfx/pokemon/horsea/anim0.asm" HorseaAnimation: INCLUDE "gfx/pokemon/horsea/anim.asm"
SeadraAnimation: INCLUDE "gfx/pokemon/seadra/anim0.asm" SeadraAnimation: INCLUDE "gfx/pokemon/seadra/anim.asm"
GoldeenAnimation: INCLUDE "gfx/pokemon/goldeen/anim0.asm" GoldeenAnimation: INCLUDE "gfx/pokemon/goldeen/anim.asm"
SeakingAnimation: INCLUDE "gfx/pokemon/seaking/anim0.asm" SeakingAnimation: INCLUDE "gfx/pokemon/seaking/anim.asm"
StaryuAnimation: INCLUDE "gfx/pokemon/staryu/anim0.asm" StaryuAnimation: INCLUDE "gfx/pokemon/staryu/anim.asm"
StarmieAnimation: INCLUDE "gfx/pokemon/starmie/anim0.asm" StarmieAnimation: INCLUDE "gfx/pokemon/starmie/anim.asm"
MrMimeAnimation: INCLUDE "gfx/pokemon/mr__mime/anim0.asm" MrMimeAnimation: INCLUDE "gfx/pokemon/mr__mime/anim.asm"
ScytherAnimation: INCLUDE "gfx/pokemon/scyther/anim0.asm" ScytherAnimation: INCLUDE "gfx/pokemon/scyther/anim.asm"
JynxAnimation: INCLUDE "gfx/pokemon/jynx/anim0.asm" JynxAnimation: INCLUDE "gfx/pokemon/jynx/anim.asm"
ElectabuzzAnimation: INCLUDE "gfx/pokemon/electabuzz/anim0.asm" ElectabuzzAnimation: INCLUDE "gfx/pokemon/electabuzz/anim.asm"
MagmarAnimation: INCLUDE "gfx/pokemon/magmar/anim0.asm" MagmarAnimation: INCLUDE "gfx/pokemon/magmar/anim.asm"
PinsirAnimation: INCLUDE "gfx/pokemon/pinsir/anim0.asm" PinsirAnimation: INCLUDE "gfx/pokemon/pinsir/anim.asm"
TaurosAnimation: INCLUDE "gfx/pokemon/tauros/anim0.asm" TaurosAnimation: INCLUDE "gfx/pokemon/tauros/anim.asm"
MagikarpAnimation: INCLUDE "gfx/pokemon/magikarp/anim0.asm" MagikarpAnimation: INCLUDE "gfx/pokemon/magikarp/anim.asm"
GyaradosAnimation: INCLUDE "gfx/pokemon/gyarados/anim0.asm" GyaradosAnimation: INCLUDE "gfx/pokemon/gyarados/anim.asm"
LaprasAnimation: INCLUDE "gfx/pokemon/lapras/anim0.asm" LaprasAnimation: INCLUDE "gfx/pokemon/lapras/anim.asm"
DittoAnimation: INCLUDE "gfx/pokemon/ditto/anim0.asm" DittoAnimation: INCLUDE "gfx/pokemon/ditto/anim.asm"
EeveeAnimation: INCLUDE "gfx/pokemon/eevee/anim0.asm" EeveeAnimation: INCLUDE "gfx/pokemon/eevee/anim.asm"
VaporeonAnimation: INCLUDE "gfx/pokemon/vaporeon/anim0.asm" VaporeonAnimation: INCLUDE "gfx/pokemon/vaporeon/anim.asm"
JolteonAnimation: INCLUDE "gfx/pokemon/jolteon/anim0.asm" JolteonAnimation: INCLUDE "gfx/pokemon/jolteon/anim.asm"
FlareonAnimation: INCLUDE "gfx/pokemon/flareon/anim0.asm" FlareonAnimation: INCLUDE "gfx/pokemon/flareon/anim.asm"
PorygonAnimation: INCLUDE "gfx/pokemon/porygon/anim0.asm" PorygonAnimation: INCLUDE "gfx/pokemon/porygon/anim.asm"
OmanyteAnimation: INCLUDE "gfx/pokemon/omanyte/anim0.asm" OmanyteAnimation: INCLUDE "gfx/pokemon/omanyte/anim.asm"
OmastarAnimation: INCLUDE "gfx/pokemon/omastar/anim0.asm" OmastarAnimation: INCLUDE "gfx/pokemon/omastar/anim.asm"
KabutoAnimation: INCLUDE "gfx/pokemon/kabuto/anim0.asm" KabutoAnimation: INCLUDE "gfx/pokemon/kabuto/anim.asm"
KabutopsAnimation: INCLUDE "gfx/pokemon/kabutops/anim0.asm" KabutopsAnimation: INCLUDE "gfx/pokemon/kabutops/anim.asm"
AerodactylAnimation: INCLUDE "gfx/pokemon/aerodactyl/anim0.asm" AerodactylAnimation: INCLUDE "gfx/pokemon/aerodactyl/anim.asm"
SnorlaxAnimation: INCLUDE "gfx/pokemon/snorlax/anim0.asm" SnorlaxAnimation: INCLUDE "gfx/pokemon/snorlax/anim.asm"
ArticunoAnimation: INCLUDE "gfx/pokemon/articuno/anim0.asm" ArticunoAnimation: INCLUDE "gfx/pokemon/articuno/anim.asm"
ZapdosAnimation: INCLUDE "gfx/pokemon/zapdos/anim0.asm" ZapdosAnimation: INCLUDE "gfx/pokemon/zapdos/anim.asm"
MoltresAnimation: INCLUDE "gfx/pokemon/moltres/anim0.asm" MoltresAnimation: INCLUDE "gfx/pokemon/moltres/anim.asm"
DratiniAnimation: INCLUDE "gfx/pokemon/dratini/anim0.asm" DratiniAnimation: INCLUDE "gfx/pokemon/dratini/anim.asm"
DragonairAnimation: INCLUDE "gfx/pokemon/dragonair/anim0.asm" DragonairAnimation: INCLUDE "gfx/pokemon/dragonair/anim.asm"
DragoniteAnimation: INCLUDE "gfx/pokemon/dragonite/anim0.asm" DragoniteAnimation: INCLUDE "gfx/pokemon/dragonite/anim.asm"
MewtwoAnimation: INCLUDE "gfx/pokemon/mewtwo/anim0.asm" MewtwoAnimation: INCLUDE "gfx/pokemon/mewtwo/anim.asm"
MewAnimation: INCLUDE "gfx/pokemon/mew/anim0.asm" MewAnimation: INCLUDE "gfx/pokemon/mew/anim.asm"
ChikoritaAnimation: INCLUDE "gfx/pokemon/chikorita/anim0.asm" ChikoritaAnimation: INCLUDE "gfx/pokemon/chikorita/anim.asm"
BayleefAnimation: INCLUDE "gfx/pokemon/bayleef/anim0.asm" BayleefAnimation: INCLUDE "gfx/pokemon/bayleef/anim.asm"
MeganiumAnimation: INCLUDE "gfx/pokemon/meganium/anim0.asm" MeganiumAnimation: INCLUDE "gfx/pokemon/meganium/anim.asm"
CyndaquilAnimation: INCLUDE "gfx/pokemon/cyndaquil/anim0.asm" CyndaquilAnimation: INCLUDE "gfx/pokemon/cyndaquil/anim.asm"
QuilavaAnimation: INCLUDE "gfx/pokemon/quilava/anim0.asm" QuilavaAnimation: INCLUDE "gfx/pokemon/quilava/anim.asm"
TyphlosionAnimation: INCLUDE "gfx/pokemon/typhlosion/anim0.asm" TyphlosionAnimation: INCLUDE "gfx/pokemon/typhlosion/anim.asm"
TotodileAnimation: INCLUDE "gfx/pokemon/totodile/anim0.asm" TotodileAnimation: INCLUDE "gfx/pokemon/totodile/anim.asm"
CroconawAnimation: INCLUDE "gfx/pokemon/croconaw/anim0.asm" CroconawAnimation: INCLUDE "gfx/pokemon/croconaw/anim.asm"
FeraligatrAnimation: INCLUDE "gfx/pokemon/feraligatr/anim0.asm" FeraligatrAnimation: INCLUDE "gfx/pokemon/feraligatr/anim.asm"
SentretAnimation: INCLUDE "gfx/pokemon/sentret/anim0.asm" SentretAnimation: INCLUDE "gfx/pokemon/sentret/anim.asm"
FurretAnimation: INCLUDE "gfx/pokemon/furret/anim0.asm" FurretAnimation: INCLUDE "gfx/pokemon/furret/anim.asm"
HoothootAnimation: INCLUDE "gfx/pokemon/hoothoot/anim0.asm" HoothootAnimation: INCLUDE "gfx/pokemon/hoothoot/anim.asm"
NoctowlAnimation: INCLUDE "gfx/pokemon/noctowl/anim0.asm" NoctowlAnimation: INCLUDE "gfx/pokemon/noctowl/anim.asm"
LedybaAnimation: INCLUDE "gfx/pokemon/ledyba/anim0.asm" LedybaAnimation: INCLUDE "gfx/pokemon/ledyba/anim.asm"
LedianAnimation: INCLUDE "gfx/pokemon/ledian/anim0.asm" LedianAnimation: INCLUDE "gfx/pokemon/ledian/anim.asm"
SpinarakAnimation: INCLUDE "gfx/pokemon/spinarak/anim0.asm" SpinarakAnimation: INCLUDE "gfx/pokemon/spinarak/anim.asm"
AriadosAnimation: INCLUDE "gfx/pokemon/ariados/anim0.asm" AriadosAnimation: INCLUDE "gfx/pokemon/ariados/anim.asm"
CrobatAnimation: INCLUDE "gfx/pokemon/crobat/anim0.asm" CrobatAnimation: INCLUDE "gfx/pokemon/crobat/anim.asm"
ChinchouAnimation: INCLUDE "gfx/pokemon/chinchou/anim0.asm" ChinchouAnimation: INCLUDE "gfx/pokemon/chinchou/anim.asm"
LanturnAnimation: INCLUDE "gfx/pokemon/lanturn/anim0.asm" LanturnAnimation: INCLUDE "gfx/pokemon/lanturn/anim.asm"
PichuAnimation: INCLUDE "gfx/pokemon/pichu/anim0.asm" PichuAnimation: INCLUDE "gfx/pokemon/pichu/anim.asm"
CleffaAnimation: INCLUDE "gfx/pokemon/cleffa/anim0.asm" CleffaAnimation: INCLUDE "gfx/pokemon/cleffa/anim.asm"
IgglybuffAnimation: INCLUDE "gfx/pokemon/igglybuff/anim0.asm" IgglybuffAnimation: INCLUDE "gfx/pokemon/igglybuff/anim.asm"
TogepiAnimation: INCLUDE "gfx/pokemon/togepi/anim0.asm" TogepiAnimation: INCLUDE "gfx/pokemon/togepi/anim.asm"
TogeticAnimation: INCLUDE "gfx/pokemon/togetic/anim0.asm" TogeticAnimation: INCLUDE "gfx/pokemon/togetic/anim.asm"
NatuAnimation: INCLUDE "gfx/pokemon/natu/anim0.asm" NatuAnimation: INCLUDE "gfx/pokemon/natu/anim.asm"
XatuAnimation: INCLUDE "gfx/pokemon/xatu/anim0.asm" XatuAnimation: INCLUDE "gfx/pokemon/xatu/anim.asm"
MareepAnimation: INCLUDE "gfx/pokemon/mareep/anim0.asm" MareepAnimation: INCLUDE "gfx/pokemon/mareep/anim.asm"
FlaaffyAnimation: INCLUDE "gfx/pokemon/flaaffy/anim0.asm" FlaaffyAnimation: INCLUDE "gfx/pokemon/flaaffy/anim.asm"
AmpharosAnimation: INCLUDE "gfx/pokemon/ampharos/anim0.asm" AmpharosAnimation: INCLUDE "gfx/pokemon/ampharos/anim.asm"
BellossomAnimation: INCLUDE "gfx/pokemon/bellossom/anim0.asm" BellossomAnimation: INCLUDE "gfx/pokemon/bellossom/anim.asm"
MarillAnimation: INCLUDE "gfx/pokemon/marill/anim0.asm" MarillAnimation: INCLUDE "gfx/pokemon/marill/anim.asm"
AzumarillAnimation: INCLUDE "gfx/pokemon/azumarill/anim0.asm" AzumarillAnimation: INCLUDE "gfx/pokemon/azumarill/anim.asm"
SudowoodoAnimation: INCLUDE "gfx/pokemon/sudowoodo/anim0.asm" SudowoodoAnimation: INCLUDE "gfx/pokemon/sudowoodo/anim.asm"
PolitoedAnimation: INCLUDE "gfx/pokemon/politoed/anim0.asm" PolitoedAnimation: INCLUDE "gfx/pokemon/politoed/anim.asm"
HoppipAnimation: INCLUDE "gfx/pokemon/hoppip/anim0.asm" HoppipAnimation: INCLUDE "gfx/pokemon/hoppip/anim.asm"
SkiploomAnimation: INCLUDE "gfx/pokemon/skiploom/anim0.asm" SkiploomAnimation: INCLUDE "gfx/pokemon/skiploom/anim.asm"
JumpluffAnimation: INCLUDE "gfx/pokemon/jumpluff/anim0.asm" JumpluffAnimation: INCLUDE "gfx/pokemon/jumpluff/anim.asm"
AipomAnimation: INCLUDE "gfx/pokemon/aipom/anim0.asm" AipomAnimation: INCLUDE "gfx/pokemon/aipom/anim.asm"
SunkernAnimation: INCLUDE "gfx/pokemon/sunkern/anim0.asm" SunkernAnimation: INCLUDE "gfx/pokemon/sunkern/anim.asm"
SunfloraAnimation: INCLUDE "gfx/pokemon/sunflora/anim0.asm" SunfloraAnimation: INCLUDE "gfx/pokemon/sunflora/anim.asm"
YanmaAnimation: INCLUDE "gfx/pokemon/yanma/anim0.asm" YanmaAnimation: INCLUDE "gfx/pokemon/yanma/anim.asm"
WooperAnimation: INCLUDE "gfx/pokemon/wooper/anim0.asm" WooperAnimation: INCLUDE "gfx/pokemon/wooper/anim.asm"
QuagsireAnimation: INCLUDE "gfx/pokemon/quagsire/anim0.asm" QuagsireAnimation: INCLUDE "gfx/pokemon/quagsire/anim.asm"
EspeonAnimation: INCLUDE "gfx/pokemon/espeon/anim0.asm" EspeonAnimation: INCLUDE "gfx/pokemon/espeon/anim.asm"
UmbreonAnimation: INCLUDE "gfx/pokemon/umbreon/anim0.asm" UmbreonAnimation: INCLUDE "gfx/pokemon/umbreon/anim.asm"
MurkrowAnimation: INCLUDE "gfx/pokemon/murkrow/anim0.asm" MurkrowAnimation: INCLUDE "gfx/pokemon/murkrow/anim.asm"
SlowkingAnimation: INCLUDE "gfx/pokemon/slowking/anim0.asm" SlowkingAnimation: INCLUDE "gfx/pokemon/slowking/anim.asm"
MisdreavusAnimation: INCLUDE "gfx/pokemon/misdreavus/anim0.asm" MisdreavusAnimation: INCLUDE "gfx/pokemon/misdreavus/anim.asm"
UnownAnimation: INCLUDE "gfx/pokemon/unown/anim0.asm" UnownAnimation: INCLUDE "gfx/pokemon/unown/anim.asm"
WobbuffetAnimation: INCLUDE "gfx/pokemon/wobbuffet/anim0.asm" WobbuffetAnimation: INCLUDE "gfx/pokemon/wobbuffet/anim.asm"
GirafarigAnimation: INCLUDE "gfx/pokemon/girafarig/anim0.asm" GirafarigAnimation: INCLUDE "gfx/pokemon/girafarig/anim.asm"
PinecoAnimation: INCLUDE "gfx/pokemon/pineco/anim0.asm" PinecoAnimation: INCLUDE "gfx/pokemon/pineco/anim.asm"
ForretressAnimation: INCLUDE "gfx/pokemon/forretress/anim0.asm" ForretressAnimation: INCLUDE "gfx/pokemon/forretress/anim.asm"
DunsparceAnimation: INCLUDE "gfx/pokemon/dunsparce/anim0.asm" DunsparceAnimation: INCLUDE "gfx/pokemon/dunsparce/anim.asm"
GligarAnimation: INCLUDE "gfx/pokemon/gligar/anim0.asm" GligarAnimation: INCLUDE "gfx/pokemon/gligar/anim.asm"
SteelixAnimation: INCLUDE "gfx/pokemon/steelix/anim0.asm" SteelixAnimation: INCLUDE "gfx/pokemon/steelix/anim.asm"
SnubbullAnimation: INCLUDE "gfx/pokemon/snubbull/anim0.asm" SnubbullAnimation: INCLUDE "gfx/pokemon/snubbull/anim.asm"
GranbullAnimation: INCLUDE "gfx/pokemon/granbull/anim0.asm" GranbullAnimation: INCLUDE "gfx/pokemon/granbull/anim.asm"
QwilfishAnimation: INCLUDE "gfx/pokemon/qwilfish/anim0.asm" QwilfishAnimation: INCLUDE "gfx/pokemon/qwilfish/anim.asm"
ScizorAnimation: INCLUDE "gfx/pokemon/scizor/anim0.asm" ScizorAnimation: INCLUDE "gfx/pokemon/scizor/anim.asm"
ShuckleAnimation: INCLUDE "gfx/pokemon/shuckle/anim0.asm" ShuckleAnimation: INCLUDE "gfx/pokemon/shuckle/anim.asm"
HeracrossAnimation: INCLUDE "gfx/pokemon/heracross/anim0.asm" HeracrossAnimation: INCLUDE "gfx/pokemon/heracross/anim.asm"
SneaselAnimation: INCLUDE "gfx/pokemon/sneasel/anim0.asm" SneaselAnimation: INCLUDE "gfx/pokemon/sneasel/anim.asm"
TeddiursaAnimation: INCLUDE "gfx/pokemon/teddiursa/anim0.asm" TeddiursaAnimation: INCLUDE "gfx/pokemon/teddiursa/anim.asm"
UrsaringAnimation: INCLUDE "gfx/pokemon/ursaring/anim0.asm" UrsaringAnimation: INCLUDE "gfx/pokemon/ursaring/anim.asm"
SlugmaAnimation: INCLUDE "gfx/pokemon/slugma/anim0.asm" SlugmaAnimation: INCLUDE "gfx/pokemon/slugma/anim.asm"
MagcargoAnimation: INCLUDE "gfx/pokemon/magcargo/anim0.asm" MagcargoAnimation: INCLUDE "gfx/pokemon/magcargo/anim.asm"
SwinubAnimation: INCLUDE "gfx/pokemon/swinub/anim0.asm" SwinubAnimation: INCLUDE "gfx/pokemon/swinub/anim.asm"
PiloswineAnimation: INCLUDE "gfx/pokemon/piloswine/anim0.asm" PiloswineAnimation: INCLUDE "gfx/pokemon/piloswine/anim.asm"
CorsolaAnimation: INCLUDE "gfx/pokemon/corsola/anim0.asm" CorsolaAnimation: INCLUDE "gfx/pokemon/corsola/anim.asm"
RemoraidAnimation: INCLUDE "gfx/pokemon/remoraid/anim0.asm" RemoraidAnimation: INCLUDE "gfx/pokemon/remoraid/anim.asm"
OctilleryAnimation: INCLUDE "gfx/pokemon/octillery/anim0.asm" OctilleryAnimation: INCLUDE "gfx/pokemon/octillery/anim.asm"
DelibirdAnimation: INCLUDE "gfx/pokemon/delibird/anim0.asm" DelibirdAnimation: INCLUDE "gfx/pokemon/delibird/anim.asm"
MantineAnimation: INCLUDE "gfx/pokemon/mantine/anim0.asm" MantineAnimation: INCLUDE "gfx/pokemon/mantine/anim.asm"
SkarmoryAnimation: INCLUDE "gfx/pokemon/skarmory/anim0.asm" SkarmoryAnimation: INCLUDE "gfx/pokemon/skarmory/anim.asm"
HoundourAnimation: INCLUDE "gfx/pokemon/houndour/anim0.asm" HoundourAnimation: INCLUDE "gfx/pokemon/houndour/anim.asm"
HoundoomAnimation: INCLUDE "gfx/pokemon/houndoom/anim0.asm" HoundoomAnimation: INCLUDE "gfx/pokemon/houndoom/anim.asm"
KingdraAnimation: INCLUDE "gfx/pokemon/kingdra/anim0.asm" KingdraAnimation: INCLUDE "gfx/pokemon/kingdra/anim.asm"
PhanpyAnimation: INCLUDE "gfx/pokemon/phanpy/anim0.asm" PhanpyAnimation: INCLUDE "gfx/pokemon/phanpy/anim.asm"
DonphanAnimation: INCLUDE "gfx/pokemon/donphan/anim0.asm" DonphanAnimation: INCLUDE "gfx/pokemon/donphan/anim.asm"
Porygon2Animation: INCLUDE "gfx/pokemon/porygon2/anim0.asm" Porygon2Animation: INCLUDE "gfx/pokemon/porygon2/anim.asm"
StantlerAnimation: INCLUDE "gfx/pokemon/stantler/anim0.asm" StantlerAnimation: INCLUDE "gfx/pokemon/stantler/anim.asm"
SmeargleAnimation: INCLUDE "gfx/pokemon/smeargle/anim0.asm" SmeargleAnimation: INCLUDE "gfx/pokemon/smeargle/anim.asm"
TyrogueAnimation: INCLUDE "gfx/pokemon/tyrogue/anim0.asm" TyrogueAnimation: INCLUDE "gfx/pokemon/tyrogue/anim.asm"
HitmontopAnimation: INCLUDE "gfx/pokemon/hitmontop/anim0.asm" HitmontopAnimation: INCLUDE "gfx/pokemon/hitmontop/anim.asm"
SmoochumAnimation: INCLUDE "gfx/pokemon/smoochum/anim0.asm" SmoochumAnimation: INCLUDE "gfx/pokemon/smoochum/anim.asm"
ElekidAnimation: INCLUDE "gfx/pokemon/elekid/anim0.asm" ElekidAnimation: INCLUDE "gfx/pokemon/elekid/anim.asm"
MagbyAnimation: INCLUDE "gfx/pokemon/magby/anim0.asm" MagbyAnimation: INCLUDE "gfx/pokemon/magby/anim.asm"
MiltankAnimation: INCLUDE "gfx/pokemon/miltank/anim0.asm" MiltankAnimation: INCLUDE "gfx/pokemon/miltank/anim.asm"
BlisseyAnimation: INCLUDE "gfx/pokemon/blissey/anim0.asm" BlisseyAnimation: INCLUDE "gfx/pokemon/blissey/anim.asm"
RaikouAnimation: INCLUDE "gfx/pokemon/raikou/anim0.asm" RaikouAnimation: INCLUDE "gfx/pokemon/raikou/anim.asm"
EnteiAnimation: INCLUDE "gfx/pokemon/entei/anim0.asm" EnteiAnimation: INCLUDE "gfx/pokemon/entei/anim.asm"
SuicuneAnimation: INCLUDE "gfx/pokemon/suicune/anim0.asm" SuicuneAnimation: INCLUDE "gfx/pokemon/suicune/anim.asm"
LarvitarAnimation: INCLUDE "gfx/pokemon/larvitar/anim0.asm" LarvitarAnimation: INCLUDE "gfx/pokemon/larvitar/anim.asm"
PupitarAnimation: INCLUDE "gfx/pokemon/pupitar/anim0.asm" PupitarAnimation: INCLUDE "gfx/pokemon/pupitar/anim.asm"
TyranitarAnimation: INCLUDE "gfx/pokemon/tyranitar/anim0.asm" TyranitarAnimation: INCLUDE "gfx/pokemon/tyranitar/anim.asm"
LugiaAnimation: INCLUDE "gfx/pokemon/lugia/anim0.asm" LugiaAnimation: INCLUDE "gfx/pokemon/lugia/anim.asm"
HoOhAnimation: INCLUDE "gfx/pokemon/ho_oh/anim0.asm" HoOhAnimation: INCLUDE "gfx/pokemon/ho_oh/anim.asm"
CelebiAnimation: INCLUDE "gfx/pokemon/celebi/anim0.asm" CelebiAnimation: INCLUDE "gfx/pokemon/celebi/anim.asm"
EggAnimation: INCLUDE "gfx/pokemon/egg/anim0.asm" EggAnimation: INCLUDE "gfx/pokemon/egg/anim.asm"

Some files were not shown because too many files have changed in this diff Show More