mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-21 14:27:57 +13:00

- All of the new Pokemon have been given their Nob Ogasawara-localised names, where applicable. Skimper, Bawligua, and Cryithan have completely new names, (Squeamata, Ministare and Iguanarch), made by me with a lot of help from Plague Von Karma! - Squeamata and Ministare have new sprites courtesy of Albatross. Crobat and the Alolan forms of Golem, Persian, Sandslash and Raticate have also been updated. - Sandy Shocks can no longer learn Metal Sound. - Luxwan and Sirfetch'd can no longer learn Hyper Beam. - A handful of Pokedex entries have been rewritten or altered slightly.
26 lines
781 B
NASM
26 lines
781 B
NASM
db DEX_MADAAMU ; pokedex id
|
|
|
|
db 72, 105, 75, 70, 63
|
|
; hp atk def spd spc
|
|
|
|
db NORMAL, FLYING ; type
|
|
db 25 ; catch rate
|
|
db 196 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/madaamu.pic", 0, 1 ; sprite dimensions
|
|
dw MadaamuPicFront, MadaamuPicBack
|
|
|
|
db PECK, SAND_ATTACK, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm RAZOR_WIND, SWORDS_DANCE, WHIRLWIND, TOXIC, HORN_DRILL, \
|
|
BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, RAGE, THUNDERBOLT, \
|
|
THUNDER, MIMIC, DOUBLE_TEAM, REFLECT, BIDE, \
|
|
SWIFT, SKULL_BASH, REST, SUBSTITUTE, CUT, \
|
|
FLY
|
|
; end
|
|
|
|
db BANK(MadaamuPicFront)
|
|
assert BANK(MadaamuPicFront) == BANK(MadaamuPicBack)
|