kep-hack/data/pokemon/base_stats/carapthor.asm
MementoMartha 89b0687a4b Kokana line base stats
Also adds Dragonair's and Nite's Yellow catch rates, and rewords Taaban's entry slightly
2023-04-18 16:01:31 +01:00

27 lines
882 B
NASM

db DEX_CARAPTHOR ; pokedex id
db 60, 85, 50, 60, 60
; hp atk def spd spc
db BUG, FIGHTING ; type
db 45 ; catch rate
db 161 ; base exp
INCBIN "gfx/pokemon/front/carapthor.pic", 0, 1 ; sprite dimensions
dw CarapthorPicFront, CarapthorPicBack
db COMET_PUNCH, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm MEGA_PUNCH, RAZOR_WIND, SWORDS_DANCE, MEGA_KICK, TOXIC, \
BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, PAY_DAY, \
SUBMISSION, COUNTER, SEISMIC_TOSS, RAGE, MEGA_DRAIN, \
EARTHQUAKE, FISSURE, DIG, MIMIC, DOUBLE_TEAM, \
REFLECT, BIDE, SWIFT, SKULL_BASH, REST, \
SUBSTITUTE
; end
db BANK(CarapthorPicFront)
assert BANK(CarapthorPicFront) == BANK(CarapthorPicBack)