mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
dcb24bc724
Resolves #742
48 lines
933 B
NASM
48 lines
933 B
NASM
MobileTradeRoom_MapScripts:
|
|
def_scene_scripts
|
|
scene_script .InitializeMobileTradeRoom ; SCENE_DEFAULT
|
|
scene_script .DummyScene ; SCENE_FINISHED
|
|
|
|
def_callbacks
|
|
|
|
.InitializeMobileTradeRoom:
|
|
prioritysjump .InitializeAndPreparePokecenter2F
|
|
end
|
|
|
|
.DummyScene:
|
|
end
|
|
|
|
.InitializeAndPreparePokecenter2F:
|
|
setscene SCENE_FINISHED
|
|
setmapscene POKECENTER_2F, SCENE_POKECENTER2F_LEAVE_MOBILE_TRADE_ROOM
|
|
end
|
|
|
|
MobileTradeRoomConsoleScript:
|
|
refreshscreen
|
|
special Function1037c2
|
|
writetext MobileTradeRoom_EstablishingCommsText
|
|
waitbutton
|
|
reloadmappart
|
|
special Function101231
|
|
closetext
|
|
end
|
|
|
|
MobileTradeRoom_EstablishingCommsText:
|
|
text "Establishing"
|
|
line "communications…"
|
|
done
|
|
|
|
MobileTradeRoom_MapEvents:
|
|
db 0, 0 ; filler
|
|
|
|
def_warp_events
|
|
warp_event 4, 7, POKECENTER_2F, 5
|
|
warp_event 5, 7, POKECENTER_2F, 5
|
|
|
|
def_coord_events
|
|
|
|
def_bg_events
|
|
bg_event 4, 2, BGEVENT_UP, MobileTradeRoomConsoleScript
|
|
|
|
def_object_events
|