2018-06-24 07:09:41 -07:00
|
|
|
PlaySlowCry:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wScriptVar]
|
2018-01-16 20:47:45 -08:00
|
|
|
call LoadCry
|
2017-12-15 14:22:52 -08:00
|
|
|
jr c, .done
|
|
|
|
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wCryPitch
|
2017-12-15 14:22:52 -08:00
|
|
|
ld a, [hli]
|
|
|
|
ld h, [hl]
|
|
|
|
ld l, a
|
|
|
|
ld bc, -$140
|
|
|
|
add hl, bc
|
|
|
|
ld a, l
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCryPitch], a
|
2017-12-15 14:22:52 -08:00
|
|
|
ld a, h
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCryPitch + 1], a
|
|
|
|
ld hl, wCryLength
|
2017-12-15 14:22:52 -08:00
|
|
|
ld a, [hli]
|
|
|
|
ld h, [hl]
|
|
|
|
ld l, a
|
|
|
|
ld bc, $60
|
|
|
|
add hl, bc
|
|
|
|
ld a, l
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCryLength], a
|
2017-12-15 14:22:52 -08:00
|
|
|
ld a, h
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCryLength + 1], a
|
2018-01-16 20:47:45 -08:00
|
|
|
farcall _PlayCry
|
2017-12-15 14:22:52 -08:00
|
|
|
call WaitSFX
|
|
|
|
|
|
|
|
.done
|
|
|
|
ret
|