mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00

- 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.
27 lines
862 B
NASM
27 lines
862 B
NASM
db DEX_MAROWAK ; pokedex id
|
|
|
|
db 60, 80, 110, 45, 50
|
|
; hp atk def spd spc
|
|
|
|
db GROUND, GROUND ; type
|
|
db 75 ; catch rate
|
|
db 124 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/marowak.pic", 0, 1 ; sprite dimensions
|
|
dw MarowakPicFront, MarowakPicBack
|
|
|
|
db BONE_CLUB, GROWL, LEER, TAIL_WHIP ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, BODY_SLAM, TAKE_DOWN, \
|
|
DOUBLE_EDGE, BUBBLEBEAM, WATER_GUN, ICE_BEAM, BLIZZARD, \
|
|
HYPER_BEAM, SUBMISSION, COUNTER, SEISMIC_TOSS, RAGE, \
|
|
EARTHQUAKE, FISSURE, DIG, MIMIC, DOUBLE_TEAM, \
|
|
BIDE, FIRE_BLAST, SKULL_BASH, REST, SUBSTITUTE, \
|
|
STRENGTH
|
|
; end
|
|
|
|
db BANK(MarowakPicFront)
|
|
assert BANK(MarowakPicFront) == BANK(MarowakPicBack)
|