mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
44 lines
1018 B
NASM
44 lines
1018 B
NASM
|
Special_GiveParkBalls: ; 135db
|
||
|
xor a
|
||
|
ld [wContestMon], a
|
||
|
ld a, 20
|
||
|
ld [wParkBallsRemaining], a
|
||
|
callba StartBugContestTimer
|
||
|
ret
|
||
|
|
||
|
BugCatchingContestBattleScript:: ; 0x135eb
|
||
|
writecode VAR_BATTLETYPE, BATTLETYPE_CONTEST
|
||
|
randomwildmon
|
||
|
startbattle
|
||
|
reloadmapafterbattle
|
||
|
copybytetovar wParkBallsRemaining
|
||
|
iffalse BugCatchingContestOutOfBallsScript
|
||
|
end
|
||
|
|
||
|
BugCatchingContestOverScript:: ; 0x135f8
|
||
|
playsound SFX_ELEVATOR_END
|
||
|
opentext
|
||
|
writetext BugCatchingContestText_BeeepTimesUp
|
||
|
waitbutton
|
||
|
jump BugCatchingContestReturnToGateScript
|
||
|
|
||
|
BugCatchingContestOutOfBallsScript: ; 0x13603
|
||
|
playsound SFX_ELEVATOR_END
|
||
|
opentext
|
||
|
writetext BugCatchingContestText_ContestIsOver
|
||
|
waitbutton
|
||
|
|
||
|
BugCatchingContestReturnToGateScript: ; 0x1360b
|
||
|
closetext
|
||
|
jumpstd bugcontestresultswarp
|
||
|
|
||
|
BugCatchingContestText_BeeepTimesUp: ; 0x1360f
|
||
|
; ANNOUNCER: BEEEP! Time's up!
|
||
|
text_jump UnknownText_0x1bd2ca
|
||
|
db "@"
|
||
|
|
||
|
BugCatchingContestText_ContestIsOver: ; 0x13614
|
||
|
; ANNOUNCER: The Contest is over!
|
||
|
text_jump UnknownText_0x1bd2e7
|
||
|
db "@"
|