mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
31 lines
383 B
NASM
31 lines
383 B
NASM
PlaySlowCry:
|
|
ldh a, [hScriptVar]
|
|
call LoadCry
|
|
jr c, .done
|
|
|
|
ld hl, wCryPitch
|
|
ld a, [hli]
|
|
ld h, [hl]
|
|
ld l, a
|
|
ld bc, -$140
|
|
add hl, bc
|
|
ld a, l
|
|
ld [wCryPitch], a
|
|
ld a, h
|
|
ld [wCryPitch + 1], a
|
|
ld hl, wCryLength
|
|
ld a, [hli]
|
|
ld h, [hl]
|
|
ld l, a
|
|
ld bc, $60
|
|
add hl, bc
|
|
ld a, l
|
|
ld [wCryLength], a
|
|
ld a, h
|
|
ld [wCryLength + 1], a
|
|
farcall _PlayCry
|
|
call WaitSFX
|
|
|
|
.done
|
|
ret
|