pokered/engine/predefs17_2.asm

16 lines
346 B
NASM
Raw Normal View History

; updates the types of a party mon (pointed to in hl) to the ones of the mon specified in wd11e
2014-05-22 22:13:20 +00:00
SetPartyMonTypes: ; 5db5e (17:5b5e)
call GetPredefRegisters
ld bc, wPartyMon1Type - wPartyMon1 ; $5
2014-05-22 22:13:20 +00:00
add hl, bc
ld a, [wd11e]
ld [wd0b5], a
2014-05-22 22:13:20 +00:00
push hl
call GetMonHeader
pop hl
2015-08-31 02:38:41 +00:00
ld a, [wMonHType1]
2014-05-22 22:13:20 +00:00
ld [hli], a
2015-08-31 02:38:41 +00:00
ld a, [wMonHType2]
2014-05-22 22:13:20 +00:00
ld [hl], a
ret