jep-hack/data/pokemon/egg_moves.asm
Zeta_Null 2f8a41f833 First Commit
Upload literally everything from the pokecrystal16 expand-move-ID branch
2023-09-10 12:35:35 -04:00

19 lines
617 B
NASM

SECTION "Egg Move Pointers", ROMX
; All instances of Charm, Steel Wing, Sweet Scent, and Lovely Kiss were
; removed from egg move lists in Crystal.
; Sweet Scent and Steel Wing were redundant since they're TMs, and
; Charm and Lovely Kiss were unobtainable.
; Staryu's egg moves were removed in Crystal, because Staryu is genderless
; and can only breed with Ditto.
EggMovePointers::
indirect_table 2, 1
indirect_entries JOHTO_POKEMON - 1, EggMovePointers1
indirect_entries NUM_POKEMON, EggMovePointers2
indirect_table_end
INCLUDE "data/pokemon/egg_moves_kanto.asm"
INCLUDE "data/pokemon/egg_moves_johto.asm"