pokecrystal/engine/events/itemfinder.asm

53 lines
873 B
NASM
Raw Normal View History

2018-06-24 14:09:41 +00:00
ItemFinder:
2017-12-24 17:47:30 +00:00
farcall CheckForHiddenItems
2015-11-11 21:11:08 +00:00
jr c, .found_something
ld hl, .Script_FoundNothing
jr .resume
.found_something
ld hl, .Script_FoundSomething
.resume
call QueueScript
ld a, $1
2015-12-17 22:51:32 +00:00
ld [wItemEffectSucceeded], a
2015-11-11 21:11:08 +00:00
ret
2018-06-24 14:09:41 +00:00
.ItemfinderSound:
2015-12-19 01:07:09 +00:00
ld c, 4
2015-11-11 21:11:08 +00:00
.sfx_loop
push bc
ld de, SFX_SECOND_PART_OF_ITEMFINDER
call WaitPlaySFX
ld de, SFX_TRANSACTION
call WaitPlaySFX
pop bc
dec c
jr nz, .sfx_loop
ret
.Script_FoundSomething:
2015-11-11 21:11:08 +00:00
reloadmappart
special UpdateTimePals
callasm .ItemfinderSound
writetext .Text_FoundSomething
2015-11-25 15:16:29 +00:00
closetext
2015-11-11 21:11:08 +00:00
end
.Script_FoundNothing:
2015-11-11 21:11:08 +00:00
reloadmappart
special UpdateTimePals
writetext .Text_FoundNothing
2015-11-25 15:16:29 +00:00
closetext
2015-11-11 21:11:08 +00:00
end
.Text_FoundSomething:
2015-11-11 21:11:08 +00:00
; Yes! ITEMFINDER indicates there's an item nearby.
text_far UnknownText_0x1c0a77
text_end
2015-11-11 21:11:08 +00:00
.Text_FoundNothing:
2015-11-11 21:11:08 +00:00
; Nope! ITEMFINDER isn't responding.
text_far UnknownText_0x1c0aa9
text_end