-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathtext3.asm
2034 lines (1626 loc) · 34.1 KB
/
text3.asm
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
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
YouDoNotOwnAllCardsNeededToBuildThisDeckText:
text "You do not own all cards needed"
line "to build this Deck."
done
BuiltDeckText:
text "Built"
line "<RAMTEXT>"
done
TheseCardsAreNeededToBuildThisDeckText:
text "These cards are needed"
line "to build this Deck:"
done
DismantleTheseDecksText:
text "Dismantle these Decks?"
done
DismantledTheDeckText:
text "Dismantled the Deck."
done
OKIfFileDeletedText:
text "OK if this file is deleted?"
done
ReadTheInstructionsText:
text "Read the Instructions"
done
PrintThisCardYesNoText:
text "Print this card?"
line " Yes No"
done
PleaseChooseDeckConfigurationToPrintText:
text "Please choose a Deck configuration"
line "to print."
done
PrintThisDeckText:
text "Print this Deck?"
done
PrintTheCardListText:
text "Print the card list?"
line " Yes No"
done
PrintMenuItemsText:
text "Pokémon Cards"
line "Deck Configuration"
line "Card List"
line "Print Quality"
line "Quit Print"
done
WhatWouldYouLikeToPrintText:
text "What would you like to print?"
done
PleaseSetTheContrastText:
text "Please set the contrast:"
line " Light 1 2 3 4 5 Dark"
done
PleaseMakeSureToTurnGameBoyPrinterOffText:
text "Please make sure to turn"
line "the Game Boy Printer OFF."
done
ProceduresForSendingCardsText:
text "Procedures for sending cards:"
done
CardSendingProceduresText:
text "1. Choose the card you wish to send."
line " Press left/right to choose more."
line ""
line "2. Choose all the cards. Then press"
line " the B Button to open the menu."
line ""
line "3. Choose Send to finish"
line " the process."
done
PleaseReadTheProceduresForSendingCardsText:
text "Please read the procedures"
line "for sending cards."
done
SendText:
text "Send"
done
CardReceivedText:
text "Card received"
done
CardToSendText:
text "Card to send"
done
SendTheseCardsText:
text "Send these cards?"
done
ReceivedTheseCardsFromText:
text "Received these cards"
line "from <RAMTEXT>!"
done
PleaseChooseADeckConfigurationToSendText:
text "Please choose a Deck "
line "configuration to send."
done
PleaseChooseASaveSlotText:
text "Please choose a Save Slot."
done
UnusedText0286: ; Unused
text "Receive configuration."
done
ReceivedADeckConfigurationFromText:
text "Received a deck configuration"
line "from <RAMTEXT>!"
done
FightingMachineText:
text " Fighting Machine "
done
RockMachineText:
text " Rock Machine "
done
WaterMachineText:
text " Water Machine "
done
LightningMachineText:
text " Lightning Machine "
done
GrassMachineText:
text " Grass Machine "
done
PsychicMachineText:
text " Psychic Machine "
done
ScienceMachineText:
text " Science Machine "
done
FireMachineText:
text " Fire Machine "
done
AutoMachineText:
text " Auto Machine "
done
LegendaryMachineText:
text " Legendary Machine "
done
AllFightingPokemonText:
text "All Fighting Pokémon"
done
BenchAttackText:
text "Bench Attack"
done
BattleContestText:
text "Battle Contest"
done
HeatedBattleText:
text "Heated Battle"
done
FirstStrikeText:
text "First-Strike"
done
SqueakingMouseText:
text "Squeaking Mouse"
done
GreatQuakeText:
text "Great Quake"
done
BoneAttackText:
text "Bone Attack"
done
ExcavationText:
text "Excavation"
done
RockCrusherText:
text "Rock Crusher"
done
BlueWaterText:
text "Blue Water"
done
OnTheBeachText:
text "On the Beach"
done
ParalyzeText:
text "Paralyze!"
done
EnergyRemovalText:
text "Energy Removal"
done
RainDancerText:
text "Rain Dancer"
done
CutePokemonText:
text "Cute Pokémon"
done
PokemonFluteText:
text "Pokémon Flute"
done
YellowFlashText:
text "Yellow Flash"
done
ElectricShockText:
text "Electric Shock"
done
ZappingSelfdestructText:
text "Zapping Selfdestruct"
done
InsectCollectionText:
text "Insect Collection"
done
JungleText:
text "Jungle"
done
FlowerGardenText:
text "Flower Garden"
done
KaleidoscopeText:
text "Kaleidoscope"
done
FlowerPowerText:
text "Flower Power"
done
PsychicPowerText:
text "Psychic Power"
done
DreamEaterHaunterText:
text "Dream Eater Haunter"
done
ScavengingSlowbroText:
text "Scavenging Slowbro"
done
StrangePowerText:
text "Strange Power"
done
StrangePsyshockText:
text "Strange Psyshock"
done
LovelyNidoranText:
text "Lovely Nidoran"
done
ScienceCorpsText:
text "Science Corps"
done
FlyinPokemonText:
text "Flyin' Pokémon"
done
PoisonText:
text "Poison"
done
WondersOfScienceText:
text "Wonders of Science"
done
ReplaceEmAllText:
text "Replace 'Em All"
done
ChariSaurText:
text "Chari-Saur"
done
TrafficLightText:
text "Traffic Light"
done
FirePokemonDeckText:
text "Fire Pokémon"
done
FireChargeText:
text "Fire Charge"
done
CharmanderAndFriendsText:
text "Charmander & Friends"
done
SquirtleAndFriendsText:
text "Squirtle & Friends"
done
BulbasaurAndFriendsText:
text "Bulbasaur & Friends"
done
PsychicMachampText:
text "Psychic Machamp"
done
WaterBeetleText:
text "Water Beetle"
done
LegendaryMoltresText:
text "Legendary Moltres"
done
LegendaryZapdosText:
text "Legendary Zapdos"
done
LegendaryArticunoText:
text "Legendary Articuno"
done
LegendaryDragoniteText:
text "Legendary Dragonite"
done
MysteriousPokemonText:
text "Mysterious Pokémon"
done
AllFightingPokemonDescriptionText:
text "A Deck of Fighting Pokémon:"
line "Feel their Fighting power!"
done
BenchAttackDescriptionText:
text "A Deck of Pokémon that can"
line "attack the Bench."
done
BattleContestDescriptionText:
text "A Deck which uses Fighting Attacks"
line "such as Slash and Punch."
done
HeatedBattleDescriptionText:
text "A powerful Deck with both Fire"
line "and Fighting Pokémon."
done
FirstStrikeDescriptionText:
text "A Deck for fast and furious "
line "attacks."
done
SqueakingMouseDescriptionText:
text "A Deck made of Mouse Pokémon."
line "Uses PlusPower to Power up!"
done
GreatQuakeDescriptionText:
text "Use Dugtrio's Earthquake"
line "to cause great damage."
done
BoneAttackDescriptionText:
text "A Deck of Cubone and Marowak - "
line "A call for help."
done
ExcavationDescriptionText:
text "A Deck which creates Pokémon by"
line "evolving Mysterious Fossils."
done
RockCrusherDescriptionText:
text "A Deck of Rock Pokémon. It's"
line "Strong against Lightning Pokémon."
done
BlueWaterDescriptionText:
text "A Deck of Water Pokémon: Their"
line "Blue Horror washes over enemies."
done
OnTheBeachDescriptionText:
text "A well balanced Deck"
line "of Sandshrew and Water Pokémon!"
done
ParalyzeDescriptionText:
text "Paralyze the opponent's Pokémon:"
line "Stop 'em and drop 'em!"
done
EnergyRemovalDescriptionText:
text "Uses Whirlpool and Hyper Beam to"
line "remove opponents' Energy cards."
done
RainDancerDescriptionText:
text "Use Rain Dance to attach Water"
line "Energy for powerful Attacks!"
done
CutePokemonDescriptionText:
text "A Deck of cute Pokémon such as"
line "Pikachu and Eevee."
done
PokemonFluteDescriptionText:
text "Use the Pokémon Flute to revive"
line "opponents' Pokémon and Attack!"
done
YellowFlashDescriptionText:
text "A deck of Pokémon that use Lightning"
line "Energy to zap opponents."
done
ElectricShockDescriptionText:
text "A Deck which Shocks and Paralyzes"
line "opponents with its Attacks."
done
ZappingSelfdestructDescriptionText:
text "Selfdestruct causes great damage "
line "- even to the opponent's Bench."
done
InsectCollectionDescriptionText:
text "A Deck made of Insect Pokémon"
line "Go Bug Power!"
done
JungleDescriptionText:
text "A Deck of Grass Pokémon: There "
line "are many dangers in the Jungle."
done
FlowerGardenDescriptionText:
text "A Deck of Flower Pokémon:"
line "Beautiful but Dangerous"
done
KaleidoscopeDescriptionText:
text "Uses Venomoth's Pokémon Power to"
line "change the opponent's Weakness."
done
FlowerPowerDescriptionText:
text "A powerful Big Eggsplosion "
line "and Energy Transfer combo!"
done
PsychicPowerDescriptionText:
text "Use the Psychic power of the"
line "Psychic Pokémon to Attack!"
done
DreamEaterHaunterDescriptionText:
text "Uses Haunter's Dream Eater"
line "to cause great damage!"
done
ScavengingSlowbroDescriptionText:
text "Continually draw Trainer "
line "Cards from the Discard Pile!"
done
StrangePowerDescriptionText:
text "Confuse opponents with"
line "mysterious power!"
done
StrangePsyshockDescriptionText:
text "Use Alakazam's Damage Swap"
line "to move damage counters!"
done
LovelyNidoranDescriptionText:
text "Uses Nidoqueen's Boyfriends to cause"
line "great damage to the opponent."
done
ScienceCorpsDescriptionText:
text "The march of the Science Corps!"
line "Attack with the power of science!"
done
FlyinPokemonDescriptionText:
text "Pokémon with feathers flock "
line "together! Retreating is easy!"
done
PoisonDescriptionText:
text "A Deck that uses Poison to "
line "slowly Knock Out the opponent."
done
WondersOfScienceDescriptionText:
text "Block Pokémon Powers with "
line "Muk and attack with Mewtwo!"
done
ReplaceEmAllDescriptionText:
text "A Deck that shuffles"
line "the opponent's cards"
done
ChariSaurDescriptionText:
text "Attack with Charizard - with "
line "just a few Fire Energy cards!"
done
TrafficLightDescriptionText:
text "Pokémon that can Attack with"
line "Fire, Water or Lightning Energy!"
done
FirePokemonDescriptionText:
text "With Fire Pokémon like Charizard, "
line "Rapidash and Magmar, it's hot!"
done
FireChargeDescriptionText:
text "Desperate attacks Damage your "
line "opponent and you!"
done
CharmanderAndFriendsDescriptionText:
text "A Fire, Grass and Water Deck:"
line "Charmander, Pinsir and Seel"
done
SquirtleAndFriendsDescriptionText:
text "A Water, Fire, and Lightning Deck:"
line "Squirtle, Charmander and Pikachu"
done
BulbasaurAndFriendsDescriptionText:
text "A Grass, Lightning and Psychic Deck:"
line "Bulbasaur, Pikachu and Abra"
done
PsychicMachampDescriptionText:
text "Machamp, Hitmonlee, Hitmonchan"
line "Gengar and Alakazam are furious!"
done
WaterBeetleDescriptionText:
text "An Evolution Deck with Weedle, "
line "Nidoran♂ and Bellsprout."
done
LegendaryMoltresDescriptionText:
text "Gather Fire Energy with the"
line "Legendary Moltres!"
done
LegendaryZapdosDescriptionText:
text "Zap opponents with the"
line "Legandary Zapdos!"
done
LegendaryArticunoDescriptionText:
text "Paralyze opponents with the"
line "Legendary Articuno!"
done
LegendaryDragoniteDescriptionText:
text "Heal your Pokémon with the"
line "Legendary Dragonite!"
done
MysteriousPokemonDescriptionText:
text "A very special Deck made of"
line "very rare Pokémon cards!"
done
PokemonCardGlossaryText:
text "Pokémon Card Glossary"
done
GlossaryMenuPage1Text:
text "Deck Active Pokémon"
line "Discard Pile Bench Pokémon"
line "Hand Prizes "
line "Arena Damage Counter"
line "Bench To next page "
done
GlossaryMenuPage2Text:
text "Energy Card Pokémon Power "
line "Trainer Card Weakness "
line "Basic Pokémon Resistance"
line "Evolution Card Retreat "
line "Attack To previous page"
done
ChooseWordAndPressAButtonText:
text "Choose a word and press the"
line "A button."
done
AboutTheDeckText:
text "About the Deck"
done
AboutTheDiscardPileText:
text "About the Discard Pile"
done
AboutTheHandText:
text "About the Hand"
done
AboutTheArenaText:
text "About the Arena"
done
AboutTheBenchText:
text "About the Bench"
done
AboutTheActivePokemonText:
text "About the Active Pokémon"
done
AboutBenchPokemonText:
text "About Bench Pokémon"
done
AboutPrizesText:
text "About Prizes"
done
AboutDamageCountersText:
text "About Damage Counters"
done
AboutEnergyCardsText:
text "About Energy Cards"
done
AboutTrainerCardsText:
text "About Trainer Cards"
done
AboutBasicPokemonText:
text "About Basic Pokémon"
done
AboutEvolutionCardsText:
text "About Evolution Cards"
done
AboutAttackingText:
text "About Attacking"
done
AboutPokemonPowerText:
text "About Pokémon Power"
done
AboutWeaknessText:
text "About Weakness"
done
AboutResistanceText:
text "About Resistance"
done
AboutRetreatingText:
text "About Retreating"
done
DeckDescriptionText:
text "The Deck is the pile of cards"
line "you will be drawing from."
line "At the beginning of your turn, you"
line "will draw 1 card from your Deck."
line "If there are no cards to draw"
line "from the Deck, you lose the game."
done
DiscardPileDescriptionText:
text "The pile in which you place used"
line "cards is called the Discard Pile."
line "You can look at both yours and your"
line "opponent's Discard Pile "
line "with the Check command."
done
HandDescriptionText:
text "The cards held by each player"
line "are called a Hand."
line "There is no restriction to the"
line "number of cards in the Hand."
line "You may even have 10 or 20 "
line "cards in your Hand."
done
ArenaDescriptionText:
text "The place where the Pokémon"
line "that is actively fighting"
line "is placed is called the Arena."
line "The game proceeds by using the"
line "Active Pokémon in the Arena."
done
BenchDescriptionText:
text "The Bench is where your Pokémon"
line "that are in play but aren't actively"
line "fighting sit."
line "They're ready to come out and fight"
line "if the Active Pokémon retreats or"
line "is Knocked Out."
line "You can have up to 5 Pokémon on"
line "the Bench."
done
ActivePokemonDescriptionText:
text "The Active Pokémon is the "
line "Pokémon that is in the Arena."
line "Only Active Pokémon can "
line "attack."
done
BenchPokemonDescriptionText:
text "The Pokémon that are in play"
line "but aren't actively fighting"
line "are called Bench Pokémon."
line "They're ready to come out and fight"
line "if the Active Pokémon retreats or"
line "is Knocked Out."
line "If the Active Pokémon is Knocked"
line "Out and you don't have a Bench "
line "Pokémon, you lose the game."
done
PrizesDescriptionText:
text "Prizes are the cards placed to"
line "count the number of the opponent's"
line "Pokémon you Knocked Out."
line "Every time one of your opponent's"
line "Pokémon is Knocked Out, you take 1"
line "of your Prizes into your Hand."
line "When you take all of your Prizes,"
line "you win the game."
done
DamageCountersDescriptionText:
text "A Damage Counter represents the"
line "amount of damage a certain Pokémon"
line "has taken."
line "1 Damage Counter represents"
line "10 HP of damage."
line "If a Pokémon with an HP of 30 has"
line "3 Damage Counters, it has received"
line "30 HP of damage, and its remaining"
line "HP is 0."
done
EnergyCardsDescriptionText:
text "Energy Cards are cards that power"
line "your Pokémon, making them able"
line "to Attack."
line "There are 7 types of Energy Cards"
line "[<GRASS> Grass] [<FIRE> Fire]"
line "[<WATER> Water] [<LIGHTNING> Lightning]"
line "[<PSYCHIC> Psychic] [<FIGHTING> Fighting]"
line "and [<COLORLESS> Double Colorless]"
line "You may only play 1 Energy Card"
line "from your Hand per turn."
done
TrainerCardsDescriptionText:
text "Trainer Cards are support cards."
line "There are many Trainer Cards"
line "with different effects."
line "Trainer Cards are played during"
line "your turn by following the"
line "instructions on the card and then"
line "discarding it."
line "You may use as many Trainer Cards"
line "as you like."
done
BasicPokemonDescriptionText:
text "Basic Pokémon are cards that "
line "can be played directly from your "
line "hand into the play area. Basic "
line "Pokémon act as the base for "
line "Evolution Cards. Charmander, "
line "Squirtle and Bulbasaur are"
line "examples of Basic Pokémon."
done
EvolutionCardsDescriptionText:
text "Evolution Cards are cards you"
line "play on top of a Basic Pokémon card"
line "(or sometimes on top of another"
line "Evolution Card) to make it stronger."
line "There are Stage 1 and Stage 2"
line "Evolution Cards."
line "If you do not have a Basic Pokémon"
line "in the Play Area, you cannot place"
line "the Stage 1 Evolution Card, and if"
line "you do not have a Stage 1 Evolution"
line "Card in the Play Area, you cannot"
line "place the Stage 2 Evolution Card."
done
AttackingDescriptionText:
text "By choosing Attack, your Pokémon"
line "will fight your opponent's Pokémon."
line "Your Pokémon require Energy"
line "in order to Attack."
line "The amount of Energy required"
line "differs according to the Attack."
line "The Active Pokémon is the only"
line "Pokémon that can Attack."
done
PokemonPowerDescriptionText:
text "Unlike Attacks, Pokémon Power"
line "can be used by Active or Benched"
line "Pokémon. Some Pokémon Power are"
line "effective by just placing the"
line "Pokémon in the Play Area, but for"
line "some you must choose the"
line "command, PKMN Power."
done
WeaknessDescriptionText:
text "Some Pokémon have a Weakness."
line "If a Pokémon has a Weakness, it"
line "takes double damage when attacked by"
line "Pokémon of a certain type."
done
ResistanceDescriptionText:
text "Some Pokémon have Resistance."
line "If a Pokémon has Resistance, it"
line "takes 30 less damage whenever"
line "attacked by Pokémon of"
line "a certain type."
done
RetreatingDescriptionText:
text "By choosing Retreat, you can"
line "switch the Active Pokémon with"
line "a Pokémon on your Bench."
line "Energy is required to Retreat"
line "your Active Pokémon."
line "The amount of Energy required to"
line "Retreat differs for each Pokémon."
line "To Retreat, you must discard"
line "Energy equal to the Retreat Cost"
line "of the retreating Pokémon."
done
UnusedText031e: ; Unused
text "Modify Deck"
line "Card List"
line "Album List"
line "Deck Save Machine"
line "Printing Menu"
line "Auto Deck Machine"
line "Gift Center"
line "Name Input"
done
UnusedText031f: ; Unused
text "Fighting Machine"
line "Rock Machine"
line "Water Machine"
line "Lightning Machine"
line "Grass Machine"
line "Psychic Machine"
line "Science Machine"
line "Fire Machine"
line "Auto Machine"
line "Legendary Machine"
done
UnusedText0320: ; Unused
text "Send a Card"
line "Receive a Card"
line "Give Deck Instructions"
line "Receive Deck Instructions"
done
UnusedText0321: ; Unused
text "Lecture Duel"
done
UnusedText0322: ; Unused
text "First Strike Deck"
line ""
done
OverworldMapMasonLaboratoryText:
text " Mason Laboratory "
done
OverworldMapIshiharasHouseText:
text " ISHIHARA's House "
done
OverworldMapFightingClubText:
text " Fighting Club "
done
OverworldMapRockClubText:
text " Rock Club "
done
OverworldMapWaterClubText:
text " Water Club "
done
OverworldMapLightningClubText:
text " Lightning Club "
done
OverworldMapGrassClubText:
text " Grass Club "
done
OverworldMapPsychicClubText:
text " Psychic Club "
done
OverworldMapScienceClubText:
text " Science Club "
done
OverworldMapFireClubText:
text " Fire Club "
done
OverworldMapChallengeHallText:
text " Challenge Hall "
done
OverworldMapPokemonDomeText:
text " Pokémon Dome "
done
OverworldMapMysteryHouseText:
text " ??'s House "
done
MasonLaboratoryMapName:
text "Mason Laboratory"
done