mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-11-20 03:45:33 +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...
24 lines
768 B
NASM
24 lines
768 B
NASM
db DEX_NINETALES_A ; pokedex id
|
|
|
|
db 73, 67, 75, 109, 100
|
|
; hp atk def spd spc
|
|
|
|
db ICE, FAIRY ; type
|
|
db 75 ; catch rate
|
|
db 178 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/ninetalesa.pic", 0, 1 ; sprite dimensions
|
|
dw NinetalesAPicFront, NinetalesAPicBack
|
|
|
|
db DAZZLING_GLEAM, BLIZZARD, CONFUSE_RAY, BODY_SLAM ; level 1 learnset - used for trainers
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, \
|
|
RAGE, DIG, MIMIC, DOUBLE_TEAM, REFLECT, \
|
|
BIDE, BLIZZARD, SWIFT, SKULL_BASH, REST, \
|
|
SUBSTITUTE, ICE_BEAM
|
|
; end
|
|
|
|
db BANK(NinetalesAPicFront)
|
|
assert BANK(NinetalesAPicFront) == BANK(NinetalesAPicBack) |