kep-hack/data/pokemon/base_stats/magmortar.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

27 lines
900 B
NASM

db DEX_MAGMORTAR ; pokedex id
db 75, 95, 67, 83, 95
; hp atk def spd spc
db FIRE, FIRE ; type
db 30 ; catch rate
db 199 ; base exp
INCBIN "gfx/pokemon/front/magmortar.pic", 0, 1 ; sprite dimensions
dw MagmortarPicFront, MagmortarPicBack
db EMBER, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, BODY_SLAM, TAKE_DOWN, \
DOUBLE_EDGE, HYPER_BEAM, SUBMISSION, COUNTER, SEISMIC_TOSS, \
RAGE, THUNDERBOLT, THUNDER, EARTHQUAKE, FISSURE, \
PSYCHIC_M, TELEPORT, MIMIC, DOUBLE_TEAM, BIDE, \
METRONOME, FIRE_BLAST, SKULL_BASH, REST, PSYWAVE, \
ROCK_SLIDE, SUBSTITUTE, STRENGTH
; end
db BANK(MagmortarPicFront)
assert BANK(MagmortarPicFront) == BANK(MagmortarPicBack)