mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-11-17 18:42: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
836 B
NASM
25 lines
836 B
NASM
db DEX_ELECTRODE_H ; pokedex id
|
|
|
|
db 60, 50, 70, 140, 80
|
|
; hp atk def spd spc
|
|
|
|
db ELECTRIC, GRASS ; type
|
|
db 60 ; catch rate
|
|
db 150 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/electrodeh.pic", 0, 1 ; sprite dimensions
|
|
dw ElectrodeHPicFront, ElectrodeHPicBack
|
|
|
|
db THUNDERBOLT, MEGA_DRAIN, THUNDER_WAVE, EXPLOSION ; level 1 learnset, for trainers i guess
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, TAKE_DOWN, HYPER_BEAM, RAGE, THUNDERBOLT, \
|
|
THUNDER, TELEPORT, MIMIC, DOUBLE_TEAM, REFLECT, \
|
|
BIDE, SELFDESTRUCT, SWIFT, SKULL_BASH, REST, \
|
|
THUNDER_WAVE, EXPLOSION, SUBSTITUTE, FLASH, MEGA_DRAIN \
|
|
SOLAR_BEAM
|
|
; end
|
|
|
|
db BANK(ElectrodeHPicFront)
|
|
assert BANK(ElectrodeHPicFront) == BANK(ElectrodeHPicBack) |