pokecrystal-board/engine/events/sweet_scent.asm

74 lines
1.3 KiB
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
SweetScentFromMenu:
2017-10-24 21:14:05 -07:00
ld hl, .SweetScent
2015-11-11 20:38:57 -08:00
call QueueScript
ld a, $1
2015-12-17 14:51:32 -08:00
ld [wFieldMoveSucceeded], a
2015-11-11 20:38:57 -08:00
ret
2017-10-24 21:14:05 -07:00
.SweetScent: ; 0x506c8
2015-11-11 20:38:57 -08:00
reloadmappart
special UpdateTimePals
callasm GetPartyNick
writetext UnknownText_0x50726
2015-11-25 07:16:29 -08:00
waitbutton
2015-11-11 20:38:57 -08:00
callasm SweetScentEncounter
2017-10-24 21:14:05 -07:00
iffalse SweetScentNothing
2015-11-11 20:38:57 -08:00
checkflag ENGINE_BUG_CONTEST_TIMER
2017-10-24 21:14:05 -07:00
iftrue .BugCatchingContest
randomwildmon
2015-11-11 20:38:57 -08:00
startbattle
reloadmapafterbattle
2015-11-11 20:38:57 -08:00
end
; 0x506e5
2017-10-24 21:14:05 -07:00
.BugCatchingContest: ; 0x506e5
2015-11-11 20:38:57 -08:00
farjump BugCatchingContestBattleScript
; 0x506e9
2017-10-24 21:14:05 -07:00
SweetScentNothing: ; 0x506e9
2015-11-11 20:38:57 -08:00
writetext UnknownText_0x5072b
2015-11-25 07:16:29 -08:00
waitbutton
2015-11-11 20:38:57 -08:00
closetext
end
; 0x506ef
2018-06-24 07:09:41 -07:00
SweetScentEncounter:
2017-12-24 09:47:30 -08:00
farcall CanUseSweetScent
2015-11-11 20:38:57 -08:00
jr nc, .no_battle
ld hl, wStatusFlags2
2018-01-22 12:40:43 -08:00
bit STATUSFLAGS2_BUG_CONTEST_TIMER_F, [hl]
2015-11-11 20:38:57 -08:00
jr nz, .not_in_bug_contest
2017-12-24 09:47:30 -08:00
farcall GetMapEncounterRate
2015-11-11 20:38:57 -08:00
ld a, b
and a
jr z, .no_battle
2017-12-24 09:47:30 -08:00
farcall ChooseWildEncounter
2015-11-11 20:38:57 -08:00
jr nz, .no_battle
jr .start_battle
.not_in_bug_contest
2017-12-24 09:47:30 -08:00
farcall ChooseWildEncounter_BugContest
2015-11-11 20:38:57 -08:00
.start_battle
ld a, $1
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2015-11-11 20:38:57 -08:00
ret
.no_battle
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ld [wBattleType], a
2015-11-11 20:38:57 -08:00
ret
UnknownText_0x50726: ; 0x50726
; used SWEET SCENT!
text_jump UnknownText_0x1c0b03
db "@"
; 0x5072b
UnknownText_0x5072b: ; 0x5072b
; Looks like there's nothing here…
text_jump UnknownText_0x1c0b1a
db "@"
; 0x50730