pokecrystal-board/engine/battle/read_trainer_dvs.asm

21 lines
237 B
NASM
Raw Normal View History

GetTrainerDVs: ; 270c4
2018-01-23 14:39:09 -08:00
; Return the DVs of wOtherTrainerClass in bc
push hl
2018-01-23 14:39:09 -08:00
ld a, [wOtherTrainerClass]
dec a
ld c, a
ld b, 0
ld hl, TrainerClassDVs
add hl, bc
add hl, bc
ld a, [hli]
ld b, a
ld c, [hl]
pop hl
ret
; 270d6