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

- Move Deleter and Move Relearner are added, featuring updated code from Shin Pokered, which took the code from Mateo's Red++ hack. They replace the Trader in Celadon University. The code has been updated quite a bit to fit the modern standards of pokered. - The Trader has been moved to the trade room in Cinnabar Lab, which is thematically appropriate. - Eevee's L1 learnset now appropriately features Tail Whip; this was a mistake made by Martha when porting Yellow learnsets. - Fast Text cursor slot is fixed - New ROM Bank stores the new maps as it got full when adding the move relearner/deleter - Maps 21 will still have space though. - WRAM has been fiddled with, please please read the notes if you edit the Move Relearner area, it needs quite a bit of space. - Wild data for Mt. Moon and Route 22 has been tweaked a little bit.
24 lines
645 B
NASM
24 lines
645 B
NASM
db DEX_EEVEE ; pokedex id
|
|
|
|
db 55, 55, 50, 55, 65
|
|
; hp atk def spd spc
|
|
|
|
db NORMAL, NORMAL ; type
|
|
db 45 ; catch rate
|
|
db 92 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/eevee.pic", 0, 1 ; sprite dimensions
|
|
dw EeveePicFront, EeveePicBack
|
|
|
|
db TACKLE, TAIL_WHIP, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, RAGE, \
|
|
MIMIC, DOUBLE_TEAM, REFLECT, BIDE, SWIFT, \
|
|
SKULL_BASH, REST, SUBSTITUTE
|
|
; end
|
|
|
|
db BANK(EeveePicFront)
|
|
assert BANK(EeveePicFront) == BANK(EeveePicBack)
|