69 lines
887 B
NASM
Raw Normal View History

2018-06-24 16:09:41 +02:00
_SacredAsh:
2015-11-11 23:38:57 -05:00
ld a, $0
2015-12-17 17:51:32 -05:00
ld [wItemEffectSucceeded], a
2015-11-11 23:38:57 -05:00
call CheckAnyFaintedMon
ret nc
ld hl, SacredAshScript
call QueueScript
ld a, $1
2015-12-17 17:51:32 -05:00
ld [wItemEffectSucceeded], a
2015-11-11 23:38:57 -05:00
ret
2018-06-24 16:09:41 +02:00
CheckAnyFaintedMon:
2015-11-11 23:38:57 -05:00
ld de, PARTYMON_STRUCT_LENGTH
2018-01-23 17:39:09 -05:00
ld bc, wPartySpecies
ld hl, wPartyMon1HP
ld a, [wPartyCount]
2015-11-11 23:38:57 -05:00
and a
ret z
.loop
push af
push hl
ld a, [bc]
inc bc
cp EGG
jr z, .next
ld a, [hli]
or [hl]
jr z, .done
.next
pop hl
add hl, de
pop af
dec a
jr nz, .loop
xor a
ret
.done
pop hl
pop af
scf
ret
SacredAshScript:
2015-11-11 23:38:57 -05:00
special HealParty
reloadmappart
playsound SFX_WARP_TO
special FadeOutPalettes
special FadeInPalettes
special FadeOutPalettes
special FadeInPalettes
special FadeOutPalettes
special FadeInPalettes
2015-11-25 10:16:29 -05:00
waitsfx
writetext .UseSacredAshText
2015-11-11 23:38:57 -05:00
playsound SFX_CAUGHT_MON
2015-11-25 10:16:29 -05:00
waitsfx
2015-11-11 23:38:57 -05:00
waitbutton
closetext
end
.UseSacredAshText:
text_far _UseSacredAshText
text_end