Terrados & Bug Fix

Fixes Molambino and Luanbo not evolving properly (oops) and adds Magiprey/Terrados. Since there's no place to put Magiprey in Johto or Kanto, this'll likely be a Nihon exclusive. Got some stuff in mind!
This commit is contained in:
Llinos Evans 2024-07-07 09:27:46 +01:00
parent b451ca81ce
commit 62bdbe2a1b
44 changed files with 151 additions and 3 deletions

View file

@ -184,6 +184,8 @@
const TAUROS ; 80 const TAUROS ; 80
const MAGIKARP ; 81 const MAGIKARP ; 81
const GYARADOS ; 82 const GYARADOS ; 82
const MAGIPREY
const TERRADOS
const LAPRAS ; 83 const LAPRAS ; 83
const DITTO ; 84 const DITTO ; 84
const EEVEE ; 85 const EEVEE ; 85

View file

@ -192,6 +192,8 @@ INCLUDE "data/pokemon/base_stats/tricules.asm"
INCLUDE "data/pokemon/base_stats/tauros.asm" INCLUDE "data/pokemon/base_stats/tauros.asm"
INCLUDE "data/pokemon/base_stats/magikarp.asm" INCLUDE "data/pokemon/base_stats/magikarp.asm"
INCLUDE "data/pokemon/base_stats/gyarados.asm" INCLUDE "data/pokemon/base_stats/gyarados.asm"
INCLUDE "data/pokemon/base_stats/magiprey.asm"
INCLUDE "data/pokemon/base_stats/terrados.asm"
INCLUDE "data/pokemon/base_stats/lapras.asm" INCLUDE "data/pokemon/base_stats/lapras.asm"
INCLUDE "data/pokemon/base_stats/ditto.asm" INCLUDE "data/pokemon/base_stats/ditto.asm"
INCLUDE "data/pokemon/base_stats/eevee.asm" INCLUDE "data/pokemon/base_stats/eevee.asm"

View file

@ -0,0 +1,21 @@
db 0 ; species ID placeholder
db 20, 10, 55, 80, 15, 20
; hp atk def spd sat sdf
db GROUND, GROUND ; type
db 255 ; catch rate
db 20 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 5 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/magiprey/front.dimensions"
dw NULL, NULL ; unused (beta front/back pics)
db GROWTH_SLOW ; growth rate
dn EGG_MINERAL, EGG_DRAGON ; egg groups
; tm/hm learnset
tmhm
; end

View file

@ -0,0 +1,21 @@
db 0 ; species ID placeholder
db 95, 125, 79, 81, 60, 100
; hp atk def spd sat sdf
db GROUND, DARK ; type
db 45 ; catch rate
db 214 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 5 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/terrados/front.dimensions"
dw NULL, NULL ; unused (beta front/back pics)
db GROWTH_SLOW ; growth rate
dn EGG_MINERAL, EGG_DRAGON ; egg groups
; tm/hm learnset
tmhm HEADBUTT, CURSE, ROAR, TOXIC, ROCK_SMASH, HIDDEN_POWER, SUNNY_DAY, SNORE, HYPER_BEAM, PROTECT, ENDURE, FRUSTRATION, SOLARBEAM, DRAGONBREATH, IRON_TAIL, EARTHQUAKE, RETURN, DIG, MUD_SLAP, DOUBLE_TEAM, SWAGGER, SLEEP_TALK, SANDSTORM, FIRE_BLAST, REST, ATTRACT, SURF, STRENGTH, FLAMETHROWER
; end

View file

@ -171,6 +171,8 @@ PokemonCries::
mon_cry CRY_SQUIRTLE, 17, 192 ; TAUROS mon_cry CRY_SQUIRTLE, 17, 192 ; TAUROS
mon_cry CRY_EKANS, 128, 128 ; MAGIKARP mon_cry CRY_EKANS, 128, 128 ; MAGIKARP
mon_cry CRY_EKANS, 0, 256 ; GYARADOS mon_cry CRY_EKANS, 0, 256 ; GYARADOS
mon_cry CRY_EKANS, 128, 128 ; MAGIPREY (incomplete)
mon_cry CRY_EKANS, 0, 256 ; TERRADOS (incomplete)
mon_cry CRY_LAPRAS, 0, 256 ; LAPRAS mon_cry CRY_LAPRAS, 0, 256 ; LAPRAS
mon_cry CRY_PIDGEY, 255, 383 ; DITTO mon_cry CRY_PIDGEY, 255, 383 ; DITTO
mon_cry CRY_VENONAT, 136, 224 ; EEVEE mon_cry CRY_VENONAT, 136, 224 ; EEVEE

View file

@ -373,3 +373,5 @@ LugiaPokedexEntry:: INCLUDE "data/pokemon/dex_entries/lugia.asm"
HoOhPokedexEntry:: INCLUDE "data/pokemon/dex_entries/ho_oh.asm" HoOhPokedexEntry:: INCLUDE "data/pokemon/dex_entries/ho_oh.asm"
ShiShiPokedexEntry:: INCLUDE "data/pokemon/dex_entries/shi_shi.asm" ShiShiPokedexEntry:: INCLUDE "data/pokemon/dex_entries/shi_shi.asm"
CelebiPokedexEntry:: INCLUDE "data/pokemon/dex_entries/celebi.asm" CelebiPokedexEntry:: INCLUDE "data/pokemon/dex_entries/celebi.asm"
MagipreyPokedexEntry:: INCLUDE "data/pokemon/dex_entries/magiprey.asm"
TerradosPokedexEntry:: INCLUDE "data/pokemon/dex_entries/terrados.asm"

View file

@ -0,0 +1,10 @@
db "LAMPREY@" ; species name
dw 211, 220 ; height, weight
db "It hides in desert"
next "sands. When #MON"
next "come close, it"
page "latches onto"
next "them to suck"
next "their blood.@" ; blood is rarely said in mons so consider revising

View file

@ -0,0 +1,10 @@
db "TREMOR@" ; species name
dw 2104, 5180 ; height, weight
db "It blindly tunnels"
next "through the earth,"
next "feasting on any,"
page "unfortunate GRAVELER"
next "or ONIX that it"
next "comes across.@"

View file

@ -166,6 +166,8 @@ PokedexDataPointerTable:
dba TaurosPokedexEntry dba TaurosPokedexEntry
dba MagikarpPokedexEntry dba MagikarpPokedexEntry
dba GyaradosPokedexEntry dba GyaradosPokedexEntry
dba MagipreyPokedexEntry
dba TerradosPokedexEntry
dba LaprasPokedexEntry dba LaprasPokedexEntry
dba DittoPokedexEntry dba DittoPokedexEntry
dba EeveePokedexEntry dba EeveePokedexEntry

View file

@ -182,6 +182,7 @@ AlphabeticalPokedexOrder:
dw MAGBY dw MAGBY
dw MAGCARGO dw MAGCARGO
dw MAGIKARP dw MAGIKARP
dw MAGIPREY
dw MAGMAR dw MAGMAR
dw MAGNEMITE dw MAGNEMITE
dw MAGNETON dw MAGNETON
@ -320,6 +321,7 @@ AlphabeticalPokedexOrder:
dw TEDDIURSA dw TEDDIURSA
dw TENTACOOL dw TENTACOOL
dw TENTACRUEL dw TENTACRUEL
dw TERRADOS
dw TOGEPI dw TOGEPI
dw TOGETIC dw TOGETIC
dw TOGEKISS dw TOGEKISS

View file

@ -101,6 +101,8 @@ NewPokedexOrder:
dw REROAD dw REROAD
dw MAGIKARP dw MAGIKARP
dw GYARADOS dw GYARADOS
dw MAGIPREY
dw TERRADOS
dw ORFRY dw ORFRY
dw GOLDEEN dw GOLDEEN
dw SEAKING dw SEAKING

View file

@ -166,6 +166,8 @@ EggMovePointers1:
dw NoEggMoves1 dw NoEggMoves1
dw NoEggMoves1 dw NoEggMoves1
dw NoEggMoves1 dw NoEggMoves1
dw NoEggMoves1 ; Magiprey
dw NoEggMoves1 ; Terrados
dw LaprasEggMoves dw LaprasEggMoves
dw NoEggMoves1 dw NoEggMoves1
dw EeveeEggMoves dw EeveeEggMoves

View file

@ -1981,7 +1981,7 @@ TonquitoEvosAttacks:
db 0 ; no more level-up moves db 0 ; no more level-up moves
MolambinoEvosAttacks: MolambinoEvosAttacks:
db EVOLVE_LEVEL, 20, LUANBO dbbw EVOLVE_LEVEL, 20, LUANBO
dbw 1, BUBBLE dbw 1, BUBBLE
dbw 1, SUPERSONIC dbw 1, SUPERSONIC
; dbw 7, DRAINING_KISS ; move not yet implemented ; dbw 7, DRAINING_KISS ; move not yet implemented
@ -1995,7 +1995,7 @@ MolambinoEvosAttacks:
db 0 ; no more level-up moves db 0 ; no more level-up moves
LuanboEvosAttacks: LuanboEvosAttacks:
db EVOLVE_LEVEL, 35, GRANBO dbbw EVOLVE_LEVEL, 35, GRANBO
dbw 1, BUBBLE dbw 1, BUBBLE
dbw 1, SUPERSONIC dbw 1, SUPERSONIC
; dbw 7, DRAINING_KISS ; move not yet implemented ; dbw 7, DRAINING_KISS ; move not yet implemented

View file

@ -166,6 +166,8 @@ EvosAttacksPointers1::
dw TaurosEvosAttacks dw TaurosEvosAttacks
dw MagikarpEvosAttacks dw MagikarpEvosAttacks
dw GyaradosEvosAttacks dw GyaradosEvosAttacks
dw MagipreyEvosAttacks
dw TerradosEvosAttacks
dw LaprasEvosAttacks dw LaprasEvosAttacks
dw DittoEvosAttacks dw DittoEvosAttacks
dw EeveeEvosAttacks dw EeveeEvosAttacks
@ -2452,6 +2454,26 @@ GyaradosEvosAttacks:
dbw 50, HYPER_BEAM dbw 50, HYPER_BEAM
db 0 ; no more level-up moves db 0 ; no more level-up moves
MagipreyEvosAttacks:
dbbw EVOLVE_LEVEL, 20, TERRADOS
db 0 ; no more evolutions
dbw 1, SPLASH
dbw 15, LEECH_LIFE
dbw 30, FLAIL
db 0 ; no more level-up moves
TerradosEvosAttacks:
db 0 ; no more evolutions
dbw 1, DIG
dbw 20, BITE
dbw 25, MAGNITUDE
dbw 30, ROAR
dbw 35, CRUNCH
dbw 40, EARTHQUAKE
dbw 45, SANDSTORM
dbw 50, FISSURE
db 0 ; no more level-up moves
LaprasEvosAttacks: LaprasEvosAttacks:
db 0 ; no more evolutions db 0 ; no more evolutions
dbw 1, WATER_GUN dbw 1, WATER_GUN

View file

@ -166,6 +166,8 @@ FirstEvoStages::
dw TAUROS ;80 dw TAUROS ;80
dw MAGIKARP dw MAGIKARP
dw MAGIKARP dw MAGIKARP
dw MAGIPREY
dw MAGIPREY
dw LAPRAS dw LAPRAS
dw DITTO dw DITTO
dw EEVEE dw EEVEE

View file

@ -167,6 +167,8 @@ KantoMonSpecials:
db 70 ; TAUROS db 70 ; TAUROS
db 20 ; MAGIKARP db 20 ; MAGIKARP
db 100 ; GYARADOS db 100 ; GYARADOS
db 20 ; MAGIPREY
db 100 ; TERRADOS
db 95 ; LAPRAS db 95 ; LAPRAS
db 48 ; DITTO db 48 ; DITTO
db 65 ; EEVEE db 65 ; EEVEE

View file

@ -361,4 +361,6 @@ Pokered_MonIndices:
db WEIRDUCK db WEIRDUCK
db LUXWAN db LUXWAN
db CHARMADA db CHARMADA
db MAGIPREY
db TERRADOS
assert_table_length NUM_POKEMON - 1 assert_table_length NUM_POKEMON - 1

View file

@ -167,6 +167,8 @@ MonMenuIcons:
db ICON_EQUINE ; TAUROS db ICON_EQUINE ; TAUROS
db ICON_FISH ; MAGIKARP db ICON_FISH ; MAGIKARP
db ICON_GYARADOS ; GYARADOS db ICON_GYARADOS ; GYARADOS
db ICON_FISH ; MAGIPREY
db ICON_GYARADOS ; TERRADOS
db ICON_LAPRAS ; LAPRAS db ICON_LAPRAS ; LAPRAS
db ICON_BLOB ; DITTO db ICON_BLOB ; DITTO
db ICON_FOX ; EEVEE db ICON_FOX ; EEVEE

View file

@ -169,6 +169,8 @@ PokemonNames::
db "TAUROS@@@@" db "TAUROS@@@@"
db "MAGIKARP@@" db "MAGIKARP@@"
db "GYARADOS@@" db "GYARADOS@@"
db "MAGIPREY@@"
db "TERRADOS@@"
db "LAPRAS@@@@" db "LAPRAS@@@@"
db "DITTO@@@@@" db "DITTO@@@@@"
db "EEVEE@@@@@" db "EEVEE@@@@@"

View file

@ -363,6 +363,10 @@ INCBIN "gfx/pokemon/magikarp/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/magikarp/shiny.pal" INCLUDE "gfx/pokemon/magikarp/shiny.pal"
INCBIN "gfx/pokemon/gyarados/front.gbcpal", middle_colors INCBIN "gfx/pokemon/gyarados/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/gyarados/shiny.pal" INCLUDE "gfx/pokemon/gyarados/shiny.pal"
INCBIN "gfx/pokemon/magiprey/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/magiprey/shiny.pal"
INCBIN "gfx/pokemon/terrados/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/terrados/shiny.pal"
INCBIN "gfx/pokemon/lapras/front.gbcpal", middle_colors INCBIN "gfx/pokemon/lapras/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/lapras/shiny.pal" INCLUDE "gfx/pokemon/lapras/shiny.pal"
INCBIN "gfx/pokemon/ditto/front.gbcpal", middle_colors INCBIN "gfx/pokemon/ditto/front.gbcpal", middle_colors

View file

@ -343,6 +343,10 @@ PokemonPicPointers::
dba MagikarpBackpic dba MagikarpBackpic
dba GyaradosFrontpic dba GyaradosFrontpic
dba GyaradosBackpic dba GyaradosBackpic
dba MagipreyFrontpic
dba MagipreyBackpic
dba TerradosFrontpic
dba TerradosBackpic
dba LaprasFrontpic dba LaprasFrontpic
dba LaprasBackpic dba LaprasBackpic
dba DittoFrontpic dba DittoFrontpic

View file

@ -166,6 +166,8 @@ INCBIN "gfx/footprints/tricules.1bpp"
INCBIN "gfx/footprints/tauros.1bpp" INCBIN "gfx/footprints/tauros.1bpp"
INCBIN "gfx/footprints/magikarp.1bpp" INCBIN "gfx/footprints/magikarp.1bpp"
INCBIN "gfx/footprints/gyarados.1bpp" INCBIN "gfx/footprints/gyarados.1bpp"
INCBIN "gfx/footprints/magiprey.1bpp"
INCBIN "gfx/footprints/terrados.1bpp"
INCBIN "gfx/footprints/lapras.1bpp" INCBIN "gfx/footprints/lapras.1bpp"
INCBIN "gfx/footprints/ditto.1bpp" INCBIN "gfx/footprints/ditto.1bpp"
INCBIN "gfx/footprints/eevee.1bpp" INCBIN "gfx/footprints/eevee.1bpp"

BIN
gfx/footprints/magiprey.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 B

BIN
gfx/footprints/terrados.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 B

View file

@ -946,3 +946,7 @@ LuxwanFrontpic: INCBIN "gfx/pokemon/luxwan/front.animated.2bpp.lz"
LuxwanBackpic: INCBIN "gfx/pokemon/luxwan/back.2bpp.lz" LuxwanBackpic: INCBIN "gfx/pokemon/luxwan/back.2bpp.lz"
CharmadaFrontpic: INCBIN "gfx/pokemon/luxwan/front.animated.2bpp.lz" CharmadaFrontpic: INCBIN "gfx/pokemon/luxwan/front.animated.2bpp.lz"
CharmadaBackpic: INCBIN "gfx/pokemon/luxwan/back.2bpp.lz" CharmadaBackpic: INCBIN "gfx/pokemon/luxwan/back.2bpp.lz"
MagipreyFrontpic: INCBIN "gfx/pokemon/magiprey/front.animated.2bpp.lz"
MagipreyBackpic: INCBIN "gfx/pokemon/magiprey/back.2bpp.lz"
TerradosFrontpic: INCBIN "gfx/pokemon/terrados/front.animated.2bpp.lz"
TerradosBackpic: INCBIN "gfx/pokemon/terrados/back.2bpp.lz"

View file

@ -165,6 +165,8 @@ AnimationPointers:
dw TaurosAnimation dw TaurosAnimation
dw MagikarpAnimation dw MagikarpAnimation
dw GyaradosAnimation dw GyaradosAnimation
dw MagipreyAnimation
dw TerradosAnimation
dw LaprasAnimation dw LaprasAnimation
dw DittoAnimation dw DittoAnimation
dw EeveeAnimation dw EeveeAnimation

View file

@ -163,6 +163,8 @@ TriculesAnimation: INCLUDE "gfx/pokemon/tricules/anim.asm"
TaurosAnimation: INCLUDE "gfx/pokemon/tauros/anim.asm" TaurosAnimation: INCLUDE "gfx/pokemon/tauros/anim.asm"
MagikarpAnimation: INCLUDE "gfx/pokemon/magikarp/anim.asm" MagikarpAnimation: INCLUDE "gfx/pokemon/magikarp/anim.asm"
GyaradosAnimation: INCLUDE "gfx/pokemon/gyarados/anim.asm" GyaradosAnimation: INCLUDE "gfx/pokemon/gyarados/anim.asm"
MagipreyAnimation: INCLUDE "gfx/pokemon/magiprey/anim.asm"
TerradosAnimation: INCLUDE "gfx/pokemon/terrados/anim.asm"
LaprasAnimation: INCLUDE "gfx/pokemon/lapras/anim.asm" LaprasAnimation: INCLUDE "gfx/pokemon/lapras/anim.asm"
DittoAnimation: INCLUDE "gfx/pokemon/ditto/anim.asm" DittoAnimation: INCLUDE "gfx/pokemon/ditto/anim.asm"
EeveeAnimation: INCLUDE "gfx/pokemon/eevee/anim.asm" EeveeAnimation: INCLUDE "gfx/pokemon/eevee/anim.asm"

View file

@ -165,6 +165,8 @@ BitmasksPointers:
dw TaurosBitmasks dw TaurosBitmasks
dw MagikarpBitmasks dw MagikarpBitmasks
dw GyaradosBitmasks dw GyaradosBitmasks
dw MagipreyBitmasks
dw TerradosBitmasks
dw LaprasBitmasks dw LaprasBitmasks
dw DittoBitmasks dw DittoBitmasks
dw EeveeBitmasks dw EeveeBitmasks

View file

@ -163,6 +163,8 @@ TriculesBitmasks: INCLUDE "gfx/pokemon/tricules/bitmask.asm"
TaurosBitmasks: INCLUDE "gfx/pokemon/tauros/bitmask.asm" TaurosBitmasks: INCLUDE "gfx/pokemon/tauros/bitmask.asm"
MagikarpBitmasks: INCLUDE "gfx/pokemon/magikarp/bitmask.asm" MagikarpBitmasks: INCLUDE "gfx/pokemon/magikarp/bitmask.asm"
GyaradosBitmasks: INCLUDE "gfx/pokemon/gyarados/bitmask.asm" GyaradosBitmasks: INCLUDE "gfx/pokemon/gyarados/bitmask.asm"
MagipreyBitmasks: INCLUDE "gfx/pokemon/magiprey/bitmask.asm"
TerradosBitmasks: INCLUDE "gfx/pokemon/terrados/bitmask.asm"
LaprasBitmasks: INCLUDE "gfx/pokemon/lapras/bitmask.asm" LaprasBitmasks: INCLUDE "gfx/pokemon/lapras/bitmask.asm"
DittoBitmasks: INCLUDE "gfx/pokemon/ditto/bitmask.asm" DittoBitmasks: INCLUDE "gfx/pokemon/ditto/bitmask.asm"
EeveeBitmasks: INCLUDE "gfx/pokemon/eevee/bitmask.asm" EeveeBitmasks: INCLUDE "gfx/pokemon/eevee/bitmask.asm"

View file

@ -165,6 +165,8 @@ FramesPointers:
dba TaurosFrames dba TaurosFrames
dba MagikarpFrames dba MagikarpFrames
dba GyaradosFrames dba GyaradosFrames
dba MagipreyFrames
dba TerradosFrames
dba LaprasFrames dba LaprasFrames
dba DittoFrames dba DittoFrames
dba EeveeFrames dba EeveeFrames

View file

@ -165,6 +165,8 @@ AnimationIdlePointers:
dw TaurosAnimationIdle dw TaurosAnimationIdle
dw MagikarpAnimationIdle dw MagikarpAnimationIdle
dw GyaradosAnimationIdle dw GyaradosAnimationIdle
dw MagipreyAnimationIdle
dw TerradosAnimationIdle
dw LaprasAnimationIdle dw LaprasAnimationIdle
dw DittoAnimationIdle dw DittoAnimationIdle
dw EeveeAnimationIdle dw EeveeAnimationIdle

View file

@ -163,6 +163,8 @@ TriculesAnimationIdle: INCLUDE "gfx/pokemon/tricules/anim_idle.asm"
TaurosAnimationIdle: INCLUDE "gfx/pokemon/tauros/anim_idle.asm" TaurosAnimationIdle: INCLUDE "gfx/pokemon/tauros/anim_idle.asm"
MagikarpAnimationIdle: INCLUDE "gfx/pokemon/magikarp/anim_idle.asm" MagikarpAnimationIdle: INCLUDE "gfx/pokemon/magikarp/anim_idle.asm"
GyaradosAnimationIdle: INCLUDE "gfx/pokemon/gyarados/anim_idle.asm" GyaradosAnimationIdle: INCLUDE "gfx/pokemon/gyarados/anim_idle.asm"
MagipreyAnimationIdle: INCLUDE "gfx/pokemon/magiprey/anim_idle.asm"
TerradosAnimationIdle: INCLUDE "gfx/pokemon/terrados/anim_idle.asm"
LaprasAnimationIdle: INCLUDE "gfx/pokemon/lapras/anim_idle.asm" LaprasAnimationIdle: INCLUDE "gfx/pokemon/lapras/anim_idle.asm"
DittoAnimationIdle: INCLUDE "gfx/pokemon/ditto/anim_idle.asm" DittoAnimationIdle: INCLUDE "gfx/pokemon/ditto/anim_idle.asm"
EeveeAnimationIdle: INCLUDE "gfx/pokemon/eevee/anim_idle.asm" EeveeAnimationIdle: INCLUDE "gfx/pokemon/eevee/anim_idle.asm"

View file

@ -165,6 +165,8 @@ TriculesFrames: INCLUDE "gfx/pokemon/tricules/frames.asm"
TaurosFrames: INCLUDE "gfx/pokemon/tauros/frames.asm" TaurosFrames: INCLUDE "gfx/pokemon/tauros/frames.asm"
MagikarpFrames: INCLUDE "gfx/pokemon/magikarp/frames.asm" MagikarpFrames: INCLUDE "gfx/pokemon/magikarp/frames.asm"
GyaradosFrames: INCLUDE "gfx/pokemon/gyarados/frames.asm" GyaradosFrames: INCLUDE "gfx/pokemon/gyarados/frames.asm"
MagipreyFrames: INCLUDE "gfx/pokemon/magiprey/frames.asm"
TerradosFrames: INCLUDE "gfx/pokemon/terrados/frames.asm"
LaprasFrames: INCLUDE "gfx/pokemon/lapras/frames.asm" LaprasFrames: INCLUDE "gfx/pokemon/lapras/frames.asm"
DittoFrames: INCLUDE "gfx/pokemon/ditto/frames.asm" DittoFrames: INCLUDE "gfx/pokemon/ditto/frames.asm"
EeveeFrames: INCLUDE "gfx/pokemon/eevee/frames.asm" EeveeFrames: INCLUDE "gfx/pokemon/eevee/frames.asm"

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

@ -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

@ -467,10 +467,10 @@ INCLUDE "engine/movie/intro.asm"
SECTION "bank3E", ROMX SECTION "bank3E", ROMX
INCLUDE "engine/gfx/load_font.asm" INCLUDE "engine/gfx/load_font.asm"
INCLUDE "engine/events/name_rater.asm"
SECTION "bank3Econt", ROMX SECTION "bank3Econt", ROMX
INCLUDE "engine/events/name_rater.asm"
INCLUDE "engine/events/play_slow_cry.asm" INCLUDE "engine/events/play_slow_cry.asm"
INCLUDE "engine/link/time_capsule.asm" INCLUDE "engine/link/time_capsule.asm"
INCLUDE "engine/link/time_capsule_2.asm" INCLUDE "engine/link/time_capsule_2.asm"