mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 20:16:26 +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...
23 lines
663 B
NASM
23 lines
663 B
NASM
db DEX_WEEZING_G ; pokedex id
|
|
|
|
db 65, 90, 120, 60, 85
|
|
; hp atk def spd spc
|
|
|
|
db POISON, FAIRY ; type
|
|
db 60 ; catch rate
|
|
db 173 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/weezingg.pic", 0, 1 ; sprite dimensions
|
|
dw WeezingGPicFront, WeezingGPicBack
|
|
|
|
db TACKLE, SMOG, SLUDGE, FAIRY_WIND ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, HYPER_BEAM, RAGE, THUNDERBOLT, THUNDER, \
|
|
MIMIC, DOUBLE_TEAM, BIDE, SELFDESTRUCT, FIRE_BLAST, \
|
|
REST, EXPLOSION, SUBSTITUTE
|
|
; end
|
|
|
|
db BANK(WeezingGPicFront)
|
|
assert BANK(WeezingGPicFront) == BANK(WeezingGPicBack) |