ref: 5c4795d5bc19edd872adf7b17d0c6264eecd6459
dir: /engine/items/tmhm.asm/
; checks if the mon in [wWhichPokemon] already knows the move in [wMoveNum] CheckIfMoveIsKnown: ld a, [wWhichPokemon] ld hl, wPartyMon1Moves ld bc, wPartyMon2 - wPartyMon1 call AddNTimes ld a, [wMoveNum] ld b, a ld c, NUM_MOVES .loop ld a, [hli] cp b jr z, .alreadyKnown ; found a match dec c jr nz, .loop and a ret .alreadyKnown ld hl, AlreadyKnowsText call PrintText scf ret AlreadyKnowsText: text_far _AlreadyKnowsText text_end