mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-17 04:26:28 +13:00

Done up to Mime G, just needs Tauros breeds and it's done. Obviously need to do the rest of the stuff that comes with them...
25 lines
703 B
NASM
25 lines
703 B
NASM
db DEX_DUGTRIO_A ; pokedex id
|
|
|
|
db 35, 80, 60, 110, 70
|
|
; hp atk def spd spc
|
|
|
|
db GROUND, STEEL ; type
|
|
db 50 ; catch rate
|
|
db 153 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/dugtrioa.pic", 0, 1 ; sprite dimensions
|
|
dw DugtrioAPicFront, DugtrioAPicBack
|
|
|
|
db SCRATCH, GROWL, DIG, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, \
|
|
RAGE, EARTHQUAKE, FISSURE, DIG, MIMIC, \
|
|
DOUBLE_TEAM, BIDE, REST, ROCK_SLIDE, SUBSTITUTE, \
|
|
CUT
|
|
; end
|
|
|
|
db BANK(DugtrioAPicFront)
|
|
assert BANK(DugtrioAPicFront) == BANK(DugtrioAPicBack)
|