jep-hack/data/pokemon/evos_attacks.asm
Llinos Evans 892e8fc6b1 Summer Beach House fixes, evo moves (bugs!)
Evo moves commit is unfinished and doesn't work properly. Script in evolve.asm has details.

Summer Beach House now teaches Pikachu Surf and has two issues; one is that backing out of teaching Pikachu causes issues (basically, it only goes a correct way if you say yes), and the teaching menu uses tiles from the overworld because I am stupid.

Are you a bad enough dude to fix these bugs?
2024-08-04 14:40:07 +01:00

26 lines
928 B
NASM

; Evolutions and attacks are grouped together since they're both checked at level-up.
SECTION "Evolutions and Attacks Pointers", ROMX
; Evos+attacks data structure:
; - Evolution methods:
; * dbbw EVOLVE_LEVEL, level, species
; * dbbw EVOLVE_ITEM, used item, species
; * dbbw EVOLVE_TRADE, held item (or -1 for none), species
; * dbbw EVOLVE_HAPPINESS, TR_* constant (ANYTIME, MORNDAY, NITE), species
; * dbbbw EVOLVE_STAT, level, ATK_*_DEF constant (LT, GT, EQ), species
; - db 0 ; no more evolutions
; - Learnset (in increasing level order):
; * dbw level, move
; - db 0 ; no more level-up moves
EvosAttacksPointers::
indirect_table 2, 1
indirect_entries JOHTO_POKEMON - 1, EvosAttacksPointers1
indirect_entries NUM_POKEMON, EvosAttacksPointers2
indirect_table_end
INCLUDE "data/pokemon/evolution_moves.asm"
INCLUDE "data/pokemon/evos_attacks_kanto.asm"
INCLUDE "data/pokemon/evos_attacks_johto.asm"