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

Reworks the Pokedex to accommodate for the regional forms, changes a title screen graphic, and cleans up a few base stat files (will do the rest later). Also revised a few dex entries (special thanks to my girlfriend for Gyopin's!)
27 lines
867 B
NASM
27 lines
867 B
NASM
db DEX_TAUROS_PA ; pokedex id
|
|
|
|
db 75, 110, 105, 100, 70
|
|
; hp atk def spd spc
|
|
|
|
db FIGHTING, WATER ; type
|
|
db 45 ; catch rate
|
|
db 211 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/taurospa.pic", 0, 1 ; sprite dimensions
|
|
dw TaurosPAPicFront, TaurosPAPicBack
|
|
|
|
db DOUBLE_KICK, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, HORN_DRILL, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, \
|
|
BUBBLEBEAM, WATER_GUN, ICE_BEAM, BLIZZARD, HYPER_BEAM, \
|
|
SUBMISSION, COUNTER, RAGE, THUNDERBOLT, THUNDER, \
|
|
EARTHQUAKE, FISSURE, MIMIC, DOUBLE_TEAM, BIDE, \
|
|
FIRE_BLAST, SKULL_BASH, REST, SUBSTITUTE, SURF, \
|
|
STRENGTH
|
|
; end
|
|
|
|
db BANK(TaurosPAPicFront)
|
|
assert BANK(TaurosPAPicFront) == BANK(TaurosPAPicBack)
|