1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
MobileTradeRoomMobile_MapScriptHeader:
; trigger count
db 2
; triggers
dw .Trigger1, $0000
dw .Trigger2, $0000
; callback count
db 0
.Trigger1:
priorityjump MobileTradeRoomMobile_Initialize
end
.Trigger2:
end
MobileTradeRoomMobile_Initialize:
dotrigger $1
domaptrigger GROUP_POKECENTER_2F, MAP_POKECENTER_2F, $4
end
MapMobileTradeRoomMobileSignpost0Script:
refreshscreen $0
special Function1037c2
writetext MobileTradeRoomMobile_EstablishingCommsText
closetext
reloadmappart
special Function101231
loadmovesprites
end
MobileTradeRoomMobile_EstablishingCommsText:
text "Establishing"
line "communications…"
done
MobileTradeRoomMobile_MapEventHeader:
; filler
db 0, 0
; warps
db 2
warp_def $7, $4, 5, GROUP_POKECENTER_2F, MAP_POKECENTER_2F
warp_def $7, $5, 5, GROUP_POKECENTER_2F, MAP_POKECENTER_2F
; xy triggers
db 0
; signposts
db 1
signpost 2, 4, SIGNPOST_UP, MapMobileTradeRoomMobileSignpost0Script
; people-events
db 0
|