83 lines
1.3 KiB
NASM
Raw Normal View History

2015-11-11 16:11:08 -05:00
Script_BattleWhiteout:: ; 0x124c1
callasm BattleBGMap
jump Script_Whiteout
; 0x124c8
Script_OverworldWhiteout:: ; 0x124c8
refreshscreen $0
callasm OverworldBGMap
Script_Whiteout: ; 0x124ce
writetext .WhitedOutText
2015-11-25 10:16:29 -05:00
waitbutton
2015-11-26 21:05:32 -05:00
special FadeOutPalettes
2015-11-11 16:11:08 -05:00
pause 40
special HealParty
checkflag ENGINE_BUG_CONTEST_TIMER
iftrue .bug_contest
callasm HalveMoney
callasm GetWhiteoutSpawn
farscall Script_AbortBugContest
special WarpToSpawnPoint
newloadmap MAPSETUP_WARP
2015-12-09 11:38:40 -05:00
end_all
2015-11-11 16:11:08 -05:00
.bug_contest
jumpstd bugcontestresultswarp
; 0x124f5
.WhitedOutText: ; 0x124f5
; is out of useable #MON! whited out!
text_jump UnknownText_0x1c0a4e
db "@"
; 0x124fa
OverworldBGMap: ; 124fa
call ClearPalettes
call ClearScreen
2015-12-11 16:59:40 -05:00
call WaitBGMap2
2015-11-11 16:11:08 -05:00
call HideSprites
2015-11-20 11:47:52 -05:00
call RotateThreePalettesLeft
2015-11-11 16:11:08 -05:00
ret
; 1250a
BattleBGMap: ; 1250a
2015-12-28 10:57:04 -05:00
ld b, SCGB_BATTLE_GRAYSCALE
2015-11-11 16:11:08 -05:00
call GetSGBLayout
call SetPalettes
ret
; 12513
HalveMoney: ; 12513
2017-12-24 12:47:30 -05:00
farcall TrainerRankings_WhiteOuts
2015-11-11 16:11:08 -05:00
; Halve the player's money.
ld hl, Money
ld a, [hl]
srl a
ld [hli], a
ld a, [hl]
rra
ld [hli], a
ld a, [hl]
rra
ld [hl], a
ret
; 12527
GetWhiteoutSpawn: ; 12527
ld a, [wLastSpawnMapGroup]
ld d, a
ld a, [wLastSpawnMapNumber]
ld e, a
2017-12-24 12:47:30 -05:00
farcall IsSpawnPoint
2015-11-11 16:11:08 -05:00
ld a, c
jr c, .yes
xor a ; SPAWN_HOME
.yes
2017-12-09 15:14:51 -05:00
ld [DefaultSpawnpoint], a
2015-11-11 16:11:08 -05:00
ret
; 1253d