woohoo it's orfry

This commit is contained in:
Llinos Evans 2024-07-02 11:31:10 +01:00
parent ca092d9bd1
commit c6b2bf0885
33 changed files with 61 additions and 5 deletions

View file

@ -168,6 +168,7 @@ INCLUDE "data/pokemon/base_stats/horsea.asm"
INCLUDE "data/pokemon/base_stats/seadra.asm"
INCLUDE "data/pokemon/base_stats/blastyke.asm"
INCLUDE "data/pokemon/base_stats/blastoise.asm"
INCLUDE "data/pokemon/base_stats/orfry.asm"
INCLUDE "data/pokemon/base_stats/goldeen.asm"
INCLUDE "data/pokemon/base_stats/seaking.asm"
INCLUDE "data/pokemon/base_stats/staryu.asm"

View file

@ -147,6 +147,7 @@ PokemonCries::
mon_cry CRY_CLEFAIRY, 60, 129 ; SEADRA
mon_cry CRY_BLASTOISE, 247, 128 ; BLASTYKE
mon_cry CRY_BLASTOISE, 0, 256 ; BLASTOISE
mon_cry CRY_NIDORAN_M, 0, 0 ; ORFRY (incomplete)
mon_cry CRY_CATERPIE, 128, 192 ; GOLDEEN
mon_cry CRY_CATERPIE, 16, 383 ; SEAKING
mon_cry CRY_PARAS, 2, 160 ; STARYU

View file

@ -145,6 +145,7 @@ HorseaPokedexEntry:: INCLUDE "data/pokemon/dex_entries/horsea.asm"
SeadraPokedexEntry:: INCLUDE "data/pokemon/dex_entries/seadra.asm"
BlastykePokedexEntry:: INCLUDE "data/pokemon/dex_entries/blastyke.asm"
BlastoisePokedexEntry:: INCLUDE "data/pokemon/dex_entries/blastoise.asm"
OrfryPokedexEntry:: INCLUDE "data/pokemon/dex_entries/orfry.asm"
GoldeenPokedexEntry:: INCLUDE "data/pokemon/dex_entries/goldeen.asm"
SeakingPokedexEntry:: INCLUDE "data/pokemon/dex_entries/seaking.asm"
StaryuPokedexEntry:: INCLUDE "data/pokemon/dex_entries/staryu.asm"

View file

@ -0,0 +1,10 @@
db "GOLDFISH@" ; species name
dw 200, 330 ; height, weight - placeholder (port from kep at some point)
db "Tiny, weak, and"
next "easily preyed on."
next "It's a popular"
page "prize at fairs"
next "and carnivals,"
next "but it grows fast.@" ; A personal touch! My first pet was a goldfish from a fair in Lincolnshire! This happens in Japan a lot too. ~ PvK

View file

@ -142,6 +142,7 @@ PokedexDataPointerTable:
dba SeadraPokedexEntry
dba BlastykePokedexEntry
dba BlastoisePokedexEntry
dba OrfryPokedexEntry
dba GoldeenPokedexEntry
dba SeakingPokedexEntry
dba StaryuPokedexEntry

View file

@ -209,6 +209,7 @@ AlphabeticalPokedexOrder:
dw OMANYTE
dw OMASTAR
dw ONIX
dw ORFRY
dw PALSSIO
dw PARAS
dw PARASECT

View file

@ -99,6 +99,7 @@ NewPokedexOrder:
dw POLITOED
dw MAGIKARP
dw GYARADOS
dw ORFRY
dw GOLDEEN
dw SEAKING
dw SLOWPOKE

View file

@ -142,7 +142,8 @@ EggMovePointers1:
dw NoEggMoves1
dw BlastykeEggMoves ; Blastyke
dw NoEggMoves1 ; Blastoise
dw GoldeenEggMoves
dw OrfryEggMoves
dw NoEggMoves1
dw NoEggMoves1
dw NoEggMoves1
dw NoEggMoves1
@ -561,7 +562,7 @@ BlastykeEggMoves:
dw FLAIL
dw -1 ; end
GoldeenEggMoves:
OrfryEggMoves:
dw PSYBEAM
dw HAZE
dw HYDRO_PUMP

View file

@ -142,6 +142,7 @@ EvosAttacksPointers1::
dw SeadraEvosAttacks
dw BlastykeEvosAttacks
dw BlastoiseEvosAttacks
dw OrfryEvosAttacks
dw GoldeenEvosAttacks
dw SeakingEvosAttacks
dw StaryuEvosAttacks
@ -2105,6 +2106,19 @@ db 0 ; no more evolutions
dbw 68, HYDRO_PUMP
db 0 ; no more level-up moves
OrfryEvosAttacks:
dbbw EVOLVE_LEVEL, 16, GOLDEEN
db 0 ; no more evolutions
dbw 1, PECK
dbw 1, TAIL_WHIP
dbw 7, SUPERSONIC
dbw 12, HORN_ATTACK
dbw 16, FURY_ATTACK
dbw 26, WATERFALL
dbw 30, HORN_DRILL
dbw 34, AGILITY
db 0 ; no more level-up moves
GoldeenEvosAttacks:
dbbw EVOLVE_LEVEL, 33, SEAKING
db 0 ; no more evolutions

View file

@ -142,8 +142,9 @@ FirstEvoStages::
dw HORSEA
dw BLASTYKE
dw BLASTYKE
dw GOLDEEN
dw GOLDEEN
dw ORFRY
dw ORFRY
dw ORFRY
dw STARYU ;78
dw STARYU
dw MR__MIME

View file

@ -143,6 +143,7 @@ KantoMonSpecials:
db 95 ; SEADRA
db 45 ; BLASTYKE
db 85 ; BLASTOISE
db 20 ; ORFRY
db 50 ; GOLDEEN
db 80 ; SEAKING
db 70 ; STARYU

View file

@ -338,4 +338,5 @@ Pokered_MonIndices:
db IRON_TREADS
db IRON_BUNDLE
db IRON_THORNS
db ORFRY
assert_table_length NUM_POKEMON - 1

View file

@ -143,6 +143,7 @@ MonMenuIcons:
db ICON_FISH ; SEADRA
db ICON_SQUIRTLE ; BLASTYKE
db ICON_SQUIRTLE ; BLASTOISE
db ICON_FISH ; ORFRY
db ICON_FISH ; GOLDEEN
db ICON_FISH ; SEAKING
db ICON_STARYU ; STARYU

View file

@ -145,6 +145,7 @@ PokemonNames::
db "SEADRA@@@@"
db "BLASTYKE@@"
db "BLASTOISE@"
db "ORFRY@@@@@"
db "GOLDEEN@@@"
db "SEAKING@@@"
db "STARYU@@@@"

View file

@ -315,6 +315,8 @@ INCBIN "gfx/pokemon/blastyke/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/blastyke/shiny.pal"
INCBIN "gfx/pokemon/blastoise/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/blastoise/shiny.pal"
INCBIN "gfx/pokemon/orfry/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/orfry/shiny.pal"
INCBIN "gfx/pokemon/goldeen/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/goldeen/shiny.pal"
INCBIN "gfx/pokemon/seaking/front.gbcpal", middle_colors

View file

@ -295,6 +295,8 @@ PokemonPicPointers::
dba BlastykeBackpic
dba BlastoiseFrontpic
dba BlastoiseBackpic
dba OrfryFrontpic
dba OrfryBackpic
dba GoldeenFrontpic
dba GoldeenBackpic
dba SeakingFrontpic