mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-16 18:20:50 +12:00
The Great Trainer Overhaul (Part 1)
It begins. Up to Jasmine.
This commit is contained in:
commit
4c2194ab5c
|
@ -292,7 +292,7 @@ DEF JOHTO_POKEMON EQU const_value
|
||||||
const SUNFLORA ; c0
|
const SUNFLORA ; c0
|
||||||
const HIPPUNK
|
const HIPPUNK
|
||||||
const AERCROW
|
const AERCROW
|
||||||
const FOXFIRE
|
const ZORRIEGO
|
||||||
const YANMA ; c1
|
const YANMA ; c1
|
||||||
const YANMEGA
|
const YANMEGA
|
||||||
const ONIYANMA
|
const ONIYANMA
|
||||||
|
|
|
@ -299,7 +299,7 @@ INCLUDE "data/pokemon/base_stats/sunbud.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/sunflora.asm"
|
INCLUDE "data/pokemon/base_stats/sunflora.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/hippunk.asm"
|
INCLUDE "data/pokemon/base_stats/hippunk.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/aercrow.asm"
|
INCLUDE "data/pokemon/base_stats/aercrow.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/foxfire.asm"
|
INCLUDE "data/pokemon/base_stats/zorriego.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/yanma.asm"
|
INCLUDE "data/pokemon/base_stats/yanma.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/yanmega.asm"
|
INCLUDE "data/pokemon/base_stats/yanmega.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/oniyanma.asm"
|
INCLUDE "data/pokemon/base_stats/oniyanma.asm"
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
db 100 ; unknown 1
|
db 100 ; unknown 1
|
||||||
db 20 ; step cycles to hatch
|
db 20 ; step cycles to hatch
|
||||||
db 5 ; unknown 2
|
db 5 ; unknown 2
|
||||||
INCBIN "gfx/pokemon/foxfire/front.dimensions"
|
INCBIN "gfx/pokemon/zorriego/front.dimensions"
|
||||||
dw NULL, NULL ; unused (beta front/back pics)
|
dw NULL, NULL ; unused (beta front/back pics)
|
||||||
db GROWTH_MEDIUM_FAST ; growth rate
|
db GROWTH_MEDIUM_FAST ; growth rate
|
||||||
dn EGG_GROUND, EGG_GROUND ; egg groups
|
dn EGG_GROUND, EGG_GROUND ; egg groups
|
|
@ -278,7 +278,7 @@ PokemonCries::
|
||||||
mon_cry CRY_SUNFLORA, -32, 384 ; SUNFLORA
|
mon_cry CRY_SUNFLORA, -32, 384 ; SUNFLORA
|
||||||
mon_cry CRY_NIDORAN_M, 0, 0 ; HIPPUNK (incomplete)
|
mon_cry CRY_NIDORAN_M, 0, 0 ; HIPPUNK (incomplete)
|
||||||
mon_cry CRY_NIDORAN_M, 0, 0 ; AERCROW (incomplete)
|
mon_cry CRY_NIDORAN_M, 0, 0 ; AERCROW (incomplete)
|
||||||
mon_cry CRY_NIDORAN_M, 0, 0 ; FOXFIRE (incomplete)
|
mon_cry CRY_NIDORAN_M, 0, 0 ; ZORRIEGO (incomplete)
|
||||||
mon_cry CRY_TOTODILE, 49, 200 ; YANMA
|
mon_cry CRY_TOTODILE, 49, 200 ; YANMA
|
||||||
mon_cry CRY_NIDORAN_M, 0, 0 ; YANMEGA (incomplete)
|
mon_cry CRY_NIDORAN_M, 0, 0 ; YANMEGA (incomplete)
|
||||||
mon_cry CRY_NIDORAN_M, 0, 0 ; ONIYANMA (incomplete)
|
mon_cry CRY_NIDORAN_M, 0, 0 ; ONIYANMA (incomplete)
|
||||||
|
|
|
@ -268,7 +268,7 @@ SunbudPokedexEntry:: INCLUDE "data/pokemon/dex_entries/sunbud.asm"
|
||||||
SunfloraPokedexEntry:: INCLUDE "data/pokemon/dex_entries/sunflora.asm"
|
SunfloraPokedexEntry:: INCLUDE "data/pokemon/dex_entries/sunflora.asm"
|
||||||
HippunkPokedexEntry:: INCLUDE "data/pokemon/dex_entries/hippunk.asm"
|
HippunkPokedexEntry:: INCLUDE "data/pokemon/dex_entries/hippunk.asm"
|
||||||
AercrowPokedexEntry:: INCLUDE "data/pokemon/dex_entries/aercrow.asm"
|
AercrowPokedexEntry:: INCLUDE "data/pokemon/dex_entries/aercrow.asm"
|
||||||
FoxfirePokedexEntry:: INCLUDE "data/pokemon/dex_entries/foxfire.asm"
|
ZorriegoPokedexEntry:: INCLUDE "data/pokemon/dex_entries/zorriego.asm"
|
||||||
|
|
||||||
|
|
||||||
SECTION "Pokedex Entries 193-251", ROMX
|
SECTION "Pokedex Entries 193-251", ROMX
|
||||||
|
|
|
@ -273,7 +273,7 @@ PokedexDataPointerTable:
|
||||||
dba SunfloraPokedexEntry
|
dba SunfloraPokedexEntry
|
||||||
dba HippunkPokedexEntry
|
dba HippunkPokedexEntry
|
||||||
dba AercrowPokedexEntry
|
dba AercrowPokedexEntry
|
||||||
dba FoxfirePokedexEntry
|
dba ZorriegoPokedexEntry
|
||||||
dba YanmaPokedexEntry
|
dba YanmaPokedexEntry
|
||||||
dba YanmegaPokedexEntry
|
dba YanmegaPokedexEntry
|
||||||
dba OniyanmaPokedexEntry
|
dba OniyanmaPokedexEntry
|
||||||
|
|
|
@ -107,7 +107,6 @@ AlphabeticalPokedexOrder:
|
||||||
dw FLUTTER_MANE
|
dw FLUTTER_MANE
|
||||||
dw FOLAGE
|
dw FOLAGE
|
||||||
dw FORRETRESS
|
dw FORRETRESS
|
||||||
dw FOXFIRE
|
|
||||||
dw FURRET
|
dw FURRET
|
||||||
dw GASTLY
|
dw GASTLY
|
||||||
dw GAOTORA
|
dw GAOTORA
|
||||||
|
@ -399,5 +398,6 @@ AlphabeticalPokedexOrder:
|
||||||
dw YANMA
|
dw YANMA
|
||||||
dw YANMEGA
|
dw YANMEGA
|
||||||
dw ZAPDOS
|
dw ZAPDOS
|
||||||
|
dw ZORRIEGO
|
||||||
dw ZUBAT
|
dw ZUBAT
|
||||||
assert_table_length NUM_POKEMON
|
assert_table_length NUM_POKEMON
|
||||||
|
|
|
@ -225,7 +225,7 @@ NewPokedexOrder:
|
||||||
dw QATU
|
dw QATU
|
||||||
dw XATU
|
dw XATU
|
||||||
dw AERCROW
|
dw AERCROW
|
||||||
dw FOXFIRE
|
dw ZORRIEGO
|
||||||
dw QWILFISH
|
dw QWILFISH
|
||||||
dw KAZAPPELIN
|
dw KAZAPPELIN
|
||||||
dw QWILFATHER
|
dw QWILFATHER
|
||||||
|
|
|
@ -61,7 +61,7 @@ EggMovePointers2::
|
||||||
dw NoEggMoves2
|
dw NoEggMoves2
|
||||||
dw HippunkEggMoves
|
dw HippunkEggMoves
|
||||||
dw AercrowEggMoves
|
dw AercrowEggMoves
|
||||||
dw FoxfireEggMoves
|
dw ZorriegoEggMoves
|
||||||
dw YanmaEggMoves
|
dw YanmaEggMoves
|
||||||
dw NoEggMoves2 ; Yanmega
|
dw NoEggMoves2 ; Yanmega
|
||||||
dw NoEggMoves2 ; Oniyanma
|
dw NoEggMoves2 ; Oniyanma
|
||||||
|
@ -388,7 +388,7 @@ AercrowEggMoves:
|
||||||
dw WHIRLWIND
|
dw WHIRLWIND
|
||||||
dw -1 ; end
|
dw -1 ; end
|
||||||
|
|
||||||
FoxfireEggMoves:
|
ZorriegoEggMoves:
|
||||||
dw CONFUSE_RAY
|
dw CONFUSE_RAY
|
||||||
dw DISABLE
|
dw DISABLE
|
||||||
dw FAINT_ATTACK
|
dw FAINT_ATTACK
|
||||||
|
|
|
@ -271,7 +271,7 @@ EvolutionMoves::
|
||||||
dw NO_MOVE ;SUNFLORA ; c0
|
dw NO_MOVE ;SUNFLORA ; c0
|
||||||
dw NO_MOVE ;HIPPUNK
|
dw NO_MOVE ;HIPPUNK
|
||||||
dw NO_MOVE ;AERCROW
|
dw NO_MOVE ;AERCROW
|
||||||
dw NO_MOVE ;FOXFIRE
|
dw NO_MOVE ;ZORRIEGO
|
||||||
dw NO_MOVE ;YANMA ; c1
|
dw NO_MOVE ;YANMA ; c1
|
||||||
dw NO_MOVE ;YANMEGA
|
dw NO_MOVE ;YANMEGA
|
||||||
dw NO_MOVE ;ONIYANMA
|
dw NO_MOVE ;ONIYANMA
|
||||||
|
|
|
@ -61,7 +61,7 @@ EvosAttacksPointers2::
|
||||||
dw SunfloraEvosAttacks
|
dw SunfloraEvosAttacks
|
||||||
dw HippunkEvosAttacks
|
dw HippunkEvosAttacks
|
||||||
dw AercrowEvosAttacks
|
dw AercrowEvosAttacks
|
||||||
dw FoxfireEvosAttacks
|
dw ZorriegoEvosAttacks
|
||||||
dw YanmaEvosAttacks
|
dw YanmaEvosAttacks
|
||||||
dw YanmegaEvosAttacks
|
dw YanmegaEvosAttacks
|
||||||
dw OniyanmaEvosAttacks
|
dw OniyanmaEvosAttacks
|
||||||
|
@ -1165,7 +1165,7 @@ AercrowEvosAttacks:
|
||||||
dbw 50, RAZOR_WIND
|
dbw 50, RAZOR_WIND
|
||||||
db 0 ; no more level-up moves
|
db 0 ; no more level-up moves
|
||||||
|
|
||||||
FoxfireEvosAttacks:
|
ZorriegoEvosAttacks:
|
||||||
db 0; no more evolutions
|
db 0; no more evolutions
|
||||||
dbw 1, EMBER
|
dbw 1, EMBER
|
||||||
dbw 1, LEER
|
dbw 1, LEER
|
||||||
|
|
|
@ -273,7 +273,7 @@ FirstEvoStages::
|
||||||
dw SUNKERN ;c0
|
dw SUNKERN ;c0
|
||||||
dw HIPPUNK
|
dw HIPPUNK
|
||||||
dw AERCROW
|
dw AERCROW
|
||||||
dw FOXFIRE
|
dw ZORRIEGO
|
||||||
dw YANMA
|
dw YANMA
|
||||||
dw YANMA
|
dw YANMA
|
||||||
dw YANMA
|
dw YANMA
|
||||||
|
|
|
@ -274,7 +274,7 @@ MonMenuIcons:
|
||||||
db ICON_ODDISH ; SUNFLORA
|
db ICON_ODDISH ; SUNFLORA
|
||||||
db ICON_SLOWPOKE ; HIPPUNK
|
db ICON_SLOWPOKE ; HIPPUNK
|
||||||
db ICON_BIRD ; AERCROW
|
db ICON_BIRD ; AERCROW
|
||||||
db ICON_FOX ; FOXFIRE
|
db ICON_FOX ; ZORRIEGO
|
||||||
db ICON_BUG ; YANMA
|
db ICON_BUG ; YANMA
|
||||||
db ICON_BUG ; YANMEGA
|
db ICON_BUG ; YANMEGA
|
||||||
db ICON_BUG ; ONIYANMA
|
db ICON_BUG ; ONIYANMA
|
||||||
|
|
|
@ -276,7 +276,7 @@ PokemonNames::
|
||||||
db "SUNFLORA@@"
|
db "SUNFLORA@@"
|
||||||
db "TORPIR@@@@"
|
db "TORPIR@@@@"
|
||||||
db "AERCROW@@@"
|
db "AERCROW@@@"
|
||||||
db "FOXFIRE@@@"
|
db "ZORRIEGO@@"
|
||||||
db "YANMA@@@@@"
|
db "YANMA@@@@@"
|
||||||
db "YANMEGA@@@"
|
db "YANMEGA@@@"
|
||||||
db "ONIYANMA@@"
|
db "ONIYANMA@@"
|
||||||
|
|
|
@ -577,8 +577,8 @@ INCBIN "gfx/pokemon/hippunk/front.gbcpal", middle_colors
|
||||||
INCLUDE "gfx/pokemon/hippunk/shiny.pal"
|
INCLUDE "gfx/pokemon/hippunk/shiny.pal"
|
||||||
INCBIN "gfx/pokemon/aercrow/front.gbcpal", middle_colors
|
INCBIN "gfx/pokemon/aercrow/front.gbcpal", middle_colors
|
||||||
INCLUDE "gfx/pokemon/aercrow/shiny.pal"
|
INCLUDE "gfx/pokemon/aercrow/shiny.pal"
|
||||||
INCBIN "gfx/pokemon/foxfire/front.gbcpal", middle_colors
|
INCBIN "gfx/pokemon/zorriego/front.gbcpal", middle_colors
|
||||||
INCLUDE "gfx/pokemon/foxfire/shiny.pal"
|
INCLUDE "gfx/pokemon/zorriego/shiny.pal"
|
||||||
INCBIN "gfx/pokemon/yanma/front.gbcpal", middle_colors
|
INCBIN "gfx/pokemon/yanma/front.gbcpal", middle_colors
|
||||||
INCLUDE "gfx/pokemon/yanma/shiny.pal"
|
INCLUDE "gfx/pokemon/yanma/shiny.pal"
|
||||||
INCBIN "gfx/pokemon/yanmega/front.gbcpal", middle_colors
|
INCBIN "gfx/pokemon/yanmega/front.gbcpal", middle_colors
|
||||||
|
|
|
@ -557,8 +557,8 @@ PokemonPicPointers::
|
||||||
dba HippunkBackpic
|
dba HippunkBackpic
|
||||||
dba AercrowFrontpic
|
dba AercrowFrontpic
|
||||||
dba AercrowBackpic
|
dba AercrowBackpic
|
||||||
dba FoxfireFrontpic
|
dba ZorriegoFrontpic
|
||||||
dba FoxfireBackpic
|
dba ZorriegoBackpic
|
||||||
dba YanmaFrontpic
|
dba YanmaFrontpic
|
||||||
dba YanmaBackpic
|
dba YanmaBackpic
|
||||||
dba YanmegaFrontpic
|
dba YanmegaFrontpic
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -199,6 +199,8 @@ KabufossilGroup:
|
||||||
LassGroup:
|
LassGroup:
|
||||||
next_list_item ; LASS (1)
|
next_list_item ; LASS (1)
|
||||||
db "CARRIE@", TRAINERTYPE_NORMAL
|
db "CARRIE@", TRAINERTYPE_NORMAL
|
||||||
|
db 16
|
||||||
|
dw CLEFFA
|
||||||
db 18
|
db 18
|
||||||
dw SNUBBULL
|
dw SNUBBULL
|
||||||
db -1 ; end
|
db -1 ; end
|
||||||
|
@ -206,11 +208,11 @@ LassGroup:
|
||||||
next_list_item ; LASS (2)
|
next_list_item ; LASS (2)
|
||||||
db "BRIDGET@", TRAINERTYPE_NORMAL
|
db "BRIDGET@", TRAINERTYPE_NORMAL
|
||||||
db 15
|
db 15
|
||||||
dw JIGGLYPUFF
|
dw AZURILL
|
||||||
db 15
|
db 15
|
||||||
dw JIGGLYPUFF
|
dw HAPPINY
|
||||||
db 15
|
db 17
|
||||||
dw JIGGLYPUFF
|
dw WIGGLYTUFF
|
||||||
db -1 ; end
|
db -1 ; end
|
||||||
|
|
||||||
next_list_item ; LASS (3)
|
next_list_item ; LASS (3)
|
||||||
|
@ -225,10 +227,10 @@ LassGroup:
|
||||||
|
|
||||||
next_list_item ; LASS (4)
|
next_list_item ; LASS (4)
|
||||||
db "KRISE@", TRAINERTYPE_NORMAL
|
db "KRISE@", TRAINERTYPE_NORMAL
|
||||||
db 12
|
|
||||||
dw ODDISH
|
|
||||||
db 15
|
db 15
|
||||||
dw CUBONE
|
dw SUNBUD
|
||||||
|
db 15
|
||||||
|
dw PHANPY
|
||||||
db -1 ; end
|
db -1 ; end
|
||||||
|
|
||||||
next_list_item ; LASS (5)
|
next_list_item ; LASS (5)
|
||||||
|
@ -279,12 +281,16 @@ LassGroup:
|
||||||
|
|
||||||
next_list_item ; LASS (10)
|
next_list_item ; LASS (10)
|
||||||
db "DANA@", TRAINERTYPE_MOVES
|
db "DANA@", TRAINERTYPE_MOVES
|
||||||
db 18
|
db 25
|
||||||
dw FLAAFFY
|
dw FLAAFFY
|
||||||
dw TACKLE, GROWL, THUNDERSHOCK, THUNDER_WAVE
|
dw TACKLE, GROWL, THUNDERSHOCK, THUNDER_WAVE
|
||||||
db 18
|
db 24
|
||||||
dw PSYDUCK
|
dw WEIRDUCK
|
||||||
dw SCRATCH, TAIL_WHIP, DISABLE, CONFUSION
|
dw SCRATCH, TAIL_WHIP, DISABLE, CONFUSION
|
||||||
|
db 25
|
||||||
|
dw RAITORA
|
||||||
|
dw QUICK_ATTACK, LEER, THUNDERSHOCK, ROAR
|
||||||
|
|
||||||
db -1 ; end
|
db -1 ; end
|
||||||
|
|
||||||
next_list_item ; LASS (11)
|
next_list_item ; LASS (11)
|
||||||
|
@ -297,8 +303,12 @@ LassGroup:
|
||||||
|
|
||||||
next_list_item ; LASS (12)
|
next_list_item ; LASS (12)
|
||||||
db "CONNIE@", TRAINERTYPE_NORMAL
|
db "CONNIE@", TRAINERTYPE_NORMAL
|
||||||
db 21
|
db 25
|
||||||
dw MARILL
|
dw MAGNETITE
|
||||||
|
db 25
|
||||||
|
dw ANGORE
|
||||||
|
db 26
|
||||||
|
dw FORRETRESS
|
||||||
db -1 ; end
|
db -1 ; end
|
||||||
|
|
||||||
next_list_item ; LASS (13) - originally Connie 3
|
next_list_item ; LASS (13) - originally Connie 3
|
||||||
|
@ -789,8 +799,8 @@ TwinsGroup:
|
||||||
next_list_item ; TWINS (2)
|
next_list_item ; TWINS (2)
|
||||||
db "ANN & ANNE@", TRAINERTYPE_MOVES
|
db "ANN & ANNE@", TRAINERTYPE_MOVES
|
||||||
db 16
|
db 16
|
||||||
dw CLEFAIRY
|
dw TOGEPI
|
||||||
dw GROWL, ENCORE, DOUBLESLAP, METRONOME
|
dw CHARM, POISON_STING, METRONOME, SWEET_KISS
|
||||||
db 16
|
db 16
|
||||||
dw JIGGLYPUFF
|
dw JIGGLYPUFF
|
||||||
dw SING, DEFENSE_CURL, POUND, DISABLE
|
dw SING, DEFENSE_CURL, POUND, DISABLE
|
||||||
|
|
|
@ -228,9 +228,9 @@ JohtoWaterWildMons:
|
||||||
|
|
||||||
def_water_wildmons CIANWOOD_CITY
|
def_water_wildmons CIANWOOD_CITY
|
||||||
db 6 percent ; encounter rate
|
db 6 percent ; encounter rate
|
||||||
dbw 30, TENTACOOL
|
dbw 25, TENTACOOL
|
||||||
dbw 35, CHINCHOU
|
dbw 20, CHINCHOU
|
||||||
dbw 30, TENTACRUEL
|
dbw 25, TENTACRUEL
|
||||||
end_water_wildmons
|
end_water_wildmons
|
||||||
|
|
||||||
def_water_wildmons OLIVINE_CITY
|
def_water_wildmons OLIVINE_CITY
|
||||||
|
|
|
@ -220,7 +220,7 @@ NihonGrassWildMons:
|
||||||
dbw 35, WARUCHU
|
dbw 35, WARUCHU
|
||||||
; nite
|
; nite
|
||||||
dbw 30, MURKROW
|
dbw 30, MURKROW
|
||||||
dbw 31, FOXFIRE
|
dbw 31, ZORRIEGO
|
||||||
dbw 30, MURKROW
|
dbw 30, MURKROW
|
||||||
dbw 31, SNEASEL
|
dbw 31, SNEASEL
|
||||||
dbw 32, ARBOK
|
dbw 32, ARBOK
|
||||||
|
@ -250,7 +250,7 @@ NihonGrassWildMons:
|
||||||
dbw 35, WARUCHU
|
dbw 35, WARUCHU
|
||||||
; nite
|
; nite
|
||||||
dbw 30, MURKROW
|
dbw 30, MURKROW
|
||||||
dbw 31, FOXFIRE
|
dbw 31, ZORRIEGO
|
||||||
dbw 30, MURKROW
|
dbw 30, MURKROW
|
||||||
dbw 31, SNEASEL
|
dbw 31, SNEASEL
|
||||||
dbw 32, ARBOK
|
dbw 32, ARBOK
|
||||||
|
|
Before Width: | Height: | Size: 69 B After Width: | Height: | Size: 69 B |
|
@ -61,7 +61,7 @@ INCBIN "gfx/footprints/sunbud.1bpp"
|
||||||
INCBIN "gfx/footprints/sunflora.1bpp"
|
INCBIN "gfx/footprints/sunflora.1bpp"
|
||||||
INCBIN "gfx/footprints/hippunk.1bpp"
|
INCBIN "gfx/footprints/hippunk.1bpp"
|
||||||
INCBIN "gfx/footprints/aercrow.1bpp"
|
INCBIN "gfx/footprints/aercrow.1bpp"
|
||||||
INCBIN "gfx/footprints/foxfire.1bpp"
|
INCBIN "gfx/footprints/zorriego.1bpp"
|
||||||
INCBIN "gfx/footprints/yanma.1bpp"
|
INCBIN "gfx/footprints/yanma.1bpp"
|
||||||
INCBIN "gfx/footprints/yanmega.1bpp"
|
INCBIN "gfx/footprints/yanmega.1bpp"
|
||||||
INCBIN "gfx/footprints/oniyanma.1bpp"
|
INCBIN "gfx/footprints/oniyanma.1bpp"
|
||||||
|
|
|
@ -850,8 +850,8 @@ SunbudFrontpic: INCBIN "gfx/pokemon/sunbud/front.animated.2bpp.lz"
|
||||||
SunbudBackpic: INCBIN "gfx/pokemon/sunbud/back.2bpp.lz"
|
SunbudBackpic: INCBIN "gfx/pokemon/sunbud/back.2bpp.lz"
|
||||||
HippunkFrontpic: INCBIN "gfx/pokemon/hippunk/front.animated.2bpp.lz"
|
HippunkFrontpic: INCBIN "gfx/pokemon/hippunk/front.animated.2bpp.lz"
|
||||||
HippunkBackpic: INCBIN "gfx/pokemon/hippunk/back.2bpp.lz"
|
HippunkBackpic: INCBIN "gfx/pokemon/hippunk/back.2bpp.lz"
|
||||||
FoxfireFrontpic: INCBIN "gfx/pokemon/foxfire/front.animated.2bpp.lz"
|
ZorriegoFrontpic: INCBIN "gfx/pokemon/zorriego/front.animated.2bpp.lz"
|
||||||
FoxfireBackpic: INCBIN "gfx/pokemon/foxfire/back.2bpp.lz"
|
ZorriegoBackpic: INCBIN "gfx/pokemon/zorriego/back.2bpp.lz"
|
||||||
YanmegaFrontpic: INCBIN "gfx/pokemon/yanmega/front.animated.2bpp.lz"
|
YanmegaFrontpic: INCBIN "gfx/pokemon/yanmega/front.animated.2bpp.lz"
|
||||||
YanmegaBackpic: INCBIN "gfx/pokemon/yanmega/back.2bpp.lz"
|
YanmegaBackpic: INCBIN "gfx/pokemon/yanmega/back.2bpp.lz"
|
||||||
OniyanmaFrontpic: INCBIN "gfx/pokemon/oniyanma/front.animated.2bpp.lz"
|
OniyanmaFrontpic: INCBIN "gfx/pokemon/oniyanma/front.animated.2bpp.lz"
|
||||||
|
|
|
@ -272,7 +272,7 @@ AnimationPointers:
|
||||||
dw SunfloraAnimation
|
dw SunfloraAnimation
|
||||||
dw HippunkAnimation
|
dw HippunkAnimation
|
||||||
dw AercrowAnimation
|
dw AercrowAnimation
|
||||||
dw FoxfireAnimation
|
dw ZorriegoAnimation
|
||||||
dw YanmaAnimation
|
dw YanmaAnimation
|
||||||
dw YanmegaAnimation
|
dw YanmegaAnimation
|
||||||
dw OniyanmaAnimation
|
dw OniyanmaAnimation
|
||||||
|
|
|
@ -270,7 +270,7 @@ SunbudAnimation: INCLUDE "gfx/pokemon/sunbud/anim.asm"
|
||||||
SunfloraAnimation: INCLUDE "gfx/pokemon/sunflora/anim.asm"
|
SunfloraAnimation: INCLUDE "gfx/pokemon/sunflora/anim.asm"
|
||||||
HippunkAnimation: INCLUDE "gfx/pokemon/hippunk/anim.asm"
|
HippunkAnimation: INCLUDE "gfx/pokemon/hippunk/anim.asm"
|
||||||
AercrowAnimation: INCLUDE "gfx/pokemon/aercrow/anim.asm"
|
AercrowAnimation: INCLUDE "gfx/pokemon/aercrow/anim.asm"
|
||||||
FoxfireAnimation: INCLUDE "gfx/pokemon/magneton/anim.asm"
|
ZorriegoAnimation: INCLUDE "gfx/pokemon/zorriego/anim.asm"
|
||||||
YanmaAnimation: INCLUDE "gfx/pokemon/yanma/anim.asm"
|
YanmaAnimation: INCLUDE "gfx/pokemon/yanma/anim.asm"
|
||||||
YanmegaAnimation: INCLUDE "gfx/pokemon/yanmega/anim.asm"
|
YanmegaAnimation: INCLUDE "gfx/pokemon/yanmega/anim.asm"
|
||||||
OniyanmaAnimation: INCLUDE "gfx/pokemon/oniyanma/anim.asm"
|
OniyanmaAnimation: INCLUDE "gfx/pokemon/oniyanma/anim.asm"
|
||||||
|
|
|
@ -272,7 +272,7 @@ BitmasksPointers:
|
||||||
dw SunfloraBitmasks
|
dw SunfloraBitmasks
|
||||||
dw HippunkBitmasks
|
dw HippunkBitmasks
|
||||||
dw AercrowBitmasks
|
dw AercrowBitmasks
|
||||||
dw FoxfireBitmasks
|
dw ZorriegoBitmasks
|
||||||
dw YanmaBitmasks
|
dw YanmaBitmasks
|
||||||
dw YanmegaBitmasks
|
dw YanmegaBitmasks
|
||||||
dw OniyanmaBitmasks
|
dw OniyanmaBitmasks
|
||||||
|
|
|
@ -270,7 +270,7 @@ SunbudBitmasks: INCLUDE "gfx/pokemon/sunbud/bitmask.asm"
|
||||||
SunfloraBitmasks: INCLUDE "gfx/pokemon/sunflora/bitmask.asm"
|
SunfloraBitmasks: INCLUDE "gfx/pokemon/sunflora/bitmask.asm"
|
||||||
HippunkBitmasks: INCLUDE "gfx/pokemon/hippunk/bitmask.asm"
|
HippunkBitmasks: INCLUDE "gfx/pokemon/hippunk/bitmask.asm"
|
||||||
AercrowBitmasks: INCLUDE "gfx/pokemon/aercrow/bitmask.asm"
|
AercrowBitmasks: INCLUDE "gfx/pokemon/aercrow/bitmask.asm"
|
||||||
FoxfireBitmasks: INCLUDE "gfx/pokemon/foxfire/bitmask.asm"
|
ZorriegoBitmasks: INCLUDE "gfx/pokemon/zorriego/bitmask.asm"
|
||||||
YanmaBitmasks: INCLUDE "gfx/pokemon/yanma/bitmask.asm"
|
YanmaBitmasks: INCLUDE "gfx/pokemon/yanma/bitmask.asm"
|
||||||
YanmegaBitmasks: INCLUDE "gfx/pokemon/yanmega/bitmask.asm"
|
YanmegaBitmasks: INCLUDE "gfx/pokemon/yanmega/bitmask.asm"
|
||||||
OniyanmaBitmasks: INCLUDE "gfx/pokemon/oniyanma/bitmask.asm"
|
OniyanmaBitmasks: INCLUDE "gfx/pokemon/oniyanma/bitmask.asm"
|
||||||
|
|
|
@ -272,7 +272,7 @@ FramesPointers:
|
||||||
dba SunfloraFrames
|
dba SunfloraFrames
|
||||||
dba HippunkFrames
|
dba HippunkFrames
|
||||||
dba AercrowFrames
|
dba AercrowFrames
|
||||||
dba FoxfireFrames
|
dba ZorriegoFrames
|
||||||
dba YanmaFrames
|
dba YanmaFrames
|
||||||
dba YanmegaFrames
|
dba YanmegaFrames
|
||||||
dba OniyanmaFrames
|
dba OniyanmaFrames
|
||||||
|
|
|
@ -272,7 +272,7 @@ AnimationIdlePointers:
|
||||||
dw SunfloraAnimationIdle
|
dw SunfloraAnimationIdle
|
||||||
dw HippunkAnimationIdle
|
dw HippunkAnimationIdle
|
||||||
dw AercrowAnimationIdle
|
dw AercrowAnimationIdle
|
||||||
dw FoxfireAnimationIdle
|
dw ZorriegoAnimationIdle
|
||||||
dw YanmaAnimationIdle
|
dw YanmaAnimationIdle
|
||||||
dw YanmegaAnimationIdle
|
dw YanmegaAnimationIdle
|
||||||
dw OniyanmaAnimationIdle
|
dw OniyanmaAnimationIdle
|
||||||
|
|
|
@ -270,7 +270,7 @@ SunbudAnimationIdle: INCLUDE "gfx/pokemon/sunbud/anim_idle.asm"
|
||||||
SunfloraAnimationIdle: INCLUDE "gfx/pokemon/sunflora/anim_idle.asm"
|
SunfloraAnimationIdle: INCLUDE "gfx/pokemon/sunflora/anim_idle.asm"
|
||||||
HippunkAnimationIdle: INCLUDE "gfx/pokemon/hippunk/anim_idle.asm"
|
HippunkAnimationIdle: INCLUDE "gfx/pokemon/hippunk/anim_idle.asm"
|
||||||
AercrowAnimationIdle: INCLUDE "gfx/pokemon/aercrow/anim_idle.asm"
|
AercrowAnimationIdle: INCLUDE "gfx/pokemon/aercrow/anim_idle.asm"
|
||||||
FoxfireAnimationIdle: INCLUDE "gfx/pokemon/foxfire/anim_idle.asm"
|
ZorriegoAnimationIdle: INCLUDE "gfx/pokemon/zorriego/anim_idle.asm"
|
||||||
YanmaAnimationIdle: INCLUDE "gfx/pokemon/yanma/anim_idle.asm"
|
YanmaAnimationIdle: INCLUDE "gfx/pokemon/yanma/anim_idle.asm"
|
||||||
YanmegaAnimationIdle: INCLUDE "gfx/pokemon/yanmega/anim_idle.asm"
|
YanmegaAnimationIdle: INCLUDE "gfx/pokemon/yanmega/anim_idle.asm"
|
||||||
OniyanmaAnimationIdle: INCLUDE "gfx/pokemon/oniyanma/anim_idle.asm"
|
OniyanmaAnimationIdle: INCLUDE "gfx/pokemon/oniyanma/anim_idle.asm"
|
||||||
|
|
|
@ -60,7 +60,7 @@ SunbudFrames: INCLUDE "gfx/pokemon/sunbud/frames.asm"
|
||||||
SunfloraFrames: INCLUDE "gfx/pokemon/sunflora/frames.asm"
|
SunfloraFrames: INCLUDE "gfx/pokemon/sunflora/frames.asm"
|
||||||
HippunkFrames: INCLUDE "gfx/pokemon/hippunk/frames.asm"
|
HippunkFrames: INCLUDE "gfx/pokemon/hippunk/frames.asm"
|
||||||
AercrowFrames: INCLUDE "gfx/pokemon/aercrow/frames.asm"
|
AercrowFrames: INCLUDE "gfx/pokemon/aercrow/frames.asm"
|
||||||
FoxfireFrames: INCLUDE "gfx/pokemon/foxfire/frames.asm"
|
ZorriegoFrames: INCLUDE "gfx/pokemon/zorriego/frames.asm"
|
||||||
YanmaFrames: INCLUDE "gfx/pokemon/yanma/frames.asm"
|
YanmaFrames: INCLUDE "gfx/pokemon/yanma/frames.asm"
|
||||||
YanmegaFrames: INCLUDE "gfx/pokemon/yanmega/frames.asm"
|
YanmegaFrames: INCLUDE "gfx/pokemon/yanmega/frames.asm"
|
||||||
OniyanmaFrames: INCLUDE "gfx/pokemon/oniyanma/frames.asm"
|
OniyanmaFrames: INCLUDE "gfx/pokemon/oniyanma/frames.asm"
|
||||||
|
|
Before Width: | Height: | Size: 304 B After Width: | Height: | Size: 304 B |
Before Width: | Height: | Size: 315 B After Width: | Height: | Size: 315 B |
Loading…
Reference in a new issue