Buu and Grenmar? Nowaynowaynoway!

This required me to scrap some unused content from `load_font.asm`. However, this is only really a temporary fix - we need to decouple footprints.asm from it and make it load from separate banks to keep going.

Look at how Pokemon sprites are loaded for reference.
This commit is contained in:
Llinos Evans 2024-07-09 20:20:51 +01:00
parent b62062a82c
commit ae81f290d2
48 changed files with 182 additions and 38 deletions

View file

@ -186,6 +186,7 @@
const SCYTHER ; 7b const SCYTHER ; 7b
const KLEAVOR const KLEAVOR
const JYNX ; 7c const JYNX ; 7c
const BUU
const ELECTABUZZ ; 7d const ELECTABUZZ ; 7d
const MAGMAR ; 7e const MAGMAR ; 7e
const PINSIR ; 7f const PINSIR ; 7f
@ -340,6 +341,7 @@ DEF JOHTO_POKEMON EQU const_value
const PORYGON2 ; e9 const PORYGON2 ; e9
const STANTLER ; ea const STANTLER ; ea
const SMEARGLE ; eb const SMEARGLE ; eb
const GRENMAR
const TYROGUE ; ec const TYROGUE ; ec
const HITMONTOP ; ed const HITMONTOP ; ed
const SMOOCHUM ; ee const SMOOCHUM ; ee

View file

@ -194,6 +194,7 @@ INCLUDE "data/pokemon/base_stats/mr__mime.asm"
INCLUDE "data/pokemon/base_stats/scyther.asm" INCLUDE "data/pokemon/base_stats/scyther.asm"
INCLUDE "data/pokemon/base_stats/kleavor.asm" INCLUDE "data/pokemon/base_stats/kleavor.asm"
INCLUDE "data/pokemon/base_stats/jynx.asm" INCLUDE "data/pokemon/base_stats/jynx.asm"
INCLUDE "data/pokemon/base_stats/buu.asm"
INCLUDE "data/pokemon/base_stats/electabuzz.asm" INCLUDE "data/pokemon/base_stats/electabuzz.asm"
INCLUDE "data/pokemon/base_stats/magmar.asm" INCLUDE "data/pokemon/base_stats/magmar.asm"
INCLUDE "data/pokemon/base_stats/pinsir.asm" INCLUDE "data/pokemon/base_stats/pinsir.asm"
@ -347,6 +348,7 @@ INCLUDE "data/pokemon/base_stats/donphan.asm"
INCLUDE "data/pokemon/base_stats/porygon2.asm" INCLUDE "data/pokemon/base_stats/porygon2.asm"
INCLUDE "data/pokemon/base_stats/stantler.asm" INCLUDE "data/pokemon/base_stats/stantler.asm"
INCLUDE "data/pokemon/base_stats/smeargle.asm" INCLUDE "data/pokemon/base_stats/smeargle.asm"
INCLUDE "data/pokemon/base_stats/grenmar.asm"
INCLUDE "data/pokemon/base_stats/tyrogue.asm" INCLUDE "data/pokemon/base_stats/tyrogue.asm"
INCLUDE "data/pokemon/base_stats/hitmontop.asm" INCLUDE "data/pokemon/base_stats/hitmontop.asm"
INCLUDE "data/pokemon/base_stats/smoochum.asm" INCLUDE "data/pokemon/base_stats/smoochum.asm"

View file

@ -0,0 +1,21 @@
db GRENMAR ; species ID placeholder
db 80, 80, 70, 55, 105, 80
; hp atk def spd sat sdf
db FIRE, WATER ; type
db 75 ; catch rate
db 160 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 20 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/grenmar/front.dimensions"
dw NULL, NULL ; unused (beta front/back pics)
db GROWTH_MEDIUM_FAST ; growth rate
dn EGG_WATER_1, EGG_GROUND ; egg groups
; tm/hm learnset
tmhm HEADBUTT, CURSE, ROLLOUT, TOXIC, PSYCH_UP, HIDDEN_POWER, SUNNY_DAY, SNORE, HYPER_BEAM, PROTECT, RAIN_DANCE, ENDURE, FRUSTRATION, IRON_TAIL, RETURN, DOUBLE_TEAM, SWAGGER, SLEEP_TALK, SLUDGE_BOMB, FIRE_BLAST, SWIFT, DETECT, REST, ATTRACT, THIEF, SURF, STRENGTH, FLASH, FLAMETHROWER
; end

View file

@ -173,6 +173,7 @@ PokemonCries::
mon_cry CRY_CATERPIE, 0, 256 ; SCYTHER mon_cry CRY_CATERPIE, 0, 256 ; SCYTHER
mon_cry CRY_CATERPIE, -512, 383 ; KLEAVOR mon_cry CRY_CATERPIE, -512, 383 ; KLEAVOR
mon_cry CRY_DROWZEE, 255, 383 ; JYNX mon_cry CRY_DROWZEE, 255, 383 ; JYNX
mon_cry CRY_NIDORAN_M, 0, 0 ; BUU
mon_cry CRY_VOLTORB, 143, 383 ; ELECTABUZZ mon_cry CRY_VOLTORB, 143, 383 ; ELECTABUZZ
mon_cry CRY_CHARMANDER, 255, 176 ; MAGMAR mon_cry CRY_CHARMANDER, 255, 176 ; MAGMAR
mon_cry CRY_PIDGEOTTO, 0, 256 ; PINSIR mon_cry CRY_PIDGEOTTO, 0, 256 ; PINSIR
@ -326,6 +327,7 @@ PokemonCries::
mon_cry CRY_GIRAFARIG, 115, 576 ; PORYGON2 mon_cry CRY_GIRAFARIG, 115, 576 ; PORYGON2
mon_cry CRY_AIPOM, -352, 384 ; STANTLER mon_cry CRY_AIPOM, -352, 384 ; STANTLER
mon_cry CRY_PICHU, -538, 496 ; SMEARGLE mon_cry CRY_PICHU, -538, 496 ; SMEARGLE
mon_cry CRY_NIDORAN_M, 0, 0 ; GRENMAR
mon_cry CRY_AIPOM, 44, 264 ; TYROGUE mon_cry CRY_AIPOM, 44, 264 ; TYROGUE
mon_cry CRY_SLUGMA, 0, 256 ; HITMONTOP mon_cry CRY_SLUGMA, 0, 256 ; HITMONTOP
mon_cry CRY_MARILL, 104, 256 ; SMOOCHUM mon_cry CRY_MARILL, 104, 256 ; SMOOCHUM

View file

@ -384,3 +384,5 @@ BalumbaPokedexEntry:: INCLUDE "data/pokemon/dex_entries/balumba.asm"
MagnetitePokedexEntry:: INCLUDE "data/pokemon/dex_entries/magnetite.asm" MagnetitePokedexEntry:: INCLUDE "data/pokemon/dex_entries/magnetite.asm"
MagnezonePokedexEntry:: INCLUDE "data/pokemon/dex_entries/magnezone.asm" MagnezonePokedexEntry:: INCLUDE "data/pokemon/dex_entries/magnezone.asm"
GavillainPokedexEntry:: INCLUDE "data/pokemon/dex_entries/gavillain.asm" GavillainPokedexEntry:: INCLUDE "data/pokemon/dex_entries/gavillain.asm"
BuuPokedexEntry:: INCLUDE "data/pokemon/dex_entries/buu.asm"
GrenmarPokedexEntry:: INCLUDE "data/pokemon/dex_entries/grenmar.asm"

View file

@ -0,0 +1,10 @@
db "ICE BEAST@" ; species name
dw 311, 191 ; height, weight - temp
db "If it finds people"
next "stranded in the"
next "mountains, BUU will"
page "keep them warm us-"
next "ing its heat-resis-"
next "tant fur.@"

View file

@ -0,0 +1,10 @@
db "BOMB SEEL@" ; species name
dw 311, 191 ; height, weight - temp
db "Popular amongst"
next "ringmaster for its"
next "skillful juggling."
page "Training one is"
next "risky, as its"
next "rock may explode.@"

View file

@ -168,6 +168,7 @@ PokedexDataPointerTable:
dba ScytherPokedexEntry dba ScytherPokedexEntry
dba KleavorPokedexEntry dba KleavorPokedexEntry
dba JynxPokedexEntry dba JynxPokedexEntry
dba BuuPokedexEntry
dba ElectabuzzPokedexEntry dba ElectabuzzPokedexEntry
dba MagmarPokedexEntry dba MagmarPokedexEntry
dba PinsirPokedexEntry dba PinsirPokedexEntry
@ -321,6 +322,7 @@ PokedexDataPointerTable:
dba Porygon2PokedexEntry dba Porygon2PokedexEntry
dba StantlerPokedexEntry dba StantlerPokedexEntry
dba SmearglePokedexEntry dba SmearglePokedexEntry
dba GrenmarPokedexEntry
dba TyroguePokedexEntry dba TyroguePokedexEntry
dba HitmontopPokedexEntry dba HitmontopPokedexEntry
dba SmoochumPokedexEntry dba SmoochumPokedexEntry

View file

@ -36,6 +36,7 @@ AlphabeticalPokedexOrder:
dw BULBASAUR dw BULBASAUR
dw BURGELA dw BURGELA
dw BUTTERFREE dw BUTTERFREE
dw BUU
dw CACAWPHONY dw CACAWPHONY
dw CALFLAC dw CALFLAC
dw CARAPTHOR dw CARAPTHOR
@ -123,6 +124,7 @@ AlphabeticalPokedexOrder:
dw GRANBULL dw GRANBULL
dw GRAVELER dw GRAVELER
dw GREAT_TUSK dw GREAT_TUSK
dw GRENMAR
dw GRIMER dw GRIMER
dw GROWLITHE dw GROWLITHE
dw GYARADOS dw GYARADOS

View file

@ -203,10 +203,12 @@ NewPokedexOrder:
dw MAGMAR dw MAGMAR
dw SMOOCHUM dw SMOOCHUM
dw JYNX dw JYNX
dw BUU
dw ELEKID dw ELEKID
dw ELECTABUZZ dw ELECTABUZZ
dw MR__MIME dw MR__MIME
dw SMEARGLE dw SMEARGLE
dw GRENMAR
dw FARFETCH_D dw FARFETCH_D
dw LUXWAN dw LUXWAN
dw NATU dw NATU

View file

@ -124,6 +124,7 @@ EggMovePointers2::
dw NoEggMoves2 dw NoEggMoves2
dw StantlerEggMoves dw StantlerEggMoves
dw NoEggMoves2 dw NoEggMoves2
dw GrenmarEggMoves
dw TyrogueEggMoves dw TyrogueEggMoves
dw NoEggMoves2 dw NoEggMoves2
dw SmoochumEggMoves dw SmoochumEggMoves
@ -569,6 +570,15 @@ StantlerEggMoves:
dw BITE dw BITE
dw -1 ; end dw -1 ; end
GrenmarEggMoves:
dw DISABLE
dw ENCORE
dw PERISH_SONG
dw RAPID_SPIN
dw SING
dw SLAM
dw -1
TyrogueEggMoves: TyrogueEggMoves:
dw RAPID_SPIN dw RAPID_SPIN
dw HI_JUMP_KICK dw HI_JUMP_KICK

View file

@ -168,6 +168,7 @@ EggMovePointers1:
dw ScytherEggMoves dw ScytherEggMoves
dw NoEggMoves1 ; Kleavor dw NoEggMoves1 ; Kleavor
dw NoEggMoves1 dw NoEggMoves1
dw BuuEggMoves
dw NoEggMoves1 dw NoEggMoves1
dw NoEggMoves1 dw NoEggMoves1
dw PinsirEggMoves dw PinsirEggMoves
@ -645,6 +646,14 @@ ScytherEggMoves:
dw LIGHT_SCREEN dw LIGHT_SCREEN
dw -1 ; end dw -1 ; end
BuuEggMoves:
dw BARRIER
dw CROSS_CHOP
dw KARATE_CHOP
dw SCREECH
dw ROLLING_KICK
dw -1
PinsirEggMoves: PinsirEggMoves:
dw FURY_ATTACK dw FURY_ATTACK
dw FLAIL dw FLAIL

View file

@ -123,6 +123,7 @@ EvosAttacksPointers2::
dw Porygon2EvosAttacks dw Porygon2EvosAttacks
dw StantlerEvosAttacks dw StantlerEvosAttacks
dw SmeargleEvosAttacks dw SmeargleEvosAttacks
dw GrenmarEvosAttacks
dw TyrogueEvosAttacks dw TyrogueEvosAttacks
dw HitmontopEvosAttacks dw HitmontopEvosAttacks
dw SmoochumEvosAttacks dw SmoochumEvosAttacks
@ -1772,6 +1773,19 @@ SmeargleEvosAttacks:
dbw 91, SKETCH dbw 91, SKETCH
db 0 ; no more level-up moves db 0 ; no more level-up moves
GrenmarEvosAttacks:
db 0
dbw 1, TACKLE
dbw 1, DEFENSE_CURL
dbw 9, TAIL_WHIP
dbw 17, WATER_GUN
dbw 25, BARRAGE
dbw 33, FLAME_WHEEL
dbw 41, SMOG
dbw 49, TAKE_DOWN
dbw 57, HYDRO_PUMP
db 0
TyrogueEvosAttacks: TyrogueEvosAttacks:
dbbbw EVOLVE_STAT, 20, ATK_LT_DEF, HITMONCHAN dbbbw EVOLVE_STAT, 20, ATK_LT_DEF, HITMONCHAN
dbbbw EVOLVE_STAT, 20, ATK_GT_DEF, HITMONLEE dbbbw EVOLVE_STAT, 20, ATK_GT_DEF, HITMONLEE

View file

@ -168,6 +168,7 @@ EvosAttacksPointers1::
dw ScytherEvosAttacks dw ScytherEvosAttacks
dw KleavorEvosAttacks dw KleavorEvosAttacks
dw JynxEvosAttacks dw JynxEvosAttacks
dw BuuEvosAttacks
dw ElectabuzzEvosAttacks dw ElectabuzzEvosAttacks
dw MagmarEvosAttacks dw MagmarEvosAttacks
dw PinsirEvosAttacks dw PinsirEvosAttacks
@ -2507,6 +2508,21 @@ JynxEvosAttacks:
dbw 57, BLIZZARD dbw 57, BLIZZARD
db 0 ; no more level-up moves db 0 ; no more level-up moves
BuuEvosAttacks:
db 0
dbw 1, AURORA_BEAM
dbw 6, LEER
dbw 11, ICE_PUNCH
dbw 16, MIST
dbw 21, DIZZY_PUNCH
dbw 27, FAINT_ATTACK
dbw 32, DISABLE
dbw 39, PURSUIT
dbw 45, HAZE
dbw 51, ICE_BEAM
dbw 58, BLIZZARD
db 0
ElectabuzzEvosAttacks: ElectabuzzEvosAttacks:
db 0 ; no more evolutions db 0 ; no more evolutions
dbw 1, QUICK_ATTACK dbw 1, QUICK_ATTACK

View file

@ -168,6 +168,7 @@ FirstEvoStages::
dw SCYTHER dw SCYTHER
dw SCYTHER dw SCYTHER
dw SMOOCHUM dw SMOOCHUM
dw BUU
dw ELEKID dw ELEKID
dw MAGBY dw MAGBY
dw PINSIR dw PINSIR
@ -321,6 +322,7 @@ FirstEvoStages::
dw PORYGON dw PORYGON
dw STANTLER dw STANTLER
dw SMEARGLE dw SMEARGLE
dw GRENMAR
dw TYROGUE dw TYROGUE
dw TYROGUE dw TYROGUE
dw SMOOCHUM dw SMOOCHUM

View file

@ -169,6 +169,7 @@ KantoMonSpecials:
db 55 ; SCYTHER db 55 ; SCYTHER
db 45 ; KLEAVOR db 45 ; KLEAVOR
db 95 ; JYNX db 95 ; JYNX
db 85 ; BUU
db 85 ; ELECTABUZZ db 85 ; ELECTABUZZ
db 85 ; MAGMAR db 85 ; MAGMAR
db 55 ; PINSIR db 55 ; PINSIR

View file

@ -372,4 +372,6 @@ Pokered_MonIndices:
db MAGNETITE db MAGNETITE
db MAGNEZONE db MAGNEZONE
db GAVILLAIN db GAVILLAIN
db BUU
db GRENMAR
assert_table_length NUM_POKEMON - 1 assert_table_length NUM_POKEMON - 1

View file

@ -169,6 +169,7 @@ MonMenuIcons:
db ICON_BUG ; SCYTHER db ICON_BUG ; SCYTHER
db ICON_BUG ; KLEAVOR db ICON_BUG ; KLEAVOR
db ICON_HUMANSHAPE ; JYNX db ICON_HUMANSHAPE ; JYNX
db ICON_HUMANSHAPE ; BUU
db ICON_HUMANSHAPE ; ELECTABUZZ db ICON_HUMANSHAPE ; ELECTABUZZ
db ICON_HUMANSHAPE ; MAGMAR db ICON_HUMANSHAPE ; MAGMAR
db ICON_BUG ; PINSIR db ICON_BUG ; PINSIR
@ -322,6 +323,7 @@ MonMenuIcons:
db ICON_VOLTORB ; PORYGON2 db ICON_VOLTORB ; PORYGON2
db ICON_EQUINE ; STANTLER db ICON_EQUINE ; STANTLER
db ICON_MONSTER ; SMEARGLE db ICON_MONSTER ; SMEARGLE
db ICON_LAPRAS ; GRENMAR
db ICON_FIGHTER ; TYROGUE db ICON_FIGHTER ; TYROGUE
db ICON_FIGHTER ; HITMONTOP db ICON_FIGHTER ; HITMONTOP
db ICON_HUMANSHAPE ; SMOOCHUM db ICON_HUMANSHAPE ; SMOOCHUM

View file

@ -171,6 +171,7 @@ PokemonNames::
db "SCYTHER@@@" db "SCYTHER@@@"
db "KLEAVOR@@@" db "KLEAVOR@@@"
db "JYNX@@@@@@" db "JYNX@@@@@@"
db "BUU@@@@@@@"
db "ELECTABUZZ" db "ELECTABUZZ"
db "MAGMAR@@@@" db "MAGMAR@@@@"
db "PINSIR@@@@" db "PINSIR@@@@"
@ -324,6 +325,7 @@ PokemonNames::
db "PORYGON2@@" db "PORYGON2@@"
db "STANTLER@@" db "STANTLER@@"
db "SMEARGLE@@" db "SMEARGLE@@"
db "GRENMAR@@@"
db "TYROGUE@@@" db "TYROGUE@@@"
db "HITMONTOP@" db "HITMONTOP@"
db "SMOOCHUM@@" db "SMOOCHUM@@"

View file

@ -367,6 +367,8 @@ INCBIN "gfx/pokemon/kleavor/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/kleavor/shiny.pal" INCLUDE "gfx/pokemon/kleavor/shiny.pal"
INCBIN "gfx/pokemon/jynx/front.gbcpal", middle_colors INCBIN "gfx/pokemon/jynx/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/jynx/shiny.pal" INCLUDE "gfx/pokemon/jynx/shiny.pal"
INCBIN "gfx/pokemon/buu/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/buu/shiny.pal"
INCBIN "gfx/pokemon/electabuzz/front.gbcpal", middle_colors INCBIN "gfx/pokemon/electabuzz/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/electabuzz/shiny.pal" INCLUDE "gfx/pokemon/electabuzz/shiny.pal"
INCBIN "gfx/pokemon/magmar/front.gbcpal", middle_colors INCBIN "gfx/pokemon/magmar/front.gbcpal", middle_colors
@ -673,6 +675,8 @@ INCBIN "gfx/pokemon/stantler/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/stantler/shiny.pal" INCLUDE "gfx/pokemon/stantler/shiny.pal"
INCBIN "gfx/pokemon/smeargle/front.gbcpal", middle_colors INCBIN "gfx/pokemon/smeargle/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/smeargle/shiny.pal" INCLUDE "gfx/pokemon/smeargle/shiny.pal"
INCBIN "gfx/pokemon/grenmar/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/grenmar/shiny.pal"
INCBIN "gfx/pokemon/tyrogue/front.gbcpal", middle_colors INCBIN "gfx/pokemon/tyrogue/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/tyrogue/shiny.pal" INCLUDE "gfx/pokemon/tyrogue/shiny.pal"
INCBIN "gfx/pokemon/hitmontop/front.gbcpal", middle_colors INCBIN "gfx/pokemon/hitmontop/front.gbcpal", middle_colors

View file

@ -347,6 +347,8 @@ PokemonPicPointers::
dba KleavorBackpic dba KleavorBackpic
dba JynxFrontpic dba JynxFrontpic
dba JynxBackpic dba JynxBackpic
dba BuuFrontpic
dba BuuBackpic
dba ElectabuzzFrontpic dba ElectabuzzFrontpic
dba ElectabuzzBackpic dba ElectabuzzBackpic
dba MagmarFrontpic dba MagmarFrontpic
@ -656,6 +658,8 @@ PokemonPicPointers::
dba StantlerBackpic dba StantlerBackpic
dba SmeargleFrontpic dba SmeargleFrontpic
dba SmeargleBackpic dba SmeargleBackpic
dba GrenmarFrontpic
dba GrenmarBackpic
dba TyrogueFrontpic dba TyrogueFrontpic
dba TyrogueBackpic dba TyrogueBackpic
dba HitmontopFrontpic dba HitmontopFrontpic

View file

@ -82,7 +82,7 @@ PryceGroup:
dw DELIBIRD dw DELIBIRD
dw PRESENT, ICY_WIND, RAPID_SPIN, RAIN_DANCE ; Rain Dance can make Fire moves worse ig? Spikes is cool but it's an event move - do we want that? dw PRESENT, ICY_WIND, RAPID_SPIN, RAIN_DANCE ; Rain Dance can make Fire moves worse ig? Spikes is cool but it's an event move - do we want that?
db 33 db 33
dw SEEL ; BUU dw BUU
dw HEADBUTT, ICY_WIND, AURORA_BEAM, REST dw HEADBUTT, ICY_WIND, AURORA_BEAM, REST
db 35 db 35
dw DEWGONG dw DEWGONG
@ -3000,6 +3000,8 @@ SwimmerFGroup:
db "DENISE@", TRAINERTYPE_NORMAL db "DENISE@", TRAINERTYPE_NORMAL
db 22 db 22
dw SEEL dw SEEL
db 23
dw GRENMAR
db -1 ; end db -1 ; end
next_list_item ; SWIMMERF (6) next_list_item ; SWIMMERF (6)
@ -3087,7 +3089,7 @@ SwimmerFGroup:
db 28 db 28
dw SEEL dw SEEL
db 28 db 28
dw SEEL dw GRENMAR
db 28 db 28
dw DEWGONG dw DEWGONG
db -1 ; end db -1 ; end
@ -4912,7 +4914,7 @@ BoarderGroup: ; All in Pryce's Gym. Could expand to Ice Path and Seafoam.
db 30 db 30
dw CLOYSTER dw CLOYSTER
db 26 db 26
dw SHELLDER ; BUU dw BUU
db -1 ; end db -1 ; end
end_list_items end_list_items

View file

@ -499,24 +499,24 @@ JohtoGrassWildMons:
dbw 24, RIBBITO dbw 24, RIBBITO
dbw 26, AZUMARILL dbw 26, AZUMARILL
dbw 25, GRAVELER dbw 25, GRAVELER
dbw 26, ONIX ; GRENMAR dbw 26, GRENMAR
dbw 27, ONIX ; GRENMAR dbw 27, GRENMAR
; day ; day
dbw 26, GRAVELER dbw 26, GRAVELER
dbw 25, GOLBAT dbw 25, GOLBAT
dbw 24, RIBBITO dbw 24, RIBBITO
dbw 26, AZUMARILL dbw 26, AZUMARILL
dbw 25, GRAVELER dbw 25, GRAVELER
dbw 26, ONIX ; GRENMAR dbw 26, GRENMAR
dbw 27, ONIX ; GRENMAR dbw 27, GRENMAR
; nite ; nite
dbw 26, GRAVELER dbw 26, GRAVELER
dbw 25, GOLBAT dbw 25, GOLBAT
dbw 24, QUAGSIRE dbw 24, QUAGSIRE
dbw 26, AZUMARILL dbw 26, AZUMARILL
dbw 25, GRAVELER dbw 25, GRAVELER
dbw 26, ONIX ; GRENMAR dbw 26, GRENMAR
dbw 27, ONIX ; GRENMAR dbw 27, GRENMAR
end_grass_wildmons end_grass_wildmons
def_grass_wildmons SLOWPOKE_WELL_B1F def_grass_wildmons SLOWPOKE_WELL_B1F
@ -620,7 +620,7 @@ JohtoGrassWildMons:
dbw 21, KOTORA dbw 21, KOTORA
dbw 19, GEODUDE dbw 19, GEODUDE
dbw 20, RATICATE dbw 20, RATICATE
dbw 20, RATICATE ; GRENMAR dbw 20, GRENMAR
; day ; day
dbw 19, RATTATA dbw 19, RATTATA
dbw 22, KOTORA dbw 22, KOTORA
@ -628,7 +628,7 @@ JohtoGrassWildMons:
dbw 21, KOTORA dbw 21, KOTORA
dbw 19, GEODUDE dbw 19, GEODUDE
dbw 20, RATICATE dbw 20, RATICATE
dbw 20, RATICATE ; GRENMAR dbw 20, GRENMAR
; nite ; nite
dbw 18, RATTATA dbw 18, RATTATA
dbw 22, ZUBAT dbw 22, ZUBAT
@ -636,7 +636,7 @@ JohtoGrassWildMons:
dbw 22, GOLBAT dbw 22, GOLBAT
dbw 19, GEODUDE dbw 19, GEODUDE
dbw 20, RATICATE dbw 20, RATICATE
dbw 20, RATICATE ; GRENMAR dbw 20, GRENMAR
end_grass_wildmons end_grass_wildmons
; Also, Larvitar is available in the morning and daytime, unless it's B2F, wherein it's all-day. ; Also, Larvitar is available in the morning and daytime, unless it's B2F, wherein it's all-day.
@ -647,7 +647,7 @@ JohtoGrassWildMons:
dbw 18, GEODUDE dbw 18, GEODUDE
dbw 19, RATTATA dbw 19, RATTATA
dbw 20, MACHOP dbw 20, MACHOP
dbw 20, RATICATE ; GRENMAR? dbw 20, GRENMAR
dbw 22, MARILL dbw 22, MARILL
dbw 22, LARVITAR dbw 22, LARVITAR
dbw 23, LARVITAR dbw 23, LARVITAR
@ -655,14 +655,14 @@ JohtoGrassWildMons:
dbw 18, GEODUDE dbw 18, GEODUDE
dbw 19, RATTATA dbw 19, RATTATA
dbw 20, MACHOP dbw 20, MACHOP
dbw 20, RATICATE ; GRENMAR? dbw 20, GRENMAR
dbw 22, MARILL dbw 22, MARILL
dbw 22, LARVITAR dbw 22, LARVITAR
dbw 23, LARVITAR dbw 23, LARVITAR
; nite ; nite
dbw 18, GEODUDE dbw 18, GEODUDE
dbw 19, RATTATA dbw 19, RATTATA
dbw 20, RATICATE ; GRENMAR? dbw 20, GRENMAR
dbw 22, ZUBAT dbw 22, ZUBAT
dbw 21, MARILL dbw 21, MARILL
dbw 22, GOLBAT dbw 22, GOLBAT
@ -675,7 +675,7 @@ JohtoGrassWildMons:
dbw 41, GRAVELER dbw 41, GRAVELER
dbw 42, MACHOKE dbw 42, MACHOKE
dbw 41, GEODUDE dbw 41, GEODUDE
dbw 40, RATICATE ; GRENMAR? dbw 40, GRENMAR
dbw 48, MARILL dbw 48, MARILL
dbw 40, PUPITAR dbw 40, PUPITAR
dbw 40, PUPITAR dbw 40, PUPITAR
@ -683,14 +683,14 @@ JohtoGrassWildMons:
dbw 41, GRAVELER dbw 41, GRAVELER
dbw 42, MACHOKE dbw 42, MACHOKE
dbw 41, GEODUDE dbw 41, GEODUDE
dbw 40, RATICATE ; GRENMAR? dbw 40, GRENMAR
dbw 48, MARILL dbw 48, MARILL
dbw 40, PUPITAR dbw 40, PUPITAR
dbw 40, PUPITAR dbw 40, PUPITAR
; nite ; nite
dbw 41, GRAVELER dbw 41, GRAVELER
dbw 41, GEODUDE dbw 41, GEODUDE
dbw 40, RATICATE ; GRENMAR? dbw 40, GRENMAR
dbw 40, GOLBAT dbw 40, GOLBAT
dbw 48, AZUMARILL dbw 48, AZUMARILL
dbw 42, GOLBAT dbw 42, GOLBAT
@ -704,7 +704,7 @@ JohtoGrassWildMons:
dbw 20, ZUBAT dbw 20, ZUBAT
dbw 23, GOLBAT dbw 23, GOLBAT
dbw 21, MARILL dbw 21, MARILL
dbw 20, GEODUDE ; GRENMAR? dbw 20, GRENMAR
dbw 24, LARVITAR dbw 24, LARVITAR
dbw 24, LARVITAR dbw 24, LARVITAR
; day ; day
@ -712,7 +712,7 @@ JohtoGrassWildMons:
dbw 20, ZUBAT dbw 20, ZUBAT
dbw 23, GOLBAT dbw 23, GOLBAT
dbw 21, MARILL dbw 21, MARILL
dbw 20, GEODUDE ; GRENMAR? dbw 20, GRENMAR
dbw 24, LARVITAR dbw 24, LARVITAR
dbw 24, LARVITAR dbw 24, LARVITAR
; nite ; nite
@ -720,7 +720,7 @@ JohtoGrassWildMons:
dbw 20, ZUBAT dbw 20, ZUBAT
dbw 23, GOLBAT dbw 23, GOLBAT
dbw 21, MARILL dbw 21, MARILL
dbw 20, GEODUDE ; GRENMAR? dbw 20, GRENMAR
dbw 24, LARVITAR dbw 24, LARVITAR
dbw 24, LARVITAR dbw 24, LARVITAR
end_grass_wildmons end_grass_wildmons

View file

@ -53,23 +53,23 @@ JohtoWaterWildMons:
def_water_wildmons MOUNT_MORTAR_1F_OUTSIDE def_water_wildmons MOUNT_MORTAR_1F_OUTSIDE
db 4 percent ; encounter rate db 4 percent ; encounter rate
dbw 15, GOLDEEN dbw 23, SEAKING
dbw 20, MARILL dbw 25, MARILL
dbw 20, SEAKING dbw 25, GRENMAR
end_water_wildmons end_water_wildmons
def_water_wildmons MOUNT_MORTAR_2F_INSIDE def_water_wildmons MOUNT_MORTAR_2F_INSIDE
db 2 percent ; encounter rate db 2 percent ; encounter rate
dbw 20, GOLDEEN dbw 23, SEAKING
dbw 25, MARILL dbw 25, MARILL
dbw 25, SEAKING dbw 25, GRENMAR
end_water_wildmons end_water_wildmons
def_water_wildmons MOUNT_MORTAR_B1F def_water_wildmons MOUNT_MORTAR_B1F
db 2 percent ; encounter rate db 2 percent ; encounter rate
dbw 15, GOLDEEN dbw 23, SEAKING
dbw 20, MARILL dbw 25, MARILL
dbw 20, SEAKING dbw 25, GRENMAR
end_water_wildmons end_water_wildmons
def_water_wildmons WHIRL_ISLAND_SW def_water_wildmons WHIRL_ISLAND_SW

View file

@ -32,19 +32,10 @@ INCBIN "gfx/battle/expbar.2bpp"
TownMapGFX: TownMapGFX:
INCBIN "gfx/pokegear/town_map.2bpp.lz" INCBIN "gfx/pokegear/town_map.2bpp.lz"
UnusedWeekdayKanjiGFX: ; unreferenced
INCBIN "gfx/font/unused_weekday_kanji.2bpp"
UnusedBoldFontGFX: ; unreferenced
INCBIN "gfx/font/unused_bold_font.1bpp"
TextboxSpaceGFX: TextboxSpaceGFX:
; StatsScreen_LoadTextboxSpaceGFX reads 2bpp; LoadFrame reads first half as 1bpp ; StatsScreen_LoadTextboxSpaceGFX reads 2bpp; LoadFrame reads first half as 1bpp
INCBIN "gfx/font/space.2bpp" INCBIN "gfx/font/space.2bpp"
UnusedUpArrowGFX: ; unreferenced
INCBIN "gfx/font/unused_up_arrow.1bpp"
MobilePhoneTilesGFX: MobilePhoneTilesGFX:
INCBIN "gfx/mobile/phone_tiles.2bpp" INCBIN "gfx/mobile/phone_tiles.2bpp"

View file

@ -168,6 +168,7 @@ INCBIN "gfx/footprints/mr__mime.1bpp"
INCBIN "gfx/footprints/scyther.1bpp" INCBIN "gfx/footprints/scyther.1bpp"
INCBIN "gfx/footprints/kleavor.1bpp" INCBIN "gfx/footprints/kleavor.1bpp"
INCBIN "gfx/footprints/jynx.1bpp" INCBIN "gfx/footprints/jynx.1bpp"
INCBIN "gfx/footprints/buu.1bpp"
INCBIN "gfx/footprints/electabuzz.1bpp" INCBIN "gfx/footprints/electabuzz.1bpp"
INCBIN "gfx/footprints/magmar.1bpp" INCBIN "gfx/footprints/magmar.1bpp"
INCBIN "gfx/footprints/pinsir.1bpp" INCBIN "gfx/footprints/pinsir.1bpp"
@ -321,6 +322,7 @@ INCBIN "gfx/footprints/donphan.1bpp"
INCBIN "gfx/footprints/porygon2.1bpp" INCBIN "gfx/footprints/porygon2.1bpp"
INCBIN "gfx/footprints/stantler.1bpp" INCBIN "gfx/footprints/stantler.1bpp"
INCBIN "gfx/footprints/smeargle.1bpp" INCBIN "gfx/footprints/smeargle.1bpp"
INCBIN "gfx/footprints/grenmar.1bpp"
INCBIN "gfx/footprints/tyrogue.1bpp" INCBIN "gfx/footprints/tyrogue.1bpp"
INCBIN "gfx/footprints/hitmontop.1bpp" INCBIN "gfx/footprints/hitmontop.1bpp"
INCBIN "gfx/footprints/smoochum.1bpp" INCBIN "gfx/footprints/smoochum.1bpp"

BIN
gfx/footprints/buu.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 B

BIN
gfx/footprints/grenmar.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 B

View file

@ -982,3 +982,7 @@ MagnezoneFrontpic: INCBIN "gfx/pokemon/magnezone/front.animated.2bpp.lz"
MagnezoneBackpic: INCBIN "gfx/pokemon/magnezone/back.2bpp.lz" MagnezoneBackpic: INCBIN "gfx/pokemon/magnezone/back.2bpp.lz"
GavillainFrontpic: INCBIN "gfx/pokemon/gavillain/front.animated.2bpp.lz" GavillainFrontpic: INCBIN "gfx/pokemon/gavillain/front.animated.2bpp.lz"
GavillainBackpic: INCBIN "gfx/pokemon/gavillain/back.2bpp.lz" GavillainBackpic: INCBIN "gfx/pokemon/gavillain/back.2bpp.lz"
BuuFrontpic: INCBIN "gfx/pokemon/buu/front.animated.2bpp.lz"
BuuBackpic: INCBIN "gfx/pokemon/buu/back.2bpp.lz"
GrenmarFrontpic: INCBIN "gfx/pokemon/grenmar/front.animated.2bpp.lz"
GrenmarBackpic: INCBIN "gfx/pokemon/grenmar/back.2bpp.lz"

View file

@ -167,6 +167,7 @@ AnimationPointers:
dw ScytherAnimation dw ScytherAnimation
dw KleavorAnimation dw KleavorAnimation
dw JynxAnimation dw JynxAnimation
dw BuuAnimation
dw ElectabuzzAnimation dw ElectabuzzAnimation
dw MagmarAnimation dw MagmarAnimation
dw PinsirAnimation dw PinsirAnimation
@ -320,6 +321,7 @@ AnimationPointers:
dw Porygon2Animation dw Porygon2Animation
dw StantlerAnimation dw StantlerAnimation
dw SmeargleAnimation dw SmeargleAnimation
dw GrenmarAnimation
dw TyrogueAnimation dw TyrogueAnimation
dw HitmontopAnimation dw HitmontopAnimation
dw SmoochumAnimation dw SmoochumAnimation

View file

@ -165,6 +165,7 @@ MrMimeAnimation: INCLUDE "gfx/pokemon/mr__mime/anim.asm"
ScytherAnimation: INCLUDE "gfx/pokemon/scyther/anim.asm" ScytherAnimation: INCLUDE "gfx/pokemon/scyther/anim.asm"
KleavorAnimation: INCLUDE "gfx/pokemon/kleavor/anim.asm" KleavorAnimation: INCLUDE "gfx/pokemon/kleavor/anim.asm"
JynxAnimation: INCLUDE "gfx/pokemon/jynx/anim.asm" JynxAnimation: INCLUDE "gfx/pokemon/jynx/anim.asm"
BuuAnimation: INCLUDE "gfx/pokemon/buu/anim.asm"
ElectabuzzAnimation: INCLUDE "gfx/pokemon/electabuzz/anim.asm" ElectabuzzAnimation: INCLUDE "gfx/pokemon/electabuzz/anim.asm"
MagmarAnimation: INCLUDE "gfx/pokemon/magmar/anim.asm" MagmarAnimation: INCLUDE "gfx/pokemon/magmar/anim.asm"
PinsirAnimation: INCLUDE "gfx/pokemon/pinsir/anim.asm" PinsirAnimation: INCLUDE "gfx/pokemon/pinsir/anim.asm"
@ -318,6 +319,7 @@ DonphanAnimation: INCLUDE "gfx/pokemon/donphan/anim.asm"
Porygon2Animation: INCLUDE "gfx/pokemon/porygon2/anim.asm" Porygon2Animation: INCLUDE "gfx/pokemon/porygon2/anim.asm"
StantlerAnimation: INCLUDE "gfx/pokemon/stantler/anim.asm" StantlerAnimation: INCLUDE "gfx/pokemon/stantler/anim.asm"
SmeargleAnimation: INCLUDE "gfx/pokemon/smeargle/anim.asm" SmeargleAnimation: INCLUDE "gfx/pokemon/smeargle/anim.asm"
GrenmarAnimation: INCLUDE "gfx/pokemon/grenmar/anim.asm"
TyrogueAnimation: INCLUDE "gfx/pokemon/tyrogue/anim.asm" TyrogueAnimation: INCLUDE "gfx/pokemon/tyrogue/anim.asm"
HitmontopAnimation: INCLUDE "gfx/pokemon/hitmontop/anim.asm" HitmontopAnimation: INCLUDE "gfx/pokemon/hitmontop/anim.asm"
SmoochumAnimation: INCLUDE "gfx/pokemon/smoochum/anim.asm" SmoochumAnimation: INCLUDE "gfx/pokemon/smoochum/anim.asm"

View file

@ -167,6 +167,7 @@ BitmasksPointers:
dw ScytherBitmasks dw ScytherBitmasks
dw KleavorBitmasks dw KleavorBitmasks
dw JynxBitmasks dw JynxBitmasks
dw BuuBitmasks
dw ElectabuzzBitmasks dw ElectabuzzBitmasks
dw MagmarBitmasks dw MagmarBitmasks
dw PinsirBitmasks dw PinsirBitmasks
@ -320,6 +321,7 @@ BitmasksPointers:
dw Porygon2Bitmasks dw Porygon2Bitmasks
dw StantlerBitmasks dw StantlerBitmasks
dw SmeargleBitmasks dw SmeargleBitmasks
dw GrenmarBitmasks
dw TyrogueBitmasks dw TyrogueBitmasks
dw HitmontopBitmasks dw HitmontopBitmasks
dw SmoochumBitmasks dw SmoochumBitmasks

View file

@ -165,6 +165,7 @@ MrMimeBitmasks: INCLUDE "gfx/pokemon/mr__mime/bitmask.asm"
ScytherBitmasks: INCLUDE "gfx/pokemon/scyther/bitmask.asm" ScytherBitmasks: INCLUDE "gfx/pokemon/scyther/bitmask.asm"
KleavorBitmasks: INCLUDE "gfx/pokemon/kleavor/bitmask.asm" KleavorBitmasks: INCLUDE "gfx/pokemon/kleavor/bitmask.asm"
JynxBitmasks: INCLUDE "gfx/pokemon/jynx/bitmask.asm" JynxBitmasks: INCLUDE "gfx/pokemon/jynx/bitmask.asm"
BuuBitmasks: INCLUDE "gfx/pokemon/buu/bitmask.asm"
ElectabuzzBitmasks: INCLUDE "gfx/pokemon/electabuzz/bitmask.asm" ElectabuzzBitmasks: INCLUDE "gfx/pokemon/electabuzz/bitmask.asm"
MagmarBitmasks: INCLUDE "gfx/pokemon/magmar/bitmask.asm" MagmarBitmasks: INCLUDE "gfx/pokemon/magmar/bitmask.asm"
PinsirBitmasks: INCLUDE "gfx/pokemon/pinsir/bitmask.asm" PinsirBitmasks: INCLUDE "gfx/pokemon/pinsir/bitmask.asm"
@ -318,6 +319,7 @@ DonphanBitmasks: INCLUDE "gfx/pokemon/donphan/bitmask.asm"
Porygon2Bitmasks: INCLUDE "gfx/pokemon/porygon2/bitmask.asm" Porygon2Bitmasks: INCLUDE "gfx/pokemon/porygon2/bitmask.asm"
StantlerBitmasks: INCLUDE "gfx/pokemon/stantler/bitmask.asm" StantlerBitmasks: INCLUDE "gfx/pokemon/stantler/bitmask.asm"
SmeargleBitmasks: INCLUDE "gfx/pokemon/smeargle/bitmask.asm" SmeargleBitmasks: INCLUDE "gfx/pokemon/smeargle/bitmask.asm"
GrenmarBitmasks: INCLUDE "gfx/pokemon/grenmar/bitmask.asm"
TyrogueBitmasks: INCLUDE "gfx/pokemon/tyrogue/bitmask.asm" TyrogueBitmasks: INCLUDE "gfx/pokemon/tyrogue/bitmask.asm"
HitmontopBitmasks: INCLUDE "gfx/pokemon/hitmontop/bitmask.asm" HitmontopBitmasks: INCLUDE "gfx/pokemon/hitmontop/bitmask.asm"
SmoochumBitmasks: INCLUDE "gfx/pokemon/smoochum/bitmask.asm" SmoochumBitmasks: INCLUDE "gfx/pokemon/smoochum/bitmask.asm"

1
gfx/pokemon/buu/anim.asm Normal file
View file

@ -0,0 +1 @@
endanim

View file

@ -0,0 +1 @@
endanim

BIN
gfx/pokemon/buu/back.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 304 B

BIN
gfx/pokemon/buu/front.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 B

View file

@ -0,0 +1,2 @@
RGB 22, 22, 12
RGB 07, 15, 25

View file

@ -167,6 +167,7 @@ FramesPointers:
dba ScytherFrames dba ScytherFrames
dba KleavorFrames dba KleavorFrames
dba JynxFrames dba JynxFrames
dba BuuFrames
dba ElectabuzzFrames dba ElectabuzzFrames
dba MagmarFrames dba MagmarFrames
dba PinsirFrames dba PinsirFrames
@ -320,6 +321,7 @@ FramesPointers:
dba Porygon2Frames dba Porygon2Frames
dba StantlerFrames dba StantlerFrames
dba SmeargleFrames dba SmeargleFrames
dba GrenmarFrames
dba TyrogueFrames dba TyrogueFrames
dba HitmontopFrames dba HitmontopFrames
dba SmoochumFrames dba SmoochumFrames

View file

@ -0,0 +1 @@
endanim

View file

@ -0,0 +1 @@
endanim

Binary file not shown.

After

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 B

View file

@ -0,0 +1,2 @@
RGB 22, 22, 12
RGB 07, 15, 25

View file

@ -167,6 +167,7 @@ AnimationIdlePointers:
dw ScytherAnimationIdle dw ScytherAnimationIdle
dw KleavorAnimationIdle dw KleavorAnimationIdle
dw JynxAnimationIdle dw JynxAnimationIdle
dw BuuAnimationIdle
dw ElectabuzzAnimationIdle dw ElectabuzzAnimationIdle
dw MagmarAnimationIdle dw MagmarAnimationIdle
dw PinsirAnimationIdle dw PinsirAnimationIdle
@ -320,6 +321,7 @@ AnimationIdlePointers:
dw Porygon2AnimationIdle dw Porygon2AnimationIdle
dw StantlerAnimationIdle dw StantlerAnimationIdle
dw SmeargleAnimationIdle dw SmeargleAnimationIdle
dw GrenmarAnimationIdle
dw TyrogueAnimationIdle dw TyrogueAnimationIdle
dw HitmontopAnimationIdle dw HitmontopAnimationIdle
dw SmoochumAnimationIdle dw SmoochumAnimationIdle

View file

@ -165,6 +165,7 @@ MrMimeAnimationIdle: INCLUDE "gfx/pokemon/mr__mime/anim_idle.asm"
ScytherAnimationIdle: INCLUDE "gfx/pokemon/scyther/anim_idle.asm" ScytherAnimationIdle: INCLUDE "gfx/pokemon/scyther/anim_idle.asm"
KleavorAnimationIdle: INCLUDE "gfx/pokemon/kleavor/anim_idle.asm" KleavorAnimationIdle: INCLUDE "gfx/pokemon/kleavor/anim_idle.asm"
JynxAnimationIdle: INCLUDE "gfx/pokemon/jynx/anim_idle.asm" JynxAnimationIdle: INCLUDE "gfx/pokemon/jynx/anim_idle.asm"
BuuAnimationIdle: INCLUDE "gfx/pokemon/buu/anim_idle.asm"
ElectabuzzAnimationIdle: INCLUDE "gfx/pokemon/electabuzz/anim_idle.asm" ElectabuzzAnimationIdle: INCLUDE "gfx/pokemon/electabuzz/anim_idle.asm"
MagmarAnimationIdle: INCLUDE "gfx/pokemon/magmar/anim_idle.asm" MagmarAnimationIdle: INCLUDE "gfx/pokemon/magmar/anim_idle.asm"
PinsirAnimationIdle: INCLUDE "gfx/pokemon/pinsir/anim_idle.asm" PinsirAnimationIdle: INCLUDE "gfx/pokemon/pinsir/anim_idle.asm"
@ -318,6 +319,7 @@ DonphanAnimationIdle: INCLUDE "gfx/pokemon/donphan/anim_idle.asm"
Porygon2AnimationIdle: INCLUDE "gfx/pokemon/porygon2/anim_idle.asm" Porygon2AnimationIdle: INCLUDE "gfx/pokemon/porygon2/anim_idle.asm"
StantlerAnimationIdle: INCLUDE "gfx/pokemon/stantler/anim_idle.asm" StantlerAnimationIdle: INCLUDE "gfx/pokemon/stantler/anim_idle.asm"
SmeargleAnimationIdle: INCLUDE "gfx/pokemon/smeargle/anim_idle.asm" SmeargleAnimationIdle: INCLUDE "gfx/pokemon/smeargle/anim_idle.asm"
GrenmarAnimationIdle: INCLUDE "gfx/pokemon/grenmar/anim_idle.asm"
TyrogueAnimationIdle: INCLUDE "gfx/pokemon/tyrogue/anim_idle.asm" TyrogueAnimationIdle: INCLUDE "gfx/pokemon/tyrogue/anim_idle.asm"
HitmontopAnimationIdle: INCLUDE "gfx/pokemon/hitmontop/anim_idle.asm" HitmontopAnimationIdle: INCLUDE "gfx/pokemon/hitmontop/anim_idle.asm"
SmoochumAnimationIdle: INCLUDE "gfx/pokemon/smoochum/anim_idle.asm" SmoochumAnimationIdle: INCLUDE "gfx/pokemon/smoochum/anim_idle.asm"

View file

@ -122,6 +122,7 @@ DonphanFrames: INCLUDE "gfx/pokemon/donphan/frames.asm"
Porygon2Frames: INCLUDE "gfx/pokemon/porygon2/frames.asm" Porygon2Frames: INCLUDE "gfx/pokemon/porygon2/frames.asm"
StantlerFrames: INCLUDE "gfx/pokemon/stantler/frames.asm" StantlerFrames: INCLUDE "gfx/pokemon/stantler/frames.asm"
SmeargleFrames: INCLUDE "gfx/pokemon/smeargle/frames.asm" SmeargleFrames: INCLUDE "gfx/pokemon/smeargle/frames.asm"
GrenmarFrames: INCLUDE "gfx/pokemon/grenmar/frames.asm"
TyrogueFrames: INCLUDE "gfx/pokemon/tyrogue/frames.asm" TyrogueFrames: INCLUDE "gfx/pokemon/tyrogue/frames.asm"
HitmontopFrames: INCLUDE "gfx/pokemon/hitmontop/frames.asm" HitmontopFrames: INCLUDE "gfx/pokemon/hitmontop/frames.asm"
SmoochumFrames: INCLUDE "gfx/pokemon/smoochum/frames.asm" SmoochumFrames: INCLUDE "gfx/pokemon/smoochum/frames.asm"

View file

@ -167,6 +167,7 @@ MrMimeFrames: INCLUDE "gfx/pokemon/mr__mime/frames.asm"
ScytherFrames: INCLUDE "gfx/pokemon/scyther/frames.asm" ScytherFrames: INCLUDE "gfx/pokemon/scyther/frames.asm"
KleavorFrames: INCLUDE "gfx/pokemon/kleavor/frames.asm" KleavorFrames: INCLUDE "gfx/pokemon/kleavor/frames.asm"
JynxFrames: INCLUDE "gfx/pokemon/jynx/frames.asm" JynxFrames: INCLUDE "gfx/pokemon/jynx/frames.asm"
BuuFrames: INCLUDE "gfx/pokemon/buu/frames.asm"
ElectabuzzFrames: INCLUDE "gfx/pokemon/electabuzz/frames.asm" ElectabuzzFrames: INCLUDE "gfx/pokemon/electabuzz/frames.asm"
MagmarFrames: INCLUDE "gfx/pokemon/magmar/frames.asm" MagmarFrames: INCLUDE "gfx/pokemon/magmar/frames.asm"
PinsirFrames: INCLUDE "gfx/pokemon/pinsir/frames.asm" PinsirFrames: INCLUDE "gfx/pokemon/pinsir/frames.asm"