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

Finally, he's here for you It's the last member of the KEP crew This Mon's so strong, it isn't funny Can make a Dark-type cry out for mummy Can push a boulder with relative ease Makes Strength puzzles seem such a breeze He may move slow, he can't learn Fly But this Mon's one hell of a guy!
27 lines
998 B
NASM
27 lines
998 B
NASM
db DEX_GORILLAIMO ; pokedex id
|
|
|
|
db 130, 100, 75, 65, 40
|
|
; hp atk def spd spc
|
|
|
|
db NORMAL, FIGHTING ; type
|
|
db 45 ; catch rate
|
|
db 204 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/gorillaimo.pic", 0, 1 ; sprite dimensions
|
|
dw GorillaimoPicFront, GorillaimoPicBack
|
|
|
|
db COMET_PUNCH, GROWL, UPPERCUT, NO_MOVE ; level 1 learnset
|
|
db GROWTH_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, BODY_SLAM, TAKE_DOWN, \
|
|
DOUBLE_EDGE, BUBBLEBEAM, WATER_GUN, HYPER_BEAM, SUBMISSION, \
|
|
COUNTER, SEISMIC_TOSS, RAGE, THUNDERBOLT, THUNDER, \
|
|
EARTHQUAKE, FISSURE, DIG, MIMIC, DOUBLE_TEAM, \
|
|
BIDE, METRONOME, SWIFT, SKULL_BASH, REST, \
|
|
THUNDER_WAVE, ROCK_SLIDE, SUBSTITUTE, SURF, STRENGTH
|
|
; end
|
|
|
|
db BANK(GorillaimoPicFront)
|
|
assert BANK(GorillaimoPicFront) == BANK(GorillaimoPicBack)
|