mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-17 20:46:24 +13:00

- Moved one of the trainers in the Celadon Uni PokeCenter to stop him from being in the way of the nurse - Buffed one of the Scientists in the Mansion - Moved the nurse and Weezing trader on the SS Anne slightly - Boosted Meltan's catch rate because having it be that low is ridiculous - Increased Luxwan's height because real swans are not that small - Changed a Cue Ball's party to allow his dialogue to make sense - Wild level balancing around Vermilion City - Fixed a small Pokedex display bug - Text fixes
22 lines
553 B
NASM
22 lines
553 B
NASM
db DEX_MELTAN ; pokedex id
|
|
|
|
db 46, 65, 55, 34, 35
|
|
; hp atk def spd spc
|
|
|
|
db STEEL, STEEL ; type
|
|
db 45 ; catch rate
|
|
db 131 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/meltan.pic", 0, 1 ; sprite dimensions
|
|
dw MeltanPicFront, MeltanPicBack
|
|
|
|
db THUNDERSHOCK, HARDEN, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, RAGE, MIMIC, DOUBLE_TEAM, BIDE, \
|
|
REST, THUNDER_WAVE, SUBSTITUTE
|
|
; end
|
|
|
|
db BANK(MeltanPicFront)
|
|
assert BANK(MeltanPicFront) == BANK(MeltanPicBack) |