mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-17 02:30:50 +12:00
woohoo it's orfry
This commit is contained in:
parent
ca092d9bd1
commit
c6b2bf0885
|
@ -160,6 +160,7 @@
|
||||||
const SEADRA ; 75
|
const SEADRA ; 75
|
||||||
const BLASTYKE
|
const BLASTYKE
|
||||||
const BLASTOISE
|
const BLASTOISE
|
||||||
|
const ORFRY
|
||||||
const GOLDEEN ; 76
|
const GOLDEEN ; 76
|
||||||
const SEAKING ; 77
|
const SEAKING ; 77
|
||||||
const STARYU ; 78
|
const STARYU ; 78
|
||||||
|
|
|
@ -168,6 +168,7 @@ INCLUDE "data/pokemon/base_stats/horsea.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/seadra.asm"
|
INCLUDE "data/pokemon/base_stats/seadra.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/blastyke.asm"
|
INCLUDE "data/pokemon/base_stats/blastyke.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/blastoise.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/goldeen.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/seaking.asm"
|
INCLUDE "data/pokemon/base_stats/seaking.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/staryu.asm"
|
INCLUDE "data/pokemon/base_stats/staryu.asm"
|
||||||
|
|
|
@ -147,6 +147,7 @@ PokemonCries::
|
||||||
mon_cry CRY_CLEFAIRY, 60, 129 ; SEADRA
|
mon_cry CRY_CLEFAIRY, 60, 129 ; SEADRA
|
||||||
mon_cry CRY_BLASTOISE, 247, 128 ; BLASTYKE
|
mon_cry CRY_BLASTOISE, 247, 128 ; BLASTYKE
|
||||||
mon_cry CRY_BLASTOISE, 0, 256 ; BLASTOISE
|
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, 128, 192 ; GOLDEEN
|
||||||
mon_cry CRY_CATERPIE, 16, 383 ; SEAKING
|
mon_cry CRY_CATERPIE, 16, 383 ; SEAKING
|
||||||
mon_cry CRY_PARAS, 2, 160 ; STARYU
|
mon_cry CRY_PARAS, 2, 160 ; STARYU
|
||||||
|
|
|
@ -145,6 +145,7 @@ HorseaPokedexEntry:: INCLUDE "data/pokemon/dex_entries/horsea.asm"
|
||||||
SeadraPokedexEntry:: INCLUDE "data/pokemon/dex_entries/seadra.asm"
|
SeadraPokedexEntry:: INCLUDE "data/pokemon/dex_entries/seadra.asm"
|
||||||
BlastykePokedexEntry:: INCLUDE "data/pokemon/dex_entries/blastyke.asm"
|
BlastykePokedexEntry:: INCLUDE "data/pokemon/dex_entries/blastyke.asm"
|
||||||
BlastoisePokedexEntry:: INCLUDE "data/pokemon/dex_entries/blastoise.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"
|
GoldeenPokedexEntry:: INCLUDE "data/pokemon/dex_entries/goldeen.asm"
|
||||||
SeakingPokedexEntry:: INCLUDE "data/pokemon/dex_entries/seaking.asm"
|
SeakingPokedexEntry:: INCLUDE "data/pokemon/dex_entries/seaking.asm"
|
||||||
StaryuPokedexEntry:: INCLUDE "data/pokemon/dex_entries/staryu.asm"
|
StaryuPokedexEntry:: INCLUDE "data/pokemon/dex_entries/staryu.asm"
|
||||||
|
|
10
data/pokemon/dex_entries/orfry.asm
Normal file
10
data/pokemon/dex_entries/orfry.asm
Normal 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
|
|
@ -142,6 +142,7 @@ PokedexDataPointerTable:
|
||||||
dba SeadraPokedexEntry
|
dba SeadraPokedexEntry
|
||||||
dba BlastykePokedexEntry
|
dba BlastykePokedexEntry
|
||||||
dba BlastoisePokedexEntry
|
dba BlastoisePokedexEntry
|
||||||
|
dba OrfryPokedexEntry
|
||||||
dba GoldeenPokedexEntry
|
dba GoldeenPokedexEntry
|
||||||
dba SeakingPokedexEntry
|
dba SeakingPokedexEntry
|
||||||
dba StaryuPokedexEntry
|
dba StaryuPokedexEntry
|
||||||
|
|
|
@ -209,6 +209,7 @@ AlphabeticalPokedexOrder:
|
||||||
dw OMANYTE
|
dw OMANYTE
|
||||||
dw OMASTAR
|
dw OMASTAR
|
||||||
dw ONIX
|
dw ONIX
|
||||||
|
dw ORFRY
|
||||||
dw PALSSIO
|
dw PALSSIO
|
||||||
dw PARAS
|
dw PARAS
|
||||||
dw PARASECT
|
dw PARASECT
|
||||||
|
|
|
@ -99,6 +99,7 @@ NewPokedexOrder:
|
||||||
dw POLITOED
|
dw POLITOED
|
||||||
dw MAGIKARP
|
dw MAGIKARP
|
||||||
dw GYARADOS
|
dw GYARADOS
|
||||||
|
dw ORFRY
|
||||||
dw GOLDEEN
|
dw GOLDEEN
|
||||||
dw SEAKING
|
dw SEAKING
|
||||||
dw SLOWPOKE
|
dw SLOWPOKE
|
||||||
|
|
|
@ -142,7 +142,8 @@ EggMovePointers1:
|
||||||
dw NoEggMoves1
|
dw NoEggMoves1
|
||||||
dw BlastykeEggMoves ; Blastyke
|
dw BlastykeEggMoves ; Blastyke
|
||||||
dw NoEggMoves1 ; Blastoise
|
dw NoEggMoves1 ; Blastoise
|
||||||
dw GoldeenEggMoves
|
dw OrfryEggMoves
|
||||||
|
dw NoEggMoves1
|
||||||
dw NoEggMoves1
|
dw NoEggMoves1
|
||||||
dw NoEggMoves1
|
dw NoEggMoves1
|
||||||
dw NoEggMoves1
|
dw NoEggMoves1
|
||||||
|
@ -561,7 +562,7 @@ BlastykeEggMoves:
|
||||||
dw FLAIL
|
dw FLAIL
|
||||||
dw -1 ; end
|
dw -1 ; end
|
||||||
|
|
||||||
GoldeenEggMoves:
|
OrfryEggMoves:
|
||||||
dw PSYBEAM
|
dw PSYBEAM
|
||||||
dw HAZE
|
dw HAZE
|
||||||
dw HYDRO_PUMP
|
dw HYDRO_PUMP
|
||||||
|
|
|
@ -142,6 +142,7 @@ EvosAttacksPointers1::
|
||||||
dw SeadraEvosAttacks
|
dw SeadraEvosAttacks
|
||||||
dw BlastykeEvosAttacks
|
dw BlastykeEvosAttacks
|
||||||
dw BlastoiseEvosAttacks
|
dw BlastoiseEvosAttacks
|
||||||
|
dw OrfryEvosAttacks
|
||||||
dw GoldeenEvosAttacks
|
dw GoldeenEvosAttacks
|
||||||
dw SeakingEvosAttacks
|
dw SeakingEvosAttacks
|
||||||
dw StaryuEvosAttacks
|
dw StaryuEvosAttacks
|
||||||
|
@ -2105,6 +2106,19 @@ db 0 ; no more evolutions
|
||||||
dbw 68, HYDRO_PUMP
|
dbw 68, HYDRO_PUMP
|
||||||
db 0 ; no more level-up moves
|
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:
|
GoldeenEvosAttacks:
|
||||||
dbbw EVOLVE_LEVEL, 33, SEAKING
|
dbbw EVOLVE_LEVEL, 33, SEAKING
|
||||||
db 0 ; no more evolutions
|
db 0 ; no more evolutions
|
||||||
|
|
|
@ -142,8 +142,9 @@ FirstEvoStages::
|
||||||
dw HORSEA
|
dw HORSEA
|
||||||
dw BLASTYKE
|
dw BLASTYKE
|
||||||
dw BLASTYKE
|
dw BLASTYKE
|
||||||
dw GOLDEEN
|
dw ORFRY
|
||||||
dw GOLDEEN
|
dw ORFRY
|
||||||
|
dw ORFRY
|
||||||
dw STARYU ;78
|
dw STARYU ;78
|
||||||
dw STARYU
|
dw STARYU
|
||||||
dw MR__MIME
|
dw MR__MIME
|
||||||
|
|
|
@ -143,6 +143,7 @@ KantoMonSpecials:
|
||||||
db 95 ; SEADRA
|
db 95 ; SEADRA
|
||||||
db 45 ; BLASTYKE
|
db 45 ; BLASTYKE
|
||||||
db 85 ; BLASTOISE
|
db 85 ; BLASTOISE
|
||||||
|
db 20 ; ORFRY
|
||||||
db 50 ; GOLDEEN
|
db 50 ; GOLDEEN
|
||||||
db 80 ; SEAKING
|
db 80 ; SEAKING
|
||||||
db 70 ; STARYU
|
db 70 ; STARYU
|
||||||
|
|
|
@ -338,4 +338,5 @@ Pokered_MonIndices:
|
||||||
db IRON_TREADS
|
db IRON_TREADS
|
||||||
db IRON_BUNDLE
|
db IRON_BUNDLE
|
||||||
db IRON_THORNS
|
db IRON_THORNS
|
||||||
|
db ORFRY
|
||||||
assert_table_length NUM_POKEMON - 1
|
assert_table_length NUM_POKEMON - 1
|
||||||
|
|
|
@ -143,6 +143,7 @@ MonMenuIcons:
|
||||||
db ICON_FISH ; SEADRA
|
db ICON_FISH ; SEADRA
|
||||||
db ICON_SQUIRTLE ; BLASTYKE
|
db ICON_SQUIRTLE ; BLASTYKE
|
||||||
db ICON_SQUIRTLE ; BLASTOISE
|
db ICON_SQUIRTLE ; BLASTOISE
|
||||||
|
db ICON_FISH ; ORFRY
|
||||||
db ICON_FISH ; GOLDEEN
|
db ICON_FISH ; GOLDEEN
|
||||||
db ICON_FISH ; SEAKING
|
db ICON_FISH ; SEAKING
|
||||||
db ICON_STARYU ; STARYU
|
db ICON_STARYU ; STARYU
|
||||||
|
|
|
@ -145,6 +145,7 @@ PokemonNames::
|
||||||
db "SEADRA@@@@"
|
db "SEADRA@@@@"
|
||||||
db "BLASTYKE@@"
|
db "BLASTYKE@@"
|
||||||
db "BLASTOISE@"
|
db "BLASTOISE@"
|
||||||
|
db "ORFRY@@@@@"
|
||||||
db "GOLDEEN@@@"
|
db "GOLDEEN@@@"
|
||||||
db "SEAKING@@@"
|
db "SEAKING@@@"
|
||||||
db "STARYU@@@@"
|
db "STARYU@@@@"
|
||||||
|
|
|
@ -315,6 +315,8 @@ INCBIN "gfx/pokemon/blastyke/front.gbcpal", middle_colors
|
||||||
INCLUDE "gfx/pokemon/blastyke/shiny.pal"
|
INCLUDE "gfx/pokemon/blastyke/shiny.pal"
|
||||||
INCBIN "gfx/pokemon/blastoise/front.gbcpal", middle_colors
|
INCBIN "gfx/pokemon/blastoise/front.gbcpal", middle_colors
|
||||||
INCLUDE "gfx/pokemon/blastoise/shiny.pal"
|
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
|
INCBIN "gfx/pokemon/goldeen/front.gbcpal", middle_colors
|
||||||
INCLUDE "gfx/pokemon/goldeen/shiny.pal"
|
INCLUDE "gfx/pokemon/goldeen/shiny.pal"
|
||||||
INCBIN "gfx/pokemon/seaking/front.gbcpal", middle_colors
|
INCBIN "gfx/pokemon/seaking/front.gbcpal", middle_colors
|
||||||
|
|
|
@ -295,6 +295,8 @@ PokemonPicPointers::
|
||||||
dba BlastykeBackpic
|
dba BlastykeBackpic
|
||||||
dba BlastoiseFrontpic
|
dba BlastoiseFrontpic
|
||||||
dba BlastoiseBackpic
|
dba BlastoiseBackpic
|
||||||
|
dba OrfryFrontpic
|
||||||
|
dba OrfryBackpic
|
||||||
dba GoldeenFrontpic
|
dba GoldeenFrontpic
|
||||||
dba GoldeenBackpic
|
dba GoldeenBackpic
|
||||||
dba SeakingFrontpic
|
dba SeakingFrontpic
|
||||||
|
|
|
@ -142,6 +142,7 @@ INCBIN "gfx/footprints/horsea.1bpp"
|
||||||
INCBIN "gfx/footprints/seadra.1bpp"
|
INCBIN "gfx/footprints/seadra.1bpp"
|
||||||
INCBIN "gfx/footprints/blastyke.1bpp"
|
INCBIN "gfx/footprints/blastyke.1bpp"
|
||||||
INCBIN "gfx/footprints/blastoise.1bpp"
|
INCBIN "gfx/footprints/blastoise.1bpp"
|
||||||
|
INCBIN "gfx/footprints/orfry.1bpp"
|
||||||
INCBIN "gfx/footprints/goldeen.1bpp"
|
INCBIN "gfx/footprints/goldeen.1bpp"
|
||||||
INCBIN "gfx/footprints/seaking.1bpp"
|
INCBIN "gfx/footprints/seaking.1bpp"
|
||||||
INCBIN "gfx/footprints/staryu.1bpp"
|
INCBIN "gfx/footprints/staryu.1bpp"
|
||||||
|
|
BIN
gfx/footprints/orfry.png
Normal file
BIN
gfx/footprints/orfry.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 69 B |
|
@ -898,3 +898,5 @@ IronBundleFrontpic: INCBIN "gfx/pokemon/iron_bundle/front.animated.2bpp.lz"
|
||||||
IronBundleBackpic: INCBIN "gfx/pokemon/iron_bundle/back.2bpp.lz"
|
IronBundleBackpic: INCBIN "gfx/pokemon/iron_bundle/back.2bpp.lz"
|
||||||
IronThornsFrontpic: INCBIN "gfx/pokemon/iron_thorns/front.animated.2bpp.lz"
|
IronThornsFrontpic: INCBIN "gfx/pokemon/iron_thorns/front.animated.2bpp.lz"
|
||||||
IronThornsBackpic: INCBIN "gfx/pokemon/iron_thorns/back.2bpp.lz"
|
IronThornsBackpic: INCBIN "gfx/pokemon/iron_thorns/back.2bpp.lz"
|
||||||
|
OrfryFrontpic: INCBIN "gfx/pokemon/orfry/front.animated.2bpp.lz"
|
||||||
|
OrfryBackpic: INCBIN "gfx/pokemon/orfry/back.2bpp.lz"
|
|
@ -141,6 +141,7 @@ AnimationPointers:
|
||||||
dw SeadraAnimation
|
dw SeadraAnimation
|
||||||
dw BlastykeAnimation
|
dw BlastykeAnimation
|
||||||
dw BlastoiseAnimation
|
dw BlastoiseAnimation
|
||||||
|
dw OrfryAnimation
|
||||||
dw GoldeenAnimation
|
dw GoldeenAnimation
|
||||||
dw SeakingAnimation
|
dw SeakingAnimation
|
||||||
dw StaryuAnimation
|
dw StaryuAnimation
|
||||||
|
|
|
@ -139,6 +139,7 @@ HorseaAnimation: INCLUDE "gfx/pokemon/horsea/anim.asm"
|
||||||
SeadraAnimation: INCLUDE "gfx/pokemon/seadra/anim.asm"
|
SeadraAnimation: INCLUDE "gfx/pokemon/seadra/anim.asm"
|
||||||
BlastykeAnimation: INCLUDE "gfx/pokemon/blastyke/anim.asm"
|
BlastykeAnimation: INCLUDE "gfx/pokemon/blastyke/anim.asm"
|
||||||
BlastoiseAnimation: INCLUDE "gfx/pokemon/blastoise/anim.asm"
|
BlastoiseAnimation: INCLUDE "gfx/pokemon/blastoise/anim.asm"
|
||||||
|
OrfryAnimation: INCLUDE "gfx/pokemon/orfry/anim.asm"
|
||||||
GoldeenAnimation: INCLUDE "gfx/pokemon/goldeen/anim.asm"
|
GoldeenAnimation: INCLUDE "gfx/pokemon/goldeen/anim.asm"
|
||||||
SeakingAnimation: INCLUDE "gfx/pokemon/seaking/anim.asm"
|
SeakingAnimation: INCLUDE "gfx/pokemon/seaking/anim.asm"
|
||||||
StaryuAnimation: INCLUDE "gfx/pokemon/staryu/anim.asm"
|
StaryuAnimation: INCLUDE "gfx/pokemon/staryu/anim.asm"
|
||||||
|
|
|
@ -141,6 +141,7 @@ BitmasksPointers:
|
||||||
dw SeadraBitmasks
|
dw SeadraBitmasks
|
||||||
dw BlastykeBitmasks
|
dw BlastykeBitmasks
|
||||||
dw BlastoiseBitmasks
|
dw BlastoiseBitmasks
|
||||||
|
dw OrfryBitmasks
|
||||||
dw GoldeenBitmasks
|
dw GoldeenBitmasks
|
||||||
dw SeakingBitmasks
|
dw SeakingBitmasks
|
||||||
dw StaryuBitmasks
|
dw StaryuBitmasks
|
||||||
|
|
|
@ -139,6 +139,7 @@ HorseaBitmasks: INCLUDE "gfx/pokemon/horsea/bitmask.asm"
|
||||||
SeadraBitmasks: INCLUDE "gfx/pokemon/seadra/bitmask.asm"
|
SeadraBitmasks: INCLUDE "gfx/pokemon/seadra/bitmask.asm"
|
||||||
BlastykeBitmasks: INCLUDE "gfx/pokemon/blastyke/bitmask.asm"
|
BlastykeBitmasks: INCLUDE "gfx/pokemon/blastyke/bitmask.asm"
|
||||||
BlastoiseBitmasks: INCLUDE "gfx/pokemon/blastoise/bitmask.asm"
|
BlastoiseBitmasks: INCLUDE "gfx/pokemon/blastoise/bitmask.asm"
|
||||||
|
OrfryBitmasks: INCLUDE "gfx/pokemon/orfry/bitmask.asm"
|
||||||
GoldeenBitmasks: INCLUDE "gfx/pokemon/goldeen/bitmask.asm"
|
GoldeenBitmasks: INCLUDE "gfx/pokemon/goldeen/bitmask.asm"
|
||||||
SeakingBitmasks: INCLUDE "gfx/pokemon/seaking/bitmask.asm"
|
SeakingBitmasks: INCLUDE "gfx/pokemon/seaking/bitmask.asm"
|
||||||
StaryuBitmasks: INCLUDE "gfx/pokemon/staryu/bitmask.asm"
|
StaryuBitmasks: INCLUDE "gfx/pokemon/staryu/bitmask.asm"
|
||||||
|
|
|
@ -141,6 +141,7 @@ FramesPointers:
|
||||||
dba SeadraFrames
|
dba SeadraFrames
|
||||||
dba BlastykeFrames
|
dba BlastykeFrames
|
||||||
dba BlastoiseFrames
|
dba BlastoiseFrames
|
||||||
|
dba OrfryFrames
|
||||||
dba GoldeenFrames
|
dba GoldeenFrames
|
||||||
dba SeakingFrames
|
dba SeakingFrames
|
||||||
dba StaryuFrames
|
dba StaryuFrames
|
||||||
|
|
|
@ -141,6 +141,7 @@ AnimationIdlePointers:
|
||||||
dw SeadraAnimationIdle
|
dw SeadraAnimationIdle
|
||||||
dw BlastykeAnimationIdle
|
dw BlastykeAnimationIdle
|
||||||
dw BlastoiseAnimationIdle
|
dw BlastoiseAnimationIdle
|
||||||
|
dw OrfryAnimationIdle
|
||||||
dw GoldeenAnimationIdle
|
dw GoldeenAnimationIdle
|
||||||
dw SeakingAnimationIdle
|
dw SeakingAnimationIdle
|
||||||
dw StaryuAnimationIdle
|
dw StaryuAnimationIdle
|
||||||
|
|
|
@ -139,6 +139,7 @@ HorseaAnimationIdle: INCLUDE "gfx/pokemon/horsea/anim_idle.asm"
|
||||||
SeadraAnimationIdle: INCLUDE "gfx/pokemon/seadra/anim_idle.asm"
|
SeadraAnimationIdle: INCLUDE "gfx/pokemon/seadra/anim_idle.asm"
|
||||||
BlastykeAnimationIdle: INCLUDE "gfx/pokemon/blastyke/anim_idle.asm"
|
BlastykeAnimationIdle: INCLUDE "gfx/pokemon/blastyke/anim_idle.asm"
|
||||||
BlastoiseAnimationIdle: INCLUDE "gfx/pokemon/blastoise/anim_idle.asm"
|
BlastoiseAnimationIdle: INCLUDE "gfx/pokemon/blastoise/anim_idle.asm"
|
||||||
|
OrfryAnimationIdle: INCLUDE "gfx/pokemon/orfry/anim_idle.asm"
|
||||||
GoldeenAnimationIdle: INCLUDE "gfx/pokemon/goldeen/anim_idle.asm"
|
GoldeenAnimationIdle: INCLUDE "gfx/pokemon/goldeen/anim_idle.asm"
|
||||||
SeakingAnimationIdle: INCLUDE "gfx/pokemon/seaking/anim_idle.asm"
|
SeakingAnimationIdle: INCLUDE "gfx/pokemon/seaking/anim_idle.asm"
|
||||||
StaryuAnimationIdle: INCLUDE "gfx/pokemon/staryu/anim_idle.asm"
|
StaryuAnimationIdle: INCLUDE "gfx/pokemon/staryu/anim_idle.asm"
|
||||||
|
|
|
@ -141,6 +141,7 @@ HorseaFrames: INCLUDE "gfx/pokemon/horsea/frames.asm"
|
||||||
SeadraFrames: INCLUDE "gfx/pokemon/seadra/frames.asm"
|
SeadraFrames: INCLUDE "gfx/pokemon/seadra/frames.asm"
|
||||||
BlastykeFrames: INCLUDE "gfx/pokemon/blastyke/frames.asm"
|
BlastykeFrames: INCLUDE "gfx/pokemon/blastyke/frames.asm"
|
||||||
BlastoiseFrames: INCLUDE "gfx/pokemon/blastoise/frames.asm"
|
BlastoiseFrames: INCLUDE "gfx/pokemon/blastoise/frames.asm"
|
||||||
|
OrfryFrames: INCLUDE "gfx/pokemon/orfry/frames.asm"
|
||||||
GoldeenFrames: INCLUDE "gfx/pokemon/goldeen/frames.asm"
|
GoldeenFrames: INCLUDE "gfx/pokemon/goldeen/frames.asm"
|
||||||
SeakingFrames: INCLUDE "gfx/pokemon/seaking/frames.asm"
|
SeakingFrames: INCLUDE "gfx/pokemon/seaking/frames.asm"
|
||||||
StaryuFrames: INCLUDE "gfx/pokemon/staryu/frames.asm"
|
StaryuFrames: INCLUDE "gfx/pokemon/staryu/frames.asm"
|
||||||
|
|
1
gfx/pokemon/orfry/anim.asm
Normal file
1
gfx/pokemon/orfry/anim.asm
Normal file
|
@ -0,0 +1 @@
|
||||||
|
endanim
|
1
gfx/pokemon/orfry/anim_idle.asm
Normal file
1
gfx/pokemon/orfry/anim_idle.asm
Normal file
|
@ -0,0 +1 @@
|
||||||
|
endanim
|
BIN
gfx/pokemon/orfry/back.png
Normal file
BIN
gfx/pokemon/orfry/back.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 304 B |
BIN
gfx/pokemon/orfry/front.png
Normal file
BIN
gfx/pokemon/orfry/front.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 315 B |
2
gfx/pokemon/orfry/shiny.pal
Normal file
2
gfx/pokemon/orfry/shiny.pal
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
RGB 22, 22, 12
|
||||||
|
RGB 07, 15, 25
|
Loading…
Reference in a new issue