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

- Gave Magmortar the wrong Special initially, it should be 95. Yes, this makes Magmortar really bad, but it's just how the Special conversion would work. - Similarly, Tricules has had its Speed reduced, so it can have the proper role of being a slower, bulkier Pinsir. - Removed the extra staircase in Red's House properly.
25 lines
745 B
NASM
25 lines
745 B
NASM
db DEX_TRICULES ; pokedex id
|
|
|
|
db 65, 125, 140, 45, 55
|
|
; hp atk def spd spc
|
|
|
|
db BUG, STEEL ; type
|
|
db 25 ; catch rate
|
|
db 209 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/tricules.pic", 0, 1 ; sprite dimensions
|
|
dw TriculesPicFront, TriculesPicBack
|
|
|
|
db VICEGRIP, HARDEN, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm SWORDS_DANCE, TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, \
|
|
HYPER_BEAM, SUBMISSION, SEISMIC_TOSS, RAGE, EARTHQUAKE, \
|
|
FISSURE, MIMIC, DOUBLE_TEAM, BIDE, SWIFT, \
|
|
REST, SUBSTITUTE, CUT, STRENGTH
|
|
; end
|
|
|
|
db BANK(TriculesPicFront)
|
|
assert BANK(TriculesPicFront) == BANK(TriculesPicBack)
|