2018-06-24 07:09:41 -07:00
|
|
|
_SacredAsh:
|
2015-11-11 20:38:57 -08:00
|
|
|
ld a, $0
|
2015-12-17 14:51:32 -08:00
|
|
|
ld [wItemEffectSucceeded], a
|
2015-11-11 20:38:57 -08:00
|
|
|
call CheckAnyFaintedMon
|
|
|
|
ret nc
|
|
|
|
|
|
|
|
ld hl, SacredAshScript
|
|
|
|
call QueueScript
|
|
|
|
ld a, $1
|
2015-12-17 14:51:32 -08:00
|
|
|
ld [wItemEffectSucceeded], a
|
2015-11-11 20:38:57 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
CheckAnyFaintedMon:
|
2015-11-11 20:38:57 -08:00
|
|
|
ld de, PARTYMON_STRUCT_LENGTH
|
2018-01-23 14:39:09 -08:00
|
|
|
ld bc, wPartySpecies
|
|
|
|
ld hl, wPartyMon1HP
|
|
|
|
ld a, [wPartyCount]
|
2015-11-11 20:38:57 -08: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
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
SacredAshScript:
|
2015-11-11 20:38:57 -08:00
|
|
|
special HealParty
|
|
|
|
reloadmappart
|
|
|
|
playsound SFX_WARP_TO
|
2023-08-04 14:54:53 -07:00
|
|
|
special FadeOutPalettesToWhite
|
|
|
|
special FadeInPalettesFromWhite
|
|
|
|
special FadeOutPalettesToWhite
|
|
|
|
special FadeInPalettesFromWhite
|
|
|
|
special FadeOutPalettesToWhite
|
|
|
|
special FadeInPalettesFromWhite
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2019-10-20 15:24:17 -07:00
|
|
|
writetext .UseSacredAshText
|
2015-11-11 20:38:57 -08:00
|
|
|
playsound SFX_CAUGHT_MON
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2015-11-11 20:38:57 -08:00
|
|
|
waitbutton
|
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
.UseSacredAshText:
|
|
|
|
text_far _UseSacredAshText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|