kep-hack/data/pokemon/base_stats/fearow.asm
Llinos Evans 02df5d3abf Prototype level-up move restorations
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.
2023-12-13 12:53:30 +00:00

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)