kep-hack/data/pokemon/base_stats/carapthor.asm
Llinos Evans f4b5e1d2f5 Add Uppercut
Misty's worst nightmare.

FIGHTING type
55 Power
15 PP
80 Accuracy
Effect: Flinch (30% chance)

Learned by Hitmonchan, Machop, and Mankey at L1. Primeape, Machoke, and Machamp have it in their L1 learnsets as well.

Learned by Carapthor at L10 as an evolution move. Also part of its L1 learnset.
2023-11-25 16:57:55 +00:00

27 lines
883 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, UPPERCUT, 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)