kep-hack/data/pokemon/base_stats/ninetales.asm
Llinos Evans c948e77d01 Level 1 learnset changes
- Marowak has Tail Whip to ensure it gets its entire learnset - currently can't, as Yellow creates a weird incompatibility if caught the way it currently is.
- Gyarados is given its Yellow learnset, as chances are it's being made fishable and thus needs it to be of an appropriate power level.
- Stone Evolutions I changed are nerfed to balance the Move Relearner properly.
2023-04-05 16:12:29 +01:00

25 lines
721 B
NASM

db DEX_NINETALES ; pokedex id
db 73, 76, 75, 100, 100
; hp atk def spd spc
db FIRE, FIRE ; type
db 75 ; catch rate
db 178 ; base exp
INCBIN "gfx/pokemon/front/ninetales.pic", 0, 1 ; sprite dimensions
dw NinetalesPicFront, NinetalesPicBack
db EMBER, TAIL_WHIP, QUICK_ATTACK, ROAR ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, \
RAGE, DIG, MIMIC, DOUBLE_TEAM, REFLECT, \
BIDE, FIRE_BLAST, SWIFT, SKULL_BASH, REST, \
SUBSTITUTE
; end
db BANK(NinetalesPicFront)
assert BANK(NinetalesPicFront) == BANK(NinetalesPicBack)