pokered/engine/items/tms.asm

36 lines
615 B
NASM

; tests if mon [wCurPartySpecies] can learn move [wMoveNum]
CanLearnTM:
ld a, [wCurPartySpecies]
ld [wCurSpecies], a
call GetMonHeader
ld hl, wMonHLearnset
push hl
ld a, [wMoveNum]
ld b, a
ld c, $0
ld hl, TechnicalMachines
.findTMloop
ld a, [hli]
cp b
jr z, .TMfoundLoop
inc c
jr .findTMloop
.TMfoundLoop
pop hl
ld b, FLAG_TEST
predef_jump FlagActionPredef
; converts TM/HM number in [wTempTMHM] into move number
; HMs start at 51
TMToMove:
ld a, [wTempTMHM]
dec a
ld hl, TechnicalMachines
ld b, $0
ld c, a
add hl, bc
ld a, [hl]
ld [wTempTMHM], a
ret
INCLUDE "data/moves/tmhm_moves.asm"