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
717 B
NASM
25 lines
717 B
NASM
db DEX_WIGLETT ; pokedex id
|
|
|
|
db 10, 55, 25, 95, 35
|
|
; hp atk def spd spc
|
|
|
|
db WATER, WATER ; type
|
|
db 255 ; catch rate
|
|
db 81 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/wiglett.pic", 0, 1 ; sprite dimensions
|
|
dw WiglettPicFront, WiglettPicBack
|
|
|
|
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, RAGE, EARTHQUAKE, FISSURE, DIG, \
|
|
MIMIC, DOUBLE_TEAM, BIDE, REST, SUBSTITUTE, \
|
|
CUT, SURF
|
|
; end
|
|
|
|
db BANK(WiglettPicFront)
|
|
assert BANK(WiglettPicFront) == BANK(WiglettPicBack)
|