mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00

That's a fair chunk out of my day... This commit finishes everything about Silph Co. 11F. DON'T. TOUCH IT. Unless there's a bug, but OTHERWISE, do NOT touch it. Holy shit. Here's everything featured; - Jessie and James fight, ported over. - Rocket grunt changed to the appointment one from the strange room on the other side that really shouldn't be there tbh - Omega fight now doesn't have the "watch out" text as I needed to do a micro-optimisation TRUST ME it was NECESSARY (it was not, in fact, necessary) - Giovanni now reuses Beedrill and has a generally stronger team, scaling with the fifth Rival fight. - Omega refight has been added after some toiling with the Team Rocket intro text that absolutely should not have happened but did for some reason AAA - Rocket trio text somewhat tweaked Oh and I ported over the balance patch on the stats, including some neo-Cryithan onboarding.
27 lines
909 B
NASM
27 lines
909 B
NASM
db DEX_TRAMPEL ; pokedex id
|
|
|
|
db 110, 100, 90, 56, 64
|
|
; hp atk def spd spc
|
|
|
|
db NORMAL, GROUND ; type
|
|
db 45 ; catch rate
|
|
db 204 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/trampel.pic", 0, 1 ; sprite dimensions
|
|
dw TrampelPicFront, TrampelPicBack
|
|
|
|
db TACKLE, GROWL, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, HORN_DRILL, BODY_SLAM, \
|
|
TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, WATER_GUN, ICE_BEAM, \
|
|
BLIZZARD, HYPER_BEAM, SUBMISSION, COUNTER, SEISMIC_TOSS, \
|
|
RAGE, THUNDERBOLT, THUNDER, EARTHQUAKE, FISSURE, \
|
|
MIMIC, DOUBLE_TEAM, BIDE, FIRE_BLAST, SWIFT, \
|
|
SKULL_BASH, REST, ROCK_SLIDE, SUBSTITUTE, STRENGTH
|
|
; end
|
|
|
|
db BANK(TrampelPicFront)
|
|
assert BANK(TrampelPicFront) == BANK(TrampelPicBack)
|