mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
432df825d4
Updated macros that rely on the GROUP_, MAP_ constants to use the map macro Added GROUP_NONE and MAP_NONE for the sake of compatibility with this new scheme Added new macro elevfloor to simplify the definition of elevators under this new scheme
89 lines
1.4 KiB
NASM
89 lines
1.4 KiB
NASM
MobileBattleRoom_MapScriptHeader:
|
|
.MapTriggers:
|
|
db 2
|
|
|
|
; triggers
|
|
dw .Trigger1, $0000
|
|
dw .Trigger2, $0000
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
.Trigger1:
|
|
priorityjump MobileBattleRoom_Initialize
|
|
end
|
|
|
|
.Trigger2:
|
|
end
|
|
|
|
MobileBattleRoom_Initialize:
|
|
dotrigger $1
|
|
domaptrigger POKECENTER_2F, $5
|
|
end
|
|
|
|
MapMobileBattleRoomSignpost0Script:
|
|
refreshscreen $0
|
|
special Function1037c2
|
|
if_equal $1, .one
|
|
special Function1037eb
|
|
iffalse .false
|
|
if_equal $1, .one_
|
|
if_equal $2, .two_
|
|
jump .false
|
|
|
|
.one_:
|
|
writetext MobileBattleRoom_HealText
|
|
pause 20
|
|
loadmovesprites
|
|
special FadeBlackBGMap
|
|
playmusic MUSIC_HEAL
|
|
special LoadMapPalettes
|
|
pause 60
|
|
special FadeInBGMap
|
|
special RestartMapMusic
|
|
refreshscreen $0
|
|
.two_:
|
|
special Mobile_HealParty
|
|
special HealParty
|
|
special Function10383c
|
|
iftrue .false
|
|
.one:
|
|
special Function10387b
|
|
writetext MobileBattleRoom_EstablishingCommsText
|
|
closetext
|
|
reloadmappart
|
|
special Function101225
|
|
.false:
|
|
loadmovesprites
|
|
end
|
|
|
|
MobileBattleRoom_EstablishingCommsText:
|
|
text "Establishing"
|
|
line "communications…"
|
|
done
|
|
|
|
MobileBattleRoom_HealText:
|
|
text "Your #MON will"
|
|
line "be fully healed"
|
|
cont "before battle."
|
|
done
|
|
|
|
MobileBattleRoom_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 2
|
|
warp_def $7, $4, 6, POKECENTER_2F
|
|
warp_def $7, $5, 6, POKECENTER_2F
|
|
|
|
.XYTriggers:
|
|
db 0
|
|
|
|
.Signposts:
|
|
db 1
|
|
signpost 2, 4, SIGNPOST_UP, MapMobileBattleRoomSignpost0Script
|
|
|
|
.PersonEvents:
|
|
db 0
|