mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 10:23:34 +12:00

Geodude and Squirtle require some restructuring to implement adequately, some other issues. This adds level-up moves learned in the RG prototype that are learned only via TM in the final to various Kanto Pokemon. Significantly buffs some underwhelming Pokemon and adds utility to moves like Take Down.
25 lines
684 B
NASM
25 lines
684 B
NASM
db DEX_FEAROW ; pokedex id
|
|
|
|
db 65, 90, 65, 100, 61
|
|
; hp atk def spd spc
|
|
|
|
db NORMAL, FLYING ; type
|
|
db 90 ; catch rate
|
|
db 162 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/fearow.pic", 0, 1 ; sprite dimensions
|
|
dw FearowPicFront, FearowPicBack
|
|
|
|
db PECK, GROWL, LEER, RAGE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm RAZOR_WIND, WHIRLWIND, TOXIC, TAKE_DOWN, DOUBLE_EDGE, \
|
|
HYPER_BEAM, PAY_DAY, RAGE, MIMIC, DOUBLE_TEAM, \
|
|
BIDE, SWIFT, SKY_ATTACK, REST, SUBSTITUTE, \
|
|
FLY
|
|
; end
|
|
|
|
db BANK(FearowPicFront)
|
|
assert BANK(FearowPicFront) == BANK(FearowPicBack)
|