mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 12:06:25 +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!)
26 lines
819 B
NASM
26 lines
819 B
NASM
db DEX_TAUROS_PB ; pokedex id
|
|
|
|
db 75, 110, 105, 100, 70
|
|
; hp atk def spd spc
|
|
|
|
db FIGHTING, FIRE ; type
|
|
db 45 ; catch rate
|
|
db 211 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/taurospb.pic", 0, 1 ; sprite dimensions
|
|
dw TaurosPBPicFront, TaurosPBPicBack
|
|
|
|
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, \
|
|
ICE_BEAM, BLIZZARD, HYPER_BEAM, SUBMISSION, COUNTER, \
|
|
RAGE, THUNDERBOLT, THUNDER, EARTHQUAKE, FISSURE, \
|
|
MIMIC, DOUBLE_TEAM, BIDE, FIRE_BLAST, SKULL_BASH, \
|
|
REST, SUBSTITUTE, STRENGTH
|
|
; end
|
|
|
|
db BANK(TaurosPBPicFront)
|
|
assert BANK(TaurosPBPicFront) == BANK(TaurosPBPicBack)
|