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

Rhyperior files are dummies and will need to be properly edited with sprites, Rhydon evo data, etc, but it (and the other files included) show that the trainer and pokemon sprite indexes have been separated, which allows us to add the other KEP mons
28 lines
947 B
NASM
28 lines
947 B
NASM
db DEX_RHYDON ; pokedex id
|
|
|
|
db 115, 140, 130, 50, 55
|
|
; hp atk def spd spc
|
|
|
|
db GROUND, ROCK ; type
|
|
db 60 ; catch rate
|
|
db 204 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/rhydon.pic", 0, 1 ; sprite dimensions
|
|
dw RhydonPicFront, RhydonPicBack
|
|
|
|
db HORN_ATTACK, STOMP, TAIL_WHIP, FURY_ATTACK ; level 1 learnset
|
|
db GROWTH_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, HORN_DRILL, BODY_SLAM, \
|
|
TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, WATER_GUN, ICE_BEAM, \
|
|
BLIZZARD, HYPER_BEAM, PAY_DAY, SUBMISSION, COUNTER, \
|
|
SEISMIC_TOSS, RAGE, THUNDERBOLT, THUNDER, EARTHQUAKE, \
|
|
FISSURE, DIG, MIMIC, DOUBLE_TEAM, BIDE, \
|
|
FIRE_BLAST, SKULL_BASH, REST, ROCK_SLIDE, SUBSTITUTE, \
|
|
SURF, STRENGTH
|
|
; end
|
|
|
|
db BANK(RhydonPicFront)
|
|
assert BANK(RhydonPicFront) == BANK(RhydonPicBack)
|