mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
5c28d05bb4
# Conflicts: # data/items/descriptions.asm # data/sprite_anims/framesets.asm # engine/crystal_colors.asm # engine/events/kurt.asm # engine/events/special.asm # engine/events/std_scripts.asm # engine/events_3.asm # engine/item_effects.asm # engine/namingscreen.asm # engine/scripting.asm # engine/stats_screen.asm # engine/trade_animation.asm # home/audio.asm # main.asm # maps/BattleTower1F.asm # maps/BattleTowerBattleRoom.asm # maps/BurnedTowerB1F.asm # maps/ElmsLab.asm # maps/GoldenrodDeptStore5F.asm # maps/GoldenrodUnderground.asm # maps/HallOfFame.asm # maps/MahoganyTown.asm # maps/ManiasHouse.asm # maps/MobileBattleRoom.asm # maps/MobileTradeRoomMobile.asm # maps/RadioTower2F.asm # maps/Route35NationalParkGate.asm # maps/Route36NationalParkGate.asm # maps/Route39Farmhouse.asm # tilesets/palette_maps.asm
55 lines
931 B
NASM
55 lines
931 B
NASM
MobileTradeRoomMobile_MapScriptHeader:
|
|
.SceneScripts:
|
|
db 2
|
|
scene_script .InitializeMobileTradeRoomMobile
|
|
scene_script .DummyScene
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
.InitializeMobileTradeRoomMobile:
|
|
priorityjump .InitializeAndPreparePokecenter2F
|
|
end
|
|
|
|
.DummyScene:
|
|
end
|
|
|
|
.InitializeAndPreparePokecenter2F:
|
|
setscene 1
|
|
setmapscene POKECENTER_2F, 4
|
|
end
|
|
|
|
MapMobileTradeRoomMobileSignpost0Script:
|
|
refreshscreen
|
|
special Special_Function1037c2
|
|
writetext MobileTradeRoomMobile_EstablishingCommsText
|
|
waitbutton
|
|
reloadmappart
|
|
special Special_Function101231
|
|
closetext
|
|
end
|
|
|
|
MobileTradeRoomMobile_EstablishingCommsText:
|
|
text "Establishing"
|
|
line "communications…"
|
|
done
|
|
|
|
MobileTradeRoomMobile_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 2
|
|
warp_def 4, 7, 5, POKECENTER_2F
|
|
warp_def 5, 7, 5, POKECENTER_2F
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 1
|
|
bg_event 4, 2, BGEVENT_UP, MapMobileTradeRoomMobileSignpost0Script
|
|
|
|
.ObjectEvents:
|
|
db 0
|