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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
|
TeamRocketBaseB2F_MapScriptHeader:
.MapTriggers:
db 4
; triggers
dw UnknownScript_0x6cf85, $0000
dw UnknownScript_0x6cf86, $0000
dw UnknownScript_0x6cf87, $0000
dw UnknownScript_0x6cf88, $0000
.MapCallbacks:
db 1
; callbacks
dbw 1, UnknownScript_0x6cf89
UnknownScript_0x6cf85:
end
UnknownScript_0x6cf86:
end
UnknownScript_0x6cf87:
end
UnknownScript_0x6cf88:
end
UnknownScript_0x6cf89:
checkevent EVENT_OPENED_DOOR_TO_ROCKET_HIDEOUT_TRANSMITTER
iftrue UnknownScript_0x6cf90
return
UnknownScript_0x6cf90:
changeblock $e, $c, $7
return
UnknownScript_0x6cf95:
moveperson $4, $9, $d
jump UnknownScript_0x6cfac
UnknownScript_0x6cf9c:
moveperson $3, $15, $10
moveperson $2, $15, $10
moveperson $5, $a, $d
moveperson $4, $a, $d
UnknownScript_0x6cfac:
appear $3
appear $2
loadfont
writetext UnknownText_0x6d2ad
closetext
loadmovesprites
spriteface PLAYER, DOWN
showemote EMOTE_SHOCK, PLAYER, 15
applymovement PLAYER, MovementData_0x6d21f
playmusic MUSIC_ROCKET_ENCOUNTER
applymovement $3, MovementData_0x6d224
spriteface PLAYER, UP
applymovement $2, MovementData_0x6d22f
loadfont
writetext UnknownText_0x6d2c3
closetext
loadmovesprites
cry DRAGONITE
spriteface $3, LEFT
spriteface PLAYER, LEFT
appear $5
applymovement $5, MovementData_0x6d236
applymovement $3, MovementData_0x6d23b
applymovement $2, MovementData_0x6d24c
appear $4
applymovement $4, MovementData_0x6d244
loadfont
writetext UnknownText_0x6d38c
closetext
loadmovesprites
spriteface PLAYER, RIGHT
applymovement $3, MovementData_0x6d241
loadfont
writetext UnknownText_0x6d3bd
closetext
loadmovesprites
applymovement $2, MovementData_0x6d24a
applymovement $3, MovementData_0x6d248
winlosstext UnknownText_0x6d45c, $0000
setlasttalked $3
loadtrainer EXECUTIVEF, 2
startbattle
disappear $5
setevent EVENT_TEAM_ROCKET_BASE_B2F_EXECUTIVE
setevent EVENT_TEAM_ROCKET_BASE_B2F_GRUNT_WITH_EXECUTIVE
setevent EVENT_TEAM_ROCKET_BASE_B2F_LANCE
returnafterbattle
setevent EVENT_BEAT_ROCKET_EXECUTIVEF_2
loadfont
writetext UnknownText_0x6d4c6
closetext
loadmovesprites
special Special_FadeBlackQuickly
special Special_ReloadSpritesNoPalettes
disappear $2
disappear $3
disappear $c
disappear $d
disappear $e
pause 15
special Special_FadeInQuickly
dotrigger $2
clearevent EVENT_TEAM_ROCKET_BASE_B2F_LANCE
spriteface $4, DOWN
loadfont
writetext UnknownText_0x6d5d8
closetext
loadmovesprites
applymovement $4, MovementData_0x6d250
spriteface PLAYER, UP
loadfont
writetext UnknownText_0x6d64e
closetext
loadmovesprites
follow $4, PLAYER
applymovement $4, MovementData_0x6d254
stopfollow
applymovement $4, MovementData_0x6d258
loadfont
writetext UnknownText_0x6d6cf
closetext
loadmovesprites
applymovement $4, MovementData_0x6d267
disappear $4
UnknownScript_0x6d075:
applymovement PLAYER, MovementData_0x6d271
end
UnknownScript_0x6d07a:
loadfont
writetext UnknownText_0x6d7ea
closetext
loadmovesprites
applymovement PLAYER, MovementData_0x6d278
end
UnknownScript_0x6d085:
spriteface PLAYER, UP
jump UnknownScript_0x6d091
UnknownScript_0x6d08b:
spriteface PLAYER, RIGHT
spriteface $4, LEFT
UnknownScript_0x6d091:
loadfont
writetext UnknownText_0x6da97
closetext
loadmovesprites
special FadeBlackBGMap
special Mobile_HealParty
playsound SFX_FULL_HEAL
special HealParty
special FadeInBGMap
loadfont
writetext UnknownText_0x6daf7
closetext
loadmovesprites
dotrigger $1
setevent EVENT_LANCE_HEALED_YOU_IN_TEAM_ROCKET_BASE
checkcode VAR_FACING
if_equal RIGHT, UnknownScript_0x6d0be
applymovement $4, MovementData_0x6d212
disappear $4
end
UnknownScript_0x6d0be:
applymovement $4, MovementData_0x6d219
disappear $4
end
TrainerGruntM17:
trainer EVENT_BEAT_ROCKET_GRUNTM_17, GRUNTM, 17, GruntM17SeenText, GruntM17BeatenText, $0000, GruntM17Script
GruntM17Script:
talkaftercancel
loadfont
writetext UnknownText_0x6db88
closetext
loadmovesprites
end
TrainerGruntM18:
trainer EVENT_BEAT_ROCKET_GRUNTM_18, GRUNTM, 18, GruntM18SeenText, GruntM18BeatenText, $0000, GruntM18Script
GruntM18Script:
talkaftercancel
loadfont
writetext UnknownText_0x6dc1a
closetext
loadmovesprites
end
TrainerGruntM19:
trainer EVENT_BEAT_ROCKET_GRUNTM_19, GRUNTM, 19, GruntM19SeenText, GruntM19BeatenText, $0000, GruntM19Script
GruntM19Script:
talkaftercancel
loadfont
writetext UnknownText_0x6dcd1
closetext
loadmovesprites
end
VoltorbScript_0x6d101:
cry ELECTRODE
loadpokedata ELECTRODE, 23
startbattle
iftrue UnknownScript_0x6d182
disappear $6
disappear $9
checkevent EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_1
iffalse UnknownScript_0x6d182
checkevent EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_2
iffalse UnknownScript_0x6d182
checkevent EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_3
iffalse UnknownScript_0x6d182
returnafterbattle
special PlayMapMusic
applymovement PLAYER, MovementData_0x6d28c
jump UnknownScript_0x6d184
VoltorbScript_0x6d12c:
cry ELECTRODE
loadpokedata ELECTRODE, 23
startbattle
iftrue UnknownScript_0x6d182
disappear $7
disappear $a
checkevent EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_1
iffalse UnknownScript_0x6d182
checkevent EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_2
iffalse UnknownScript_0x6d182
checkevent EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_3
iffalse UnknownScript_0x6d182
returnafterbattle
special PlayMapMusic
applymovement PLAYER, MovementData_0x6d299
jump UnknownScript_0x6d184
VoltorbScript_0x6d157:
cry ELECTRODE
loadpokedata ELECTRODE, 23
startbattle
iftrue UnknownScript_0x6d182
disappear $8
disappear $b
checkevent EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_1
iffalse UnknownScript_0x6d182
checkevent EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_2
iffalse UnknownScript_0x6d182
checkevent EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_3
iffalse UnknownScript_0x6d182
returnafterbattle
special PlayMapMusic
applymovement PLAYER, MovementData_0x6d2a4
jump UnknownScript_0x6d184
UnknownScript_0x6d182:
returnafterbattle
end
UnknownScript_0x6d184:
moveperson $4, $12, $6
appear $4
applymovement $4, MovementData_0x6d27a
spriteface PLAYER, RIGHT
loadfont
writetext UnknownText_0x6d809
keeptextopen
verbosegiveitem HM_WHIRLPOOL, 1
setevent EVENT_GOT_HM06_WHIRLPOOL
writetext UnknownText_0x6d8f8
closetext
loadmovesprites
spriteface $4, DOWN
loadfont
writetext UnknownText_0x6d994
closetext
loadmovesprites
spriteface PLAYER, DOWN
applymovement $4, MovementData_0x6d283
disappear $4
setevent EVENT_CLEARED_ROCKET_HIDEOUT
clearflag ENGINE_ROCKET_SIGNAL_ON_CH20
setevent EVENT_ROUTE_43_GATE_ROCKETS
setevent EVENT_MAHOGANY_TOWN_POKEFAN_M_BLOCKS_GYM
dotrigger $3
clearevent EVENT_LAKE_OF_RAGE_CIVILIANS
setevent EVENT_TURNED_OFF_SECURITY_CAMERAS
setevent EVENT_SECURITY_CAMERA_1
setevent EVENT_SECURITY_CAMERA_2
setevent EVENT_SECURITY_CAMERA_3
setevent EVENT_SECURITY_CAMERA_4
setevent EVENT_SECURITY_CAMERA_5
end
MapTeamRocketBaseB2FSignpostPtr1:
dw EVENT_OPENED_DOOR_TO_ROCKET_HIDEOUT_TRANSMITTER
dw MapTeamRocketBaseB2FSignpost1Script
MapTeamRocketBaseB2FSignpost1Script:
loadfont
checkevent EVENT_LEARNED_HAIL_GIOVANNI
iftrue UnknownScript_0x6d1e8
writetext UnknownText_0x6dd39
closetext
loadmovesprites
end
UnknownScript_0x6d1e8:
writetext UnknownText_0x6dd6b
closetext
playsound SFX_ENTER_DOOR
changeblock $e, $c, $7
reloadmappart
loadmovesprites
setevent EVENT_OPENED_DOOR_TO_ROCKET_HIDEOUT_TRANSMITTER
waitbutton
end
MapTeamRocketBaseB2FSignpost21Script:
loadfont
checkevent EVENT_CLEARED_ROCKET_HIDEOUT
iftrue UnknownScript_0x6d207
writetext UnknownText_0x6dda7
closetext
loadmovesprites
end
UnknownScript_0x6d207:
writetext UnknownText_0x6de03
closetext
loadmovesprites
end
ItemFragment_0x6d20d:
db TM_THIEF, 1
MapTeamRocketBaseB2FSignpostItem22:
dwb EVENT_TEAM_ROCKET_BASE_B2F_HIDDEN_FULL_HEAL, FULL_HEAL
MovementData_0x6d212:
step_right
step_right
step_right
step_right
step_right
step_right
step_end
MovementData_0x6d219:
step_right
step_right
step_right
step_right
step_right
step_end
MovementData_0x6d21f:
step_down
step_down
step_down
turn_head_right
step_end
MovementData_0x6d224:
big_step_left
big_step_left
big_step_up
big_step_up
big_step_up
big_step_left
big_step_left
big_step_left
big_step_left
turn_head_down
step_end
MovementData_0x6d22f:
big_step_left
big_step_left
big_step_up
big_step_up
big_step_left
big_step_left
step_end
MovementData_0x6d236:
big_step_right
big_step_right
big_step_right
big_step_right
step_end
MovementData_0x6d23b:
fix_facing
db $39 ; movement
jump_step_right
db $38 ; movement
remove_fixed_facing
step_end
MovementData_0x6d241:
slow_step_down
turn_head_left
step_end
MovementData_0x6d244:
step_right
step_right
step_right
step_end
MovementData_0x6d248:
big_step_left
step_end
MovementData_0x6d24a:
big_step_left
step_end
MovementData_0x6d24c:
big_step_left
big_step_up
turn_head_left
step_end
MovementData_0x6d250:
step_right
step_right
turn_head_down
step_end
MovementData_0x6d254:
step_up
step_up
step_up
step_end
MovementData_0x6d258:
accelerate_last
step_left
step_left
turn_head_up
accelerate_last
step_right
step_right
step_right
step_right
turn_head_up
accelerate_last
step_left
step_left
turn_head_down
step_end
MovementData_0x6d267:
step_right
step_right
step_right
step_right
step_up
step_up
step_up
step_up
step_up
step_end
MovementData_0x6d271:
step_up
step_left
step_left
step_left
step_left
turn_head_up
step_end
MovementData_0x6d278:
step_left
step_end
MovementData_0x6d27a:
step_down
step_down
step_down
step_down
step_down
step_left
step_left
step_left
step_end
MovementData_0x6d283:
step_down
step_down
step_left
step_left
step_left
step_left
step_left
step_left
step_end
MovementData_0x6d28c:
step_right
step_right
step_down
step_down
step_down
step_down
step_down
step_down
step_right
step_right
step_right
step_right
step_end
MovementData_0x6d299:
step_right
step_right
step_down
step_down
step_down
step_down
step_right
step_right
step_right
step_right
step_end
MovementData_0x6d2a4:
step_right
step_right
step_down
step_down
step_right
step_right
step_right
step_right
step_end
UnknownText_0x6d2ad:
text "Hold it right"
line "there!"
done
UnknownText_0x6d2c3:
text "We can't have a"
line "brat like you on"
cont "the loose."
para "It's harmful to"
line "TEAM ROCKET's"
cont "pride, you see."
para "However strong you"
line "may be, you can't"
para "take both of us at"
line "the same time."
para "Sorry, baby. Now"
line "get ready to be"
cont "thrashed."
done
UnknownText_0x6d38c:
text "Hey! Don't be so"
line "selfish. Spread"
cont "the fun around."
done
UnknownText_0x6d3bd:
text "What? You had an"
line "accomplice?"
para "Where is your"
line "sense of honor?"
para "As the interim"
line "boss in place of"
para "GIOVANNI, I'll"
line "show you how wrong"
para "it is to meddle"
line "with TEAM ROCKET!"
done
UnknownText_0x6d45c:
text "Tch, you really"
line "are strong."
para "It's too bad."
para "If you were to"
line "join TEAM ROCKET,"
para "you could become"
line "an EXECUTIVE."
done
UnknownText_0x6d4c6:
text "…This hideout is"
line "done for…"
para "But that's fine."
line "The broadcast ex-"
cont "periment was a"
cont "total success."
para "It doesn't matter"
line "what happens to"
cont "this hideout now."
para "We have much big-"
line "ger plans."
para "You'll come to"
line "appreciate TEAM"
para "ROCKET's true"
line "power soon enough."
para "Enjoy yourself"
line "while you can…"
para "Fufufufu…"
done
UnknownText_0x6d5d8:
text "LANCE: That did"
line "it. We defeated"
para "all the ROCKETS"
line "here."
para "But I'm concerned"
line "about the young"
para "guy I battled in"
line "the process…"
done
UnknownText_0x6d64e:
text "Sorry, <PLAY_G>."
line "I saw how well you"
para "were doing, so I"
line "just hung back."
para "Now all there is"
line "left to do is to"
para "turn off that odd"
line "radio signal."
done
UnknownText_0x6d6cf:
text "It's this machine"
line "that's causing all"
cont "the problems."
para "I don't see a"
line "switch on it…"
para "We have no choice."
line "We have to make"
para "all the ELECTRODE"
line "faint."
para "That should stop"
line "this machine from"
para "transmitting that"
line "strange signal."
para "It's no fault of"
line "the #MON, so it"
para "makes me feel"
line "guilty."
para "<PLAY_G>, let's"
line "split the job."
done
UnknownText_0x6d7ea:
text "LANCE: Leave this"
line "side to me."
done
UnknownText_0x6d809:
text "LANCE: That odd"
line "signal has finally"
cont "stopped."
para "The LAKE should be"
line "back to normal."
para "You're the hero!"
line "Let me thank you"
para "on behalf of all"
line "the #MON."
para "Oh, yes. You"
line "should take this."
para "I found it here,"
line "but I don't have"
cont "any need for it."
done
UnknownText_0x6d8e6:
text "<PLAYER> received"
line "HM06."
done
UnknownText_0x6d8f8:
text "That's WHIRLPOOL."
line "Teach it to a"
para "#MON to get"
line "across wild water."
para "But keep this in"
line "mind."
para "You can use that"
line "out of battle only"
para "with the BADGE"
line "from MAHOGANY GYM."
done
UnknownText_0x6d994:
text "<PLAY_G>…"
para "The journey to be-"
line "coming the #MON"
para "MASTER is long and"
line "difficult."
para "Knowing that, will"
line "you keep going?"
para "…"
para "I see. No, you're"
line "right."
para "If you would give"
line "up that easily,"
para "you would have"
line "never chased that"
para "dream in the first"
line "place."
para "I look forward to"
line "seeing you again!"
done
UnknownText_0x6da97:
text "LANCE: Are you all"
line "right?"
para "Your #MON are"
line "hurt and tired."
para "Here, give them"
line "some of my medi-"
cont "cine."
done
UnknownText_0x6daf7:
text "LANCE: <PLAY_G>,"
line "let's give it our"
cont "best for #MON."
done
GruntM17SeenText:
text "The door won't"
line "open?"
para "Well, duh."
line "It has to have a"
para "password that only"
line "TEAM ROCKET knows."
done
GruntM17BeatenText:
text "What? I lost?"
done
UnknownText_0x6db88:
text "Heh, I'm just a"
line "GRUNT."
para "I don't know the"
line "password. Too bad"
cont "for you."
done
GruntM18SeenText:
text "Oh, a kid? I don't"
line "really like this,"
para "but eliminate you"
line "I must."
done
GruntM18BeatenText:
text "I knew I'd lose…"
done
UnknownText_0x6dc1a:
text "I got wiped out on"
line "the last mission"
cont "by a kid too."
para "When we were ab-"
line "ducting #MON,"
para "this kid with long"
line "red hair and mean-"
para "looking eyes just"
line "creamed me…"
done
GruntM19SeenText:
text "You rotten little"
line "pest!"
done
GruntM19BeatenText:
text "Grrrr…"
done
UnknownText_0x6dcd1:
text "Heh, only the boss"
line "knows the password"
cont "for that door."
para "Where's the boss?"
line "Who knows? Go look"
cont "for yourself."
done
UnknownText_0x6dd39:
text "The door's closed…"
para "It needs a pass-"
line "word to open."
done
UnknownText_0x6dd6b:
text "The door's closed…"
para "<PLAYER> entered"
line "the password."
para "The door opened!"
done
UnknownText_0x6dda7:
text "It's the radio"
line "transmitter that's"
para "sending the"
line "sinister signal."
para "It's working at"
line "full capacity."
done
UnknownText_0x6de03:
text "The radio trans-"
line "mitter has finally"
para "stopped its evil"
line "broadcast."
done
TeamRocketBaseB2F_MapEventHeader:
; filler
db 0, 0
.Warps:
db 5
warp_def $e, $3, 2, TEAM_ROCKET_BASE_B1F
warp_def $2, $3, 1, TEAM_ROCKET_BASE_B3F
warp_def $2, $1b, 2, TEAM_ROCKET_BASE_B3F
warp_def $6, $3, 3, TEAM_ROCKET_BASE_B3F
warp_def $e, $1b, 4, TEAM_ROCKET_BASE_B3F
.XYTriggers:
db 9
xy_trigger 0, $e, $5, $0, UnknownScript_0x6d085, $0, $0
xy_trigger 0, $d, $4, $0, UnknownScript_0x6d08b, $0, $0
xy_trigger 1, $b, $e, $0, UnknownScript_0x6cf95, $0, $0
xy_trigger 1, $b, $f, $0, UnknownScript_0x6cf9c, $0, $0
xy_trigger 2, $c, $e, $0, UnknownScript_0x6d075, $0, $0
xy_trigger 2, $c, $f, $0, UnknownScript_0x6d075, $0, $0
xy_trigger 2, $3, $c, $0, UnknownScript_0x6d07a, $0, $0
xy_trigger 2, $a, $c, $0, UnknownScript_0x6d07a, $0, $0
xy_trigger 2, $b, $c, $0, UnknownScript_0x6d07a, $0, $0
.Signposts:
db 23
signpost 12, 14, SIGNPOST_IFNOTSET, MapTeamRocketBaseB2FSignpostPtr1
signpost 12, 15, SIGNPOST_IFNOTSET, MapTeamRocketBaseB2FSignpostPtr1
signpost 9, 17, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 9, 16, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 9, 15, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 9, 14, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 9, 13, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 9, 12, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 8, 12, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 7, 12, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 6, 12, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 5, 12, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 4, 12, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 4, 13, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 4, 14, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 4, 15, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 4, 16, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 4, 17, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 5, 17, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 6, 17, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 7, 17, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 8, 17, SIGNPOST_READ, MapTeamRocketBaseB2FSignpost21Script
signpost 7, 26, SIGNPOST_ITEM, MapTeamRocketBaseB2FSignpostItem22
.PersonEvents:
db 14
person_event SPRITE_ROCKET, 16, 20, $7, 0, 0, -1, -1, 0, 0, 0, ObjectEvent, EVENT_TEAM_ROCKET_BASE_B2F_GRUNT_WITH_EXECUTIVE
person_event SPRITE_ROCKET_GIRL, 16, 20, $7, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, 0, 0, ObjectEvent, EVENT_TEAM_ROCKET_BASE_B2F_EXECUTIVE
person_event SPRITE_LANCE, 13, 5, $6, 0, 0, -1, -1, 0, 0, 0, ObjectEvent, EVENT_TEAM_ROCKET_BASE_B2F_LANCE
person_event SPRITE_DRAGON, 13, 9, $9, 0, 0, -1, -1, 0, 0, 0, ObjectEvent, EVENT_TEAM_ROCKET_BASE_B2F_DRAGONITE
person_event SPRITE_VOLTORB, 5, 7, $16, 0, 0, -1, -1, 0, 0, 0, VoltorbScript_0x6d101, EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_1
person_event SPRITE_VOLTORB, 7, 7, $16, 0, 0, -1, -1, 0, 0, 0, VoltorbScript_0x6d12c, EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_2
person_event SPRITE_VOLTORB, 9, 7, $16, 0, 0, -1, -1, 0, 0, 0, VoltorbScript_0x6d157, EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_3
person_event SPRITE_VOLTORB, 5, 22, $16, 0, 0, -1, -1, 0, 0, 0, ObjectEvent, EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_1
person_event SPRITE_VOLTORB, 7, 22, $16, 0, 0, -1, -1, 0, 0, 0, ObjectEvent, EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_2
person_event SPRITE_VOLTORB, 9, 22, $16, 0, 0, -1, -1, 0, 0, 0, ObjectEvent, EVENT_TEAM_ROCKET_BASE_B2F_ELECTRODE_3
person_event SPRITE_ROCKET, 13, 25, $6, 0, 0, -1, -1, 0, 2, 3, TrainerGruntM17, EVENT_TEAM_ROCKET_BASE_POPULATION
person_event SPRITE_ROCKET, 1, 4, $a, 0, 0, -1, -1, 0, 2, 1, TrainerGruntM18, EVENT_TEAM_ROCKET_BASE_POPULATION
person_event SPRITE_ROCKET, 14, 21, $8, 0, 0, -1, -1, 0, 2, 4, TrainerGruntM19, EVENT_TEAM_ROCKET_BASE_POPULATION
person_event SPRITE_POKE_BALL, 10, 3, $1, 0, 0, -1, -1, 0, 1, 0, ItemFragment_0x6d20d, EVENT_TEAM_ROCKET_BASE_B2F_TM_THIEF
|