kep-hack/data/pokemon/base_stats/tricules.asm
Martha Schilling 58861d73d5 Nerfs!
- 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.
2023-10-10 09:20:44 +01:00

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)