shithub: pokecrystal

ref: 2edf131b056c6d2b1ec9eb48b97fba31b0f953c7
dir: /engine/battle/read_trainer_dvs.asm/

View raw version
GetTrainerDVs: ; 270c4
; Return the DVs of OtherTrainerClass in bc

	push hl
	ld a, [OtherTrainerClass]
	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