mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
25 lines
304 B
NASM
25 lines
304 B
NASM
KnowsMove:
|
|
ld a, MON_MOVES
|
|
call GetPartyParamLocation
|
|
ld a, [wPutativeTMHMMove]
|
|
ld b, a
|
|
ld c, NUM_MOVES
|
|
.loop
|
|
ld a, [hli]
|
|
cp b
|
|
jr z, .knows_move
|
|
dec c
|
|
jr nz, .loop
|
|
and a
|
|
ret
|
|
|
|
.knows_move
|
|
ld hl, .KnowsMoveText
|
|
call PrintText1bpp
|
|
scf
|
|
ret
|
|
|
|
.KnowsMoveText:
|
|
text_far _KnowsMoveText
|
|
text_end
|