kep-hack/data/pokemon/base_stats/gyarados.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

26 lines
811 B
NASM

db DEX_GYARADOS ; pokedex id
db 95, 125, 79, 81, 100
; hp atk def spd spc
db WATER, FLYING ; type
db 45 ; catch rate
db 214 ; base exp
INCBIN "gfx/pokemon/front/gyarados.pic", 0, 1 ; sprite dimensions
dw GyaradosPicFront, GyaradosPicBack
db TACKLE, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_SLOW ; growth rate
; tm/hm learnset
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, \
WATER_GUN, ICE_BEAM, BLIZZARD, HYPER_BEAM, RAGE, \
DRAGON_RAGE, THUNDERBOLT, THUNDER, MIMIC, DOUBLE_TEAM, \
REFLECT, BIDE, FIRE_BLAST, SKULL_BASH, REST, \
SUBSTITUTE, SURF, STRENGTH
; end
db BANK(GyaradosPicFront)
assert BANK(GyaradosPicFront) == BANK(GyaradosPicBack)