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

More still need to be done but I'm separating the commits so I don't get overwhelmed lol - Fixes a bug with the Up-Grade NPC in Saffron. He now properly shows up only after defeating Giovanni. - Fixes a bug where Silph could be entered before receiving the Poke Flute. - Silph Gauntlet 5F has a complete remodel, more closely matching the original map found in the leaks. - One of the Fuchsia Gym Trainers no longer uses a repeat Arbok. - Wiglett and Wugtrio could learn Rock Slide via TM, which has now been fixed. - Jacky uses a Porygon in place of Machop, as it ties into his polygonal, Virtua Fighter-inspired sprite. - Chief uses a Gengar instead of Porygon2 to represent the Silph Scope. - Omega's and Giovanni 2's levels have been toned down slightly. - Lance now uses Crocky over Aerodactyl. - Yujirou's non-initial teams have had their levels reduced to be the same level as the previously-fought Gym Leader, rather than the upcoming one. - Updated README with additional credits.
25 lines
730 B
NASM
25 lines
730 B
NASM
db DEX_WUGTRIO ; pokedex id
|
|
|
|
db 35, 80, 50, 120, 70
|
|
; hp atk def spd spc
|
|
|
|
db WATER, WATER ; type
|
|
db 50 ; catch rate
|
|
db 153 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/wugtrio.pic", 0, 1 ; sprite dimensions
|
|
dw WugtrioPicFront, WugtrioPicBack
|
|
|
|
db WATER_GUN, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, \
|
|
WATER_GUN, HYPER_BEAM, RAGE, EARTHQUAKE, FISSURE, \
|
|
DIG, MIMIC, DOUBLE_TEAM, BIDE, REST, \
|
|
SUBSTITUTE, CUT, SURF
|
|
; end
|
|
|
|
db BANK(WugtrioPicFront)
|
|
assert BANK(WugtrioPicFront) == BANK(WugtrioPicBack)
|